diff --git a/pom.xml b/pom.xml
index 78d27ba1303c10719c3484912e63888f2a92d46f..13040a7010da01fd53e7bf9ebe5f4ec9fc61af32 100644
--- a/pom.xml
+++ b/pom.xml
@@ -427,6 +427,33 @@
 			</plugins>
 		  </build>
 		</profile>
+        <profile>
+            <id>less-install</id>
+            <build>
+                <plugins>
+                    <plugin>
+                        <groupId>org.lesscss</groupId>
+                        <artifactId>lesscss-maven-plugin</artifactId>
+                        <version>1.7.0.1.1</version>
+                        <configuration>
+                            <sourceDirectory>${project.basedir}/src/main/webapp/resources/less</sourceDirectory>
+                            <outputDirectory>${project.basedir}/src/main/webapp/resources/css</outputDirectory>
+                            <compress>true</compress>
+                            <includes>
+                                <include>petclinic.less</include>
+                            </includes>
+                        </configuration>
+                        <executions>
+                            <execution>
+                                <goals>
+                                    <goal>compile</goal>
+                                </goals>
+                            </execution>
+                        </executions>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
    </profiles>
 
     <url>demopetclinic</url>
diff --git a/src/main/webapp/WEB-INF/jsp/exception.jsp b/src/main/webapp/WEB-INF/jsp/exception.jsp
index 8a0a4c9bf641213e98cea1762b48c7f5e8e6bdcc..a4fde6ca36183b1b86b088de20b9e6f6dc8ab707 100644
--- a/src/main/webapp/WEB-INF/jsp/exception.jsp
+++ b/src/main/webapp/WEB-INF/jsp/exception.jsp
@@ -10,20 +10,23 @@
 
 <body>
 <petclinic:bodyHeader menuName="error"/>
-<div class="container">
+<div class="container-fluid">
+    <div class="container xd-container">
 
-    <spring:url value="/resources/images/pets.png" var="petsImage"/>
-    <img src="${petsImage}"/>
+        <spring:url value="/resources/images/pets.png" var="petsImage"/>
+        <img src="${petsImage}"/>
 
-    <h2>Something happened...</h2>
+        <h2>Something happened...</h2>
 
-    <p>${exception.message}</p>
+        <p>${exception.message}</p>
 
-    <!-- Exception: ${exception.message}.
+        <!-- Exception: ${exception.message}.
 		  	<c:forEach items="${exception.stackTrace}" var="stackTrace"> 
 				${stackTrace} 
 			</c:forEach>
 	  	-->
+        <petclinic:pivotal/>
+    </div>
 </div>
 <jsp:include page="fragments/footer.jsp"/>
 </body>
diff --git a/src/main/webapp/WEB-INF/jsp/fragments/footer.jsp b/src/main/webapp/WEB-INF/jsp/fragments/footer.jsp
index e499b26822c0b8c23aaffee4c5dca23fc9bd45eb..6029efb589ed21c3b922e772e991dfdd646e0101 100644
--- a/src/main/webapp/WEB-INF/jsp/fragments/footer.jsp
+++ b/src/main/webapp/WEB-INF/jsp/fragments/footer.jsp
@@ -1,12 +1,5 @@
 <%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
 
-<div class="container">
-    <div class="row">
-        <div class="col-12 text-center"><img src="<spring:url value="/resources/images/spring-pivotal-logo.png" htmlEscape="true" />"
-                                   alt="Sponsored by Pivotal"/></div>
-    </div>
-</div>
-
 <%-- Placed at the end of the document so the pages load faster --%>
 <spring:url value="/vendors/jquery/jquery.min.js" var="jQuery"/>
 <script src="${jQuery}"></script>
diff --git a/src/main/webapp/WEB-INF/jsp/fragments/htmlHeader.jsp b/src/main/webapp/WEB-INF/jsp/fragments/htmlHeader.jsp
index eea7b823181c5101e78c09bd01e59e660d8d4fef..a51e56dac8a94a0e89c088f48beb42e55f270605 100644
--- a/src/main/webapp/WEB-INF/jsp/fragments/htmlHeader.jsp
+++ b/src/main/webapp/WEB-INF/jsp/fragments/htmlHeader.jsp
@@ -16,14 +16,7 @@ PetClinic :: a Spring Framework demonstration
 
     <title>PetClinic :: a Spring Framework demonstration</title>
 
-    <%-- Bootstrap CSS --%>
-    <spring:url value="/vendors/bootstrap/dist/css/bootstrap.min.css" var="bootstrapCss"/>
-    <link href="${bootstrapCss}" rel="stylesheet">
-    <spring:url value="/vendors/bootstrap/dist/css/bootstrap-theme.min.css" var="bootstrapThemeCss"/>
-    <link href="${bootstrapThemeCss}" rel="stylesheet">
-
-
-    <%-- Custom styles for Petclinic --%>
+    <%-- CSS generated from LESS --%>
     <spring:url value="/resources/css/petclinic.css" var="petclinicCss"/>
     <link href="${petclinicCss}" rel="stylesheet"/>
 
diff --git a/src/main/webapp/WEB-INF/jsp/owners/createOrUpdateOwnerForm.jsp b/src/main/webapp/WEB-INF/jsp/owners/createOrUpdateOwnerForm.jsp
index b18a88fed02929e13669a73f55dbc6b83002deef..77826de8a221f67790b853e974fadd8f33e5a23e 100644
--- a/src/main/webapp/WEB-INF/jsp/owners/createOrUpdateOwnerForm.jsp
+++ b/src/main/webapp/WEB-INF/jsp/owners/createOrUpdateOwnerForm.jsp
@@ -15,31 +15,34 @@
 
 <body>
 <petclinic:bodyHeader menuName="owners"/>
-<div class="container">
-    <h2>
-        <c:if test="${owner['new']}">New </c:if> Owner
-    </h2>
-    <form:form modelAttribute="owner" class="form-horizontal" id="add-owner-form">
-        <div class="form-group has-feedback">
-            <petclinic:inputField label="First Name" name="firstName"/>
-            <petclinic:inputField label="Last Name" name="lastName"/>
-            <petclinic:inputField label="Address" name="address"/>
-            <petclinic:inputField label="City" name="city"/>
-            <petclinic:inputField label="Telephone" name="telephone"/>
-        </div>
-        <div class="form-group">
-            <div class="col-sm-offset-2 col-sm-10">
-                <c:choose>
-                    <c:when test="${owner['new']}">
-                        <button class="btn btn-primary" type="submit">Add Owner</button>
-                    </c:when>
-                    <c:otherwise>
-                        <button class="btn btn-primary" type="submit">Update Owner</button>
-                    </c:otherwise>
-                </c:choose>
+<div class="container-fluid">
+    <div class="container xd-container">
+        <h2>
+            <c:if test="${owner['new']}">New </c:if> Owner
+        </h2>
+        <form:form modelAttribute="owner" class="form-horizontal" id="add-owner-form">
+            <div class="form-group has-feedback">
+                <petclinic:inputField label="First Name" name="firstName"/>
+                <petclinic:inputField label="Last Name" name="lastName"/>
+                <petclinic:inputField label="Address" name="address"/>
+                <petclinic:inputField label="City" name="city"/>
+                <petclinic:inputField label="Telephone" name="telephone"/>
             </div>
-        </div>
-    </form:form>
+            <div class="form-group">
+                <div class="col-sm-offset-2 col-sm-10">
+                    <c:choose>
+                        <c:when test="${owner['new']}">
+                            <button class="btn btn-default" type="submit">Add Owner</button>
+                        </c:when>
+                        <c:otherwise>
+                            <button class="btn btn-default" type="submit">Update Owner</button>
+                        </c:otherwise>
+                    </c:choose>
+                </div>
+            </div>
+        </form:form>
+        <petclinic:pivotal/>
+    </div>
 </div>
 <jsp:include page="../fragments/footer.jsp"/>
 </body>
diff --git a/src/main/webapp/WEB-INF/jsp/owners/findOwners.jsp b/src/main/webapp/WEB-INF/jsp/owners/findOwners.jsp
index 15b82afac15c1cd6003a1f2d72332b8eaf76be51..e9f9b9061d8afb830c571d92647379b4577b1d86 100644
--- a/src/main/webapp/WEB-INF/jsp/owners/findOwners.jsp
+++ b/src/main/webapp/WEB-INF/jsp/owners/findOwners.jsp
@@ -13,32 +13,36 @@
 
 <body>
 <petclinic:bodyHeader menuName="owners"/>
-<div class="container">
-
-    <h2>Find Owners</h2>
-
-    <spring:url value="/owners.html" var="formUrl"/>
-    <form:form modelAttribute="owner" action="${fn:escapeXml(formUrl)}" method="get" class="form-horizontal"
-               id="search-owner-form">
-        <div class="form-group">
-            <div class="control-group" id="lastName">
-                <label class="col-sm-2 control-label">Last name </label>
-                <div class="col-sm-10">
-                    <form:input class="form-control" path="lastName" size="30" maxlength="80"/>
-                    <span class="help-inline"><form:errors path="*"/></span>
+<div class="container-fluid">
+    <div class="container xd-container">
+
+        <h2>Find Owners</h2>
+
+        <spring:url value="/owners.html" var="formUrl"/>
+        <form:form modelAttribute="owner" action="${fn:escapeXml(formUrl)}" method="get" class="form-horizontal"
+                   id="search-owner-form">
+            <div class="form-group">
+                <div class="control-group" id="lastName">
+                    <label class="col-sm-2 control-label">Last name </label>
+                    <div class="col-sm-10">
+                        <form:input class="form-control" path="lastName" size="30" maxlength="80"/>
+                        <span class="help-inline"><form:errors path="*"/></span>
+                    </div>
                 </div>
             </div>
-        </div>
-        <div class="form-group">
-            <div class="col-sm-offset-2 col-sm-10">
-                <button type="submit" class="btn btn-primary">Find Owner</button>
+            <div class="form-group">
+                <div class="col-sm-offset-2 col-sm-10">
+                    <button type="submit" class="btn btn-default">Find Owner</button>
+                </div>
             </div>
-        </div>
 
-    </form:form>
+        </form:form>
+
+        <br/>
+        <a class="btn btn-default" href='<spring:url value="/owners/new" htmlEscape="true"/>'>Add Owner</a>
 
-    <br/>
-    <a class="btn btn-default" href='<spring:url value="/owners/new" htmlEscape="true"/>'>Add Owner</a>
+        <petclinic:pivotal/>
+    </div>
 </div>
 
 <jsp:include page="../fragments/footer.jsp"/>
diff --git a/src/main/webapp/WEB-INF/jsp/owners/ownerDetails.jsp b/src/main/webapp/WEB-INF/jsp/owners/ownerDetails.jsp
index 14981958f31da44f12d2de4ccaa87f231557e791..54eade30a987c4d3ac7ef5d7c23106139836c0fd 100644
--- a/src/main/webapp/WEB-INF/jsp/owners/ownerDetails.jsp
+++ b/src/main/webapp/WEB-INF/jsp/owners/ownerDetails.jsp
@@ -14,94 +14,99 @@
 
 <body>
 <petclinic:bodyHeader menuName="owners"/>
-<div class="container">
-
-    <h2>Owner Information</h2>
-
-
-    <table class="table table-striped">
-        <tr>
-            <th>Name</th>
-            <td><b><c:out value="${owner.firstName} ${owner.lastName}"/></b></td>
-        </tr>
-        <tr>
-            <th>Address</th>
-            <td><c:out value="${owner.address}"/></td>
-        </tr>
-        <tr>
-            <th>City</th>
-            <td><c:out value="${owner.city}"/></td>
-        </tr>
-        <tr>
-            <th>Telephone</th>
-            <td><c:out value="${owner.telephone}"/></td>
-        </tr>
-    </table>
-
-    <spring:url value="{ownerId}/edit.html" var="editUrl">
-        <spring:param name="ownerId" value="${owner.id}"/>
-    </spring:url>
-    <a href="${fn:escapeXml(editUrl)}" class="btn btn-default">Edit Owner</a>
-
-    <spring:url value="{ownerId}/pets/new.html" var="addUrl">
-        <spring:param name="ownerId" value="${owner.id}"/>
-    </spring:url>
-    <a href="${fn:escapeXml(addUrl)}" class="btn btn-primary">Add New Pet</a>
-
-
-    <h2>Pets and Visits</h2>
-
-    <table class="table table-striped">
-        <c:forEach var="pet" items="${owner.pets}">
+<div class="container-fluid">
+    <div class="container xd-container">
 
+        <h2>Owner Information</h2>
+
+
+        <table class="table table-striped">
+            <tr>
+                <th>Name</th>
+                <td><b><c:out value="${owner.firstName} ${owner.lastName}"/></b></td>
+            </tr>
+            <tr>
+                <th>Address</th>
+                <td><c:out value="${owner.address}"/></td>
+            </tr>
             <tr>
-                <td valign="top">
-                    <dl class="dl-horizontal">
-                        <dt>Name</dt>
-                        <dd><c:out value="${pet.name}"/></dd>
-                        <dt>Birth Date</dt>
-                        <dd><joda:format value="${pet.birthDate}" pattern="yyyy-MM-dd"/></dd>
-                        <dt>Type</dt>
-                        <dd><c:out value="${pet.type.name}"/></dd>
-                    </dl>
-                </td>
-                <td valign="top">
-                    <table class="table-condensed">
-                        <thead>
-                        <tr>
-                            <th>Visit Date</th>
-                            <th>Description</th>
-                        </tr>
-                        </thead>
-                        <c:forEach var="visit" items="${pet.visits}">
+                <th>City</th>
+                <td><c:out value="${owner.city}"/></td>
+            </tr>
+            <tr>
+                <th>Telephone</th>
+                <td><c:out value="${owner.telephone}"/></td>
+            </tr>
+        </table>
+
+        <spring:url value="{ownerId}/edit.html" var="editUrl">
+            <spring:param name="ownerId" value="${owner.id}"/>
+        </spring:url>
+        <a href="${fn:escapeXml(editUrl)}" class="btn btn-default">Edit Owner</a>
+
+        <spring:url value="{ownerId}/pets/new.html" var="addUrl">
+            <spring:param name="ownerId" value="${owner.id}"/>
+        </spring:url>
+        <a href="${fn:escapeXml(addUrl)}" class="btn btn-default">Add New Pet</a>
+
+        <br/>
+        <br/>
+        <br/>
+        <h2>Pets and Visits</h2>
+
+        <table class="table table-striped">
+            <c:forEach var="pet" items="${owner.pets}">
+
+                <tr>
+                    <td valign="top">
+                        <dl class="dl-horizontal">
+                            <dt>Name</dt>
+                            <dd><c:out value="${pet.name}"/></dd>
+                            <dt>Birth Date</dt>
+                            <dd><joda:format value="${pet.birthDate}" pattern="yyyy-MM-dd"/></dd>
+                            <dt>Type</dt>
+                            <dd><c:out value="${pet.type.name}"/></dd>
+                        </dl>
+                    </td>
+                    <td valign="top">
+                        <table class="table-condensed">
+                            <thead>
                             <tr>
-                                <td><joda:format value="${visit.date}" pattern="yyyy-MM-dd"/></td>
-                                <td><c:out value="${visit.description}"/></td>
+                                <th>Visit Date</th>
+                                <th>Description</th>
                             </tr>
-                        </c:forEach>
-                        <tr>
-                            <td>
-                                <spring:url value="/owners/{ownerId}/pets/{petId}/edit" var="petUrl">
-                                    <spring:param name="ownerId" value="${owner.id}"/>
-                                    <spring:param name="petId" value="${pet.id}"/>
-                                </spring:url>
-                                <a href="${fn:escapeXml(petUrl)}">Edit Pet</a>
-                            </td>
-                            <td>
-                                <spring:url value="/owners/{ownerId}/pets/{petId}/visits/new" var="visitUrl">
-                                    <spring:param name="ownerId" value="${owner.id}"/>
-                                    <spring:param name="petId" value="${pet.id}"/>
-                                </spring:url>
-                                <a href="${fn:escapeXml(visitUrl)}">Add Visit</a>
-                            </td>
-                        </tr>
-                    </table>
-                </td>
-            </tr>
+                            </thead>
+                            <c:forEach var="visit" items="${pet.visits}">
+                                <tr>
+                                    <td><joda:format value="${visit.date}" pattern="yyyy-MM-dd"/></td>
+                                    <td><c:out value="${visit.description}"/></td>
+                                </tr>
+                            </c:forEach>
+                            <tr>
+                                <td>
+                                    <spring:url value="/owners/{ownerId}/pets/{petId}/edit" var="petUrl">
+                                        <spring:param name="ownerId" value="${owner.id}"/>
+                                        <spring:param name="petId" value="${pet.id}"/>
+                                    </spring:url>
+                                    <a href="${fn:escapeXml(petUrl)}">Edit Pet</a>
+                                </td>
+                                <td>
+                                    <spring:url value="/owners/{ownerId}/pets/{petId}/visits/new" var="visitUrl">
+                                        <spring:param name="ownerId" value="${owner.id}"/>
+                                        <spring:param name="petId" value="${pet.id}"/>
+                                    </spring:url>
+                                    <a href="${fn:escapeXml(visitUrl)}">Add Visit</a>
+                                </td>
+                            </tr>
+                        </table>
+                    </td>
+                </tr>
 
-        </c:forEach>
-    </table>
+            </c:forEach>
+        </table>
 
+        <petclinic:pivotal/>
+    </div>
 </div>
 
 <jsp:include page="../fragments/footer.jsp"/>
diff --git a/src/main/webapp/WEB-INF/jsp/owners/ownersList.jsp b/src/main/webapp/WEB-INF/jsp/owners/ownersList.jsp
index f2fb639c4ce2110667fae163816dcd0e3d6a5100..1824a288cff20884f31a71bff3e268d8c97db0f0 100644
--- a/src/main/webapp/WEB-INF/jsp/owners/ownersList.jsp
+++ b/src/main/webapp/WEB-INF/jsp/owners/ownersList.jsp
@@ -14,30 +14,34 @@
 
 <body>
 <petclinic:bodyHeader menuName="owners"/>
-<div class="container">
-    <h2>Owners</h2>
-
-    <datatables:table id="owners" data="${selections}" row="owner"
-                      cssClass="table table-striped" pageable="false" info="false" export="pdf">
-        <datatables:column title="Name" cssStyle="width: 150px;" display="html">
-            <spring:url value="/owners/{ownerId}.html" var="ownerUrl">
-                <spring:param name="ownerId" value="${owner.id}"/>
-            </spring:url>
-            <a href="${fn:escapeXml(ownerUrl)}"><c:out value="${owner.firstName} ${owner.lastName}"/></a>
-        </datatables:column>
-        <datatables:column title="Name" display="pdf">
-            <c:out value="${owner.firstName} ${owner.lastName}"/>
-        </datatables:column>
-        <datatables:column title="Address" property="address" cssStyle="width: 200px;"/>
-        <datatables:column title="City" property="city"/>
-        <datatables:column title="Telephone" property="telephone"/>
-        <datatables:column title="Pets" cssStyle="width: 100px;">
-            <c:forEach var="pet" items="${owner.pets}">
-                <c:out value="${pet.name}"/>
-            </c:forEach>
-        </datatables:column>
-        <datatables:export type="pdf" cssClass="btn" cssStyle="height: 25px;"/>
-    </datatables:table>
+<div class="container-fluid">
+    <div class="container xd-container">
+        <h2>Owners</h2>
+
+        <datatables:table id="owners" data="${selections}" row="owner"
+                          cssClass="table table-striped" pageable="false" info="false" export="pdf">
+            <datatables:column title="Name" cssStyle="width: 150px;" display="html">
+                <spring:url value="/owners/{ownerId}.html" var="ownerUrl">
+                    <spring:param name="ownerId" value="${owner.id}"/>
+                </spring:url>
+                <a href="${fn:escapeXml(ownerUrl)}"><c:out value="${owner.firstName} ${owner.lastName}"/></a>
+            </datatables:column>
+            <datatables:column title="Name" display="pdf">
+                <c:out value="${owner.firstName} ${owner.lastName}"/>
+            </datatables:column>
+            <datatables:column title="Address" property="address" cssStyle="width: 200px;"/>
+            <datatables:column title="City" property="city"/>
+            <datatables:column title="Telephone" property="telephone"/>
+            <datatables:column title="Pets" cssStyle="width: 100px;">
+                <c:forEach var="pet" items="${owner.pets}">
+                    <c:out value="${pet.name}"/>
+                </c:forEach>
+            </datatables:column>
+            <datatables:export type="pdf" cssClass="btn" cssStyle="height: 25px;"/>
+        </datatables:table>
+
+        <petclinic:pivotal/>
+    </div>
 </div>
 
 <jsp:include page="../fragments/footer.jsp"/>
diff --git a/src/main/webapp/WEB-INF/jsp/pets/createOrUpdatePetForm.jsp b/src/main/webapp/WEB-INF/jsp/pets/createOrUpdatePetForm.jsp
index 5bd1667c300946573131cfc6df3be6673ba01d7c..e4f20e9ffa67f6eb8ad853d6e7a6b7adb937ba84 100644
--- a/src/main/webapp/WEB-INF/jsp/pets/createOrUpdatePetForm.jsp
+++ b/src/main/webapp/WEB-INF/jsp/pets/createOrUpdatePetForm.jsp
@@ -13,43 +13,46 @@
 <body>
 <petclinic:bodyHeader menuName="owners"/>
 
-<div class="container">
-    <h2>
-        <c:if test="${pet['new']}">New </c:if> Pet
-    </h2>
-    <form:form modelAttribute="pet"
-               class="form-horizontal">
-        <input type="hidden" name="id" value="${pet.id}"/>
-        <div class="form-group has-feedback">
-            <div class="form-group">
-                <label class="col-sm-2 control-label">Owner</label>
-                <div class="col-sm-10">
-                    <c:out value="${pet.owner.firstName} ${pet.owner.lastName}"/>
+<div class="container-fluid">
+    <div class="container xd-container">
+        <h2>
+            <c:if test="${pet['new']}">New </c:if> Pet
+        </h2>
+        <form:form modelAttribute="pet"
+                   class="form-horizontal">
+            <input type="hidden" name="id" value="${pet.id}"/>
+            <div class="form-group has-feedback">
+                <div class="form-group">
+                    <label class="col-sm-2 control-label">Owner</label>
+                    <div class="col-sm-10">
+                        <c:out value="${pet.owner.firstName} ${pet.owner.lastName}"/>
+                    </div>
+                </div>
+                <petclinic:inputField label="Name" name="name"/>
+                <petclinic:inputField label="Birth Date" name="birthDate"/>
+                <div class="control-group">
+                    <petclinic:selectField name="type" label="Type " names="${types}" size="5"/>
                 </div>
             </div>
-            <petclinic:inputField label="Name" name="name"/>
-            <petclinic:inputField label="Birth Date" name="birthDate"/>
-            <div class="control-group">
-                <petclinic:selectField name="type" label="Type " names="${types}" size="5"/>
-            </div>
-        </div>
-        <div class="form-group">
-            <div class="col-sm-offset-2 col-sm-10">
-                <c:choose>
-                    <c:when test="${pet['new']}">
-                        <button class="btn btn-primary" type="submit">Add Pet</button>
-                    </c:when>
-                    <c:otherwise>
-                        <button class="btn btn-primary" type="submit">Update Pet</button>
-                    </c:otherwise>
-                </c:choose>
+            <div class="form-group">
+                <div class="col-sm-offset-2 col-sm-10">
+                    <c:choose>
+                        <c:when test="${pet['new']}">
+                            <button class="btn btn-default" type="submit">Add Pet</button>
+                        </c:when>
+                        <c:otherwise>
+                            <button class="btn btn-default" type="submit">Update Pet</button>
+                        </c:otherwise>
+                    </c:choose>
+                </div>
             </div>
-        </div>
-    </form:form>
-    <c:if test="${!pet['new']}">
-    </c:if>
-</div>
+        </form:form>
+        <c:if test="${!pet['new']}">
+        </c:if>
 
+        <petclinic:pivotal/>
+    </div>
+</div>
 <jsp:include page="../fragments/footer.jsp"/>
 
 <script>
diff --git a/src/main/webapp/WEB-INF/jsp/pets/createOrUpdateVisitForm.jsp b/src/main/webapp/WEB-INF/jsp/pets/createOrUpdateVisitForm.jsp
index d48499ea07987bc78f205c6037543eba01c06bba..d1f90170152f91baa28bdd6a3cb4a2aa3f8f213b 100644
--- a/src/main/webapp/WEB-INF/jsp/pets/createOrUpdateVisitForm.jsp
+++ b/src/main/webapp/WEB-INF/jsp/pets/createOrUpdateVisitForm.jsp
@@ -16,58 +16,61 @@
 <body>
 
 <petclinic:bodyHeader menuName="owners"/>
-<div class="container">
-    <h2><c:if test="${visit['new']}">New </c:if>Visit</h2>
+<div class="container-fluid">
+    <div class="container xd-container">
+        <h2><c:if test="${visit['new']}">New </c:if>Visit</h2>
 
-    <b>Pet</b>
-    <table class="table table-striped">
-        <thead>
-        <tr>
-            <th>Name</th>
-            <th>Birth Date</th>
-            <th>Type</th>
-            <th>Owner</th>
-        </tr>
-        </thead>
-        <tr>
-            <td><c:out value="${visit.pet.name}"/></td>
-            <td><joda:format value="${visit.pet.birthDate}" pattern="yyyy/MM/dd"/></td>
-            <td><c:out value="${visit.pet.type.name}"/></td>
-            <td><c:out value="${visit.pet.owner.firstName} ${visit.pet.owner.lastName}"/></td>
-        </tr>
-    </table>
+        <b>Pet</b>
+        <table class="table table-striped">
+            <thead>
+            <tr>
+                <th>Name</th>
+                <th>Birth Date</th>
+                <th>Type</th>
+                <th>Owner</th>
+            </tr>
+            </thead>
+            <tr>
+                <td><c:out value="${visit.pet.name}"/></td>
+                <td><joda:format value="${visit.pet.birthDate}" pattern="yyyy/MM/dd"/></td>
+                <td><c:out value="${visit.pet.type.name}"/></td>
+                <td><c:out value="${visit.pet.owner.firstName} ${visit.pet.owner.lastName}"/></td>
+            </tr>
+        </table>
 
-    <form:form modelAttribute="visit" class="form-horizontal">
-        <div class="form-group has-feedback">
-            <petclinic:inputField label="Date" name="date"/>
-            <petclinic:inputField label="Description" name="description"/>
-        </div>
+        <form:form modelAttribute="visit" class="form-horizontal">
+            <div class="form-group has-feedback">
+                <petclinic:inputField label="Date" name="date"/>
+                <petclinic:inputField label="Description" name="description"/>
+            </div>
 
-        <div class="form-group">
-            <div class="col-sm-offset-2 col-sm-10">
-                <input type="hidden" name="petId" value="${visit.pet.id}"/>
-                <button class="btn btn-primary" type="submit">Add Visit</button>
+            <div class="form-group">
+                <div class="col-sm-offset-2 col-sm-10">
+                    <input type="hidden" name="petId" value="${visit.pet.id}"/>
+                    <button class="btn btn-default" type="submit">Add Visit</button>
+                </div>
             </div>
-        </div>
-    </form:form>
+        </form:form>
 
-    <br/>
-    <b>Previous Visits</b>
-    <table class="table table-striped">
-        <tr>
-            <th>Date</th>
-            <th>Description</th>
-        </tr>
-        <c:forEach var="visit" items="${visit.pet.visits}">
-            <c:if test="${!visit['new']}">
-                <tr>
-                    <td><joda:format value="${visit.date}" pattern="yyyy/MM/dd"/></td>
-                    <td><c:out value="${visit.description}"/></td>
-                </tr>
-            </c:if>
-        </c:forEach>
-    </table>
+        <br/>
+        <b>Previous Visits</b>
+        <table class="table table-striped">
+            <tr>
+                <th>Date</th>
+                <th>Description</th>
+            </tr>
+            <c:forEach var="visit" items="${visit.pet.visits}">
+                <c:if test="${!visit['new']}">
+                    <tr>
+                        <td><joda:format value="${visit.date}" pattern="yyyy/MM/dd"/></td>
+                        <td><c:out value="${visit.description}"/></td>
+                    </tr>
+                </c:if>
+            </c:forEach>
+        </table>
 
+        <petclinic:pivotal/>
+    </div>
 </div>
 <jsp:include page="../fragments/footer.jsp"/>
 <script>
diff --git a/src/main/webapp/WEB-INF/jsp/vets/vetList.jsp b/src/main/webapp/WEB-INF/jsp/vets/vetList.jsp
index b6180378c3b50bbf0a178b7f22b30dcffb06c0a6..e3cdde22c9c52f4209978dc114fa994807fdceea 100644
--- a/src/main/webapp/WEB-INF/jsp/vets/vetList.jsp
+++ b/src/main/webapp/WEB-INF/jsp/vets/vetList.jsp
@@ -12,37 +12,39 @@
 <jsp:include page="../fragments/htmlHeader.jsp"/>
 
 <body>
-<div class="container">
-    <petclinic:bodyHeader menuName="vets"/>
-
-    <h2>Veterinarians</h2>
-
-    <datatables:table id="vets" data="${vets.vetList}" row="vet" cssClass="table table-striped"
-                      pageable="false" info="false">
-        <datatables:column title="Name">
-            <c:out value="${vet.firstName} ${vet.lastName}"/>
-        </datatables:column>
-        <datatables:column title="Specialties">
-            <c:forEach var="specialty" items="${vet.specialties}">
-                <c:out value="${specialty.name}"/>
-            </c:forEach>
-            <c:if test="${vet.nrOfSpecialties == 0}">none</c:if>
-        </datatables:column>
-    </datatables:table>
-
-    <table class="table-buttons">
-        <tr>
-            <td>
-                <a href="<spring:url value="/vets.xml" htmlEscape="true" />">View as XML</a>
-            </td>
-            <td>
-                <a href="<spring:url value="/vets.json" htmlEscape="true" />">View as JSON</a>
-            </td>
-        </tr>
-    </table>
-
-    <jsp:include page="../fragments/footer.jsp"/>
+<petclinic:bodyHeader menuName="vets"/>
+<div class="container-fluid">
+    <div class="container xd-container">
+        <h2>Veterinarians</h2>
+
+        <datatables:table id="vets" data="${vets.vetList}" row="vet" cssClass="table table-striped"
+                          pageable="false" info="false">
+            <datatables:column title="Name">
+                <c:out value="${vet.firstName} ${vet.lastName}"/>
+            </datatables:column>
+            <datatables:column title="Specialties">
+                <c:forEach var="specialty" items="${vet.specialties}">
+                    <c:out value="${specialty.name}"/>
+                </c:forEach>
+                <c:if test="${vet.nrOfSpecialties == 0}">none</c:if>
+            </datatables:column>
+        </datatables:table>
+
+        <table class="table-buttons">
+            <tr>
+                <td>
+                    <a href="<spring:url value="/vets.xml" htmlEscape="true" />">View as XML</a>
+                </td>
+                <td>
+                    <a href="<spring:url value="/vets.json" htmlEscape="true" />">View as JSON</a>
+                </td>
+            </tr>
+        </table>
+
+        <petclinic:pivotal/>
+    </div>
 </div>
+<jsp:include page="../fragments/footer.jsp"/>
 </body>
 
 </html>
diff --git a/src/main/webapp/WEB-INF/jsp/welcome.jsp b/src/main/webapp/WEB-INF/jsp/welcome.jsp
index ed6583fc12065873117f9fd70a524f3bdde375e4..ee9974590a69114fbe1f1db1bf560d2fbb1e1777 100644
--- a/src/main/webapp/WEB-INF/jsp/welcome.jsp
+++ b/src/main/webapp/WEB-INF/jsp/welcome.jsp
@@ -13,13 +13,17 @@
 <body>
 <petclinic:bodyHeader menuName="home"/>
 
-<div class="container">
-    <h2><fmt:message key="welcome"/></h2>
-    <div class="row">
-        <div class="col-md-12">
-            <spring:url value="/resources/images/pets.png" htmlEscape="true" var="petsImage"/>
-            <img class="img-responsive" src="${petsImage}"/>
+<div class="container-fluid">
+    <div class="container xd-container">
+        <h2><fmt:message key="welcome"/></h2>
+        <div class="row">
+            <div class="col-md-12">
+                <spring:url value="/resources/images/pets.png" htmlEscape="true" var="petsImage"/>
+                <img class="img-responsive" src="${petsImage}"/>
+            </div>
         </div>
+
+        <petclinic:pivotal/>
     </div>
 </div>
 <jsp:include page="fragments/footer.jsp"/>
diff --git a/src/main/webapp/WEB-INF/tags/bodyHeader.tag b/src/main/webapp/WEB-INF/tags/bodyHeader.tag
index bef25d9e0bfe445f46acc79fe9d1e8cc431d7e30..cd14d874cb9868ba6e7854fef73f19c48251965e 100644
--- a/src/main/webapp/WEB-INF/tags/bodyHeader.tag
+++ b/src/main/webapp/WEB-INF/tags/bodyHeader.tag
@@ -4,15 +4,4 @@
 <%@ attribute name="menuName" required="true" rtexprvalue="true"
               description="Name of the active menu: home, owners, vets or error" %>
 
-<div class="container">
-    <div class="row">
-        <div class="col-md-12">
-            <spring:url value="/resources/images/banner-graphic.png" var="banner"/>
-            <img class="img-responsive" src="${banner}"/>
-        </div>
-    </div>
-</div>
-
-<div class="container">
-    <petclinic:menu name="${menuName}"/>
-</div>
+<petclinic:menu name="${menuName}"/>
diff --git a/src/main/webapp/WEB-INF/tags/menu.tag b/src/main/webapp/WEB-INF/tags/menu.tag
index b6a2da4bada4c702195443ebe549cc09c5f02cf9..066f75aa57dab3ca742af387f768924b2cc32d9e 100644
--- a/src/main/webapp/WEB-INF/tags/menu.tag
+++ b/src/main/webapp/WEB-INF/tags/menu.tag
@@ -5,10 +5,11 @@
               description="Name of the active menu: home, owners, vets or error" %>
 
 <%-- Static navbar --%>
-<nav class="navbar navbar-default">
-    <div class="container-fluid">
+<nav class="navbar navbar-default" role="navigation">
+    <div class="container">
         <div class="navbar-header">
-            <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
+            <a class="navbar-brand" href="<spring:url value="/" htmlEscape="true" />"><span></span></a>
+            <button type="button" class="navbar-toggle" data-toggle="collapse">
                 <span class="sr-only"><os-p>Toggle navigation</os-p></span>
                 <span class="icon-bar"></span>
                 <span class="icon-bar"></span>
@@ -16,7 +17,7 @@
             </button>
         </div>
         <div class="navbar-collapse collapse">
-            <ul class="nav navbar-nav">
+            <ul class="nav navbar-nav navbar-right">
                 <c:choose>
                     <c:when test="${name eq 'home'}">
                         <c:set var="cssMenu" value="active"/>
diff --git a/src/main/webapp/WEB-INF/tags/pivotal.tag b/src/main/webapp/WEB-INF/tags/pivotal.tag
new file mode 100644
index 0000000000000000000000000000000000000000..8ee35fb1f8ec5b99eb3380dba88624157102c98f
--- /dev/null
+++ b/src/main/webapp/WEB-INF/tags/pivotal.tag
@@ -0,0 +1,10 @@
+<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
+
+<br/>
+<br/>
+<div class="container">
+    <div class="row">
+        <div class="col-12 text-center"><img src="<spring:url value="/resources/images/spring-pivotal-logo.png" htmlEscape="true" />"
+                                             alt="Sponsored by Pivotal"/></div>
+    </div>
+</div>
diff --git a/src/main/webapp/resources/css/petclinic.css b/src/main/webapp/resources/css/petclinic.css
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..b8278d2c3751ff81b3726791000b2e3f9264daca 100644
--- a/src/main/webapp/resources/css/petclinic.css
+++ b/src/main/webapp/resources/css/petclinic.css
@@ -0,0 +1,5 @@
+/*!
+ * Bootstrap v3.3.6 (http://getbootstrap.com)
+ * Copyright 2011-2015 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,*:before,*:after{background:transparent !important;color:#000 !important;box-shadow:none !important;text-shadow:none !important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000 !important}.label{border:1px solid #000}.table{border-collapse:collapse !important}.table td,.table th{background-color:#fff !important}.table-bordered th,.table-bordered td{border:1px solid #ddd !important}}@font-face{font-family:'Glyphicons Halflings';src:url('../../vendors/bootstrap/dist/fonts/glyphicons-halflings-regular.eot');src:url('../../vendors/bootstrap/dist/fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),url('../../vendors/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2') format('woff2'),url('../../vendors/bootstrap/dist/fonts/glyphicons-halflings-regular.woff') format('woff'),url('../../vendors/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf') format('truetype'),url('../../vendors/bootstrap/dist/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-euro:before,.glyphicon-eur:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#34302d;background-color:#f1f1f1}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#5fa134;text-decoration:none}a:hover,a:focus{color:#5fa134;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive,.thumbnail>img,.thumbnail a>img,.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:0}.img-thumbnail{padding:4px;line-height:1.42857143;background-color:#f1f1f1;border:1px solid #ddd;border-radius:0;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role="button"]{cursor:pointer}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:normal;line-height:1;color:#777}h1,.h1,h2,.h2,h3,.h3{margin-top:20px;margin-bottom:10px}h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:10px;margin-bottom:10px}h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}small,.small{font-size:85%}mark,.mark{background-color:#fcf8e3;padding:.2em}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:hover,a.text-primary:focus{color:#286090}.text-success{color:#3c763d}a.text-success:hover,a.text-success:focus{color:#2b542c}.text-info{color:#31708f}a.text-info:hover,a.text-info:focus{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover,a.text-warning:focus{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover,a.text-danger:focus{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:hover,a.bg-primary:focus{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:hover,a.bg-success:focus{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover,a.bg-info:focus{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover,a.bg-warning:focus{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover,a.bg-danger:focus{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none;margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.42857143}dt{font-weight:bold}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}.blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:''}.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:0}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:0;box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25)}kbd kbd{padding:0;font-size:100%;font-weight:bold;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;word-break:break-all;word-wrap:break-word;color:#333;background-color:#f5f5f5;border:1px solid #ccc;border-radius:0}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px}.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #34302d}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #34302d}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #34302d}.table .table{background-color:#f1f1f1}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #34302d}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #34302d}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*="col-"]{position:static;float:none;display:table-column}table td[class*="col-"],table th[class*="col-"]{position:static;float:none;display:table-cell}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}.table-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #34302d}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{padding:0;margin:0;border:0;min-width:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:bold}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]{display:block}input[type="range"]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{border:0;background-color:transparent}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type="search"]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type="date"].form-control,input[type="time"].form-control,input[type="datetime-local"].form-control,input[type="month"].form-control{line-height:34px}input[type="date"].input-sm,input[type="time"].input-sm,input[type="datetime-local"].input-sm,input[type="month"].input-sm,.input-group-sm input[type="date"],.input-group-sm input[type="time"],.input-group-sm input[type="datetime-local"],.input-group-sm input[type="month"]{line-height:30px}input[type="date"].input-lg,input[type="time"].input-lg,input[type="datetime-local"].input-lg,input[type="month"].input-lg,.input-group-lg input[type="date"],.input-group-lg input[type="time"],.input-group-lg input[type="datetime-local"],.input-group-lg input[type="month"]{line-height:46px}}.form-group{margin-bottom:15px}.radio,.checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.radio label,.checkbox label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{position:absolute;margin-left:-20px;margin-top:4px \9}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:normal;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"].disabled,input[type="checkbox"].disabled,fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"]{cursor:not-allowed}.radio-inline.disabled,.checkbox-inline.disabled,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.radio.disabled label,.checkbox.disabled label,fieldset[disabled] .radio label,fieldset[disabled] .checkbox label{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0;min-height:34px}.form-control-static.input-lg,.form-control-static.input-sm{padding-left:0;padding-right:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:0}select.input-sm{height:30px;line-height:30px}textarea.input-sm,select[multiple].input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:0}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm textarea.form-control,.form-group-sm select[multiple].form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:0}select.input-lg{height:46px;line-height:46px}textarea.input-lg,select[multiple].input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:0}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg textarea.form-control,.form-group-lg select[multiple].form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.input-lg+.form-control-feedback,.input-group-lg+.form-control-feedback,.form-group-lg .form-control+.form-control-feedback{width:46px;height:46px;line-height:46px}.input-sm+.form-control-feedback,.input-group-sm+.form-control-feedback,.form-group-sm .form-control+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline,.has-success.radio label,.has-success.checkbox label,.has-success.radio-inline label,.has-success.checkbox-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline,.has-warning.radio label,.has-warning.checkbox label,.has-warning.radio-inline label,.has-warning.checkbox-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline,.has-error.radio label,.has-error.checkbox label,.has-error.radio-inline label,.has-error.checkbox-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#786f68}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-left:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-left:-15px;margin-right:-15px}@media (min-width:768px){.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;vertical-align:middle;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn:focus,.btn:active:focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn.active.focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus,.btn.focus{color:#f1f1f1;text-decoration:none}.btn:active,.btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#f1f1f1;background-color:#34302d;border-color:#6db33f}.btn-default:focus,.btn-default.focus{color:#f1f1f1;background-color:#191715;border-color:#34551e}.btn-default:hover{color:#f1f1f1;background-color:#191715;border-color:#51862f}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{color:#f1f1f1;background-color:#191715;border-color:#51862f}.btn-default:active:hover,.btn-default.active:hover,.open>.dropdown-toggle.btn-default:hover,.btn-default:active:focus,.btn-default.active:focus,.open>.dropdown-toggle.btn-default:focus,.btn-default:active.focus,.btn-default.active.focus,.open>.dropdown-toggle.btn-default.focus{color:#f1f1f1;background-color:#060505;border-color:#34551e}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled.focus,.btn-default[disabled].focus,fieldset[disabled] .btn-default.focus{background-color:#34302d;border-color:#6db33f}.btn-default .badge{color:#34302d;background-color:#f1f1f1}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary:active:hover,.btn-primary.active:hover,.open>.dropdown-toggle.btn-primary:hover,.btn-primary:active:focus,.btn-primary.active:focus,.open>.dropdown-toggle.btn-primary:focus,.btn-primary:active.focus,.btn-primary.active.focus,.open>.dropdown-toggle.btn-primary.focus{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled.focus,.btn-primary[disabled].focus,fieldset[disabled] .btn-primary.focus{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:focus,.btn-success.focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active:hover,.btn-success.active:hover,.open>.dropdown-toggle.btn-success:hover,.btn-success:active:focus,.btn-success.active:focus,.open>.dropdown-toggle.btn-success:focus,.btn-success:active.focus,.btn-success.active.focus,.open>.dropdown-toggle.btn-success.focus{color:#fff;background-color:#398439;border-color:#255625}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled.focus,.btn-success[disabled].focus,fieldset[disabled] .btn-success.focus{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:focus,.btn-info.focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info:active:hover,.btn-info.active:hover,.open>.dropdown-toggle.btn-info:hover,.btn-info:active:focus,.btn-info.active:focus,.open>.dropdown-toggle.btn-info:focus,.btn-info:active.focus,.btn-info.active.focus,.open>.dropdown-toggle.btn-info.focus{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled.focus,.btn-info[disabled].focus,fieldset[disabled] .btn-info.focus{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:focus,.btn-warning.focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning:active:hover,.btn-warning.active:hover,.open>.dropdown-toggle.btn-warning:hover,.btn-warning:active:focus,.btn-warning.active:focus,.open>.dropdown-toggle.btn-warning:focus,.btn-warning:active.focus,.btn-warning.active.focus,.open>.dropdown-toggle.btn-warning.focus{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled.focus,.btn-warning[disabled].focus,fieldset[disabled] .btn-warning.focus{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active:hover,.btn-danger.active:hover,.open>.dropdown-toggle.btn-danger:hover,.btn-danger:active:focus,.btn-danger.active:focus,.open>.dropdown-toggle.btn-danger:focus,.btn-danger:active.focus,.btn-danger.active.focus,.open>.dropdown-toggle.btn-danger.focus{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled.focus,.btn-danger[disabled].focus,fieldset[disabled] .btn-danger.focus{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#5fa134;font-weight:normal;border-radius:0}.btn-link,.btn-link:active,.btn-link.active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#5fa134;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#777;text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:0}.btn-sm,.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:0}.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:0}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height, visibility;transition-property:height, visibility;-webkit-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;transition-timing-function:ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid \9;border-right:4px solid transparent;border-left:4px solid transparent}.dropup,.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:0;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#337ab7}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#777}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px dashed;border-bottom:4px solid \9;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:0;border-top-left-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-right-radius:0;border-top-left-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle="buttons"]>.btn input[type="radio"],[data-toggle="buttons"]>.btn-group>.btn input[type="radio"],[data-toggle="buttons"]>.btn input[type="checkbox"],[data-toggle="buttons"]>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*="col-"]{float:none;padding-left:0;padding-right:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:0}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn,select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:0}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn,select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:normal;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:0}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:0}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:0}.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:hover,.input-group-btn>.btn:focus,.input-group-btn>.btn:active{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#5fa134}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #34302d}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:0 0 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #34302d}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#f1f1f1;background-color:#34302d;border:1px solid #34302d;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:0 0 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#f1f1f1}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:0}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:0 0 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#f1f1f1}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:0}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block !important;height:auto !important;padding-bottom:0;overflow:visible !important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-left:0;padding-right:0}}.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:200px}}.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px 15px;font-size:18px;line-height:20px;height:50px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:0}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{margin-left:-15px;margin-right:-15px;padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);margin-top:8px;margin-bottom:8px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn,.navbar-form .input-group .form-control{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .radio label,.navbar-form .checkbox label{padding-left:0}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-right-radius:0;border-top-left-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-left:15px;margin-right:15px}}@media (min-width:768px){.navbar-left{float:left !important}.navbar-right{float:right !important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#f1f1f1}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#d8d8d8;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#f1f1f1}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#f1f1f1;background-color:#6db33f}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#f1f1f1;background-color:#6db33f}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:transparent}.navbar-default .navbar-toggle .icon-bar{background-color:#f1f1f1}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{background-color:#6db33f;color:#f1f1f1}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#f1f1f1}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#f1f1f1;background-color:#6db33f}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#f1f1f1;background-color:#6db33f}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#f1f1f1}.navbar-default .navbar-link:hover{color:#f1f1f1}.navbar-default .btn-link{color:#f1f1f1}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#f1f1f1}.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:hover,.navbar-default .btn-link[disabled]:focus,fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{background-color:#080808;color:#fff}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff}.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:hover,.navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:0}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#ccc}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:0}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#5fa134;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:0;border-top-left-radius:0}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:0;border-top-right-radius:0}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{z-index:2;color:#5fa134;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:3;color:#fff;background-color:#34302d;border-color:#6db33f;cursor:default}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#777;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:0;border-top-left-radius:0}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:0;border-top-right-radius:0}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:0;border-top-left-radius:0}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:0;border-top-right-radius:0}.pager{padding-left:0;margin:20px 0;list-style:none;text-align:center}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#777;background-color:#fff;cursor:not-allowed}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:hover,a.label:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:hover,.label-default[href]:focus{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:hover,.label-info[href]:focus{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:bold;color:#fff;line-height:1;vertical-align:middle;white-space:nowrap;text-align:center;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-xs .badge,.btn-group-xs>.btn .badge{top:0;padding:1px 5px}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#5fa134;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron h1,.jumbotron .h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{border-radius:0;padding-left:15px;padding-right:15px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-left:60px;padding-right:60px}.jumbotron h1,.jumbotron .h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#f1f1f1;border:1px solid #ddd;border-radius:0;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail>img,.thumbnail a>img{margin-left:auto;margin-right:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#5fa134}.thumbnail .caption{padding:9px;color:#34302d}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:0}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:bold}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f5f5f5;border-radius:0;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-striped .progress-bar,.progress-bar-striped{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-size:40px 40px}.progress.active .progress-bar,.progress-bar.active{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{zoom:1;overflow:hidden}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-left,.media-right,.media-body{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,button.list-group-item:hover,a.list-group-item:focus,button.list-group-item:focus{text-decoration:none;color:#555;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:hover,.list-group-item.disabled:focus{background-color:#eee;color:#777;cursor:not-allowed}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>.small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:hover .list-group-item-text,.list-group-item.active:focus .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,button.list-group-item-success:hover,a.list-group-item-success:focus,button.list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,button.list-group-item-success.active,a.list-group-item-success.active:hover,button.list-group-item-success.active:hover,a.list-group-item-success.active:focus,button.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:hover,button.list-group-item-info:hover,a.list-group-item-info:focus,button.list-group-item-info:focus{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,button.list-group-item-info.active,a.list-group-item-info.active:hover,button.list-group-item-info.active:hover,a.list-group-item-info.active:focus,button.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,button.list-group-item-warning:hover,a.list-group-item-warning:focus,button.list-group-item-warning:focus{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,button.list-group-item-warning.active,a.list-group-item-warning.active:hover,button.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus,button.list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,button.list-group-item-danger:hover,a.list-group-item-danger:focus,button.list-group-item-danger:focus{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,button.list-group-item-danger.active,a.list-group-item-danger.active:hover,button.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus,button.list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:0;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05);box-shadow:0 1px 1px rgba(0,0,0,0.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:-1;border-top-left-radius:-1}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>a,.panel-title>small,.panel-title>.small,.panel-title>small>a,.panel-title>.small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:-1;border-bottom-left-radius:-1}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:-1;border-top-left-radius:-1}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:-1;border-bottom-left-radius:-1}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.table,.panel>.table-responsive>.table,.panel>.panel-collapse>.table{margin-bottom:0}.panel>.table caption,.panel>.table-responsive>.table caption,.panel>.panel-collapse>.table caption{padding-left:15px;padding-right:15px}.panel>.table:first-child,.panel>.table-responsive:first-child>.table:first-child{border-top-right-radius:-1;border-top-left-radius:-1}.panel>.table:first-child>thead:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child{border-top-left-radius:-1;border-top-right-radius:-1}.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:-1}.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:-1}.panel>.table:last-child,.panel>.table-responsive:last-child>.table:last-child{border-bottom-right-radius:-1;border-bottom-left-radius:-1}.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-left-radius:-1;border-bottom-right-radius:-1}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:-1}.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:-1}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #34302d}.panel>.table>tbody:first-child>tr:first-child th,.panel>.table>tbody:first-child>tr:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:0}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.panel-body,.panel-group .panel-heading+.panel-collapse>.list-group{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)}.well-lg{padding:24px;border-radius:0}.well-sm{padding:9px;border-radius:0}.close{float:right;font-size:21px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{display:none;overflow:hidden;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translate(0, -25%);-ms-transform:translate(0, -25%);-o-transform:translate(0, -25%);transform:translate(0, -25%);-webkit-transition:-webkit-transform 0.3s ease-out;-moz-transition:-moz-transform 0.3s ease-out;-o-transition:-o-transform 0.3s ease-out;transition:transform 0.3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);-o-transform:translate(0, 0);transform:translate(0, 0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.2);border-radius:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5);background-clip:padding-box;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:normal;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:12px;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:0}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{bottom:0;right:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:normal;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:14px;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);border-radius:0;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2)}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:-1 -1 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,0.25)}.popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,0.25)}.popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.carousel{position:relative}.carousel-inner{position:relative;overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform 0.6s ease-in-out;-moz-transition:-moz-transform 0.6s ease-in-out;-o-transition:-o-transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;-moz-perspective:1000px;perspective:1000px}.carousel-inner>.item.next,.carousel-inner>.item.active.right{-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0);left:0}.carousel-inner>.item.prev,.carousel-inner>.item.active.left{-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0);left:0}.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right,.carousel-inner>.item.active{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);left:0}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;filter:alpha(opacity=50);font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6);background-color:rgba(0,0,0,0)}.carousel-control.left{background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:linear-gradient(to right, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:linear-gradient(to right, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.carousel-control:hover,.carousel-control:focus{outline:0;color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;margin-top:-10px;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%;margin-left:-10px}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%;margin-right:-10px}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;line-height:1;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0)}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after,.dl-horizontal dd:before,.dl-horizontal dd:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after,.btn-toolbar:before,.btn-toolbar:after,.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after,.pager:before,.pager:after,.panel-body:before,.panel-body:after,.modal-header:before,.modal-header:after,.modal-footer:before,.modal-footer:after{content:" ";display:table}.clearfix:after,.dl-horizontal dd:after,.container:after,.container-fluid:after,.row:after,.form-horizontal .form-group:after,.btn-toolbar:after,.btn-group-vertical>.btn-group:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after,.pager:after,.panel-body:after,.modal-header:after,.modal-footer:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none !important}.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{display:none !important}@media (max-width:767px){.visible-xs{display:block !important}table.visible-xs{display:table !important}tr.visible-xs{display:table-row !important}th.visible-xs,td.visible-xs{display:table-cell !important}}@media (max-width:767px){.visible-xs-block{display:block !important}}@media (max-width:767px){.visible-xs-inline{display:inline !important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block !important}table.visible-sm{display:table !important}tr.visible-sm{display:table-row !important}th.visible-sm,td.visible-sm{display:table-cell !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block !important}table.visible-md{display:table !important}tr.visible-md{display:table-row !important}th.visible-md,td.visible-md{display:table-cell !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block !important}}@media (min-width:1200px){.visible-lg{display:block !important}table.visible-lg{display:table !important}tr.visible-lg{display:table-row !important}th.visible-lg,td.visible-lg{display:table-cell !important}}@media (min-width:1200px){.visible-lg-block{display:block !important}}@media (min-width:1200px){.visible-lg-inline{display:inline !important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block !important}}@media (max-width:767px){.hidden-xs{display:none !important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none !important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none !important}}@media (min-width:1200px){.hidden-lg{display:none !important}}.visible-print{display:none !important}@media print{.visible-print{display:block !important}table.visible-print{display:table !important}tr.visible-print{display:table-row !important}th.visible-print,td.visible-print{display:table-cell !important}}.visible-print-block{display:none !important}@media print{.visible-print-block{display:block !important}}.visible-print-inline{display:none !important}@media print{.visible-print-inline{display:inline !important}}.visible-print-inline-block{display:none !important}@media print{.visible-print-inline-block{display:inline-block !important}}@media print{.hidden-print{display:none !important}}@font-face{font-family:'varela_roundregular';src:url('../fonts/varela_round-webfont.eot');src:url('../fonts/varela_round-webfont.eot?#iefix') format('embedded-opentype'),url('../fonts/varela_round-webfont.woff') format('woff'),url('../fonts/varela_round-webfont.ttf') format('truetype'),url('../fonts/varela_round-webfont.svg#varela_roundregular') format('svg');font-weight:normal;font-style:normal}@font-face{font-family:'montserratregular';src:url('../fonts/montserrat-webfont.eot');src:url('../fonts/montserrat-webfont.eot?#iefix') format('embedded-opentype'),url('../fonts/montserrat-webfont.woff') format('woff'),url('../fonts/montserrat-webfont.ttf') format('truetype'),url('../fonts/montserrat-webfont.svg#montserratregular') format('svg');font-weight:normal;font-style:normal}body,h1,h2,h3,p,input{margin:0;font-weight:400;font-family:"varela_roundregular",sans-serif;color:#34302d}h1{font-size:24px;line-height:30px;font-family:"montserratregular",sans-serif}h2{font-size:18px;font-weight:700;line-height:24px;margin-bottom:10px;font-family:"montserratregular",sans-serif}h3{font-size:16px;line-height:24px;margin-bottom:10px;font-weight:700}strong{font-weight:700;font-family:"montserratregular",sans-serif}.navbar{border-top:4px solid #6db33f;background-color:#34302d;margin-bottom:0;border-bottom:0;border-left:0;border-right:0}.navbar a.navbar-brand{background:url("../images/spring-logo-dataflow.png") -1px -1px no-repeat;margin:12px 0 6px;width:229px;height:46px;display:inline-block;text-decoration:none;padding:0}.navbar a.navbar-brand span{display:block;width:229px;height:46px;background:url("../images/spring-logo-dataflow.png") -1px -48px no-repeat;opacity:0;-moz-transition:opacity .12s ease-in-out;-webkit-transition:opacity .12s ease-in-out;-o-transition:opacity .12s ease-in-out}.navbar a:hover.navbar-brand span{opacity:1}.navbar li>a,.navbar-text{font-family:"montserratregular",sans-serif;text-shadow:none;font-size:14px;padding:28px 20px;transition:all .15s;-webkit-transition:all .15s;-moz-transition:all .15s;-o-transition:all .15s;-ms-transition:all .15s}.navbar li>a{text-transform:uppercase}.navbar .navbar-text{margin-top:0;margin-bottom:0}.navbar li:hover>a{color:#eee;background-color:#6db33f}.navbar-toggle{border-width:0}.navbar-toggle .icon-bar+.icon-bar{margin-top:3px}.navbar-toggle .icon-bar{width:19px;height:3px}.table>thead>tr>th{background-color:#3c3834;color:#f1f1f1}.table-filter{background-color:#34302d;padding:9px 12px}.nav>li>a{color:#838789}.btn-default{border-width:2px;transition:border .15s;-webkit-transition:border .15s;-moz-transition:border .15s;-o-transition:border .15s;-ms-transition:border .15s}.btn-default:hover,.btn-default:focus,.btn-default:active,.btn-default.active,.open .dropdown-toggle.btn-default{background-color:#34302d;border-color:#34302d}.container .text-muted{margin:20px 0}code{font-size:80%}.xd-container{margin-top:40px;margin-bottom:100px;padding-left:5px;padding-right:5px}h1{margin-bottom:15px}.index-page--subtitle{font-size:16px;line-height:24px;margin:0 0 30px}.form-horizontal button.btn-inverse{margin-left:32px}#job-params-modal .modal-dialog{width:90%;margin-left:auto;margin-right:auto}[ng-cloak].splash{display:block !important}[ng-cloak]{display:none}.splash{background:#6db33f;color:#34302d;display:none}.error-page{margin-top:100px;text-align:center}.error-page .error-title{font-size:24px;line-height:24px;margin:30px 0 0}table td{vertical-align:middle}table td .progress{margin-bottom:0}table td.action-column{width:1px}.help-block{color:#b6afaa}.xd-containers{font-size:15px}.cluster-view>table td{vertical-align:top}.cluster-view .label,.cluster-view .column-block{display:block}.cluster-view .input-group-addon{width:0}.cluster-view{margin-bottom:0}.deployment-status-deployed{background-color:#5cb85c}.deployment-status-deployed[href]:hover,.deployment-status-deployed[href]:focus{background-color:#449d44}.deployment-status-incomplete{background-color:#f0ad4e}.deployment-status-incomplete[href]:hover,.deployment-status-incomplete[href]:focus{background-color:#ec971f}.deployment-status-failed{background-color:#d9534f}.deployment-status-failed[href]:hover,.deployment-status-failed[href]:focus{background-color:#c9302c}.deployment-status-deploying{background-color:#5bc0de}.deployment-status-deploying[href]:hover,.deployment-status-deploying[href]:focus{background-color:#31b0d5}.container-details-table th{background-color:#3c3834;color:#f1f1f1}.status-help-content-table td{color:#34302d}.alert-success{background-color:rgba(223,240,216,0.7);border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:rgba(217,237,247,0.7);border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:rgba(252,248,227,0.7);border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:rgba(242,222,222,0.7);border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}.myspinner{animation-name:spinner;animation-duration:2s;animation-iteration-count:infinite;animation-timing-function:linear;-webkit-transform-origin:49% 50%;-webkit-animation-name:spinner;-webkit-animation-duration:2s;-webkit-animation-iteration-count:infinite;-webkit-animation-timing-function:linear}@keyframes "spinner"{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}@-webkit-keyframes "spinner"{from{-webkit-transform:rotate(0deg)}to{-webkit-transform:rotate(360deg)}}hr{border-top:1px dotted #34302d}@media (max-width:768px){.navbar-toggle{position:absolute;z-index:9999;left:0;top:0}.navbar a.navbar-brand{display:block;margin:0 auto 0 auto;width:148px;height:50px;float:none;background:url("../images/spring-logo-dataflow-mobile.png") 0 center no-repeat}.homepage-billboard .homepage-subtitle{font-size:21px;line-height:21px}.navbar a.navbar-brand span{display:none}.navbar{border-top-width:0}.xd-container{margin-top:20px;margin-bottom:30px}.index-page--subtitle{margin-top:10px;margin-bottom:30px}}
diff --git a/src/main/webapp/resources/fonts/montserrat-webfont.eot b/src/main/webapp/resources/fonts/montserrat-webfont.eot
new file mode 100644
index 0000000000000000000000000000000000000000..0caea9169a83c1707e3f3b849a685200a4f0d046
Binary files /dev/null and b/src/main/webapp/resources/fonts/montserrat-webfont.eot differ
diff --git a/src/main/webapp/resources/fonts/montserrat-webfont.svg b/src/main/webapp/resources/fonts/montserrat-webfont.svg
new file mode 100644
index 0000000000000000000000000000000000000000..7bd96bdfdc1f7a0b8110812c0cb6ba2ae302bb79
--- /dev/null
+++ b/src/main/webapp/resources/fonts/montserrat-webfont.svg
@@ -0,0 +1,1283 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<svg xmlns="http://www.w3.org/2000/svg">
+<metadata></metadata>
+<defs>
+<font id="montserratregular" horiz-adv-x="561" >
+<font-face units-per-em="2048" ascent="1638" descent="-410" />
+<missing-glyph horiz-adv-x="500" />
+<glyph horiz-adv-x="2048" />
+<glyph horiz-adv-x="2048" />
+<glyph unicode="&#xd;" horiz-adv-x="681" />
+<glyph unicode=" " />
+<glyph unicode="!" horiz-adv-x="604" d="M152 136.5q0 62.5 45 107.5t107.5 45t107.5 -45t45 -107.5t-45 -107.5t-107.5 -45t-107.5 45t-45 107.5zM160 1202v264h286v-264l-61 -739h-164z" />
+<glyph unicode="&#x22;" horiz-adv-x="765" d="M158 928v504h159v-504h-159zM449 928v504h159v-504h-159z" />
+<glyph unicode="#" horiz-adv-x="1505" d="M88 328l45 225h205l59 340h-233l45 225h227l60 348h227l-59 -348h301l59 348h229l-63 -348h229l-45 -225h-221l-59 -340h252l-46 -225h-243l-58 -328h-227l57 328h-301l-57 -328h-229l57 328h-211zM565 553h301l62 340h-301z" />
+<glyph unicode="$" horiz-adv-x="1267" d="M76 225l149 178q172 -150 355 -178v398q-231 55 -339 145t-108 267t124 290t323 123v102h131v-104q225 -16 426 -154l-133 -188q-135 96 -293 119v-385h6q236 -55 346.5 -149.5t110.5 -273.5t-127 -292t-336 -123v-147h-131v149q-281 29 -504 223zM383 1059.5 q0 -68.5 41 -108.5t156 -77v355q-93 -8 -145 -54.5t-52 -115zM711 219q98 10 155.5 57.5t57.5 119t-45 113.5t-168 79v-369z" />
+<glyph unicode="%" horiz-adv-x="1609" d="M90 1139q0 135 89 231t221 96t220.5 -95t88.5 -230t-89.5 -231.5t-221.5 -96.5t-220 95.5t-88 230.5zM141 0l1049 1432h264l-1048 -1432h-265zM281 1136.5q0 -61.5 34.5 -103.5t85 -42t83 42t32.5 103.5t-35 103.5t-85 42t-82.5 -42t-32.5 -103.5zM903 309 q0 135 89 231.5t221.5 96.5t220.5 -95.5t88 -230.5t-89.5 -231t-221.5 -96t-220 95t-88 230zM1098 303.5q0 -61.5 34.5 -103.5t85 -42t83 42t32.5 103.5t-34.5 103.5t-85 42t-83 -42t-32.5 -103.5z" />
+<glyph unicode="&#x26;" horiz-adv-x="1421" d="M100 401q0 231 336 412q-84 96 -117.5 157.5t-33.5 155.5q0 164 120.5 252t284.5 88t278.5 -84t114.5 -235q0 -203 -327 -383q164 -201 266 -307q63 94 98 219l168 -119q-53 -141 -121 -248q82 -84 209 -203l-153 -143l-189 187q-180 -166 -450 -166q-201 0 -342.5 111.5 t-141.5 305.5zM328 391q0 -92 77.5 -150.5t206.5 -58.5t275 119q-207 217 -328 365q-231 -125 -231 -275zM512 1140.5q0 -57.5 27.5 -103.5t95.5 -128q231 115 231 213q0 82 -54 122t-122.5 40t-123 -43t-54.5 -100.5z" />
+<glyph unicode="'" horiz-adv-x="475" d="M158 928v504h159v-504h-159z" />
+<glyph unicode="(" horiz-adv-x="679" d="M102 639q0 256 83 514t184 397h243q-119 -166 -200.5 -421t-81.5 -490.5t82 -490t200 -420.5h-243q-100 139 -183.5 397t-83.5 514z" />
+<glyph unicode=")" horiz-adv-x="679" d="M68 -272q119 166 200.5 420.5t81.5 490t-82 490.5t-200 421h243q100 -139 183.5 -397t83.5 -514t-83 -514t-184 -397h-243z" />
+<glyph unicode="*" horiz-adv-x="884" d="M125 1001l209 105l-209 102l70 121l192 -129l-14 232h139l-14 -232l192 127l70 -119l-211 -102l211 -105l-70 -120l-194 131l16 -234h-139l16 236l-194 -131z" />
+<glyph unicode="+" horiz-adv-x="1163" d="M98 696v193h391v385h185v-385h391v-193h-391v-389h-185v389h-391z" />
+<glyph unicode="," horiz-adv-x="575" d="M135 133q0 66 45 110t106.5 44t107.5 -44t46 -105.5t-55 -149.5l-123 -203h-119l76 213q-84 39 -84 135z" />
+<glyph unicode="-" horiz-adv-x="974" d="M147 504v215h680v-215h-680z" />
+<glyph unicode="." horiz-adv-x="573" d="M135 137.5q0 63.5 44 107.5t107.5 44t108.5 -44t45 -107.5t-45 -108.5t-108.5 -45t-107.5 45t-44 108.5z" />
+<glyph unicode="/" horiz-adv-x="1202" d="M57 -240l887 1901h205l-887 -1901h-205z" />
+<glyph unicode="0" horiz-adv-x="1409" d="M121 725q0 338 145.5 539.5t438 201.5t438 -201.5t145.5 -539.5t-145.5 -539.5t-438 -201.5t-438 201.5t-145.5 539.5zM354 725q0 -240 85 -387.5t265.5 -147.5t263.5 146.5t83 388.5t-83 388.5t-263.5 146.5t-265.5 -147.5t-85 -387.5z" />
+<glyph unicode="1" horiz-adv-x="780" d="M59 1217v215h521v-1432h-230v1217h-291z" />
+<glyph unicode="2" horiz-adv-x="1206" d="M102 1182q94 141 208 212.5t293 71.5t314.5 -113.5t135.5 -310.5q0 -111 -57.5 -211t-211.5 -258l-335 -342h649v-231h-979v205l434 436q145 147 206.5 231t61.5 170t-65.5 146.5t-165.5 60.5q-176 0 -293 -180z" />
+<glyph unicode="3" horiz-adv-x="1183" d="M80 131l102 195q176 -123 369 -123q125 0 206 58t81 168t-90.5 175.5t-249.5 65.5q-80 0 -154 -23v184l332 386h-518v215h837v-189l-346 -387q197 -6 307.5 -124t110.5 -281q0 -219 -148.5 -344t-382 -125t-456.5 149z" />
+<glyph unicode="4" horiz-adv-x="1171" d="M76 360v213l526 859h264l-518 -852h342v262h230v-262h172v-220h-172v-360h-230v360h-614z" />
+<glyph unicode="5" horiz-adv-x="1185" d="M102 176l129 176q16 -16 44 -38.5t114 -60.5t188.5 -38t186.5 61.5t84 179t-89 182t-225.5 64.5t-259.5 -67l-102 110v689h823v-220h-604v-352q90 49 205 49q201 0 346 -120.5t145 -327.5t-151.5 -343t-372.5 -136q-289 0 -461 192z" />
+<glyph unicode="6" horiz-adv-x="1269" d="M123 688q0 221 47 368.5t129 233.5q160 168 392.5 168t420.5 -145l-121 -178q-47 41 -126 73.5t-140 32.5q-190 0 -280.5 -129t-92.5 -348q51 57 147.5 107.5t213.5 50.5q193 0 322.5 -128t129.5 -340t-140 -341t-353 -129q-344 0 -475 307q-74 176 -74 397zM391 461.5 q0 -109.5 80 -188t201 -78.5t200.5 70.5t79.5 180t-73.5 186.5t-197.5 77t-207 -69t-83 -178.5z" />
+<glyph unicode="7" horiz-adv-x="1159" d="M94 1020v412h1008v-215l-606 -1217h-267l592 1212h-508v-192h-219z" />
+<glyph unicode="8" horiz-adv-x="1302" d="M117 418q0 238 207 368q-154 127 -154 292t137 273.5t344 108.5t344.5 -108.5t137.5 -273.5t-154 -292q207 -131 207 -368q0 -184 -147.5 -309t-387 -125t-387 124.5t-147.5 309.5zM356 426q0 -113 94.5 -173t201 -60t200.5 60t94 173t-90 174.5t-204.5 61.5t-205 -61.5 t-90.5 -174.5zM393 1058q0 -91 77 -153.5t181.5 -62.5t181 62.5t76.5 153.5t-76.5 152.5t-181 61.5t-181.5 -61.5t-77 -152.5z" />
+<glyph unicode="9" horiz-adv-x="1267" d="M104 988q0 212 140.5 341t353.5 129q344 0 475 -307q74 -176 74 -397.5t-47 -368.5t-129 -233q-160 -168 -392.5 -168t-420.5 145l121 178q47 -41 126 -73.5t140 -32.5q190 0 280 129t93 348q-51 -57 -147.5 -107.5t-213.5 -50.5q-193 0 -323 128t-130 340zM324 995.5 q0 -110.5 70.5 -186.5t194.5 -76t207 68.5t83 178.5t-80 188.5t-200 78.5t-197.5 -70.5t-77.5 -181z" />
+<glyph unicode=":" horiz-adv-x="600" d="M147 137.5q0 63.5 44.5 107.5t107.5 44t108.5 -44t45.5 -107.5t-45.5 -108.5t-108.5 -45t-107.5 45t-44.5 108.5zM147 638.5q0 63.5 44.5 108t107.5 44.5t108.5 -44.5t45.5 -108t-45.5 -108.5t-108.5 -45t-107.5 45t-44.5 108.5z" />
+<glyph unicode=";" horiz-adv-x="606" d="M150 135q0 66 45 110t107.5 44t108.5 -44t46 -103.5t-56 -153.5l-125 -203h-118l75 213q-83 43 -83 137zM150 638.5q0 63.5 44 108t107.5 44.5t108.5 -44.5t45 -108t-45 -108.5t-108.5 -45t-107.5 45t-44 108.5z" />
+<glyph unicode="&#x3c;" horiz-adv-x="1212" d="M92 684v258l965 447v-234l-721 -326v-22l721 -334v-233z" />
+<glyph unicode="=" horiz-adv-x="1277" d="M123 504v192h1032v-192h-1032zM123 889v192h1032v-192h-1032z" />
+<glyph unicode="&#x3e;" horiz-adv-x="1212" d="M156 240v233l721 334v22l-721 326v234l964 -447v-258z" />
+<glyph unicode="?" horiz-adv-x="1040" d="M74 1073q20 182 142 285.5t304 103.5t297 -99t115 -278q0 -123 -68 -204q-39 -49 -59.5 -69.5t-54 -52.5t-57 -55.5t-38.5 -39.5q-37 -45 -37 -127v-93h-231v125q0 82 19.5 122t85.5 106l149 149q47 51 47 127t-49 126t-127 50t-130 -48t-60 -128h-248zM348 140.5 q0 62.5 46 107.5t110.5 45t112 -44t47.5 -106.5t-46.5 -107.5t-111 -45t-111.5 44t-47 106.5z" />
+<glyph unicode="@" horiz-adv-x="1851" d="M104 545q0 344 244 588.5t589 244.5t581.5 -244.5t236.5 -596.5q0 -221 -84 -357.5t-223 -136.5q-100 0 -159.5 68.5t-63.5 195.5q-115 -264 -367 -264q-176 0 -310 141.5t-134 358.5t127 364.5t336 147.5q94 0 178 -49.5t121 -116.5v137h196v-715q0 -143 113 -143 q63 0 115.5 93t52.5 245q0 328 -198 555t-510 227t-531 -219t-219 -524t206.5 -509t511.5 -204q246 0 377 123l45 -76q-72 -61 -190.5 -99t-231.5 -38q-344 0 -576.5 229.5t-232.5 573.5zM621 552q0 -128 74.5 -223.5t203.5 -95.5t204 93.5t75 225.5t-78 218t-203 86 t-200.5 -88t-75.5 -216z" />
+<glyph unicode="A" horiz-adv-x="1519" d="M0 0l631 1432h258l631 -1432h-258l-144 326h-717l-143 -326h-258zM500 549h520l-260 590z" />
+<glyph unicode="B" horiz-adv-x="1445" d="M199 0v1432h557q145 0 250.5 -35t156.5 -94q98 -111 99 -250q0 -168 -107 -250q-39 -29 -53.5 -36t-50.5 -24q133 -29 211.5 -120t78.5 -226q0 -150 -102 -264q-121 -133 -414 -133h-626zM440 223h379q133 0 204 42t71 159q0 190 -306 190h-348v-391zM440 838h308 q262 0 262 178q0 102 -63.5 147t-196.5 45h-310v-370z" />
+<glyph unicode="C" horiz-adv-x="1507" d="M106 720.5q0 319.5 218.5 532.5t551 213t556.5 -245l-154 -168q-102 98 -193.5 137t-214.5 39q-217 0 -364.5 -140.5t-147.5 -358.5t146.5 -364.5t347.5 -146.5q125 0 215 42t188 134l156 -159q-227 -252 -551.5 -252t-539 208.5t-214.5 528z" />
+<glyph unicode="D" horiz-adv-x="1601" d="M199 0v1432h491q385 0 592 -187.5t207 -521.5t-201 -528.5t-614 -194.5h-475zM440 227h269q260 0 398 124t138 366q0 491 -561 491h-2h-242v-981z" />
+<glyph unicode="E" horiz-adv-x="1339" d="M199 0v1432h1005v-228h-764v-379h686v-215h-686v-383h789v-227h-1030z" />
+<glyph unicode="F" horiz-adv-x="1236" d="M199 0v1432h954l-2 -226h-711v-393h635v-223h-635v-590h-241z" />
+<glyph unicode="G" horiz-adv-x="1550" d="M106 720.5q0 319.5 218.5 532.5t527.5 213t514 -180l-129 -184q-84 72 -169 99.5t-198 27.5q-217 0 -364.5 -140.5t-147.5 -368.5t143.5 -366.5t347.5 -138.5t341 88v393h242v-489q-203 -223 -580 -223q-317 0 -531.5 208.5t-214.5 528z" />
+<glyph unicode="H" horiz-adv-x="1591" d="M199 0v1432h241v-621h711v621h242v-1432h-242v586h-711v-586h-241z" />
+<glyph unicode="I" horiz-adv-x="638" d="M199 0v1432h241v-1432h-241z" />
+<glyph unicode="J" horiz-adv-x="1128" d="M63 164l138 190q139 -133 272 -133q94 0 160.5 63.5t66.5 190.5v739h-454v218h696v-945q0 -250 -127 -374.5t-326 -124.5q-250 0 -426 176z" />
+<glyph unicode="K" horiz-adv-x="1441" d="M199 0v1432h241v-699l656 699h307l-576 -627l584 -805h-287l-475 627l-209 -226v-401h-241z" />
+<glyph unicode="L" horiz-adv-x="1159" d="M199 0v1432h241v-1203h654v-229h-895z" />
+<glyph unicode="M" horiz-adv-x="2013" d="M199 0v1432h376l433 -900l432 900h375v-1432h-242v1118l-500 -993h-135l-498 993v-1118h-241z" />
+<glyph unicode="N" horiz-adv-x="1712" d="M199 0v1432h241l832 -1070v1070h241v-1432h-262l-811 1044v-1044h-241z" />
+<glyph unicode="O" horiz-adv-x="1720" d="M106 726q0 316 217.5 528t537 212t536.5 -212t217 -528t-217 -528t-536.5 -212t-537 212t-217.5 528zM354 726q0 -216 146.5 -367.5t359.5 -151.5t359.5 151.5t146.5 367.5t-146.5 367.5t-359.5 151.5t-359.5 -151.5t-146.5 -367.5z" />
+<glyph unicode="P" horiz-adv-x="1400" d="M199 0v1432h491q326 0 475.5 -125t149.5 -385t-152.5 -381t-468.5 -121h-254v-420h-241zM440 639h281q201 0 273.5 77t72.5 225.5t-92 209.5t-289 61h-246v-573z" />
+<glyph unicode="Q" horiz-adv-x="1720" d="M106 726q0 316 217.5 528t537 212t536.5 -212t217 -527q0 -240 -129 -425t-344 -267q70 -92 176 -92q78 0 152.5 41t113.5 106l137 -190q-178 -188 -407 -189q-131 0 -252 74t-170 203l-31 -2q-319 0 -536.5 212t-217.5 528zM354 726q0 -216 146.5 -367.5t359.5 -151.5 t359.5 151.5t146.5 367.5t-146.5 367.5t-359.5 151.5t-359.5 -151.5t-146.5 -367.5z" />
+<glyph unicode="R" horiz-adv-x="1490" d="M199 0v1432h532q328 0 469 -110.5t141 -354.5q0 -354 -309 -447l375 -520h-307l-342 481h-318v-481h-241zM440 700h301q205 0 279 63.5t74 204t-76 192.5t-270 52h-308v-512z" />
+<glyph unicode="S" horiz-adv-x="1290" d="M82 215l151 182q217 -188 451 -188q117 0 185.5 50t68.5 133t-64.5 129t-222 84t-239.5 70t-146 83q-127 96 -127 294.5t144.5 306t357.5 107.5q137 0 272.5 -45t233.5 -127l-129 -182q-63 57 -172 94t-214.5 37t-173 -43t-67.5 -130t67.5 -133t288 -99.5t332 -149.5 t111.5 -283.5t-141.5 -304t-370.5 -116.5q-336 0 -596 231z" />
+<glyph unicode="T" horiz-adv-x="1236" d="M63 1210v222h1111v-222h-435v-1210h-241v1210h-435z" />
+<glyph unicode="U" horiz-adv-x="1572" d="M180 629v803h242v-793q0 -197 98 -311.5t266 -114.5t266.5 114.5t98.5 311.5v793h242v-803q0 -309 -170 -476t-436.5 -167t-436.5 166.5t-170 476.5z" />
+<glyph unicode="V" horiz-adv-x="1433" d="M6 1432h270l441 -1070l440 1070h270l-575 -1432h-270z" />
+<glyph unicode="W" horiz-adv-x="2146" d="M25 1432h260l360 -1031l320 1031h217l319 -1031l361 1031h260l-500 -1432h-240l-301 981h-16l-301 -981h-240z" />
+<glyph unicode="X" horiz-adv-x="1378" d="M31 0l491 735l-456 697h299l319 -484h10l320 484h299l-457 -697l492 -735h-301l-353 539h-10l-352 -539h-301z" />
+<glyph unicode="Y" horiz-adv-x="1277" d="M-16 1432h264l391 -652l391 652h264l-532 -867v-565h-246v565z" />
+<glyph unicode="Z" horiz-adv-x="1382" d="M96 0v186l834 1018v6h-807v222h1143v-189l-832 -1014v-6h844v-223h-1182z" />
+<glyph unicode="[" horiz-adv-x="727" d="M180 -287v1837h463v-172h-283v-1493h283v-172h-463z" />
+<glyph unicode="\" horiz-adv-x="1069" d="M57 1550h205l746 -1550h-205z" />
+<glyph unicode="]" horiz-adv-x="727" d="M84 -115h283v1493h-283v172h463v-1837h-463v172z" />
+<glyph unicode="^" horiz-adv-x="806" d="M45 1520l250 319h209l248 -319h-193l-158 170l-157 -170h-199z" />
+<glyph unicode="_" horiz-adv-x="1478" d="M147 -166h1184v-117h-1184v117z" />
+<glyph unicode="`" horiz-adv-x="1705" d="M647 1425l242 101l217 -297h-209z" />
+<glyph unicode="a" horiz-adv-x="1202" d="M84 337q0 161 119 240.5t321 79.5h297v41q0 217 -241 217q-152 0 -316 -110l-102 143q199 158 450 158q193 0 315 -97.5t122 -306.5v-702h-209v145q-134 -161 -360 -161h-3q-170 0 -281.5 96t-111.5 257zM313 342q0 -80 61.5 -122t171 -42t191.5 62t82 166v92h-258 q-248 0 -248 -156z" />
+<glyph unicode="b" horiz-adv-x="1376" d="M166 0v1520h229v-621q135 207 354.5 207t375 -151.5t155.5 -403.5t-154.5 -409.5t-360.5 -157.5t-370 180v-164h-229zM391 542.5q0 -155.5 94.5 -255t229.5 -99.5t235.5 98.5t100.5 255t-98.5 260t-235.5 103.5t-231.5 -103.5t-94.5 -259z" />
+<glyph unicode="c" horiz-adv-x="1179" d="M94 543q0 250 171 406.5t417 156.5t416 -170l-135 -166q-141 123 -284.5 123t-249 -95.5t-105.5 -246t104 -254.5t257 -104t288 139l135 -148q-199 -200 -459 -200q-227 0 -391 154.5t-164 404.5z" />
+<glyph unicode="d" horiz-adv-x="1376" d="M96 549q0 254 158 405.5t376 151.5t351 -184v598h229v-1520h-229v164q-127 -180 -371 -180q-207 0 -360.5 155.5t-153.5 409.5zM326 539.5q0 -156.5 100 -255t235.5 -98.5t229.5 99.5t94 255t-94 260t-231.5 104.5t-235.5 -104.5t-98 -261z" />
+<glyph unicode="e" horiz-adv-x="1265" d="M96 546q0 257 164 408.5t386 151.5t378 -134t156 -370v-158h-854q8 -119 108.5 -191.5t229.5 -72.5q205 0 311 129l131 -143q-176 -182 -459 -182q-229 0 -390 152.5t-161 409.5zM326 625h624q0 137 -86 210.5t-212 73.5t-226 -76.5t-100 -207.5z" />
+<glyph unicode="f" horiz-adv-x="790" d="M82 905v185h137v84q0 172 103.5 273t250 101t267.5 -108l-95 -162q-68 72 -141.5 72t-114 -46t-40.5 -124v-90h286v-185h-286v-905h-230v905h-137z" />
+<glyph unicode="g" horiz-adv-x="1339" d="M98 577.5q0 225.5 139.5 377t355.5 151.5t351 -178v162h230v-951q0 -289 -157 -433t-402.5 -144t-444.5 153l109 174q159 -121 321 -121h2q162 1 257 85t95 268v139q-51 -96 -146 -153.5t-214 -57.5q-217 0 -356.5 151.5t-139.5 377zM324 587q0 -134 82.5 -231.5 t223 -97.5t227.5 94t87 234.5t-88 238t-227.5 97.5t-222 -100.5t-82.5 -234.5z" />
+<glyph unicode="h" horiz-adv-x="1323" d="M166 0v1518h229v-627q49 100 148.5 157.5t214.5 57.5q184 0 297.5 -112.5t113.5 -325.5v-668h-229v598q0 301 -250 301q-119 0 -207 -78.5t-88 -230.5v-590h-229z" />
+<glyph unicode="i" d="M137 1409q0 59 43 102t102.5 43t102.5 -43t43 -102t-43 -102t-102.5 -43t-102.5 43t-43 102zM166 0v1090h229v-1090h-229z" />
+<glyph unicode="j" d="M-225 -326l106 172q69 -68 139 -68h2q70 1 107 46t37 125v1141h229v-1149q0 -172 -103.5 -273.5t-249.5 -101.5t-267 108zM133 1409q0 59 43 102t102.5 43t102.5 -43t43 -102t-43 -102t-102.5 -43t-102.5 43t-43 102z" />
+<glyph unicode="k" horiz-adv-x="1189" d="M166 0v1520h229v-893l443 463h295l-414 -433l444 -657h-278l-324 477l-166 -168v-309h-229z" />
+<glyph unicode="l" d="M166 0v1520h229v-1520h-229z" />
+<glyph unicode="m" horiz-adv-x="2076" d="M166 0v1090h229v-199q49 100 148.5 157.5t214.5 57.5q258 0 350 -213q162 213 403 213q184 0 298 -112.5t114 -325.5v-668h-229v598q0 301 -250 301q-117 0 -204 -74.5t-91 -218.5v-606h-229v598q0 156 -55.5 228.5t-174.5 72.5t-207 -78.5t-88 -230.5v-590h-229z" />
+<glyph unicode="n" horiz-adv-x="1323" d="M166 0v1090h229v-199q55 100 152.5 157.5t210.5 57.5q184 0 297.5 -112.5t113.5 -325.5v-668h-229v598q0 301 -250 301q-119 0 -207 -78.5t-88 -230.5v-590h-229z" />
+<glyph unicode="o" horiz-adv-x="1335" d="M94 544.5q0 235.5 164 398.5t409.5 163t409.5 -163t164 -398.5t-164 -398t-409.5 -162.5t-409.5 162.5t-164 398zM324 544.5q0 -157.5 97 -257t246.5 -99.5t247 99.5t97.5 257t-97.5 257t-247 99.5t-246.5 -99.5t-97 -257z" />
+<glyph unicode="p" horiz-adv-x="1376" d="M166 -397v1487h229v-191q135 207 354.5 207t375 -151.5t155.5 -403.5t-154.5 -409.5t-360.5 -157.5t-370 180v-561h-229zM391 542.5q0 -155.5 94.5 -255t229.5 -99.5t235.5 98.5t100.5 255t-98.5 260t-235.5 103.5t-231.5 -103.5t-94.5 -259z" />
+<glyph unicode="q" horiz-adv-x="1376" d="M96 551q0 252 156 403.5t375 151.5t354 -207v191h229v-1487h-229v561q-164 -180 -369.5 -180t-360.5 157.5t-155 409.5zM326 541.5q0 -156.5 100 -255t235.5 -98.5t229.5 99.5t94 255t-94 259t-231.5 103.5t-235.5 -103.5t-98 -260z" />
+<glyph unicode="r" horiz-adv-x="813" d="M166 0v1090h229v-220q55 102 150.5 168t202.5 68l2 -232h-13q-170 0 -256 -110.5t-86 -296.5v-467h-229z" />
+<glyph unicode="s" horiz-adv-x="1036" d="M68 147l110 179q190 -143 369 -144q78 0 123 36t45 91q0 82 -217 148q-16 6 -25 8q-340 92 -340 307q0 152 118 243t306 91t356 -111l-86 -170q-133 88 -288 88q-82 0 -133.5 -29.5t-51.5 -88.5q0 -53 54 -78q37 -18 103.5 -34.5t117.5 -33t99 -37t103 -57.5 q111 -74 111 -229.5t-112.5 -248.5t-288.5 -93q-119 0 -247 43t-226 120z" />
+<glyph unicode="t" horiz-adv-x="856" d="M82 905v185h137v342h230v-342h286v-185h-286v-553q0 -78 40.5 -124t114.5 -46t141 72l95 -162q-120 -109 -266 -109l-2 1q-146 0 -249.5 101t-103.5 273v547h-137z" />
+<glyph unicode="u" horiz-adv-x="1323" d="M154 422v668h229v-598q0 -301 250 -302q119 0 207 79t88 231v590h229v-1090h-229v199q-55 -100 -152.5 -157.5t-210.5 -57.5q-184 0 -297.5 112.5t-113.5 325.5z" />
+<glyph unicode="v" horiz-adv-x="1171" d="M16 1090h238l332 -824l332 824h237l-438 -1090h-262z" />
+<glyph unicode="w" horiz-adv-x="1867" d="M37 1090h237l271 -824l270 824h238l270 -824l270 824h238l-377 -1090h-262l-258 745l-258 -745h-262z" />
+<glyph unicode="x" horiz-adv-x="1142" d="M39 0l387 555l-367 535h281l233 -359l242 359h272l-380 -533l397 -557h-283l-260 362l-254 -362h-268z" />
+<glyph unicode="y" horiz-adv-x="1175" d="M18 1090h246l326 -803l325 803h246l-528 -1295q-47 -106 -135.5 -167.5t-194.5 -61.5q-150 0 -270 108l104 187q72 -68 148.5 -68t125 55.5t48.5 120.5q0 29 -441 1121z" />
+<glyph unicode="z" horiz-adv-x="1107" d="M90 0v223l596 666h-555v196h852v-206l-612 -680h645v-199h-926z" />
+<glyph unicode="{" horiz-adv-x="688" d="M82 537v190h49q53 0 77.5 28.5t24.5 98.5v426q0 270 279 270h70v-190q-7 2 -17 2q-127 0 -127 -117v-444q0 -143 -135 -168q135 -23 135 -166v-481q0 -53 30 -74t114 -21v-190h-70q-279 0 -279 270v443q0 68 -24.5 95.5t-77.5 27.5h-49z" />
+<glyph unicode="|" horiz-adv-x="526" d="M178 -313v1915h170v-1915h-170z" />
+<glyph unicode="}" horiz-adv-x="688" d="M106 -109q84 0 114 20.5t30 74.5v481q0 143 135 166q-135 25 -135 168v444q0 63 -34 91t-66 28h-7l-37 -4v190h70q279 0 279 -270v-426q0 -70 24.5 -98.5t77.5 -28.5h49v-190h-49q-53 0 -77.5 -28t-24.5 -95v-443q0 -270 -279 -270h-70v190z" />
+<glyph unicode="~" horiz-adv-x="1157" d="M102 676q12 143 86 216t191 73q92 0 248 -84q102 -53 151 -54q82 0 96 134l181 -52q-12 -143 -87 -217t-192 -74q-88 0 -248 87q-102 53 -151 53q-82 0 -96 -133z" />
+<glyph unicode="&#xa0;" />
+<glyph unicode="&#xa1;" horiz-adv-x="602" d="M150 1307.5q0 62.5 45 107.5t107.5 45t107.5 -45t45 -107.5t-45 -107.5t-107.5 -45t-107.5 45t-45 107.5zM158 -16v258l61 739h164l59 -739v-258h-284z" />
+<glyph unicode="&#xa2;" horiz-adv-x="1200" d="M100 540.5q0 229.5 141.5 380t350.5 179.5v243h131v-239q231 -18 381 -168l-135 -166q-125 106 -246 119v-694q135 14 256 137l135 -148q-170 -174 -391 -196v-238h-131v238q-207 23 -349.5 173t-142.5 379.5zM330 550q0 -126 72.5 -220t189.5 -125v676 q-113 -27 -187.5 -116t-74.5 -215z" />
+<glyph unicode="&#xa3;" horiz-adv-x="1261" d="M121 588v200h176v256q0 248 125 362t328 114q268 0 403 -230l-170 -135q-84 139 -217 139q-98 0 -162.5 -56t-64.5 -181v-269h342v-200h-342v-373h610v-215h-1020v215h168v373h-176z" />
+<glyph unicode="&#xa4;" horiz-adv-x="1546" d="M123 127l184 184q-109 147 -108.5 336t104.5 332l-180 180l145 144l185 -183q139 90 317 90t324 -92l184 185l145 -144l-182 -182q104 -147 104.5 -330.5t-110.5 -333.5l188 -186l-143 -143l-195 190q-137 -86 -313 -86t-313 86l-193 -190zM440 649.5q0 -151.5 94.5 -248 t237.5 -96.5t237.5 96.5t94.5 248t-94.5 246.5t-237.5 95t-237.5 -95t-94.5 -246.5z" />
+<glyph unicode="&#xa5;" horiz-adv-x="1464" d="M72 1432h264l387 -658h14l402 658h260l-426 -695h268v-180h-379l-6 -12v-111h385v-180h-387v-254h-256v254h-389v180h389v111l-8 12h-381v180h274z" />
+<glyph unicode="&#xa6;" horiz-adv-x="565" d="M186 -49v670h193v-670h-193zM186 881v669h193v-669h-193z" />
+<glyph unicode="&#xa7;" horiz-adv-x="1249" d="M104 641q0 98 68 180t188 105q-166 66 -165.5 229.5t120 264t306.5 100.5q133 0 233 -33t205 -109l-117 -164q-152 113 -326 113q-94 0 -148 -43t-54 -111.5t59 -109.5t269 -91t314.5 -130t104.5 -230q0 -102 -65.5 -185t-204.5 -116q94 -35 141 -106.5t47 -147.5 q0 -141 -119.5 -240.5t-320.5 -99.5q-293 0 -518 201l131 156q201 -166 393 -166q219 0 219 139q0 66 -68.5 109t-268 101t-311.5 141t-112 243zM297 649q0 -96 120 -159.5t306 -63.5q106 0 177 45t71 111.5t-47 109.5t-121 66q-147 43 -261 43t-179.5 -40t-65.5 -112z" />
+<glyph unicode="&#xa8;" horiz-adv-x="1249" d="M340 1357q0 52 37 89t89 37t89 -36t37 -88t-38 -90t-90 -38t-88 37t-36 89zM719 1357q0 52 37 89t89 37t89 -36t37 -88t-37 -90t-89 -38t-89 37t-37 89z" />
+<glyph unicode="&#xa9;" horiz-adv-x="1703" d="M111 715q0 305 217 524t524 219t524 -217t217 -522t-217 -524.5t-526 -219.5t-524 217.5t-215 522.5zM207 713.5q0 -269.5 186.5 -460t458.5 -190.5t461.5 193t189.5 461t-187.5 458.5t-459.5 190.5t-460.5 -191.5t-188.5 -461zM461 719q0 182 123 294.5t305 112.5 t299 -122l-98 -121q-106 90 -209 90t-179.5 -68.5t-76.5 -178.5t76.5 -185.5t188 -75.5t206.5 100l98 -106q-139 -145 -317.5 -145.5t-297 111.5t-118.5 294z" />
+<glyph unicode="&#xaa;" horiz-adv-x="720" d="M121 1110q0 150 203 150h139v18q0 100 -113 100q-68 0 -145 -51l-47 68q90 72 194 71q215 0 215 -186v-326h-96v68q-63 -76 -154.5 -76t-143.5 45t-52 119zM227 1112q0 -37 29 -56.5t79 -19.5t88 30t38 77v43h-119q-115 0 -115 -74z" />
+<glyph unicode="&#xab;" horiz-adv-x="1120" d="M115 492l243 360h222l-236 -360l236 -361h-222zM520 492l244 360h221l-235 -360l235 -361h-221z" />
+<glyph unicode="&#xac;" horiz-adv-x="1695" d="M137 731v180h1370v-731h-168v551h-1202z" />
+<glyph unicode="&#xad;" horiz-adv-x="974" d="M147 504v215h680v-215h-680z" />
+<glyph unicode="&#xae;" horiz-adv-x="1703" d="M111 715q0 305 217 524t524 219t524 -217t217 -522t-217 -524.5t-526 -219.5t-524 217.5t-215 522.5zM207 713.5q0 -269.5 186.5 -460t458.5 -190.5t461.5 193t189.5 461t-187.5 458.5t-459.5 190.5t-460.5 -191.5t-188.5 -461zM569 322v800h301q182 0 261 -62.5 t79 -199.5q0 -199 -174 -250l213 -288h-172l-192 268h-176v-268h-140zM709 713h165q115 0 157 34.5t42 113.5t-43 109.5t-151 30.5h-170v-288z" />
+<glyph unicode="&#xaf;" horiz-adv-x="868" d="M121 1229v178h629v-178h-629z" />
+<glyph unicode="&#xb0;" horiz-adv-x="851" d="M111 1149q0 131 92 223t223 92t223 -92t92 -223t-92 -222t-223 -91t-223 91t-92 222zM217 1149q0 -86 60.5 -147.5t147.5 -61.5t147.5 61.5t60.5 147.5t-60.5 146.5t-147.5 60.5t-147.5 -60.5t-60.5 -146.5z" />
+<glyph unicode="&#xb1;" horiz-adv-x="1163" d="M98 279v172h967v-172h-967zM98 842v192h391v273h185v-273h391v-192h-391v-277h-185v277h-391z" />
+<glyph unicode="&#xb2;" horiz-adv-x="858" d="M135 1300q109 166 287 166q111 0 189.5 -66.5t78.5 -180.5q0 -63 -33.5 -122t-124.5 -153l-194 -199h379v-135h-572v119l252 256q86 86 122 135t36 99.5t-38 85t-97 34.5q-104 0 -172 -104z" />
+<glyph unicode="&#xb3;" horiz-adv-x="811" d="M111 662l61 114q100 -72 217 -71q74 0 122 33.5t48 99t-53 104.5t-124 39t-116 -14v108l197 230h-305v127h495v-113l-204 -229q117 -2 181 -73t64 -183.5t-87 -186.5t-226 -74t-270 89z" />
+<glyph unicode="&#xb4;" horiz-adv-x="1705" d="M692 1286l217 297l242 -100l-250 -197h-209z" />
+<glyph unicode="&#xb5;" horiz-adv-x="1314" d="M176 -397v1487h230v-598q0 -301 249 -302q119 0 207 79t88 231v590h230v-1090h-230v199q-55 -100 -152.5 -157.5t-204 -57.5t-187.5 34v-415h-230z" />
+<glyph unicode="&#xb6;" horiz-adv-x="1374" d="M72 1139q0 174 120.5 292.5t366.5 118.5h612v-1779h-190v1585h-229v-1585h-185v981q-49 -6 -94 -7q-113 0 -196.5 39t-124.5 101q-80 119 -80 254z" />
+<glyph unicode="&#xb7;" horiz-adv-x="595" d="M145 653.5q0 63.5 44 107.5t107.5 44t109 -44t45.5 -107.5t-45.5 -108.5t-109 -45t-107.5 45t-44 108.5z" />
+<glyph unicode="&#xb8;" horiz-adv-x="575" d="M86 -389l53 117q39 -20 79 -20.5t62.5 23t22.5 56.5t-23.5 58.5t-59.5 25.5t-60 -10l73 139h146l-41 -78q143 -19 143 -162q0 -78 -63.5 -136t-160.5 -58t-171 45z" />
+<glyph unicode="&#xb9;" horiz-adv-x="548" d="M84 1307v125h303v-838h-133v713h-170z" />
+<glyph unicode="&#xba;" horiz-adv-x="774" d="M115 1200q0 113 77.5 189.5t194.5 76.5t194.5 -76.5t77.5 -189.5t-77.5 -189.5t-194.5 -76.5t-194.5 76.5t-77.5 189.5zM223 1201q0 -75 46 -122t118 -47t118 47t46 122t-46 122t-118 47t-118 -47t-46 -122z" />
+<glyph unicode="&#xbb;" horiz-adv-x="1120" d="M135 131l236 361l-236 360h221l244 -360l-244 -361h-221zM541 131l235 361l-235 360h221l244 -360l-244 -361h-221z" />
+<glyph unicode="&#xbc;" horiz-adv-x="1767" d="M72 1307v125h303v-838h-133v713h-170zM446 -16l764 1566h148l-764 -1566h-148zM1094 211v125l305 502h155l-303 -498h201v154h133v-154h103v-129h-103v-211h-133v211h-358z" />
+<glyph unicode="&#xbd;" horiz-adv-x="1900" d="M72 1307v125h303v-838h-133v713h-170zM512 -16l764 1566h147l-764 -1566h-147zM1231 690q109 166 285 166q111 0 190.5 -66.5t79.5 -181.5q0 -63 -34 -122.5t-124 -151.5l-196 -199h378v-135h-571v119l254 256q84 86 120 135t36 99t-38 85t-98 35q-100 0 -172 -104z" />
+<glyph unicode="&#xbe;" horiz-adv-x="1845" d="M82 662l61 114q100 -72 217 -71q74 0 122 33.5t48 99t-53 104.5t-123.5 39t-115.5 -14v108l196 230h-305v127h496v-113l-205 -229q117 -2 181.5 -73t64.5 -183.5t-87 -186.5t-226.5 -74t-270.5 89zM530 -16l764 1566h148l-764 -1566h-148zM1178 211v125l305 502h155 l-303 -498h201v154h133v-154h103v-129h-103v-211h-133v211h-358z" />
+<glyph unicode="&#xbf;" horiz-adv-x="1040" d="M109 362q0 123 67 205q39 49 59.5 69.5t54.5 52.5t57.5 55.5t37.5 41.5q37 43 37 125v93h231v-125q0 -82 -19.5 -122t-84.5 -106l-150 -149q-47 -51 -47 -127t49.5 -126t127 -50t130 48t60.5 128h248q-20 -182 -142.5 -285.5t-304.5 -103.5t-296.5 99t-114.5 277z M377 1305.5q0 62.5 46 107.5t110.5 45t111.5 -44t47 -106.5t-46 -107.5t-110.5 -45t-111.5 44t-47 106.5z" />
+<glyph unicode="&#xc0;" horiz-adv-x="1495" d="M0 0l631 1432h233l631 -1432h-266l-146 326h-686l-139 -326h-258zM401 1747l242 100l217 -297h-209zM498 549h489l-246 551z" />
+<glyph unicode="&#xc1;" horiz-adv-x="1519" d="M0 0l631 1432h258l631 -1432h-258l-144 326h-717l-143 -326h-258zM500 549h520l-260 590zM662 1552l217 297l241 -100l-250 -197h-208z" />
+<glyph unicode="&#xc2;" horiz-adv-x="1495" d="M0 0l631 1432h233l631 -1432h-266l-146 326h-686l-139 -326h-258zM383 1550l250 275h213l250 -275h-199l-158 115l-157 -115h-199zM498 549h489l-246 551z" />
+<glyph unicode="&#xc3;" horiz-adv-x="1495" d="M0 0l631 1432h233l631 -1432h-266l-146 326h-686l-139 -326h-258zM406 1550q0 119 48 193t134 74q55 0 153.5 -48.5t128.5 -48.5q61 0 62 90h153q-6 -266 -188 -266q-53 0 -148.5 48t-121.5 48q-68 0 -70 -90h-151zM498 549h489l-246 551z" />
+<glyph unicode="&#xc4;" horiz-adv-x="1495" d="M0 0l631 1432h233l631 -1432h-266l-146 326h-686l-139 -326h-258zM432 1668q0 52 36 89t89 37t90 -36t37 -88t-37 -90t-90 -38t-89 37t-36 89zM498 549h489l-246 551zM811 1668q0 52 37 89t89 37t89 -36t37 -88t-38 -90t-89 -38t-88 37t-37 89z" />
+<glyph unicode="&#xc5;" horiz-adv-x="1495" d="M0 0l618 1407q-92 66 -92 162t66.5 160.5t155 64.5t156 -64.5t67.5 -162t-97 -162.5l621 -1405h-266l-146 326h-686l-139 -326h-258zM498 549h489l-246 551zM635 1580q0 -50 31.5 -82t82 -32t81 32t30.5 82t-30.5 82t-81 32t-82 -32t-31.5 -82z" />
+<glyph unicode="&#xc6;" horiz-adv-x="2129" d="M-23 0l750 1432h1268v-226h-764v-393h686v-211h-686v-377h788v-225h-1052v326h-518l-175 -326h-297zM565 557h402v649h-60z" />
+<glyph unicode="&#xc7;" horiz-adv-x="1507" d="M106 735q0 305 218.5 518t551 213t556.5 -245l-154 -168q-102 98 -193.5 137t-214.5 39q-217 0 -364.5 -140.5t-147.5 -358.5t146.5 -364.5t347.5 -146.5q125 0 215 42t188 134l156 -159q-213 -238 -520 -250l-33 -64q143 -18 143 -162q0 -78 -63.5 -136t-160.5 -58 t-171 45l53 117q39 -20 79 -20.5t62.5 23t22.5 56.5t-23.5 58.5t-59 25.5t-60.5 -10l68 129q-281 35 -461.5 237.5t-180.5 507.5z" />
+<glyph unicode="&#xc8;" horiz-adv-x="1339" d="M199 0v1432h1005v-228h-764v-379h686v-215h-686v-383h789v-227h-1030zM403 1747l242 100l217 -297h-209z" />
+<glyph unicode="&#xc9;" horiz-adv-x="1339" d="M199 0v1432h1005v-228h-764v-379h686v-215h-686v-383h789v-227h-1030zM602 1550l217 297l242 -100l-250 -197h-209z" />
+<glyph unicode="&#xca;" horiz-adv-x="1339" d="M199 0v1432h1005v-228h-764v-379h686v-215h-686v-383h789v-227h-1030zM346 1550l250 275h213l250 -275h-199l-158 115l-157 -115h-199z" />
+<glyph unicode="&#xcb;" horiz-adv-x="1339" d="M199 0v1432h1005v-228h-764v-379h686v-215h-686v-383h789v-227h-1030zM389 1668q0 52 37 89t89 37t89 -36t37 -88t-38 -90t-90 -38t-88 37t-36 89zM768 1668q0 52 37 89t89 37t89 -36t37 -88t-37 -90t-89 -38t-89 37t-37 89z" />
+<glyph unicode="&#xcc;" horiz-adv-x="638" d="M-31 1747l242 100l217 -297h-209zM199 0v1432h241v-1432h-241z" />
+<glyph unicode="&#xcd;" horiz-adv-x="638" d="M199 0v1432h241v-1432h-241zM211 1550l217 297l242 -100l-250 -197h-209z" />
+<glyph unicode="&#xce;" horiz-adv-x="638" d="M-14 1550l250 275h213l249 -275h-198l-158 115l-158 -115h-198zM199 0v1432h241v-1432h-241z" />
+<glyph unicode="&#xcf;" horiz-adv-x="638" d="M6 1668q0 52 36 89t89 37t90 -36t37 -88t-37 -90t-90 -38t-89 37t-36 89zM199 0v1432h241v-1432h-241zM385 1668q0 52 37 89t89 37t89 -36t37 -88t-38 -90t-89 -38t-88 37t-37 89z" />
+<glyph unicode="&#xd0;" horiz-adv-x="1617" d="M53 602v215h162v615h492q385 0 591.5 -187.5t206.5 -521.5t-200.5 -528.5t-614.5 -194.5h-475v602h-162zM457 227h268q260 0 398.5 124t138.5 366q0 492 -564 491h-241v-391h512v-215h-512v-375z" />
+<glyph unicode="&#xd1;" horiz-adv-x="1712" d="M199 0v1432h241l832 -1070v1070h241v-1432h-262l-811 1044v-1044h-241zM510 1550q0 119 48 193t134 74q55 0 153.5 -48.5t129.5 -48.5q61 0 61 90h154q-7 -266 -189 -266q-53 0 -148 48t-122 48q-68 0 -69 -90h-152z" />
+<glyph unicode="&#xd2;" horiz-adv-x="1720" d="M106 726q0 316 217.5 528t537 212t536.5 -212t217 -528t-217 -528t-536.5 -212t-537 212t-217.5 528zM354 726q0 -216 146.5 -367.5t359.5 -151.5t359.5 151.5t146.5 367.5t-146.5 367.5t-359.5 151.5t-359.5 -151.5t-146.5 -367.5zM557 1747l242 100l217 -297h-209z" />
+<glyph unicode="&#xd3;" horiz-adv-x="1720" d="M106 726q0 316 217.5 528t537 212t536.5 -212t217 -528t-217 -528t-536.5 -212t-537 212t-217.5 528zM354 726q0 -216 146.5 -367.5t359.5 -151.5t359.5 151.5t146.5 367.5t-146.5 367.5t-359.5 151.5t-359.5 -151.5t-146.5 -367.5zM688 1550l217 297l242 -100l-250 -197 h-209z" />
+<glyph unicode="&#xd4;" horiz-adv-x="1720" d="M106 726q0 316 217.5 528t537 212t536.5 -212t217 -528t-217 -528t-536.5 -212t-537 212t-217.5 528zM354 726q0 -216 146.5 -367.5t359.5 -151.5t359.5 151.5t146.5 367.5t-146.5 367.5t-359.5 151.5t-359.5 -151.5t-146.5 -367.5zM500 1550l250 275h213l249 -275h-198 l-158 115l-158 -115h-198z" />
+<glyph unicode="&#xd5;" horiz-adv-x="1720" d="M106 726q0 316 217.5 528t537 212t536.5 -212t217 -528t-217 -528t-536.5 -212t-537 212t-217.5 528zM354 726q0 -216 146.5 -367.5t359.5 -151.5t359.5 151.5t146.5 367.5t-146.5 367.5t-359.5 151.5t-359.5 -151.5t-146.5 -367.5zM516 1550q0 119 48 193t134 74 q55 0 153.5 -48.5t129.5 -48.5q61 0 61 90h154q-6 -266 -188 -266q-53 0 -148.5 48t-122.5 48q-68 0 -69 -90h-152z" />
+<glyph unicode="&#xd6;" horiz-adv-x="1720" d="M106 726q0 316 217.5 528t537 212t536.5 -212t217 -528t-217 -528t-536.5 -212t-537 212t-217.5 528zM354 726q0 -216 146.5 -367.5t359.5 -151.5t359.5 151.5t146.5 367.5t-146.5 367.5t-359.5 151.5t-359.5 -151.5t-146.5 -367.5zM535 1668q0 52 35.5 89t89 37t90 -36 t36.5 -88t-36.5 -90t-90 -38t-89 37t-35.5 89zM913 1668q0 52 37 89t89.5 37t89 -36t36.5 -88t-37.5 -90t-89 -38t-88.5 37t-37 89z" />
+<glyph unicode="&#xd7;" horiz-adv-x="1157" d="M98 430l351 350l-349 346l131 131l349 -350l348 350l129 -131l-346 -346l348 -350l-129 -131l-350 350l-351 -350z" />
+<glyph unicode="&#xd8;" horiz-adv-x="1720" d="M106 727q0 315 217.5 527t536.5 212q125 0 248 -39l111 234h204l-145 -313q156 -98 246 -261t90 -360q0 -317 -217 -529t-537 -212q-109 0 -207 24l-116 -250h-205l149 320q-174 94 -274.5 265t-100.5 382zM354 725q0 -133 60.5 -248t165.5 -186l434 930q-74 24 -154 24 q-213 0 -359.5 -151.5t-146.5 -368.5zM750 217q57 -10 110 -10q213 0 359.5 151.5t146.5 366.5q0 250 -188 408z" />
+<glyph unicode="&#xd9;" horiz-adv-x="1572" d="M180 629v803h242v-793q0 -197 98 -311.5t266 -114.5t266.5 114.5t98.5 311.5v793h242v-803q0 -309 -170 -476t-436.5 -167t-436.5 166.5t-170 476.5zM510 1747l242 100l217 -297h-209z" />
+<glyph unicode="&#xda;" horiz-adv-x="1572" d="M180 629v803h242v-793q0 -197 98 -311.5t266 -114.5t266.5 114.5t98.5 311.5v793h242v-803q0 -309 -170 -476t-436.5 -167t-436.5 166.5t-170 476.5zM643 1552l217 297l242 -100l-250 -197h-209z" />
+<glyph unicode="&#xdb;" horiz-adv-x="1572" d="M180 629v803h242v-793q0 -197 98 -311.5t266 -114.5t266.5 114.5t98.5 311.5v793h242v-803q0 -309 -170 -476t-436.5 -167t-436.5 166.5t-170 476.5zM438 1550l250 275h213l250 -275h-199l-157 115l-158 -115h-199z" />
+<glyph unicode="&#xdc;" horiz-adv-x="1572" d="M180 629v803h242v-793q0 -197 98 -311.5t266 -114.5t266.5 114.5t98.5 311.5v793h242v-803q0 -309 -170 -476t-436.5 -167t-436.5 166.5t-170 476.5zM475 1668q0 52 37 89t89 37t89 -36t37 -88t-38 -90t-90 -38t-88 37t-36 89zM854 1668q0 52 37 89t89 37t89 -36t37 -88 t-37 -90t-89 -38t-89 37t-37 89z" />
+<glyph unicode="&#xdd;" horiz-adv-x="1277" d="M-16 1432h264l391 -652l391 652h264l-532 -867v-565h-246v565zM588 1520l217 297l242 -101l-250 -196h-209z" />
+<glyph unicode="&#xde;" horiz-adv-x="1404" d="M199 0v1432h241v-181h230q645 1 645 -495q0 -272 -162 -394t-479 -122h-234v-240h-241zM440 459h260q203 0 285 78.5t82 224t-100.5 208t-300.5 62.5h-226v-573z" />
+<glyph unicode="&#xdf;" horiz-adv-x="1333" d="M166 0v934q0 147 13.5 207.5t30.5 114t41.5 91t63.5 78.5t86 66q111 59 258.5 59t248 -41t149.5 -108q92 -123 92 -266q0 -211 -213 -344q152 -16 227.5 -123t75.5 -246q0 -193 -135 -307.5t-387 -114.5h-84v201h45q154 0 236.5 50t82.5 172t-81.5 180.5t-219.5 58.5 q-47 0 -71 -3v191q147 22 218.5 93t71.5 164t-54 160.5t-171 67.5q-156 0 -219 -96t-63 -285v-954h-242z" />
+<glyph unicode="&#xe0;" horiz-adv-x="1202" d="M84 337q0 161 119 240.5t321 79.5h297v41q0 217 -241 217q-152 0 -316 -110l-102 143q199 158 450 158q193 0 315 -97.5t122 -306.5v-702h-209v145q-135 -162 -363 -161q-170 0 -281.5 96t-111.5 257zM313 342q0 -80 61.5 -122t171 -42t191.5 62t82 166v92h-258 q-248 0 -248 -156zM328 1425l241 101l217 -297h-208z" />
+<glyph unicode="&#xe1;" horiz-adv-x="1202" d="M84 337q0 161 119 240.5t321 79.5h297v41q0 217 -241 217q-152 0 -316 -110l-102 143q199 158 450 158q193 0 315 -97.5t122 -306.5v-702h-209v145q-135 -162 -363 -161q-170 0 -281.5 96t-111.5 257zM313 342q0 -80 61.5 -122t171 -42t191.5 62t82 166v92h-258 q-248 0 -248 -156zM510 1229l217 297l242 -101l-250 -196h-209z" />
+<glyph unicode="&#xe2;" horiz-adv-x="1202" d="M84 337q0 161 119 240.5t321 79.5h297v41q0 217 -241 217q-152 0 -316 -110l-102 143q199 158 450 158q193 0 315 -97.5t122 -306.5v-702h-209v145q-135 -162 -363 -161q-170 0 -281.5 96t-111.5 257zM240 1229l249 274h213l250 -274h-198l-158 114l-158 -114h-198z M313 342q0 -80 61.5 -122t171 -42t191.5 62t82 166v92h-258q-248 0 -248 -156z" />
+<glyph unicode="&#xe3;" horiz-adv-x="1202" d="M84 337q0 161 119 240.5t321 79.5h297v41q0 217 -241 217q-152 0 -316 -110l-102 143q199 158 450 158q193 0 315 -97.5t122 -306.5v-702h-209v145q-135 -162 -363 -161q-170 0 -281.5 96t-111.5 257zM256 1229q0 119 48 192.5t134 73.5q55 0 153.5 -48t129.5 -48 q61 0 61 90h154q-6 -266 -188 -266q-53 0 -148.5 48t-122.5 48q-68 0 -69 -90h-152zM313 342q0 -80 61.5 -122t171 -42t191.5 62t82 166v92h-258q-248 0 -248 -156z" />
+<glyph unicode="&#xe4;" horiz-adv-x="1202" d="M84 337q0 161 119 240.5t321 79.5h297v41q0 217 -241 217q-152 0 -316 -110l-102 143q199 158 450 158q193 0 315 -97.5t122 -306.5v-702h-209v145q-135 -162 -363 -161q-170 0 -281.5 96t-111.5 257zM285 1356q0 53 35.5 89t89 36t90.5 -36t37 -89t-37 -90t-90.5 -37 t-89 37t-35.5 90zM313 342q0 -80 61.5 -122t171 -42t191.5 62t82 166v92h-258q-248 0 -248 -156zM664 1355q0 52 36.5 89t89 37t89 -36t36.5 -89t-37.5 -90t-89 -37t-88 37t-36.5 89z" />
+<glyph unicode="&#xe5;" horiz-adv-x="1202" d="M84 337q0 161 119 240.5t321 79.5h297v41q0 217 -241 217q-152 0 -316 -110l-102 143q199 158 450 158q193 0 315 -97.5t122 -306.5v-702h-209v145q-135 -162 -363 -161q-170 0 -281.5 96t-111.5 257zM313 342q0 -80 61.5 -122t171 -42t191.5 62t82 166v92h-258 q-248 0 -248 -156zM381 1407q0 86 66.5 150.5t154.5 64.5t155.5 -64.5t67.5 -150.5t-67.5 -149.5t-155.5 -63.5t-154.5 63.5t-66.5 149.5zM489 1408q0 -50 32 -82t82 -32t81 32t31 82t-31 82t-81 32t-82 -32t-32 -82z" />
+<glyph unicode="&#xe6;" horiz-adv-x="1949" d="M84 338q0 160 117.5 235.5t322.5 75.5h297v49q0 217 -241 217q-152 0 -316 -110l-102 143q199 158 450.5 158t362.5 -152q147 152 371.5 152t371 -134t146.5 -370v-131h-813q2 -131 95 -211t222 -80q184 0 291 129l131 -143q-176 -182 -441.5 -182t-414.5 196 q-164 -197 -436 -196q-172 0 -293 97t-121 257zM313 342q0 -80 61.5 -122t171 -42t191.5 62t82 166v65h-258q-190 0 -229 -57q-18 -29 -19 -72zM1053 649l581 -2q-8 129 -83.5 195.5t-192.5 66.5t-206 -69.5t-99 -190.5z" />
+<glyph unicode="&#xe7;" horiz-adv-x="1181" d="M96 553q0 240 171 396.5t417 156.5t416 -170l-135 -166q-141 123 -284.5 123t-249 -95.5t-105.5 -246t103 -254.5t257 -104t289 139l135 -148q-168 -168 -381 -194l-35 -68q144 -19 144 -162q0 -78 -63.5 -136t-161 -58t-171.5 45l54 117q39 -20 78.5 -20.5t62 23 t22.5 56.5t-23.5 58.5t-59 25.5t-60.5 -10l68 127q-207 25 -347.5 175t-140.5 390z" />
+<glyph unicode="&#xe8;" horiz-adv-x="1265" d="M96 546q0 257 164 408.5t386 151.5t378 -134t156 -370v-158h-854q8 -119 108.5 -191.5t229.5 -72.5q205 0 311 129l131 -143q-176 -182 -459 -182q-229 0 -390 152.5t-161 409.5zM326 625h624q0 137 -86 210.5t-212 73.5t-226 -76.5t-100 -207.5zM385 1425l242 101 l217 -297h-209z" />
+<glyph unicode="&#xe9;" horiz-adv-x="1265" d="M96 546q0 257 164 408.5t386 151.5t378 -134t156 -370v-158h-854q8 -119 108.5 -191.5t229.5 -72.5q205 0 311 129l131 -143q-176 -182 -459 -182q-229 0 -390 152.5t-161 409.5zM326 625h624q0 137 -86 210.5t-212 73.5t-226 -76.5t-100 -207.5zM561 1233l217 297 l242 -100l-250 -197h-209z" />
+<glyph unicode="&#xea;" horiz-adv-x="1265" d="M96 546q0 257 164 408.5t386 151.5t378 -134t156 -370v-158h-854q8 -119 108.5 -191.5t229.5 -72.5q205 0 311 129l131 -143q-176 -182 -459 -182q-229 0 -390 152.5t-161 409.5zM293 1229l250 274h213l250 -274h-199l-158 114l-157 -114h-199zM326 625h624 q0 137 -86 210.5t-212 73.5t-226 -76.5t-100 -207.5z" />
+<glyph unicode="&#xeb;" horiz-adv-x="1265" d="M96 546q0 257 164 408.5t386 151.5t378 -134t156 -370v-158h-854q8 -119 108.5 -191.5t229.5 -72.5q205 0 311 129l131 -143q-176 -182 -459 -182q-229 0 -390 152.5t-161 409.5zM326 625h624q0 137 -86 210.5t-212 73.5t-226 -76.5t-100 -207.5zM332 1356q0 53 37 89 t89 36t89 -36t37 -89t-38 -90t-90.5 -37t-88 37t-35.5 90zM711 1355q0 52 36.5 89t89 37t89.5 -36t37 -89t-37 -90t-89.5 -37t-89 37t-36.5 89z" />
+<glyph unicode="&#xec;" d="M-49 1425l242 101l217 -297h-209zM166 0v1090h229v-1090h-229z" />
+<glyph unicode="&#xed;" d="M166 0v1090h229v-1090h-229zM197 1229l217 287l225 -101l-250 -186h-192z" />
+<glyph unicode="&#xee;" d="M-66 1229l250 274h213l250 -274h-198l-158 114l-158 -114h-199zM166 0v1090h229v-1090h-229z" />
+<glyph unicode="&#xef;" d="M-16 1356q0 53 36.5 89t89 36t89.5 -36t37 -89t-38 -90t-90.5 -37t-88 37t-35.5 90zM166 0v1090h229v-1090h-229zM362 1355q0 52 37 89t89.5 37t89 -36t36.5 -89t-36.5 -90t-89 -37t-89.5 37t-37 89z" />
+<glyph unicode="&#xf0;" horiz-adv-x="1220" d="M102 474q0 216 143.5 354.5t346.5 138.5q145 0 221 -76l4 4q-78 129 -252 303l-190 -121l-117 111l193 123q-4 6 -150 127l195 112q74 -57 149 -129l174 111l121 -111l-180 -116q360 -391 360 -758q0 -252 -133 -407.5t-362.5 -155.5t-376 137t-146.5 353zM326 474 q0 -120 78.5 -205t206.5 -85t207 85t79 205t-79 206t-207 86t-206.5 -86t-78.5 -206z" />
+<glyph unicode="&#xf1;" horiz-adv-x="1323" d="M166 0v1090h229v-199q55 100 152.5 157.5t210.5 57.5q184 0 297.5 -112.5t113.5 -325.5v-668h-229v598q0 301 -250 301q-119 0 -207 -78.5t-88 -230.5v-590h-229zM338 1229q0 119 48 192.5t134 73.5q55 0 153.5 -48t129.5 -48q61 0 61 90h154q-7 -266 -189 -266 q-53 0 -148 48t-122 48q-68 0 -70 -90h-151z" />
+<glyph unicode="&#xf2;" horiz-adv-x="1335" d="M94 544.5q0 235.5 164 398.5t409.5 163t409.5 -163t164 -398.5t-164 -398t-409.5 -162.5t-409.5 162.5t-164 398zM324 544.5q0 -157.5 97 -257t246.5 -99.5t247 99.5t97.5 257t-97.5 257t-247 99.5t-246.5 -99.5t-97 -257zM350 1425l242 101l217 -297h-209z" />
+<glyph unicode="&#xf3;" horiz-adv-x="1335" d="M94 544.5q0 235.5 164 398.5t409.5 163t409.5 -163t164 -398.5t-164 -398t-409.5 -162.5t-409.5 162.5t-164 398zM324 544.5q0 -157.5 97 -257t246.5 -99.5t247 99.5t97.5 257t-97.5 257t-247 99.5t-246.5 -99.5t-97 -257zM563 1229l217 297l242 -101l-250 -196h-209z " />
+<glyph unicode="&#xf4;" horiz-adv-x="1335" d="M94 544.5q0 235.5 164 398.5t409.5 163t409.5 -163t164 -398.5t-164 -398t-409.5 -162.5t-409.5 162.5t-164 398zM313 1229l250 274h213l250 -274h-199l-157 114l-158 -114h-199zM324 544.5q0 -157.5 97 -257t246.5 -99.5t247 99.5t97.5 257t-97.5 257t-247 99.5 t-246.5 -99.5t-97 -257z" />
+<glyph unicode="&#xf5;" horiz-adv-x="1335" d="M94 544.5q0 235.5 164 398.5t409.5 163t409.5 -163t164 -398.5t-164 -398t-409.5 -162.5t-409.5 162.5t-164 398zM324 544.5q0 -157.5 97 -257t246.5 -99.5t247 99.5t97.5 257t-97.5 257t-247 99.5t-246.5 -99.5t-97 -257zM328 1229q0 119 48 192.5t134 73.5 q55 0 153.5 -48t129.5 -48q61 0 61 90h154q-7 -266 -189 -266q-53 0 -148.5 48t-121.5 48q-68 0 -70 -90h-151z" />
+<glyph unicode="&#xf6;" horiz-adv-x="1335" d="M94 544.5q0 235.5 164 398.5t409.5 163t409.5 -163t164 -398.5t-164 -398t-409.5 -162.5t-409.5 162.5t-164 398zM324 544.5q0 -157.5 97 -257t246.5 -99.5t247 99.5t97.5 257t-97.5 257t-247 99.5t-246.5 -99.5t-97 -257zM344 1356q0 53 37 89t89 36t89 -36t37 -89 t-38 -90t-90 -37t-88 37t-36 90zM723 1355q0 52 37 89t89 37t89 -36t37 -89t-37 -90t-89 -37t-89 37t-37 89z" />
+<glyph unicode="&#xf7;" horiz-adv-x="1163" d="M98 696v193h967v-193h-967zM430 432.5q0 63.5 44 107.5t107.5 44t108.5 -44t45 -107.5t-45 -108.5t-108.5 -45t-107.5 45t-44 108.5zM430 1159.5q0 63.5 44 107.5t107.5 44t108.5 -44t45 -107.5t-45 -108.5t-108.5 -45t-107.5 45t-44 108.5z" />
+<glyph unicode="&#xf8;" horiz-adv-x="1335" d="M94 545q0 236 164 398.5t410 162.5q90 0 170 -25l90 193h205l-127 -270q111 -78 173 -198t62 -261q0 -236 -163.5 -398.5t-409.5 -162.5q-57 0 -133 14l-99 -213h-205l131 281q-125 74 -196.5 200.5t-71.5 278.5zM324 531q0 -171 129 -273l297 635q-35 8 -82 8 q-150 0 -247 -99.5t-97 -270.5zM625 190q14 -2 43 -2q150 0 247 99.5t97 259.5t-101 256z" />
+<glyph unicode="&#xf9;" horiz-adv-x="1323" d="M154 422v668h229v-598q0 -301 250 -302q119 0 207 79t88 231v590h229v-1090h-229v199q-55 -100 -152.5 -157.5t-210.5 -57.5q-184 0 -297.5 112.5t-113.5 325.5zM346 1425l242 101l217 -297h-209z" />
+<glyph unicode="&#xfa;" horiz-adv-x="1323" d="M154 422v668h229v-598q0 -301 250 -302q119 0 207 79t88 231v590h229v-1090h-229v199q-55 -100 -152.5 -157.5t-210.5 -57.5q-184 0 -297.5 112.5t-113.5 325.5zM508 1233l217 297l242 -100l-250 -197h-209z" />
+<glyph unicode="&#xfb;" horiz-adv-x="1323" d="M154 422v668h229v-598q0 -301 250 -302q119 0 207 79t88 231v590h229v-1090h-229v199q-55 -100 -152.5 -157.5t-210.5 -57.5q-184 0 -297.5 112.5t-113.5 325.5zM303 1229l250 274h213l250 -274h-199l-158 114l-157 -114h-199z" />
+<glyph unicode="&#xfc;" horiz-adv-x="1323" d="M154 422v668h229v-598q0 -301 250 -302q119 0 207 79t88 231v590h229v-1090h-229v199q-55 -100 -152.5 -157.5t-210.5 -57.5q-184 0 -297.5 112.5t-113.5 325.5zM332 1356q0 53 37 89t89 36t89 -36t37 -89t-38 -90t-90.5 -37t-88 37t-35.5 90zM711 1355q0 52 36.5 89 t89 37t89.5 -36t37 -89t-37 -90t-89.5 -37t-89 37t-36.5 89z" />
+<glyph unicode="&#xfd;" horiz-adv-x="1175" d="M18 1090h246l326 -803l325 803h246l-528 -1295q-47 -106 -135.5 -167.5t-194.5 -61.5q-150 0 -270 108l104 187q72 -68 148.5 -68t125 55.5t48.5 120.5q0 29 -441 1121zM471 1286l217 297l242 -100l-250 -197h-209z" />
+<glyph unicode="&#xfe;" horiz-adv-x="1376" d="M166 -397v1917h229v-580q6 6 15.5 17.5t44 40t73.5 51.5q102 57 220 57q237 0 384.5 -160t147.5 -404.5t-146.5 -401t-390.5 -156.5q-168 0 -292 106q-29 25 -41 41l-15 19v-547h-229zM391 544.5q0 -147.5 88 -253t226.5 -105.5t233.5 107.5t95 252t-94 252t-233.5 107.5 t-227.5 -106.5t-88 -254z" />
+<glyph unicode="&#xff;" horiz-adv-x="1175" d="M18 1090h246l326 -803l325 803h246l-528 -1295q-47 -106 -135.5 -167.5t-194.5 -61.5q-150 0 -270 108l104 187q72 -68 148.5 -68t125 55.5t48.5 120.5q0 29 -441 1121zM283 1356q0 53 36.5 89t89 36t89.5 -36t37 -89t-38 -90t-90.5 -37t-88 37t-35.5 90zM662 1355 q0 52 36.5 89t89 37t89 -36t36.5 -89t-36.5 -90t-89 -37t-89 37t-36.5 89z" />
+<glyph unicode="&#x152;" horiz-adv-x="2183" d="M109 716q0 306 209.5 511t519.5 205h1210v-228h-764v-379h686v-215h-686v-383h789v-227h-1235q-309 0 -519 205t-210 511zM371 717q0 -209 142 -357.5t347 -148.5h182v1010h-182q-207 0 -348 -147.5t-141 -356.5z" />
+<glyph unicode="&#x153;" horiz-adv-x="2183" d="M94 544.5q0 235.5 164 398.5t410 163q287 0 454 -215q76 104 194 159.5t245 55.5q225 0 380.5 -134t155.5 -370v-158h-854q8 -119 108.5 -191.5t229.5 -72.5q205 0 311 129l131 -143q-176 -182 -458 -182q-133 0 -250 55t-193 158q-166 -213 -454 -213q-246 0 -410 162.5 t-164 398zM324 544.5q0 -157.5 97 -257t246.5 -99.5t247 99.5t97.5 257t-97.5 257t-247 99.5t-246.5 -99.5t-97 -257zM1243 625h625q0 137 -86 210.5t-212 73.5t-226.5 -76.5t-100.5 -207.5z" />
+<glyph unicode="&#x2c6;" horiz-adv-x="1380" d="M340 1229l250 274h213l250 -274h-199l-158 114l-157 -114h-199z" />
+<glyph unicode="&#x2dc;" horiz-adv-x="1062" d="M195 1520q0 119 48 192.5t134 73.5q55 0 153.5 -48t128.5 -48q61 0 62 90h153q-6 -267 -188 -267q-53 0 -148.5 48.5t-121.5 48.5q-68 0 -70 -90h-151z" />
+<glyph unicode="&#x2000;" horiz-adv-x="924" />
+<glyph unicode="&#x2001;" horiz-adv-x="1849" />
+<glyph unicode="&#x2002;" horiz-adv-x="924" />
+<glyph unicode="&#x2003;" horiz-adv-x="1849" />
+<glyph unicode="&#x2004;" horiz-adv-x="616" />
+<glyph unicode="&#x2005;" horiz-adv-x="462" />
+<glyph unicode="&#x2006;" horiz-adv-x="308" />
+<glyph unicode="&#x2007;" horiz-adv-x="308" />
+<glyph unicode="&#x2008;" horiz-adv-x="231" />
+<glyph unicode="&#x2009;" horiz-adv-x="369" />
+<glyph unicode="&#x200a;" horiz-adv-x="102" />
+<glyph unicode="&#x2010;" horiz-adv-x="974" d="M147 504v215h680v-215h-680z" />
+<glyph unicode="&#x2011;" horiz-adv-x="974" d="M147 504v215h680v-215h-680z" />
+<glyph unicode="&#x2012;" horiz-adv-x="974" d="M147 504v215h680v-215h-680z" />
+<glyph unicode="&#x2013;" horiz-adv-x="1101" d="M168 463v137h766v-137h-766z" />
+<glyph unicode="&#x2014;" horiz-adv-x="1484" d="M168 465v135h1149v-135h-1149z" />
+<glyph unicode="&#x2018;" horiz-adv-x="442" d="M72 1160.5q0 56.5 37 109.5l120 174h125l-80 -176q57 -37 57.5 -99.5t-36.5 -98.5t-92.5 -36t-93 35t-37.5 91.5z" />
+<glyph unicode="&#x2019;" horiz-adv-x="444" d="M72 1024l78 176q-55 33 -55.5 97.5t36.5 100.5t92.5 36t93 -35t37.5 -91.5t-37 -109.5l-120 -174h-125z" />
+<glyph unicode="&#x201a;" horiz-adv-x="444" d="M72 -166l78 176q-55 35 -55.5 98.5t36.5 99.5t92.5 36t93 -35t37.5 -91.5t-37 -109.5l-120 -174h-125z" />
+<glyph unicode="&#x201c;" horiz-adv-x="757" d="M72 1160.5q0 56.5 37 109.5l120 174h125l-80 -176q57 -37 57.5 -99.5t-36.5 -98.5t-92.5 -36t-93 35t-37.5 91.5zM385 1160.5q0 56.5 37 109.5l121 174h125l-80 -176q57 -37 57 -99.5t-37 -98.5t-92 -36t-93 35t-38 91.5z" />
+<glyph unicode="&#x201d;" horiz-adv-x="755" d="M72 1024l78 176q-55 33 -55.5 97.5t36.5 100.5t92.5 36t93 -35t37.5 -91.5t-37 -109.5l-120 -174h-125zM383 1024l78 176q-55 33 -55 97.5t36.5 100.5t92 36t93.5 -35t38 -91.5t-37 -109.5l-121 -174h-125z" />
+<glyph unicode="&#x201e;" horiz-adv-x="755" d="M72 -166l78 176q-55 35 -55.5 98.5t36.5 99.5t92.5 36t93 -35t37.5 -91.5t-37 -109.5l-120 -174h-125zM383 -166l78 176q-55 35 -55 98.5t36.5 99.5t92 36t93.5 -35t38 -91.5t-37 -109.5l-121 -174h-125z" />
+<glyph unicode="&#x2022;" horiz-adv-x="876" d="M174 647.5q0 108.5 78 186t186.5 77.5t186 -77.5t77.5 -186t-77.5 -186.5t-186 -78t-186.5 78t-78 186.5z" />
+<glyph unicode="&#x202f;" horiz-adv-x="369" />
+<glyph unicode="&#x2039;" horiz-adv-x="714" d="M115 492l243 360h222l-236 -360l236 -361h-222z" />
+<glyph unicode="&#x203a;" horiz-adv-x="714" d="M135 131l236 361l-236 360h221l244 -360l-244 -361h-221z" />
+<glyph unicode="&#x205f;" horiz-adv-x="462" />
+<glyph unicode="&#x20ac;" horiz-adv-x="1558" d="M106 459v176h185q-6 49 -6 98t2 72h-181v176h213q68 219 240 352t391 133q326 0 516 -235l-145 -184q-90 96 -171 135t-200 39t-214 -62.5t-142 -177.5h487v-176h-530q-2 -25 -2 -75t6 -95h526v-176h-471q111 -213 334 -213q111 0 189.5 42t166.5 132l146 -176 q-190 -236 -502 -236q-213 0 -378 122t-236 329h-224z" />
+<glyph unicode="&#x25fc;" horiz-adv-x="1085" d="M0 0v1085h1085v-1085h-1085z" />
+<hkern u1="&#x26;" u2="&#x2019;" k="59" />
+<hkern u1="&#x26;" u2="&#xc6;" k="-27" />
+<hkern u1="&#x26;" u2="Y" k="51" />
+<hkern u1="&#x26;" u2="W" k="35" />
+<hkern u1="&#x26;" u2="V" k="45" />
+<hkern u1="&#x26;" u2="T" k="45" />
+<hkern u1="&#x26;" u2="A" k="-12" />
+<hkern u1="&#x26;" u2="&#x27;" k="59" />
+<hkern u1="&#x27;" u2="&#x2039;" k="29" />
+<hkern u1="&#x27;" u2="&#xf0;" k="33" />
+<hkern u1="&#x27;" u2="&#xc6;" k="106" />
+<hkern u1="&#x27;" u2="o" k="23" />
+<hkern u1="&#x27;" u2="J" k="35" />
+<hkern u1="&#x27;" u2="A" k="94" />
+<hkern u1="&#x27;" u2="&#x3a;" k="18" />
+<hkern u1="&#x27;" u2="&#x34;" k="45" />
+<hkern u1="&#x27;" u2="&#x2f;" k="150" />
+<hkern u1="&#x27;" u2="&#x2e;" k="258" />
+<hkern u1="&#x27;" u2="&#x26;" k="39" />
+<hkern u1="&#x28;" u2="&#xf0;" k="41" />
+<hkern u1="&#x28;" u2="&#x7b;" k="20" />
+<hkern u1="&#x28;" u2="w" k="31" />
+<hkern u1="&#x28;" u2="v" k="27" />
+<hkern u1="&#x28;" u2="u" k="43" />
+<hkern u1="&#x28;" u2="t" k="27" />
+<hkern u1="&#x28;" u2="s" k="35" />
+<hkern u1="&#x28;" u2="o" k="55" />
+<hkern u1="&#x28;" u2="n" k="31" />
+<hkern u1="&#x28;" u2="j" k="-188" />
+<hkern u1="&#x28;" u2="f" k="25" />
+<hkern u1="&#x28;" u2="a" k="39" />
+<hkern u1="&#x28;" u2="S" k="23" />
+<hkern u1="&#x28;" u2="O" k="45" />
+<hkern u1="&#x28;" u2="&#x39;" k="20" />
+<hkern u1="&#x28;" u2="&#x38;" k="33" />
+<hkern u1="&#x28;" u2="&#x36;" k="41" />
+<hkern u1="&#x28;" u2="&#x34;" k="45" />
+<hkern u1="&#x28;" u2="&#x30;" k="39" />
+<hkern u1="&#x28;" u2="&#x28;" k="20" />
+<hkern u1="&#x29;" u2="&#x29;" k="20" />
+<hkern u1="&#x2a;" u2="&#xf0;" k="35" />
+<hkern u1="&#x2a;" u2="&#xef;" k="-31" />
+<hkern u1="&#x2a;" u2="&#xee;" k="-66" />
+<hkern u1="&#x2a;" u2="&#xec;" k="-16" />
+<hkern u1="&#x2a;" u2="&#xc6;" k="102" />
+<hkern u1="&#x2a;" u2="y" k="-14" />
+<hkern u1="&#x2a;" u2="v" k="-18" />
+<hkern u1="&#x2a;" u2="o" k="23" />
+<hkern u1="&#x2a;" u2="J" k="41" />
+<hkern u1="&#x2a;" u2="A" k="90" />
+<hkern u1="&#x2b;" u2="&#x33;" k="20" />
+<hkern u1="&#x2d;" u2="&#xc6;" k="18" />
+<hkern u1="&#x2d;" u2="z" k="35" />
+<hkern u1="&#x2d;" u2="x" k="47" />
+<hkern u1="&#x2d;" u2="t" k="18" />
+<hkern u1="&#x2d;" u2="f" k="18" />
+<hkern u1="&#x2d;" u2="Z" k="39" />
+<hkern u1="&#x2d;" u2="Y" k="92" />
+<hkern u1="&#x2d;" u2="X" k="57" />
+<hkern u1="&#x2d;" u2="W" k="39" />
+<hkern u1="&#x2d;" u2="V" k="53" />
+<hkern u1="&#x2d;" u2="T" k="117" />
+<hkern u1="&#x2d;" u2="S" k="16" />
+<hkern u1="&#x2d;" u2="J" k="59" />
+<hkern u1="&#x2d;" u2="A" k="25" />
+<hkern u1="&#x2d;" u2="&#x37;" k="39" />
+<hkern u1="&#x2d;" u2="&#x33;" k="39" />
+<hkern u1="&#x2d;" u2="&#x32;" k="39" />
+<hkern u1="&#x2d;" u2="&#x31;" k="55" />
+<hkern u1="&#x2e;" u2="&#x2019;" k="289" />
+<hkern u1="&#x2e;" u2="&#x2018;" k="289" />
+<hkern u1="&#x2e;" u2="y" k="74" />
+<hkern u1="&#x2e;" u2="w" k="57" />
+<hkern u1="&#x2e;" u2="v" k="74" />
+<hkern u1="&#x2e;" u2="t" k="33" />
+<hkern u1="&#x2e;" u2="f" k="16" />
+<hkern u1="&#x2e;" u2="Y" k="127" />
+<hkern u1="&#x2e;" u2="W" k="96" />
+<hkern u1="&#x2e;" u2="V" k="119" />
+<hkern u1="&#x2e;" u2="U" k="31" />
+<hkern u1="&#x2e;" u2="T" k="119" />
+<hkern u1="&#x2e;" u2="O" k="39" />
+<hkern u1="&#x2e;" u2="&#x37;" k="35" />
+<hkern u1="&#x2e;" u2="&#x36;" k="20" />
+<hkern u1="&#x2e;" u2="&#x31;" k="63" />
+<hkern u1="&#x2e;" u2="&#x30;" k="23" />
+<hkern u1="&#x2e;" u2="&#x27;" k="258" />
+<hkern u1="&#x2f;" u2="&#xf0;" k="49" />
+<hkern u1="&#x2f;" u2="&#xcf;" k="-16" />
+<hkern u1="&#x2f;" u2="&#xc6;" k="135" />
+<hkern u1="&#x2f;" u2="z" k="53" />
+<hkern u1="&#x2f;" u2="x" k="35" />
+<hkern u1="&#x2f;" u2="w" k="23" />
+<hkern u1="&#x2f;" u2="v" k="20" />
+<hkern u1="&#x2f;" u2="u" k="53" />
+<hkern u1="&#x2f;" u2="s" k="88" />
+<hkern u1="&#x2f;" u2="o" k="94" />
+<hkern u1="&#x2f;" u2="n" k="57" />
+<hkern u1="&#x2f;" u2="f" k="27" />
+<hkern u1="&#x2f;" u2="a" k="84" />
+<hkern u1="&#x2f;" u2="S" k="33" />
+<hkern u1="&#x2f;" u2="O" k="51" />
+<hkern u1="&#x2f;" u2="J" k="31" />
+<hkern u1="&#x2f;" u2="A" k="125" />
+<hkern u1="&#x2f;" u2="&#x39;" k="20" />
+<hkern u1="&#x2f;" u2="&#x38;" k="39" />
+<hkern u1="&#x2f;" u2="&#x36;" k="45" />
+<hkern u1="&#x2f;" u2="&#x34;" k="86" />
+<hkern u1="&#x2f;" u2="&#x30;" k="43" />
+<hkern u1="&#x2f;" u2="&#x2f;" k="575" />
+<hkern u1="&#x30;" u2="]" k="43" />
+<hkern u1="&#x30;" u2="\" k="27" />
+<hkern u1="&#x30;" u2="A" k="20" />
+<hkern u1="&#x30;" u2="&#x2f;" k="49" />
+<hkern u1="&#x30;" u2="&#x2e;" k="23" />
+<hkern u1="&#x30;" u2="&#x29;" k="39" />
+<hkern u1="&#x32;" u2="&#xb7;" k="35" />
+<hkern u1="&#x32;" u2="&#x2d;" k="23" />
+<hkern u1="&#x33;" u2="&#x2f;" k="33" />
+<hkern u1="&#x34;" u2="&#xb0;" k="49" />
+<hkern u1="&#x34;" u2="]" k="31" />
+<hkern u1="&#x34;" u2="\" k="37" />
+<hkern u1="&#x34;" u2="Y" k="31" />
+<hkern u1="&#x34;" u2="V" k="27" />
+<hkern u1="&#x34;" u2="T" k="41" />
+<hkern u1="&#x34;" u2="&#x37;" k="27" />
+<hkern u1="&#x34;" u2="&#x31;" k="25" />
+<hkern u1="&#x34;" u2="&#x29;" k="31" />
+<hkern u1="&#x34;" u2="&#x27;" k="43" />
+<hkern u1="&#x35;" u2="&#x2f;" k="29" />
+<hkern u1="&#x36;" u2="&#x2f;" k="27" />
+<hkern u1="&#x37;" u2="&#xc6;" k="90" />
+<hkern u1="&#x37;" u2="&#xb7;" k="53" />
+<hkern u1="&#x37;" u2="&#xa2;" k="41" />
+<hkern u1="&#x37;" u2="Y" k="-33" />
+<hkern u1="&#x37;" u2="V" k="-12" />
+<hkern u1="&#x37;" u2="A" k="82" />
+<hkern u1="&#x37;" u2="&#x34;" k="41" />
+<hkern u1="&#x37;" u2="&#x2f;" k="123" />
+<hkern u1="&#x37;" u2="&#x2e;" k="135" />
+<hkern u1="&#x37;" u2="&#x2d;" k="53" />
+<hkern u1="&#x38;" u2="]" k="33" />
+<hkern u1="&#x38;" u2="\" k="20" />
+<hkern u1="&#x38;" u2="&#x2f;" k="31" />
+<hkern u1="&#x38;" u2="&#x29;" k="33" />
+<hkern u1="&#x39;" u2="]" k="41" />
+<hkern u1="&#x39;" u2="\" k="25" />
+<hkern u1="&#x39;" u2="A" k="20" />
+<hkern u1="&#x39;" u2="&#x2f;" k="49" />
+<hkern u1="&#x39;" u2="&#x2e;" k="25" />
+<hkern u1="&#x39;" u2="&#x29;" k="39" />
+<hkern u1="&#x3a;" u2="&#x2019;" k="127" />
+<hkern u1="&#x3a;" u2="y" k="18" />
+<hkern u1="&#x3a;" u2="v" k="20" />
+<hkern u1="&#x3a;" u2="t" k="16" />
+<hkern u1="&#x3a;" u2="Y" k="92" />
+<hkern u1="&#x3a;" u2="W" k="43" />
+<hkern u1="&#x3a;" u2="V" k="57" />
+<hkern u1="&#x3a;" u2="T" k="113" />
+<hkern u1="&#x3a;" u2="&#x27;" k="18" />
+<hkern u1="&#x40;" u2="&#x2019;" k="37" />
+<hkern u1="&#x40;" u2="Y" k="53" />
+<hkern u1="&#x40;" u2="W" k="20" />
+<hkern u1="&#x40;" u2="V" k="33" />
+<hkern u1="&#x40;" u2="T" k="51" />
+<hkern u1="A" u2="&#x2019;" k="109" />
+<hkern u1="A" u2="&#x2018;" k="109" />
+<hkern u1="A" u2="&#xf0;" k="18" />
+<hkern u1="A" u2="&#xae;" k="25" />
+<hkern u1="A" u2="y" k="59" />
+<hkern u1="A" u2="w" k="51" />
+<hkern u1="A" u2="v" k="59" />
+<hkern u1="A" u2="u" k="16" />
+<hkern u1="A" u2="t" k="49" />
+<hkern u1="A" u2="o" k="23" />
+<hkern u1="A" u2="f" k="18" />
+<hkern u1="A" u2="]" k="27" />
+<hkern u1="A" u2="\" k="113" />
+<hkern u1="A" u2="Y" k="104" />
+<hkern u1="A" u2="W" k="68" />
+<hkern u1="A" u2="V" k="82" />
+<hkern u1="A" u2="U" k="35" />
+<hkern u1="A" u2="T" k="113" />
+<hkern u1="A" u2="O" k="37" />
+<hkern u1="A" u2="&#x3f;" k="43" />
+<hkern u1="A" u2="&#x36;" k="20" />
+<hkern u1="A" u2="&#x31;" k="43" />
+<hkern u1="A" u2="&#x30;" k="20" />
+<hkern u1="A" u2="&#x2d;" k="25" />
+<hkern u1="A" u2="&#x2a;" k="90" />
+<hkern u1="A" u2="&#x27;" k="94" />
+<hkern u1="B" u2="z" k="10" />
+<hkern u1="B" u2="y" k="16" />
+<hkern u1="B" u2="x" k="27" />
+<hkern u1="B" u2="w" k="14" />
+<hkern u1="B" u2="v" k="16" />
+<hkern u1="B" u2="t" k="18" />
+<hkern u1="B" u2="s" k="14" />
+<hkern u1="B" u2="f" k="16" />
+<hkern u1="B" u2="]" k="41" />
+<hkern u1="B" u2="\" k="29" />
+<hkern u1="B" u2="Y" k="39" />
+<hkern u1="B" u2="X" k="20" />
+<hkern u1="B" u2="W" k="14" />
+<hkern u1="B" u2="V" k="25" />
+<hkern u1="B" u2="T" k="35" />
+<hkern u1="B" u2="J" k="14" />
+<hkern u1="B" u2="A" k="16" />
+<hkern u1="B" u2="&#x2f;" k="27" />
+<hkern u1="B" u2="&#x29;" k="35" />
+<hkern u1="C" u2="&#xf0;" k="27" />
+<hkern u1="C" u2="&#xee;" k="-47" />
+<hkern u1="C" u2="u" k="14" />
+<hkern u1="C" u2="s" k="14" />
+<hkern u1="C" u2="o" k="31" />
+<hkern u1="C" u2="n" k="10" />
+<hkern u1="C" u2="S" k="10" />
+<hkern u1="C" u2="O" k="31" />
+<hkern u1="C" u2="&#x2d;" k="20" />
+<hkern u1="E" u2="&#xf0;" k="20" />
+<hkern u1="E" u2="u" k="14" />
+<hkern u1="E" u2="t" k="16" />
+<hkern u1="E" u2="o" k="20" />
+<hkern u1="E" u2="f" k="12" />
+<hkern u1="E" u2="O" k="20" />
+<hkern u1="F" u2="&#xf0;" k="41" />
+<hkern u1="F" u2="&#xee;" k="-43" />
+<hkern u1="F" u2="&#xed;" k="20" />
+<hkern u1="F" u2="&#xec;" k="-29" />
+<hkern u1="F" u2="&#xdf;" k="16" />
+<hkern u1="F" u2="&#xc6;" k="100" />
+<hkern u1="F" u2="z" k="33" />
+<hkern u1="F" u2="x" k="18" />
+<hkern u1="F" u2="u" k="25" />
+<hkern u1="F" u2="t" k="10" />
+<hkern u1="F" u2="s" k="43" />
+<hkern u1="F" u2="o" k="31" />
+<hkern u1="F" u2="n" k="31" />
+<hkern u1="F" u2="f" k="14" />
+<hkern u1="F" u2="a" k="45" />
+<hkern u1="F" u2="J" k="35" />
+<hkern u1="F" u2="A" k="88" />
+<hkern u1="F" u2="&#x2f;" k="94" />
+<hkern u1="F" u2="&#x2e;" k="115" />
+<hkern u1="G" u2="y" k="16" />
+<hkern u1="G" u2="x" k="12" />
+<hkern u1="G" u2="w" k="16" />
+<hkern u1="G" u2="v" k="18" />
+<hkern u1="G" u2="t" k="18" />
+<hkern u1="G" u2="f" k="18" />
+<hkern u1="G" u2="]" k="20" />
+<hkern u1="G" u2="Y" k="23" />
+<hkern u1="G" u2="X" k="10" />
+<hkern u1="G" u2="V" k="16" />
+<hkern u1="G" u2="T" k="16" />
+<hkern u1="G" u2="A" k="14" />
+<hkern u1="G" u2="&#x29;" k="20" />
+<hkern u1="I" u2="&#xf0;" k="18" />
+<hkern u1="I" u2="z" k="10" />
+<hkern u1="I" u2="u" k="10" />
+<hkern u1="I" u2="t" k="16" />
+<hkern u1="I" u2="s" k="12" />
+<hkern u1="I" u2="o" k="18" />
+<hkern u1="I" u2="n" k="10" />
+<hkern u1="I" u2="l" k="10" />
+<hkern u1="I" u2="h" k="10" />
+<hkern u1="I" u2="f" k="14" />
+<hkern u1="I" u2="a" k="12" />
+<hkern u1="J" u2="&#xf0;" k="23" />
+<hkern u1="J" u2="&#xc6;" k="18" />
+<hkern u1="J" u2="z" k="16" />
+<hkern u1="J" u2="x" k="12" />
+<hkern u1="J" u2="u" k="12" />
+<hkern u1="J" u2="t" k="14" />
+<hkern u1="J" u2="s" k="20" />
+<hkern u1="J" u2="o" k="16" />
+<hkern u1="J" u2="n" k="10" />
+<hkern u1="J" u2="l" k="10" />
+<hkern u1="J" u2="h" k="10" />
+<hkern u1="J" u2="f" k="14" />
+<hkern u1="J" u2="a" k="14" />
+<hkern u1="J" u2="J" k="16" />
+<hkern u1="J" u2="A" k="18" />
+<hkern u1="J" u2="&#x2f;" k="43" />
+<hkern u1="J" u2="&#x2e;" k="18" />
+<hkern u1="K" u2="&#x2039;" k="27" />
+<hkern u1="K" u2="&#xf0;" k="68" />
+<hkern u1="K" u2="&#xef;" k="-39" />
+<hkern u1="K" u2="&#xec;" k="-70" />
+<hkern u1="K" u2="&#xae;" k="20" />
+<hkern u1="K" u2="y" k="53" />
+<hkern u1="K" u2="w" k="59" />
+<hkern u1="K" u2="v" k="53" />
+<hkern u1="K" u2="u" k="45" />
+<hkern u1="K" u2="t" k="27" />
+<hkern u1="K" u2="o" k="84" />
+<hkern u1="K" u2="n" k="10" />
+<hkern u1="K" u2="f" k="18" />
+<hkern u1="K" u2="a" k="18" />
+<hkern u1="K" u2="S" k="25" />
+<hkern u1="K" u2="O" k="63" />
+<hkern u1="K" u2="&#x2d;" k="55" />
+<hkern u1="L" u2="&#x2019;" k="178" />
+<hkern u1="L" u2="&#x2018;" k="178" />
+<hkern u1="L" u2="&#xf0;" k="10" />
+<hkern u1="L" u2="&#xb7;" k="152" />
+<hkern u1="L" u2="&#xae;" k="20" />
+<hkern u1="L" u2="y" k="123" />
+<hkern u1="L" u2="w" k="100" />
+<hkern u1="L" u2="v" k="123" />
+<hkern u1="L" u2="u" k="14" />
+<hkern u1="L" u2="t" k="63" />
+<hkern u1="L" u2="o" k="18" />
+<hkern u1="L" u2="f" k="27" />
+<hkern u1="L" u2="\" k="139" />
+<hkern u1="L" u2="Y" k="135" />
+<hkern u1="L" u2="W" k="115" />
+<hkern u1="L" u2="V" k="123" />
+<hkern u1="L" u2="U" k="35" />
+<hkern u1="L" u2="T" k="147" />
+<hkern u1="L" u2="O" k="41" />
+<hkern u1="L" u2="&#x3f;" k="49" />
+<hkern u1="L" u2="&#x31;" k="45" />
+<hkern u1="L" u2="&#x2d;" k="133" />
+<hkern u1="L" u2="&#x2a;" k="180" />
+<hkern u1="L" u2="&#x27;" k="178" />
+<hkern u1="O" u2="&#xf0;" k="10" />
+<hkern u1="O" u2="&#xc6;" k="39" />
+<hkern u1="O" u2="&#x7d;" k="23" />
+<hkern u1="O" u2="z" k="14" />
+<hkern u1="O" u2="x" k="25" />
+<hkern u1="O" u2="s" k="12" />
+<hkern u1="O" u2="n" k="10" />
+<hkern u1="O" u2="l" k="10" />
+<hkern u1="O" u2="i" k="10" />
+<hkern u1="O" u2="h" k="10" />
+<hkern u1="O" u2="a" k="10" />
+<hkern u1="O" u2="]" k="51" />
+<hkern u1="O" u2="\" k="37" />
+<hkern u1="O" u2="Z" k="25" />
+<hkern u1="O" u2="Y" k="47" />
+<hkern u1="O" u2="X" k="51" />
+<hkern u1="O" u2="W" k="14" />
+<hkern u1="O" u2="V" k="25" />
+<hkern u1="O" u2="T" k="39" />
+<hkern u1="O" u2="J" k="43" />
+<hkern u1="O" u2="A" k="37" />
+<hkern u1="O" u2="&#x2f;" k="57" />
+<hkern u1="O" u2="&#x2e;" k="39" />
+<hkern u1="O" u2="&#x29;" k="45" />
+<hkern u1="P" u2="&#x2039;" k="20" />
+<hkern u1="P" u2="&#xf0;" k="27" />
+<hkern u1="P" u2="&#xc6;" k="100" />
+<hkern u1="P" u2="s" k="12" />
+<hkern u1="P" u2="o" k="12" />
+<hkern u1="P" u2="a" k="20" />
+<hkern u1="P" u2="]" k="39" />
+<hkern u1="P" u2="Z" k="14" />
+<hkern u1="P" u2="Y" k="16" />
+<hkern u1="P" u2="X" k="39" />
+<hkern u1="P" u2="J" k="63" />
+<hkern u1="P" u2="A" k="78" />
+<hkern u1="P" u2="&#x2f;" k="98" />
+<hkern u1="P" u2="&#x2e;" k="129" />
+<hkern u1="P" u2="&#x29;" k="37" />
+<hkern u1="Q" u2="&#x7d;" k="10" />
+<hkern u1="Q" u2="j" k="-125" />
+<hkern u1="Q" u2="]" k="25" />
+<hkern u1="R" u2="&#x2039;" k="31" />
+<hkern u1="R" u2="&#xf0;" k="41" />
+<hkern u1="R" u2="u" k="18" />
+<hkern u1="R" u2="t" k="12" />
+<hkern u1="R" u2="o" k="31" />
+<hkern u1="R" u2="n" k="10" />
+<hkern u1="R" u2="f" k="10" />
+<hkern u1="R" u2="a" k="20" />
+<hkern u1="R" u2="\" k="25" />
+<hkern u1="R" u2="Y" k="27" />
+<hkern u1="R" u2="V" k="18" />
+<hkern u1="R" u2="T" k="20" />
+<hkern u1="R" u2="J" k="10" />
+<hkern u1="S" u2="z" k="12" />
+<hkern u1="S" u2="y" k="20" />
+<hkern u1="S" u2="x" k="18" />
+<hkern u1="S" u2="w" k="20" />
+<hkern u1="S" u2="v" k="20" />
+<hkern u1="S" u2="u" k="12" />
+<hkern u1="S" u2="t" k="25" />
+<hkern u1="S" u2="s" k="12" />
+<hkern u1="S" u2="n" k="12" />
+<hkern u1="S" u2="f" k="23" />
+<hkern u1="S" u2="Y" k="12" />
+<hkern u1="S" u2="V" k="10" />
+<hkern u1="S" u2="A" k="14" />
+<hkern u1="S" u2="&#x2f;" k="23" />
+<hkern u1="T" u2="&#x203a;" k="111" />
+<hkern u1="T" u2="&#x2039;" k="127" />
+<hkern u1="T" u2="&#xf0;" k="82" />
+<hkern u1="T" u2="&#xef;" k="-16" />
+<hkern u1="T" u2="&#xee;" k="-66" />
+<hkern u1="T" u2="&#xed;" k="41" />
+<hkern u1="T" u2="&#xec;" k="-49" />
+<hkern u1="T" u2="&#xdf;" k="27" />
+<hkern u1="T" u2="&#xc6;" k="111" />
+<hkern u1="T" u2="&#xae;" k="20" />
+<hkern u1="T" u2="z" k="147" />
+<hkern u1="T" u2="y" k="139" />
+<hkern u1="T" u2="x" k="137" />
+<hkern u1="T" u2="w" k="133" />
+<hkern u1="T" u2="v" k="139" />
+<hkern u1="T" u2="u" k="106" />
+<hkern u1="T" u2="t" k="20" />
+<hkern u1="T" u2="s" k="147" />
+<hkern u1="T" u2="o" k="131" />
+<hkern u1="T" u2="n" k="100" />
+<hkern u1="T" u2="l" k="10" />
+<hkern u1="T" u2="i" k="10" />
+<hkern u1="T" u2="h" k="10" />
+<hkern u1="T" u2="f" k="43" />
+<hkern u1="T" u2="a" k="150" />
+<hkern u1="T" u2="O" k="39" />
+<hkern u1="T" u2="J" k="27" />
+<hkern u1="T" u2="A" k="113" />
+<hkern u1="T" u2="&#x40;" k="55" />
+<hkern u1="T" u2="&#x3a;" k="113" />
+<hkern u1="T" u2="&#x34;" k="66" />
+<hkern u1="T" u2="&#x2f;" k="113" />
+<hkern u1="T" u2="&#x2e;" k="119" />
+<hkern u1="T" u2="&#x2d;" k="117" />
+<hkern u1="T" u2="&#x26;" k="29" />
+<hkern u1="U" u2="&#xf0;" k="27" />
+<hkern u1="U" u2="&#xc6;" k="39" />
+<hkern u1="U" u2="z" k="20" />
+<hkern u1="U" u2="x" k="12" />
+<hkern u1="U" u2="u" k="18" />
+<hkern u1="U" u2="t" k="14" />
+<hkern u1="U" u2="s" k="27" />
+<hkern u1="U" u2="o" k="18" />
+<hkern u1="U" u2="n" k="10" />
+<hkern u1="U" u2="l" k="12" />
+<hkern u1="U" u2="i" k="12" />
+<hkern u1="U" u2="h" k="12" />
+<hkern u1="U" u2="f" k="12" />
+<hkern u1="U" u2="a" k="20" />
+<hkern u1="U" u2="J" k="29" />
+<hkern u1="U" u2="A" k="35" />
+<hkern u1="U" u2="&#x2f;" k="53" />
+<hkern u1="U" u2="&#x2e;" k="33" />
+<hkern u1="V" u2="&#x203a;" k="35" />
+<hkern u1="V" u2="&#x2039;" k="72" />
+<hkern u1="V" u2="&#xf0;" k="78" />
+<hkern u1="V" u2="&#xef;" k="-55" />
+<hkern u1="V" u2="&#xee;" k="-55" />
+<hkern u1="V" u2="&#xed;" k="29" />
+<hkern u1="V" u2="&#xec;" k="-104" />
+<hkern u1="V" u2="&#xdf;" k="25" />
+<hkern u1="V" u2="&#xc6;" k="92" />
+<hkern u1="V" u2="z" k="45" />
+<hkern u1="V" u2="x" k="18" />
+<hkern u1="V" u2="u" k="51" />
+<hkern u1="V" u2="t" k="10" />
+<hkern u1="V" u2="s" k="90" />
+<hkern u1="V" u2="o" k="88" />
+<hkern u1="V" u2="n" k="61" />
+<hkern u1="V" u2="f" k="12" />
+<hkern u1="V" u2="a" k="88" />
+<hkern u1="V" u2="S" k="12" />
+<hkern u1="V" u2="O" k="25" />
+<hkern u1="V" u2="J" k="27" />
+<hkern u1="V" u2="A" k="82" />
+<hkern u1="V" u2="&#x40;" k="33" />
+<hkern u1="V" u2="&#x3a;" k="57" />
+<hkern u1="V" u2="&#x34;" k="41" />
+<hkern u1="V" u2="&#x31;" k="-10" />
+<hkern u1="V" u2="&#x2f;" k="117" />
+<hkern u1="V" u2="&#x2e;" k="119" />
+<hkern u1="V" u2="&#x2d;" k="53" />
+<hkern u1="V" u2="&#x26;" k="29" />
+<hkern u1="W" u2="&#x203a;" k="23" />
+<hkern u1="W" u2="&#x2039;" k="57" />
+<hkern u1="W" u2="&#xf0;" k="72" />
+<hkern u1="W" u2="&#xef;" k="-51" />
+<hkern u1="W" u2="&#xee;" k="-49" />
+<hkern u1="W" u2="&#xed;" k="25" />
+<hkern u1="W" u2="&#xec;" k="-88" />
+<hkern u1="W" u2="&#xdf;" k="23" />
+<hkern u1="W" u2="&#xc6;" k="80" />
+<hkern u1="W" u2="z" k="35" />
+<hkern u1="W" u2="x" k="10" />
+<hkern u1="W" u2="u" k="43" />
+<hkern u1="W" u2="s" k="80" />
+<hkern u1="W" u2="o" k="78" />
+<hkern u1="W" u2="n" k="51" />
+<hkern u1="W" u2="a" k="76" />
+<hkern u1="W" u2="O" k="14" />
+<hkern u1="W" u2="J" k="25" />
+<hkern u1="W" u2="A" k="68" />
+<hkern u1="W" u2="&#x40;" k="20" />
+<hkern u1="W" u2="&#x3a;" k="43" />
+<hkern u1="W" u2="&#x34;" k="27" />
+<hkern u1="W" u2="&#x2f;" k="98" />
+<hkern u1="W" u2="&#x2e;" k="96" />
+<hkern u1="W" u2="&#x2d;" k="39" />
+<hkern u1="W" u2="&#x26;" k="20" />
+<hkern u1="X" u2="&#x2039;" k="31" />
+<hkern u1="X" u2="&#xf0;" k="51" />
+<hkern u1="X" u2="&#xef;" k="-16" />
+<hkern u1="X" u2="&#xec;" k="-41" />
+<hkern u1="X" u2="&#xae;" k="20" />
+<hkern u1="X" u2="y" k="49" />
+<hkern u1="X" u2="w" k="55" />
+<hkern u1="X" u2="v" k="49" />
+<hkern u1="X" u2="u" k="43" />
+<hkern u1="X" u2="t" k="33" />
+<hkern u1="X" u2="o" k="66" />
+<hkern u1="X" u2="n" k="12" />
+<hkern u1="X" u2="f" k="25" />
+<hkern u1="X" u2="a" k="14" />
+<hkern u1="X" u2="O" k="51" />
+<hkern u1="X" u2="&#x2d;" k="55" />
+<hkern u1="Y" u2="&#x203a;" k="66" />
+<hkern u1="Y" u2="&#x2039;" k="109" />
+<hkern u1="Y" u2="&#xf0;" k="90" />
+<hkern u1="Y" u2="&#xef;" k="-78" />
+<hkern u1="Y" u2="&#xee;" k="-45" />
+<hkern u1="Y" u2="&#xed;" k="39" />
+<hkern u1="Y" u2="&#xec;" k="-125" />
+<hkern u1="Y" u2="&#xdf;" k="29" />
+<hkern u1="Y" u2="&#xc6;" k="113" />
+<hkern u1="Y" u2="&#xae;" k="31" />
+<hkern u1="Y" u2="z" k="82" />
+<hkern u1="Y" u2="y" k="18" />
+<hkern u1="Y" u2="x" k="43" />
+<hkern u1="Y" u2="w" k="27" />
+<hkern u1="Y" u2="v" k="16" />
+<hkern u1="Y" u2="u" k="74" />
+<hkern u1="Y" u2="t" k="14" />
+<hkern u1="Y" u2="s" k="106" />
+<hkern u1="Y" u2="o" k="123" />
+<hkern u1="Y" u2="n" k="72" />
+<hkern u1="Y" u2="f" k="23" />
+<hkern u1="Y" u2="a" k="100" />
+<hkern u1="Y" u2="S" k="18" />
+<hkern u1="Y" u2="O" k="47" />
+<hkern u1="Y" u2="J" k="20" />
+<hkern u1="Y" u2="A" k="104" />
+<hkern u1="Y" u2="&#x40;" k="57" />
+<hkern u1="Y" u2="&#x3a;" k="90" />
+<hkern u1="Y" u2="&#x36;" k="20" />
+<hkern u1="Y" u2="&#x34;" k="66" />
+<hkern u1="Y" u2="&#x31;" k="-31" />
+<hkern u1="Y" u2="&#x2f;" k="119" />
+<hkern u1="Y" u2="&#x2e;" k="127" />
+<hkern u1="Y" u2="&#x2d;" k="92" />
+<hkern u1="Y" u2="&#x26;" k="37" />
+<hkern u1="Z" u2="&#xf0;" k="25" />
+<hkern u1="Z" u2="&#xee;" k="-37" />
+<hkern u1="Z" u2="y" k="16" />
+<hkern u1="Z" u2="w" k="20" />
+<hkern u1="Z" u2="v" k="16" />
+<hkern u1="Z" u2="u" k="23" />
+<hkern u1="Z" u2="t" k="20" />
+<hkern u1="Z" u2="o" k="29" />
+<hkern u1="Z" u2="n" k="14" />
+<hkern u1="Z" u2="f" k="18" />
+<hkern u1="Z" u2="O" k="25" />
+<hkern u1="Z" u2="&#x2d;" k="35" />
+<hkern u1="[" u2="&#xf0;" k="41" />
+<hkern u1="[" u2="&#xec;" k="-33" />
+<hkern u1="[" u2="&#xc6;" k="23" />
+<hkern u1="[" u2="z" k="37" />
+<hkern u1="[" u2="w" k="33" />
+<hkern u1="[" u2="v" k="29" />
+<hkern u1="[" u2="u" k="43" />
+<hkern u1="[" u2="t" k="20" />
+<hkern u1="[" u2="s" k="49" />
+<hkern u1="[" u2="o" k="59" />
+<hkern u1="[" u2="n" k="37" />
+<hkern u1="[" u2="j" k="-184" />
+<hkern u1="[" u2="f" k="20" />
+<hkern u1="[" u2="a" k="45" />
+<hkern u1="[" u2="S" k="27" />
+<hkern u1="[" u2="O" k="51" />
+<hkern u1="[" u2="A" k="27" />
+<hkern u1="[" u2="&#x39;" k="20" />
+<hkern u1="[" u2="&#x38;" k="33" />
+<hkern u1="[" u2="&#x36;" k="43" />
+<hkern u1="[" u2="&#x34;" k="55" />
+<hkern u1="[" u2="&#x30;" k="43" />
+<hkern u1="\" u2="&#x2019;" k="127" />
+<hkern u1="\" u2="&#xc6;" k="-39" />
+<hkern u1="\" u2="y" k="47" />
+<hkern u1="\" u2="w" k="37" />
+<hkern u1="\" u2="v" k="47" />
+<hkern u1="\" u2="t" k="23" />
+<hkern u1="\" u2="Y" k="90" />
+<hkern u1="\" u2="W" k="63" />
+<hkern u1="\" u2="V" k="82" />
+<hkern u1="\" u2="U" k="25" />
+<hkern u1="\" u2="T" k="84" />
+<hkern u1="\" u2="O" k="23" />
+<hkern u1="\" u2="A" k="-14" />
+<hkern u1="\" u2="&#x31;" k="41" />
+<hkern u1="\" u2="&#x27;" k="109" />
+<hkern u1="a" u2="&#x2019;" k="33" />
+<hkern u1="a" u2="&#x2018;" k="33" />
+<hkern u1="a" u2="&#x7d;" k="23" />
+<hkern u1="a" u2="y" k="12" />
+<hkern u1="a" u2="w" k="10" />
+<hkern u1="a" u2="v" k="12" />
+<hkern u1="a" u2="t" k="12" />
+<hkern u1="a" u2="f" k="8" />
+<hkern u1="a" u2="]" k="47" />
+<hkern u1="a" u2="\" k="70" />
+<hkern u1="a" u2="Z" k="18" />
+<hkern u1="a" u2="Y" k="96" />
+<hkern u1="a" u2="X" k="10" />
+<hkern u1="a" u2="W" k="53" />
+<hkern u1="a" u2="V" k="72" />
+<hkern u1="a" u2="U" k="16" />
+<hkern u1="a" u2="T" k="109" />
+<hkern u1="a" u2="S" k="10" />
+<hkern u1="a" u2="O" k="12" />
+<hkern u1="a" u2="J" k="14" />
+<hkern u1="a" u2="I" k="10" />
+<hkern u1="a" u2="&#x29;" k="33" />
+<hkern u1="c" u2="&#x2039;" k="27" />
+<hkern u1="c" u2="&#xf0;" k="25" />
+<hkern u1="c" u2="s" k="8" />
+<hkern u1="c" u2="o" k="23" />
+<hkern u1="c" u2="a" k="8" />
+<hkern u1="c" u2="]" k="33" />
+<hkern u1="c" u2="\" k="41" />
+<hkern u1="c" u2="Y" k="90" />
+<hkern u1="c" u2="W" k="35" />
+<hkern u1="c" u2="V" k="45" />
+<hkern u1="c" u2="U" k="12" />
+<hkern u1="c" u2="T" k="164" />
+<hkern u1="c" u2="S" k="12" />
+<hkern u1="c" u2="O" k="20" />
+<hkern u1="c" u2="&#x2d;" k="31" />
+<hkern u1="c" u2="&#x29;" k="27" />
+<hkern u1="d" u2="Z" k="12" />
+<hkern u1="d" u2="U" k="12" />
+<hkern u1="d" u2="T" k="10" />
+<hkern u1="d" u2="O" k="10" />
+<hkern u1="d" u2="J" k="16" />
+<hkern u1="d" u2="I" k="10" />
+<hkern u1="e" u2="&#x2019;" k="37" />
+<hkern u1="e" u2="&#x2018;" k="37" />
+<hkern u1="e" u2="&#x7d;" k="25" />
+<hkern u1="e" u2="y" k="12" />
+<hkern u1="e" u2="x" k="23" />
+<hkern u1="e" u2="v" k="12" />
+<hkern u1="e" u2="t" k="8" />
+<hkern u1="e" u2="f" k="8" />
+<hkern u1="e" u2="]" k="51" />
+<hkern u1="e" u2="\" k="68" />
+<hkern u1="e" u2="Z" k="29" />
+<hkern u1="e" u2="Y" k="117" />
+<hkern u1="e" u2="X" k="35" />
+<hkern u1="e" u2="W" k="74" />
+<hkern u1="e" u2="V" k="88" />
+<hkern u1="e" u2="U" k="14" />
+<hkern u1="e" u2="T" k="158" />
+<hkern u1="e" u2="S" k="14" />
+<hkern u1="e" u2="J" k="18" />
+<hkern u1="e" u2="I" k="12" />
+<hkern u1="e" u2="A" k="14" />
+<hkern u1="e" u2="&#x2f;" k="35" />
+<hkern u1="e" u2="&#x29;" k="47" />
+<hkern u1="f" u2="&#x2039;" k="55" />
+<hkern u1="f" u2="&#xf0;" k="63" />
+<hkern u1="f" u2="&#xef;" k="-100" />
+<hkern u1="f" u2="&#xee;" k="-37" />
+<hkern u1="f" u2="&#xec;" k="-152" />
+<hkern u1="f" u2="&#xc6;" k="90" />
+<hkern u1="f" u2="s" k="8" />
+<hkern u1="f" u2="o" k="27" />
+<hkern u1="f" u2="a" k="10" />
+<hkern u1="f" u2="]" k="-29" />
+<hkern u1="f" u2="Y" k="-117" />
+<hkern u1="f" u2="X" k="-33" />
+<hkern u1="f" u2="W" k="-78" />
+<hkern u1="f" u2="V" k="-94" />
+<hkern u1="f" u2="T" k="-39" />
+<hkern u1="f" u2="J" k="12" />
+<hkern u1="f" u2="A" k="82" />
+<hkern u1="f" u2="&#x3a;" k="41" />
+<hkern u1="f" u2="&#x2f;" k="63" />
+<hkern u1="f" u2="&#x2e;" k="66" />
+<hkern u1="f" u2="&#x2d;" k="63" />
+<hkern u1="i" u2="Z" k="12" />
+<hkern u1="i" u2="U" k="12" />
+<hkern u1="i" u2="T" k="10" />
+<hkern u1="i" u2="O" k="10" />
+<hkern u1="i" u2="J" k="16" />
+<hkern u1="i" u2="I" k="10" />
+<hkern u1="j" u2="j" k="-33" />
+<hkern u1="k" u2="&#x2039;" k="41" />
+<hkern u1="k" u2="&#xf0;" k="53" />
+<hkern u1="k" u2="s" k="10" />
+<hkern u1="k" u2="o" k="51" />
+<hkern u1="k" u2="a" k="18" />
+<hkern u1="k" u2="Y" k="39" />
+<hkern u1="k" u2="V" k="16" />
+<hkern u1="k" u2="U" k="10" />
+<hkern u1="k" u2="T" k="133" />
+<hkern u1="k" u2="O" k="35" />
+<hkern u1="k" u2="&#x2d;" k="57" />
+<hkern u1="l" u2="&#xb7;" k="150" />
+<hkern u1="l" u2="Z" k="12" />
+<hkern u1="l" u2="U" k="12" />
+<hkern u1="l" u2="T" k="10" />
+<hkern u1="l" u2="O" k="10" />
+<hkern u1="l" u2="J" k="16" />
+<hkern u1="l" u2="I" k="10" />
+<hkern u1="n" u2="&#x2019;" k="35" />
+<hkern u1="n" u2="&#x2018;" k="35" />
+<hkern u1="n" u2="&#x7d;" k="23" />
+<hkern u1="n" u2="y" k="14" />
+<hkern u1="n" u2="w" k="12" />
+<hkern u1="n" u2="v" k="12" />
+<hkern u1="n" u2="t" k="14" />
+<hkern u1="n" u2="f" k="10" />
+<hkern u1="n" u2="]" k="47" />
+<hkern u1="n" u2="\" k="72" />
+<hkern u1="n" u2="Z" k="20" />
+<hkern u1="n" u2="Y" k="96" />
+<hkern u1="n" u2="X" k="10" />
+<hkern u1="n" u2="W" k="53" />
+<hkern u1="n" u2="V" k="72" />
+<hkern u1="n" u2="U" k="16" />
+<hkern u1="n" u2="T" k="109" />
+<hkern u1="n" u2="S" k="10" />
+<hkern u1="n" u2="O" k="12" />
+<hkern u1="n" u2="J" k="14" />
+<hkern u1="n" u2="I" k="10" />
+<hkern u1="n" u2="&#x2a;" k="16" />
+<hkern u1="n" u2="&#x29;" k="33" />
+<hkern u1="o" u2="&#x2019;" k="53" />
+<hkern u1="o" u2="&#x2018;" k="53" />
+<hkern u1="o" u2="&#xc6;" k="20" />
+<hkern u1="o" u2="&#x7d;" k="35" />
+<hkern u1="o" u2="z" k="12" />
+<hkern u1="o" u2="y" k="20" />
+<hkern u1="o" u2="x" k="39" />
+<hkern u1="o" u2="w" k="14" />
+<hkern u1="o" u2="v" k="18" />
+<hkern u1="o" u2="t" k="16" />
+<hkern u1="o" u2="f" k="16" />
+<hkern u1="o" u2="]" k="59" />
+<hkern u1="o" u2="\" k="76" />
+<hkern u1="o" u2="Z" k="41" />
+<hkern u1="o" u2="Y" k="123" />
+<hkern u1="o" u2="X" k="66" />
+<hkern u1="o" u2="W" k="78" />
+<hkern u1="o" u2="V" k="88" />
+<hkern u1="o" u2="U" k="18" />
+<hkern u1="o" u2="T" k="131" />
+<hkern u1="o" u2="S" k="23" />
+<hkern u1="o" u2="J" k="29" />
+<hkern u1="o" u2="I" k="18" />
+<hkern u1="o" u2="A" k="23" />
+<hkern u1="o" u2="&#x3f;" k="20" />
+<hkern u1="o" u2="&#x2f;" k="43" />
+<hkern u1="o" u2="&#x2a;" k="23" />
+<hkern u1="o" u2="&#x29;" k="55" />
+<hkern u1="o" u2="&#x27;" k="23" />
+<hkern u1="q" u2="j" k="-119" />
+<hkern u1="r" u2="&#x2039;" k="55" />
+<hkern u1="r" u2="&#xf0;" k="57" />
+<hkern u1="r" u2="&#xc6;" k="92" />
+<hkern u1="r" u2="&#x7d;" k="20" />
+<hkern u1="r" u2="o" k="20" />
+<hkern u1="r" u2="a" k="10" />
+<hkern u1="r" u2="]" k="39" />
+<hkern u1="r" u2="Z" k="29" />
+<hkern u1="r" u2="Y" k="14" />
+<hkern u1="r" u2="X" k="61" />
+<hkern u1="r" u2="T" k="139" />
+<hkern u1="r" u2="J" k="86" />
+<hkern u1="r" u2="A" k="90" />
+<hkern u1="r" u2="&#x3a;" k="33" />
+<hkern u1="r" u2="&#x2f;" k="88" />
+<hkern u1="r" u2="&#x2e;" k="92" />
+<hkern u1="r" u2="&#x2d;" k="57" />
+<hkern u1="r" u2="&#x29;" k="37" />
+<hkern u1="r" u2="&#x26;" k="27" />
+<hkern u1="s" u2="&#x7d;" k="20" />
+<hkern u1="s" u2="x" k="8" />
+<hkern u1="s" u2="v" k="8" />
+<hkern u1="s" u2="]" k="43" />
+<hkern u1="s" u2="\" k="53" />
+<hkern u1="s" u2="Y" k="92" />
+<hkern u1="s" u2="X" k="16" />
+<hkern u1="s" u2="W" k="51" />
+<hkern u1="s" u2="V" k="61" />
+<hkern u1="s" u2="U" k="18" />
+<hkern u1="s" u2="T" k="145" />
+<hkern u1="s" u2="O" k="10" />
+<hkern u1="s" u2="I" k="12" />
+<hkern u1="s" u2="A" k="10" />
+<hkern u1="s" u2="&#x2f;" k="20" />
+<hkern u1="s" u2="&#x29;" k="41" />
+<hkern u1="t" u2="o" k="8" />
+<hkern u1="t" u2="]" k="25" />
+<hkern u1="t" u2="\" k="33" />
+<hkern u1="t" u2="Y" k="68" />
+<hkern u1="t" u2="W" k="25" />
+<hkern u1="t" u2="V" k="37" />
+<hkern u1="t" u2="U" k="12" />
+<hkern u1="t" u2="T" k="119" />
+<hkern u1="u" u2="]" k="37" />
+<hkern u1="u" u2="\" k="41" />
+<hkern u1="u" u2="Z" k="14" />
+<hkern u1="u" u2="Y" k="72" />
+<hkern u1="u" u2="X" k="14" />
+<hkern u1="u" u2="W" k="51" />
+<hkern u1="u" u2="V" k="61" />
+<hkern u1="u" u2="U" k="10" />
+<hkern u1="u" u2="T" k="100" />
+<hkern u1="u" u2="O" k="10" />
+<hkern u1="u" u2="J" k="16" />
+<hkern u1="u" u2="I" k="10" />
+<hkern u1="u" u2="&#x29;" k="31" />
+<hkern u1="v" u2="&#x2039;" k="37" />
+<hkern u1="v" u2="&#xf0;" k="35" />
+<hkern u1="v" u2="&#xc6;" k="66" />
+<hkern u1="v" u2="s" k="14" />
+<hkern u1="v" u2="o" k="18" />
+<hkern u1="v" u2="a" k="14" />
+<hkern u1="v" u2="]" k="29" />
+<hkern u1="v" u2="Z" k="12" />
+<hkern u1="v" u2="Y" k="16" />
+<hkern u1="v" u2="X" k="49" />
+<hkern u1="v" u2="T" k="139" />
+<hkern u1="v" u2="J" k="53" />
+<hkern u1="v" u2="A" k="59" />
+<hkern u1="v" u2="&#x3a;" k="18" />
+<hkern u1="v" u2="&#x2f;" k="82" />
+<hkern u1="v" u2="&#x2e;" k="74" />
+<hkern u1="v" u2="&#x2a;" k="-18" />
+<hkern u1="v" u2="&#x29;" k="27" />
+<hkern u1="w" u2="&#x2039;" k="29" />
+<hkern u1="w" u2="&#xf0;" k="29" />
+<hkern u1="w" u2="&#xc6;" k="59" />
+<hkern u1="w" u2="s" k="8" />
+<hkern u1="w" u2="o" k="14" />
+<hkern u1="w" u2="a" k="10" />
+<hkern u1="w" u2="]" k="33" />
+<hkern u1="w" u2="Z" k="16" />
+<hkern u1="w" u2="Y" k="27" />
+<hkern u1="w" u2="X" k="53" />
+<hkern u1="w" u2="T" k="133" />
+<hkern u1="w" u2="J" k="57" />
+<hkern u1="w" u2="A" k="51" />
+<hkern u1="w" u2="&#x2f;" k="72" />
+<hkern u1="w" u2="&#x2e;" k="59" />
+<hkern u1="w" u2="&#x29;" k="31" />
+<hkern u1="x" u2="&#x2039;" k="45" />
+<hkern u1="x" u2="&#xf0;" k="45" />
+<hkern u1="x" u2="o" k="41" />
+<hkern u1="x" u2="a" k="10" />
+<hkern u1="x" u2="Y" k="39" />
+<hkern u1="x" u2="V" k="16" />
+<hkern u1="x" u2="U" k="12" />
+<hkern u1="x" u2="T" k="135" />
+<hkern u1="x" u2="O" k="25" />
+<hkern u1="x" u2="&#x2d;" k="49" />
+<hkern u1="y" u2="&#x2039;" k="37" />
+<hkern u1="y" u2="&#xf0;" k="35" />
+<hkern u1="y" u2="&#xc6;" k="66" />
+<hkern u1="y" u2="s" k="12" />
+<hkern u1="y" u2="o" k="18" />
+<hkern u1="y" u2="a" k="14" />
+<hkern u1="y" u2="]" k="23" />
+<hkern u1="y" u2="Z" k="12" />
+<hkern u1="y" u2="Y" k="16" />
+<hkern u1="y" u2="X" k="47" />
+<hkern u1="y" u2="T" k="139" />
+<hkern u1="y" u2="J" k="49" />
+<hkern u1="y" u2="A" k="59" />
+<hkern u1="y" u2="&#x3a;" k="18" />
+<hkern u1="y" u2="&#x2f;" k="76" />
+<hkern u1="y" u2="&#x2e;" k="74" />
+<hkern u1="y" u2="&#x2a;" k="-12" />
+<hkern u1="y" u2="&#x29;" k="23" />
+<hkern u1="z" u2="&#x2039;" k="31" />
+<hkern u1="z" u2="&#xf0;" k="14" />
+<hkern u1="z" u2="o" k="14" />
+<hkern u1="z" u2="]" k="33" />
+<hkern u1="z" u2="\" k="37" />
+<hkern u1="z" u2="Y" k="78" />
+<hkern u1="z" u2="W" k="33" />
+<hkern u1="z" u2="V" k="41" />
+<hkern u1="z" u2="U" k="20" />
+<hkern u1="z" u2="T" k="150" />
+<hkern u1="z" u2="O" k="12" />
+<hkern u1="z" u2="I" k="10" />
+<hkern u1="z" u2="&#x2d;" k="35" />
+<hkern u1="&#x7b;" u2="&#xf0;" k="23" />
+<hkern u1="&#x7b;" u2="u" k="25" />
+<hkern u1="&#x7b;" u2="s" k="20" />
+<hkern u1="&#x7b;" u2="o" k="35" />
+<hkern u1="&#x7b;" u2="j" k="-168" />
+<hkern u1="&#x7b;" u2="a" k="20" />
+<hkern u1="&#x7b;" u2="O" k="25" />
+<hkern u1="&#x7c;" u2="j" k="-104" />
+<hkern u1="&#x7d;" u2="&#x29;" k="20" />
+<hkern u1="&#xae;" u2="&#xc6;" k="25" />
+<hkern u1="&#xae;" u2="Y" k="33" />
+<hkern u1="&#xae;" u2="X" k="25" />
+<hkern u1="&#xae;" u2="T" k="25" />
+<hkern u1="&#xae;" u2="J" k="25" />
+<hkern u1="&#xae;" u2="A" k="27" />
+<hkern u1="&#xb0;" u2="&#x34;" k="49" />
+<hkern u1="&#xb7;" u2="l" k="150" />
+<hkern u1="&#xb7;" u2="&#x37;" k="41" />
+<hkern u1="&#xb7;" u2="&#x33;" k="53" />
+<hkern u1="&#xb7;" u2="&#x32;" k="51" />
+<hkern u1="&#xb7;" u2="&#x31;" k="59" />
+<hkern u1="&#xbf;" u2="Y" k="39" />
+<hkern u1="&#xbf;" u2="W" k="31" />
+<hkern u1="&#xbf;" u2="V" k="37" />
+<hkern u1="&#xbf;" u2="T" k="41" />
+<hkern u1="&#xce;" u2="&#x7d;" k="-20" />
+<hkern u1="&#xde;" u2="&#xc6;" k="39" />
+<hkern u1="&#xde;" u2="z" k="10" />
+<hkern u1="&#xde;" u2="x" k="14" />
+<hkern u1="&#xde;" u2="]" k="51" />
+<hkern u1="&#xde;" u2="\" k="35" />
+<hkern u1="&#xde;" u2="Z" k="27" />
+<hkern u1="&#xde;" u2="Y" k="49" />
+<hkern u1="&#xde;" u2="X" k="61" />
+<hkern u1="&#xde;" u2="W" k="12" />
+<hkern u1="&#xde;" u2="V" k="25" />
+<hkern u1="&#xde;" u2="T" k="37" />
+<hkern u1="&#xde;" u2="J" k="49" />
+<hkern u1="&#xde;" u2="A" k="39" />
+<hkern u1="&#xde;" u2="&#x2f;" k="61" />
+<hkern u1="&#xde;" u2="&#x2e;" k="66" />
+<hkern u1="&#xde;" u2="&#x29;" k="45" />
+<hkern u1="&#xdf;" u2="y" k="14" />
+<hkern u1="&#xdf;" u2="x" k="18" />
+<hkern u1="&#xdf;" u2="w" k="10" />
+<hkern u1="&#xdf;" u2="v" k="14" />
+<hkern u1="&#xdf;" u2="t" k="14" />
+<hkern u1="&#xdf;" u2="f" k="12" />
+<hkern u1="&#xdf;" u2="]" k="25" />
+<hkern u1="&#xdf;" u2="\" k="20" />
+<hkern u1="&#xdf;" u2="Z" k="14" />
+<hkern u1="&#xdf;" u2="Y" k="37" />
+<hkern u1="&#xdf;" u2="X" k="31" />
+<hkern u1="&#xdf;" u2="W" k="27" />
+<hkern u1="&#xdf;" u2="V" k="33" />
+<hkern u1="&#xdf;" u2="U" k="20" />
+<hkern u1="&#xdf;" u2="T" k="31" />
+<hkern u1="&#xdf;" u2="S" k="10" />
+<hkern u1="&#xdf;" u2="O" k="10" />
+<hkern u1="&#xdf;" u2="J" k="14" />
+<hkern u1="&#xdf;" u2="I" k="16" />
+<hkern u1="&#xdf;" u2="A" k="14" />
+<hkern u1="&#xdf;" u2="&#x2f;" k="31" />
+<hkern u1="&#xdf;" u2="&#x29;" k="33" />
+<hkern u1="&#xed;" u2="&#x7d;" k="-33" />
+<hkern u1="&#xed;" u2="]" k="-55" />
+<hkern u1="&#xed;" u2="\" k="-18" />
+<hkern u1="&#xed;" u2="&#x2a;" k="-37" />
+<hkern u1="&#xee;" u2="&#x3f;" k="-35" />
+<hkern u1="&#xee;" u2="&#x2a;" k="-84" />
+<hkern u1="&#xef;" u2="&#x7d;" k="-12" />
+<hkern u1="&#xef;" u2="]" k="-33" />
+<hkern u1="&#xef;" u2="&#x2a;" k="-43" />
+<hkern u1="&#xf0;" u2="&#x2019;" k="37" />
+<hkern u1="&#xf0;" u2="&#x2018;" k="37" />
+<hkern u1="&#xf0;" u2="&#xc6;" k="14" />
+<hkern u1="&#xf0;" u2="&#x7d;" k="20" />
+<hkern u1="&#xf0;" u2="z" k="8" />
+<hkern u1="&#xf0;" u2="y" k="12" />
+<hkern u1="&#xf0;" u2="x" k="27" />
+<hkern u1="&#xf0;" u2="w" k="8" />
+<hkern u1="&#xf0;" u2="v" k="14" />
+<hkern u1="&#xf0;" u2="t" k="12" />
+<hkern u1="&#xf0;" u2="f" k="10" />
+<hkern u1="&#xf0;" u2="]" k="39" />
+<hkern u1="&#xf0;" u2="\" k="33" />
+<hkern u1="&#xf0;" u2="Z" k="37" />
+<hkern u1="&#xf0;" u2="Y" k="80" />
+<hkern u1="&#xf0;" u2="X" k="61" />
+<hkern u1="&#xf0;" u2="W" k="59" />
+<hkern u1="&#xf0;" u2="V" k="70" />
+<hkern u1="&#xf0;" u2="U" k="18" />
+<hkern u1="&#xf0;" u2="T" k="82" />
+<hkern u1="&#xf0;" u2="S" k="16" />
+<hkern u1="&#xf0;" u2="J" k="25" />
+<hkern u1="&#xf0;" u2="I" k="12" />
+<hkern u1="&#xf0;" u2="A" k="20" />
+<hkern u1="&#xf0;" u2="&#x2f;" k="39" />
+<hkern u1="&#xf0;" u2="&#x2a;" k="18" />
+<hkern u1="&#xf0;" u2="&#x29;" k="39" />
+<hkern u1="&#xf0;" u2="&#x27;" k="18" />
+<hkern u1="&#x2018;" u2="&#xf0;" k="39" />
+<hkern u1="&#x2018;" u2="&#xc6;" k="133" />
+<hkern u1="&#x2018;" u2="s" k="49" />
+<hkern u1="&#x2018;" u2="o" k="74" />
+<hkern u1="&#x2018;" u2="a" k="43" />
+<hkern u1="&#x2018;" u2="O" k="23" />
+<hkern u1="&#x2018;" u2="J" k="29" />
+<hkern u1="&#x2018;" u2="A" k="125" />
+<hkern u1="&#x2018;" u2="&#x2e;" k="309" />
+<hkern u1="&#x2019;" u2="&#x2039;" k="33" />
+<hkern u1="&#x2019;" u2="&#xf0;" k="39" />
+<hkern u1="&#x2019;" u2="&#xc6;" k="133" />
+<hkern u1="&#x2019;" u2="&#xae;" k="25" />
+<hkern u1="&#x2019;" u2="s" k="49" />
+<hkern u1="&#x2019;" u2="o" k="74" />
+<hkern u1="&#x2019;" u2="a" k="43" />
+<hkern u1="&#x2019;" u2="O" k="23" />
+<hkern u1="&#x2019;" u2="J" k="29" />
+<hkern u1="&#x2019;" u2="A" k="125" />
+<hkern u1="&#x2019;" u2="&#x40;" k="57" />
+<hkern u1="&#x2019;" u2="&#x3a;" k="156" />
+<hkern u1="&#x2019;" u2="&#x2f;" k="172" />
+<hkern u1="&#x2019;" u2="&#x2e;" k="309" />
+<hkern u1="&#x2019;" u2="&#x26;" k="45" />
+<hkern u1="&#x2039;" u2="Y" k="66" />
+<hkern u1="&#x2039;" u2="W" k="23" />
+<hkern u1="&#x2039;" u2="V" k="35" />
+<hkern u1="&#x2039;" u2="T" k="111" />
+<hkern u1="&#x203a;" u2="z" k="25" />
+<hkern u1="&#x203a;" u2="y" k="37" />
+<hkern u1="&#x203a;" u2="x" k="43" />
+<hkern u1="&#x203a;" u2="w" k="29" />
+<hkern u1="&#x203a;" u2="v" k="37" />
+<hkern u1="&#x203a;" u2="t" k="27" />
+<hkern u1="&#x203a;" u2="s" k="20" />
+<hkern u1="&#x203a;" u2="f" k="27" />
+<hkern u1="&#x203a;" u2="Z" k="23" />
+<hkern u1="&#x203a;" u2="Y" k="109" />
+<hkern u1="&#x203a;" u2="X" k="33" />
+<hkern u1="&#x203a;" u2="W" k="57" />
+<hkern u1="&#x203a;" u2="V" k="72" />
+<hkern u1="&#x203a;" u2="T" k="127" />
+<hkern u1="&#x203a;" u2="J" k="27" />
+<hkern u1="&#x203a;" u2="&#x27;" k="29" />
+</font>
+</defs></svg> 
\ No newline at end of file
diff --git a/src/main/webapp/resources/fonts/montserrat-webfont.ttf b/src/main/webapp/resources/fonts/montserrat-webfont.ttf
new file mode 100644
index 0000000000000000000000000000000000000000..9953fe62e0002951d13e04023f534b504f158f5d
Binary files /dev/null and b/src/main/webapp/resources/fonts/montserrat-webfont.ttf differ
diff --git a/src/main/webapp/resources/fonts/montserrat-webfont.woff b/src/main/webapp/resources/fonts/montserrat-webfont.woff
new file mode 100644
index 0000000000000000000000000000000000000000..eb49333f716be52b58f29f6c866e40d73b891150
Binary files /dev/null and b/src/main/webapp/resources/fonts/montserrat-webfont.woff differ
diff --git a/src/main/webapp/resources/fonts/varela_round-webfont.eot b/src/main/webapp/resources/fonts/varela_round-webfont.eot
new file mode 100644
index 0000000000000000000000000000000000000000..dfee0c26e7bf8cd2e2d0712a6835f3b910b637c6
Binary files /dev/null and b/src/main/webapp/resources/fonts/varela_round-webfont.eot differ
diff --git a/src/main/webapp/resources/fonts/varela_round-webfont.svg b/src/main/webapp/resources/fonts/varela_round-webfont.svg
new file mode 100644
index 0000000000000000000000000000000000000000..3280e2c43c0d7984a3ba5be89b22a89a3f0ef3eb
--- /dev/null
+++ b/src/main/webapp/resources/fonts/varela_round-webfont.svg
@@ -0,0 +1,7875 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<svg xmlns="http://www.w3.org/2000/svg">
+<metadata></metadata>
+<defs>
+<font id="varela_roundregular" horiz-adv-x="1286" >
+<font-face units-per-em="2048" ascent="1638" descent="-410" />
+<missing-glyph horiz-adv-x="532" />
+<glyph horiz-adv-x="2048" />
+<glyph horiz-adv-x="2048" />
+<glyph unicode="&#xd;" horiz-adv-x="681" />
+<glyph unicode=" "  horiz-adv-x="532" />
+<glyph unicode="&#x09;" horiz-adv-x="532" />
+<glyph unicode="&#xa0;" horiz-adv-x="532" />
+<glyph unicode="!" horiz-adv-x="575" d="M168 113.5q0 50.5 36 86.5t86 36t86 -36t36 -86.5t-36 -86t-86 -35.5t-86 35.5t-36 86zM182 1130v203q0 45 31 76t76 31t74.5 -31t29.5 -76v-203l-37 -675q-4 -60 -67 -60q-66 0 -70 60z" />
+<glyph unicode="&#x22;" horiz-adv-x="841" d="M123 1418q0 50 31.5 81t72.5 31t72 -31q33 -31 33 -81t-3 -93t-10.5 -92t-16.5 -95t-15 -73q-10 -57 -60 -57q-25 0 -40 15t-20 42t-14.5 73t-16.5 95t-10 92t-3 93zM510 1418q0 50 31.5 81t72.5 31t72 -31q33 -31 33 -81t-3 -93t-10.5 -92t-16.5 -95t-13 -73 q-12 -57 -62 -57q-25 0 -40 15t-20 42t-14.5 73t-16.5 95t-10 92t-3 93z" />
+<glyph unicode="#" horiz-adv-x="1253" d="M74 444q0 29 21.5 50.5t49.5 21.5h181l49 311h-158q-29 0 -50.5 21.5t-21.5 50.5t21.5 50.5t50.5 21.5h180l52 323q4 23 23.5 40.5t50 17.5t50 -20.5t19.5 -37t-1 -23.5t-5 -37t-15 -91l-28 -172h260l51 323q4 23 23.5 40.5t50 17.5t50 -20.5t19.5 -37t-1 -23.5t-5 -37 t-14 -91l-29 -172h158q29 0 50.5 -21.5t21.5 -50.5t-21.5 -50.5t-50.5 -21.5h-180l-49 -311h157q29 0 50.5 -21.5t21.5 -50.5t-21.5 -50t-50.5 -21h-180l-51 -324q-4 -23 -23.5 -41t-48.5 -18t-50.5 20.5t-21.5 39t50 323.5h-260l-52 -324q-4 -23 -23.5 -41t-47.5 -18 q-29 0 -50.5 20.5t-21.5 39t49 323.5h-158q-29 0 -50 21.5t-21 49.5zM471 516h260l49 311h-260z" />
+<glyph unicode="$" horiz-adv-x="1253" d="M96.5 149q-0.5 44 22 68.5t52.5 24.5t71 -19q143 -63 350 -69v469q-227 59 -311 114.5t-127 123t-43 159.5t30.5 164.5t91.5 130.5q131 121 359 133v160q0 20 12 33.5t33 13.5q20 0 33.5 -13.5t13.5 -33.5v-158q207 -8 365 -68q57 -20 57 -82q0 -31 -21.5 -57t-47 -26 t-68.5 16q-125 43 -285 47v-487q86 -20 172 -47t156 -72q154 -102 153 -295q0 -166 -131 -277t-350 -122v-160q0 -20 -13.5 -32.5t-33.5 -12.5q-45 0 -45 45v160q-231 10 -438 98q-57 27 -57.5 71zM295 1044q0 -135 180 -196q55 -18 117 -33v461q-129 -12 -213 -71t-84 -161 zM684 156q211 14 274 133q23 43 23 95t-23.5 84t-64.5 56q-59 37 -209 76v-444z" />
+<glyph unicode="%" horiz-adv-x="1667" d="M88 1098q0 252 186 338q62 28 144 28q158 0 246 -106q84 -100 84 -260t-84 -260q-88 -106 -246 -107q-156 0 -246 107q-84 96 -84 260zM231 1098q0 -98 47.5 -166t139.5 -68t139 67.5t47 166.5q0 98 -47 165.5t-139 67.5t-139.5 -67.5t-47.5 -165.5zM350 42q0 24 10 40 l834 1333q20 33 54 33t53.5 -16.5t19.5 -42t-14 -48.5l-828 -1325q-23 -37 -55.5 -36.5t-53 19.5t-20.5 43zM920 330q0 252 186 338q61 28 143 28q158 0 246 -106q84 -100 84 -260t-84 -260q-88 -106 -246 -107q-156 0 -245 107q-84 96 -84 260zM1063 330q0 -98 47 -166 t139 -68t139.5 67.5t47.5 166.5q0 98 -47.5 165.5t-139.5 67.5t-139 -67.5t-47 -165.5z" />
+<glyph unicode="&#x26;" horiz-adv-x="1499" d="M145 401q0 139 84 256q66 88 148 138q-53 66 -89 132t-36 151t26.5 150.5t75.5 114.5q106 106 281 107q137 0 272 -90q37 -20 37 -55t-20.5 -56.5t-44 -21.5t-54.5 16q-88 47 -161.5 47t-114.5 -16.5t-70 -42.5q-55 -53 -55 -114.5t11 -96.5t36 -70q35 -53 158 -166 l428 -403q35 53 56.5 100t43 61.5t53 14.5t56 -23.5t24.5 -52.5q0 -66 -108 -217l137 -131q33 -29 33 -63.5t-21.5 -60t-60.5 -25.5t-66 24l-137 131q-186 -160 -420 -159q-252 0 -387 135q-115 115 -115 286zM322 393.5q0 -55.5 24.5 -103.5t65.5 -81q86 -72 202.5 -72 t194.5 34t137 81l-457 428q-113 -72 -153 -188q-14 -43 -14 -98.5z" />
+<glyph unicode="'" horiz-adv-x="487" d="M129 1042.5q0 28.5 31 47.5q45 27 74.5 66.5t29.5 123.5h-8q-47 0 -81 34t-34 81v12q0 47 34 81t81 34h20q48 0 81.5 -34t33.5 -81v-121q0 -109 -55 -192q-39 -61 -113 -107q-10 -10 -35.5 -10t-42 18.5t-16.5 47z" />
+<glyph unicode="(" horiz-adv-x="638" d="M104 629q0 258 71 494.5t218 412.5q14 16 27.5 26.5t43.5 10.5t54.5 -22.5t24.5 -52.5t-13 -50q-240 -401 -239 -819q-1 -418 239 -819q12 -23 12.5 -51.5t-24 -51t-54.5 -22.5t-43 10t-28 26q-147 176 -218 413t-71 495z" />
+<glyph unicode=")" horiz-adv-x="638" d="M98 -241.5q0 28.5 13 51.5q240 401 239 819q0 418 -239 819q-12 20 -12.5 50t24 52.5t54.5 22.5t43 -10.5t28 -26.5q147 -176 218 -412.5t71 -494.5t-71 -494.5t-218 -413.5q-14 -16 -27.5 -26t-43.5 -10t-54.5 22.5t-24.5 51z" />
+<glyph unicode="*" horiz-adv-x="854" d="M135 977q0 41 29 55q2 0 6 2t23.5 10.5t60.5 23.5t115 44l-205 80q-29 18 -29 43q0 55 45 70q23 8 45 -7q2 0 56.5 -44t115.5 -93q-33 207 -32 211v6q0 27 19 43.5t42 16.5t42 -16.5t19 -31t-1 -18.5t-3 -24l-10 -66q-6 -43 -18 -121l172 137q23 14 45 7q45 -14 45 -54.5 t-29 -58.5q-2 0 -6 -2t-23.5 -10.5t-60.5 -23.5t-115 -44l205 -80q29 -14 29 -41q0 -55 -45 -69q-29 -10 -51 8q-6 4 -55.5 44t-110.5 89q12 -78 18 -121l10 -65q2 -20 3 -24.5t1 -19t-19 -31t-42 -16.5t-42 16.5t-19 31.5v18q0 10 10 71.5t22 139.5q-172 -137 -183 -143.5 t-34 2.5q-45 14 -45 55z" />
+<glyph unicode="+" horiz-adv-x="1150" d="M82 707q0 35 21.5 57t56.5 22h336v336q0 35 22.5 57.5t56.5 22.5q35 0 57.5 -22.5t22.5 -57.5v-336h334q35 0 57.5 -22.5t22.5 -56.5q0 -35 -22.5 -56.5t-57.5 -21.5h-334v-336q0 -35 -22.5 -57.5t-57.5 -22.5t-57 22.5t-22 57.5v336h-336q-35 0 -56.5 21.5t-21.5 56.5z " />
+<glyph unicode="," horiz-adv-x="532" d="M129 -243.5q0 28.5 31 46.5q45 27 74.5 67t29.5 124h-8q-47 0 -81 33.5t-34 81.5v12q0 47 34 81t81 34h20q48 0 81.5 -34t33.5 -81v-121q0 -109 -55 -193q-39 -61 -113 -106q-10 -10 -35.5 -10t-42 18.5t-16.5 47z" />
+<glyph unicode="-" horiz-adv-x="835" d="M141 573q0 35 23.5 59.5t58.5 24.5h387q35 0 59.5 -24.5t24.5 -59.5t-24.5 -58t-59.5 -23h-387q-35 0 -58.5 23.5t-23.5 57.5z" />
+<glyph unicode="." horiz-adv-x="532" d="M141 109v12q0 47 34 81t81 34h20q48 0 81.5 -34t33.5 -81v-12q0 -47 -33.5 -81t-81.5 -34h-20q-47 0 -81 33.5t-34 81.5z" />
+<glyph unicode="/" horiz-adv-x="907" d="M98 -123q0 31 6 43l543 1587q18 57 82 58q35 0 58.5 -24.5t23.5 -45.5q0 -33 -6 -45l-543 -1587q-18 -57 -80 -58q-37 0 -60.5 25t-23.5 47z" />
+<glyph unicode="0" d="M88 715q0 338 139 530q146 205 416 205q137 0 241.5 -53.5t174.5 -151.5q139 -193 139 -530q0 -340 -139 -533q-147 -203 -415.5 -202.5t-416.5 202.5q-139 193 -139 533zM274 715q0 -262 95 -412q94 -151 274 -151t275 151q94 150 94 412q0 260 -94 409 q-94 152 -275.5 152t-275 -151.5t-93.5 -409.5z" />
+<glyph unicode="1" d="M262 1195q0 48 53 75l279 145q29 14 57 15h43q41 0 70 -29t29 -70v-1157h202q37 0 62.5 -25.5t25.5 -62.5t-25.5 -61.5t-62.5 -24.5h-633q-37 0 -61.5 24.5t-24.5 61.5t25 62.5t61 25.5h244v1038l-209 -102l-20 -8t-38 -4t-52.5 24.5t-24.5 72.5z" />
+<glyph unicode="2" d="M133 106q0 109 60.5 195t151.5 160t197.5 139.5t197.5 131t151.5 135t60.5 139t-17 115.5t-54 79q-82 74 -252 74q-182 0 -350 -74q-20 -10 -47 -10t-48.5 22.5t-21.5 65.5t45 68q209 104 455 104q201 0 333 -115q137 -117 138 -301q0 -186 -187 -358 q-82 -74 -179 -139.5t-187.5 -126t-162 -119t-98.5 -117.5h713q37 0 62.5 -25.5t25.5 -62.5t-25.5 -61.5t-62.5 -24.5h-790q-47 0 -78 29.5t-31 76.5z" />
+<glyph unicode="3" d="M121 139q0 33 22.5 59.5t50 26.5t68.5 -16q127 -51 305 -51q256 0 346 116q33 43 33 111q0 258 -452 258h-33q-35 0 -60.5 25.5t-25.5 60.5t25.5 60.5t60.5 25.5h12q422 0 422 248q0 96 -79 154.5t-245 58.5q-168 0 -317 -68q-16 -8 -42 -8t-48.5 20.5t-22.5 61.5t41 64 q193 104 418 104t353 -96.5t128 -272.5q0 -248 -247 -342q195 -47 268 -204q31 -66 31 -162.5t-41 -170t-113 -122.5q-145 -100 -377 -100q-225 0 -428 81q-53 25 -53 78z" />
+<glyph unicode="4" d="M51 477v19q0 43 25 73l643 822q35 49 102 49h41q53 0 86 -35t33 -84v-795h156q35 0 59.5 -24.5t24.5 -59.5t-25 -58.5t-59 -23.5h-156v-278q0 -39 -27.5 -65.5t-66.5 -26.5t-65.5 26.5t-26.5 65.5v278h-625q-49 0 -84 34t-35 83zM250 526h545v703z" />
+<glyph unicode="5" d="M131 165q0 42 22.5 68.5t52.5 26.5t73 -22q141 -74 305 -74q293 0 370 149q29 55 29 140q0 127 -85 200.5t-210 73.5q-190 0 -338 -88q-43 -25 -86 -25t-82 32t-39 87q0 29 4 49l93 545q6 47 35.5 75t72.5 28h658q37 0 62.5 -26t25.5 -63t-26 -61.5t-62 -24.5h-594 l-66 -434q154 84 346 84q227 0 357 -131q121 -125 120 -332q0 -324 -309 -426q-106 -37 -250 -36q-250 0 -438 118q-41 25 -41 67z" />
+<glyph unicode="6" d="M121 737q0 94 29.5 225.5t98 239t182.5 178t263.5 70.5t235.5 -27.5t147 -60.5q43 -25 43 -66t-22.5 -66.5t-52 -25.5t-62.5 17q-111 49 -249 49t-220 -56.5t-129 -136.5q-74 -133 -86 -332q90 119 270 164q66 16 160 16.5t180 -33.5t148 -97q131 -133 131 -351 q0 -199 -135 -329q-139 -135 -371 -135q-233 0 -371 126q-162 154 -184 455q-6 82 -6 176zM309 530q37 -266 211 -346q68 -31 153 -30.5t143 24t99 64.5q86 86 86 214t-75.5 214t-229.5 86q-160 0 -266 -82q-74 -55 -121 -144z" />
+<glyph unicode="7" d="M123 1339q0 37 25.5 64t62.5 27h836q49 0 81.5 -31t32.5 -77t-20 -91l-582 -1190q-29 -51 -79 -51t-75.5 25.5t-25.5 58t12 57.5l563 1120h-743q-37 0 -62.5 26t-25.5 62z" />
+<glyph unicode="8" d="M96 377q0 160 84 251t221 138q-164 57 -217 197q-20 51 -20 112.5t24.5 127t81.5 120.5q129 127 373 127t373 -127q106 -105 106 -248q0 -61 -19.5 -111.5t-51.5 -89.5q-61 -72 -166 -108q137 -47 221 -138t84 -249q0 -162 -121 -268q-147 -131 -426 -131t-426 131 q-121 106 -121 266zM283 399q0 -90 77 -161q97 -95 283 -95t283 95q78 72 78 151.5t-30 130.5t-81 86q-98 70 -248.5 70t-251.5 -70q-111 -76 -110 -207zM350 1068q0 -87 70.5 -155.5t222.5 -68.5t229 76q63 61 63.5 148t-71 152.5t-221.5 65.5t-221.5 -65.5t-71.5 -152.5z " />
+<glyph unicode="9" d="M98 985q0 201 135 330q143 135 371 135q233 0 371 -127q162 -154 184 -455q6 -82 6 -177t-29.5 -225t-98 -237.5t-183.5 -178t-263.5 -70.5t-234.5 27.5t-147 60.5q-43 25 -43 65.5t22.5 66t51 25.5t63.5 -16q115 -49 250 -49t218 56t130 136q74 133 86 332 q-90 -119 -270 -164q-66 -16 -160 -16t-180 33.5t-148 97.5q-131 133 -131 350zM285 974q0 -128 75.5 -214t229.5 -86q160 0 266 82q74 55 121 143q-37 266 -211 346q-68 31 -153 31t-143 -23.5t-99 -64.5q-86 -86 -86 -214z" />
+<glyph unicode=":" horiz-adv-x="532" d="M141 109v12q0 47 34 81t81 34h20q47 0 81 -34t34 -81v-12q0 -47 -33.5 -81t-81.5 -34h-20q-47 0 -81 33.5t-34 81.5zM141 924v12q0 47 34 81t81 34h20q47 0 81 -34t34 -81v-12q0 -47 -33.5 -81t-81.5 -34h-20q-47 0 -81 34t-34 81z" />
+<glyph unicode=";" horiz-adv-x="532" d="M129 -243.5q0 28.5 31 46.5q45 27 74.5 67t29.5 124h-8q-47 0 -81 33.5t-34 81.5v12q0 47 34 81t81 34h20q47 0 81 -34t34 -81v-121q0 -109 -55 -193q-39 -61 -113 -106q-10 -10 -35.5 -10t-42 18.5t-16.5 47zM141 924v12q0 47 34 81t81 34h20q47 0 81 -34t34 -81v-12 q0 -47 -33.5 -81t-81.5 -34h-20q-47 0 -81 34t-34 81z" />
+<glyph unicode="&#x3c;" horiz-adv-x="1187" d="M72 598v16q0 72 73 107l818 366q14 6 40.5 6.5t50 -23t23.5 -54.5q0 -59 -55 -82l-737 -328l737 -327q25 -10 40 -32t15 -51.5t-23.5 -53t-50 -23.5t-40.5 6l-818 367q-74 35 -73 106z" />
+<glyph unicode="=" horiz-adv-x="1458" d="M150 449q0 35 22.5 57t56.5 22h1000q35 0 57.5 -22.5t22.5 -56.5q0 -35 -22.5 -57.5t-57.5 -22.5h-1000q-35 0 -57 22.5t-22 57.5zM150 907q0 35 22.5 57.5t56.5 22.5h1000q35 0 57.5 -22.5t22.5 -57.5t-22.5 -57.5t-57.5 -22.5h-1000q-35 0 -57 22.5t-22 57.5z" />
+<glyph unicode="&#x3e;" horiz-adv-x="1187" d="M111 197q0 59 55 82l737 327l-737 328q-25 10 -40 31.5t-15 51.5t23.5 53.5t49 23.5t41.5 -7l817 -366q74 -35 74 -107v-16q0 -72 -74 -106l-817 -367q-16 -6 -41.5 -6t-49 23.5t-23.5 54.5z" />
+<glyph unicode="?" horiz-adv-x="1017" d="M53 1270q0 51 51 82q160 98 361 98q211 0 334 -104q127 -106 127 -283q0 -184 -193 -326q-113 -84 -162 -164q-29 -47 -28.5 -97t-27.5 -72.5t-64.5 -22.5t-62.5 23.5t-26 56.5q0 203 191 350q123 98 155.5 144.5t32.5 97.5q0 223 -292 223q-160 0 -263 -68 q-27 -16 -56.5 -16t-53 23.5t-23.5 54.5zM328 113.5q0 50.5 35.5 86.5t86 36t86 -36t35.5 -86.5t-35.5 -86t-86 -35.5t-86 35.5t-35.5 86z" />
+<glyph unicode="@" horiz-adv-x="1839" d="M100 555q0 158 70 315.5t187.5 277.5t275.5 190.5t325.5 70.5t310 -52t249 -145.5t169 -223.5t62.5 -288q0 -205 -86 -344q-104 -162 -295 -161q-154 0 -209 96q-14 29 -20 55q-127 -154 -338 -153q-164 0 -260 102q-88 98 -88 237.5t42 232.5t109 157q137 129 334 129 q152 0 262 -105l6 35q4 29 25.5 46t51.5 17t51.5 -21.5t21.5 -39.5v-22q0 -4 -2 -15l-68 -389q-14 -86 -14 -136t23.5 -90t78.5 -40q129 0 196.5 112.5t67.5 278.5t-58 278.5t-155 188.5q-190 152 -456 151q-156 0 -294 -61t-242.5 -165.5t-165 -243t-60.5 -271.5t40 -240.5 t118 -191.5q174 -190 454 -190q133 0 209 20q94 25 163 51.5t85 26.5t30.5 -13.5t14.5 -41t-29 -41.5q-217 -109 -473 -109q-164 0 -297 58.5t-227 155.5t-144.5 225t-50.5 286zM610 573q0 -121 70 -184q61 -55 166 -55q174 0 254 145q31 55 45 142l33 190q-88 94 -232 94 q-139 0 -233 -86q-102 -94 -103 -246z" />
+<glyph unicode="A" horiz-adv-x="1427" d="M53 70.5q0 27.5 10 52.5l523 1233q37 84 119 84h20q82 0 119 -84l522 -1233q10 -25 10 -52.5t-24.5 -54t-77.5 -26.5t-78 57l-133 320h-696l-134 -320q-25 -57 -78 -57t-77.5 26.5t-24.5 54zM438 537h553l-276 665z" />
+<glyph unicode="B" horiz-adv-x="1419" d="M199 92v1243q0 39 26.5 67t65.5 28h483q225 0 342 -102.5t117 -268.5q0 -221 -201 -316q195 -66 258 -215q23 -57 23 -137t-29 -153.5t-92 -126.5q-131 -111 -406 -111h-495q-39 0 -65.5 26.5t-26.5 65.5zM385 174h383q291 0 346 139q18 43 19 97q0 123 -92.5 178 t-270.5 55h-385v-469zM385 811h340q264 0 315 141q15 43 15 92q0 96 -77 153.5t-218 57.5h-375v-444z" />
+<glyph unicode="C" horiz-adv-x="1429" d="M319 1253q199 197 512 197q152 0 261.5 -37t168 -68.5t70.5 -51t12 -49.5t-21.5 -53.5t-51 -23.5t-45.5 9q-82 43 -168 69.5t-214 26.5t-231.5 -43t-173.5 -119q-137 -150 -137 -395q0 -246 137 -396q149 -161 409 -161h3q121 0 207 26.5t168 69.5q16 8 45.5 8t51 -23.5 t21.5 -54.5q0 -55 -45 -78q-96 -53 -205.5 -89.5t-262 -36.5t-283.5 50t-228 146q-204 200 -204 536q0 341 204 541z" />
+<glyph unicode="D" horiz-adv-x="1536" d="M199 92v1243q0 39 26.5 67t65.5 28h411q342 0 545 -230q90 -100 134 -228t44 -257t-44 -257t-134 -229q-203 -229 -545 -229h-411q-39 0 -65.5 26.5t-26.5 65.5zM385 174h295q254 0 410 150q152 150 152 389q0 242 -152 393q-155 149 -407 149h-3h-295v-1081z" />
+<glyph unicode="E" horiz-adv-x="1306" d="M199 92v1243q0 39 26.5 67t65.5 28h821q37 0 62.5 -26t25.5 -63t-25.5 -61.5t-62.5 -24.5h-727v-452h653q37 0 62.5 -25.5t25.5 -62.5t-25.5 -61.5t-62.5 -24.5h-653v-455h727q37 0 62.5 -25.5t25.5 -62.5t-25.5 -61.5t-62.5 -24.5h-821q-39 0 -65.5 26.5t-26.5 65.5z " />
+<glyph unicode="F" horiz-adv-x="1249" d="M199 82v1253q0 39 26.5 67t65.5 28h796q37 0 63 -26t26 -63t-26 -61.5t-63 -24.5h-702v-452h631q37 0 62.5 -25.5t25.5 -62.5t-25.5 -61.5t-62.5 -24.5h-631v-547q0 -39 -27.5 -65.5t-66.5 -26.5t-65.5 26.5t-26.5 65.5z" />
+<glyph unicode="G" horiz-adv-x="1523" d="M113 713q0 326 206 536q199 201 506 201q174 0 294 -43t216 -104q41 -23 41 -65t-22.5 -67.5t-54 -25.5t-52.5 10q-199 115 -401 115q-238 0 -389 -144q-158 -152 -158 -413q0 -242 147 -398q152 -159 410 -159q193 0 358 90v370h-337q-35 0 -59.5 25t-24.5 59 q0 35 24.5 59.5t59.5 24.5h403q41 0 69.5 -28.5t28.5 -69.5v-465q0 -43 -21.5 -76.5t-56.5 -50.5q-227 -114 -465 -114h-4q-322 0 -520 204q-199 207 -198 529z" />
+<glyph unicode="H" horiz-adv-x="1546" d="M199 82v1264q0 39 26.5 66.5t65.5 27.5t66.5 -28t27.5 -66v-545h776v545q0 39 26.5 66.5t65.5 27.5t67 -28t28 -66v-1264q0 -39 -28 -65.5t-67 -26.5t-65.5 26.5t-26.5 65.5v545h-776v-545q0 -39 -27.5 -65.5t-66.5 -26.5t-65.5 26.5t-26.5 65.5z" />
+<glyph unicode="I" horiz-adv-x="583" d="M199 82v1264q0 39 26.5 66.5t65.5 27.5t66.5 -28t27.5 -66v-1264q0 -39 -27.5 -65.5t-66.5 -26.5t-65.5 26.5t-26.5 65.5z" />
+<glyph unicode="J" horiz-adv-x="954" d="M25 116q0 42 21.5 67.5t49 25.5t56.5 -14q78 -39 150.5 -39t117.5 11t80 44q78 74 78 248v887q0 39 26.5 66.5t65.5 27.5t66.5 -28t27.5 -66v-875q0 -268 -133 -393q-106 -98 -289 -98q-150 0 -272 69q-45 25 -45 67z" />
+<glyph unicode="K" horiz-adv-x="1372" d="M199 82v1264q0 39 26.5 66.5t65.5 27.5t66.5 -28t27.5 -66v-652l700 713q27 33 67 33t64.5 -23.5t24.5 -61.5t-22 -61l-474 -471l543 -684q23 -29 23 -63.5t-25.5 -60t-68.5 -25.5t-70 37l-529 673l-233 -235v-383q0 -39 -27.5 -65.5t-66.5 -26.5t-65.5 26.5t-26.5 65.5z " />
+<glyph unicode="L" horiz-adv-x="1179" d="M199 129v1217q0 39 26.5 66.5t65.5 27.5t66.5 -28t27.5 -66v-1160h670q39 0 66.5 -27.5t27.5 -66.5t-27.5 -65.5t-66.5 -26.5h-727q-53 0 -91 38t-38 91z" />
+<glyph unicode="M" horiz-adv-x="1978" d="M199 82v1223q0 55 38.5 95t94.5 40h67q41 0 75 -24.5t50 -61.5l465 -1159l465 1159q16 37 50 61.5t75 24.5h68q55 0 94 -40t39 -95v-1223q0 -39 -27 -65.5t-65 -26.5q-39 0 -67 26.5t-28 65.5v1163l-473 -1169q-16 -39 -51 -62.5t-80 -23.5t-80 23.5t-51 62.5l-473 1169 v-1163q0 -39 -27.5 -65.5t-66.5 -26.5t-65.5 26.5t-26.5 65.5z" />
+<glyph unicode="N" horiz-adv-x="1644" d="M199 82v1223q0 55 38.5 95t94.5 40h26q63 0 113 -62l789 -1138v1106q0 39 26.5 66.5t65.5 27.5t66.5 -28t27.5 -66v-1223q0 -55 -40 -94t-95 -39h-25q-68 0 -108 55l-793 1145v-1108q0 -39 -27.5 -65.5t-66.5 -26.5t-65.5 26.5t-26.5 65.5z" />
+<glyph unicode="O" horiz-adv-x="1660" d="M113 715q4 324 198 528q194 207 520 207q324 0 521 -207q190 -203 198 -528q-8 -326 -198 -529q-196 -206 -518 -206h-3q-326 0 -520 206q-195 205 -198 529zM299 715q0 -244 139 -400q143 -161 393 -161t394 161q139 156 139 400t-139 399q-143 162 -394 162 q-250 0 -393 -162q-139 -156 -139 -399z" />
+<glyph unicode="P" horiz-adv-x="1370" d="M199 82v1253q0 39 26.5 67t65.5 28h467q285 0 428 -148q119 -119 119 -307t-119 -307q-143 -147 -428 -148h-373v-438q0 -39 -27.5 -65.5t-66.5 -26.5t-65.5 26.5t-26.5 65.5zM385 696h354q211 0 305 90q74 70 74 189q0 190 -190 254q-71 24 -180 24h-9h-354v-557z" />
+<glyph unicode="Q" horiz-adv-x="1662" d="M113 715q4 324 198 528q195 207 520 207q324 0 521 -207q190 -203 198 -528q-4 -242 -114.5 -420t-309.5 -260l181 -199q25 -25 25 -59q0 -36 -26 -63q-26 -25 -64 -25t-64 32l-224 267q-57 -8 -123 -8q-326 0 -520 206q-195 205 -198 529zM299 715q0 -244 139 -400 q143 -161 393 -161t394 161q139 156 139 400t-139 399q-143 162 -394 162q-250 0 -393 -162q-139 -156 -139 -399z" />
+<glyph unicode="R" horiz-adv-x="1458" d="M199 82v1253q0 39 26.5 67t65.5 28h477q281 0 424 -119q133 -113 133 -297q0 -119 -66.5 -221.5t-201.5 -149.5q147 -39 213 -213q43 -117 43 -254v-94q0 -39 -26.5 -65.5t-67.5 -26.5t-67 25.5t-26 66.5v61q0 166 -36.5 244t-100 124t-180.5 46h-424v-475 q0 -39 -27.5 -65.5t-66.5 -26.5t-65.5 26.5t-26.5 65.5zM385 733h371q172 0 277.5 67.5t105.5 198.5q0 123 -82 185q-97 69 -306 69h-6h-360v-520z" />
+<glyph unicode="S" horiz-adv-x="1261" d="M104 165q0 32 23 57.5t52.5 25.5t73.5 -19.5t144.5 -46t233.5 -26.5q358 0 358 235q0 98 -137 158q-59 25 -138 44t-160 41.5t-160 51.5t-140 74q-135 102 -135 270q0 180 135 295q147 125 395 125q223 0 408 -68q57 -20 57 -82q0 -31 -21.5 -58.5t-47 -27.5t-70.5 17 q-133 47 -305 47q-158 0 -260 -59q-104 -61 -105 -175q0 -117 135 -176q61 -29 139 -47t160 -38.5t160 -48t139 -72.5q135 -98 136 -283q0 -176 -142 -287q-144 -112 -379 -112h-4q-260 0 -487 98q-23 10 -40.5 32.5t-17.5 54.5z" />
+<glyph unicode="T" horiz-adv-x="1251" d="M29 1341q0 37 24.5 63t61.5 26h1020q36 0 62 -26t26 -63t-26 -61.5t-62 -24.5h-416v-1173q0 -39 -27.5 -65.5t-66.5 -26.5t-66 26.5t-27 65.5v1173h-417q-37 0 -61.5 25t-24.5 61z" />
+<glyph unicode="U" horiz-adv-x="1552" d="M188 537v809q0 39 27 66.5t66 27.5t66.5 -28t27.5 -66v-816q0 -182 125 -286q115 -94 276 -94q162 0 277 94q125 104 125 286v816q0 39 26.5 66.5t65.5 27.5t66.5 -28t27.5 -66v-809q0 -268 -193 -422q-166 -135 -395 -135q-233 0 -397 135q-190 154 -191 422z" />
+<glyph unicode="V" horiz-adv-x="1421" d="M49 1355.5q0 30.5 24.5 57.5t61.5 27q68 0 94 -64l482 -1200l481 1200q27 64 79 64h2q51 0 75 -27t24 -57.5t-6 -44.5l-506 -1227q-43 -94 -127 -94h-45q-84 0 -127 94l-506 1227q-6 14 -6 44.5z" />
+<glyph unicode="W" horiz-adv-x="2062" d="M53 1365.5q0 27.5 24.5 51t61.5 23.5q74 0 97 -74l344 -1130l346 1126q10 35 39.5 56.5t66.5 21.5t66.5 -21.5t40.5 -56.5l346 -1126l344 1130q23 74 92 74q41 0 65.5 -23.5t24.5 -51.5t-6 -50l-401 -1233q-33 -92 -121 -92q-41 0 -75 25.5t-46 66.5l-330 1044 l-330 -1044q-12 -41 -45.5 -66.5t-74.5 -25.5q-88 0 -121 92l-402 1233q-6 23 -6 50.5z" />
+<glyph unicode="X" horiz-adv-x="1370" d="M88 75q0 34 18 58l474 582l-469 577q-19 26 -19 62q0 34 26 60t69.5 26t70.5 -37l432 -549l432 553q23 33 64 33t67.5 -25.5t26.5 -58.5t-16 -56l-473 -583l473 -582q18 -23 18 -56.5t-24.5 -61t-57.5 -27.5q-55 0 -84 39l-438 551l-432 -553q-31 -37 -69 -37t-63.5 25.5 t-25.5 59.5z" />
+<glyph unicode="Y" horiz-adv-x="1320" d="M61 1353q0 34 25 60q25 27 71 27t76 -47l429 -623l428 623q31 47 76.5 47t70.5 -27t25 -61.5t-17 -61.5l-491 -686v-522q0 -39 -27 -65.5t-65 -26.5q-39 0 -67 26.5t-28 65.5v522l-489 686q-17 28 -17 63z" />
+<glyph unicode="Z" horiz-adv-x="1306" d="M96 117q0 47 25 78l856 1056h-789q-37 0 -62.5 26t-25.5 62q0 37 26 64t62 27h889q59 0 92 -38t33 -86.5t-33 -84.5l-845 -1047h802q37 0 62.5 -25.5t25.5 -62.5t-25.5 -61.5t-62.5 -24.5h-911q-49 0 -84 35t-35 82z" />
+<glyph unicode="[" horiz-adv-x="659" d="M178 -180v1589q0 37 26.5 63.5t63.5 26.5h260q31 0 52.5 -21.5t21.5 -52.5t-21.5 -52t-52.5 -21h-188v-1477h188q31 0 52.5 -21.5t21.5 -50.5t-21.5 -51t-52.5 -22h-260q-37 0 -63.5 26.5t-26.5 63.5z" />
+<glyph unicode="\" horiz-adv-x="907" d="M96 1489q0 27 23.5 51.5t56.5 24.5q66 0 84 -58l543 -1587q6 -12 6 -38.5t-23.5 -51.5t-56.5 -25q-66 0 -84 58l-543 1587q-6 12 -6 39z" />
+<glyph unicode="]" horiz-adv-x="659" d="M57 -197q0 29 21.5 50.5t52.5 21.5h188v1477h-188q-31 0 -52.5 21.5t-21.5 51.5q0 31 21.5 52.5t52.5 21.5h260q37 0 63.5 -26.5t26.5 -63.5v-1589q0 -37 -26.5 -63.5t-63.5 -26.5h-260q-31 0 -52.5 22.5t-21.5 50.5z" />
+<glyph unicode="^" horiz-adv-x="1073" d="M168 914.5q0 19.5 4 27.5t8 19l215 407q16 29 38 49.5t63 20.5h77q41 0 62.5 -20.5t38.5 -49.5l215 -407q4 -10 8 -18.5t4 -28t-20.5 -42t-53.5 -22.5q-41 0 -61 33q-4 8 -26.5 46t-70.5 115.5t-134 217.5q-86 -139 -133.5 -216t-71 -115t-27.5 -46q-20 -35 -57 -35 t-57.5 22.5t-20.5 42z" />
+<glyph unicode="_" horiz-adv-x="1357" d="M106 -233q0 29 19.5 48t48.5 19h1010q28 0 47.5 -19.5t19.5 -47.5q0 -29 -19.5 -48.5t-47.5 -19.5h-1010q-29 0 -48.5 19.5t-19.5 48.5z" />
+<glyph unicode="`" horiz-adv-x="503" d="M141 1403q0 76 82 76q41 0 62 -39l104 -185q14 -14 14 -38.5t-15 -40t-40.5 -15.5t-44.5 23l-141 168q-21 22 -21 51z" />
+<glyph unicode="a" horiz-adv-x="1136" d="M78 287q0 152 115 237q125 94 356 94h248v17q0 137 -67.5 195.5t-207.5 58.5q-119 0 -272 -49q-16 -4 -36.5 -4t-43.5 22q-23 21 -23 64q0 46 54 69q172 74 356 74q209 0 324 -127q102 -111 102 -276v-580q0 -39 -27.5 -65.5t-66.5 -26.5t-65.5 26.5t-26.5 65.5v53 q-55 -57 -148.5 -106t-236.5 -49q-141 0 -236 81q-98 86 -98 226zM264 307q0 -164 217 -164q96 0 179 47.5t137 106.5v172h-224q-145 0 -227 -37t-82 -125z" />
+<glyph unicode="b" horiz-adv-x="1292" d="M162 82v1329q0 41 26.5 67.5t66.5 26.5t66.5 -26.5t26.5 -67.5v-502q152 156 350.5 156t339.5 -141q156 -156 156 -402q0 -250 -156 -403q-143 -139 -340.5 -139t-349.5 155v-53q0 -39 -26.5 -65.5t-66.5 -26.5t-66.5 26.5t-26.5 65.5zM348 307q138 -153 322 -153h2 q233 0 311 208q25 70 25 160q0 176 -95 277q-90 92 -241 92q-184 0 -324 -154v-430z" />
+<glyph unicode="c" horiz-adv-x="1097" d="M94 522q0 248 164 400q156 143 383 143q123 0 202 -32t126 -62.5t47 -67.5t-22.5 -63.5t-45.5 -26.5q-35 0 -71 21q-104 57 -220 57q-180 0 -278 -101.5t-98 -267.5t98 -267t278 -101q115 0 220 57q37 20 65.5 20t51 -26.5t22.5 -63.5t-47 -67q-145 -94 -328 -94 q-227 0 -383 143q-164 152 -164 399z" />
+<glyph unicode="d" horiz-adv-x="1292" d="M98 522q0 246 156 402q141 141 340 141t350 -156v502q0 41 26.5 67.5t66.5 26.5t66.5 -26.5t26.5 -67.5v-1329q0 -39 -26.5 -65.5t-66.5 -26.5t-66.5 26.5t-26.5 65.5v53q-151 -155 -347 -155h-3q-197 0 -340 139q-156 154 -156 403zM285 522q0 -176 96 -276 q88 -92 240 -92q184 0 323 153v430q-139 154 -323 154q-233 0 -310 -209q-26 -68 -26 -154v-6z" />
+<glyph unicode="e" horiz-adv-x="1167" d="M100 522q0 225 117 375q131 168 373 168q229 0 362 -156q125 -145 125 -360q0 -39 -25.5 -65.5t-68.5 -26.5h-694q16 -140 104 -221.5t246 -81.5t264 53q37 18 63.5 18t51 -22.5t24.5 -50.5q0 -53 -44 -77t-78.5 -40.5t-75.5 -28.5q-89 -26 -204 -26h-9 q-252 0 -391.5 141t-139.5 401zM289 608h604q-8 145 -107 230q-81 69 -196 69q-182 0 -266 -162q-31 -57 -35 -137z" />
+<glyph unicode="f" horiz-adv-x="778" d="M39 965q0 35 22.5 57t57.5 22h121v119q0 178 100 275q82 78 207 78q96 0 178 -41q47 -27 47 -64t-21.5 -61.5t-54.5 -24.5l-102 12q-78 0 -123 -35.5t-45 -144.5v-113h256q35 0 57.5 -22.5t22.5 -56.5q0 -35 -22.5 -57.5t-57.5 -22.5h-256v-803q0 -39 -26.5 -65.5 t-66.5 -26.5t-66.5 26.5t-26.5 65.5v803h-121q-35 0 -57.5 22.5t-22.5 57.5z" />
+<glyph unicode="g" horiz-adv-x="1292" d="M98 532q0 252 162 402q139 131 339 131t345 -156v52q0 39 26.5 66.5t65.5 27.5t66.5 -28t27.5 -66v-916q0 -260 -124.5 -398.5t-356.5 -138.5q-246 0 -438 107q-37 23 -37 62.5t23.5 66.5t49 27t46.5 -9q154 -77 333 -77h5q313 0 313 333v138q-145 -156 -350 -156 q-195 0 -334 131q-162 150 -162 401zM285 532q0 -264 211 -339q63 -23 153 -23q150 0 295 152v421q-57 59 -131 105.5t-164 46.5t-153.5 -22.5t-110.5 -65.5q-100 -94 -100 -275z" />
+<glyph unicode="h" horiz-adv-x="1247" d="M162 82v1329q0 41 26.5 67.5t65.5 26.5t66.5 -26.5t27.5 -67.5v-534q82 86 141 120q117 68 222.5 68t173 -32t114.5 -87q96 -113 97 -282v-582q0 -39 -28 -65.5t-67 -26.5t-65.5 26.5t-26.5 65.5v561q0 117 -52 183.5t-173 66.5q-180 0 -336 -197v-614q0 -39 -27.5 -65.5 t-66.5 -26.5t-65.5 26.5t-26.5 65.5z" />
+<glyph unicode="i" horiz-adv-x="526" d="M154 1362v8q0 43 30.5 74t73.5 31h12q43 0 74 -31t31 -74v-8q0 -43 -31 -74t-74 -31h-12q-43 0 -73.5 31t-30.5 74zM170 82v879q0 40 26.5 67t66.5 27t66.5 -27t26.5 -67v-879q0 -39 -26.5 -65.5t-66.5 -26.5t-66.5 26.5t-26.5 65.5z" />
+<glyph unicode="j" horiz-adv-x="526" d="M-94 -399q0 31 21.5 54t56.5 23l61 -6q63 0 84 17q41 27 41 104v1165q0 41 26.5 68t66.5 27t66.5 -27t26.5 -68v-1169q0 -199 -143 -260q-51 -20 -125 -21q-74 0 -128 17.5t-54 75.5zM154 1362v8q0 43 30.5 74t73.5 31h12q43 0 74 -31t31 -74v-8q0 -43 -31 -74t-74 -31 h-12q-43 0 -73.5 31t-30.5 74z" />
+<glyph unicode="k" horiz-adv-x="1118" d="M162 82v1329q0 39 26.5 66.5t65.5 27.5t66.5 -27.5t27.5 -66.5v-838l488 451q33 27 73.5 27t59 -30t18.5 -50q0 -45 -35 -80l-295 -264l371 -492q21 -28 21 -63q0 -34 -27 -58t-59 -24q-49 0 -84 39l-353 479l-178 -162v-264q0 -39 -27.5 -65.5t-66.5 -26.5t-65.5 26.5 t-26.5 65.5z" />
+<glyph unicode="l" horiz-adv-x="542" d="M178 82v1329q0 41 26.5 67.5t66.5 26.5t67 -26.5t27 -67.5v-1329q0 -39 -27 -65.5t-67 -26.5t-66.5 26.5t-26.5 65.5z" />
+<glyph unicode="m" horiz-adv-x="1882" d="M162 82v879q0 39 26.5 66.5t65.5 27.5t66.5 -28t27.5 -66v-84q125 188 348 188q111 0 201 -66q74 -51 113 -145q57 90 112 127q117 84 264 84q166 0 261 -127q82 -109 82 -266v-590q0 -39 -28 -65.5t-67 -26.5t-65.5 26.5t-26.5 65.5v553q0 129 -46 193.5t-163 64.5 q-180 0 -295 -197v-614q0 -39 -27.5 -65.5t-66.5 -26.5t-65.5 26.5t-26.5 65.5v553q0 129 -46 193.5t-163 64.5q-180 0 -295 -197v-614q0 -39 -27.5 -65.5t-66.5 -26.5t-65.5 26.5t-26.5 65.5z" />
+<glyph unicode="n" horiz-adv-x="1247" d="M162 82v879q0 41 26.5 67.5t65.5 26.5t66.5 -27t27.5 -67v-84q82 86 141 120q117 68 222.5 68t173 -32t114.5 -87q96 -113 97 -282v-582q0 -39 -28 -65.5t-67 -26.5t-65.5 26.5t-26.5 65.5v561q0 117 -52 183.5t-173 66.5q-180 0 -336 -197v-614q0 -39 -27.5 -65.5 t-66.5 -26.5t-65.5 26.5t-26.5 65.5z" />
+<glyph unicode="o" horiz-adv-x="1245" d="M98 522q0 244 144 393q141 150 381 150q238 0 381 -150q143 -152 143 -393q0 -242 -143 -393q-142 -149 -378 -149h-3q-240 0 -381 149q-143 150 -144 393zM316 350q30 -72 78 -116t108.5 -64t119 -20t119 20t109.5 63q111 100 111 291q0 184 -111 287q-92 84 -227 84 q-221 0 -308 -199q-31 -71 -31 -170q1 -103 32 -176z" />
+<glyph unicode="p" horiz-adv-x="1292" d="M162 -387v1350q0 39 26.5 65.5t66.5 26.5t66.5 -27t26.5 -65v-54q152 156 350.5 156t339.5 -141q156 -156 156 -402q0 -250 -156 -403q-143 -139 -340.5 -139t-349.5 155v-522q0 -41 -26.5 -67.5t-66.5 -26.5t-66.5 26.5t-26.5 67.5zM348 307q138 -153 322 -153h2 q233 0 311 208q25 70 25 160q0 176 -95 277q-90 92 -241 92q-184 0 -324 -154v-430z" />
+<glyph unicode="q" horiz-adv-x="1292" d="M98 522q0 246 156 402q141 141 340 141t350 -156v54q0 39 26.5 65.5t66.5 26.5t66.5 -27t26.5 -65v-1350q0 -41 -26.5 -67.5t-66.5 -26.5t-66.5 26.5t-26.5 67.5v522q-151 -155 -347 -155h-3q-197 0 -340 139q-156 154 -156 403zM285 522q0 -176 96 -276q88 -92 240 -92 q184 0 323 153v430q-139 154 -323 154q-233 0 -310 -209q-26 -68 -26 -154v-6z" />
+<glyph unicode="r" horiz-adv-x="792" d="M162 82v879q0 39 26.5 66.5t65.5 27.5t66.5 -28t27.5 -66v-89q143 193 322 193h10q39 0 64.5 -26.5t25.5 -66.5t-26.5 -63.5t-67.5 -23.5h-10q-102 0 -183.5 -50.5t-134.5 -129.5v-623q0 -39 -27.5 -65.5t-66.5 -26.5t-65.5 26.5t-26.5 65.5z" />
+<glyph unicode="s" horiz-adv-x="983" d="M98 133.5q0 36.5 22.5 62t49.5 25.5t63 -16q120 -53 261 -53q227 0 227 145q0 45 -45 68.5t-113.5 42t-148.5 38t-148.5 54.5t-114 91t-45.5 138t25 141.5t74 102.5q109 92 301 92q154 0 297 -51q29 -10 44 -33t15 -50.5t-23.5 -52t-46 -24.5t-55.5 10q-98 31 -214.5 31 t-177 -41t-60.5 -98.5t46 -85t113.5 -46t148.5 -37t148 -50.5q160 -82 160 -254q0 -131 -98 -213q-106 -90 -297 -90q-207 0 -373 92q-35 25 -35 61.5z" />
+<glyph unicode="t" horiz-adv-x="786" d="M45 924q0 18 18 34l279 273q18 18 34.5 18t28 -12t11.5 -29v-164h231q35 0 57.5 -22.5t22.5 -56.5q0 -35 -22.5 -57.5t-57.5 -22.5h-231v-619q0 -78 47 -106q27 -16 81 -16q3 0 5 -1q51 -1 73 9q24 10 51 10t49.5 -20.5t22.5 -61.5t-40 -60q-87 -41 -149 -41l-2 1 q-62 0 -113.5 6t-98.5 34q-113 66 -113 230v635h-145q-39 0 -39 39z" />
+<glyph unicode="u" horiz-adv-x="1249" d="M154 381v582q0 39 27.5 65.5t66.5 26.5t65.5 -27t26.5 -65v-562q0 -117 52 -183t173 -66q180 0 336 196v615q0 39 27.5 65.5t66.5 26.5t65.5 -27t26.5 -65v-879q0 -41 -26.5 -67.5t-65.5 -26.5t-66.5 26.5t-27.5 67.5v84q-82 -86 -141 -121q-116 -68 -221 -68l-1 1 q-106 0 -173.5 31.5t-114.5 86.5q-96 113 -96 283z" />
+<glyph unicode="v" horiz-adv-x="1085" d="M53 971q0 28 26.5 56t59.5 28q66 0 90 -54l314 -794l313 794q25 53 90 54q33 0 59.5 -28t26.5 -52q0 -33 -10 -57l-356 -852q-14 -31 -44 -53.5t-69 -22.5h-21q-39 0 -68.5 22.5t-43.5 53.5l-357 852q-10 25 -10 53z" />
+<glyph unicode="w" horiz-adv-x="1607" d="M51 973.5q0 27.5 26.5 54.5t61.5 27q72 0 88 -56l240 -788l238 770q10 33 37.5 53.5t62.5 20.5t62.5 -20.5t37.5 -53.5l238 -770l239 788q16 55 88 56q35 0 62 -27t27 -54.5t-7 -45.5l-290 -852q-12 -35 -45 -60.5t-74 -25.5t-74 25.5t-47 62.5l-217 678l-217 -678 q-14 -37 -47 -62.5t-74 -25.5t-74 25.5t-45 60.5l-291 852q-6 18 -6 45.5z" />
+<glyph unicode="x" horiz-adv-x="1110" d="M104 969q0 37 27 61.5t71 24.5t68 -35l287 -354l285 354q25 35 68.5 35t70.5 -25.5t27 -59.5t-21 -61l-323 -381l319 -385q23 -27 23 -60.5t-24 -63t-70 -29.5t-72 37l-291 348l-275 -344q-31 -41 -75.5 -41t-68.5 25.5t-24 62.5t21 63l317 375l-317 387q-23 29 -23 66z " />
+<glyph unicode="y" horiz-adv-x="1091" d="M49 970.5q0 28.5 26.5 56.5t59.5 28q68 0 92 -58l316 -782l321 778q27 61 86 62q39 0 65.5 -28t26.5 -57.5t-6 -43.5l-559 -1344q-27 -63 -86 -63q-37 0 -62.5 26.5t-25.5 53t6 43.5l133 342l-385 938q-8 20 -8 48.5z" />
+<glyph unicode="z" horiz-adv-x="1021" d="M80 105.5q0 50.5 33 87.5l589 677h-518q-37 0 -61.5 25t-24.5 61q0 37 24.5 62.5t61.5 25.5h621q53 0 86 -31.5t33 -81.5t-29 -85l-573 -672h526q37 0 62.5 -25.5t25.5 -62.5t-25.5 -61.5t-62.5 -24.5h-639q-53 0 -91 27.5t-38 78z" />
+<glyph unicode="{" horiz-adv-x="704" d="M6 629q0 70 68.5 82t106.5 29.5t57 37.5q27 33 26 99v432q0 201 174 235q51 10 113 10h24q29 0 50.5 -21.5t21.5 -49.5q0 -29 -21.5 -50.5t-50.5 -21.5h-30q-111 0 -119 -59q-2 -14 -2 -27v-455q0 -173 -184 -241q184 -68 184 -242v-455q0 -39 14 -53q29 -33 107 -33h30 q29 0 50.5 -21.5t21.5 -49.5q0 -29 -21.5 -50.5t-50.5 -21.5h-24q-137 0 -205 47q-82 59 -82 199v432q0 66 -22 92q-43 51 -166 74q-70 12 -70 82z" />
+<glyph unicode="|" horiz-adv-x="518" d="M176 -319v1753q0 35 23.5 59.5t58.5 24.5t59.5 -25t24.5 -59v-1753q0 -35 -24.5 -58.5t-59.5 -23.5t-58.5 23.5t-23.5 58.5z" />
+<glyph unicode="}" horiz-adv-x="704" d="M57 -225q0 29 21.5 50t50.5 21h31q111 0 119 60q2 14 2 26v455q0 174 184 242q-184 68 -184 241v455q0 39 -15 53q-29 33 -106 33h-31q-29 0 -50.5 21.5t-21.5 50.5t21.5 50t50.5 21h25q137 0 204 -47q82 -59 82 -198v-432q0 -66 23 -93q43 -51 166 -73q70 -12 69 -82 q0 -70 -68.5 -82t-106.5 -29.5t-56 -38.5q-27 -33 -27 -98v-432q0 -201 -174 -236q-51 -10 -112 -10h-25q-29 0 -50.5 21.5t-21.5 50.5z" />
+<glyph unicode="~" horiz-adv-x="1306" d="M152 494.5q0 35.5 20.5 84t56.5 85.5q82 88 173.5 88t160 -25t129 -53.5t115.5 -53t102 -24.5t68.5 9t36 24.5t24 38t24.5 52.5t44 30q57 0 57 -48q0 -8 -2 -16q-25 -135 -95.5 -199.5t-158.5 -64.5t-155.5 24.5t-128 53t-115.5 53.5t-115 25q-106 0 -139 -111 q-10 -39 -41 -39t-46 15.5t-15 51z" />
+<glyph unicode="&#xa1;" horiz-adv-x="530" d="M148 930.5q0 -50.5 36 -86.5t86 -36t86 36t36 86.5t-36 86t-86 35.5t-86 -35.5t-36 -86zM162 -86v-203q0 -45 31 -76t76 -31t74.5 31t29.5 76v203l-37 675q-4 60 -67 60q-66 0 -70 -60z" />
+<glyph unicode="&#xa2;" horiz-adv-x="1128" d="M90 522q0 248 164 400q76 69 175 106t182 37t132 -8l60 174q14 39 48 39t49 -18.5t15 -34t-4 -27.5l-55 -164q63 -23 115 -59q41 -27 41 -64t-22.5 -63.5t-45.5 -26.5q-35 0 -55 12l-88 41l-242 -704q39 -8 106.5 -8t119 18t83.5 37q43 23 71 22.5t50.5 -27t22.5 -63.5 t-47 -67q-145 -94 -328 -94q-66 0 -135 16l-72 -211q-12 -37 -46 -37t-50.5 17.5t-16.5 31.5q0 23 7 35l67 199q-133 59 -217 184t-84 307zM276 522q0 -229 175 -321l235 688q-8 2 -16 2h-17q-180 0 -278.5 -101.5t-98.5 -267.5z" />
+<glyph unicode="&#xa3;" horiz-adv-x="1236" d="M80 674q0 20 12 33.5t33 13.5h197q-23 70 -44.5 142.5t-21.5 168.5t36 174t101 133q137 111 361 111q154 0 295 -59q61 -25 61 -82q0 -35 -23.5 -60.5t-48.5 -25.5q-37 0 -71 12q-98 35 -199.5 35t-163 -20.5t-96.5 -53.5q-66 -61 -66 -150.5t25 -167t47 -157.5h363 q20 0 33.5 -13.5t13.5 -33.5t-13.5 -32.5t-33.5 -12.5h-342q8 -41 8 -94q0 -158 -86 -293l51 2q78 0 166 -29t135 -42t92 -13q72 0 107 12q55 18 77.5 18t47 -23.5t24.5 -64.5q0 -70 -149 -108q-55 -14 -118 -14t-110 14t-92 31q-115 47 -192 47q-127 0 -232 -70 q-23 -16 -50.5 -16t-50 21.5t-22.5 55t31 61.5t64.5 71t60.5 96q61 119 61 231q0 53 -12 107h-221q-45 0 -45 45z" />
+<glyph unicode="&#xa4;" horiz-adv-x="1368" d="M135 242q0 31 23 53l133 133q-92 131 -92 287t92 286l-133 134q-23 23 -23 53q0 31 20.5 53.5t45.5 22.5q37 0 63 -23l135 -133q127 92 285 92t285 -92l135 133q27 23 57.5 23t51 -22.5t20.5 -53.5t-23 -53l-133 -134q92 -131 92 -286q0 -156 -92 -287l133 -133 q23 -23 23 -53q0 -31 -20.5 -53.5t-45.5 -22.5q-37 0 -63 22l-135 134q-127 -93 -285 -93t-285 93l-135 -134q-27 -23 -57.5 -22.5t-51 23t-20.5 53.5zM365 715q0 -131 94 -225.5t225 -94.5t225.5 94.5t94.5 225.5t-94.5 225t-225.5 94t-225 -94t-94 -225z" />
+<glyph unicode="&#xa5;" horiz-adv-x="1347" d="M133.5 1370.5q-0.5 34.5 28 61t66.5 26.5t57.5 -16.5t33.5 -40.5l355 -621l354 621q33 57 81 57t76.5 -26.5t28.5 -61.5t-16 -61l-344 -561h201q33 0 54 -23t21 -55q0 -33 -20 -54.5t-55 -21.5h-289v-186h289q33 0 54 -23t21 -55q0 -33 -20 -54.5t-55 -21.5h-289v-174 q0 -39 -27.5 -65.5t-64.5 -26.5t-64.5 26.5t-27.5 65.5v174h-289q-35 0 -55.5 21.5t-20.5 54.5t21.5 55.5t54.5 22.5h289v186h-289q-35 0 -55.5 21.5t-20.5 54.5t21.5 55.5t54.5 22.5h201l-344 561q-16 27 -16.5 61.5z" />
+<glyph unicode="&#xa7;" horiz-adv-x="1083" d="M96 -57.5q0 41.5 22.5 65t45.5 23.5q25 0 55 -13q115 -57 285 -57q231 0 231 143q0 49 -46 83t-114.5 63t-148.5 58.5t-147 72.5q-162 98 -162 260q0 152 125 223q36 23 75 35q-131 94 -131 248q0 131 101 213q104 90 285.5 90t316.5 -55q55 -25 55 -80 q0 -33 -25.5 -57.5t-50 -24.5t-57.5 12q-84 33 -217 33q-231 0 -232 -143q0 -51 46.5 -84t115 -61.5t148.5 -58.5t147 -73q162 -100 162 -260q0 -152 -127 -225q-37 -23 -76 -35q133 -92 133 -246q0 -131 -100 -215q-104 -88 -295 -88q-240 0 -387 92q-33 20 -33 61.5z M289 653q0 -88 119 -147q53 -27 117.5 -50.5t129.5 -49.5q154 39 154 180q0 86 -121 147q-51 27 -118 49.5t-130 51.5q-152 -39 -151 -181z" />
+<glyph unicode="&#xa8;" horiz-adv-x="819" d="M129 1282q0 43 30.5 73.5t73.5 30.5t74 -30.5t31 -73.5t-31 -73.5t-74 -30.5t-73.5 30.5t-30.5 73.5zM475 1282q0 43 31 73.5t74 30.5t73.5 -30.5t30.5 -73.5t-30.5 -73.5t-73.5 -30.5t-74 30.5t-31 73.5z" />
+<glyph unicode="&#xa9;" horiz-adv-x="1677" d="M104 715q0 152 57.5 285t158 233t234.5 157.5t286 57.5t286 -57.5t233 -157.5t157.5 -233.5t58.5 -284.5q0 -152 -58.5 -285t-157.5 -233.5t-233 -157.5t-286 -57t-286 57t-234.5 157.5t-158 233.5t-57.5 285zM211 715q0 -258 184.5 -442.5t442.5 -184.5q262 0 446 184.5 t184 442.5t-184 442t-444 184q-131 0 -245 -49t-200 -135q-184 -184 -184 -442zM457 715q0 188 109.5 301.5t285.5 113.5q123 0 210 -57t136 -158q6 -12 6 -33.5t-18.5 -40t-41 -18.5t-37.5 8.5t-41 52.5t-79 83t-127 39t-122 -24t-79 -64q-66 -80 -65 -203q0 -123 65 -203 q68 -88 193 -88q143 0 223 137q27 45 59.5 45t51 -18.5t18.5 -40t-6 -33.5q-49 -100 -136 -157.5t-192.5 -57.5t-178.5 29.5t-126 85.5q-109 113 -108 301z" />
+<glyph unicode="&#xaa;" horiz-adv-x="993" d="M135 526q0 23 17.5 40.5t40.5 17.5h579q23 0 40 -17.5t17 -40.5t-17 -40t-40 -17h-579q-23 0 -40.5 17.5t-17.5 39.5zM166 914.5q0 101.5 81 160t249 58.5h155v4q0 94 -44 134t-115 40q-113 0 -201 -33q-12 -4 -30.5 -4t-37 19.5t-18.5 41.5q0 47 49 66q125 49 224.5 49 t155.5 -24.5t93 -65.5q72 -76 72 -195v-391q0 -31 -21.5 -52.5t-52.5 -21.5t-52.5 21.5t-21.5 52.5v19q-88 -98 -248 -99q-96 0 -165 60q-72 59 -72 160.5zM313 926q0 -41 30 -70t99 -29q123 0 209 97v98h-139q-199 0 -199 -96z" />
+<glyph unicode="&#xab;" horiz-adv-x="1198" d="M111 522q0 51 36 88l336 371q18 23 55 23t60 -23t23 -56.5t-19 -54.5l-328 -348l328 -348q18 -23 18.5 -55.5t-22.5 -55t-59.5 -22.5t-55.5 22l-336 371q-37 37 -36 88zM537 522q0 51 36 88l336 371q18 23 55 23t60 -23t23 -56.5t-19 -54.5l-328 -348l328 -348 q18 -23 18.5 -55.5t-22.5 -55t-59.5 -22.5t-55.5 22l-336 371q-37 37 -36 88z" />
+<glyph unicode="&#xac;" horiz-adv-x="1185" d="M150 711q0 31 21.5 52t51.5 21h707q35 0 60.5 -25.5t25.5 -60.5v-278q0 -33 -22.5 -54.5t-55.5 -21.5t-54.5 21.5t-21.5 54.5v217h-639q-31 0 -52 21.5t-21 52.5z" />
+<glyph unicode="&#xad;" horiz-adv-x="835" d="M141 573q0 35 23.5 59.5t58.5 24.5h387q35 0 59.5 -24.5t24.5 -59.5t-24.5 -58t-59.5 -23h-387q-35 0 -58.5 23.5t-23.5 57.5z" />
+<glyph unicode="&#xae;" horiz-adv-x="1677" d="M104 715q0 152 57.5 286t158 233t234.5 157.5t286 58.5t286 -58.5t233 -157.5t157.5 -233.5t58.5 -285.5q0 -152 -58.5 -286t-157.5 -234.5t-233.5 -157.5t-285.5 -57q-152 0 -286 57t-234.5 157.5t-158 234.5t-57.5 286zM211 717q0 -262 184.5 -446.5t444.5 -184.5 q129 0 243.5 49t200.5 135q184 184 184 447q0 258 -184 442t-446 184q-258 0 -442.5 -184t-184.5 -442zM535 365v663q0 39 26.5 66.5t65.5 27.5h245q168 0 245 -70.5t77 -161.5t-46 -140.5t-106 -71.5q49 -16 95.5 -75.5t46.5 -180.5v-55q0 -29 -20.5 -49.5t-49.5 -20.5 t-49.5 20.5t-20.5 49.5v36q0 88 -16 127q-37 82 -133 82h-223v-247q0 -29 -20.5 -48.5t-49.5 -19.5t-48 19.5t-19 48.5zM672 733h194q86 0 139.5 35t53.5 99.5t-42 100.5t-155 36h-190v-271z" />
+<glyph unicode="&#xaf;" horiz-adv-x="638" d="M16 1266q0 27 17.5 44t44.5 17h479q27 0 44 -17.5t17 -43.5q0 -27 -17 -44.5t-44 -17.5h-479q-27 0 -44.5 17.5t-17.5 44.5z" />
+<glyph unicode="&#xb0;" horiz-adv-x="774" d="M106 1169q0 113 82 199q80 82 199 82q117 0 199 -82t82 -199q0 -119 -82 -198q-86 -82 -199 -82q-115 0 -198 83t-83 197zM213 1169q0 -72 51 -123t123 -51t123 51.5t51 122.5q0 72 -51 123t-123 51t-123 -51t-51 -123z" />
+<glyph unicode="&#xb1;" horiz-adv-x="1241" d="M127 78q0 35 21.5 57.5t56.5 22.5h829q35 0 57.5 -22.5t22.5 -57.5t-22.5 -56.5t-57.5 -21.5h-829q-35 0 -56.5 21.5t-21.5 56.5zM127 778q0 35 21.5 57.5t56.5 22.5h336v324q0 35 22.5 57.5t57.5 22.5t57 -22.5t22 -57.5v-324h334q35 0 57.5 -22.5t22.5 -57.5 t-22.5 -56.5t-57.5 -21.5h-334v-323q0 -35 -22.5 -57.5t-56.5 -22.5q-35 0 -57.5 22.5t-22.5 57.5v323h-336q-35 0 -56.5 21.5t-21.5 56.5z" />
+<glyph unicode="&#xb2;" horiz-adv-x="757" d="M78 1019q0 44 33.5 91t84 87t110 77t109.5 71.5t83.5 70.5t33.5 82t-35.5 82t-111.5 36q-121 0 -207 -45q-12 -6 -31.5 -6t-36 15t-16.5 46t37 53q104 61 241.5 61.5t213.5 -68t76 -171.5q0 -141 -195 -272q-51 -37 -100 -70q-121 -78 -148 -115h389q27 0 44.5 -17 t17.5 -44t-17.5 -43t-44.5 -16h-450q-35 0 -57.5 25.5t-22.5 69.5z" />
+<glyph unicode="&#xb3;" horiz-adv-x="757" d="M74 1012.5q0 29.5 18.5 47t32.5 17.5q18 0 41 -8q104 -31 176 -31q188 0 188 107q0 127 -229 127h-22q-27 0 -44.5 17.5t-17.5 43.5q0 27 17.5 44.5t44.5 17.5h10q215 0 215 118q0 78 -105 97q-29 6 -71 6q-82 0 -160 -39q-12 -6 -30.5 -6t-36 15.5t-17.5 44t43 52.5 q111 57 243 57.5t196.5 -63t64.5 -149.5t-42 -129t-85 -60q156 -47 155 -198q0 -156 -159 -211q-57 -18 -140 -19q-160 0 -251 52q-35 20 -35 49.5z" />
+<glyph unicode="&#xb4;" horiz-adv-x="491" d="M98 1210q0 31 15 45l104 185q20 39 62 39q82 0 81 -76q0 -29 -20 -51l-141 -168q-18 -23 -44 -23t-41.5 15.5t-15.5 33.5z" />
+<glyph unicode="&#xb5;" horiz-adv-x="1236" d="M172 -354v1317q0 39 27.5 65.5t66.5 26.5t65.5 -27t26.5 -65v-562q0 -117 52.5 -183t173.5 -66q180 0 336 196v615q0 39 27.5 65.5t66.5 26.5t65.5 -27t26.5 -65v-879q0 -41 -26.5 -67.5t-65.5 -26.5t-66.5 26.5t-27.5 67.5v84q-86 -92 -142 -123q-109 -66 -221.5 -65.5 t-198.5 55.5v-389q0 -39 -27.5 -65.5t-66.5 -26.5t-65.5 26.5t-26.5 65.5z" />
+<glyph unicode="&#xb6;" horiz-adv-x="1499" d="M80 903q0 219 153.5 373t372.5 154h721q35 0 58.5 -24t23.5 -58q0 -35 -23.5 -57.5t-58.5 -22.5h-94v-1645q0 -35 -23.5 -58.5t-58.5 -23.5t-57.5 23.5t-22.5 58.5v1645h-229v-1645q0 -35 -23.5 -58.5t-58.5 -23.5t-57.5 23.5t-22.5 58.5v754h-74q-219 0 -372.5 153.5 t-153.5 372.5z" />
+<glyph unicode="&#xb7;" horiz-adv-x="532" d="M141 578v12q0 47 34 81t81 34h20q48 0 81.5 -34t33.5 -81v-12q0 -47 -33.5 -81t-81.5 -34h-20q-47 0 -81 33.5t-34 81.5z" />
+<glyph unicode="&#xb8;" horiz-adv-x="628" d="M92 -365q0 41 39 41q8 0 21 -6q63 -35 120 -35q117 0 117 95q0 31 -21.5 47t-48.5 16q-49 0 -73 -12q-33 -16 -44.5 -16.5t-22.5 9t-11 25t8 27.5l131 209h86l-94 -164q33 8 86 8t97 -39t44 -104q0 -188 -227 -189q-98 0 -184 54q-23 10 -23 34z" />
+<glyph unicode="&#xb9;" horiz-adv-x="757" d="M160 1600.5q0 31.5 39 52.5l147 76q20 10 51 10t54.5 -25.5t23.5 -62.5v-607h103q26 0 43.5 -17t17.5 -44t-17.5 -43t-43.5 -16h-357q-27 0 -43 16t-16 43t16.5 44t42.5 17h123v543l-92 -45q-16 -8 -35.5 -8t-38 17.5t-18.5 49z" />
+<glyph unicode="&#xba;" horiz-adv-x="1052" d="M143 526q0 23 17.5 40.5t40.5 17.5h651q23 0 40 -17.5t17 -40.5t-17.5 -40t-39.5 -17h-651q-23 0 -40.5 17.5t-17.5 39.5zM162 1073q0 170 100 273q100 104 262 104q84 0 151.5 -27.5t115.5 -76.5q100 -102 100 -273q0 -170 -100 -274t-264.5 -104.5t-264.5 104.5 q-100 104 -100 274zM309 1075q0 -125 72 -192q57 -58 145 -58q137 0 197 136q20 47 20 114q0 121 -71 191q-57 55 -146 55q-86 0 -145 -55q-72 -68 -72 -191z" />
+<glyph unicode="&#xbb;" horiz-adv-x="1198" d="M152 119q0 33 18 55l328 348l-328 348q-18 20 -18 54t22.5 57t59 23t55.5 -23l336 -371q37 -37 37 -88t-37 -88l-336 -371q-18 -23 -55 -22.5t-59.5 23t-22.5 55.5zM578 119q0 33 18 55l328 348l-328 348q-18 20 -18 54t22.5 57t59 23t55.5 -23l336 -371q37 -37 36 -88 q0 -51 -36 -88l-336 -371q-18 -23 -55 -22.5t-59.5 23t-22.5 55.5z" />
+<glyph unicode="&#xbc;" horiz-adv-x="1925" d="M174 1311.5q0 31.5 39 52.5l147 76q20 10 51 10t54.5 -25.5t23.5 -62.5v-606h103q27 0 44 -17.5t17 -44.5t-17.5 -43t-43.5 -16h-356q-27 0 -43.5 16.5t-16.5 42.5q0 27 16.5 44.5t43.5 17.5h122v542l-92 -45q-16 -8 -35.5 -8t-38 17.5t-18.5 49zM467 13.5 q0 23.5 10 43.5l848 1397q18 29 52 29t54.5 -19.5t20.5 -43t-10 -44.5l-848 -1396q-18 -29 -52 -29t-54.5 19.5t-20.5 43zM1104 280.5q0 32.5 22 61.5l338 426q37 43 74 43h16q37 0 61.5 -25.5t24.5 -60.5v-408h74q27 0 44.5 -17t17.5 -44t-17.5 -43t-44.5 -16h-74v-142 q0 -29 -18 -47t-47 -18t-47.5 18.5t-18.5 46.5v142h-319q-35 0 -60.5 25.5t-25.5 58zM1249 317h260v332z" />
+<glyph unicode="&#xbd;" horiz-adv-x="1925" d="M162 1311.5q0 31.5 39 52.5l147 76q20 10 51 10t54.5 -25.5t23.5 -62.5v-606h103q27 0 44 -17.5t17 -44.5t-17.5 -43t-43.5 -16h-357q-27 0 -43 16.5t-16 42.5q0 27 16.5 44.5t42.5 17.5h123v542l-92 -45q-16 -8 -35.5 -8t-38 17.5t-18.5 49zM455 13.5q0 23.5 10 43.5 l848 1397q18 29 52 29t54.5 -19.5t20.5 -43t-10 -44.5l-848 -1396q-18 -29 -52 -29t-54.5 19.5t-20.5 43zM1180 95q0 44 33.5 91t84 87t109.5 77t109.5 72t84 70.5t33.5 82t-35.5 82t-111.5 35.5q-121 0 -207 -45q-12 -6 -31.5 -6t-36 15.5t-16.5 46t37 53.5 q104 61 241.5 61t213 -68.5t75.5 -170.5q0 -141 -194 -275q-51 -35 -101 -65q-121 -80 -147 -117h389q27 0 44.5 -17.5t17.5 -44.5t-17.5 -43t-44.5 -16h-450q-35 0 -57.5 25.5t-22.5 69.5z" />
+<glyph unicode="&#xbe;" horiz-adv-x="1925" d="M129 724q0 30 18.5 47t32.5 17q18 0 41 -6q104 -33 176 -32q188 0 189 106q0 127 -230 127h-22q-27 0 -44.5 17.5t-17.5 43.5q0 27 17.5 44.5t44.5 17.5h10q215 0 215 119q0 78 -104 98q-29 4 -70 4q-84 0 -162 -39q-12 -6 -30.5 -6t-36 15.5t-17.5 44t45 51.5 q109 59 241 59t196.5 -63.5t64.5 -149.5t-42 -129t-85 -59q156 -47 156 -199q0 -156 -160 -209q-57 -20 -139 -20q-160 0 -252 51q-35 20 -35 50zM496 13.5q0 23.5 10 43.5l848 1397q18 29 52 29t54.5 -19.5t20.5 -43t-11 -44.5l-847 -1396q-18 -29 -52 -29t-54.5 19.5 t-20.5 43zM1133 280.5q0 32.5 22 61.5l338 426q37 43 74 43h16q37 0 61.5 -25.5t24.5 -60.5v-408h74q27 0 44 -17t17 -44t-17.5 -43t-43.5 -16h-74v-142q0 -29 -18.5 -47t-46.5 -18q-29 0 -47.5 18.5t-18.5 46.5v142h-319q-35 0 -60.5 25.5t-25.5 58zM1278 317h260v332z" />
+<glyph unicode="&#xbf;" horiz-adv-x="999" d="M82 -19q0 184 193 326q113 84 162 164q29 47 28.5 97t27.5 72.5t64.5 22.5t62.5 -23.5t26 -56.5q0 -203 -191 -350q-123 -98 -155.5 -144.5t-32.5 -97.5q0 -223 292 -223q160 0 263 68q27 16 56.5 16t53 -23.5t23.5 -54.5q0 -51 -51 -82q-160 -98 -361 -98 q-211 0 -334 104q-127 106 -127 283zM437 930.5q0 50.5 35.5 86t86 35.5t86 -35.5t35.5 -86t-35.5 -86.5t-86 -36t-86 36t-35.5 86.5z" />
+<glyph unicode="&#xc0;" horiz-adv-x="1427" d="M53 70.5q0 27.5 10 52.5l523 1233q37 84 119 84h20q82 0 119 -84l522 -1233q10 -25 10 -52.5t-24.5 -54t-77.5 -26.5t-78 57l-133 320h-696l-134 -320q-25 -57 -78 -57t-77.5 26.5t-24.5 54zM438 537h553l-276 665zM526 1755q0 76 82 76q41 0 62 -39l104 -185 q14 -14 14 -38.5t-15 -40t-40.5 -15.5t-44.5 23l-141 168q-21 22 -21 51z" />
+<glyph unicode="&#xc1;" horiz-adv-x="1427" d="M53 70.5q0 27.5 10 52.5l523 1233q37 84 119 84h20q82 0 119 -84l522 -1233q10 -25 10 -52.5t-24.5 -54t-77.5 -26.5t-78 57l-133 320h-696l-134 -320q-25 -57 -78 -57t-77.5 26.5t-24.5 54zM438 537h553l-276 665zM639 1562q0 31 15 45l104 185q20 39 62 39q82 0 81 -76 q0 -29 -20 -51l-141 -168q-18 -23 -44 -23t-41.5 15.5t-15.5 33.5z" />
+<glyph unicode="&#xc2;" horiz-adv-x="1427" d="M53 70.5q0 27.5 10 52.5l523 1233q37 84 119 84h20q82 0 119 -84l522 -1233q10 -25 10 -52.5t-24.5 -54t-77.5 -26.5t-78 57l-133 320h-696l-134 -320q-25 -57 -78 -57t-77.5 26.5t-24.5 54zM438 537h553l-276 665zM438 1559.5v23.5t17 29l139 143q41 41 82 41h78 q41 0 82 -41l139 -143q16 -16 16 -40t-17.5 -42.5t-42 -18.5t-38.5 15l-178 151l-178 -151q-14 -14 -39 -14.5t-42.5 18t-17.5 30z" />
+<glyph unicode="&#xc3;" horiz-adv-x="1427" d="M53 70.5q0 27.5 10 52.5l523 1233q37 84 119 84h20q82 0 119 -84l522 -1233q10 -25 10 -52.5t-24.5 -54t-77.5 -26.5t-78 57l-133 320h-696l-134 -320q-25 -57 -78 -57t-77.5 26.5t-24.5 54zM387 1573.5q0 25.5 12 59.5t35 62q47 68 125 68q45 0 84 -15.5t76.5 -32.5 t75.5 -32.5t75 -15.5t53.5 14t24.5 35q18 49 53 49q43 0 47 -45q0 -72 -47 -131q-53 -63 -125 -63q-61 0 -131 33.5t-107.5 49t-72.5 15.5q-55 0 -84 -66q-10 -37 -47 -37q-18 0 -32.5 13.5t-14.5 39zM438 537h553l-276 665z" />
+<glyph unicode="&#xc4;" horiz-adv-x="1427" d="M53 70.5q0 27.5 10 52.5l523 1233q37 84 119 84h20q82 0 119 -84l522 -1233q10 -25 10 -52.5t-24.5 -54t-77.5 -26.5t-78 57l-133 320h-696l-134 -320q-25 -57 -78 -57t-77.5 26.5t-24.5 54zM438 537h553l-276 665zM438 1634q0 43 30.5 73.5t73.5 30.5t74 -30.5t31 -73.5 t-31 -73.5t-74 -30.5t-73.5 30.5t-30.5 73.5zM784 1634q0 43 31 73.5t74 30.5t73.5 -30.5t30.5 -73.5t-30.5 -73.5t-73.5 -30.5t-74 30.5t-31 73.5z" />
+<glyph unicode="&#xc5;" horiz-adv-x="1427" d="M53 70.5q0 27.5 10 52.5l523 1233q37 84 119 84h20q82 0 119 -84l522 -1233q10 -25 10 -52.5t-24.5 -54t-77.5 -26.5t-78 57l-133 320h-696l-134 -320q-25 -57 -78 -57t-77.5 26.5t-24.5 54zM438 537h553l-276 665zM522 1688q0 80 56.5 136t134.5 56q41 0 76.5 -15 t62.5 -40q55 -57 55 -137t-56.5 -136.5t-136 -56.5t-136 56.5t-56.5 136.5zM614 1688q0 -41 30 -70.5t71 -29.5t70.5 29.5t29.5 70.5t-29.5 70.5t-70.5 29.5t-71 -29.5t-30 -70.5z" />
+<glyph unicode="&#xc6;" horiz-adv-x="2129" d="M4 70q0 41 21 69l817 1239q37 51 94 52h999q37 0 62.5 -26t25.5 -63t-25.5 -61.5t-62.5 -24.5h-727v-452h654q37 0 62.5 -25.5t25.5 -62.5t-26 -61.5t-62 -24.5h-654v-455h727q37 0 62.5 -25.5t25.5 -62.5t-25.5 -61.5t-62.5 -24.5h-821q-39 0 -65.5 26.5t-26.5 65.5v275 h-631l-209 -324q-35 -53 -80 -53t-71.5 26.5t-26.5 53.5zM502 537h520v718h-51z" />
+<glyph unicode="&#xc7;" horiz-adv-x="1429" d="M115 715q0 338 204 538q199 197 512 197q152 0 261.5 -37t168 -68.5t70.5 -51t12 -49.5t-21.5 -53.5t-51 -23.5t-45.5 9q-82 43 -168 69.5t-214 26.5t-231.5 -43t-173.5 -119q-137 -150 -137 -395q0 -246 137 -396q150 -162 412 -161q121 0 207 26.5t135 52t78.5 25.5 t51 -23.5t21.5 -54.5q0 -55 -45 -78q-94 -53 -201.5 -88.5t-254.5 -37.5l-62 -109q33 8 86.5 8t97.5 -39t44 -104q0 -188 -228 -189q-98 0 -184 54q-23 10 -23 34q0 41 39 41q8 0 21 -6q64 -35 121 -35q117 0 116 95q0 31 -21.5 47t-47.5 16q-49 0 -74 -12 q-33 -16 -44 -16.5t-22.5 9t-11.5 25t8 27.5l99 158q-287 25 -461 217q-180 201 -180 514z" />
+<glyph unicode="&#xc8;" horiz-adv-x="1306" d="M199 92v1243q0 39 26.5 67t65.5 28h821q37 0 62.5 -26t25.5 -63t-25.5 -61.5t-62.5 -24.5h-727v-452h653q37 0 62.5 -25.5t25.5 -62.5t-25.5 -61.5t-62.5 -24.5h-653v-455h727q37 0 62.5 -25.5t25.5 -62.5t-25.5 -61.5t-62.5 -24.5h-821q-39 0 -65.5 26.5t-26.5 65.5z M516 1755q0 76 82 76q41 0 62 -39l104 -185q14 -14 14 -38.5t-15 -40t-40.5 -15.5t-44.5 23l-141 168q-21 22 -21 51z" />
+<glyph unicode="&#xc9;" horiz-adv-x="1306" d="M199 92v1243q0 39 26.5 67t65.5 28h821q37 0 62.5 -26t25.5 -63t-25.5 -61.5t-62.5 -24.5h-727v-452h653q37 0 62.5 -25.5t25.5 -62.5t-25.5 -61.5t-62.5 -24.5h-653v-455h727q37 0 62.5 -25.5t25.5 -62.5t-25.5 -61.5t-62.5 -24.5h-821q-39 0 -65.5 26.5t-26.5 65.5z M618 1562q0 31 15 45l104 185q20 39 62 39q82 0 81 -76q0 -29 -20 -51l-141 -168q-18 -23 -44 -23t-41.5 15.5t-15.5 33.5z" />
+<glyph unicode="&#xca;" horiz-adv-x="1306" d="M199 92v1243q0 39 26.5 67t65.5 28h821q37 0 62.5 -26t25.5 -63t-25.5 -61.5t-62.5 -24.5h-727v-452h653q37 0 62.5 -25.5t25.5 -62.5t-25.5 -61.5t-62.5 -24.5h-653v-455h727q37 0 62.5 -25.5t25.5 -62.5t-25.5 -61.5t-62.5 -24.5h-821q-39 0 -65.5 26.5t-26.5 65.5z M438 1559.5v23.5t17 29l139 143q41 41 82 41h78q41 0 82 -41l139 -143q16 -16 16 -40t-17.5 -42.5t-42 -18.5t-38.5 15l-178 151l-178 -151q-14 -14 -39 -14.5t-42.5 18t-17.5 30z" />
+<glyph unicode="&#xcb;" horiz-adv-x="1306" d="M199 92v1243q0 39 26.5 67t65.5 28h821q37 0 62.5 -26t25.5 -63t-25.5 -61.5t-62.5 -24.5h-727v-452h653q37 0 62.5 -25.5t25.5 -62.5t-25.5 -61.5t-62.5 -24.5h-653v-455h727q37 0 62.5 -25.5t25.5 -62.5t-25.5 -61.5t-62.5 -24.5h-821q-39 0 -65.5 26.5t-26.5 65.5z M416 1634q0 43 30.5 73.5t73.5 30.5t74 -30.5t31 -73.5t-31 -73.5t-74 -30.5t-73.5 30.5t-30.5 73.5zM762 1634q0 43 31 73.5t74 30.5t73.5 -30.5t30.5 -73.5t-30.5 -73.5t-73.5 -30.5t-74 30.5t-31 73.5z" />
+<glyph unicode="&#xcc;" horiz-adv-x="583" d="M116 1755q0 76 82 76q41 0 62 -39l104 -185q14 -14 14 -38.5t-15 -40t-40.5 -15.5t-44.5 23l-141 168q-21 22 -21 51zM199 82v1264q0 39 26.5 66.5t65.5 27.5t66.5 -28t27.5 -66v-1264q0 -39 -27.5 -65.5t-66.5 -26.5t-65.5 26.5t-26.5 65.5z" />
+<glyph unicode="&#xcd;" horiz-adv-x="583" d="M199 82v1264q0 39 26.5 66.5t65.5 27.5t66.5 -28t27.5 -66v-1264q0 -39 -27.5 -65.5t-66.5 -26.5t-65.5 26.5t-26.5 65.5zM207 1562q0 31 15 45l104 185q20 39 62 39q82 0 81 -76q0 -29 -20 -51l-141 -168q-18 -23 -44 -23t-41.5 15.5t-15.5 33.5z" />
+<glyph unicode="&#xce;" horiz-adv-x="583" d="M16 1559.5v23.5t17 29l139 143q41 41 82 41h78q41 0 82 -41l139 -143q16 -16 16 -40t-17.5 -42.5t-42 -18.5t-38.5 15l-178 151l-178 -151q-14 -14 -39 -14.5t-42.5 18t-17.5 30zM199 82v1264q0 39 26.5 66.5t65.5 27.5t66.5 -28t27.5 -66v-1264q0 -39 -27.5 -65.5 t-66.5 -26.5t-65.5 26.5t-26.5 65.5z" />
+<glyph unicode="&#xcf;" horiz-adv-x="583" d="M16 1634q0 43 30.5 73.5t73.5 30.5t74 -30.5t31 -73.5t-31 -73.5t-74 -30.5t-73.5 30.5t-30.5 73.5zM199 82v1264q0 39 26.5 66.5t65.5 27.5t66.5 -28t27.5 -66v-1264q0 -39 -27.5 -65.5t-66.5 -26.5t-65.5 26.5t-26.5 65.5zM362 1634q0 43 31 73.5t74 30.5t73.5 -30.5 t30.5 -73.5t-30.5 -73.5t-73.5 -30.5t-74 30.5t-31 73.5z" />
+<glyph unicode="&#xd0;" horiz-adv-x="1550" d="M35 713q0 29 19.5 49t47.5 20h111v553q0 39 26.5 67t65.5 28h412q342 0 545 -230q90 -100 134 -228t44 -257t-44 -257t-134 -229q-203 -229 -545 -229h-412q-39 0 -65.5 26.5t-26.5 65.5v553h-111q-29 0 -48 19.5t-19 48.5zM399 174h295q254 0 408 150t153.5 391 t-153.5 391q-154 150 -408 149h-295v-473h240q29 0 49.5 -20.5t20.5 -48.5q0 -29 -20.5 -48.5t-49.5 -19.5h-240v-471z" />
+<glyph unicode="&#xd1;" horiz-adv-x="1644" d="M199 82v1223q0 55 38.5 95t94.5 40h26q63 0 113 -62l789 -1138v1106q0 39 26.5 66.5t65.5 27.5t66.5 -28t27.5 -66v-1223q0 -55 -40 -94t-95 -39h-25q-68 0 -108 55l-793 1145v-1108q0 -39 -27.5 -65.5t-66.5 -26.5t-65.5 26.5t-26.5 65.5zM502 1573.5q0 25.5 12 59.5 t35 62q47 68 125 68q45 0 84 -15.5t76.5 -32.5t75.5 -32.5t75 -15.5t53.5 14t24.5 35q18 49 53 49q43 0 47 -45q0 -72 -47 -131q-53 -63 -125 -63q-61 0 -131 33.5t-107.5 49t-72.5 15.5q-55 0 -84 -66q-10 -37 -47 -37q-18 0 -32.5 13.5t-14.5 39z" />
+<glyph unicode="&#xd2;" horiz-adv-x="1660" d="M113 715q4 324 198 528q194 207 520 207q324 0 521 -207q190 -203 198 -528q-8 -326 -198 -529q-197 -207 -521 -206q-326 0 -520 206q-195 205 -198 529zM299 715q0 -244 139 -400q143 -161 393 -161t394 161q139 156 139 400t-139 399q-143 162 -394 162 q-250 0 -393 -162q-139 -156 -139 -399zM659 1755q0 76 82 76q41 0 62 -39l104 -185q14 -14 14 -38.5t-15 -40t-40.5 -15.5t-44.5 23l-141 168q-21 22 -21 51z" />
+<glyph unicode="&#xd3;" horiz-adv-x="1660" d="M113 715q4 324 198 528q194 207 520 207q324 0 521 -207q190 -203 198 -528q-8 -326 -198 -529q-197 -207 -521 -206q-326 0 -520 206q-195 205 -198 529zM299 715q0 -244 139 -400q143 -161 393 -161t394 161q139 156 139 400t-139 399q-143 162 -394 162 q-250 0 -393 -162q-139 -156 -139 -399zM741 1562q0 31 15 45l104 185q20 39 62 39q82 0 81 -76q0 -29 -20 -51l-141 -168q-18 -23 -44 -23t-41.5 15.5t-15.5 33.5z" />
+<glyph unicode="&#xd4;" horiz-adv-x="1660" d="M113 715q4 324 198 528q194 207 520 207q324 0 521 -207q190 -203 198 -528q-8 -326 -198 -529q-197 -207 -521 -206q-326 0 -520 206q-195 205 -198 529zM299 715q0 -244 139 -400q143 -161 393 -161t394 161q139 156 139 400t-139 399q-143 162 -394 162 q-250 0 -393 -162q-139 -156 -139 -399zM555 1559.5v23.5t17 29l139 143q41 41 82 41h78q41 0 82 -41l139 -143q16 -16 16 -40t-17.5 -42.5t-42 -18.5t-38.5 15l-178 151l-178 -151q-14 -14 -39 -14.5t-42.5 18t-17.5 30z" />
+<glyph unicode="&#xd5;" horiz-adv-x="1660" d="M113 715q4 324 198 528q194 207 520 207q324 0 521 -207q190 -203 198 -528q-8 -326 -198 -529q-197 -207 -521 -206q-326 0 -520 206q-195 205 -198 529zM299 715q0 -244 139 -400q143 -161 393 -161t394 161q139 156 139 400t-139 399q-143 162 -394 162 q-250 0 -393 -162q-139 -156 -139 -399zM502 1573.5q0 25.5 12 59.5t35 62q47 68 125 68q45 0 84 -15.5t76.5 -32.5t75.5 -32.5t75 -15.5t53.5 14t24.5 35q18 49 53 49q43 0 47 -45q0 -72 -47 -131q-53 -63 -125 -63q-61 0 -131 33.5t-107.5 49t-72.5 15.5q-55 0 -84 -66 q-10 -37 -47 -37q-18 0 -32.5 13.5t-14.5 39z" />
+<glyph unicode="&#xd6;" horiz-adv-x="1660" d="M113 715q4 324 198 528q194 207 520 207q324 0 521 -207q190 -203 198 -528q-8 -326 -198 -529q-197 -207 -521 -206q-326 0 -520 206q-195 205 -198 529zM299 715q0 -244 139 -400q143 -161 393 -161t394 161q139 156 139 400t-139 399q-143 162 -394 162 q-250 0 -393 -162q-139 -156 -139 -399zM555 1634q0 43 30.5 73.5t73.5 30.5t74 -30.5t31 -73.5t-31 -73.5t-74 -30.5t-73.5 30.5t-30.5 73.5zM901 1634q0 43 31 73.5t74 30.5t73.5 -30.5t30.5 -73.5t-30.5 -73.5t-73.5 -30.5t-74 30.5t-31 73.5z" />
+<glyph unicode="&#xd7;" horiz-adv-x="1153" d="M121 152q0 31 24 55l322 321l-322 322q-25 25 -24 55q0 31 21.5 54.5t54 23.5t57.5 -25l321 -321l322 321q25 25 57.5 25t54 -23.5t21.5 -54.5t-24 -55l-322 -322l322 -321q25 -25 24 -55q0 -31 -21.5 -54.5t-54 -23.5t-57.5 24l-322 322l-321 -322q-25 -25 -57.5 -24.5 t-54 24t-21.5 54.5z" />
+<glyph unicode="&#xd8;" horiz-adv-x="1660" d="M113 715q4 324 198 528q195 207 520 207q215 0 386 -100l81 118q14 20 40 20.5t40.5 -14t14.5 -33t-13 -36.5l-80 -115q117 -98 181.5 -245.5t68.5 -329.5q-8 -326 -198 -529q-197 -207 -521 -206q-219 0 -382 96l-82 -117q-14 -20 -40 -20t-40.5 14t-14.5 32.5t13 37.5 l80 112q-244 201 -252 580zM299 715q0 -272 170 -430l643 919q-123 72 -265 72t-241.5 -43t-167.5 -119q-139 -156 -139 -399zM551 223q121 -70 264 -69.5t242.5 43.5t167.5 118q139 156 139 400q0 268 -168 428z" />
+<glyph unicode="&#xd9;" horiz-adv-x="1552" d="M188 537v809q0 39 27 66.5t66 27.5t66.5 -28t27.5 -66v-816q0 -182 125 -286q115 -94 276 -94q162 0 277 94q125 104 125 286v816q0 39 26.5 66.5t65.5 27.5t66.5 -28t27.5 -66v-809q0 -268 -193 -422q-166 -135 -395 -135q-233 0 -397 135q-190 154 -191 422zM616 1755 q0 76 82 76q41 0 62 -39l104 -185q14 -14 14 -38.5t-15 -40t-40.5 -15.5t-44.5 23l-141 168q-21 22 -21 51z" />
+<glyph unicode="&#xda;" horiz-adv-x="1552" d="M188 537v809q0 39 27 66.5t66 27.5t66.5 -28t27.5 -66v-816q0 -182 125 -286q115 -94 276 -94q162 0 277 94q125 104 125 286v816q0 39 26.5 66.5t65.5 27.5t66.5 -28t27.5 -66v-809q0 -268 -193 -422q-166 -135 -395 -135q-233 0 -397 135q-190 154 -191 422zM673 1562 q0 31 15 45l104 185q20 39 62 39q82 0 81 -76q0 -29 -20 -51l-141 -168q-18 -23 -44 -23t-41.5 15.5t-15.5 33.5z" />
+<glyph unicode="&#xdb;" horiz-adv-x="1552" d="M188 537v809q0 39 27 66.5t66 27.5t66.5 -28t27.5 -66v-816q0 -182 125 -286q115 -94 276 -94q162 0 277 94q125 104 125 286v816q0 39 26.5 66.5t65.5 27.5t66.5 -28t27.5 -66v-809q0 -268 -193 -422q-166 -135 -395 -135q-233 0 -397 135q-190 154 -191 422z M499 1559.5v23.5t17 29l139 143q41 41 82 41h78q41 0 82 -41l139 -143q16 -16 16 -40t-17.5 -42.5t-42 -18.5t-38.5 15l-178 151l-178 -151q-14 -14 -39 -14.5t-42.5 18t-17.5 30z" />
+<glyph unicode="&#xdc;" horiz-adv-x="1552" d="M188 537v809q0 39 27 66.5t66 27.5t66.5 -28t27.5 -66v-816q0 -182 125 -286q115 -94 276 -94q162 0 277 94q125 104 125 286v816q0 39 26.5 66.5t65.5 27.5t66.5 -28t27.5 -66v-809q0 -268 -193 -422q-166 -135 -395 -135q-233 0 -397 135q-190 154 -191 422zM500 1634 q0 43 30.5 73.5t73.5 30.5t74 -30.5t31 -73.5t-31 -73.5t-74 -30.5t-73.5 30.5t-30.5 73.5zM846 1634q0 43 31 73.5t74 30.5t73.5 -30.5t30.5 -73.5t-30.5 -73.5t-73.5 -30.5t-74 30.5t-31 73.5z" />
+<glyph unicode="&#xdd;" horiz-adv-x="1320" d="M61.5 1351.5q-0.5 34.5 24.5 61.5t71 27t76 -47l429 -623l428 623q31 47 76.5 47t70.5 -27t25 -61.5t-17 -61.5l-491 -686v-522q0 -39 -27 -65.5t-65 -26.5q-39 0 -67 26.5t-28 65.5v522l-489 686q-16 27 -16.5 61.5zM577 1562q0 31 15 45l104 185q20 39 62 39 q82 0 81 -76q0 -29 -20 -51l-141 -168q-18 -23 -44 -23t-41.5 15.5t-15.5 33.5z" />
+<glyph unicode="&#xde;" horiz-adv-x="1374" d="M199 82v1264q0 39 26.5 66.5t65.5 27.5t66.5 -28t27.5 -66v-146h373q285 0 428 -147q119 -119 119 -308q0 -188 -119 -307q-143 -147 -428 -147h-373v-209q0 -39 -27.5 -65.5t-66.5 -26.5t-65.5 26.5t-26.5 65.5zM385 467h354q211 0 305 90q74 70 74 188q0 190 -190 254 q-74 25 -189 25h-354v-557z" />
+<glyph unicode="&#xdf;" horiz-adv-x="1249" d="M162 84v911q0 215 129 336q125 119 334 119q176 0 301 -96q147 -111 147 -305q0 -207 -143 -291q-41 -25 -82 -37q129 -33 201 -103q104 -100 104 -262q0 -178 -121 -284q-106 -92 -268 -92q-131 0 -227 34q-66 23 -66 78q0 35 22.5 57.5t47 22.5t63.5 -13.5t98.5 -13.5 t99.5 9.5t77 33.5q88 61 88 191q0 117 -101 186q-96 68 -252 68q-37 0 -57 20.5t-20 53t21.5 53t55.5 24.5q127 14 200 80t73 173.5t-71 173t-193 65.5q-186 0 -250 -154q-25 -57 -25 -149v-889q0 -39 -27.5 -65.5t-66.5 -26.5t-65.5 26.5t-26.5 65.5z" />
+<glyph unicode="&#xe0;" horiz-adv-x="1136" d="M78 287q0 152 115 237q125 94 356 94h248v17q0 137 -67.5 195.5t-207.5 58.5q-119 0 -272 -49q-16 -4 -36.5 -4t-43.5 21.5t-22.5 66t53.5 67.5q172 74 356 74q209 0 324 -127q102 -111 102 -276v-580q0 -39 -27.5 -65.5t-66.5 -26.5t-65.5 26.5t-26.5 65.5v53 q-55 -57 -148.5 -106t-236.5 -49q-141 0 -236 81q-98 86 -98 226zM264 307q0 -164 217 -164q96 0 179 47.5t137 106.5v172h-224q-145 0 -227 -37t-82 -125zM387 1403q0 76 82 76q41 0 62 -39l104 -185q14 -14 14 -38.5t-15 -40t-40.5 -15.5t-44.5 23l-141 168q-21 22 -21 51 z" />
+<glyph unicode="&#xe1;" horiz-adv-x="1136" d="M78 287q0 152 115 237q125 94 356 94h248v17q0 137 -67.5 195.5t-207.5 58.5q-119 0 -272 -49q-16 -4 -36.5 -4t-43.5 21.5t-22.5 66t53.5 67.5q172 74 356 74q209 0 324 -127q102 -111 102 -276v-580q0 -39 -27.5 -65.5t-66.5 -26.5t-65.5 26.5t-26.5 65.5v53 q-55 -57 -148.5 -106t-236.5 -49q-141 0 -236 81q-98 86 -98 226zM264 307q0 -164 217 -164q96 0 179 47.5t137 106.5v172h-224q-145 0 -227 -37t-82 -125zM458 1210q0 31 15 45l104 185q20 39 62 39q82 0 81 -76q0 -29 -20 -51l-141 -168q-18 -23 -44 -23t-41.5 15.5 t-15.5 33.5z" />
+<glyph unicode="&#xe2;" horiz-adv-x="1136" d="M78 287q0 152 115 237q125 94 356 94h248v17q0 137 -67.5 195.5t-207.5 58.5q-119 0 -272 -49q-16 -4 -36.5 -4t-43.5 21.5t-22.5 66t53.5 67.5q172 74 356 74q209 0 324 -127q102 -111 102 -276v-580q0 -39 -27.5 -65.5t-66.5 -26.5t-65.5 26.5t-26.5 65.5v53 q-55 -57 -148.5 -106t-236.5 -49q-141 0 -236 81q-98 86 -98 226zM264 307q0 -164 217 -164q96 0 179 47.5t137 106.5v172h-224q-145 0 -227 -37t-82 -125zM282 1207.5v23.5t17 29l139 143q41 41 82 41h78q41 0 82 -41l139 -143q16 -16 16 -40t-17.5 -42.5t-42 -18.5 t-38.5 15l-178 151l-178 -151q-14 -14 -39 -14.5t-42.5 18t-17.5 30z" />
+<glyph unicode="&#xe3;" horiz-adv-x="1136" d="M78 287q0 152 115 237q125 94 356 94h248v17q0 137 -67.5 195.5t-207.5 58.5q-119 0 -272 -49q-16 -4 -36.5 -4t-43.5 21.5t-22.5 66t53.5 67.5q172 74 356 74q209 0 324 -127q102 -111 102 -276v-580q0 -39 -27.5 -65.5t-66.5 -26.5t-65.5 26.5t-26.5 65.5v53 q-55 -57 -148.5 -106t-236.5 -49q-141 0 -236 81q-98 86 -98 226zM224 1221.5q0 25.5 12 59.5t35 62q47 68 125 68q45 0 84 -15.5t76.5 -32.5t75.5 -32.5t75 -15.5t53.5 14t24.5 35q18 49 53 49q43 0 47 -45q0 -72 -47 -131q-53 -63 -125 -63q-61 0 -131 33.5t-107.5 49 t-72.5 15.5q-55 0 -84 -66q-10 -37 -47 -37q-18 0 -32.5 13.5t-14.5 39zM264 307q0 -164 217 -164q96 0 179 47.5t137 106.5v172h-224q-145 0 -227 -37t-82 -125z" />
+<glyph unicode="&#xe4;" horiz-adv-x="1136" d="M78 287q0 152 115 237q125 94 356 94h248v17q0 137 -67.5 195.5t-207.5 58.5q-119 0 -272 -49q-16 -4 -36.5 -4t-43.5 21.5t-22.5 66t53.5 67.5q172 74 356 74q209 0 324 -127q102 -111 102 -276v-580q0 -39 -27.5 -65.5t-66.5 -26.5t-65.5 26.5t-26.5 65.5v53 q-55 -57 -148.5 -106t-236.5 -49q-141 0 -236 81q-98 86 -98 226zM264 307q0 -164 217 -164q96 0 179 47.5t137 106.5v172h-224q-145 0 -227 -37t-82 -125zM285 1282q0 43 30.5 73.5t73.5 30.5t74 -30.5t31 -73.5t-31 -73.5t-74 -30.5t-73.5 30.5t-30.5 73.5zM631 1282 q0 43 31 73.5t74 30.5t73.5 -30.5t30.5 -73.5t-30.5 -73.5t-73.5 -30.5t-74 30.5t-31 73.5z" />
+<glyph unicode="&#xe5;" horiz-adv-x="1136" d="M78 287q0 152 115 237q125 94 356 94h248v17q0 137 -67.5 195.5t-207.5 58.5q-119 0 -272 -49q-16 -4 -36.5 -4t-43.5 21.5t-22.5 66t53.5 67.5q172 74 356 74q209 0 324 -127q102 -111 102 -276v-580q0 -39 -27.5 -65.5t-66.5 -26.5t-65.5 26.5t-26.5 65.5v53 q-55 -57 -148.5 -106t-236.5 -49q-141 0 -236 81q-98 86 -98 226zM264 307q0 -164 217 -164q96 0 179 47.5t137 106.5v172h-224q-145 0 -227 -37t-82 -125zM358 1321q0 80 56.5 136t134.5 56q41 0 76.5 -15t62.5 -40q55 -57 55 -137t-56.5 -136.5t-136 -56.5t-136 56.5 t-56.5 136.5zM450 1321q0 -41 30 -70.5t71 -29.5t70.5 29.5t29.5 70.5t-29.5 70.5t-70.5 29.5t-71 -29.5t-30 -70.5z" />
+<glyph unicode="&#xe6;" horiz-adv-x="1851" d="M76 287q0 231 262 303q88 23 209 22h248v23q0 137 -68 195.5t-207 58.5q-119 0 -272 -49q-16 -4 -37 -4t-43.5 21.5t-22.5 66.5t64 71q162 70 344 70q244 0 350 -172q131 172 371 172q225 0 360 -147q129 -141 129 -367q0 -35 -23.5 -61.5t-66.5 -26.5h-704 q37 -309 362 -309q150 0 277 63q16 8 42.5 8t51 -22.5t24.5 -50.5q0 -53 -44 -77t-78.5 -40.5t-75.5 -28.5q-92 -27 -213 -26q-281 0 -416 178q-119 -178 -422 -178q-170 0 -282 81q-119 84 -119 226zM262 307q0 -66 63.5 -115t188.5 -49q190 0 256 103q25 39 25 100v117 h-224q-145 0 -227 -34t-82 -122zM969 612h610q-8 147 -109 228q-84 68 -196 67q-113 0 -197 -67q-100 -80 -108 -228z" />
+<glyph unicode="&#xe7;" horiz-adv-x="1099" d="M94 522q0 248 164 400q156 143 383 143q123 0 202 -32t126 -62.5t47 -67.5t-22.5 -63.5t-45.5 -26.5q-35 0 -71 21q-104 57 -220 57q-180 0 -278 -101.5t-98 -267.5t98 -267t278 -101q80 0 131.5 18t83.5 37q43 23 71 22.5t50.5 -27t22.5 -63.5t-47 -67 q-139 -90 -324 -94l-61 -109q33 8 86 8t97 -39t44 -104q0 -188 -227 -189q-98 0 -185 54q-23 10 -22 34q0 41 39 41q8 0 20 -6q64 -35 121 -35q117 0 117 95q0 31 -21.5 47t-48.5 16q-49 0 -74 -12q-33 -16 -44 -16.5t-22 9t-11 25t8 27.5l98 160q-201 27 -330 164 q-135 147 -135 372z" />
+<glyph unicode="&#xe8;" horiz-adv-x="1167" d="M100 522q0 225 117 375q131 168 373 168q229 0 362 -156q125 -145 125 -360q0 -39 -25.5 -65.5t-68.5 -26.5h-694q16 -140 104 -221.5t246 -81.5t264 53q37 18 63.5 18t51 -22.5t24.5 -50.5q0 -53 -44 -77t-78.5 -40.5t-75.5 -28.5q-92 -27 -213 -26q-252 0 -391.5 141 t-139.5 401zM289 608h604q-8 145 -107 230q-81 69 -196 69q-182 0 -266 -162q-31 -57 -35 -137zM428 1403q0 76 82 76q41 0 62 -39l104 -185q14 -14 14 -38.5t-15 -40t-40.5 -15.5t-44.5 23l-141 168q-21 22 -21 51z" />
+<glyph unicode="&#xe9;" horiz-adv-x="1167" d="M100 522q0 225 117 375q131 168 373 168q229 0 362 -156q125 -145 125 -360q0 -39 -25.5 -65.5t-68.5 -26.5h-694q16 -140 104 -221.5t246 -81.5t264 53q37 18 63.5 18t51 -22.5t24.5 -50.5q0 -53 -44 -77t-78.5 -40.5t-75.5 -28.5q-92 -27 -213 -26q-252 0 -391.5 141 t-139.5 401zM289 608h604q-8 145 -107 230q-81 69 -196 69q-182 0 -266 -162q-31 -57 -35 -137zM487 1210q0 31 15 45l104 185q20 39 62 39q82 0 81 -76q0 -29 -20 -51l-141 -168q-18 -23 -44 -23t-41.5 15.5t-15.5 33.5z" />
+<glyph unicode="&#xea;" horiz-adv-x="1167" d="M100 522q0 225 117 375q131 168 373 168q229 0 362 -156q125 -145 125 -360q0 -39 -25.5 -65.5t-68.5 -26.5h-694q16 -140 104 -221.5t246 -81.5t264 53q37 18 63.5 18t51 -22.5t24.5 -50.5q0 -53 -44 -77t-78.5 -40.5t-75.5 -28.5q-92 -27 -213 -26q-252 0 -391.5 141 t-139.5 401zM289 608h604q-8 145 -107 230q-81 69 -196 69q-182 0 -266 -162q-31 -57 -35 -137zM311 1207.5v23.5t17 29l139 143q41 41 82 41h78q41 0 82 -41l139 -143q16 -16 16 -40t-17.5 -42.5t-42 -18.5t-38.5 15l-178 151l-178 -151q-14 -14 -39 -14.5t-42.5 18 t-17.5 30z" />
+<glyph unicode="&#xeb;" horiz-adv-x="1167" d="M100 522q0 225 117 375q131 168 373 168q229 0 362 -156q125 -145 125 -360q0 -39 -25.5 -65.5t-68.5 -26.5h-694q16 -140 104 -221.5t246 -81.5t264 53q37 18 63.5 18t51 -22.5t24.5 -50.5q0 -53 -44 -77t-78.5 -40.5t-75.5 -28.5q-92 -27 -213 -26q-252 0 -391.5 141 t-139.5 401zM289 608h604q-8 145 -107 230q-81 69 -196 69q-182 0 -266 -162q-31 -57 -35 -137zM311 1282q0 43 30.5 73.5t73.5 30.5t74 -30.5t31 -73.5t-31 -73.5t-74 -30.5t-73.5 30.5t-30.5 73.5zM657 1282q0 43 31 73.5t74 30.5t73.5 -30.5t30.5 -73.5t-30.5 -73.5 t-73.5 -30.5t-74 30.5t-31 73.5z" />
+<glyph unicode="&#xec;" horiz-adv-x="526" d="M86 1403q0 76 82 76q41 0 61 -39l105 -185q14 -14 14 -38.5t-15.5 -40t-41 -15.5t-43.5 23l-142 168q-20 22 -20 51zM170 82v879q0 40 26.5 67t66.5 27t66.5 -27t26.5 -67v-879q0 -39 -26.5 -65.5t-66.5 -26.5t-66.5 26.5t-26.5 65.5z" />
+<glyph unicode="&#xed;" horiz-adv-x="526" d="M170 82v879q0 40 26.5 67t66.5 27t66.5 -27t26.5 -67v-879q0 -39 -26.5 -65.5t-66.5 -26.5t-66.5 26.5t-26.5 65.5zM178 1210q0 31 15 45l104 185q20 39 61 39q82 0 82 -76q0 -29 -20 -51l-141 -168q-18 -23 -44 -23t-41.5 15.5t-15.5 33.5z" />
+<glyph unicode="&#xee;" horiz-adv-x="526" d="M-14 1207.5v23.5t16 29l139 143q41 41 82 41h78q41 0 82 -41l139 -143q16 -16 16.5 -40t-17 -42.5t-42 -18.5t-39.5 15l-178 151l-178 -151q-14 -14 -39 -14.5t-42 18t-17 30zM170 82v879q0 40 26.5 67t66.5 27t66.5 -27t26.5 -67v-879q0 -39 -26.5 -65.5t-66.5 -26.5 t-66.5 26.5t-26.5 65.5z" />
+<glyph unicode="&#xef;" horiz-adv-x="526" d="M-14 1282q0 43 30.5 73.5t73.5 30.5t74 -30.5t31 -73.5t-31 -73.5t-74 -30.5t-73.5 30.5t-30.5 73.5zM170 82v879q0 40 26.5 67t66.5 27t66.5 -27t26.5 -67v-879q0 -39 -26.5 -65.5t-66.5 -26.5t-66.5 26.5t-26.5 65.5zM332 1282q0 43 30.5 73.5t73.5 30.5t74 -30.5 t31 -73.5t-31 -73.5t-74 -30.5t-73.5 30.5t-30.5 73.5z" />
+<glyph unicode="&#xf0;" horiz-adv-x="1226" d="M100 508q0 217 125 364q135 162 355 162q120 0 231 -57q-84 123 -219 240l-172 -101q-25 -12 -41.5 -12t-30.5 14.5t-14 41t31 42.5l139 82q-94 66 -134 87.5t-51.5 41t-11.5 49t25.5 54t54.5 24.5t62 -20q111 -66 210 -146l140 84q16 10 34.5 10t33 -14t14.5 -41 t-25 -41l-115 -67q377 -344 377 -744q0 -406 -274 -536q-98 -45 -224 -45t-220.5 37.5t-161.5 107.5q-137 145 -138 383zM281 516q0 -188 106 -287q90 -86 221 -86t221 86q109 100 109 287q0 182 -109 283q-88 84 -221 84t-221 -84q-106 -98 -106 -283z" />
+<glyph unicode="&#xf1;" horiz-adv-x="1247" d="M162 82v879q0 41 26.5 67.5t65.5 26.5t66.5 -27t27.5 -67v-84q82 86 141 120q117 68 222.5 68t173 -32t114.5 -87q96 -113 97 -282v-582q0 -39 -28 -65.5t-67 -26.5t-65.5 26.5t-26.5 65.5v561q0 117 -52 183.5t-173 66.5q-180 0 -336 -197v-614q0 -39 -27.5 -65.5 t-66.5 -26.5t-65.5 26.5t-26.5 65.5zM306 1221.5q0 25.5 12 59.5t35 62q47 68 125 68q45 0 84 -15.5t76.5 -32.5t75.5 -32.5t75 -15.5t53.5 14t24.5 35q18 49 53 49q43 0 47 -45q0 -72 -47 -131q-53 -63 -125 -63q-61 0 -131 33.5t-107.5 49t-72.5 15.5q-55 0 -84 -66 q-10 -37 -47 -37q-18 0 -32.5 13.5t-14.5 39z" />
+<glyph unicode="&#xf2;" horiz-adv-x="1245" d="M98 522q0 244 144 393q141 150 381 150q238 0 381 -150q143 -152 143 -393q0 -242 -143 -393q-143 -150 -381 -149q-240 0 -381 149q-143 150 -144 393zM284.5 523q0.5 -101 31 -172.5t78.5 -116t108.5 -64.5t119 -20t119 20t109.5 63q111 100 111 291q0 184 -111 287 q-92 84 -227 84q-221 0 -308 -199q-31 -72 -30.5 -173zM446 1403q0 76 82 76q41 0 62 -39l104 -185q14 -14 14 -38.5t-15 -40t-40.5 -15.5t-44.5 23l-141 168q-21 22 -21 51z" />
+<glyph unicode="&#xf3;" horiz-adv-x="1245" d="M98 522q0 244 144 393q141 150 381 150q238 0 381 -150q143 -152 143 -393q0 -242 -143 -393q-143 -150 -381 -149q-240 0 -381 149q-143 150 -144 393zM284.5 523q0.5 -101 31 -172.5t78.5 -116t108.5 -64.5t119 -20t119 20t109.5 63q111 100 111 291q0 184 -111 287 q-92 84 -227 84q-221 0 -308 -199q-31 -72 -30.5 -173zM536 1210q0 31 15 45l104 185q20 39 62 39q82 0 81 -76q0 -29 -20 -51l-141 -168q-18 -23 -44 -23t-41.5 15.5t-15.5 33.5z" />
+<glyph unicode="&#xf4;" horiz-adv-x="1245" d="M98 522q0 244 144 393q141 150 381 150q238 0 381 -150q143 -152 143 -393q0 -242 -143 -393q-143 -150 -381 -149q-240 0 -381 149q-143 150 -144 393zM284.5 523q0.5 -101 31 -172.5t78.5 -116t108.5 -64.5t119 -20t119 20t109.5 63q111 100 111 291q0 184 -111 287 q-92 84 -227 84q-221 0 -308 -199q-31 -72 -30.5 -173zM346 1207.5v23.5t17 29l139 143q41 41 82 41h78q41 0 82 -41l139 -143q16 -16 16 -40t-17.5 -42.5t-42 -18.5t-38.5 15l-178 151l-178 -151q-14 -14 -39 -14.5t-42.5 18t-17.5 30z" />
+<glyph unicode="&#xf5;" horiz-adv-x="1245" d="M98 522q0 244 144 393q141 150 381 150q238 0 381 -150q143 -152 143 -393q0 -242 -143 -393q-143 -150 -381 -149q-240 0 -381 149q-143 150 -144 393zM284.5 523q0.5 -101 31 -172.5t78.5 -116t108.5 -64.5t119 -20t119 20t109.5 63q111 100 111 291q0 184 -111 287 q-92 84 -227 84q-221 0 -308 -199q-31 -72 -30.5 -173zM295 1221.5q0 25.5 12 59.5t35 62q47 68 125 68q45 0 84 -15.5t76.5 -32.5t75.5 -32.5t75 -15.5t53.5 14t24.5 35q18 49 53 49q43 0 47 -45q0 -72 -47 -131q-53 -63 -125 -63q-61 0 -131 33.5t-107.5 49t-72.5 15.5 q-55 0 -84 -66q-10 -37 -47 -37q-18 0 -32.5 13.5t-14.5 39z" />
+<glyph unicode="&#xf6;" horiz-adv-x="1245" d="M98 522q0 244 144 393q141 150 381 150q238 0 381 -150q143 -152 143 -393q0 -242 -143 -393q-143 -150 -381 -149q-240 0 -381 149q-143 150 -144 393zM284.5 523q0.5 -101 31 -172.5t78.5 -116t108.5 -64.5t119 -20t119 20t109.5 63q111 100 111 291q0 184 -111 287 q-92 84 -227 84q-221 0 -308 -199q-31 -72 -30.5 -173zM346 1282q0 43 30.5 73.5t73.5 30.5t74 -30.5t31 -73.5t-31 -73.5t-74 -30.5t-73.5 30.5t-30.5 73.5zM692 1282q0 43 31 73.5t74 30.5t73.5 -30.5t30.5 -73.5t-30.5 -73.5t-73.5 -30.5t-74 30.5t-31 73.5z" />
+<glyph unicode="&#xf7;" horiz-adv-x="1458" d="M150 678q0 35 23.5 59.5t57.5 24.5h994q35 0 59.5 -24.5t24.5 -59.5t-24.5 -58.5t-59.5 -23.5h-994q-35 0 -58 23.5t-23 58.5zM625 299q0 43 30.5 73.5t73.5 30.5t74 -30.5t31 -73.5t-31 -73.5t-74 -30.5t-73.5 30.5t-30.5 73.5zM625 1057q0 43 30.5 73.5t73.5 30.5 t74 -30.5t31 -73.5t-31 -74t-74 -31t-73.5 31t-30.5 74z" />
+<glyph unicode="&#xf8;" horiz-adv-x="1245" d="M98 522q0 244 144 393q141 150 381 150q143 0 270 -66l59 84q14 20 40 20.5t40.5 -14t14.5 -33t-13 -36.5l-57 -82q170 -150 170 -416q0 -242 -143 -393q-143 -150 -381 -149q-154 0 -273 65l-61 -88q-14 -20 -40 -20t-40 14t-14 32.5t12 36.5l59 84q-168 152 -168 418z M284.5 530.5q0.5 -178.5 88.5 -274.5l418 596q-80 43 -154 43t-134.5 -19.5t-109.5 -64.5q-109 -102 -108.5 -280.5zM455 193q78 -43 151.5 -43t134 20t109.5 63q111 100 111 291q0 162 -89 264z" />
+<glyph unicode="&#xf9;" horiz-adv-x="1249" d="M154 381v582q0 39 27.5 65.5t66.5 26.5t65.5 -27t26.5 -65v-562q0 -117 52 -183t173 -66q180 0 336 196v615q0 39 27.5 65.5t66.5 26.5t65.5 -27t26.5 -65v-879q0 -41 -26.5 -67.5t-65.5 -26.5t-66.5 26.5t-27.5 67.5v84q-82 -86 -141 -121q-117 -68 -222.5 -67.5 t-173 32t-114.5 86.5q-96 113 -96 283zM444 1403q0 76 82 76q41 0 62 -39l104 -185q14 -14 14 -38.5t-15 -40t-40.5 -15.5t-44.5 23l-141 168q-21 22 -21 51z" />
+<glyph unicode="&#xfa;" horiz-adv-x="1249" d="M154 381v582q0 39 27.5 65.5t66.5 26.5t65.5 -27t26.5 -65v-562q0 -117 52 -183t173 -66q180 0 336 196v615q0 39 27.5 65.5t66.5 26.5t65.5 -27t26.5 -65v-879q0 -41 -26.5 -67.5t-65.5 -26.5t-66.5 26.5t-27.5 67.5v84q-82 -86 -141 -121q-117 -68 -222.5 -67.5 t-173 32t-114.5 86.5q-96 113 -96 283zM534 1210q0 31 15 45l104 185q20 39 62 39q82 0 81 -76q0 -29 -20 -51l-141 -168q-18 -23 -44 -23t-41.5 15.5t-15.5 33.5z" />
+<glyph unicode="&#xfb;" horiz-adv-x="1249" d="M154 381v582q0 39 27.5 65.5t66.5 26.5t65.5 -27t26.5 -65v-562q0 -117 52 -183t173 -66q180 0 336 196v615q0 39 27.5 65.5t66.5 26.5t65.5 -27t26.5 -65v-879q0 -41 -26.5 -67.5t-65.5 -26.5t-66.5 26.5t-27.5 67.5v84q-82 -86 -141 -121q-117 -68 -222.5 -67.5 t-173 32t-114.5 86.5q-96 113 -96 283zM344 1207.5v23.5t17 29l139 143q41 41 82 41h78q41 0 82 -41l139 -143q16 -16 16 -40t-17.5 -42.5t-42 -18.5t-38.5 15l-178 151l-178 -151q-14 -14 -39 -14.5t-42.5 18t-17.5 30z" />
+<glyph unicode="&#xfc;" horiz-adv-x="1249" d="M154 381v582q0 39 27.5 65.5t66.5 26.5t65.5 -27t26.5 -65v-562q0 -117 52 -183t173 -66q180 0 336 196v615q0 39 27.5 65.5t66.5 26.5t65.5 -27t26.5 -65v-879q0 -41 -26.5 -67.5t-65.5 -26.5t-66.5 26.5t-27.5 67.5v84q-82 -86 -141 -121q-117 -68 -222.5 -67.5 t-173 32t-114.5 86.5q-96 113 -96 283zM344 1282q0 43 30.5 73.5t73.5 30.5t74 -30.5t31 -73.5t-31 -73.5t-74 -30.5t-73.5 30.5t-30.5 73.5zM690 1282q0 43 31 73.5t74 30.5t73.5 -30.5t30.5 -73.5t-30.5 -73.5t-73.5 -30.5t-74 30.5t-31 73.5z" />
+<glyph unicode="&#xfd;" horiz-adv-x="1091" d="M49 970.5q0 28.5 26.5 56.5t59.5 28q68 0 92 -58l316 -782l321 778q27 61 86 62q39 0 65.5 -28t26.5 -57.5t-6 -43.5l-559 -1344q-27 -63 -86 -63q-37 0 -62.5 26.5t-25.5 53t6 43.5l133 342l-385 938q-8 20 -8 48.5zM458 1210q0 31 15 45l104 185q20 39 62 39 q82 0 81 -76q0 -29 -20 -51l-141 -168q-18 -23 -44 -23t-41.5 15.5t-15.5 33.5z" />
+<glyph unicode="&#xfe;" horiz-adv-x="1292" d="M162 -387v1798q0 41 26.5 67.5t66.5 26.5t66.5 -26.5t26.5 -67.5v-502q152 156 350.5 156t339.5 -141q156 -156 156 -402q0 -250 -156 -403q-143 -139 -340.5 -139t-349.5 155v-522q0 -41 -26.5 -67.5t-66.5 -26.5t-66.5 26.5t-26.5 67.5zM348 307q139 -154 324 -153 q233 0 311 208q25 70 25 160q0 176 -95 277q-90 92 -241 92q-184 0 -324 -154v-430z" />
+<glyph unicode="&#xff;" horiz-adv-x="1091" d="M49 970.5q0 28.5 26.5 56.5t59.5 28q68 0 92 -58l316 -782l321 778q27 61 86 62q39 0 65.5 -28t26.5 -57.5t-6 -43.5l-559 -1344q-27 -63 -86 -63q-37 0 -62.5 26.5t-25.5 53t6 43.5l133 342l-385 938q-8 20 -8 48.5zM266 1282q0 43 30.5 73.5t73.5 30.5t74 -30.5 t31 -73.5t-31 -73.5t-74 -30.5t-73.5 30.5t-30.5 73.5zM612 1282q0 43 31 73.5t74 30.5t73.5 -30.5t30.5 -73.5t-30.5 -73.5t-73.5 -30.5t-74 30.5t-31 73.5z" />
+<glyph unicode="&#x2c6;" horiz-adv-x="837" d="M139 1207.5v23.5t17 29l139 143q41 41 82 41h78q41 0 82 -41l139 -143q16 -16 16 -40t-17.5 -42.5t-42 -18.5t-38.5 15l-178 151l-178 -151q-14 -14 -39 -14.5t-42.5 18t-17.5 30z" />
+<glyph unicode="&#x2dc;" horiz-adv-x="884" d="M113 1221.5q0 25.5 12 59.5t35 62q47 68 125 68q45 0 84 -15.5t76.5 -32.5t75.5 -32.5t75 -15.5t53.5 14t24.5 35q18 49 53 49q43 0 47 -45q0 -72 -47 -131q-53 -63 -125 -63q-61 0 -131 33.5t-107.5 49t-72.5 15.5q-55 0 -84 -66q-10 -37 -47 -37q-18 0 -32.5 13.5 t-14.5 39z" />
+<glyph unicode="&#x2000;" horiz-adv-x="940" />
+<glyph unicode="&#x2001;" horiz-adv-x="1880" />
+<glyph unicode="&#x2002;" horiz-adv-x="940" />
+<glyph unicode="&#x2003;" horiz-adv-x="1880" />
+<glyph unicode="&#x2004;" horiz-adv-x="626" />
+<glyph unicode="&#x2005;" horiz-adv-x="470" />
+<glyph unicode="&#x2006;" horiz-adv-x="313" />
+<glyph unicode="&#x2007;" horiz-adv-x="313" />
+<glyph unicode="&#x2008;" horiz-adv-x="235" />
+<glyph unicode="&#x2009;" horiz-adv-x="376" />
+<glyph unicode="&#x200a;" horiz-adv-x="104" />
+<glyph unicode="&#x2010;" horiz-adv-x="835" d="M141 573q0 35 23.5 59.5t58.5 24.5h387q35 0 59.5 -24.5t24.5 -59.5t-24.5 -58t-59.5 -23h-387q-35 0 -58.5 23.5t-23.5 57.5z" />
+<glyph unicode="&#x2011;" horiz-adv-x="835" d="M141 573q0 35 23.5 59.5t58.5 24.5h387q35 0 59.5 -24.5t24.5 -59.5t-24.5 -58t-59.5 -23h-387q-35 0 -58.5 23.5t-23.5 57.5z" />
+<glyph unicode="&#x2012;" horiz-adv-x="835" d="M141 573q0 35 23.5 59.5t58.5 24.5h387q35 0 59.5 -24.5t24.5 -59.5t-24.5 -58t-59.5 -23h-387q-35 0 -58.5 23.5t-23.5 57.5z" />
+<glyph unicode="&#x2013;" horiz-adv-x="1400" d="M141 573q0 35 23.5 59.5t58.5 24.5h953q34 0 59 -24.5t25 -59.5t-25 -58t-59 -23h-953q-35 0 -58.5 23.5t-23.5 57.5z" />
+<glyph unicode="&#x2014;" horiz-adv-x="1824" d="M141 573q0 35 23.5 59.5t58.5 24.5h1376q35 0 59.5 -24.5t24.5 -59.5t-24.5 -58t-59.5 -23h-1376q-35 0 -58.5 23.5t-23.5 57.5z" />
+<glyph unicode="&#x2018;" horiz-adv-x="522" d="M135 1092v120q0 109 53 193q41 61 115 106q10 10 36 10.5t42 -18t16 -47.5t-30 -47q-45 -27 -75 -66.5t-30 -123.5h8q47 0 81 -34t34 -81v-12q0 -47 -34 -81t-81 -34h-20q-47 0 -81 33.5t-34 81.5z" />
+<glyph unicode="&#x2019;" horiz-adv-x="487" d="M129 1042.5q0 28.5 31 47.5q45 27 74.5 66.5t29.5 123.5h-8q-47 0 -81 34t-34 81v12q0 47 34 81t81 34h20q48 0 81.5 -34t33.5 -81v-121q0 -109 -55 -192q-39 -61 -113 -107q-10 -10 -35.5 -10t-42 18.5t-16.5 47z" />
+<glyph unicode="&#x201a;" horiz-adv-x="532" d="M129 -243.5q0 28.5 31 46.5q45 27 74.5 67t29.5 124h-8q-47 0 -81 33.5t-34 81.5v12q0 47 34 81t81 34h20q48 0 81.5 -34t33.5 -81v-121q0 -109 -55 -193q-39 -61 -113 -106q-10 -10 -35.5 -10t-42 18.5t-16.5 47z" />
+<glyph unicode="&#x201c;" horiz-adv-x="894" d="M135 1092v120q0 109 53 193q41 61 115 106q10 10 36 10.5t42 -18t16 -47.5t-30 -47q-45 -27 -75 -66.5t-30 -123.5h8q47 0 81 -34t34 -81v-12q0 -47 -34 -81t-81 -34h-20q-47 0 -81 33.5t-34 81.5zM506 1092v120q0 109 55 193q39 61 113 106q10 10 35.5 10.5t42 -18 t16.5 -47.5t-31 -47q-45 -27 -74.5 -66.5t-29.5 -123.5h8q47 0 81 -34t34 -81v-12q0 -47 -34 -81t-81 -34h-20q-47 0 -81 33.5t-34 81.5z" />
+<glyph unicode="&#x201d;" horiz-adv-x="860" d="M129 1042.5q0 28.5 31 47.5q45 27 74.5 66.5t29.5 123.5h-8q-47 0 -81 34t-34 81v12q0 47 34 81t81 34h20q47 0 81 -34t34 -81v-121q0 -109 -55 -192q-39 -61 -113 -107q-10 -10 -35.5 -10t-42 18.5t-16.5 47zM500 1042.5q0 28.5 30 47.5q45 27 75 66.5t30 123.5h-8 q-47 0 -81 34t-34 81v12q0 47 34 81t81 34h20q47 0 81 -34t34 -81v-121q0 -109 -53 -192q-41 -61 -115 -107q-10 -10 -36 -10t-42 18.5t-16 47z" />
+<glyph unicode="&#x201e;" horiz-adv-x="905" d="M129 -243.5q0 28.5 31 46.5q45 27 74.5 67t29.5 124h-8q-47 0 -81 33.5t-34 81.5v12q0 47 34 81t81 34h20q47 0 81 -34t34 -81v-121q0 -109 -55 -193q-39 -61 -113 -106q-10 -10 -35.5 -10t-42 18.5t-16.5 47zM500 -243.5q0 28.5 30 46.5q45 27 75 67t30 124h-8 q-47 0 -81 33.5t-34 81.5v12q0 47 34 81t81 34h20q47 0 81 -34t34 -81v-121q0 -109 -53 -193q-41 -61 -115 -106q-10 -10 -36 -10t-42 18.5t-16 47z" />
+<glyph unicode="&#x2022;" horiz-adv-x="772" d="M115 805q0 113 79.5 192.5t190.5 79.5q57 0 106.5 -21.5t86.5 -58.5q80 -80 79 -192q0 -113 -79.5 -193t-190.5 -80q-113 0 -192.5 80t-79.5 193z" />
+<glyph unicode="&#x2026;" horiz-adv-x="1982" d="M141 109v12q0 47 34 81t81 34h20q47 0 81 -34t34 -81v-12q0 -47 -33.5 -81t-81.5 -34h-20q-47 0 -81 33.5t-34 81.5zM868 109v12q0 47 34 81t81 34h21q47 0 80.5 -34t33.5 -81v-12q0 -47 -33.5 -81t-80.5 -34h-21q-47 0 -81 33.5t-34 81.5zM1589 109v12q0 47 34 81t81 34 h20q47 0 81 -34t34 -81v-12q0 -47 -33.5 -81t-81.5 -34h-20q-47 0 -81 33.5t-34 81.5z" />
+<glyph unicode="&#x202f;" horiz-adv-x="376" />
+<glyph unicode="&#x2039;" horiz-adv-x="772" d="M111 522q0 51 36 88l336 371q18 23 55 23t60 -23t23 -56.5t-19 -54.5l-328 -348l328 -348q18 -23 18.5 -55.5t-22.5 -55t-59.5 -22.5t-55.5 22l-336 371q-37 37 -36 88z" />
+<glyph unicode="&#x203a;" horiz-adv-x="772" d="M152 119q0 33 18 55l328 348l-328 348q-18 20 -18 54t22.5 57t59 23t55.5 -23l336 -371q37 -37 37 -88t-37 -88l-336 -371q-18 -23 -55 -22.5t-59.5 23t-22.5 55.5z" />
+<glyph unicode="&#x205f;" horiz-adv-x="470" />
+<glyph unicode="&#x20ac;" horiz-adv-x="1396" d="M86 543q0 31 21.5 53t52.5 22h112q-8 46 -8 97q0 47 8 96h-112q-31 0 -52.5 21.5t-21.5 52.5t21.5 52t52.5 21h145q68 217 240 353q176 139 413 139q164 0 299 -66q47 -25 47.5 -66.5t-24.5 -65t-47 -23.5q-31 0 -66 12q-80 33 -182 33t-172 -21.5t-129 -62.5 q-123 -86 -184 -232h587q31 0 52.5 -21.5t21.5 -51t-21.5 -52t-52.5 -22.5h-630q-6 -47 -6 -97t6 -96h528q31 0 53.5 -22.5t22.5 -54t-20.5 -52t-55.5 -20.5h-485q61 -145 183 -229t275 -84q123 0 224 34q20 10 46.5 10.5t51.5 -23t25 -66.5t-48 -66q-135 -66 -278 -65.5 t-247.5 37t-186.5 102.5q-174 137 -240 350h-145q-31 0 -52.5 21.5t-21.5 52.5z" />
+<glyph unicode="&#x2122;" horiz-adv-x="1951" d="M117 1370q0 25 17.5 42.5t41.5 17.5h541q25 0 42 -17.5t17 -42.5t-17.5 -42t-41.5 -17h-207v-598q0 -29 -18.5 -46.5t-47.5 -17.5t-46 17.5t-17 46.5v598h-205q-25 0 -42 17.5t-17 41.5zM889 715v633q0 35 24.5 60.5t61.5 25.5h35q55 0 80 -54l237 -587l238 587 q25 53 80 54h34q37 0 61.5 -26t24.5 -60v-633q0 -29 -18 -47.5t-47 -18.5t-47.5 18.5t-18.5 47.5v536l-227 -551q-20 -51 -80 -51q-59 0 -80 51l-227 551v-536q0 -29 -18.5 -47.5t-47.5 -18.5t-47 18.5t-18 47.5z" />
+<glyph unicode="&#x25fc;" horiz-adv-x="1054" d="M0 0v1055h1055v-1055h-1055z" />
+<glyph unicode="&#xfb01;" horiz-adv-x="1312" d="M39 965q0 35 22.5 57t57.5 22h121v119q0 178 100 275q82 78 207 78q96 0 178 -41q47 -27 47 -64t-21.5 -61.5t-54.5 -24.5l-102 12q-78 0 -123 -35.5t-45 -144.5v-113h629q39 -4 63.5 -29.5t24.5 -64.5v-868q0 -39 -26.5 -65.5t-66.5 -26.5t-67 26.5t-27 65.5v803h-530 v-803q0 -39 -26.5 -65.5t-66.5 -26.5t-66.5 26.5t-26.5 65.5v803h-121q-35 0 -57.5 22.5t-22.5 57.5zM940 1362v8q0 43 30.5 74t73.5 31h13q43 0 73.5 -31t30.5 -74v-8q0 -43 -30.5 -74t-73.5 -31h-13q-43 0 -73.5 31t-30.5 74z" />
+<glyph unicode="&#xfb02;" horiz-adv-x="1318" d="M39 965q0 35 22.5 57t57.5 22h121v119q0 178 100 275q82 78 207 78q96 0 178 -41q47 -27 47 -64t-21.5 -61.5t-54.5 -24.5l-102 12q-78 0 -123 -35.5t-45 -144.5v-113h256q35 0 57.5 -22.5t22.5 -56.5q0 -35 -22.5 -57.5t-57.5 -22.5h-256v-803q0 -39 -26.5 -65.5 t-66.5 -26.5t-66.5 26.5t-26.5 65.5v803h-121q-35 0 -57.5 22.5t-22.5 57.5zM954 82v1329q0 41 26.5 67.5t66.5 26.5t67 -26.5t27 -67.5v-1329q0 -39 -27 -65.5t-67 -26.5t-66.5 26.5t-26.5 65.5z" />
+<glyph unicode="&#xfb03;" horiz-adv-x="2119" d="M39 965q0 35 22.5 57t57.5 22h121v119q0 178 100 275q82 78 207 78q96 0 178 -41q47 -27 47 -64t-21.5 -61.5t-54.5 -24.5l-102 12q-78 0 -123 -35.5t-45 -144.5v-113h621v119q0 178 100 275q82 78 207 78q96 0 178 -41q47 -27 47 -64t-21.5 -61.5t-54.5 -24.5l-102 12 q-78 0 -123 -35.5t-45 -144.5v-113h622q41 0 68 -26.5t27 -67.5v-868q0 -39 -27 -65.5t-66.5 -26.5t-66.5 26.5t-27 65.5v803h-530v-803q0 -39 -26.5 -65.5t-66.5 -26.5t-66.5 26.5t-26.5 65.5v803h-621v-803q0 -39 -26.5 -65.5t-66.5 -26.5t-66.5 26.5t-26.5 65.5v803h-121 q-35 0 -57.5 22.5t-22.5 57.5zM1747 1362v8q0 43 30.5 74t73.5 31h13q43 0 73.5 -31t30.5 -74v-8q0 -43 -30.5 -74t-73.5 -31h-13q-43 0 -73.5 31t-30.5 74z" />
+<glyph unicode="&#xfb04;" horiz-adv-x="2125" d="M39 965q0 35 22.5 57t57.5 22h121v119q0 178 100 275q82 78 207 78q96 0 178 -41q47 -27 47 -64t-21.5 -61.5t-54.5 -24.5l-102 12q-78 0 -123 -35.5t-45 -144.5v-113h621v119q0 178 100 275q82 78 207 78q96 0 178 -41q47 -27 47 -64t-21.5 -61.5t-54.5 -24.5l-102 12 q-78 0 -123 -35.5t-45 -144.5v-113h256q35 0 57.5 -22.5t22.5 -56.5q0 -35 -22.5 -57.5t-57.5 -22.5h-256v-803q0 -39 -26.5 -65.5t-66.5 -26.5t-66.5 26.5t-26.5 65.5v803h-621v-803q0 -39 -26.5 -65.5t-66.5 -26.5t-66.5 26.5t-26.5 65.5v803h-121q-35 0 -57.5 22.5 t-22.5 57.5zM1761 82v1329q0 41 26.5 67.5t66.5 26.5t67 -26.5t27 -67.5v-1329q0 -39 -27 -65.5t-67 -26.5t-66.5 26.5t-26.5 65.5z" />
+<hkern u1="&#x22;" u2="&#x2039;" k="70" />
+<hkern u1="&#x22;" u2="&#x2026;" k="266" />
+<hkern u1="&#x22;" u2="&#x201e;" k="281" />
+<hkern u1="&#x22;" u2="&#x201a;" k="266" />
+<hkern u1="&#x22;" u2="&#xf8;" k="57" />
+<hkern u1="&#x22;" u2="&#xf6;" k="57" />
+<hkern u1="&#x22;" u2="&#xf5;" k="57" />
+<hkern u1="&#x22;" u2="&#xf4;" k="57" />
+<hkern u1="&#x22;" u2="&#xf3;" k="57" />
+<hkern u1="&#x22;" u2="&#xf2;" k="57" />
+<hkern u1="&#x22;" u2="&#xf0;" k="57" />
+<hkern u1="&#x22;" u2="&#xeb;" k="57" />
+<hkern u1="&#x22;" u2="&#xea;" k="57" />
+<hkern u1="&#x22;" u2="&#xe9;" k="57" />
+<hkern u1="&#x22;" u2="&#xe8;" k="57" />
+<hkern u1="&#x22;" u2="&#xe7;" k="57" />
+<hkern u1="&#x22;" u2="&#xe6;" k="29" />
+<hkern u1="&#x22;" u2="&#xe5;" k="29" />
+<hkern u1="&#x22;" u2="&#xe4;" k="29" />
+<hkern u1="&#x22;" u2="&#xe3;" k="29" />
+<hkern u1="&#x22;" u2="&#xe2;" k="29" />
+<hkern u1="&#x22;" u2="&#xe1;" k="29" />
+<hkern u1="&#x22;" u2="&#xe0;" k="29" />
+<hkern u1="&#x22;" u2="&#xc6;" k="131" />
+<hkern u1="&#x22;" u2="&#xc5;" k="104" />
+<hkern u1="&#x22;" u2="&#xc4;" k="104" />
+<hkern u1="&#x22;" u2="&#xc3;" k="104" />
+<hkern u1="&#x22;" u2="&#xc2;" k="104" />
+<hkern u1="&#x22;" u2="&#xc1;" k="104" />
+<hkern u1="&#x22;" u2="&#xc0;" k="104" />
+<hkern u1="&#x22;" u2="&#xab;" k="70" />
+<hkern u1="&#x22;" u2="s" k="33" />
+<hkern u1="&#x22;" u2="q" k="57" />
+<hkern u1="&#x22;" u2="o" k="57" />
+<hkern u1="&#x22;" u2="g" k="57" />
+<hkern u1="&#x22;" u2="e" k="57" />
+<hkern u1="&#x22;" u2="d" k="57" />
+<hkern u1="&#x22;" u2="c" k="57" />
+<hkern u1="&#x22;" u2="a" k="29" />
+<hkern u1="&#x22;" u2="A" k="104" />
+<hkern u1="&#x22;" u2="&#x40;" k="41" />
+<hkern u1="&#x22;" u2="&#x2f;" k="88" />
+<hkern u1="&#x22;" u2="&#x2e;" k="266" />
+<hkern u1="&#x22;" u2="&#x2c;" k="266" />
+<hkern u1="&#x26;" u2="&#xfb04;" k="27" />
+<hkern u1="&#x26;" u2="&#xfb03;" k="27" />
+<hkern u1="&#x26;" u2="&#xfb02;" k="27" />
+<hkern u1="&#x26;" u2="&#xfb01;" k="27" />
+<hkern u1="&#x26;" u2="&#x201d;" k="94" />
+<hkern u1="&#x26;" u2="&#x2019;" k="94" />
+<hkern u1="&#x26;" u2="&#xff;" k="43" />
+<hkern u1="&#x26;" u2="&#xfd;" k="43" />
+<hkern u1="&#x26;" u2="&#xdf;" k="27" />
+<hkern u1="&#x26;" u2="&#xdd;" k="115" />
+<hkern u1="&#x26;" u2="&#xdc;" k="10" />
+<hkern u1="&#x26;" u2="&#xdb;" k="10" />
+<hkern u1="&#x26;" u2="&#xda;" k="10" />
+<hkern u1="&#x26;" u2="&#xd9;" k="10" />
+<hkern u1="&#x26;" u2="&#xc6;" k="-39" />
+<hkern u1="&#x26;" u2="y" k="43" />
+<hkern u1="&#x26;" u2="v" k="49" />
+<hkern u1="&#x26;" u2="t" k="31" />
+<hkern u1="&#x26;" u2="f" k="27" />
+<hkern u1="&#x26;" u2="Y" k="115" />
+<hkern u1="&#x26;" u2="V" k="94" />
+<hkern u1="&#x26;" u2="U" k="10" />
+<hkern u1="&#x26;" u2="T" k="98" />
+<hkern u1="&#x26;" u2="&#x27;" k="94" />
+<hkern u1="&#x26;" u2="&#x22;" k="94" />
+<hkern u1="&#x27;" u2="&#x2039;" k="70" />
+<hkern u1="&#x27;" u2="&#x2026;" k="244" />
+<hkern u1="&#x27;" u2="&#x201e;" k="244" />
+<hkern u1="&#x27;" u2="&#x201a;" k="244" />
+<hkern u1="&#x27;" u2="&#xf8;" k="57" />
+<hkern u1="&#x27;" u2="&#xf6;" k="57" />
+<hkern u1="&#x27;" u2="&#xf5;" k="57" />
+<hkern u1="&#x27;" u2="&#xf4;" k="57" />
+<hkern u1="&#x27;" u2="&#xf3;" k="57" />
+<hkern u1="&#x27;" u2="&#xf2;" k="57" />
+<hkern u1="&#x27;" u2="&#xf0;" k="57" />
+<hkern u1="&#x27;" u2="&#xeb;" k="57" />
+<hkern u1="&#x27;" u2="&#xea;" k="57" />
+<hkern u1="&#x27;" u2="&#xe9;" k="57" />
+<hkern u1="&#x27;" u2="&#xe8;" k="57" />
+<hkern u1="&#x27;" u2="&#xe7;" k="57" />
+<hkern u1="&#x27;" u2="&#xe6;" k="29" />
+<hkern u1="&#x27;" u2="&#xe5;" k="29" />
+<hkern u1="&#x27;" u2="&#xe4;" k="29" />
+<hkern u1="&#x27;" u2="&#xe3;" k="29" />
+<hkern u1="&#x27;" u2="&#xe2;" k="29" />
+<hkern u1="&#x27;" u2="&#xe1;" k="29" />
+<hkern u1="&#x27;" u2="&#xe0;" k="29" />
+<hkern u1="&#x27;" u2="&#xc6;" k="131" />
+<hkern u1="&#x27;" u2="&#xc5;" k="104" />
+<hkern u1="&#x27;" u2="&#xc4;" k="104" />
+<hkern u1="&#x27;" u2="&#xc3;" k="104" />
+<hkern u1="&#x27;" u2="&#xc2;" k="104" />
+<hkern u1="&#x27;" u2="&#xc1;" k="104" />
+<hkern u1="&#x27;" u2="&#xc0;" k="104" />
+<hkern u1="&#x27;" u2="&#xab;" k="70" />
+<hkern u1="&#x27;" u2="s" k="33" />
+<hkern u1="&#x27;" u2="q" k="57" />
+<hkern u1="&#x27;" u2="o" k="57" />
+<hkern u1="&#x27;" u2="g" k="57" />
+<hkern u1="&#x27;" u2="e" k="57" />
+<hkern u1="&#x27;" u2="d" k="57" />
+<hkern u1="&#x27;" u2="c" k="57" />
+<hkern u1="&#x27;" u2="a" k="29" />
+<hkern u1="&#x27;" u2="A" k="104" />
+<hkern u1="&#x27;" u2="&#x40;" k="41" />
+<hkern u1="&#x27;" u2="&#x2f;" k="88" />
+<hkern u1="&#x27;" u2="&#x2e;" k="244" />
+<hkern u1="&#x27;" u2="&#x2c;" k="244" />
+<hkern u1="&#x28;" u2="&#xfb04;" k="27" />
+<hkern u1="&#x28;" u2="&#xfb03;" k="27" />
+<hkern u1="&#x28;" u2="&#xfb02;" k="27" />
+<hkern u1="&#x28;" u2="&#xfb01;" k="27" />
+<hkern u1="&#x28;" u2="&#xff;" k="31" />
+<hkern u1="&#x28;" u2="&#xfd;" k="31" />
+<hkern u1="&#x28;" u2="&#xfc;" k="47" />
+<hkern u1="&#x28;" u2="&#xfb;" k="47" />
+<hkern u1="&#x28;" u2="&#xfa;" k="47" />
+<hkern u1="&#x28;" u2="&#xf9;" k="47" />
+<hkern u1="&#x28;" u2="&#xf8;" k="55" />
+<hkern u1="&#x28;" u2="&#xf6;" k="55" />
+<hkern u1="&#x28;" u2="&#xf5;" k="55" />
+<hkern u1="&#x28;" u2="&#xf4;" k="55" />
+<hkern u1="&#x28;" u2="&#xf3;" k="55" />
+<hkern u1="&#x28;" u2="&#xf2;" k="55" />
+<hkern u1="&#x28;" u2="&#xf1;" k="37" />
+<hkern u1="&#x28;" u2="&#xf0;" k="55" />
+<hkern u1="&#x28;" u2="&#xeb;" k="55" />
+<hkern u1="&#x28;" u2="&#xea;" k="55" />
+<hkern u1="&#x28;" u2="&#xe9;" k="55" />
+<hkern u1="&#x28;" u2="&#xe8;" k="55" />
+<hkern u1="&#x28;" u2="&#xe7;" k="55" />
+<hkern u1="&#x28;" u2="&#xe6;" k="39" />
+<hkern u1="&#x28;" u2="&#xe5;" k="39" />
+<hkern u1="&#x28;" u2="&#xe4;" k="39" />
+<hkern u1="&#x28;" u2="&#xe3;" k="39" />
+<hkern u1="&#x28;" u2="&#xe2;" k="39" />
+<hkern u1="&#x28;" u2="&#xe1;" k="39" />
+<hkern u1="&#x28;" u2="&#xe0;" k="39" />
+<hkern u1="&#x28;" u2="&#xdf;" k="27" />
+<hkern u1="&#x28;" u2="&#xdc;" k="25" />
+<hkern u1="&#x28;" u2="&#xdb;" k="25" />
+<hkern u1="&#x28;" u2="&#xda;" k="25" />
+<hkern u1="&#x28;" u2="&#xd9;" k="25" />
+<hkern u1="&#x28;" u2="&#xd8;" k="43" />
+<hkern u1="&#x28;" u2="&#xd6;" k="43" />
+<hkern u1="&#x28;" u2="&#xd5;" k="43" />
+<hkern u1="&#x28;" u2="&#xd4;" k="43" />
+<hkern u1="&#x28;" u2="&#xd3;" k="43" />
+<hkern u1="&#x28;" u2="&#xd2;" k="43" />
+<hkern u1="&#x28;" u2="&#xce;" k="-35" />
+<hkern u1="&#x28;" u2="&#xc7;" k="43" />
+<hkern u1="&#x28;" u2="y" k="31" />
+<hkern u1="&#x28;" u2="v" k="43" />
+<hkern u1="&#x28;" u2="u" k="47" />
+<hkern u1="&#x28;" u2="t" k="45" />
+<hkern u1="&#x28;" u2="s" k="39" />
+<hkern u1="&#x28;" u2="r" k="37" />
+<hkern u1="&#x28;" u2="q" k="55" />
+<hkern u1="&#x28;" u2="p" k="37" />
+<hkern u1="&#x28;" u2="o" k="55" />
+<hkern u1="&#x28;" u2="n" k="37" />
+<hkern u1="&#x28;" u2="m" k="37" />
+<hkern u1="&#x28;" u2="g" k="55" />
+<hkern u1="&#x28;" u2="f" k="27" />
+<hkern u1="&#x28;" u2="e" k="55" />
+<hkern u1="&#x28;" u2="d" k="55" />
+<hkern u1="&#x28;" u2="c" k="55" />
+<hkern u1="&#x28;" u2="a" k="39" />
+<hkern u1="&#x28;" u2="U" k="25" />
+<hkern u1="&#x28;" u2="Q" k="43" />
+<hkern u1="&#x28;" u2="O" k="43" />
+<hkern u1="&#x28;" u2="G" k="43" />
+<hkern u1="&#x28;" u2="C" k="43" />
+<hkern u1="&#x2a;" u2="&#xf8;" k="29" />
+<hkern u1="&#x2a;" u2="&#xf6;" k="29" />
+<hkern u1="&#x2a;" u2="&#xf5;" k="29" />
+<hkern u1="&#x2a;" u2="&#xf4;" k="29" />
+<hkern u1="&#x2a;" u2="&#xf3;" k="29" />
+<hkern u1="&#x2a;" u2="&#xf2;" k="29" />
+<hkern u1="&#x2a;" u2="&#xf0;" k="29" />
+<hkern u1="&#x2a;" u2="&#xef;" k="-23" />
+<hkern u1="&#x2a;" u2="&#xee;" k="-41" />
+<hkern u1="&#x2a;" u2="&#xeb;" k="29" />
+<hkern u1="&#x2a;" u2="&#xea;" k="29" />
+<hkern u1="&#x2a;" u2="&#xe9;" k="29" />
+<hkern u1="&#x2a;" u2="&#xe8;" k="29" />
+<hkern u1="&#x2a;" u2="&#xe7;" k="29" />
+<hkern u1="&#x2a;" u2="&#xe6;" k="20" />
+<hkern u1="&#x2a;" u2="&#xe5;" k="20" />
+<hkern u1="&#x2a;" u2="&#xe4;" k="20" />
+<hkern u1="&#x2a;" u2="&#xe3;" k="20" />
+<hkern u1="&#x2a;" u2="&#xe2;" k="20" />
+<hkern u1="&#x2a;" u2="&#xe1;" k="20" />
+<hkern u1="&#x2a;" u2="&#xe0;" k="20" />
+<hkern u1="&#x2a;" u2="&#xc6;" k="104" />
+<hkern u1="&#x2a;" u2="&#xc5;" k="84" />
+<hkern u1="&#x2a;" u2="&#xc4;" k="84" />
+<hkern u1="&#x2a;" u2="&#xc3;" k="84" />
+<hkern u1="&#x2a;" u2="&#xc2;" k="84" />
+<hkern u1="&#x2a;" u2="&#xc1;" k="84" />
+<hkern u1="&#x2a;" u2="&#xc0;" k="84" />
+<hkern u1="&#x2a;" u2="q" k="29" />
+<hkern u1="&#x2a;" u2="o" k="29" />
+<hkern u1="&#x2a;" u2="g" k="29" />
+<hkern u1="&#x2a;" u2="e" k="29" />
+<hkern u1="&#x2a;" u2="d" k="29" />
+<hkern u1="&#x2a;" u2="c" k="29" />
+<hkern u1="&#x2a;" u2="a" k="20" />
+<hkern u1="&#x2a;" u2="A" k="84" />
+<hkern u1="&#x2c;" u2="&#xfb04;" k="20" />
+<hkern u1="&#x2c;" u2="&#xfb03;" k="20" />
+<hkern u1="&#x2c;" u2="&#xfb02;" k="20" />
+<hkern u1="&#x2c;" u2="&#xfb01;" k="20" />
+<hkern u1="&#x2c;" u2="&#x201d;" k="256" />
+<hkern u1="&#x2c;" u2="&#x201c;" k="254" />
+<hkern u1="&#x2c;" u2="&#x2019;" k="244" />
+<hkern u1="&#x2c;" u2="&#x2018;" k="254" />
+<hkern u1="&#x2c;" u2="&#xff;" k="57" />
+<hkern u1="&#x2c;" u2="&#xfd;" k="57" />
+<hkern u1="&#x2c;" u2="&#xdf;" k="20" />
+<hkern u1="&#x2c;" u2="&#xdd;" k="154" />
+<hkern u1="&#x2c;" u2="&#xdc;" k="37" />
+<hkern u1="&#x2c;" u2="&#xdb;" k="37" />
+<hkern u1="&#x2c;" u2="&#xda;" k="37" />
+<hkern u1="&#x2c;" u2="&#xd9;" k="37" />
+<hkern u1="&#x2c;" u2="&#xd8;" k="39" />
+<hkern u1="&#x2c;" u2="&#xd6;" k="39" />
+<hkern u1="&#x2c;" u2="&#xd5;" k="39" />
+<hkern u1="&#x2c;" u2="&#xd4;" k="39" />
+<hkern u1="&#x2c;" u2="&#xd3;" k="39" />
+<hkern u1="&#x2c;" u2="&#xd2;" k="39" />
+<hkern u1="&#x2c;" u2="&#xc7;" k="39" />
+<hkern u1="&#x2c;" u2="y" k="57" />
+<hkern u1="&#x2c;" u2="v" k="63" />
+<hkern u1="&#x2c;" u2="t" k="25" />
+<hkern u1="&#x2c;" u2="f" k="20" />
+<hkern u1="&#x2c;" u2="Y" k="154" />
+<hkern u1="&#x2c;" u2="V" k="131" />
+<hkern u1="&#x2c;" u2="U" k="37" />
+<hkern u1="&#x2c;" u2="T" k="131" />
+<hkern u1="&#x2c;" u2="Q" k="39" />
+<hkern u1="&#x2c;" u2="O" k="39" />
+<hkern u1="&#x2c;" u2="G" k="39" />
+<hkern u1="&#x2c;" u2="C" k="39" />
+<hkern u1="&#x2c;" u2="&#x27;" k="244" />
+<hkern u1="&#x2c;" u2="&#x22;" k="256" />
+<hkern u1="&#x2d;" u2="&#xfb04;" k="27" />
+<hkern u1="&#x2d;" u2="&#xfb03;" k="27" />
+<hkern u1="&#x2d;" u2="&#xfb02;" k="27" />
+<hkern u1="&#x2d;" u2="&#xfb01;" k="27" />
+<hkern u1="&#x2d;" u2="&#xdf;" k="27" />
+<hkern u1="&#x2d;" u2="&#xdd;" k="135" />
+<hkern u1="&#x2d;" u2="&#xc5;" k="29" />
+<hkern u1="&#x2d;" u2="&#xc4;" k="29" />
+<hkern u1="&#x2d;" u2="&#xc3;" k="29" />
+<hkern u1="&#x2d;" u2="&#xc2;" k="29" />
+<hkern u1="&#x2d;" u2="&#xc1;" k="29" />
+<hkern u1="&#x2d;" u2="&#xc0;" k="29" />
+<hkern u1="&#x2d;" u2="x" k="45" />
+<hkern u1="&#x2d;" u2="v" k="16" />
+<hkern u1="&#x2d;" u2="t" k="25" />
+<hkern u1="&#x2d;" u2="f" k="27" />
+<hkern u1="&#x2d;" u2="Y" k="135" />
+<hkern u1="&#x2d;" u2="X" k="63" />
+<hkern u1="&#x2d;" u2="V" k="68" />
+<hkern u1="&#x2d;" u2="T" k="131" />
+<hkern u1="&#x2d;" u2="S" k="39" />
+<hkern u1="&#x2d;" u2="A" k="29" />
+<hkern u1="&#x2e;" u2="&#xfb04;" k="20" />
+<hkern u1="&#x2e;" u2="&#xfb03;" k="20" />
+<hkern u1="&#x2e;" u2="&#xfb02;" k="20" />
+<hkern u1="&#x2e;" u2="&#xfb01;" k="20" />
+<hkern u1="&#x2e;" u2="&#x201d;" k="256" />
+<hkern u1="&#x2e;" u2="&#x201c;" k="254" />
+<hkern u1="&#x2e;" u2="&#x2019;" k="244" />
+<hkern u1="&#x2e;" u2="&#x2018;" k="254" />
+<hkern u1="&#x2e;" u2="&#xff;" k="57" />
+<hkern u1="&#x2e;" u2="&#xfd;" k="57" />
+<hkern u1="&#x2e;" u2="&#xdf;" k="20" />
+<hkern u1="&#x2e;" u2="&#xdd;" k="154" />
+<hkern u1="&#x2e;" u2="&#xdc;" k="37" />
+<hkern u1="&#x2e;" u2="&#xdb;" k="37" />
+<hkern u1="&#x2e;" u2="&#xda;" k="37" />
+<hkern u1="&#x2e;" u2="&#xd9;" k="37" />
+<hkern u1="&#x2e;" u2="&#xd8;" k="39" />
+<hkern u1="&#x2e;" u2="&#xd6;" k="39" />
+<hkern u1="&#x2e;" u2="&#xd5;" k="39" />
+<hkern u1="&#x2e;" u2="&#xd4;" k="39" />
+<hkern u1="&#x2e;" u2="&#xd3;" k="39" />
+<hkern u1="&#x2e;" u2="&#xd2;" k="39" />
+<hkern u1="&#x2e;" u2="&#xc7;" k="39" />
+<hkern u1="&#x2e;" u2="y" k="57" />
+<hkern u1="&#x2e;" u2="v" k="63" />
+<hkern u1="&#x2e;" u2="t" k="25" />
+<hkern u1="&#x2e;" u2="f" k="20" />
+<hkern u1="&#x2e;" u2="Y" k="154" />
+<hkern u1="&#x2e;" u2="V" k="131" />
+<hkern u1="&#x2e;" u2="U" k="37" />
+<hkern u1="&#x2e;" u2="T" k="131" />
+<hkern u1="&#x2e;" u2="Q" k="39" />
+<hkern u1="&#x2e;" u2="O" k="39" />
+<hkern u1="&#x2e;" u2="G" k="39" />
+<hkern u1="&#x2e;" u2="C" k="39" />
+<hkern u1="&#x2e;" u2="&#x27;" k="244" />
+<hkern u1="&#x2e;" u2="&#x22;" k="256" />
+<hkern u1="&#x2f;" u2="&#xfc;" k="29" />
+<hkern u1="&#x2f;" u2="&#xfb;" k="29" />
+<hkern u1="&#x2f;" u2="&#xfa;" k="29" />
+<hkern u1="&#x2f;" u2="&#xf9;" k="29" />
+<hkern u1="&#x2f;" u2="&#xf8;" k="45" />
+<hkern u1="&#x2f;" u2="&#xf6;" k="45" />
+<hkern u1="&#x2f;" u2="&#xf5;" k="45" />
+<hkern u1="&#x2f;" u2="&#xf4;" k="45" />
+<hkern u1="&#x2f;" u2="&#xf3;" k="45" />
+<hkern u1="&#x2f;" u2="&#xf2;" k="45" />
+<hkern u1="&#x2f;" u2="&#xf1;" k="31" />
+<hkern u1="&#x2f;" u2="&#xf0;" k="45" />
+<hkern u1="&#x2f;" u2="&#xeb;" k="45" />
+<hkern u1="&#x2f;" u2="&#xea;" k="45" />
+<hkern u1="&#x2f;" u2="&#xe9;" k="45" />
+<hkern u1="&#x2f;" u2="&#xe8;" k="45" />
+<hkern u1="&#x2f;" u2="&#xe7;" k="45" />
+<hkern u1="&#x2f;" u2="&#xe6;" k="41" />
+<hkern u1="&#x2f;" u2="&#xe5;" k="41" />
+<hkern u1="&#x2f;" u2="&#xe4;" k="41" />
+<hkern u1="&#x2f;" u2="&#xe3;" k="41" />
+<hkern u1="&#x2f;" u2="&#xe2;" k="41" />
+<hkern u1="&#x2f;" u2="&#xe1;" k="41" />
+<hkern u1="&#x2f;" u2="&#xe0;" k="41" />
+<hkern u1="&#x2f;" u2="&#xc6;" k="35" />
+<hkern u1="&#x2f;" u2="&#xc5;" k="66" />
+<hkern u1="&#x2f;" u2="&#xc4;" k="66" />
+<hkern u1="&#x2f;" u2="&#xc3;" k="66" />
+<hkern u1="&#x2f;" u2="&#xc2;" k="66" />
+<hkern u1="&#x2f;" u2="&#xc1;" k="66" />
+<hkern u1="&#x2f;" u2="&#xc0;" k="66" />
+<hkern u1="&#x2f;" u2="u" k="29" />
+<hkern u1="&#x2f;" u2="s" k="35" />
+<hkern u1="&#x2f;" u2="r" k="31" />
+<hkern u1="&#x2f;" u2="q" k="45" />
+<hkern u1="&#x2f;" u2="p" k="31" />
+<hkern u1="&#x2f;" u2="o" k="45" />
+<hkern u1="&#x2f;" u2="n" k="31" />
+<hkern u1="&#x2f;" u2="m" k="31" />
+<hkern u1="&#x2f;" u2="g" k="45" />
+<hkern u1="&#x2f;" u2="e" k="45" />
+<hkern u1="&#x2f;" u2="d" k="45" />
+<hkern u1="&#x2f;" u2="c" k="45" />
+<hkern u1="&#x2f;" u2="a" k="41" />
+<hkern u1="&#x2f;" u2="A" k="66" />
+<hkern u1="&#x2f;" u2="&#x2f;" k="303" />
+<hkern u1="&#x3a;" u2="&#xdd;" k="53" />
+<hkern u1="&#x3a;" u2="Y" k="53" />
+<hkern u1="&#x3a;" u2="V" k="18" />
+<hkern u1="&#x3a;" u2="T" k="86" />
+<hkern u1="&#x3b;" u2="&#xdd;" k="53" />
+<hkern u1="&#x3b;" u2="Y" k="53" />
+<hkern u1="&#x3b;" u2="V" k="18" />
+<hkern u1="&#x3b;" u2="T" k="86" />
+<hkern u1="&#x40;" u2="&#xdd;" k="49" />
+<hkern u1="&#x40;" u2="Y" k="49" />
+<hkern u1="&#x40;" u2="T" k="37" />
+<hkern u1="A" u2="&#x2122;" k="90" />
+<hkern u1="A" u2="&#xae;" k="20" />
+<hkern u1="A" u2="&#x7d;" k="25" />
+<hkern u1="A" u2="v" k="74" />
+<hkern u1="A" u2="]" k="31" />
+<hkern u1="A" u2="\" k="66" />
+<hkern u1="A" u2="X" k="-49" />
+<hkern u1="A" u2="V" k="90" />
+<hkern u1="A" u2="&#x3f;" k="37" />
+<hkern u1="A" u2="&#x2a;" k="84" />
+<hkern u1="B" u2="&#xfb04;" k="23" />
+<hkern u1="B" u2="&#xfb03;" k="23" />
+<hkern u1="B" u2="&#xfb02;" k="23" />
+<hkern u1="B" u2="&#xfb01;" k="23" />
+<hkern u1="B" u2="&#xff;" k="20" />
+<hkern u1="B" u2="&#xfe;" k="14" />
+<hkern u1="B" u2="&#xfd;" k="20" />
+<hkern u1="B" u2="&#xfc;" k="14" />
+<hkern u1="B" u2="&#xfb;" k="14" />
+<hkern u1="B" u2="&#xfa;" k="14" />
+<hkern u1="B" u2="&#xf9;" k="14" />
+<hkern u1="B" u2="&#xf8;" k="10" />
+<hkern u1="B" u2="&#xf6;" k="10" />
+<hkern u1="B" u2="&#xf5;" k="10" />
+<hkern u1="B" u2="&#xf4;" k="10" />
+<hkern u1="B" u2="&#xf3;" k="10" />
+<hkern u1="B" u2="&#xf2;" k="10" />
+<hkern u1="B" u2="&#xf1;" k="14" />
+<hkern u1="B" u2="&#xf0;" k="10" />
+<hkern u1="B" u2="&#xef;" k="16" />
+<hkern u1="B" u2="&#xee;" k="16" />
+<hkern u1="B" u2="&#xed;" k="16" />
+<hkern u1="B" u2="&#xec;" k="16" />
+<hkern u1="B" u2="&#xeb;" k="10" />
+<hkern u1="B" u2="&#xea;" k="10" />
+<hkern u1="B" u2="&#xe9;" k="10" />
+<hkern u1="B" u2="&#xe8;" k="10" />
+<hkern u1="B" u2="&#xe7;" k="10" />
+<hkern u1="B" u2="&#xdf;" k="23" />
+<hkern u1="B" u2="&#xdd;" k="59" />
+<hkern u1="B" u2="&#xc6;" k="16" />
+<hkern u1="B" u2="&#x7d;" k="29" />
+<hkern u1="B" u2="y" k="20" />
+<hkern u1="B" u2="x" k="37" />
+<hkern u1="B" u2="v" k="27" />
+<hkern u1="B" u2="u" k="14" />
+<hkern u1="B" u2="t" k="29" />
+<hkern u1="B" u2="s" k="18" />
+<hkern u1="B" u2="r" k="14" />
+<hkern u1="B" u2="q" k="10" />
+<hkern u1="B" u2="p" k="14" />
+<hkern u1="B" u2="o" k="10" />
+<hkern u1="B" u2="n" k="14" />
+<hkern u1="B" u2="m" k="14" />
+<hkern u1="B" u2="k" k="14" />
+<hkern u1="B" u2="j" k="16" />
+<hkern u1="B" u2="i" k="16" />
+<hkern u1="B" u2="h" k="14" />
+<hkern u1="B" u2="g" k="10" />
+<hkern u1="B" u2="f" k="23" />
+<hkern u1="B" u2="e" k="10" />
+<hkern u1="B" u2="d" k="10" />
+<hkern u1="B" u2="c" k="10" />
+<hkern u1="B" u2="b" k="14" />
+<hkern u1="B" u2="]" k="29" />
+<hkern u1="B" u2="Y" k="59" />
+<hkern u1="B" u2="X" k="35" />
+<hkern u1="B" u2="V" k="25" />
+<hkern u1="B" u2="T" k="86" />
+<hkern u1="B" u2="&#x29;" k="33" />
+<hkern u1="C" u2="&#xfb04;" k="14" />
+<hkern u1="C" u2="&#xfb03;" k="14" />
+<hkern u1="C" u2="&#xfb02;" k="14" />
+<hkern u1="C" u2="&#xfb01;" k="14" />
+<hkern u1="C" u2="&#x2014;" k="45" />
+<hkern u1="C" u2="&#x2013;" k="45" />
+<hkern u1="C" u2="&#xff;" k="94" />
+<hkern u1="C" u2="&#xfd;" k="94" />
+<hkern u1="C" u2="&#xfc;" k="23" />
+<hkern u1="C" u2="&#xfb;" k="23" />
+<hkern u1="C" u2="&#xfa;" k="23" />
+<hkern u1="C" u2="&#xf9;" k="23" />
+<hkern u1="C" u2="&#xf8;" k="33" />
+<hkern u1="C" u2="&#xf6;" k="33" />
+<hkern u1="C" u2="&#xf5;" k="33" />
+<hkern u1="C" u2="&#xf4;" k="33" />
+<hkern u1="C" u2="&#xf3;" k="33" />
+<hkern u1="C" u2="&#xf2;" k="33" />
+<hkern u1="C" u2="&#xf1;" k="14" />
+<hkern u1="C" u2="&#xf0;" k="33" />
+<hkern u1="C" u2="&#xeb;" k="33" />
+<hkern u1="C" u2="&#xea;" k="33" />
+<hkern u1="C" u2="&#xe9;" k="33" />
+<hkern u1="C" u2="&#xe8;" k="33" />
+<hkern u1="C" u2="&#xe7;" k="33" />
+<hkern u1="C" u2="&#xdf;" k="14" />
+<hkern u1="C" u2="&#xd8;" k="18" />
+<hkern u1="C" u2="&#xd6;" k="18" />
+<hkern u1="C" u2="&#xd5;" k="18" />
+<hkern u1="C" u2="&#xd4;" k="18" />
+<hkern u1="C" u2="&#xd3;" k="18" />
+<hkern u1="C" u2="&#xd2;" k="18" />
+<hkern u1="C" u2="&#xc7;" k="18" />
+<hkern u1="C" u2="y" k="94" />
+<hkern u1="C" u2="v" k="102" />
+<hkern u1="C" u2="u" k="23" />
+<hkern u1="C" u2="t" k="41" />
+<hkern u1="C" u2="s" k="20" />
+<hkern u1="C" u2="r" k="14" />
+<hkern u1="C" u2="q" k="33" />
+<hkern u1="C" u2="p" k="14" />
+<hkern u1="C" u2="o" k="33" />
+<hkern u1="C" u2="n" k="14" />
+<hkern u1="C" u2="m" k="14" />
+<hkern u1="C" u2="g" k="33" />
+<hkern u1="C" u2="f" k="14" />
+<hkern u1="C" u2="e" k="33" />
+<hkern u1="C" u2="d" k="33" />
+<hkern u1="C" u2="c" k="33" />
+<hkern u1="C" u2="Q" k="18" />
+<hkern u1="C" u2="O" k="18" />
+<hkern u1="C" u2="G" k="18" />
+<hkern u1="C" u2="C" k="18" />
+<hkern u1="C" u2="&#x2d;" k="45" />
+<hkern u1="C" u2="&#x26;" k="14" />
+<hkern u1="D" u2="&#x2122;" k="16" />
+<hkern u1="D" u2="&#x2026;" k="39" />
+<hkern u1="D" u2="&#x201e;" k="39" />
+<hkern u1="D" u2="&#x201a;" k="39" />
+<hkern u1="D" u2="&#xfe;" k="18" />
+<hkern u1="D" u2="&#xfc;" k="16" />
+<hkern u1="D" u2="&#xfb;" k="16" />
+<hkern u1="D" u2="&#xfa;" k="16" />
+<hkern u1="D" u2="&#xf9;" k="16" />
+<hkern u1="D" u2="&#xf8;" k="12" />
+<hkern u1="D" u2="&#xf6;" k="12" />
+<hkern u1="D" u2="&#xf5;" k="12" />
+<hkern u1="D" u2="&#xf4;" k="12" />
+<hkern u1="D" u2="&#xf3;" k="12" />
+<hkern u1="D" u2="&#xf2;" k="12" />
+<hkern u1="D" u2="&#xf1;" k="18" />
+<hkern u1="D" u2="&#xf0;" k="12" />
+<hkern u1="D" u2="&#xef;" k="20" />
+<hkern u1="D" u2="&#xee;" k="20" />
+<hkern u1="D" u2="&#xed;" k="20" />
+<hkern u1="D" u2="&#xec;" k="20" />
+<hkern u1="D" u2="&#xeb;" k="12" />
+<hkern u1="D" u2="&#xea;" k="12" />
+<hkern u1="D" u2="&#xe9;" k="12" />
+<hkern u1="D" u2="&#xe8;" k="12" />
+<hkern u1="D" u2="&#xe7;" k="12" />
+<hkern u1="D" u2="&#xe6;" k="20" />
+<hkern u1="D" u2="&#xe5;" k="20" />
+<hkern u1="D" u2="&#xe4;" k="20" />
+<hkern u1="D" u2="&#xe3;" k="20" />
+<hkern u1="D" u2="&#xe2;" k="20" />
+<hkern u1="D" u2="&#xe1;" k="20" />
+<hkern u1="D" u2="&#xe0;" k="20" />
+<hkern u1="D" u2="&#xdd;" k="68" />
+<hkern u1="D" u2="&#xc6;" k="96" />
+<hkern u1="D" u2="&#xc5;" k="31" />
+<hkern u1="D" u2="&#xc4;" k="31" />
+<hkern u1="D" u2="&#xc3;" k="31" />
+<hkern u1="D" u2="&#xc2;" k="31" />
+<hkern u1="D" u2="&#xc1;" k="31" />
+<hkern u1="D" u2="&#xc0;" k="31" />
+<hkern u1="D" u2="&#x7d;" k="37" />
+<hkern u1="D" u2="x" k="27" />
+<hkern u1="D" u2="u" k="16" />
+<hkern u1="D" u2="s" k="12" />
+<hkern u1="D" u2="r" k="18" />
+<hkern u1="D" u2="q" k="12" />
+<hkern u1="D" u2="p" k="18" />
+<hkern u1="D" u2="o" k="12" />
+<hkern u1="D" u2="n" k="18" />
+<hkern u1="D" u2="m" k="18" />
+<hkern u1="D" u2="k" k="18" />
+<hkern u1="D" u2="j" k="20" />
+<hkern u1="D" u2="i" k="20" />
+<hkern u1="D" u2="h" k="18" />
+<hkern u1="D" u2="g" k="12" />
+<hkern u1="D" u2="e" k="12" />
+<hkern u1="D" u2="d" k="12" />
+<hkern u1="D" u2="c" k="12" />
+<hkern u1="D" u2="b" k="18" />
+<hkern u1="D" u2="a" k="20" />
+<hkern u1="D" u2="]" k="37" />
+<hkern u1="D" u2="Y" k="68" />
+<hkern u1="D" u2="X" k="57" />
+<hkern u1="D" u2="V" k="29" />
+<hkern u1="D" u2="T" k="57" />
+<hkern u1="D" u2="A" k="31" />
+<hkern u1="D" u2="&#x2f;" k="20" />
+<hkern u1="D" u2="&#x2e;" k="39" />
+<hkern u1="D" u2="&#x2c;" k="39" />
+<hkern u1="D" u2="&#x29;" k="43" />
+<hkern u1="E" u2="&#xfb04;" k="23" />
+<hkern u1="E" u2="&#xfb03;" k="23" />
+<hkern u1="E" u2="&#xfb02;" k="23" />
+<hkern u1="E" u2="&#xfb01;" k="23" />
+<hkern u1="E" u2="&#xff;" k="29" />
+<hkern u1="E" u2="&#xfd;" k="29" />
+<hkern u1="E" u2="&#xfc;" k="27" />
+<hkern u1="E" u2="&#xfb;" k="27" />
+<hkern u1="E" u2="&#xfa;" k="27" />
+<hkern u1="E" u2="&#xf9;" k="27" />
+<hkern u1="E" u2="&#xf8;" k="29" />
+<hkern u1="E" u2="&#xf6;" k="29" />
+<hkern u1="E" u2="&#xf5;" k="29" />
+<hkern u1="E" u2="&#xf4;" k="29" />
+<hkern u1="E" u2="&#xf3;" k="29" />
+<hkern u1="E" u2="&#xf2;" k="29" />
+<hkern u1="E" u2="&#xf1;" k="14" />
+<hkern u1="E" u2="&#xf0;" k="29" />
+<hkern u1="E" u2="&#xeb;" k="29" />
+<hkern u1="E" u2="&#xea;" k="29" />
+<hkern u1="E" u2="&#xe9;" k="29" />
+<hkern u1="E" u2="&#xe8;" k="29" />
+<hkern u1="E" u2="&#xe7;" k="29" />
+<hkern u1="E" u2="&#xe6;" k="14" />
+<hkern u1="E" u2="&#xe5;" k="14" />
+<hkern u1="E" u2="&#xe4;" k="14" />
+<hkern u1="E" u2="&#xe3;" k="14" />
+<hkern u1="E" u2="&#xe2;" k="14" />
+<hkern u1="E" u2="&#xe1;" k="14" />
+<hkern u1="E" u2="&#xe0;" k="14" />
+<hkern u1="E" u2="&#xdf;" k="23" />
+<hkern u1="E" u2="&#xd8;" k="14" />
+<hkern u1="E" u2="&#xd6;" k="14" />
+<hkern u1="E" u2="&#xd5;" k="14" />
+<hkern u1="E" u2="&#xd4;" k="14" />
+<hkern u1="E" u2="&#xd3;" k="14" />
+<hkern u1="E" u2="&#xd2;" k="14" />
+<hkern u1="E" u2="&#xc7;" k="14" />
+<hkern u1="E" u2="y" k="29" />
+<hkern u1="E" u2="v" k="33" />
+<hkern u1="E" u2="u" k="27" />
+<hkern u1="E" u2="t" k="35" />
+<hkern u1="E" u2="s" k="12" />
+<hkern u1="E" u2="r" k="14" />
+<hkern u1="E" u2="q" k="29" />
+<hkern u1="E" u2="p" k="14" />
+<hkern u1="E" u2="o" k="29" />
+<hkern u1="E" u2="n" k="14" />
+<hkern u1="E" u2="m" k="14" />
+<hkern u1="E" u2="g" k="29" />
+<hkern u1="E" u2="f" k="23" />
+<hkern u1="E" u2="e" k="29" />
+<hkern u1="E" u2="d" k="29" />
+<hkern u1="E" u2="c" k="29" />
+<hkern u1="E" u2="a" k="14" />
+<hkern u1="E" u2="Q" k="14" />
+<hkern u1="E" u2="O" k="14" />
+<hkern u1="E" u2="G" k="14" />
+<hkern u1="E" u2="C" k="14" />
+<hkern u1="E" u2="&#x26;" k="14" />
+<hkern u1="F" u2="&#xfb04;" k="37" />
+<hkern u1="F" u2="&#xfb03;" k="37" />
+<hkern u1="F" u2="&#xfb02;" k="37" />
+<hkern u1="F" u2="&#xfb01;" k="37" />
+<hkern u1="F" u2="&#x203a;" k="27" />
+<hkern u1="F" u2="&#x2026;" k="145" />
+<hkern u1="F" u2="&#x201e;" k="145" />
+<hkern u1="F" u2="&#x201a;" k="145" />
+<hkern u1="F" u2="&#xff;" k="27" />
+<hkern u1="F" u2="&#xfe;" k="14" />
+<hkern u1="F" u2="&#xfd;" k="27" />
+<hkern u1="F" u2="&#xfc;" k="49" />
+<hkern u1="F" u2="&#xfb;" k="49" />
+<hkern u1="F" u2="&#xfa;" k="49" />
+<hkern u1="F" u2="&#xf9;" k="49" />
+<hkern u1="F" u2="&#xf8;" k="41" />
+<hkern u1="F" u2="&#xf6;" k="41" />
+<hkern u1="F" u2="&#xf5;" k="41" />
+<hkern u1="F" u2="&#xf4;" k="41" />
+<hkern u1="F" u2="&#xf3;" k="41" />
+<hkern u1="F" u2="&#xf2;" k="41" />
+<hkern u1="F" u2="&#xf1;" k="55" />
+<hkern u1="F" u2="&#xf0;" k="41" />
+<hkern u1="F" u2="&#xef;" k="23" />
+<hkern u1="F" u2="&#xee;" k="23" />
+<hkern u1="F" u2="&#xed;" k="23" />
+<hkern u1="F" u2="&#xec;" k="23" />
+<hkern u1="F" u2="&#xeb;" k="41" />
+<hkern u1="F" u2="&#xea;" k="41" />
+<hkern u1="F" u2="&#xe9;" k="41" />
+<hkern u1="F" u2="&#xe8;" k="41" />
+<hkern u1="F" u2="&#xe7;" k="41" />
+<hkern u1="F" u2="&#xe6;" k="156" />
+<hkern u1="F" u2="&#xe5;" k="156" />
+<hkern u1="F" u2="&#xe4;" k="156" />
+<hkern u1="F" u2="&#xe3;" k="156" />
+<hkern u1="F" u2="&#xe2;" k="156" />
+<hkern u1="F" u2="&#xe1;" k="156" />
+<hkern u1="F" u2="&#xe0;" k="156" />
+<hkern u1="F" u2="&#xdf;" k="37" />
+<hkern u1="F" u2="&#xc6;" k="162" />
+<hkern u1="F" u2="&#xc5;" k="106" />
+<hkern u1="F" u2="&#xc4;" k="106" />
+<hkern u1="F" u2="&#xc3;" k="106" />
+<hkern u1="F" u2="&#xc2;" k="106" />
+<hkern u1="F" u2="&#xc1;" k="106" />
+<hkern u1="F" u2="&#xc0;" k="106" />
+<hkern u1="F" u2="&#xbb;" k="27" />
+<hkern u1="F" u2="y" k="27" />
+<hkern u1="F" u2="x" k="88" />
+<hkern u1="F" u2="v" k="31" />
+<hkern u1="F" u2="u" k="49" />
+<hkern u1="F" u2="t" k="55" />
+<hkern u1="F" u2="s" k="41" />
+<hkern u1="F" u2="r" k="55" />
+<hkern u1="F" u2="q" k="41" />
+<hkern u1="F" u2="p" k="55" />
+<hkern u1="F" u2="o" k="41" />
+<hkern u1="F" u2="n" k="55" />
+<hkern u1="F" u2="m" k="55" />
+<hkern u1="F" u2="k" k="14" />
+<hkern u1="F" u2="j" k="23" />
+<hkern u1="F" u2="i" k="23" />
+<hkern u1="F" u2="h" k="14" />
+<hkern u1="F" u2="g" k="41" />
+<hkern u1="F" u2="f" k="37" />
+<hkern u1="F" u2="e" k="41" />
+<hkern u1="F" u2="d" k="41" />
+<hkern u1="F" u2="c" k="41" />
+<hkern u1="F" u2="b" k="14" />
+<hkern u1="F" u2="a" k="156" />
+<hkern u1="F" u2="A" k="106" />
+<hkern u1="F" u2="&#x2f;" k="51" />
+<hkern u1="F" u2="&#x2e;" k="145" />
+<hkern u1="F" u2="&#x2c;" k="145" />
+<hkern u1="F" u2="&#x26;" k="47" />
+<hkern u1="H" u2="&#xfb04;" k="16" />
+<hkern u1="H" u2="&#xfb03;" k="16" />
+<hkern u1="H" u2="&#xfb02;" k="16" />
+<hkern u1="H" u2="&#xfb01;" k="16" />
+<hkern u1="H" u2="&#xff;" k="14" />
+<hkern u1="H" u2="&#xfe;" k="20" />
+<hkern u1="H" u2="&#xfd;" k="14" />
+<hkern u1="H" u2="&#xfc;" k="27" />
+<hkern u1="H" u2="&#xfb;" k="27" />
+<hkern u1="H" u2="&#xfa;" k="27" />
+<hkern u1="H" u2="&#xf9;" k="27" />
+<hkern u1="H" u2="&#xf8;" k="29" />
+<hkern u1="H" u2="&#xf6;" k="29" />
+<hkern u1="H" u2="&#xf5;" k="29" />
+<hkern u1="H" u2="&#xf4;" k="29" />
+<hkern u1="H" u2="&#xf3;" k="29" />
+<hkern u1="H" u2="&#xf2;" k="29" />
+<hkern u1="H" u2="&#xf1;" k="20" />
+<hkern u1="H" u2="&#xf0;" k="29" />
+<hkern u1="H" u2="&#xef;" k="20" />
+<hkern u1="H" u2="&#xee;" k="20" />
+<hkern u1="H" u2="&#xed;" k="20" />
+<hkern u1="H" u2="&#xec;" k="20" />
+<hkern u1="H" u2="&#xeb;" k="29" />
+<hkern u1="H" u2="&#xea;" k="29" />
+<hkern u1="H" u2="&#xe9;" k="29" />
+<hkern u1="H" u2="&#xe8;" k="29" />
+<hkern u1="H" u2="&#xe7;" k="29" />
+<hkern u1="H" u2="&#xe6;" k="23" />
+<hkern u1="H" u2="&#xe5;" k="23" />
+<hkern u1="H" u2="&#xe4;" k="23" />
+<hkern u1="H" u2="&#xe3;" k="23" />
+<hkern u1="H" u2="&#xe2;" k="23" />
+<hkern u1="H" u2="&#xe1;" k="23" />
+<hkern u1="H" u2="&#xe0;" k="23" />
+<hkern u1="H" u2="&#xdf;" k="16" />
+<hkern u1="H" u2="&#xdd;" k="10" />
+<hkern u1="H" u2="y" k="14" />
+<hkern u1="H" u2="v" k="18" />
+<hkern u1="H" u2="u" k="27" />
+<hkern u1="H" u2="t" k="23" />
+<hkern u1="H" u2="s" k="23" />
+<hkern u1="H" u2="r" k="20" />
+<hkern u1="H" u2="q" k="29" />
+<hkern u1="H" u2="p" k="20" />
+<hkern u1="H" u2="o" k="29" />
+<hkern u1="H" u2="n" k="20" />
+<hkern u1="H" u2="m" k="20" />
+<hkern u1="H" u2="k" k="20" />
+<hkern u1="H" u2="j" k="20" />
+<hkern u1="H" u2="i" k="20" />
+<hkern u1="H" u2="h" k="20" />
+<hkern u1="H" u2="g" k="29" />
+<hkern u1="H" u2="f" k="16" />
+<hkern u1="H" u2="e" k="29" />
+<hkern u1="H" u2="d" k="29" />
+<hkern u1="H" u2="c" k="29" />
+<hkern u1="H" u2="b" k="20" />
+<hkern u1="H" u2="a" k="23" />
+<hkern u1="H" u2="Y" k="10" />
+<hkern u1="I" u2="&#xfb04;" k="16" />
+<hkern u1="I" u2="&#xfb03;" k="16" />
+<hkern u1="I" u2="&#xfb02;" k="16" />
+<hkern u1="I" u2="&#xfb01;" k="16" />
+<hkern u1="I" u2="&#xff;" k="14" />
+<hkern u1="I" u2="&#xfe;" k="20" />
+<hkern u1="I" u2="&#xfd;" k="14" />
+<hkern u1="I" u2="&#xfc;" k="27" />
+<hkern u1="I" u2="&#xfb;" k="27" />
+<hkern u1="I" u2="&#xfa;" k="27" />
+<hkern u1="I" u2="&#xf9;" k="27" />
+<hkern u1="I" u2="&#xf8;" k="29" />
+<hkern u1="I" u2="&#xf6;" k="29" />
+<hkern u1="I" u2="&#xf5;" k="29" />
+<hkern u1="I" u2="&#xf4;" k="29" />
+<hkern u1="I" u2="&#xf3;" k="29" />
+<hkern u1="I" u2="&#xf2;" k="29" />
+<hkern u1="I" u2="&#xf1;" k="20" />
+<hkern u1="I" u2="&#xf0;" k="29" />
+<hkern u1="I" u2="&#xef;" k="20" />
+<hkern u1="I" u2="&#xee;" k="20" />
+<hkern u1="I" u2="&#xed;" k="20" />
+<hkern u1="I" u2="&#xec;" k="20" />
+<hkern u1="I" u2="&#xeb;" k="29" />
+<hkern u1="I" u2="&#xea;" k="29" />
+<hkern u1="I" u2="&#xe9;" k="29" />
+<hkern u1="I" u2="&#xe8;" k="29" />
+<hkern u1="I" u2="&#xe7;" k="29" />
+<hkern u1="I" u2="&#xe6;" k="23" />
+<hkern u1="I" u2="&#xe5;" k="23" />
+<hkern u1="I" u2="&#xe4;" k="23" />
+<hkern u1="I" u2="&#xe3;" k="23" />
+<hkern u1="I" u2="&#xe2;" k="23" />
+<hkern u1="I" u2="&#xe1;" k="23" />
+<hkern u1="I" u2="&#xe0;" k="23" />
+<hkern u1="I" u2="&#xdf;" k="16" />
+<hkern u1="I" u2="&#xdd;" k="10" />
+<hkern u1="I" u2="y" k="14" />
+<hkern u1="I" u2="v" k="18" />
+<hkern u1="I" u2="u" k="27" />
+<hkern u1="I" u2="t" k="23" />
+<hkern u1="I" u2="s" k="23" />
+<hkern u1="I" u2="r" k="20" />
+<hkern u1="I" u2="q" k="29" />
+<hkern u1="I" u2="p" k="20" />
+<hkern u1="I" u2="o" k="29" />
+<hkern u1="I" u2="n" k="20" />
+<hkern u1="I" u2="m" k="20" />
+<hkern u1="I" u2="k" k="20" />
+<hkern u1="I" u2="j" k="20" />
+<hkern u1="I" u2="i" k="20" />
+<hkern u1="I" u2="h" k="20" />
+<hkern u1="I" u2="g" k="29" />
+<hkern u1="I" u2="f" k="16" />
+<hkern u1="I" u2="e" k="29" />
+<hkern u1="I" u2="d" k="29" />
+<hkern u1="I" u2="c" k="29" />
+<hkern u1="I" u2="b" k="20" />
+<hkern u1="I" u2="a" k="23" />
+<hkern u1="I" u2="Y" k="10" />
+<hkern u1="M" u2="&#xfb04;" k="16" />
+<hkern u1="M" u2="&#xfb03;" k="16" />
+<hkern u1="M" u2="&#xfb02;" k="16" />
+<hkern u1="M" u2="&#xfb01;" k="16" />
+<hkern u1="M" u2="&#xff;" k="14" />
+<hkern u1="M" u2="&#xfe;" k="20" />
+<hkern u1="M" u2="&#xfd;" k="14" />
+<hkern u1="M" u2="&#xfc;" k="27" />
+<hkern u1="M" u2="&#xfb;" k="27" />
+<hkern u1="M" u2="&#xfa;" k="27" />
+<hkern u1="M" u2="&#xf9;" k="27" />
+<hkern u1="M" u2="&#xf8;" k="29" />
+<hkern u1="M" u2="&#xf6;" k="29" />
+<hkern u1="M" u2="&#xf5;" k="29" />
+<hkern u1="M" u2="&#xf4;" k="29" />
+<hkern u1="M" u2="&#xf3;" k="29" />
+<hkern u1="M" u2="&#xf2;" k="29" />
+<hkern u1="M" u2="&#xf1;" k="20" />
+<hkern u1="M" u2="&#xf0;" k="29" />
+<hkern u1="M" u2="&#xef;" k="20" />
+<hkern u1="M" u2="&#xee;" k="20" />
+<hkern u1="M" u2="&#xed;" k="20" />
+<hkern u1="M" u2="&#xec;" k="20" />
+<hkern u1="M" u2="&#xeb;" k="29" />
+<hkern u1="M" u2="&#xea;" k="29" />
+<hkern u1="M" u2="&#xe9;" k="29" />
+<hkern u1="M" u2="&#xe8;" k="29" />
+<hkern u1="M" u2="&#xe7;" k="29" />
+<hkern u1="M" u2="&#xe6;" k="23" />
+<hkern u1="M" u2="&#xe5;" k="23" />
+<hkern u1="M" u2="&#xe4;" k="23" />
+<hkern u1="M" u2="&#xe3;" k="23" />
+<hkern u1="M" u2="&#xe2;" k="23" />
+<hkern u1="M" u2="&#xe1;" k="23" />
+<hkern u1="M" u2="&#xe0;" k="23" />
+<hkern u1="M" u2="&#xdf;" k="16" />
+<hkern u1="M" u2="&#xdd;" k="10" />
+<hkern u1="M" u2="y" k="14" />
+<hkern u1="M" u2="v" k="18" />
+<hkern u1="M" u2="u" k="27" />
+<hkern u1="M" u2="t" k="23" />
+<hkern u1="M" u2="s" k="23" />
+<hkern u1="M" u2="r" k="20" />
+<hkern u1="M" u2="q" k="29" />
+<hkern u1="M" u2="p" k="20" />
+<hkern u1="M" u2="o" k="29" />
+<hkern u1="M" u2="n" k="20" />
+<hkern u1="M" u2="m" k="20" />
+<hkern u1="M" u2="k" k="20" />
+<hkern u1="M" u2="j" k="20" />
+<hkern u1="M" u2="i" k="20" />
+<hkern u1="M" u2="h" k="20" />
+<hkern u1="M" u2="g" k="29" />
+<hkern u1="M" u2="f" k="16" />
+<hkern u1="M" u2="e" k="29" />
+<hkern u1="M" u2="d" k="29" />
+<hkern u1="M" u2="c" k="29" />
+<hkern u1="M" u2="b" k="20" />
+<hkern u1="M" u2="a" k="23" />
+<hkern u1="M" u2="Y" k="10" />
+<hkern u1="N" u2="&#xfb04;" k="16" />
+<hkern u1="N" u2="&#xfb03;" k="16" />
+<hkern u1="N" u2="&#xfb02;" k="16" />
+<hkern u1="N" u2="&#xfb01;" k="16" />
+<hkern u1="N" u2="&#xff;" k="14" />
+<hkern u1="N" u2="&#xfe;" k="20" />
+<hkern u1="N" u2="&#xfd;" k="14" />
+<hkern u1="N" u2="&#xfc;" k="27" />
+<hkern u1="N" u2="&#xfb;" k="27" />
+<hkern u1="N" u2="&#xfa;" k="27" />
+<hkern u1="N" u2="&#xf9;" k="27" />
+<hkern u1="N" u2="&#xf8;" k="29" />
+<hkern u1="N" u2="&#xf6;" k="29" />
+<hkern u1="N" u2="&#xf5;" k="29" />
+<hkern u1="N" u2="&#xf4;" k="29" />
+<hkern u1="N" u2="&#xf3;" k="29" />
+<hkern u1="N" u2="&#xf2;" k="29" />
+<hkern u1="N" u2="&#xf1;" k="20" />
+<hkern u1="N" u2="&#xf0;" k="29" />
+<hkern u1="N" u2="&#xef;" k="20" />
+<hkern u1="N" u2="&#xee;" k="20" />
+<hkern u1="N" u2="&#xed;" k="20" />
+<hkern u1="N" u2="&#xec;" k="20" />
+<hkern u1="N" u2="&#xeb;" k="29" />
+<hkern u1="N" u2="&#xea;" k="29" />
+<hkern u1="N" u2="&#xe9;" k="29" />
+<hkern u1="N" u2="&#xe8;" k="29" />
+<hkern u1="N" u2="&#xe7;" k="29" />
+<hkern u1="N" u2="&#xe6;" k="23" />
+<hkern u1="N" u2="&#xe5;" k="23" />
+<hkern u1="N" u2="&#xe4;" k="23" />
+<hkern u1="N" u2="&#xe3;" k="23" />
+<hkern u1="N" u2="&#xe2;" k="23" />
+<hkern u1="N" u2="&#xe1;" k="23" />
+<hkern u1="N" u2="&#xe0;" k="23" />
+<hkern u1="N" u2="&#xdf;" k="16" />
+<hkern u1="N" u2="&#xdd;" k="10" />
+<hkern u1="N" u2="y" k="14" />
+<hkern u1="N" u2="v" k="18" />
+<hkern u1="N" u2="u" k="27" />
+<hkern u1="N" u2="t" k="23" />
+<hkern u1="N" u2="s" k="23" />
+<hkern u1="N" u2="r" k="20" />
+<hkern u1="N" u2="q" k="29" />
+<hkern u1="N" u2="p" k="20" />
+<hkern u1="N" u2="o" k="29" />
+<hkern u1="N" u2="n" k="20" />
+<hkern u1="N" u2="m" k="20" />
+<hkern u1="N" u2="k" k="20" />
+<hkern u1="N" u2="j" k="20" />
+<hkern u1="N" u2="i" k="20" />
+<hkern u1="N" u2="h" k="20" />
+<hkern u1="N" u2="g" k="29" />
+<hkern u1="N" u2="f" k="16" />
+<hkern u1="N" u2="e" k="29" />
+<hkern u1="N" u2="d" k="29" />
+<hkern u1="N" u2="c" k="29" />
+<hkern u1="N" u2="b" k="20" />
+<hkern u1="N" u2="a" k="23" />
+<hkern u1="N" u2="Y" k="10" />
+<hkern u1="O" u2="&#x2122;" k="16" />
+<hkern u1="O" u2="&#x2026;" k="39" />
+<hkern u1="O" u2="&#x201e;" k="39" />
+<hkern u1="O" u2="&#x201a;" k="39" />
+<hkern u1="O" u2="&#xfe;" k="18" />
+<hkern u1="O" u2="&#xfc;" k="16" />
+<hkern u1="O" u2="&#xfb;" k="16" />
+<hkern u1="O" u2="&#xfa;" k="16" />
+<hkern u1="O" u2="&#xf9;" k="16" />
+<hkern u1="O" u2="&#xf8;" k="12" />
+<hkern u1="O" u2="&#xf6;" k="12" />
+<hkern u1="O" u2="&#xf5;" k="12" />
+<hkern u1="O" u2="&#xf4;" k="12" />
+<hkern u1="O" u2="&#xf3;" k="12" />
+<hkern u1="O" u2="&#xf2;" k="12" />
+<hkern u1="O" u2="&#xf1;" k="18" />
+<hkern u1="O" u2="&#xf0;" k="12" />
+<hkern u1="O" u2="&#xef;" k="20" />
+<hkern u1="O" u2="&#xee;" k="20" />
+<hkern u1="O" u2="&#xed;" k="20" />
+<hkern u1="O" u2="&#xec;" k="20" />
+<hkern u1="O" u2="&#xeb;" k="12" />
+<hkern u1="O" u2="&#xea;" k="12" />
+<hkern u1="O" u2="&#xe9;" k="12" />
+<hkern u1="O" u2="&#xe8;" k="12" />
+<hkern u1="O" u2="&#xe7;" k="12" />
+<hkern u1="O" u2="&#xe6;" k="20" />
+<hkern u1="O" u2="&#xe5;" k="20" />
+<hkern u1="O" u2="&#xe4;" k="20" />
+<hkern u1="O" u2="&#xe3;" k="20" />
+<hkern u1="O" u2="&#xe2;" k="20" />
+<hkern u1="O" u2="&#xe1;" k="20" />
+<hkern u1="O" u2="&#xe0;" k="20" />
+<hkern u1="O" u2="&#xdd;" k="63" />
+<hkern u1="O" u2="&#xc6;" k="90" />
+<hkern u1="O" u2="&#xc5;" k="29" />
+<hkern u1="O" u2="&#xc4;" k="29" />
+<hkern u1="O" u2="&#xc3;" k="29" />
+<hkern u1="O" u2="&#xc2;" k="29" />
+<hkern u1="O" u2="&#xc1;" k="29" />
+<hkern u1="O" u2="&#xc0;" k="29" />
+<hkern u1="O" u2="&#x7d;" k="35" />
+<hkern u1="O" u2="x" k="27" />
+<hkern u1="O" u2="u" k="16" />
+<hkern u1="O" u2="s" k="12" />
+<hkern u1="O" u2="r" k="18" />
+<hkern u1="O" u2="q" k="12" />
+<hkern u1="O" u2="p" k="18" />
+<hkern u1="O" u2="o" k="12" />
+<hkern u1="O" u2="n" k="18" />
+<hkern u1="O" u2="m" k="18" />
+<hkern u1="O" u2="k" k="18" />
+<hkern u1="O" u2="j" k="20" />
+<hkern u1="O" u2="i" k="20" />
+<hkern u1="O" u2="h" k="18" />
+<hkern u1="O" u2="g" k="12" />
+<hkern u1="O" u2="e" k="12" />
+<hkern u1="O" u2="d" k="12" />
+<hkern u1="O" u2="c" k="12" />
+<hkern u1="O" u2="b" k="18" />
+<hkern u1="O" u2="a" k="20" />
+<hkern u1="O" u2="]" k="37" />
+<hkern u1="O" u2="Y" k="63" />
+<hkern u1="O" u2="X" k="53" />
+<hkern u1="O" u2="V" k="27" />
+<hkern u1="O" u2="T" k="49" />
+<hkern u1="O" u2="A" k="29" />
+<hkern u1="O" u2="&#x2e;" k="39" />
+<hkern u1="O" u2="&#x2c;" k="39" />
+<hkern u1="O" u2="&#x29;" k="43" />
+<hkern u1="P" u2="&#x2026;" k="160" />
+<hkern u1="P" u2="&#x201e;" k="160" />
+<hkern u1="P" u2="&#x201a;" k="160" />
+<hkern u1="P" u2="&#xfe;" k="12" />
+<hkern u1="P" u2="&#xfc;" k="14" />
+<hkern u1="P" u2="&#xfb;" k="14" />
+<hkern u1="P" u2="&#xfa;" k="14" />
+<hkern u1="P" u2="&#xf9;" k="14" />
+<hkern u1="P" u2="&#xf8;" k="29" />
+<hkern u1="P" u2="&#xf6;" k="29" />
+<hkern u1="P" u2="&#xf5;" k="29" />
+<hkern u1="P" u2="&#xf4;" k="29" />
+<hkern u1="P" u2="&#xf3;" k="29" />
+<hkern u1="P" u2="&#xf2;" k="29" />
+<hkern u1="P" u2="&#xf1;" k="16" />
+<hkern u1="P" u2="&#xf0;" k="29" />
+<hkern u1="P" u2="&#xef;" k="16" />
+<hkern u1="P" u2="&#xee;" k="4" />
+<hkern u1="P" u2="&#xed;" k="16" />
+<hkern u1="P" u2="&#xec;" k="16" />
+<hkern u1="P" u2="&#xeb;" k="29" />
+<hkern u1="P" u2="&#xea;" k="29" />
+<hkern u1="P" u2="&#xe9;" k="29" />
+<hkern u1="P" u2="&#xe8;" k="29" />
+<hkern u1="P" u2="&#xe7;" k="29" />
+<hkern u1="P" u2="&#xe6;" k="53" />
+<hkern u1="P" u2="&#xe5;" k="53" />
+<hkern u1="P" u2="&#xe4;" k="53" />
+<hkern u1="P" u2="&#xe3;" k="53" />
+<hkern u1="P" u2="&#xe2;" k="53" />
+<hkern u1="P" u2="&#xe1;" k="53" />
+<hkern u1="P" u2="&#xe0;" k="53" />
+<hkern u1="P" u2="&#xdd;" k="10" />
+<hkern u1="P" u2="&#xc6;" k="162" />
+<hkern u1="P" u2="&#xc5;" k="90" />
+<hkern u1="P" u2="&#xc4;" k="90" />
+<hkern u1="P" u2="&#xc3;" k="90" />
+<hkern u1="P" u2="&#xc2;" k="90" />
+<hkern u1="P" u2="&#xc1;" k="90" />
+<hkern u1="P" u2="&#xc0;" k="90" />
+<hkern u1="P" u2="&#x7d;" k="20" />
+<hkern u1="P" u2="u" k="14" />
+<hkern u1="P" u2="s" k="14" />
+<hkern u1="P" u2="r" k="16" />
+<hkern u1="P" u2="q" k="29" />
+<hkern u1="P" u2="p" k="16" />
+<hkern u1="P" u2="o" k="29" />
+<hkern u1="P" u2="n" k="16" />
+<hkern u1="P" u2="m" k="16" />
+<hkern u1="P" u2="k" k="12" />
+<hkern u1="P" u2="j" k="16" />
+<hkern u1="P" u2="i" k="16" />
+<hkern u1="P" u2="h" k="12" />
+<hkern u1="P" u2="g" k="29" />
+<hkern u1="P" u2="e" k="29" />
+<hkern u1="P" u2="d" k="29" />
+<hkern u1="P" u2="c" k="29" />
+<hkern u1="P" u2="b" k="12" />
+<hkern u1="P" u2="a" k="53" />
+<hkern u1="P" u2="Y" k="10" />
+<hkern u1="P" u2="X" k="41" />
+<hkern u1="P" u2="A" k="90" />
+<hkern u1="P" u2="&#x2f;" k="47" />
+<hkern u1="P" u2="&#x2e;" k="160" />
+<hkern u1="P" u2="&#x2c;" k="160" />
+<hkern u1="P" u2="&#x29;" k="27" />
+<hkern u1="P" u2="&#x26;" k="14" />
+<hkern u1="Q" u2="&#x2122;" k="16" />
+<hkern u1="Q" u2="&#x2026;" k="39" />
+<hkern u1="Q" u2="&#x201e;" k="39" />
+<hkern u1="Q" u2="&#x201a;" k="39" />
+<hkern u1="Q" u2="&#xfe;" k="18" />
+<hkern u1="Q" u2="&#xfc;" k="16" />
+<hkern u1="Q" u2="&#xfb;" k="16" />
+<hkern u1="Q" u2="&#xfa;" k="16" />
+<hkern u1="Q" u2="&#xf9;" k="16" />
+<hkern u1="Q" u2="&#xf8;" k="12" />
+<hkern u1="Q" u2="&#xf6;" k="12" />
+<hkern u1="Q" u2="&#xf5;" k="12" />
+<hkern u1="Q" u2="&#xf4;" k="12" />
+<hkern u1="Q" u2="&#xf3;" k="12" />
+<hkern u1="Q" u2="&#xf2;" k="12" />
+<hkern u1="Q" u2="&#xf1;" k="18" />
+<hkern u1="Q" u2="&#xf0;" k="12" />
+<hkern u1="Q" u2="&#xef;" k="20" />
+<hkern u1="Q" u2="&#xee;" k="20" />
+<hkern u1="Q" u2="&#xed;" k="20" />
+<hkern u1="Q" u2="&#xec;" k="20" />
+<hkern u1="Q" u2="&#xeb;" k="12" />
+<hkern u1="Q" u2="&#xea;" k="12" />
+<hkern u1="Q" u2="&#xe9;" k="12" />
+<hkern u1="Q" u2="&#xe8;" k="12" />
+<hkern u1="Q" u2="&#xe7;" k="12" />
+<hkern u1="Q" u2="&#xe6;" k="20" />
+<hkern u1="Q" u2="&#xe5;" k="20" />
+<hkern u1="Q" u2="&#xe4;" k="20" />
+<hkern u1="Q" u2="&#xe3;" k="20" />
+<hkern u1="Q" u2="&#xe2;" k="20" />
+<hkern u1="Q" u2="&#xe1;" k="20" />
+<hkern u1="Q" u2="&#xe0;" k="20" />
+<hkern u1="Q" u2="&#xdd;" k="63" />
+<hkern u1="Q" u2="&#xc6;" k="90" />
+<hkern u1="Q" u2="&#xc5;" k="29" />
+<hkern u1="Q" u2="&#xc4;" k="29" />
+<hkern u1="Q" u2="&#xc3;" k="29" />
+<hkern u1="Q" u2="&#xc2;" k="29" />
+<hkern u1="Q" u2="&#xc1;" k="29" />
+<hkern u1="Q" u2="&#xc0;" k="29" />
+<hkern u1="Q" u2="&#x7d;" k="35" />
+<hkern u1="Q" u2="x" k="27" />
+<hkern u1="Q" u2="u" k="16" />
+<hkern u1="Q" u2="s" k="12" />
+<hkern u1="Q" u2="r" k="18" />
+<hkern u1="Q" u2="q" k="12" />
+<hkern u1="Q" u2="p" k="18" />
+<hkern u1="Q" u2="o" k="12" />
+<hkern u1="Q" u2="n" k="18" />
+<hkern u1="Q" u2="m" k="18" />
+<hkern u1="Q" u2="k" k="18" />
+<hkern u1="Q" u2="j" k="20" />
+<hkern u1="Q" u2="i" k="20" />
+<hkern u1="Q" u2="h" k="18" />
+<hkern u1="Q" u2="g" k="12" />
+<hkern u1="Q" u2="e" k="12" />
+<hkern u1="Q" u2="d" k="12" />
+<hkern u1="Q" u2="c" k="12" />
+<hkern u1="Q" u2="b" k="18" />
+<hkern u1="Q" u2="a" k="20" />
+<hkern u1="Q" u2="]" k="37" />
+<hkern u1="Q" u2="Y" k="63" />
+<hkern u1="Q" u2="X" k="53" />
+<hkern u1="Q" u2="V" k="27" />
+<hkern u1="Q" u2="T" k="49" />
+<hkern u1="Q" u2="A" k="29" />
+<hkern u1="Q" u2="&#x2e;" k="39" />
+<hkern u1="Q" u2="&#x2c;" k="39" />
+<hkern u1="Q" u2="&#x29;" k="43" />
+<hkern u1="S" u2="&#xfb04;" k="53" />
+<hkern u1="S" u2="&#xfb03;" k="53" />
+<hkern u1="S" u2="&#xfb02;" k="53" />
+<hkern u1="S" u2="&#xfb01;" k="53" />
+<hkern u1="S" u2="&#x2122;" k="16" />
+<hkern u1="S" u2="&#xff;" k="59" />
+<hkern u1="S" u2="&#xfe;" k="16" />
+<hkern u1="S" u2="&#xfd;" k="59" />
+<hkern u1="S" u2="&#xfc;" k="18" />
+<hkern u1="S" u2="&#xfb;" k="18" />
+<hkern u1="S" u2="&#xfa;" k="18" />
+<hkern u1="S" u2="&#xf9;" k="18" />
+<hkern u1="S" u2="&#xf1;" k="16" />
+<hkern u1="S" u2="&#xef;" k="18" />
+<hkern u1="S" u2="&#xee;" k="18" />
+<hkern u1="S" u2="&#xed;" k="18" />
+<hkern u1="S" u2="&#xec;" k="18" />
+<hkern u1="S" u2="&#xdf;" k="53" />
+<hkern u1="S" u2="&#xdd;" k="16" />
+<hkern u1="S" u2="y" k="59" />
+<hkern u1="S" u2="x" k="43" />
+<hkern u1="S" u2="v" k="66" />
+<hkern u1="S" u2="u" k="18" />
+<hkern u1="S" u2="t" k="45" />
+<hkern u1="S" u2="s" k="14" />
+<hkern u1="S" u2="r" k="16" />
+<hkern u1="S" u2="p" k="16" />
+<hkern u1="S" u2="n" k="16" />
+<hkern u1="S" u2="m" k="16" />
+<hkern u1="S" u2="k" k="16" />
+<hkern u1="S" u2="j" k="18" />
+<hkern u1="S" u2="i" k="18" />
+<hkern u1="S" u2="h" k="16" />
+<hkern u1="S" u2="f" k="53" />
+<hkern u1="S" u2="b" k="16" />
+<hkern u1="S" u2="Y" k="16" />
+<hkern u1="S" u2="X" k="14" />
+<hkern u1="S" u2="V" k="12" />
+<hkern u1="S" u2="T" k="76" />
+<hkern u1="S" u2="&#x2a;" k="25" />
+<hkern u1="T" u2="&#xfb04;" k="61" />
+<hkern u1="T" u2="&#xfb03;" k="61" />
+<hkern u1="T" u2="&#xfb02;" k="61" />
+<hkern u1="T" u2="&#xfb01;" k="61" />
+<hkern u1="T" u2="&#x203a;" k="104" />
+<hkern u1="T" u2="&#x2039;" k="121" />
+<hkern u1="T" u2="&#x2026;" k="131" />
+<hkern u1="T" u2="&#x201e;" k="131" />
+<hkern u1="T" u2="&#x201a;" k="131" />
+<hkern u1="T" u2="&#x2014;" k="131" />
+<hkern u1="T" u2="&#x2013;" k="131" />
+<hkern u1="T" u2="&#xff;" k="141" />
+<hkern u1="T" u2="&#xfe;" k="12" />
+<hkern u1="T" u2="&#xfd;" k="141" />
+<hkern u1="T" u2="&#xfc;" k="135" />
+<hkern u1="T" u2="&#xfb;" k="135" />
+<hkern u1="T" u2="&#xfa;" k="135" />
+<hkern u1="T" u2="&#xf9;" k="135" />
+<hkern u1="T" u2="&#xf8;" k="174" />
+<hkern u1="T" u2="&#xf6;" k="174" />
+<hkern u1="T" u2="&#xf5;" k="174" />
+<hkern u1="T" u2="&#xf4;" k="174" />
+<hkern u1="T" u2="&#xf3;" k="174" />
+<hkern u1="T" u2="&#xf2;" k="174" />
+<hkern u1="T" u2="&#xf1;" k="137" />
+<hkern u1="T" u2="&#xf0;" k="174" />
+<hkern u1="T" u2="&#xef;" k="-31" />
+<hkern u1="T" u2="&#xee;" k="-2" />
+<hkern u1="T" u2="&#xed;" k="20" />
+<hkern u1="T" u2="&#xec;" k="20" />
+<hkern u1="T" u2="&#xeb;" k="174" />
+<hkern u1="T" u2="&#xea;" k="174" />
+<hkern u1="T" u2="&#xe9;" k="174" />
+<hkern u1="T" u2="&#xe8;" k="174" />
+<hkern u1="T" u2="&#xe7;" k="174" />
+<hkern u1="T" u2="&#xe6;" k="162" />
+<hkern u1="T" u2="&#xe5;" k="162" />
+<hkern u1="T" u2="&#xe4;" k="162" />
+<hkern u1="T" u2="&#xe3;" k="162" />
+<hkern u1="T" u2="&#xe2;" k="162" />
+<hkern u1="T" u2="&#xe1;" k="162" />
+<hkern u1="T" u2="&#xe0;" k="162" />
+<hkern u1="T" u2="&#xdf;" k="61" />
+<hkern u1="T" u2="&#xdd;" k="-88" />
+<hkern u1="T" u2="&#xd8;" k="49" />
+<hkern u1="T" u2="&#xd6;" k="49" />
+<hkern u1="T" u2="&#xd5;" k="49" />
+<hkern u1="T" u2="&#xd4;" k="49" />
+<hkern u1="T" u2="&#xd3;" k="49" />
+<hkern u1="T" u2="&#xd2;" k="49" />
+<hkern u1="T" u2="&#xc7;" k="49" />
+<hkern u1="T" u2="&#xc6;" k="109" />
+<hkern u1="T" u2="&#xc5;" k="127" />
+<hkern u1="T" u2="&#xc4;" k="127" />
+<hkern u1="T" u2="&#xc3;" k="127" />
+<hkern u1="T" u2="&#xc2;" k="127" />
+<hkern u1="T" u2="&#xc1;" k="127" />
+<hkern u1="T" u2="&#xc0;" k="127" />
+<hkern u1="T" u2="&#xbb;" k="104" />
+<hkern u1="T" u2="&#xae;" k="33" />
+<hkern u1="T" u2="&#xab;" k="121" />
+<hkern u1="T" u2="y" k="141" />
+<hkern u1="T" u2="x" k="139" />
+<hkern u1="T" u2="v" k="145" />
+<hkern u1="T" u2="u" k="135" />
+<hkern u1="T" u2="t" k="129" />
+<hkern u1="T" u2="s" k="156" />
+<hkern u1="T" u2="r" k="137" />
+<hkern u1="T" u2="q" k="174" />
+<hkern u1="T" u2="p" k="137" />
+<hkern u1="T" u2="o" k="174" />
+<hkern u1="T" u2="n" k="137" />
+<hkern u1="T" u2="m" k="137" />
+<hkern u1="T" u2="k" k="12" />
+<hkern u1="T" u2="j" k="20" />
+<hkern u1="T" u2="i" k="20" />
+<hkern u1="T" u2="h" k="12" />
+<hkern u1="T" u2="g" k="174" />
+<hkern u1="T" u2="f" k="61" />
+<hkern u1="T" u2="e" k="174" />
+<hkern u1="T" u2="d" k="174" />
+<hkern u1="T" u2="c" k="174" />
+<hkern u1="T" u2="b" k="12" />
+<hkern u1="T" u2="a" k="162" />
+<hkern u1="T" u2="Y" k="-88" />
+<hkern u1="T" u2="X" k="-72" />
+<hkern u1="T" u2="V" k="-76" />
+<hkern u1="T" u2="Q" k="49" />
+<hkern u1="T" u2="O" k="49" />
+<hkern u1="T" u2="G" k="49" />
+<hkern u1="T" u2="C" k="49" />
+<hkern u1="T" u2="A" k="127" />
+<hkern u1="T" u2="&#x40;" k="61" />
+<hkern u1="T" u2="&#x3b;" k="86" />
+<hkern u1="T" u2="&#x3a;" k="86" />
+<hkern u1="T" u2="&#x2f;" k="74" />
+<hkern u1="T" u2="&#x2e;" k="131" />
+<hkern u1="T" u2="&#x2d;" k="131" />
+<hkern u1="T" u2="&#x2c;" k="131" />
+<hkern u1="T" u2="&#x26;" k="84" />
+<hkern u1="U" u2="&#xfb04;" k="16" />
+<hkern u1="U" u2="&#xfb03;" k="16" />
+<hkern u1="U" u2="&#xfb02;" k="16" />
+<hkern u1="U" u2="&#xfb01;" k="16" />
+<hkern u1="U" u2="&#x2026;" k="37" />
+<hkern u1="U" u2="&#x201e;" k="37" />
+<hkern u1="U" u2="&#x201a;" k="37" />
+<hkern u1="U" u2="&#xff;" k="12" />
+<hkern u1="U" u2="&#xfe;" k="27" />
+<hkern u1="U" u2="&#xfd;" k="12" />
+<hkern u1="U" u2="&#xfc;" k="37" />
+<hkern u1="U" u2="&#xfb;" k="37" />
+<hkern u1="U" u2="&#xfa;" k="37" />
+<hkern u1="U" u2="&#xf9;" k="37" />
+<hkern u1="U" u2="&#xf8;" k="31" />
+<hkern u1="U" u2="&#xf6;" k="31" />
+<hkern u1="U" u2="&#xf5;" k="31" />
+<hkern u1="U" u2="&#xf4;" k="31" />
+<hkern u1="U" u2="&#xf3;" k="31" />
+<hkern u1="U" u2="&#xf2;" k="31" />
+<hkern u1="U" u2="&#xf1;" k="37" />
+<hkern u1="U" u2="&#xf0;" k="31" />
+<hkern u1="U" u2="&#xef;" k="31" />
+<hkern u1="U" u2="&#xee;" k="31" />
+<hkern u1="U" u2="&#xed;" k="31" />
+<hkern u1="U" u2="&#xec;" k="31" />
+<hkern u1="U" u2="&#xeb;" k="31" />
+<hkern u1="U" u2="&#xea;" k="31" />
+<hkern u1="U" u2="&#xe9;" k="31" />
+<hkern u1="U" u2="&#xe8;" k="31" />
+<hkern u1="U" u2="&#xe7;" k="31" />
+<hkern u1="U" u2="&#xe6;" k="35" />
+<hkern u1="U" u2="&#xe5;" k="35" />
+<hkern u1="U" u2="&#xe4;" k="35" />
+<hkern u1="U" u2="&#xe3;" k="35" />
+<hkern u1="U" u2="&#xe2;" k="35" />
+<hkern u1="U" u2="&#xe1;" k="35" />
+<hkern u1="U" u2="&#xe0;" k="35" />
+<hkern u1="U" u2="&#xdf;" k="16" />
+<hkern u1="U" u2="&#xc6;" k="20" />
+<hkern u1="U" u2="&#xc5;" k="41" />
+<hkern u1="U" u2="&#xc4;" k="41" />
+<hkern u1="U" u2="&#xc3;" k="41" />
+<hkern u1="U" u2="&#xc2;" k="41" />
+<hkern u1="U" u2="&#xc1;" k="41" />
+<hkern u1="U" u2="&#xc0;" k="41" />
+<hkern u1="U" u2="y" k="12" />
+<hkern u1="U" u2="x" k="20" />
+<hkern u1="U" u2="v" k="16" />
+<hkern u1="U" u2="u" k="37" />
+<hkern u1="U" u2="t" k="20" />
+<hkern u1="U" u2="s" k="33" />
+<hkern u1="U" u2="r" k="37" />
+<hkern u1="U" u2="q" k="31" />
+<hkern u1="U" u2="p" k="37" />
+<hkern u1="U" u2="o" k="31" />
+<hkern u1="U" u2="n" k="37" />
+<hkern u1="U" u2="m" k="37" />
+<hkern u1="U" u2="k" k="27" />
+<hkern u1="U" u2="j" k="31" />
+<hkern u1="U" u2="i" k="31" />
+<hkern u1="U" u2="h" k="27" />
+<hkern u1="U" u2="g" k="31" />
+<hkern u1="U" u2="f" k="16" />
+<hkern u1="U" u2="e" k="31" />
+<hkern u1="U" u2="d" k="31" />
+<hkern u1="U" u2="c" k="31" />
+<hkern u1="U" u2="b" k="27" />
+<hkern u1="U" u2="a" k="35" />
+<hkern u1="U" u2="A" k="41" />
+<hkern u1="U" u2="&#x2f;" k="29" />
+<hkern u1="U" u2="&#x2e;" k="37" />
+<hkern u1="U" u2="&#x2c;" k="37" />
+<hkern u1="U" u2="&#x29;" k="23" />
+<hkern u1="V" u2="&#xfb04;" k="23" />
+<hkern u1="V" u2="&#xfb03;" k="23" />
+<hkern u1="V" u2="&#xfb02;" k="23" />
+<hkern u1="V" u2="&#xfb01;" k="23" />
+<hkern u1="V" u2="&#x2122;" k="-16" />
+<hkern u1="V" u2="&#x203a;" k="25" />
+<hkern u1="V" u2="&#x2039;" k="63" />
+<hkern u1="V" u2="&#x2026;" k="131" />
+<hkern u1="V" u2="&#x201e;" k="131" />
+<hkern u1="V" u2="&#x201a;" k="131" />
+<hkern u1="V" u2="&#x2014;" k="68" />
+<hkern u1="V" u2="&#x2013;" k="68" />
+<hkern u1="V" u2="&#xff;" k="20" />
+<hkern u1="V" u2="&#xfe;" k="16" />
+<hkern u1="V" u2="&#xfd;" k="20" />
+<hkern u1="V" u2="&#xfc;" k="84" />
+<hkern u1="V" u2="&#xfb;" k="84" />
+<hkern u1="V" u2="&#xfa;" k="84" />
+<hkern u1="V" u2="&#xf9;" k="84" />
+<hkern u1="V" u2="&#xf8;" k="109" />
+<hkern u1="V" u2="&#xf6;" k="109" />
+<hkern u1="V" u2="&#xf5;" k="109" />
+<hkern u1="V" u2="&#xf4;" k="109" />
+<hkern u1="V" u2="&#xf3;" k="109" />
+<hkern u1="V" u2="&#xf2;" k="109" />
+<hkern u1="V" u2="&#xf1;" k="90" />
+<hkern u1="V" u2="&#xf0;" k="109" />
+<hkern u1="V" u2="&#xef;" k="-37" />
+<hkern u1="V" u2="&#xee;" k="-2" />
+<hkern u1="V" u2="&#xed;" k="18" />
+<hkern u1="V" u2="&#xec;" k="-6" />
+<hkern u1="V" u2="&#xeb;" k="109" />
+<hkern u1="V" u2="&#xea;" k="109" />
+<hkern u1="V" u2="&#xe9;" k="109" />
+<hkern u1="V" u2="&#xe8;" k="109" />
+<hkern u1="V" u2="&#xe7;" k="109" />
+<hkern u1="V" u2="&#xe6;" k="111" />
+<hkern u1="V" u2="&#xe5;" k="111" />
+<hkern u1="V" u2="&#xe4;" k="111" />
+<hkern u1="V" u2="&#xe3;" k="111" />
+<hkern u1="V" u2="&#xe2;" k="111" />
+<hkern u1="V" u2="&#xe1;" k="111" />
+<hkern u1="V" u2="&#xe0;" k="111" />
+<hkern u1="V" u2="&#xdf;" k="23" />
+<hkern u1="V" u2="&#xdd;" k="-98" />
+<hkern u1="V" u2="&#xd8;" k="27" />
+<hkern u1="V" u2="&#xd6;" k="27" />
+<hkern u1="V" u2="&#xd5;" k="27" />
+<hkern u1="V" u2="&#xd4;" k="27" />
+<hkern u1="V" u2="&#xd3;" k="27" />
+<hkern u1="V" u2="&#xd2;" k="27" />
+<hkern u1="V" u2="&#xc7;" k="27" />
+<hkern u1="V" u2="&#xc6;" k="98" />
+<hkern u1="V" u2="&#xc5;" k="90" />
+<hkern u1="V" u2="&#xc4;" k="90" />
+<hkern u1="V" u2="&#xc3;" k="90" />
+<hkern u1="V" u2="&#xc2;" k="90" />
+<hkern u1="V" u2="&#xc1;" k="90" />
+<hkern u1="V" u2="&#xc0;" k="90" />
+<hkern u1="V" u2="&#xbb;" k="25" />
+<hkern u1="V" u2="&#xae;" k="20" />
+<hkern u1="V" u2="&#xab;" k="63" />
+<hkern u1="V" u2="y" k="20" />
+<hkern u1="V" u2="x" k="31" />
+<hkern u1="V" u2="v" k="25" />
+<hkern u1="V" u2="u" k="84" />
+<hkern u1="V" u2="t" k="49" />
+<hkern u1="V" u2="s" k="102" />
+<hkern u1="V" u2="r" k="90" />
+<hkern u1="V" u2="q" k="109" />
+<hkern u1="V" u2="p" k="90" />
+<hkern u1="V" u2="o" k="109" />
+<hkern u1="V" u2="n" k="90" />
+<hkern u1="V" u2="m" k="90" />
+<hkern u1="V" u2="k" k="16" />
+<hkern u1="V" u2="j" k="18" />
+<hkern u1="V" u2="i" k="18" />
+<hkern u1="V" u2="h" k="16" />
+<hkern u1="V" u2="g" k="109" />
+<hkern u1="V" u2="f" k="23" />
+<hkern u1="V" u2="e" k="109" />
+<hkern u1="V" u2="d" k="109" />
+<hkern u1="V" u2="c" k="109" />
+<hkern u1="V" u2="b" k="16" />
+<hkern u1="V" u2="a" k="111" />
+<hkern u1="V" u2="Y" k="-98" />
+<hkern u1="V" u2="X" k="-68" />
+<hkern u1="V" u2="V" k="-72" />
+<hkern u1="V" u2="T" k="-63" />
+<hkern u1="V" u2="S" k="10" />
+<hkern u1="V" u2="Q" k="27" />
+<hkern u1="V" u2="O" k="27" />
+<hkern u1="V" u2="G" k="27" />
+<hkern u1="V" u2="C" k="27" />
+<hkern u1="V" u2="A" k="90" />
+<hkern u1="V" u2="&#x40;" k="35" />
+<hkern u1="V" u2="&#x3b;" k="18" />
+<hkern u1="V" u2="&#x3a;" k="18" />
+<hkern u1="V" u2="&#x2f;" k="72" />
+<hkern u1="V" u2="&#x2e;" k="131" />
+<hkern u1="V" u2="&#x2d;" k="68" />
+<hkern u1="V" u2="&#x2c;" k="131" />
+<hkern u1="V" u2="&#x26;" k="29" />
+<hkern u1="X" u2="&#xfb04;" k="31" />
+<hkern u1="X" u2="&#xfb03;" k="31" />
+<hkern u1="X" u2="&#xfb02;" k="31" />
+<hkern u1="X" u2="&#xfb01;" k="31" />
+<hkern u1="X" u2="&#x2039;" k="31" />
+<hkern u1="X" u2="&#x2014;" k="63" />
+<hkern u1="X" u2="&#x2013;" k="63" />
+<hkern u1="X" u2="&#xff;" k="74" />
+<hkern u1="X" u2="&#xfd;" k="74" />
+<hkern u1="X" u2="&#xfc;" k="63" />
+<hkern u1="X" u2="&#xfb;" k="63" />
+<hkern u1="X" u2="&#xfa;" k="63" />
+<hkern u1="X" u2="&#xf9;" k="63" />
+<hkern u1="X" u2="&#xf8;" k="82" />
+<hkern u1="X" u2="&#xf6;" k="82" />
+<hkern u1="X" u2="&#xf5;" k="82" />
+<hkern u1="X" u2="&#xf4;" k="82" />
+<hkern u1="X" u2="&#xf3;" k="82" />
+<hkern u1="X" u2="&#xf2;" k="82" />
+<hkern u1="X" u2="&#xf1;" k="16" />
+<hkern u1="X" u2="&#xf0;" k="82" />
+<hkern u1="X" u2="&#xeb;" k="82" />
+<hkern u1="X" u2="&#xea;" k="82" />
+<hkern u1="X" u2="&#xe9;" k="82" />
+<hkern u1="X" u2="&#xe8;" k="82" />
+<hkern u1="X" u2="&#xe7;" k="82" />
+<hkern u1="X" u2="&#xe6;" k="20" />
+<hkern u1="X" u2="&#xe5;" k="20" />
+<hkern u1="X" u2="&#xe4;" k="20" />
+<hkern u1="X" u2="&#xe3;" k="20" />
+<hkern u1="X" u2="&#xe2;" k="20" />
+<hkern u1="X" u2="&#xe1;" k="20" />
+<hkern u1="X" u2="&#xe0;" k="20" />
+<hkern u1="X" u2="&#xdf;" k="31" />
+<hkern u1="X" u2="&#xdd;" k="-76" />
+<hkern u1="X" u2="&#xd8;" k="53" />
+<hkern u1="X" u2="&#xd6;" k="53" />
+<hkern u1="X" u2="&#xd5;" k="53" />
+<hkern u1="X" u2="&#xd4;" k="53" />
+<hkern u1="X" u2="&#xd3;" k="53" />
+<hkern u1="X" u2="&#xd2;" k="53" />
+<hkern u1="X" u2="&#xc7;" k="53" />
+<hkern u1="X" u2="&#xc5;" k="-66" />
+<hkern u1="X" u2="&#xc4;" k="-66" />
+<hkern u1="X" u2="&#xc3;" k="-66" />
+<hkern u1="X" u2="&#xc2;" k="-66" />
+<hkern u1="X" u2="&#xc1;" k="-66" />
+<hkern u1="X" u2="&#xc0;" k="-66" />
+<hkern u1="X" u2="&#xab;" k="31" />
+<hkern u1="X" u2="y" k="74" />
+<hkern u1="X" u2="v" k="78" />
+<hkern u1="X" u2="u" k="63" />
+<hkern u1="X" u2="t" k="90" />
+<hkern u1="X" u2="s" k="18" />
+<hkern u1="X" u2="r" k="16" />
+<hkern u1="X" u2="q" k="82" />
+<hkern u1="X" u2="p" k="16" />
+<hkern u1="X" u2="o" k="82" />
+<hkern u1="X" u2="n" k="16" />
+<hkern u1="X" u2="m" k="16" />
+<hkern u1="X" u2="g" k="82" />
+<hkern u1="X" u2="f" k="31" />
+<hkern u1="X" u2="e" k="82" />
+<hkern u1="X" u2="d" k="82" />
+<hkern u1="X" u2="c" k="82" />
+<hkern u1="X" u2="a" k="20" />
+<hkern u1="X" u2="Y" k="-76" />
+<hkern u1="X" u2="X" k="-57" />
+<hkern u1="X" u2="V" k="-66" />
+<hkern u1="X" u2="T" k="-66" />
+<hkern u1="X" u2="S" k="12" />
+<hkern u1="X" u2="Q" k="53" />
+<hkern u1="X" u2="O" k="53" />
+<hkern u1="X" u2="G" k="53" />
+<hkern u1="X" u2="C" k="53" />
+<hkern u1="X" u2="A" k="-66" />
+<hkern u1="X" u2="&#x2d;" k="63" />
+<hkern u1="X" u2="&#x26;" k="35" />
+<hkern u1="Y" u2="&#xfb04;" k="49" />
+<hkern u1="Y" u2="&#xfb03;" k="49" />
+<hkern u1="Y" u2="&#xfb02;" k="49" />
+<hkern u1="Y" u2="&#xfb01;" k="49" />
+<hkern u1="Y" u2="&#x2122;" k="-53" />
+<hkern u1="Y" u2="&#x203a;" k="66" />
+<hkern u1="Y" u2="&#x2039;" k="121" />
+<hkern u1="Y" u2="&#x2026;" k="154" />
+<hkern u1="Y" u2="&#x201e;" k="154" />
+<hkern u1="Y" u2="&#x201a;" k="154" />
+<hkern u1="Y" u2="&#x2014;" k="135" />
+<hkern u1="Y" u2="&#x2013;" k="135" />
+<hkern u1="Y" u2="&#xff;" k="70" />
+<hkern u1="Y" u2="&#xfe;" k="16" />
+<hkern u1="Y" u2="&#xfd;" k="70" />
+<hkern u1="Y" u2="&#xfc;" k="139" />
+<hkern u1="Y" u2="&#xfb;" k="139" />
+<hkern u1="Y" u2="&#xfa;" k="139" />
+<hkern u1="Y" u2="&#xf9;" k="139" />
+<hkern u1="Y" u2="&#xf8;" k="178" />
+<hkern u1="Y" u2="&#xf6;" k="178" />
+<hkern u1="Y" u2="&#xf5;" k="178" />
+<hkern u1="Y" u2="&#xf4;" k="178" />
+<hkern u1="Y" u2="&#xf3;" k="178" />
+<hkern u1="Y" u2="&#xf2;" k="178" />
+<hkern u1="Y" u2="&#xf1;" k="143" />
+<hkern u1="Y" u2="&#xf0;" k="178" />
+<hkern u1="Y" u2="&#xef;" k="-47" />
+<hkern u1="Y" u2="&#xee;" k="18" />
+<hkern u1="Y" u2="&#xed;" k="18" />
+<hkern u1="Y" u2="&#xec;" k="-29" />
+<hkern u1="Y" u2="&#xeb;" k="178" />
+<hkern u1="Y" u2="&#xea;" k="178" />
+<hkern u1="Y" u2="&#xe9;" k="178" />
+<hkern u1="Y" u2="&#xe8;" k="178" />
+<hkern u1="Y" u2="&#xe7;" k="178" />
+<hkern u1="Y" u2="&#xe6;" k="166" />
+<hkern u1="Y" u2="&#xe5;" k="166" />
+<hkern u1="Y" u2="&#xe4;" k="166" />
+<hkern u1="Y" u2="&#xe3;" k="166" />
+<hkern u1="Y" u2="&#xe2;" k="166" />
+<hkern u1="Y" u2="&#xe1;" k="166" />
+<hkern u1="Y" u2="&#xe0;" k="166" />
+<hkern u1="Y" u2="&#xdf;" k="49" />
+<hkern u1="Y" u2="&#xde;" k="10" />
+<hkern u1="Y" u2="&#xdd;" k="-102" />
+<hkern u1="Y" u2="&#xd8;" k="61" />
+<hkern u1="Y" u2="&#xd6;" k="61" />
+<hkern u1="Y" u2="&#xd5;" k="61" />
+<hkern u1="Y" u2="&#xd4;" k="61" />
+<hkern u1="Y" u2="&#xd3;" k="61" />
+<hkern u1="Y" u2="&#xd2;" k="61" />
+<hkern u1="Y" u2="&#xd1;" k="10" />
+<hkern u1="Y" u2="&#xd0;" k="10" />
+<hkern u1="Y" u2="&#xcf;" k="10" />
+<hkern u1="Y" u2="&#xce;" k="10" />
+<hkern u1="Y" u2="&#xcd;" k="10" />
+<hkern u1="Y" u2="&#xcc;" k="10" />
+<hkern u1="Y" u2="&#xcb;" k="10" />
+<hkern u1="Y" u2="&#xca;" k="10" />
+<hkern u1="Y" u2="&#xc9;" k="10" />
+<hkern u1="Y" u2="&#xc8;" k="10" />
+<hkern u1="Y" u2="&#xc7;" k="61" />
+<hkern u1="Y" u2="&#xc6;" k="147" />
+<hkern u1="Y" u2="&#xc5;" k="131" />
+<hkern u1="Y" u2="&#xc4;" k="131" />
+<hkern u1="Y" u2="&#xc3;" k="131" />
+<hkern u1="Y" u2="&#xc2;" k="131" />
+<hkern u1="Y" u2="&#xc1;" k="131" />
+<hkern u1="Y" u2="&#xc0;" k="131" />
+<hkern u1="Y" u2="&#xbb;" k="66" />
+<hkern u1="Y" u2="&#xae;" k="47" />
+<hkern u1="Y" u2="&#xab;" k="121" />
+<hkern u1="Y" u2="&#x7d;" k="-25" />
+<hkern u1="Y" u2="y" k="70" />
+<hkern u1="Y" u2="x" k="88" />
+<hkern u1="Y" u2="v" k="72" />
+<hkern u1="Y" u2="u" k="139" />
+<hkern u1="Y" u2="t" k="113" />
+<hkern u1="Y" u2="s" k="174" />
+<hkern u1="Y" u2="r" k="143" />
+<hkern u1="Y" u2="q" k="178" />
+<hkern u1="Y" u2="p" k="143" />
+<hkern u1="Y" u2="o" k="178" />
+<hkern u1="Y" u2="n" k="143" />
+<hkern u1="Y" u2="m" k="143" />
+<hkern u1="Y" u2="k" k="16" />
+<hkern u1="Y" u2="j" k="18" />
+<hkern u1="Y" u2="i" k="18" />
+<hkern u1="Y" u2="h" k="16" />
+<hkern u1="Y" u2="g" k="178" />
+<hkern u1="Y" u2="f" k="49" />
+<hkern u1="Y" u2="e" k="178" />
+<hkern u1="Y" u2="d" k="178" />
+<hkern u1="Y" u2="c" k="178" />
+<hkern u1="Y" u2="b" k="16" />
+<hkern u1="Y" u2="a" k="166" />
+<hkern u1="Y" u2="]" k="-20" />
+<hkern u1="Y" u2="Y" k="-102" />
+<hkern u1="Y" u2="X" k="-92" />
+<hkern u1="Y" u2="V" k="-92" />
+<hkern u1="Y" u2="T" k="-86" />
+<hkern u1="Y" u2="S" k="18" />
+<hkern u1="Y" u2="R" k="10" />
+<hkern u1="Y" u2="Q" k="61" />
+<hkern u1="Y" u2="P" k="10" />
+<hkern u1="Y" u2="O" k="61" />
+<hkern u1="Y" u2="N" k="10" />
+<hkern u1="Y" u2="M" k="10" />
+<hkern u1="Y" u2="L" k="10" />
+<hkern u1="Y" u2="K" k="10" />
+<hkern u1="Y" u2="I" k="10" />
+<hkern u1="Y" u2="H" k="10" />
+<hkern u1="Y" u2="G" k="61" />
+<hkern u1="Y" u2="F" k="10" />
+<hkern u1="Y" u2="E" k="10" />
+<hkern u1="Y" u2="D" k="10" />
+<hkern u1="Y" u2="C" k="61" />
+<hkern u1="Y" u2="B" k="10" />
+<hkern u1="Y" u2="A" k="131" />
+<hkern u1="Y" u2="&#x40;" k="72" />
+<hkern u1="Y" u2="&#x3b;" k="53" />
+<hkern u1="Y" u2="&#x3a;" k="53" />
+<hkern u1="Y" u2="&#x2f;" k="90" />
+<hkern u1="Y" u2="&#x2e;" k="154" />
+<hkern u1="Y" u2="&#x2d;" k="135" />
+<hkern u1="Y" u2="&#x2c;" k="154" />
+<hkern u1="Y" u2="&#x26;" k="53" />
+<hkern u1="[" u2="&#xff;" k="31" />
+<hkern u1="[" u2="&#xfd;" k="31" />
+<hkern u1="[" u2="&#xfc;" k="47" />
+<hkern u1="[" u2="&#xfb;" k="47" />
+<hkern u1="[" u2="&#xfa;" k="47" />
+<hkern u1="[" u2="&#xf9;" k="47" />
+<hkern u1="[" u2="&#xf8;" k="51" />
+<hkern u1="[" u2="&#xf6;" k="51" />
+<hkern u1="[" u2="&#xf5;" k="51" />
+<hkern u1="[" u2="&#xf4;" k="51" />
+<hkern u1="[" u2="&#xf3;" k="51" />
+<hkern u1="[" u2="&#xf2;" k="51" />
+<hkern u1="[" u2="&#xf1;" k="41" />
+<hkern u1="[" u2="&#xf0;" k="51" />
+<hkern u1="[" u2="&#xeb;" k="51" />
+<hkern u1="[" u2="&#xea;" k="51" />
+<hkern u1="[" u2="&#xe9;" k="51" />
+<hkern u1="[" u2="&#xe8;" k="51" />
+<hkern u1="[" u2="&#xe7;" k="51" />
+<hkern u1="[" u2="&#xe6;" k="41" />
+<hkern u1="[" u2="&#xe5;" k="41" />
+<hkern u1="[" u2="&#xe4;" k="41" />
+<hkern u1="[" u2="&#xe3;" k="41" />
+<hkern u1="[" u2="&#xe2;" k="41" />
+<hkern u1="[" u2="&#xe1;" k="41" />
+<hkern u1="[" u2="&#xe0;" k="41" />
+<hkern u1="[" u2="&#xdd;" k="-20" />
+<hkern u1="[" u2="&#xd8;" k="35" />
+<hkern u1="[" u2="&#xd6;" k="35" />
+<hkern u1="[" u2="&#xd5;" k="35" />
+<hkern u1="[" u2="&#xd4;" k="35" />
+<hkern u1="[" u2="&#xd3;" k="35" />
+<hkern u1="[" u2="&#xd2;" k="35" />
+<hkern u1="[" u2="&#xc7;" k="35" />
+<hkern u1="[" u2="&#xc5;" k="35" />
+<hkern u1="[" u2="&#xc4;" k="35" />
+<hkern u1="[" u2="&#xc3;" k="35" />
+<hkern u1="[" u2="&#xc2;" k="35" />
+<hkern u1="[" u2="&#xc1;" k="35" />
+<hkern u1="[" u2="&#xc0;" k="35" />
+<hkern u1="[" u2="y" k="31" />
+<hkern u1="[" u2="x" k="23" />
+<hkern u1="[" u2="v" k="43" />
+<hkern u1="[" u2="u" k="47" />
+<hkern u1="[" u2="t" k="41" />
+<hkern u1="[" u2="s" k="41" />
+<hkern u1="[" u2="r" k="41" />
+<hkern u1="[" u2="q" k="51" />
+<hkern u1="[" u2="p" k="41" />
+<hkern u1="[" u2="o" k="51" />
+<hkern u1="[" u2="n" k="41" />
+<hkern u1="[" u2="m" k="41" />
+<hkern u1="[" u2="g" k="51" />
+<hkern u1="[" u2="e" k="51" />
+<hkern u1="[" u2="d" k="51" />
+<hkern u1="[" u2="c" k="51" />
+<hkern u1="[" u2="a" k="41" />
+<hkern u1="[" u2="Y" k="-20" />
+<hkern u1="[" u2="Q" k="35" />
+<hkern u1="[" u2="O" k="35" />
+<hkern u1="[" u2="G" k="35" />
+<hkern u1="[" u2="C" k="35" />
+<hkern u1="[" u2="A" k="35" />
+<hkern u1="\" u2="&#x201d;" k="82" />
+<hkern u1="\" u2="&#x2019;" k="82" />
+<hkern u1="\" u2="&#xff;" k="27" />
+<hkern u1="\" u2="&#xfd;" k="27" />
+<hkern u1="\" u2="&#xdd;" k="90" />
+<hkern u1="\" u2="&#xdc;" k="29" />
+<hkern u1="\" u2="&#xdb;" k="29" />
+<hkern u1="\" u2="&#xda;" k="29" />
+<hkern u1="\" u2="&#xd9;" k="29" />
+<hkern u1="\" u2="&#xd8;" k="20" />
+<hkern u1="\" u2="&#xd6;" k="20" />
+<hkern u1="\" u2="&#xd5;" k="20" />
+<hkern u1="\" u2="&#xd4;" k="20" />
+<hkern u1="\" u2="&#xd3;" k="20" />
+<hkern u1="\" u2="&#xd2;" k="20" />
+<hkern u1="\" u2="&#xc7;" k="20" />
+<hkern u1="\" u2="&#xc6;" k="-16" />
+<hkern u1="\" u2="y" k="27" />
+<hkern u1="\" u2="v" k="39" />
+<hkern u1="\" u2="t" k="20" />
+<hkern u1="\" u2="Y" k="90" />
+<hkern u1="\" u2="V" k="72" />
+<hkern u1="\" u2="U" k="29" />
+<hkern u1="\" u2="T" k="74" />
+<hkern u1="\" u2="Q" k="20" />
+<hkern u1="\" u2="O" k="20" />
+<hkern u1="\" u2="G" k="20" />
+<hkern u1="\" u2="C" k="20" />
+<hkern u1="\" u2="&#x27;" k="82" />
+<hkern u1="\" u2="&#x22;" k="82" />
+<hkern u1="a" u2="&#xfb04;" k="12" />
+<hkern u1="a" u2="&#xfb03;" k="12" />
+<hkern u1="a" u2="&#xfb02;" k="12" />
+<hkern u1="a" u2="&#xfb01;" k="12" />
+<hkern u1="a" u2="&#x2122;" k="51" />
+<hkern u1="a" u2="&#x201d;" k="29" />
+<hkern u1="a" u2="&#x201c;" k="27" />
+<hkern u1="a" u2="&#x2019;" k="29" />
+<hkern u1="a" u2="&#x2018;" k="27" />
+<hkern u1="a" u2="&#xff;" k="14" />
+<hkern u1="a" u2="&#xfd;" k="14" />
+<hkern u1="a" u2="&#xfc;" k="8" />
+<hkern u1="a" u2="&#xfb;" k="8" />
+<hkern u1="a" u2="&#xfa;" k="8" />
+<hkern u1="a" u2="&#xf9;" k="8" />
+<hkern u1="a" u2="&#xdf;" k="12" />
+<hkern u1="a" u2="&#xde;" k="29" />
+<hkern u1="a" u2="&#xdd;" k="176" />
+<hkern u1="a" u2="&#xdc;" k="45" />
+<hkern u1="a" u2="&#xdb;" k="45" />
+<hkern u1="a" u2="&#xda;" k="45" />
+<hkern u1="a" u2="&#xd9;" k="45" />
+<hkern u1="a" u2="&#xd8;" k="20" />
+<hkern u1="a" u2="&#xd6;" k="20" />
+<hkern u1="a" u2="&#xd5;" k="20" />
+<hkern u1="a" u2="&#xd4;" k="20" />
+<hkern u1="a" u2="&#xd3;" k="20" />
+<hkern u1="a" u2="&#xd2;" k="20" />
+<hkern u1="a" u2="&#xd1;" k="29" />
+<hkern u1="a" u2="&#xd0;" k="29" />
+<hkern u1="a" u2="&#xcf;" k="29" />
+<hkern u1="a" u2="&#xce;" k="29" />
+<hkern u1="a" u2="&#xcd;" k="29" />
+<hkern u1="a" u2="&#xcc;" k="29" />
+<hkern u1="a" u2="&#xcb;" k="29" />
+<hkern u1="a" u2="&#xca;" k="29" />
+<hkern u1="a" u2="&#xc9;" k="29" />
+<hkern u1="a" u2="&#xc8;" k="29" />
+<hkern u1="a" u2="&#xc7;" k="20" />
+<hkern u1="a" u2="&#xc5;" k="10" />
+<hkern u1="a" u2="&#xc4;" k="10" />
+<hkern u1="a" u2="&#xc3;" k="10" />
+<hkern u1="a" u2="&#xc2;" k="10" />
+<hkern u1="a" u2="&#xc1;" k="10" />
+<hkern u1="a" u2="&#xc0;" k="10" />
+<hkern u1="a" u2="&#x7d;" k="41" />
+<hkern u1="a" u2="y" k="14" />
+<hkern u1="a" u2="v" k="20" />
+<hkern u1="a" u2="u" k="8" />
+<hkern u1="a" u2="t" k="10" />
+<hkern u1="a" u2="f" k="12" />
+<hkern u1="a" u2="]" k="47" />
+<hkern u1="a" u2="\" k="47" />
+<hkern u1="a" u2="Y" k="176" />
+<hkern u1="a" u2="X" k="12" />
+<hkern u1="a" u2="V" k="109" />
+<hkern u1="a" u2="U" k="45" />
+<hkern u1="a" u2="T" k="186" />
+<hkern u1="a" u2="S" k="25" />
+<hkern u1="a" u2="R" k="29" />
+<hkern u1="a" u2="Q" k="20" />
+<hkern u1="a" u2="P" k="29" />
+<hkern u1="a" u2="O" k="20" />
+<hkern u1="a" u2="N" k="29" />
+<hkern u1="a" u2="M" k="29" />
+<hkern u1="a" u2="L" k="29" />
+<hkern u1="a" u2="K" k="29" />
+<hkern u1="a" u2="I" k="29" />
+<hkern u1="a" u2="H" k="29" />
+<hkern u1="a" u2="G" k="20" />
+<hkern u1="a" u2="F" k="29" />
+<hkern u1="a" u2="E" k="29" />
+<hkern u1="a" u2="D" k="29" />
+<hkern u1="a" u2="C" k="20" />
+<hkern u1="a" u2="B" k="29" />
+<hkern u1="a" u2="A" k="10" />
+<hkern u1="a" u2="&#x3f;" k="39" />
+<hkern u1="a" u2="&#x2a;" k="29" />
+<hkern u1="a" u2="&#x29;" k="41" />
+<hkern u1="a" u2="&#x27;" k="29" />
+<hkern u1="a" u2="&#x26;" k="12" />
+<hkern u1="a" u2="&#x22;" k="29" />
+<hkern u1="b" u2="&#xfb04;" k="10" />
+<hkern u1="b" u2="&#xfb03;" k="10" />
+<hkern u1="b" u2="&#xfb02;" k="10" />
+<hkern u1="b" u2="&#xfb01;" k="10" />
+<hkern u1="b" u2="&#x2122;" k="47" />
+<hkern u1="b" u2="&#x201d;" k="33" />
+<hkern u1="b" u2="&#x201c;" k="31" />
+<hkern u1="b" u2="&#x2019;" k="33" />
+<hkern u1="b" u2="&#x2018;" k="31" />
+<hkern u1="b" u2="&#xff;" k="10" />
+<hkern u1="b" u2="&#xfd;" k="10" />
+<hkern u1="b" u2="&#xdf;" k="10" />
+<hkern u1="b" u2="&#xde;" k="29" />
+<hkern u1="b" u2="&#xdd;" k="178" />
+<hkern u1="b" u2="&#xdc;" k="31" />
+<hkern u1="b" u2="&#xdb;" k="31" />
+<hkern u1="b" u2="&#xda;" k="31" />
+<hkern u1="b" u2="&#xd9;" k="31" />
+<hkern u1="b" u2="&#xd8;" k="12" />
+<hkern u1="b" u2="&#xd6;" k="12" />
+<hkern u1="b" u2="&#xd5;" k="12" />
+<hkern u1="b" u2="&#xd4;" k="12" />
+<hkern u1="b" u2="&#xd3;" k="12" />
+<hkern u1="b" u2="&#xd2;" k="12" />
+<hkern u1="b" u2="&#xd1;" k="29" />
+<hkern u1="b" u2="&#xd0;" k="29" />
+<hkern u1="b" u2="&#xcf;" k="29" />
+<hkern u1="b" u2="&#xce;" k="29" />
+<hkern u1="b" u2="&#xcd;" k="29" />
+<hkern u1="b" u2="&#xcc;" k="29" />
+<hkern u1="b" u2="&#xcb;" k="29" />
+<hkern u1="b" u2="&#xca;" k="29" />
+<hkern u1="b" u2="&#xc9;" k="29" />
+<hkern u1="b" u2="&#xc8;" k="29" />
+<hkern u1="b" u2="&#xc7;" k="12" />
+<hkern u1="b" u2="&#xc5;" k="25" />
+<hkern u1="b" u2="&#xc4;" k="25" />
+<hkern u1="b" u2="&#xc3;" k="25" />
+<hkern u1="b" u2="&#xc2;" k="25" />
+<hkern u1="b" u2="&#xc1;" k="25" />
+<hkern u1="b" u2="&#xc0;" k="25" />
+<hkern u1="b" u2="&#x7d;" k="47" />
+<hkern u1="b" u2="y" k="10" />
+<hkern u1="b" u2="x" k="31" />
+<hkern u1="b" u2="v" k="14" />
+<hkern u1="b" u2="t" k="8" />
+<hkern u1="b" u2="f" k="10" />
+<hkern u1="b" u2="]" k="51" />
+<hkern u1="b" u2="\" k="45" />
+<hkern u1="b" u2="Y" k="178" />
+<hkern u1="b" u2="X" k="84" />
+<hkern u1="b" u2="V" k="109" />
+<hkern u1="b" u2="U" k="31" />
+<hkern u1="b" u2="T" k="176" />
+<hkern u1="b" u2="S" k="29" />
+<hkern u1="b" u2="R" k="29" />
+<hkern u1="b" u2="Q" k="12" />
+<hkern u1="b" u2="P" k="29" />
+<hkern u1="b" u2="O" k="12" />
+<hkern u1="b" u2="N" k="29" />
+<hkern u1="b" u2="M" k="29" />
+<hkern u1="b" u2="L" k="29" />
+<hkern u1="b" u2="K" k="29" />
+<hkern u1="b" u2="I" k="29" />
+<hkern u1="b" u2="H" k="29" />
+<hkern u1="b" u2="G" k="12" />
+<hkern u1="b" u2="F" k="29" />
+<hkern u1="b" u2="E" k="29" />
+<hkern u1="b" u2="D" k="29" />
+<hkern u1="b" u2="C" k="12" />
+<hkern u1="b" u2="B" k="29" />
+<hkern u1="b" u2="A" k="25" />
+<hkern u1="b" u2="&#x3f;" k="41" />
+<hkern u1="b" u2="&#x2a;" k="29" />
+<hkern u1="b" u2="&#x29;" k="55" />
+<hkern u1="b" u2="&#x27;" k="33" />
+<hkern u1="b" u2="&#x22;" k="33" />
+<hkern u1="c" u2="&#x2122;" k="25" />
+<hkern u1="c" u2="&#x2014;" k="25" />
+<hkern u1="c" u2="&#x2013;" k="25" />
+<hkern u1="c" u2="&#xf8;" k="8" />
+<hkern u1="c" u2="&#xf6;" k="8" />
+<hkern u1="c" u2="&#xf5;" k="8" />
+<hkern u1="c" u2="&#xf4;" k="8" />
+<hkern u1="c" u2="&#xf3;" k="8" />
+<hkern u1="c" u2="&#xf2;" k="8" />
+<hkern u1="c" u2="&#xf0;" k="8" />
+<hkern u1="c" u2="&#xeb;" k="8" />
+<hkern u1="c" u2="&#xea;" k="8" />
+<hkern u1="c" u2="&#xe9;" k="8" />
+<hkern u1="c" u2="&#xe8;" k="8" />
+<hkern u1="c" u2="&#xe7;" k="8" />
+<hkern u1="c" u2="&#xdd;" k="143" />
+<hkern u1="c" u2="&#xdc;" k="18" />
+<hkern u1="c" u2="&#xdb;" k="18" />
+<hkern u1="c" u2="&#xda;" k="18" />
+<hkern u1="c" u2="&#xd9;" k="18" />
+<hkern u1="c" u2="&#xd8;" k="23" />
+<hkern u1="c" u2="&#xd6;" k="23" />
+<hkern u1="c" u2="&#xd5;" k="23" />
+<hkern u1="c" u2="&#xd4;" k="23" />
+<hkern u1="c" u2="&#xd3;" k="23" />
+<hkern u1="c" u2="&#xd2;" k="23" />
+<hkern u1="c" u2="&#xc7;" k="23" />
+<hkern u1="c" u2="q" k="8" />
+<hkern u1="c" u2="o" k="8" />
+<hkern u1="c" u2="g" k="8" />
+<hkern u1="c" u2="e" k="8" />
+<hkern u1="c" u2="d" k="8" />
+<hkern u1="c" u2="c" k="8" />
+<hkern u1="c" u2="]" k="25" />
+<hkern u1="c" u2="Y" k="143" />
+<hkern u1="c" u2="V" k="63" />
+<hkern u1="c" u2="U" k="18" />
+<hkern u1="c" u2="T" k="197" />
+<hkern u1="c" u2="S" k="23" />
+<hkern u1="c" u2="Q" k="23" />
+<hkern u1="c" u2="O" k="23" />
+<hkern u1="c" u2="G" k="23" />
+<hkern u1="c" u2="C" k="23" />
+<hkern u1="c" u2="&#x2d;" k="25" />
+<hkern u1="c" u2="&#x29;" k="20" />
+<hkern u1="c" u2="&#x26;" k="35" />
+<hkern u1="e" u2="&#x2122;" k="43" />
+<hkern u1="e" u2="&#x201d;" k="25" />
+<hkern u1="e" u2="&#x201c;" k="23" />
+<hkern u1="e" u2="&#x2019;" k="25" />
+<hkern u1="e" u2="&#x2018;" k="23" />
+<hkern u1="e" u2="&#xde;" k="23" />
+<hkern u1="e" u2="&#xdd;" k="170" />
+<hkern u1="e" u2="&#xdc;" k="27" />
+<hkern u1="e" u2="&#xdb;" k="27" />
+<hkern u1="e" u2="&#xda;" k="27" />
+<hkern u1="e" u2="&#xd9;" k="27" />
+<hkern u1="e" u2="&#xd8;" k="10" />
+<hkern u1="e" u2="&#xd6;" k="10" />
+<hkern u1="e" u2="&#xd5;" k="10" />
+<hkern u1="e" u2="&#xd4;" k="10" />
+<hkern u1="e" u2="&#xd3;" k="10" />
+<hkern u1="e" u2="&#xd2;" k="10" />
+<hkern u1="e" u2="&#xd1;" k="23" />
+<hkern u1="e" u2="&#xd0;" k="23" />
+<hkern u1="e" u2="&#xcf;" k="23" />
+<hkern u1="e" u2="&#xce;" k="23" />
+<hkern u1="e" u2="&#xcd;" k="23" />
+<hkern u1="e" u2="&#xcc;" k="23" />
+<hkern u1="e" u2="&#xcb;" k="23" />
+<hkern u1="e" u2="&#xca;" k="23" />
+<hkern u1="e" u2="&#xc9;" k="23" />
+<hkern u1="e" u2="&#xc8;" k="23" />
+<hkern u1="e" u2="&#xc7;" k="10" />
+<hkern u1="e" u2="&#xc5;" k="10" />
+<hkern u1="e" u2="&#xc4;" k="10" />
+<hkern u1="e" u2="&#xc3;" k="10" />
+<hkern u1="e" u2="&#xc2;" k="10" />
+<hkern u1="e" u2="&#xc1;" k="10" />
+<hkern u1="e" u2="&#xc0;" k="10" />
+<hkern u1="e" u2="&#x7d;" k="39" />
+<hkern u1="e" u2="x" k="12" />
+<hkern u1="e" u2="v" k="10" />
+<hkern u1="e" u2="]" k="43" />
+<hkern u1="e" u2="\" k="39" />
+<hkern u1="e" u2="Y" k="170" />
+<hkern u1="e" u2="X" k="33" />
+<hkern u1="e" u2="V" k="111" />
+<hkern u1="e" u2="U" k="27" />
+<hkern u1="e" u2="T" k="166" />
+<hkern u1="e" u2="S" k="23" />
+<hkern u1="e" u2="R" k="23" />
+<hkern u1="e" u2="Q" k="10" />
+<hkern u1="e" u2="P" k="23" />
+<hkern u1="e" u2="O" k="10" />
+<hkern u1="e" u2="N" k="23" />
+<hkern u1="e" u2="M" k="23" />
+<hkern u1="e" u2="L" k="23" />
+<hkern u1="e" u2="K" k="23" />
+<hkern u1="e" u2="I" k="23" />
+<hkern u1="e" u2="H" k="23" />
+<hkern u1="e" u2="G" k="10" />
+<hkern u1="e" u2="F" k="23" />
+<hkern u1="e" u2="E" k="23" />
+<hkern u1="e" u2="D" k="23" />
+<hkern u1="e" u2="C" k="10" />
+<hkern u1="e" u2="B" k="23" />
+<hkern u1="e" u2="A" k="10" />
+<hkern u1="e" u2="&#x3f;" k="35" />
+<hkern u1="e" u2="&#x2a;" k="23" />
+<hkern u1="e" u2="&#x29;" k="43" />
+<hkern u1="e" u2="&#x27;" k="25" />
+<hkern u1="e" u2="&#x26;" k="12" />
+<hkern u1="e" u2="&#x22;" k="25" />
+<hkern u1="f" u2="&#x2039;" k="31" />
+<hkern u1="f" u2="&#x2026;" k="59" />
+<hkern u1="f" u2="&#x201e;" k="59" />
+<hkern u1="f" u2="&#x201a;" k="59" />
+<hkern u1="f" u2="&#x2014;" k="63" />
+<hkern u1="f" u2="&#x2013;" k="63" />
+<hkern u1="f" u2="&#xff;" k="-66" />
+<hkern u1="f" u2="&#xfd;" k="-66" />
+<hkern u1="f" u2="&#xf8;" k="18" />
+<hkern u1="f" u2="&#xf6;" k="18" />
+<hkern u1="f" u2="&#xf5;" k="18" />
+<hkern u1="f" u2="&#xf4;" k="18" />
+<hkern u1="f" u2="&#xf3;" k="18" />
+<hkern u1="f" u2="&#xf2;" k="18" />
+<hkern u1="f" u2="&#xf0;" k="18" />
+<hkern u1="f" u2="&#xeb;" k="18" />
+<hkern u1="f" u2="&#xea;" k="18" />
+<hkern u1="f" u2="&#xe9;" k="18" />
+<hkern u1="f" u2="&#xe8;" k="18" />
+<hkern u1="f" u2="&#xe7;" k="18" />
+<hkern u1="f" u2="&#xe6;" k="33" />
+<hkern u1="f" u2="&#xe5;" k="33" />
+<hkern u1="f" u2="&#xe4;" k="33" />
+<hkern u1="f" u2="&#xe3;" k="33" />
+<hkern u1="f" u2="&#xe2;" k="33" />
+<hkern u1="f" u2="&#xe1;" k="33" />
+<hkern u1="f" u2="&#xe0;" k="33" />
+<hkern u1="f" u2="&#xdd;" k="-39" />
+<hkern u1="f" u2="&#xc5;" k="92" />
+<hkern u1="f" u2="&#xc4;" k="92" />
+<hkern u1="f" u2="&#xc3;" k="92" />
+<hkern u1="f" u2="&#xc2;" k="92" />
+<hkern u1="f" u2="&#xc1;" k="92" />
+<hkern u1="f" u2="&#xc0;" k="92" />
+<hkern u1="f" u2="&#xab;" k="31" />
+<hkern u1="f" u2="y" k="-66" />
+<hkern u1="f" u2="x" k="-31" />
+<hkern u1="f" u2="v" k="-66" />
+<hkern u1="f" u2="t" k="-43" />
+<hkern u1="f" u2="q" k="18" />
+<hkern u1="f" u2="o" k="18" />
+<hkern u1="f" u2="g" k="18" />
+<hkern u1="f" u2="e" k="18" />
+<hkern u1="f" u2="d" k="18" />
+<hkern u1="f" u2="c" k="18" />
+<hkern u1="f" u2="a" k="33" />
+<hkern u1="f" u2="Y" k="-39" />
+<hkern u1="f" u2="V" k="-14" />
+<hkern u1="f" u2="A" k="92" />
+<hkern u1="f" u2="&#x2f;" k="35" />
+<hkern u1="f" u2="&#x2e;" k="59" />
+<hkern u1="f" u2="&#x2d;" k="63" />
+<hkern u1="f" u2="&#x2c;" k="59" />
+<hkern u1="f" u2="&#x26;" k="39" />
+<hkern u1="g" u2="&#x2122;" k="37" />
+<hkern u1="g" u2="&#xde;" k="20" />
+<hkern u1="g" u2="&#xdd;" k="143" />
+<hkern u1="g" u2="&#xdc;" k="37" />
+<hkern u1="g" u2="&#xdb;" k="37" />
+<hkern u1="g" u2="&#xda;" k="37" />
+<hkern u1="g" u2="&#xd9;" k="37" />
+<hkern u1="g" u2="&#xd8;" k="18" />
+<hkern u1="g" u2="&#xd6;" k="18" />
+<hkern u1="g" u2="&#xd5;" k="18" />
+<hkern u1="g" u2="&#xd4;" k="18" />
+<hkern u1="g" u2="&#xd3;" k="18" />
+<hkern u1="g" u2="&#xd2;" k="18" />
+<hkern u1="g" u2="&#xd1;" k="20" />
+<hkern u1="g" u2="&#xd0;" k="20" />
+<hkern u1="g" u2="&#xcf;" k="20" />
+<hkern u1="g" u2="&#xce;" k="20" />
+<hkern u1="g" u2="&#xcd;" k="20" />
+<hkern u1="g" u2="&#xcc;" k="20" />
+<hkern u1="g" u2="&#xcb;" k="20" />
+<hkern u1="g" u2="&#xca;" k="20" />
+<hkern u1="g" u2="&#xc9;" k="20" />
+<hkern u1="g" u2="&#xc8;" k="20" />
+<hkern u1="g" u2="&#xc7;" k="18" />
+<hkern u1="g" u2="&#xc5;" k="12" />
+<hkern u1="g" u2="&#xc4;" k="12" />
+<hkern u1="g" u2="&#xc3;" k="12" />
+<hkern u1="g" u2="&#xc2;" k="12" />
+<hkern u1="g" u2="&#xc1;" k="12" />
+<hkern u1="g" u2="&#xc0;" k="12" />
+<hkern u1="g" u2="&#x7d;" k="37" />
+<hkern u1="g" u2="]" k="41" />
+<hkern u1="g" u2="\" k="31" />
+<hkern u1="g" u2="Y" k="143" />
+<hkern u1="g" u2="X" k="16" />
+<hkern u1="g" u2="V" k="90" />
+<hkern u1="g" u2="U" k="37" />
+<hkern u1="g" u2="T" k="137" />
+<hkern u1="g" u2="S" k="16" />
+<hkern u1="g" u2="R" k="20" />
+<hkern u1="g" u2="Q" k="18" />
+<hkern u1="g" u2="P" k="20" />
+<hkern u1="g" u2="O" k="18" />
+<hkern u1="g" u2="N" k="20" />
+<hkern u1="g" u2="M" k="20" />
+<hkern u1="g" u2="L" k="20" />
+<hkern u1="g" u2="K" k="20" />
+<hkern u1="g" u2="I" k="20" />
+<hkern u1="g" u2="H" k="20" />
+<hkern u1="g" u2="G" k="18" />
+<hkern u1="g" u2="F" k="20" />
+<hkern u1="g" u2="E" k="20" />
+<hkern u1="g" u2="D" k="20" />
+<hkern u1="g" u2="C" k="18" />
+<hkern u1="g" u2="B" k="20" />
+<hkern u1="g" u2="A" k="12" />
+<hkern u1="g" u2="&#x29;" k="37" />
+<hkern u1="g" u2="&#x26;" k="14" />
+<hkern u1="h" u2="&#xfb04;" k="10" />
+<hkern u1="h" u2="&#xfb03;" k="10" />
+<hkern u1="h" u2="&#xfb02;" k="10" />
+<hkern u1="h" u2="&#xfb01;" k="10" />
+<hkern u1="h" u2="&#x2122;" k="49" />
+<hkern u1="h" u2="&#x201d;" k="29" />
+<hkern u1="h" u2="&#x201c;" k="23" />
+<hkern u1="h" u2="&#x2019;" k="29" />
+<hkern u1="h" u2="&#x2018;" k="23" />
+<hkern u1="h" u2="&#xff;" k="12" />
+<hkern u1="h" u2="&#xfd;" k="12" />
+<hkern u1="h" u2="&#xdf;" k="10" />
+<hkern u1="h" u2="&#xde;" k="29" />
+<hkern u1="h" u2="&#xdd;" k="166" />
+<hkern u1="h" u2="&#xdc;" k="43" />
+<hkern u1="h" u2="&#xdb;" k="43" />
+<hkern u1="h" u2="&#xda;" k="43" />
+<hkern u1="h" u2="&#xd9;" k="43" />
+<hkern u1="h" u2="&#xd8;" k="20" />
+<hkern u1="h" u2="&#xd6;" k="20" />
+<hkern u1="h" u2="&#xd5;" k="20" />
+<hkern u1="h" u2="&#xd4;" k="20" />
+<hkern u1="h" u2="&#xd3;" k="20" />
+<hkern u1="h" u2="&#xd2;" k="20" />
+<hkern u1="h" u2="&#xd1;" k="29" />
+<hkern u1="h" u2="&#xd0;" k="29" />
+<hkern u1="h" u2="&#xcf;" k="29" />
+<hkern u1="h" u2="&#xce;" k="29" />
+<hkern u1="h" u2="&#xcd;" k="29" />
+<hkern u1="h" u2="&#xcc;" k="29" />
+<hkern u1="h" u2="&#xcb;" k="29" />
+<hkern u1="h" u2="&#xca;" k="29" />
+<hkern u1="h" u2="&#xc9;" k="29" />
+<hkern u1="h" u2="&#xc8;" k="29" />
+<hkern u1="h" u2="&#xc7;" k="20" />
+<hkern u1="h" u2="&#xc5;" k="10" />
+<hkern u1="h" u2="&#xc4;" k="10" />
+<hkern u1="h" u2="&#xc3;" k="10" />
+<hkern u1="h" u2="&#xc2;" k="10" />
+<hkern u1="h" u2="&#xc1;" k="10" />
+<hkern u1="h" u2="&#xc0;" k="10" />
+<hkern u1="h" u2="&#x7d;" k="41" />
+<hkern u1="h" u2="y" k="12" />
+<hkern u1="h" u2="v" k="18" />
+<hkern u1="h" u2="t" k="8" />
+<hkern u1="h" u2="f" k="10" />
+<hkern u1="h" u2="]" k="47" />
+<hkern u1="h" u2="\" k="45" />
+<hkern u1="h" u2="Y" k="166" />
+<hkern u1="h" u2="X" k="12" />
+<hkern u1="h" u2="V" k="106" />
+<hkern u1="h" u2="U" k="43" />
+<hkern u1="h" u2="T" k="184" />
+<hkern u1="h" u2="S" k="23" />
+<hkern u1="h" u2="R" k="29" />
+<hkern u1="h" u2="Q" k="20" />
+<hkern u1="h" u2="P" k="29" />
+<hkern u1="h" u2="O" k="20" />
+<hkern u1="h" u2="N" k="29" />
+<hkern u1="h" u2="M" k="29" />
+<hkern u1="h" u2="L" k="29" />
+<hkern u1="h" u2="K" k="29" />
+<hkern u1="h" u2="I" k="29" />
+<hkern u1="h" u2="H" k="29" />
+<hkern u1="h" u2="G" k="20" />
+<hkern u1="h" u2="F" k="29" />
+<hkern u1="h" u2="E" k="29" />
+<hkern u1="h" u2="D" k="29" />
+<hkern u1="h" u2="C" k="20" />
+<hkern u1="h" u2="B" k="29" />
+<hkern u1="h" u2="A" k="10" />
+<hkern u1="h" u2="&#x3f;" k="37" />
+<hkern u1="h" u2="&#x2a;" k="27" />
+<hkern u1="h" u2="&#x29;" k="41" />
+<hkern u1="h" u2="&#x27;" k="29" />
+<hkern u1="h" u2="&#x26;" k="12" />
+<hkern u1="h" u2="&#x22;" k="29" />
+<hkern u1="i" u2="&#xde;" k="20" />
+<hkern u1="i" u2="&#xdd;" k="16" />
+<hkern u1="i" u2="&#xdc;" k="31" />
+<hkern u1="i" u2="&#xdb;" k="31" />
+<hkern u1="i" u2="&#xda;" k="31" />
+<hkern u1="i" u2="&#xd9;" k="31" />
+<hkern u1="i" u2="&#xd8;" k="20" />
+<hkern u1="i" u2="&#xd6;" k="20" />
+<hkern u1="i" u2="&#xd5;" k="20" />
+<hkern u1="i" u2="&#xd4;" k="20" />
+<hkern u1="i" u2="&#xd3;" k="20" />
+<hkern u1="i" u2="&#xd2;" k="20" />
+<hkern u1="i" u2="&#xd1;" k="20" />
+<hkern u1="i" u2="&#xd0;" k="20" />
+<hkern u1="i" u2="&#xcf;" k="20" />
+<hkern u1="i" u2="&#xce;" k="20" />
+<hkern u1="i" u2="&#xcd;" k="20" />
+<hkern u1="i" u2="&#xcc;" k="20" />
+<hkern u1="i" u2="&#xcb;" k="20" />
+<hkern u1="i" u2="&#xca;" k="20" />
+<hkern u1="i" u2="&#xc9;" k="20" />
+<hkern u1="i" u2="&#xc8;" k="20" />
+<hkern u1="i" u2="&#xc7;" k="20" />
+<hkern u1="i" u2="&#xc5;" k="14" />
+<hkern u1="i" u2="&#xc4;" k="14" />
+<hkern u1="i" u2="&#xc3;" k="14" />
+<hkern u1="i" u2="&#xc2;" k="14" />
+<hkern u1="i" u2="&#xc1;" k="14" />
+<hkern u1="i" u2="&#xc0;" k="14" />
+<hkern u1="i" u2="Y" k="16" />
+<hkern u1="i" u2="V" k="18" />
+<hkern u1="i" u2="U" k="31" />
+<hkern u1="i" u2="T" k="20" />
+<hkern u1="i" u2="S" k="18" />
+<hkern u1="i" u2="R" k="20" />
+<hkern u1="i" u2="Q" k="20" />
+<hkern u1="i" u2="P" k="20" />
+<hkern u1="i" u2="O" k="20" />
+<hkern u1="i" u2="N" k="20" />
+<hkern u1="i" u2="M" k="20" />
+<hkern u1="i" u2="L" k="20" />
+<hkern u1="i" u2="K" k="20" />
+<hkern u1="i" u2="I" k="20" />
+<hkern u1="i" u2="H" k="20" />
+<hkern u1="i" u2="G" k="20" />
+<hkern u1="i" u2="F" k="20" />
+<hkern u1="i" u2="E" k="20" />
+<hkern u1="i" u2="D" k="20" />
+<hkern u1="i" u2="C" k="20" />
+<hkern u1="i" u2="B" k="20" />
+<hkern u1="i" u2="A" k="14" />
+<hkern u1="i" u2="&#x26;" k="16" />
+<hkern u1="j" u2="&#xde;" k="20" />
+<hkern u1="j" u2="&#xdd;" k="16" />
+<hkern u1="j" u2="&#xdc;" k="31" />
+<hkern u1="j" u2="&#xdb;" k="31" />
+<hkern u1="j" u2="&#xda;" k="31" />
+<hkern u1="j" u2="&#xd9;" k="31" />
+<hkern u1="j" u2="&#xd8;" k="20" />
+<hkern u1="j" u2="&#xd6;" k="20" />
+<hkern u1="j" u2="&#xd5;" k="20" />
+<hkern u1="j" u2="&#xd4;" k="20" />
+<hkern u1="j" u2="&#xd3;" k="20" />
+<hkern u1="j" u2="&#xd2;" k="20" />
+<hkern u1="j" u2="&#xd1;" k="20" />
+<hkern u1="j" u2="&#xd0;" k="20" />
+<hkern u1="j" u2="&#xcf;" k="20" />
+<hkern u1="j" u2="&#xce;" k="20" />
+<hkern u1="j" u2="&#xcd;" k="20" />
+<hkern u1="j" u2="&#xcc;" k="20" />
+<hkern u1="j" u2="&#xcb;" k="20" />
+<hkern u1="j" u2="&#xca;" k="20" />
+<hkern u1="j" u2="&#xc9;" k="20" />
+<hkern u1="j" u2="&#xc8;" k="20" />
+<hkern u1="j" u2="&#xc7;" k="20" />
+<hkern u1="j" u2="&#xc5;" k="14" />
+<hkern u1="j" u2="&#xc4;" k="14" />
+<hkern u1="j" u2="&#xc3;" k="14" />
+<hkern u1="j" u2="&#xc2;" k="14" />
+<hkern u1="j" u2="&#xc1;" k="14" />
+<hkern u1="j" u2="&#xc0;" k="14" />
+<hkern u1="j" u2="Y" k="16" />
+<hkern u1="j" u2="V" k="18" />
+<hkern u1="j" u2="U" k="31" />
+<hkern u1="j" u2="T" k="20" />
+<hkern u1="j" u2="S" k="18" />
+<hkern u1="j" u2="R" k="20" />
+<hkern u1="j" u2="Q" k="20" />
+<hkern u1="j" u2="P" k="20" />
+<hkern u1="j" u2="O" k="20" />
+<hkern u1="j" u2="N" k="20" />
+<hkern u1="j" u2="M" k="20" />
+<hkern u1="j" u2="L" k="20" />
+<hkern u1="j" u2="K" k="20" />
+<hkern u1="j" u2="I" k="20" />
+<hkern u1="j" u2="H" k="20" />
+<hkern u1="j" u2="G" k="20" />
+<hkern u1="j" u2="F" k="20" />
+<hkern u1="j" u2="E" k="20" />
+<hkern u1="j" u2="D" k="20" />
+<hkern u1="j" u2="C" k="20" />
+<hkern u1="j" u2="B" k="20" />
+<hkern u1="j" u2="A" k="14" />
+<hkern u1="j" u2="&#x26;" k="16" />
+<hkern u1="l" u2="&#xde;" k="20" />
+<hkern u1="l" u2="&#xdd;" k="23" />
+<hkern u1="l" u2="&#xdc;" k="37" />
+<hkern u1="l" u2="&#xdb;" k="37" />
+<hkern u1="l" u2="&#xda;" k="37" />
+<hkern u1="l" u2="&#xd9;" k="37" />
+<hkern u1="l" u2="&#xd8;" k="23" />
+<hkern u1="l" u2="&#xd6;" k="23" />
+<hkern u1="l" u2="&#xd5;" k="23" />
+<hkern u1="l" u2="&#xd4;" k="23" />
+<hkern u1="l" u2="&#xd3;" k="23" />
+<hkern u1="l" u2="&#xd2;" k="23" />
+<hkern u1="l" u2="&#xd1;" k="20" />
+<hkern u1="l" u2="&#xd0;" k="20" />
+<hkern u1="l" u2="&#xcf;" k="20" />
+<hkern u1="l" u2="&#xce;" k="20" />
+<hkern u1="l" u2="&#xcd;" k="20" />
+<hkern u1="l" u2="&#xcc;" k="20" />
+<hkern u1="l" u2="&#xcb;" k="20" />
+<hkern u1="l" u2="&#xca;" k="20" />
+<hkern u1="l" u2="&#xc9;" k="20" />
+<hkern u1="l" u2="&#xc8;" k="20" />
+<hkern u1="l" u2="&#xc7;" k="23" />
+<hkern u1="l" u2="&#xc5;" k="16" />
+<hkern u1="l" u2="&#xc4;" k="16" />
+<hkern u1="l" u2="&#xc3;" k="16" />
+<hkern u1="l" u2="&#xc2;" k="16" />
+<hkern u1="l" u2="&#xc1;" k="16" />
+<hkern u1="l" u2="&#xc0;" k="16" />
+<hkern u1="l" u2="&#xb7;" k="123" />
+<hkern u1="l" u2="Y" k="23" />
+<hkern u1="l" u2="V" k="23" />
+<hkern u1="l" u2="U" k="37" />
+<hkern u1="l" u2="T" k="18" />
+<hkern u1="l" u2="S" k="18" />
+<hkern u1="l" u2="R" k="20" />
+<hkern u1="l" u2="Q" k="23" />
+<hkern u1="l" u2="P" k="20" />
+<hkern u1="l" u2="O" k="23" />
+<hkern u1="l" u2="N" k="20" />
+<hkern u1="l" u2="M" k="20" />
+<hkern u1="l" u2="L" k="20" />
+<hkern u1="l" u2="K" k="20" />
+<hkern u1="l" u2="I" k="20" />
+<hkern u1="l" u2="H" k="20" />
+<hkern u1="l" u2="G" k="23" />
+<hkern u1="l" u2="F" k="20" />
+<hkern u1="l" u2="E" k="20" />
+<hkern u1="l" u2="D" k="20" />
+<hkern u1="l" u2="C" k="23" />
+<hkern u1="l" u2="B" k="20" />
+<hkern u1="l" u2="A" k="16" />
+<hkern u1="l" u2="&#x26;" k="18" />
+<hkern u1="m" u2="&#xfb04;" k="10" />
+<hkern u1="m" u2="&#xfb03;" k="10" />
+<hkern u1="m" u2="&#xfb02;" k="10" />
+<hkern u1="m" u2="&#xfb01;" k="10" />
+<hkern u1="m" u2="&#x2122;" k="49" />
+<hkern u1="m" u2="&#x201d;" k="29" />
+<hkern u1="m" u2="&#x201c;" k="23" />
+<hkern u1="m" u2="&#x2019;" k="29" />
+<hkern u1="m" u2="&#x2018;" k="23" />
+<hkern u1="m" u2="&#xff;" k="12" />
+<hkern u1="m" u2="&#xfd;" k="12" />
+<hkern u1="m" u2="&#xdf;" k="10" />
+<hkern u1="m" u2="&#xde;" k="29" />
+<hkern u1="m" u2="&#xdd;" k="166" />
+<hkern u1="m" u2="&#xdc;" k="43" />
+<hkern u1="m" u2="&#xdb;" k="43" />
+<hkern u1="m" u2="&#xda;" k="43" />
+<hkern u1="m" u2="&#xd9;" k="43" />
+<hkern u1="m" u2="&#xd8;" k="20" />
+<hkern u1="m" u2="&#xd6;" k="20" />
+<hkern u1="m" u2="&#xd5;" k="20" />
+<hkern u1="m" u2="&#xd4;" k="20" />
+<hkern u1="m" u2="&#xd3;" k="20" />
+<hkern u1="m" u2="&#xd2;" k="20" />
+<hkern u1="m" u2="&#xd1;" k="29" />
+<hkern u1="m" u2="&#xd0;" k="29" />
+<hkern u1="m" u2="&#xcf;" k="29" />
+<hkern u1="m" u2="&#xce;" k="29" />
+<hkern u1="m" u2="&#xcd;" k="29" />
+<hkern u1="m" u2="&#xcc;" k="29" />
+<hkern u1="m" u2="&#xcb;" k="29" />
+<hkern u1="m" u2="&#xca;" k="29" />
+<hkern u1="m" u2="&#xc9;" k="29" />
+<hkern u1="m" u2="&#xc8;" k="29" />
+<hkern u1="m" u2="&#xc7;" k="20" />
+<hkern u1="m" u2="&#xc5;" k="10" />
+<hkern u1="m" u2="&#xc4;" k="10" />
+<hkern u1="m" u2="&#xc3;" k="10" />
+<hkern u1="m" u2="&#xc2;" k="10" />
+<hkern u1="m" u2="&#xc1;" k="10" />
+<hkern u1="m" u2="&#xc0;" k="10" />
+<hkern u1="m" u2="&#x7d;" k="41" />
+<hkern u1="m" u2="y" k="12" />
+<hkern u1="m" u2="v" k="18" />
+<hkern u1="m" u2="t" k="8" />
+<hkern u1="m" u2="f" k="10" />
+<hkern u1="m" u2="]" k="47" />
+<hkern u1="m" u2="\" k="45" />
+<hkern u1="m" u2="Y" k="166" />
+<hkern u1="m" u2="X" k="12" />
+<hkern u1="m" u2="V" k="106" />
+<hkern u1="m" u2="U" k="43" />
+<hkern u1="m" u2="T" k="184" />
+<hkern u1="m" u2="S" k="23" />
+<hkern u1="m" u2="R" k="29" />
+<hkern u1="m" u2="Q" k="20" />
+<hkern u1="m" u2="P" k="29" />
+<hkern u1="m" u2="O" k="20" />
+<hkern u1="m" u2="N" k="29" />
+<hkern u1="m" u2="M" k="29" />
+<hkern u1="m" u2="L" k="29" />
+<hkern u1="m" u2="K" k="29" />
+<hkern u1="m" u2="I" k="29" />
+<hkern u1="m" u2="H" k="29" />
+<hkern u1="m" u2="G" k="20" />
+<hkern u1="m" u2="F" k="29" />
+<hkern u1="m" u2="E" k="29" />
+<hkern u1="m" u2="D" k="29" />
+<hkern u1="m" u2="C" k="20" />
+<hkern u1="m" u2="B" k="29" />
+<hkern u1="m" u2="A" k="10" />
+<hkern u1="m" u2="&#x3f;" k="37" />
+<hkern u1="m" u2="&#x2a;" k="27" />
+<hkern u1="m" u2="&#x29;" k="41" />
+<hkern u1="m" u2="&#x27;" k="29" />
+<hkern u1="m" u2="&#x26;" k="12" />
+<hkern u1="m" u2="&#x22;" k="29" />
+<hkern u1="n" u2="&#xfb04;" k="10" />
+<hkern u1="n" u2="&#xfb03;" k="10" />
+<hkern u1="n" u2="&#xfb02;" k="10" />
+<hkern u1="n" u2="&#xfb01;" k="10" />
+<hkern u1="n" u2="&#x2122;" k="49" />
+<hkern u1="n" u2="&#x201d;" k="29" />
+<hkern u1="n" u2="&#x201c;" k="23" />
+<hkern u1="n" u2="&#x2019;" k="29" />
+<hkern u1="n" u2="&#x2018;" k="23" />
+<hkern u1="n" u2="&#xff;" k="12" />
+<hkern u1="n" u2="&#xfd;" k="12" />
+<hkern u1="n" u2="&#xdf;" k="10" />
+<hkern u1="n" u2="&#xde;" k="29" />
+<hkern u1="n" u2="&#xdd;" k="166" />
+<hkern u1="n" u2="&#xdc;" k="43" />
+<hkern u1="n" u2="&#xdb;" k="43" />
+<hkern u1="n" u2="&#xda;" k="43" />
+<hkern u1="n" u2="&#xd9;" k="43" />
+<hkern u1="n" u2="&#xd8;" k="20" />
+<hkern u1="n" u2="&#xd6;" k="20" />
+<hkern u1="n" u2="&#xd5;" k="20" />
+<hkern u1="n" u2="&#xd4;" k="20" />
+<hkern u1="n" u2="&#xd3;" k="20" />
+<hkern u1="n" u2="&#xd2;" k="20" />
+<hkern u1="n" u2="&#xd1;" k="29" />
+<hkern u1="n" u2="&#xd0;" k="29" />
+<hkern u1="n" u2="&#xcf;" k="29" />
+<hkern u1="n" u2="&#xce;" k="29" />
+<hkern u1="n" u2="&#xcd;" k="29" />
+<hkern u1="n" u2="&#xcc;" k="29" />
+<hkern u1="n" u2="&#xcb;" k="29" />
+<hkern u1="n" u2="&#xca;" k="29" />
+<hkern u1="n" u2="&#xc9;" k="29" />
+<hkern u1="n" u2="&#xc8;" k="29" />
+<hkern u1="n" u2="&#xc7;" k="20" />
+<hkern u1="n" u2="&#xc5;" k="10" />
+<hkern u1="n" u2="&#xc4;" k="10" />
+<hkern u1="n" u2="&#xc3;" k="10" />
+<hkern u1="n" u2="&#xc2;" k="10" />
+<hkern u1="n" u2="&#xc1;" k="10" />
+<hkern u1="n" u2="&#xc0;" k="10" />
+<hkern u1="n" u2="&#x7d;" k="41" />
+<hkern u1="n" u2="y" k="12" />
+<hkern u1="n" u2="v" k="18" />
+<hkern u1="n" u2="t" k="8" />
+<hkern u1="n" u2="f" k="10" />
+<hkern u1="n" u2="]" k="47" />
+<hkern u1="n" u2="\" k="45" />
+<hkern u1="n" u2="Y" k="166" />
+<hkern u1="n" u2="X" k="12" />
+<hkern u1="n" u2="V" k="106" />
+<hkern u1="n" u2="U" k="43" />
+<hkern u1="n" u2="T" k="184" />
+<hkern u1="n" u2="S" k="23" />
+<hkern u1="n" u2="R" k="29" />
+<hkern u1="n" u2="Q" k="20" />
+<hkern u1="n" u2="P" k="29" />
+<hkern u1="n" u2="O" k="20" />
+<hkern u1="n" u2="N" k="29" />
+<hkern u1="n" u2="M" k="29" />
+<hkern u1="n" u2="L" k="29" />
+<hkern u1="n" u2="K" k="29" />
+<hkern u1="n" u2="I" k="29" />
+<hkern u1="n" u2="H" k="29" />
+<hkern u1="n" u2="G" k="20" />
+<hkern u1="n" u2="F" k="29" />
+<hkern u1="n" u2="E" k="29" />
+<hkern u1="n" u2="D" k="29" />
+<hkern u1="n" u2="C" k="20" />
+<hkern u1="n" u2="B" k="29" />
+<hkern u1="n" u2="A" k="10" />
+<hkern u1="n" u2="&#x3f;" k="37" />
+<hkern u1="n" u2="&#x2a;" k="27" />
+<hkern u1="n" u2="&#x29;" k="41" />
+<hkern u1="n" u2="&#x27;" k="29" />
+<hkern u1="n" u2="&#x26;" k="12" />
+<hkern u1="n" u2="&#x22;" k="29" />
+<hkern u1="o" u2="&#xfb04;" k="10" />
+<hkern u1="o" u2="&#xfb03;" k="10" />
+<hkern u1="o" u2="&#xfb02;" k="10" />
+<hkern u1="o" u2="&#xfb01;" k="10" />
+<hkern u1="o" u2="&#x2122;" k="47" />
+<hkern u1="o" u2="&#x201d;" k="33" />
+<hkern u1="o" u2="&#x201c;" k="31" />
+<hkern u1="o" u2="&#x2019;" k="33" />
+<hkern u1="o" u2="&#x2018;" k="31" />
+<hkern u1="o" u2="&#xff;" k="10" />
+<hkern u1="o" u2="&#xfd;" k="10" />
+<hkern u1="o" u2="&#xdf;" k="10" />
+<hkern u1="o" u2="&#xde;" k="29" />
+<hkern u1="o" u2="&#xdd;" k="178" />
+<hkern u1="o" u2="&#xdc;" k="31" />
+<hkern u1="o" u2="&#xdb;" k="31" />
+<hkern u1="o" u2="&#xda;" k="31" />
+<hkern u1="o" u2="&#xd9;" k="31" />
+<hkern u1="o" u2="&#xd8;" k="12" />
+<hkern u1="o" u2="&#xd6;" k="12" />
+<hkern u1="o" u2="&#xd5;" k="12" />
+<hkern u1="o" u2="&#xd4;" k="12" />
+<hkern u1="o" u2="&#xd3;" k="12" />
+<hkern u1="o" u2="&#xd2;" k="12" />
+<hkern u1="o" u2="&#xd1;" k="29" />
+<hkern u1="o" u2="&#xd0;" k="29" />
+<hkern u1="o" u2="&#xcf;" k="29" />
+<hkern u1="o" u2="&#xce;" k="29" />
+<hkern u1="o" u2="&#xcd;" k="29" />
+<hkern u1="o" u2="&#xcc;" k="29" />
+<hkern u1="o" u2="&#xcb;" k="29" />
+<hkern u1="o" u2="&#xca;" k="29" />
+<hkern u1="o" u2="&#xc9;" k="29" />
+<hkern u1="o" u2="&#xc8;" k="29" />
+<hkern u1="o" u2="&#xc7;" k="12" />
+<hkern u1="o" u2="&#xc5;" k="25" />
+<hkern u1="o" u2="&#xc4;" k="25" />
+<hkern u1="o" u2="&#xc3;" k="25" />
+<hkern u1="o" u2="&#xc2;" k="25" />
+<hkern u1="o" u2="&#xc1;" k="25" />
+<hkern u1="o" u2="&#xc0;" k="25" />
+<hkern u1="o" u2="&#x7d;" k="47" />
+<hkern u1="o" u2="y" k="10" />
+<hkern u1="o" u2="x" k="31" />
+<hkern u1="o" u2="v" k="14" />
+<hkern u1="o" u2="t" k="8" />
+<hkern u1="o" u2="f" k="10" />
+<hkern u1="o" u2="]" k="51" />
+<hkern u1="o" u2="\" k="45" />
+<hkern u1="o" u2="Y" k="178" />
+<hkern u1="o" u2="X" k="84" />
+<hkern u1="o" u2="V" k="109" />
+<hkern u1="o" u2="U" k="31" />
+<hkern u1="o" u2="T" k="176" />
+<hkern u1="o" u2="S" k="29" />
+<hkern u1="o" u2="R" k="29" />
+<hkern u1="o" u2="Q" k="12" />
+<hkern u1="o" u2="P" k="29" />
+<hkern u1="o" u2="O" k="12" />
+<hkern u1="o" u2="N" k="29" />
+<hkern u1="o" u2="M" k="29" />
+<hkern u1="o" u2="L" k="29" />
+<hkern u1="o" u2="K" k="29" />
+<hkern u1="o" u2="I" k="29" />
+<hkern u1="o" u2="H" k="29" />
+<hkern u1="o" u2="G" k="12" />
+<hkern u1="o" u2="F" k="29" />
+<hkern u1="o" u2="E" k="29" />
+<hkern u1="o" u2="D" k="29" />
+<hkern u1="o" u2="C" k="12" />
+<hkern u1="o" u2="B" k="29" />
+<hkern u1="o" u2="A" k="25" />
+<hkern u1="o" u2="&#x3f;" k="41" />
+<hkern u1="o" u2="&#x2a;" k="29" />
+<hkern u1="o" u2="&#x29;" k="55" />
+<hkern u1="o" u2="&#x27;" k="33" />
+<hkern u1="o" u2="&#x22;" k="33" />
+<hkern u1="p" u2="&#xfb04;" k="10" />
+<hkern u1="p" u2="&#xfb03;" k="10" />
+<hkern u1="p" u2="&#xfb02;" k="10" />
+<hkern u1="p" u2="&#xfb01;" k="10" />
+<hkern u1="p" u2="&#x2122;" k="47" />
+<hkern u1="p" u2="&#x201d;" k="33" />
+<hkern u1="p" u2="&#x201c;" k="31" />
+<hkern u1="p" u2="&#x2019;" k="33" />
+<hkern u1="p" u2="&#x2018;" k="31" />
+<hkern u1="p" u2="&#xff;" k="10" />
+<hkern u1="p" u2="&#xfd;" k="10" />
+<hkern u1="p" u2="&#xdf;" k="10" />
+<hkern u1="p" u2="&#xde;" k="29" />
+<hkern u1="p" u2="&#xdd;" k="178" />
+<hkern u1="p" u2="&#xdc;" k="31" />
+<hkern u1="p" u2="&#xdb;" k="31" />
+<hkern u1="p" u2="&#xda;" k="31" />
+<hkern u1="p" u2="&#xd9;" k="31" />
+<hkern u1="p" u2="&#xd8;" k="12" />
+<hkern u1="p" u2="&#xd6;" k="12" />
+<hkern u1="p" u2="&#xd5;" k="12" />
+<hkern u1="p" u2="&#xd4;" k="12" />
+<hkern u1="p" u2="&#xd3;" k="12" />
+<hkern u1="p" u2="&#xd2;" k="12" />
+<hkern u1="p" u2="&#xd1;" k="29" />
+<hkern u1="p" u2="&#xd0;" k="29" />
+<hkern u1="p" u2="&#xcf;" k="29" />
+<hkern u1="p" u2="&#xce;" k="29" />
+<hkern u1="p" u2="&#xcd;" k="29" />
+<hkern u1="p" u2="&#xcc;" k="29" />
+<hkern u1="p" u2="&#xcb;" k="29" />
+<hkern u1="p" u2="&#xca;" k="29" />
+<hkern u1="p" u2="&#xc9;" k="29" />
+<hkern u1="p" u2="&#xc8;" k="29" />
+<hkern u1="p" u2="&#xc7;" k="12" />
+<hkern u1="p" u2="&#xc5;" k="25" />
+<hkern u1="p" u2="&#xc4;" k="25" />
+<hkern u1="p" u2="&#xc3;" k="25" />
+<hkern u1="p" u2="&#xc2;" k="25" />
+<hkern u1="p" u2="&#xc1;" k="25" />
+<hkern u1="p" u2="&#xc0;" k="25" />
+<hkern u1="p" u2="&#x7d;" k="47" />
+<hkern u1="p" u2="y" k="10" />
+<hkern u1="p" u2="x" k="31" />
+<hkern u1="p" u2="v" k="14" />
+<hkern u1="p" u2="t" k="8" />
+<hkern u1="p" u2="f" k="10" />
+<hkern u1="p" u2="]" k="51" />
+<hkern u1="p" u2="\" k="45" />
+<hkern u1="p" u2="Y" k="178" />
+<hkern u1="p" u2="X" k="84" />
+<hkern u1="p" u2="V" k="109" />
+<hkern u1="p" u2="U" k="31" />
+<hkern u1="p" u2="T" k="176" />
+<hkern u1="p" u2="S" k="29" />
+<hkern u1="p" u2="R" k="29" />
+<hkern u1="p" u2="Q" k="12" />
+<hkern u1="p" u2="P" k="29" />
+<hkern u1="p" u2="O" k="12" />
+<hkern u1="p" u2="N" k="29" />
+<hkern u1="p" u2="M" k="29" />
+<hkern u1="p" u2="L" k="29" />
+<hkern u1="p" u2="K" k="29" />
+<hkern u1="p" u2="I" k="29" />
+<hkern u1="p" u2="H" k="29" />
+<hkern u1="p" u2="G" k="12" />
+<hkern u1="p" u2="F" k="29" />
+<hkern u1="p" u2="E" k="29" />
+<hkern u1="p" u2="D" k="29" />
+<hkern u1="p" u2="C" k="12" />
+<hkern u1="p" u2="B" k="29" />
+<hkern u1="p" u2="A" k="25" />
+<hkern u1="p" u2="&#x3f;" k="41" />
+<hkern u1="p" u2="&#x2a;" k="29" />
+<hkern u1="p" u2="&#x29;" k="55" />
+<hkern u1="p" u2="&#x27;" k="33" />
+<hkern u1="p" u2="&#x22;" k="33" />
+<hkern u1="q" u2="&#x2122;" k="37" />
+<hkern u1="q" u2="&#xde;" k="20" />
+<hkern u1="q" u2="&#xdd;" k="143" />
+<hkern u1="q" u2="&#xdc;" k="37" />
+<hkern u1="q" u2="&#xdb;" k="37" />
+<hkern u1="q" u2="&#xda;" k="37" />
+<hkern u1="q" u2="&#xd9;" k="37" />
+<hkern u1="q" u2="&#xd8;" k="18" />
+<hkern u1="q" u2="&#xd6;" k="18" />
+<hkern u1="q" u2="&#xd5;" k="18" />
+<hkern u1="q" u2="&#xd4;" k="18" />
+<hkern u1="q" u2="&#xd3;" k="18" />
+<hkern u1="q" u2="&#xd2;" k="18" />
+<hkern u1="q" u2="&#xd1;" k="20" />
+<hkern u1="q" u2="&#xd0;" k="20" />
+<hkern u1="q" u2="&#xcf;" k="20" />
+<hkern u1="q" u2="&#xce;" k="20" />
+<hkern u1="q" u2="&#xcd;" k="20" />
+<hkern u1="q" u2="&#xcc;" k="20" />
+<hkern u1="q" u2="&#xcb;" k="20" />
+<hkern u1="q" u2="&#xca;" k="20" />
+<hkern u1="q" u2="&#xc9;" k="20" />
+<hkern u1="q" u2="&#xc8;" k="20" />
+<hkern u1="q" u2="&#xc7;" k="18" />
+<hkern u1="q" u2="&#xc5;" k="12" />
+<hkern u1="q" u2="&#xc4;" k="12" />
+<hkern u1="q" u2="&#xc3;" k="12" />
+<hkern u1="q" u2="&#xc2;" k="12" />
+<hkern u1="q" u2="&#xc1;" k="12" />
+<hkern u1="q" u2="&#xc0;" k="12" />
+<hkern u1="q" u2="&#x7d;" k="37" />
+<hkern u1="q" u2="]" k="41" />
+<hkern u1="q" u2="\" k="31" />
+<hkern u1="q" u2="Y" k="143" />
+<hkern u1="q" u2="X" k="16" />
+<hkern u1="q" u2="V" k="90" />
+<hkern u1="q" u2="U" k="37" />
+<hkern u1="q" u2="T" k="137" />
+<hkern u1="q" u2="S" k="16" />
+<hkern u1="q" u2="R" k="20" />
+<hkern u1="q" u2="Q" k="18" />
+<hkern u1="q" u2="P" k="20" />
+<hkern u1="q" u2="O" k="18" />
+<hkern u1="q" u2="N" k="20" />
+<hkern u1="q" u2="M" k="20" />
+<hkern u1="q" u2="L" k="20" />
+<hkern u1="q" u2="K" k="20" />
+<hkern u1="q" u2="I" k="20" />
+<hkern u1="q" u2="H" k="20" />
+<hkern u1="q" u2="G" k="18" />
+<hkern u1="q" u2="F" k="20" />
+<hkern u1="q" u2="E" k="20" />
+<hkern u1="q" u2="D" k="20" />
+<hkern u1="q" u2="C" k="18" />
+<hkern u1="q" u2="B" k="20" />
+<hkern u1="q" u2="A" k="12" />
+<hkern u1="q" u2="&#x29;" k="37" />
+<hkern u1="q" u2="&#x26;" k="14" />
+<hkern u1="r" u2="]" k="43" />
+<hkern u1="s" u2="&#x2122;" k="45" />
+<hkern u1="s" u2="&#xde;" k="23" />
+<hkern u1="s" u2="&#xdd;" k="164" />
+<hkern u1="s" u2="&#xdc;" k="33" />
+<hkern u1="s" u2="&#xdb;" k="33" />
+<hkern u1="s" u2="&#xda;" k="33" />
+<hkern u1="s" u2="&#xd9;" k="33" />
+<hkern u1="s" u2="&#xd8;" k="18" />
+<hkern u1="s" u2="&#xd6;" k="18" />
+<hkern u1="s" u2="&#xd5;" k="18" />
+<hkern u1="s" u2="&#xd4;" k="18" />
+<hkern u1="s" u2="&#xd3;" k="18" />
+<hkern u1="s" u2="&#xd2;" k="18" />
+<hkern u1="s" u2="&#xd1;" k="23" />
+<hkern u1="s" u2="&#xd0;" k="23" />
+<hkern u1="s" u2="&#xcf;" k="23" />
+<hkern u1="s" u2="&#xce;" k="23" />
+<hkern u1="s" u2="&#xcd;" k="23" />
+<hkern u1="s" u2="&#xcc;" k="23" />
+<hkern u1="s" u2="&#xcb;" k="23" />
+<hkern u1="s" u2="&#xca;" k="23" />
+<hkern u1="s" u2="&#xc9;" k="23" />
+<hkern u1="s" u2="&#xc8;" k="23" />
+<hkern u1="s" u2="&#xc7;" k="18" />
+<hkern u1="s" u2="&#x7d;" k="35" />
+<hkern u1="s" u2="v" k="8" />
+<hkern u1="s" u2="t" k="8" />
+<hkern u1="s" u2="]" k="41" />
+<hkern u1="s" u2="\" k="35" />
+<hkern u1="s" u2="Y" k="164" />
+<hkern u1="s" u2="X" k="25" />
+<hkern u1="s" u2="V" k="109" />
+<hkern u1="s" u2="U" k="33" />
+<hkern u1="s" u2="T" k="160" />
+<hkern u1="s" u2="S" k="12" />
+<hkern u1="s" u2="R" k="23" />
+<hkern u1="s" u2="Q" k="18" />
+<hkern u1="s" u2="P" k="23" />
+<hkern u1="s" u2="O" k="18" />
+<hkern u1="s" u2="N" k="23" />
+<hkern u1="s" u2="M" k="23" />
+<hkern u1="s" u2="L" k="23" />
+<hkern u1="s" u2="K" k="23" />
+<hkern u1="s" u2="I" k="23" />
+<hkern u1="s" u2="H" k="23" />
+<hkern u1="s" u2="G" k="18" />
+<hkern u1="s" u2="F" k="23" />
+<hkern u1="s" u2="E" k="23" />
+<hkern u1="s" u2="D" k="23" />
+<hkern u1="s" u2="C" k="18" />
+<hkern u1="s" u2="B" k="23" />
+<hkern u1="s" u2="&#x3f;" k="35" />
+<hkern u1="s" u2="&#x29;" k="39" />
+<hkern u1="t" u2="&#x2122;" k="16" />
+<hkern u1="t" u2="&#xff;" k="-31" />
+<hkern u1="t" u2="&#xfd;" k="-31" />
+<hkern u1="t" u2="&#xdd;" k="92" />
+<hkern u1="t" u2="&#xdc;" k="14" />
+<hkern u1="t" u2="&#xdb;" k="14" />
+<hkern u1="t" u2="&#xda;" k="14" />
+<hkern u1="t" u2="&#xd9;" k="14" />
+<hkern u1="t" u2="y" k="-31" />
+<hkern u1="t" u2="v" k="-35" />
+<hkern u1="t" u2="t" k="-14" />
+<hkern u1="t" u2="]" k="23" />
+<hkern u1="t" u2="Y" k="92" />
+<hkern u1="t" u2="V" k="37" />
+<hkern u1="t" u2="U" k="14" />
+<hkern u1="t" u2="T" k="150" />
+<hkern u1="t" u2="&#x26;" k="23" />
+<hkern u1="u" u2="&#x2122;" k="37" />
+<hkern u1="u" u2="&#xde;" k="20" />
+<hkern u1="u" u2="&#xdd;" k="143" />
+<hkern u1="u" u2="&#xdc;" k="37" />
+<hkern u1="u" u2="&#xdb;" k="37" />
+<hkern u1="u" u2="&#xda;" k="37" />
+<hkern u1="u" u2="&#xd9;" k="37" />
+<hkern u1="u" u2="&#xd8;" k="18" />
+<hkern u1="u" u2="&#xd6;" k="18" />
+<hkern u1="u" u2="&#xd5;" k="18" />
+<hkern u1="u" u2="&#xd4;" k="18" />
+<hkern u1="u" u2="&#xd3;" k="18" />
+<hkern u1="u" u2="&#xd2;" k="18" />
+<hkern u1="u" u2="&#xd1;" k="20" />
+<hkern u1="u" u2="&#xd0;" k="20" />
+<hkern u1="u" u2="&#xcf;" k="20" />
+<hkern u1="u" u2="&#xce;" k="20" />
+<hkern u1="u" u2="&#xcd;" k="20" />
+<hkern u1="u" u2="&#xcc;" k="20" />
+<hkern u1="u" u2="&#xcb;" k="20" />
+<hkern u1="u" u2="&#xca;" k="20" />
+<hkern u1="u" u2="&#xc9;" k="20" />
+<hkern u1="u" u2="&#xc8;" k="20" />
+<hkern u1="u" u2="&#xc7;" k="18" />
+<hkern u1="u" u2="&#xc5;" k="12" />
+<hkern u1="u" u2="&#xc4;" k="12" />
+<hkern u1="u" u2="&#xc3;" k="12" />
+<hkern u1="u" u2="&#xc2;" k="12" />
+<hkern u1="u" u2="&#xc1;" k="12" />
+<hkern u1="u" u2="&#xc0;" k="12" />
+<hkern u1="u" u2="&#x7d;" k="37" />
+<hkern u1="u" u2="]" k="41" />
+<hkern u1="u" u2="\" k="31" />
+<hkern u1="u" u2="Y" k="143" />
+<hkern u1="u" u2="X" k="16" />
+<hkern u1="u" u2="V" k="90" />
+<hkern u1="u" u2="U" k="37" />
+<hkern u1="u" u2="T" k="137" />
+<hkern u1="u" u2="S" k="16" />
+<hkern u1="u" u2="R" k="20" />
+<hkern u1="u" u2="Q" k="18" />
+<hkern u1="u" u2="P" k="20" />
+<hkern u1="u" u2="O" k="18" />
+<hkern u1="u" u2="N" k="20" />
+<hkern u1="u" u2="M" k="20" />
+<hkern u1="u" u2="L" k="20" />
+<hkern u1="u" u2="K" k="20" />
+<hkern u1="u" u2="I" k="20" />
+<hkern u1="u" u2="H" k="20" />
+<hkern u1="u" u2="G" k="18" />
+<hkern u1="u" u2="F" k="20" />
+<hkern u1="u" u2="E" k="20" />
+<hkern u1="u" u2="D" k="20" />
+<hkern u1="u" u2="C" k="18" />
+<hkern u1="u" u2="B" k="20" />
+<hkern u1="u" u2="A" k="12" />
+<hkern u1="u" u2="&#x29;" k="37" />
+<hkern u1="u" u2="&#x26;" k="14" />
+<hkern u1="v" u2="&#xfb04;" k="-57" />
+<hkern u1="v" u2="&#xfb03;" k="-57" />
+<hkern u1="v" u2="&#xfb02;" k="-57" />
+<hkern u1="v" u2="&#xfb01;" k="-57" />
+<hkern u1="v" u2="&#x2026;" k="63" />
+<hkern u1="v" u2="&#x201e;" k="63" />
+<hkern u1="v" u2="&#x201a;" k="63" />
+<hkern u1="v" u2="&#x2014;" k="16" />
+<hkern u1="v" u2="&#x2013;" k="16" />
+<hkern u1="v" u2="&#xff;" k="-55" />
+<hkern u1="v" u2="&#xfd;" k="-55" />
+<hkern u1="v" u2="&#xf8;" k="14" />
+<hkern u1="v" u2="&#xf6;" k="14" />
+<hkern u1="v" u2="&#xf5;" k="14" />
+<hkern u1="v" u2="&#xf4;" k="14" />
+<hkern u1="v" u2="&#xf3;" k="14" />
+<hkern u1="v" u2="&#xf2;" k="14" />
+<hkern u1="v" u2="&#xf0;" k="14" />
+<hkern u1="v" u2="&#xeb;" k="14" />
+<hkern u1="v" u2="&#xea;" k="14" />
+<hkern u1="v" u2="&#xe9;" k="14" />
+<hkern u1="v" u2="&#xe8;" k="14" />
+<hkern u1="v" u2="&#xe7;" k="14" />
+<hkern u1="v" u2="&#xe6;" k="12" />
+<hkern u1="v" u2="&#xe5;" k="12" />
+<hkern u1="v" u2="&#xe4;" k="12" />
+<hkern u1="v" u2="&#xe3;" k="12" />
+<hkern u1="v" u2="&#xe2;" k="12" />
+<hkern u1="v" u2="&#xe1;" k="12" />
+<hkern u1="v" u2="&#xe0;" k="12" />
+<hkern u1="v" u2="&#xdf;" k="-57" />
+<hkern u1="v" u2="&#xde;" k="18" />
+<hkern u1="v" u2="&#xdd;" k="72" />
+<hkern u1="v" u2="&#xdc;" k="16" />
+<hkern u1="v" u2="&#xdb;" k="16" />
+<hkern u1="v" u2="&#xda;" k="16" />
+<hkern u1="v" u2="&#xd9;" k="16" />
+<hkern u1="v" u2="&#xd1;" k="18" />
+<hkern u1="v" u2="&#xd0;" k="18" />
+<hkern u1="v" u2="&#xcf;" k="18" />
+<hkern u1="v" u2="&#xce;" k="18" />
+<hkern u1="v" u2="&#xcd;" k="18" />
+<hkern u1="v" u2="&#xcc;" k="18" />
+<hkern u1="v" u2="&#xcb;" k="18" />
+<hkern u1="v" u2="&#xca;" k="18" />
+<hkern u1="v" u2="&#xc9;" k="18" />
+<hkern u1="v" u2="&#xc8;" k="18" />
+<hkern u1="v" u2="&#xc5;" k="74" />
+<hkern u1="v" u2="&#xc4;" k="74" />
+<hkern u1="v" u2="&#xc3;" k="74" />
+<hkern u1="v" u2="&#xc2;" k="74" />
+<hkern u1="v" u2="&#xc1;" k="74" />
+<hkern u1="v" u2="&#xc0;" k="74" />
+<hkern u1="v" u2="&#x7d;" k="35" />
+<hkern u1="v" u2="y" k="-55" />
+<hkern u1="v" u2="x" k="-37" />
+<hkern u1="v" u2="v" k="-41" />
+<hkern u1="v" u2="t" k="-43" />
+<hkern u1="v" u2="q" k="14" />
+<hkern u1="v" u2="o" k="14" />
+<hkern u1="v" u2="g" k="14" />
+<hkern u1="v" u2="f" k="-57" />
+<hkern u1="v" u2="e" k="14" />
+<hkern u1="v" u2="d" k="14" />
+<hkern u1="v" u2="c" k="14" />
+<hkern u1="v" u2="a" k="12" />
+<hkern u1="v" u2="]" k="43" />
+<hkern u1="v" u2="Y" k="72" />
+<hkern u1="v" u2="X" k="78" />
+<hkern u1="v" u2="V" k="25" />
+<hkern u1="v" u2="U" k="16" />
+<hkern u1="v" u2="T" k="100" />
+<hkern u1="v" u2="R" k="18" />
+<hkern u1="v" u2="P" k="18" />
+<hkern u1="v" u2="N" k="18" />
+<hkern u1="v" u2="M" k="18" />
+<hkern u1="v" u2="L" k="18" />
+<hkern u1="v" u2="K" k="18" />
+<hkern u1="v" u2="I" k="18" />
+<hkern u1="v" u2="H" k="18" />
+<hkern u1="v" u2="F" k="18" />
+<hkern u1="v" u2="E" k="18" />
+<hkern u1="v" u2="D" k="18" />
+<hkern u1="v" u2="B" k="18" />
+<hkern u1="v" u2="A" k="74" />
+<hkern u1="v" u2="&#x2f;" k="39" />
+<hkern u1="v" u2="&#x2e;" k="63" />
+<hkern u1="v" u2="&#x2d;" k="16" />
+<hkern u1="v" u2="&#x2c;" k="63" />
+<hkern u1="v" u2="&#x29;" k="41" />
+<hkern u1="v" u2="&#x26;" k="29" />
+<hkern u1="x" u2="&#xfb04;" k="-43" />
+<hkern u1="x" u2="&#xfb03;" k="-43" />
+<hkern u1="x" u2="&#xfb02;" k="-43" />
+<hkern u1="x" u2="&#xfb01;" k="-43" />
+<hkern u1="x" u2="&#x2122;" k="16" />
+<hkern u1="x" u2="&#x2039;" k="27" />
+<hkern u1="x" u2="&#x2014;" k="47" />
+<hkern u1="x" u2="&#x2013;" k="47" />
+<hkern u1="x" u2="&#xff;" k="-31" />
+<hkern u1="x" u2="&#xfd;" k="-31" />
+<hkern u1="x" u2="&#xf8;" k="31" />
+<hkern u1="x" u2="&#xf6;" k="31" />
+<hkern u1="x" u2="&#xf5;" k="31" />
+<hkern u1="x" u2="&#xf4;" k="31" />
+<hkern u1="x" u2="&#xf3;" k="31" />
+<hkern u1="x" u2="&#xf2;" k="31" />
+<hkern u1="x" u2="&#xf0;" k="31" />
+<hkern u1="x" u2="&#xeb;" k="31" />
+<hkern u1="x" u2="&#xea;" k="31" />
+<hkern u1="x" u2="&#xe9;" k="31" />
+<hkern u1="x" u2="&#xe8;" k="31" />
+<hkern u1="x" u2="&#xe7;" k="31" />
+<hkern u1="x" u2="&#xdf;" k="-43" />
+<hkern u1="x" u2="&#xde;" k="10" />
+<hkern u1="x" u2="&#xdd;" k="88" />
+<hkern u1="x" u2="&#xdc;" k="20" />
+<hkern u1="x" u2="&#xdb;" k="20" />
+<hkern u1="x" u2="&#xda;" k="20" />
+<hkern u1="x" u2="&#xd9;" k="20" />
+<hkern u1="x" u2="&#xd8;" k="27" />
+<hkern u1="x" u2="&#xd6;" k="27" />
+<hkern u1="x" u2="&#xd5;" k="27" />
+<hkern u1="x" u2="&#xd4;" k="27" />
+<hkern u1="x" u2="&#xd3;" k="27" />
+<hkern u1="x" u2="&#xd2;" k="27" />
+<hkern u1="x" u2="&#xd1;" k="10" />
+<hkern u1="x" u2="&#xd0;" k="10" />
+<hkern u1="x" u2="&#xcf;" k="10" />
+<hkern u1="x" u2="&#xce;" k="10" />
+<hkern u1="x" u2="&#xcd;" k="10" />
+<hkern u1="x" u2="&#xcc;" k="10" />
+<hkern u1="x" u2="&#xcb;" k="10" />
+<hkern u1="x" u2="&#xca;" k="10" />
+<hkern u1="x" u2="&#xc9;" k="10" />
+<hkern u1="x" u2="&#xc8;" k="10" />
+<hkern u1="x" u2="&#xc7;" k="27" />
+<hkern u1="x" u2="&#xab;" k="27" />
+<hkern u1="x" u2="y" k="-31" />
+<hkern u1="x" u2="x" k="-29" />
+<hkern u1="x" u2="v" k="-33" />
+<hkern u1="x" u2="q" k="31" />
+<hkern u1="x" u2="o" k="31" />
+<hkern u1="x" u2="g" k="31" />
+<hkern u1="x" u2="f" k="-43" />
+<hkern u1="x" u2="e" k="31" />
+<hkern u1="x" u2="d" k="31" />
+<hkern u1="x" u2="c" k="31" />
+<hkern u1="x" u2="]" k="23" />
+<hkern u1="x" u2="Y" k="88" />
+<hkern u1="x" u2="V" k="31" />
+<hkern u1="x" u2="U" k="20" />
+<hkern u1="x" u2="T" k="139" />
+<hkern u1="x" u2="R" k="10" />
+<hkern u1="x" u2="Q" k="27" />
+<hkern u1="x" u2="P" k="10" />
+<hkern u1="x" u2="O" k="27" />
+<hkern u1="x" u2="N" k="10" />
+<hkern u1="x" u2="M" k="10" />
+<hkern u1="x" u2="L" k="10" />
+<hkern u1="x" u2="K" k="10" />
+<hkern u1="x" u2="I" k="10" />
+<hkern u1="x" u2="H" k="10" />
+<hkern u1="x" u2="G" k="27" />
+<hkern u1="x" u2="F" k="10" />
+<hkern u1="x" u2="E" k="10" />
+<hkern u1="x" u2="D" k="10" />
+<hkern u1="x" u2="C" k="27" />
+<hkern u1="x" u2="B" k="10" />
+<hkern u1="x" u2="&#x2d;" k="47" />
+<hkern u1="x" u2="&#x26;" k="39" />
+<hkern u1="y" u2="&#x2026;" k="57" />
+<hkern u1="y" u2="&#x201e;" k="57" />
+<hkern u1="y" u2="&#x201a;" k="57" />
+<hkern u1="y" u2="&#xff;" k="-59" />
+<hkern u1="y" u2="&#xfd;" k="-59" />
+<hkern u1="y" u2="&#xf8;" k="10" />
+<hkern u1="y" u2="&#xf6;" k="10" />
+<hkern u1="y" u2="&#xf5;" k="10" />
+<hkern u1="y" u2="&#xf4;" k="10" />
+<hkern u1="y" u2="&#xf3;" k="10" />
+<hkern u1="y" u2="&#xf2;" k="10" />
+<hkern u1="y" u2="&#xf0;" k="10" />
+<hkern u1="y" u2="&#xeb;" k="10" />
+<hkern u1="y" u2="&#xea;" k="10" />
+<hkern u1="y" u2="&#xe9;" k="10" />
+<hkern u1="y" u2="&#xe8;" k="10" />
+<hkern u1="y" u2="&#xe7;" k="10" />
+<hkern u1="y" u2="&#xe6;" k="8" />
+<hkern u1="y" u2="&#xe5;" k="8" />
+<hkern u1="y" u2="&#xe4;" k="8" />
+<hkern u1="y" u2="&#xe3;" k="8" />
+<hkern u1="y" u2="&#xe2;" k="8" />
+<hkern u1="y" u2="&#xe1;" k="8" />
+<hkern u1="y" u2="&#xe0;" k="8" />
+<hkern u1="y" u2="&#xde;" k="14" />
+<hkern u1="y" u2="&#xdd;" k="68" />
+<hkern u1="y" u2="&#xdc;" k="12" />
+<hkern u1="y" u2="&#xdb;" k="12" />
+<hkern u1="y" u2="&#xda;" k="12" />
+<hkern u1="y" u2="&#xd9;" k="12" />
+<hkern u1="y" u2="&#xd1;" k="14" />
+<hkern u1="y" u2="&#xd0;" k="14" />
+<hkern u1="y" u2="&#xcf;" k="14" />
+<hkern u1="y" u2="&#xce;" k="14" />
+<hkern u1="y" u2="&#xcd;" k="14" />
+<hkern u1="y" u2="&#xcc;" k="14" />
+<hkern u1="y" u2="&#xcb;" k="14" />
+<hkern u1="y" u2="&#xca;" k="14" />
+<hkern u1="y" u2="&#xc9;" k="14" />
+<hkern u1="y" u2="&#xc8;" k="14" />
+<hkern u1="y" u2="&#xc5;" k="70" />
+<hkern u1="y" u2="&#xc4;" k="70" />
+<hkern u1="y" u2="&#xc3;" k="70" />
+<hkern u1="y" u2="&#xc2;" k="70" />
+<hkern u1="y" u2="&#xc1;" k="70" />
+<hkern u1="y" u2="&#xc0;" k="70" />
+<hkern u1="y" u2="&#x7d;" k="27" />
+<hkern u1="y" u2="y" k="-59" />
+<hkern u1="y" u2="x" k="-57" />
+<hkern u1="y" u2="v" k="-63" />
+<hkern u1="y" u2="t" k="-45" />
+<hkern u1="y" u2="q" k="10" />
+<hkern u1="y" u2="o" k="10" />
+<hkern u1="y" u2="g" k="10" />
+<hkern u1="y" u2="e" k="10" />
+<hkern u1="y" u2="d" k="10" />
+<hkern u1="y" u2="c" k="10" />
+<hkern u1="y" u2="a" k="8" />
+<hkern u1="y" u2="]" k="37" />
+<hkern u1="y" u2="Y" k="68" />
+<hkern u1="y" u2="X" k="74" />
+<hkern u1="y" u2="V" k="20" />
+<hkern u1="y" u2="U" k="12" />
+<hkern u1="y" u2="T" k="98" />
+<hkern u1="y" u2="R" k="14" />
+<hkern u1="y" u2="P" k="14" />
+<hkern u1="y" u2="N" k="14" />
+<hkern u1="y" u2="M" k="14" />
+<hkern u1="y" u2="L" k="14" />
+<hkern u1="y" u2="K" k="14" />
+<hkern u1="y" u2="I" k="14" />
+<hkern u1="y" u2="H" k="14" />
+<hkern u1="y" u2="F" k="14" />
+<hkern u1="y" u2="E" k="14" />
+<hkern u1="y" u2="D" k="14" />
+<hkern u1="y" u2="B" k="14" />
+<hkern u1="y" u2="A" k="70" />
+<hkern u1="y" u2="&#x2f;" k="31" />
+<hkern u1="y" u2="&#x2e;" k="57" />
+<hkern u1="y" u2="&#x2c;" k="57" />
+<hkern u1="y" u2="&#x29;" k="35" />
+<hkern u1="y" u2="&#x26;" k="25" />
+<hkern u1="&#x7b;" u2="&#xff;" k="23" />
+<hkern u1="&#x7b;" u2="&#xfd;" k="23" />
+<hkern u1="&#x7b;" u2="&#xfc;" k="41" />
+<hkern u1="&#x7b;" u2="&#xfb;" k="41" />
+<hkern u1="&#x7b;" u2="&#xfa;" k="41" />
+<hkern u1="&#x7b;" u2="&#xf9;" k="41" />
+<hkern u1="&#x7b;" u2="&#xf8;" k="45" />
+<hkern u1="&#x7b;" u2="&#xf6;" k="45" />
+<hkern u1="&#x7b;" u2="&#xf5;" k="45" />
+<hkern u1="&#x7b;" u2="&#xf4;" k="45" />
+<hkern u1="&#x7b;" u2="&#xf3;" k="45" />
+<hkern u1="&#x7b;" u2="&#xf2;" k="45" />
+<hkern u1="&#x7b;" u2="&#xf1;" k="37" />
+<hkern u1="&#x7b;" u2="&#xf0;" k="45" />
+<hkern u1="&#x7b;" u2="&#xeb;" k="45" />
+<hkern u1="&#x7b;" u2="&#xea;" k="45" />
+<hkern u1="&#x7b;" u2="&#xe9;" k="45" />
+<hkern u1="&#x7b;" u2="&#xe8;" k="45" />
+<hkern u1="&#x7b;" u2="&#xe7;" k="45" />
+<hkern u1="&#x7b;" u2="&#xe6;" k="35" />
+<hkern u1="&#x7b;" u2="&#xe5;" k="35" />
+<hkern u1="&#x7b;" u2="&#xe4;" k="35" />
+<hkern u1="&#x7b;" u2="&#xe3;" k="35" />
+<hkern u1="&#x7b;" u2="&#xe2;" k="35" />
+<hkern u1="&#x7b;" u2="&#xe1;" k="35" />
+<hkern u1="&#x7b;" u2="&#xe0;" k="35" />
+<hkern u1="&#x7b;" u2="&#xdd;" k="-25" />
+<hkern u1="&#x7b;" u2="&#xd8;" k="35" />
+<hkern u1="&#x7b;" u2="&#xd6;" k="35" />
+<hkern u1="&#x7b;" u2="&#xd5;" k="35" />
+<hkern u1="&#x7b;" u2="&#xd4;" k="35" />
+<hkern u1="&#x7b;" u2="&#xd3;" k="35" />
+<hkern u1="&#x7b;" u2="&#xd2;" k="35" />
+<hkern u1="&#x7b;" u2="&#xce;" k="-25" />
+<hkern u1="&#x7b;" u2="&#xc7;" k="35" />
+<hkern u1="&#x7b;" u2="&#xc5;" k="27" />
+<hkern u1="&#x7b;" u2="&#xc4;" k="27" />
+<hkern u1="&#x7b;" u2="&#xc3;" k="27" />
+<hkern u1="&#x7b;" u2="&#xc2;" k="27" />
+<hkern u1="&#x7b;" u2="&#xc1;" k="27" />
+<hkern u1="&#x7b;" u2="&#xc0;" k="27" />
+<hkern u1="&#x7b;" u2="y" k="23" />
+<hkern u1="&#x7b;" u2="v" k="35" />
+<hkern u1="&#x7b;" u2="u" k="41" />
+<hkern u1="&#x7b;" u2="t" k="35" />
+<hkern u1="&#x7b;" u2="s" k="37" />
+<hkern u1="&#x7b;" u2="r" k="37" />
+<hkern u1="&#x7b;" u2="q" k="45" />
+<hkern u1="&#x7b;" u2="p" k="37" />
+<hkern u1="&#x7b;" u2="o" k="45" />
+<hkern u1="&#x7b;" u2="n" k="37" />
+<hkern u1="&#x7b;" u2="m" k="37" />
+<hkern u1="&#x7b;" u2="g" k="45" />
+<hkern u1="&#x7b;" u2="e" k="45" />
+<hkern u1="&#x7b;" u2="d" k="45" />
+<hkern u1="&#x7b;" u2="c" k="45" />
+<hkern u1="&#x7b;" u2="a" k="35" />
+<hkern u1="&#x7b;" u2="Y" k="-25" />
+<hkern u1="&#x7b;" u2="Q" k="35" />
+<hkern u1="&#x7b;" u2="O" k="35" />
+<hkern u1="&#x7b;" u2="G" k="35" />
+<hkern u1="&#x7b;" u2="C" k="35" />
+<hkern u1="&#x7b;" u2="A" k="27" />
+<hkern u1="&#xa1;" u2="&#xdd;" k="66" />
+<hkern u1="&#xa1;" u2="Y" k="66" />
+<hkern u1="&#xa1;" u2="V" k="33" />
+<hkern u1="&#xa1;" u2="T" k="98" />
+<hkern u1="&#xab;" u2="&#xdd;" k="66" />
+<hkern u1="&#xab;" u2="Y" k="66" />
+<hkern u1="&#xab;" u2="V" k="25" />
+<hkern u1="&#xab;" u2="T" k="104" />
+<hkern u1="&#xae;" u2="&#xdd;" k="51" />
+<hkern u1="&#xae;" u2="&#xc5;" k="23" />
+<hkern u1="&#xae;" u2="&#xc4;" k="23" />
+<hkern u1="&#xae;" u2="&#xc3;" k="23" />
+<hkern u1="&#xae;" u2="&#xc2;" k="23" />
+<hkern u1="&#xae;" u2="&#xc1;" k="23" />
+<hkern u1="&#xae;" u2="&#xc0;" k="23" />
+<hkern u1="&#xae;" u2="Y" k="51" />
+<hkern u1="&#xae;" u2="V" k="20" />
+<hkern u1="&#xae;" u2="T" k="35" />
+<hkern u1="&#xae;" u2="A" k="23" />
+<hkern u1="&#xbb;" u2="&#x201d;" k="45" />
+<hkern u1="&#xbb;" u2="&#x2019;" k="45" />
+<hkern u1="&#xbb;" u2="&#xdd;" k="121" />
+<hkern u1="&#xbb;" u2="x" k="27" />
+<hkern u1="&#xbb;" u2="Y" k="121" />
+<hkern u1="&#xbb;" u2="X" k="31" />
+<hkern u1="&#xbb;" u2="V" k="63" />
+<hkern u1="&#xbb;" u2="T" k="121" />
+<hkern u1="&#xbb;" u2="&#x27;" k="45" />
+<hkern u1="&#xbb;" u2="&#x22;" k="45" />
+<hkern u1="&#xbf;" u2="&#xfb04;" k="35" />
+<hkern u1="&#xbf;" u2="&#xfb03;" k="35" />
+<hkern u1="&#xbf;" u2="&#xfb02;" k="35" />
+<hkern u1="&#xbf;" u2="&#xfb01;" k="35" />
+<hkern u1="&#xbf;" u2="&#xff;" k="27" />
+<hkern u1="&#xbf;" u2="&#xfe;" k="37" />
+<hkern u1="&#xbf;" u2="&#xfd;" k="27" />
+<hkern u1="&#xbf;" u2="&#xfc;" k="47" />
+<hkern u1="&#xbf;" u2="&#xfb;" k="47" />
+<hkern u1="&#xbf;" u2="&#xfa;" k="47" />
+<hkern u1="&#xbf;" u2="&#xf9;" k="47" />
+<hkern u1="&#xbf;" u2="&#xf8;" k="51" />
+<hkern u1="&#xbf;" u2="&#xf6;" k="51" />
+<hkern u1="&#xbf;" u2="&#xf5;" k="51" />
+<hkern u1="&#xbf;" u2="&#xf4;" k="51" />
+<hkern u1="&#xbf;" u2="&#xf3;" k="51" />
+<hkern u1="&#xbf;" u2="&#xf2;" k="51" />
+<hkern u1="&#xbf;" u2="&#xf1;" k="37" />
+<hkern u1="&#xbf;" u2="&#xf0;" k="51" />
+<hkern u1="&#xbf;" u2="&#xef;" k="37" />
+<hkern u1="&#xbf;" u2="&#xee;" k="37" />
+<hkern u1="&#xbf;" u2="&#xed;" k="37" />
+<hkern u1="&#xbf;" u2="&#xec;" k="37" />
+<hkern u1="&#xbf;" u2="&#xeb;" k="51" />
+<hkern u1="&#xbf;" u2="&#xea;" k="51" />
+<hkern u1="&#xbf;" u2="&#xe9;" k="51" />
+<hkern u1="&#xbf;" u2="&#xe8;" k="51" />
+<hkern u1="&#xbf;" u2="&#xe7;" k="51" />
+<hkern u1="&#xbf;" u2="&#xe6;" k="43" />
+<hkern u1="&#xbf;" u2="&#xe5;" k="43" />
+<hkern u1="&#xbf;" u2="&#xe4;" k="43" />
+<hkern u1="&#xbf;" u2="&#xe3;" k="43" />
+<hkern u1="&#xbf;" u2="&#xe2;" k="43" />
+<hkern u1="&#xbf;" u2="&#xe1;" k="43" />
+<hkern u1="&#xbf;" u2="&#xe0;" k="43" />
+<hkern u1="&#xbf;" u2="&#xdf;" k="35" />
+<hkern u1="&#xbf;" u2="&#xde;" k="33" />
+<hkern u1="&#xbf;" u2="&#xdd;" k="113" />
+<hkern u1="&#xbf;" u2="&#xdc;" k="51" />
+<hkern u1="&#xbf;" u2="&#xdb;" k="51" />
+<hkern u1="&#xbf;" u2="&#xda;" k="51" />
+<hkern u1="&#xbf;" u2="&#xd9;" k="51" />
+<hkern u1="&#xbf;" u2="&#xd8;" k="45" />
+<hkern u1="&#xbf;" u2="&#xd6;" k="45" />
+<hkern u1="&#xbf;" u2="&#xd5;" k="45" />
+<hkern u1="&#xbf;" u2="&#xd4;" k="45" />
+<hkern u1="&#xbf;" u2="&#xd3;" k="45" />
+<hkern u1="&#xbf;" u2="&#xd2;" k="45" />
+<hkern u1="&#xbf;" u2="&#xd1;" k="33" />
+<hkern u1="&#xbf;" u2="&#xd0;" k="33" />
+<hkern u1="&#xbf;" u2="&#xcf;" k="33" />
+<hkern u1="&#xbf;" u2="&#xce;" k="33" />
+<hkern u1="&#xbf;" u2="&#xcd;" k="33" />
+<hkern u1="&#xbf;" u2="&#xcc;" k="33" />
+<hkern u1="&#xbf;" u2="&#xcb;" k="33" />
+<hkern u1="&#xbf;" u2="&#xca;" k="33" />
+<hkern u1="&#xbf;" u2="&#xc9;" k="33" />
+<hkern u1="&#xbf;" u2="&#xc8;" k="33" />
+<hkern u1="&#xbf;" u2="&#xc7;" k="45" />
+<hkern u1="&#xbf;" u2="&#xc5;" k="31" />
+<hkern u1="&#xbf;" u2="&#xc4;" k="31" />
+<hkern u1="&#xbf;" u2="&#xc3;" k="31" />
+<hkern u1="&#xbf;" u2="&#xc2;" k="31" />
+<hkern u1="&#xbf;" u2="&#xc1;" k="31" />
+<hkern u1="&#xbf;" u2="&#xc0;" k="31" />
+<hkern u1="&#xbf;" u2="y" k="27" />
+<hkern u1="&#xbf;" u2="x" k="23" />
+<hkern u1="&#xbf;" u2="v" k="43" />
+<hkern u1="&#xbf;" u2="u" k="47" />
+<hkern u1="&#xbf;" u2="t" k="41" />
+<hkern u1="&#xbf;" u2="s" k="39" />
+<hkern u1="&#xbf;" u2="r" k="37" />
+<hkern u1="&#xbf;" u2="q" k="51" />
+<hkern u1="&#xbf;" u2="p" k="37" />
+<hkern u1="&#xbf;" u2="o" k="51" />
+<hkern u1="&#xbf;" u2="n" k="37" />
+<hkern u1="&#xbf;" u2="m" k="37" />
+<hkern u1="&#xbf;" u2="k" k="37" />
+<hkern u1="&#xbf;" u2="j" k="-37" />
+<hkern u1="&#xbf;" u2="i" k="37" />
+<hkern u1="&#xbf;" u2="h" k="37" />
+<hkern u1="&#xbf;" u2="g" k="51" />
+<hkern u1="&#xbf;" u2="f" k="35" />
+<hkern u1="&#xbf;" u2="e" k="51" />
+<hkern u1="&#xbf;" u2="d" k="51" />
+<hkern u1="&#xbf;" u2="c" k="51" />
+<hkern u1="&#xbf;" u2="b" k="37" />
+<hkern u1="&#xbf;" u2="a" k="43" />
+<hkern u1="&#xbf;" u2="Y" k="113" />
+<hkern u1="&#xbf;" u2="V" k="80" />
+<hkern u1="&#xbf;" u2="U" k="51" />
+<hkern u1="&#xbf;" u2="T" k="141" />
+<hkern u1="&#xbf;" u2="S" k="33" />
+<hkern u1="&#xbf;" u2="R" k="33" />
+<hkern u1="&#xbf;" u2="Q" k="45" />
+<hkern u1="&#xbf;" u2="P" k="33" />
+<hkern u1="&#xbf;" u2="O" k="45" />
+<hkern u1="&#xbf;" u2="N" k="33" />
+<hkern u1="&#xbf;" u2="M" k="33" />
+<hkern u1="&#xbf;" u2="L" k="33" />
+<hkern u1="&#xbf;" u2="K" k="33" />
+<hkern u1="&#xbf;" u2="I" k="33" />
+<hkern u1="&#xbf;" u2="H" k="33" />
+<hkern u1="&#xbf;" u2="G" k="45" />
+<hkern u1="&#xbf;" u2="F" k="33" />
+<hkern u1="&#xbf;" u2="E" k="33" />
+<hkern u1="&#xbf;" u2="D" k="33" />
+<hkern u1="&#xbf;" u2="C" k="45" />
+<hkern u1="&#xbf;" u2="B" k="33" />
+<hkern u1="&#xbf;" u2="A" k="31" />
+<hkern u1="&#xc0;" u2="&#x2122;" k="90" />
+<hkern u1="&#xc0;" u2="&#xae;" k="20" />
+<hkern u1="&#xc0;" u2="&#x7d;" k="25" />
+<hkern u1="&#xc0;" u2="v" k="74" />
+<hkern u1="&#xc0;" u2="]" k="31" />
+<hkern u1="&#xc0;" u2="\" k="66" />
+<hkern u1="&#xc0;" u2="X" k="-49" />
+<hkern u1="&#xc0;" u2="V" k="90" />
+<hkern u1="&#xc0;" u2="&#x3f;" k="37" />
+<hkern u1="&#xc0;" u2="&#x2a;" k="84" />
+<hkern u1="&#xc1;" u2="&#x2122;" k="90" />
+<hkern u1="&#xc1;" u2="&#xae;" k="20" />
+<hkern u1="&#xc1;" u2="&#x7d;" k="25" />
+<hkern u1="&#xc1;" u2="v" k="74" />
+<hkern u1="&#xc1;" u2="]" k="31" />
+<hkern u1="&#xc1;" u2="\" k="66" />
+<hkern u1="&#xc1;" u2="X" k="-49" />
+<hkern u1="&#xc1;" u2="V" k="90" />
+<hkern u1="&#xc1;" u2="&#x3f;" k="37" />
+<hkern u1="&#xc1;" u2="&#x2a;" k="84" />
+<hkern u1="&#xc2;" u2="&#x2122;" k="90" />
+<hkern u1="&#xc2;" u2="&#xae;" k="20" />
+<hkern u1="&#xc2;" u2="&#x7d;" k="25" />
+<hkern u1="&#xc2;" u2="v" k="74" />
+<hkern u1="&#xc2;" u2="]" k="31" />
+<hkern u1="&#xc2;" u2="\" k="66" />
+<hkern u1="&#xc2;" u2="X" k="-49" />
+<hkern u1="&#xc2;" u2="V" k="90" />
+<hkern u1="&#xc2;" u2="&#x3f;" k="37" />
+<hkern u1="&#xc2;" u2="&#x2a;" k="84" />
+<hkern u1="&#xc3;" u2="&#x2122;" k="90" />
+<hkern u1="&#xc3;" u2="&#xae;" k="20" />
+<hkern u1="&#xc3;" u2="&#x7d;" k="25" />
+<hkern u1="&#xc3;" u2="v" k="74" />
+<hkern u1="&#xc3;" u2="]" k="31" />
+<hkern u1="&#xc3;" u2="\" k="66" />
+<hkern u1="&#xc3;" u2="X" k="-49" />
+<hkern u1="&#xc3;" u2="V" k="90" />
+<hkern u1="&#xc3;" u2="&#x3f;" k="37" />
+<hkern u1="&#xc3;" u2="&#x2a;" k="84" />
+<hkern u1="&#xc4;" u2="&#x2122;" k="90" />
+<hkern u1="&#xc4;" u2="&#xae;" k="20" />
+<hkern u1="&#xc4;" u2="&#x7d;" k="25" />
+<hkern u1="&#xc4;" u2="v" k="74" />
+<hkern u1="&#xc4;" u2="]" k="31" />
+<hkern u1="&#xc4;" u2="\" k="66" />
+<hkern u1="&#xc4;" u2="X" k="-49" />
+<hkern u1="&#xc4;" u2="V" k="90" />
+<hkern u1="&#xc4;" u2="&#x3f;" k="37" />
+<hkern u1="&#xc4;" u2="&#x2a;" k="84" />
+<hkern u1="&#xc5;" u2="&#x2122;" k="90" />
+<hkern u1="&#xc5;" u2="&#xae;" k="20" />
+<hkern u1="&#xc5;" u2="&#x7d;" k="25" />
+<hkern u1="&#xc5;" u2="v" k="74" />
+<hkern u1="&#xc5;" u2="]" k="31" />
+<hkern u1="&#xc5;" u2="\" k="66" />
+<hkern u1="&#xc5;" u2="X" k="-49" />
+<hkern u1="&#xc5;" u2="V" k="90" />
+<hkern u1="&#xc5;" u2="&#x3f;" k="37" />
+<hkern u1="&#xc5;" u2="&#x2a;" k="84" />
+<hkern u1="&#xc6;" u2="&#xfb04;" k="23" />
+<hkern u1="&#xc6;" u2="&#xfb03;" k="23" />
+<hkern u1="&#xc6;" u2="&#xfb02;" k="23" />
+<hkern u1="&#xc6;" u2="&#xfb01;" k="23" />
+<hkern u1="&#xc6;" u2="&#xff;" k="29" />
+<hkern u1="&#xc6;" u2="&#xfd;" k="29" />
+<hkern u1="&#xc6;" u2="&#xfc;" k="27" />
+<hkern u1="&#xc6;" u2="&#xfb;" k="27" />
+<hkern u1="&#xc6;" u2="&#xfa;" k="27" />
+<hkern u1="&#xc6;" u2="&#xf9;" k="27" />
+<hkern u1="&#xc6;" u2="&#xf8;" k="29" />
+<hkern u1="&#xc6;" u2="&#xf6;" k="29" />
+<hkern u1="&#xc6;" u2="&#xf5;" k="29" />
+<hkern u1="&#xc6;" u2="&#xf4;" k="29" />
+<hkern u1="&#xc6;" u2="&#xf3;" k="29" />
+<hkern u1="&#xc6;" u2="&#xf2;" k="29" />
+<hkern u1="&#xc6;" u2="&#xf1;" k="14" />
+<hkern u1="&#xc6;" u2="&#xf0;" k="29" />
+<hkern u1="&#xc6;" u2="&#xeb;" k="29" />
+<hkern u1="&#xc6;" u2="&#xea;" k="29" />
+<hkern u1="&#xc6;" u2="&#xe9;" k="29" />
+<hkern u1="&#xc6;" u2="&#xe8;" k="29" />
+<hkern u1="&#xc6;" u2="&#xe7;" k="29" />
+<hkern u1="&#xc6;" u2="&#xe6;" k="14" />
+<hkern u1="&#xc6;" u2="&#xe5;" k="14" />
+<hkern u1="&#xc6;" u2="&#xe4;" k="14" />
+<hkern u1="&#xc6;" u2="&#xe3;" k="14" />
+<hkern u1="&#xc6;" u2="&#xe2;" k="14" />
+<hkern u1="&#xc6;" u2="&#xe1;" k="14" />
+<hkern u1="&#xc6;" u2="&#xe0;" k="14" />
+<hkern u1="&#xc6;" u2="&#xdf;" k="23" />
+<hkern u1="&#xc6;" u2="&#xd8;" k="14" />
+<hkern u1="&#xc6;" u2="&#xd6;" k="14" />
+<hkern u1="&#xc6;" u2="&#xd5;" k="14" />
+<hkern u1="&#xc6;" u2="&#xd4;" k="14" />
+<hkern u1="&#xc6;" u2="&#xd3;" k="14" />
+<hkern u1="&#xc6;" u2="&#xd2;" k="14" />
+<hkern u1="&#xc6;" u2="&#xc7;" k="14" />
+<hkern u1="&#xc6;" u2="y" k="29" />
+<hkern u1="&#xc6;" u2="v" k="33" />
+<hkern u1="&#xc6;" u2="u" k="27" />
+<hkern u1="&#xc6;" u2="t" k="35" />
+<hkern u1="&#xc6;" u2="s" k="12" />
+<hkern u1="&#xc6;" u2="r" k="14" />
+<hkern u1="&#xc6;" u2="q" k="29" />
+<hkern u1="&#xc6;" u2="p" k="14" />
+<hkern u1="&#xc6;" u2="o" k="29" />
+<hkern u1="&#xc6;" u2="n" k="14" />
+<hkern u1="&#xc6;" u2="m" k="14" />
+<hkern u1="&#xc6;" u2="g" k="29" />
+<hkern u1="&#xc6;" u2="f" k="23" />
+<hkern u1="&#xc6;" u2="e" k="29" />
+<hkern u1="&#xc6;" u2="d" k="29" />
+<hkern u1="&#xc6;" u2="c" k="29" />
+<hkern u1="&#xc6;" u2="a" k="14" />
+<hkern u1="&#xc6;" u2="Q" k="14" />
+<hkern u1="&#xc6;" u2="O" k="14" />
+<hkern u1="&#xc6;" u2="G" k="14" />
+<hkern u1="&#xc6;" u2="C" k="14" />
+<hkern u1="&#xc6;" u2="&#x26;" k="14" />
+<hkern u1="&#xc7;" u2="&#xfb04;" k="14" />
+<hkern u1="&#xc7;" u2="&#xfb03;" k="14" />
+<hkern u1="&#xc7;" u2="&#xfb02;" k="14" />
+<hkern u1="&#xc7;" u2="&#xfb01;" k="14" />
+<hkern u1="&#xc7;" u2="&#x2014;" k="45" />
+<hkern u1="&#xc7;" u2="&#x2013;" k="45" />
+<hkern u1="&#xc7;" u2="&#xff;" k="94" />
+<hkern u1="&#xc7;" u2="&#xfd;" k="94" />
+<hkern u1="&#xc7;" u2="&#xfc;" k="23" />
+<hkern u1="&#xc7;" u2="&#xfb;" k="23" />
+<hkern u1="&#xc7;" u2="&#xfa;" k="23" />
+<hkern u1="&#xc7;" u2="&#xf9;" k="23" />
+<hkern u1="&#xc7;" u2="&#xf8;" k="33" />
+<hkern u1="&#xc7;" u2="&#xf6;" k="33" />
+<hkern u1="&#xc7;" u2="&#xf5;" k="33" />
+<hkern u1="&#xc7;" u2="&#xf4;" k="33" />
+<hkern u1="&#xc7;" u2="&#xf3;" k="33" />
+<hkern u1="&#xc7;" u2="&#xf2;" k="33" />
+<hkern u1="&#xc7;" u2="&#xf1;" k="14" />
+<hkern u1="&#xc7;" u2="&#xf0;" k="33" />
+<hkern u1="&#xc7;" u2="&#xeb;" k="33" />
+<hkern u1="&#xc7;" u2="&#xea;" k="33" />
+<hkern u1="&#xc7;" u2="&#xe9;" k="33" />
+<hkern u1="&#xc7;" u2="&#xe8;" k="33" />
+<hkern u1="&#xc7;" u2="&#xe7;" k="33" />
+<hkern u1="&#xc7;" u2="&#xdf;" k="14" />
+<hkern u1="&#xc7;" u2="&#xd8;" k="18" />
+<hkern u1="&#xc7;" u2="&#xd6;" k="18" />
+<hkern u1="&#xc7;" u2="&#xd5;" k="18" />
+<hkern u1="&#xc7;" u2="&#xd4;" k="18" />
+<hkern u1="&#xc7;" u2="&#xd3;" k="18" />
+<hkern u1="&#xc7;" u2="&#xd2;" k="18" />
+<hkern u1="&#xc7;" u2="&#xc7;" k="18" />
+<hkern u1="&#xc7;" u2="y" k="94" />
+<hkern u1="&#xc7;" u2="v" k="102" />
+<hkern u1="&#xc7;" u2="u" k="23" />
+<hkern u1="&#xc7;" u2="t" k="41" />
+<hkern u1="&#xc7;" u2="s" k="20" />
+<hkern u1="&#xc7;" u2="r" k="14" />
+<hkern u1="&#xc7;" u2="q" k="33" />
+<hkern u1="&#xc7;" u2="p" k="14" />
+<hkern u1="&#xc7;" u2="o" k="33" />
+<hkern u1="&#xc7;" u2="n" k="14" />
+<hkern u1="&#xc7;" u2="m" k="14" />
+<hkern u1="&#xc7;" u2="g" k="33" />
+<hkern u1="&#xc7;" u2="f" k="14" />
+<hkern u1="&#xc7;" u2="e" k="33" />
+<hkern u1="&#xc7;" u2="d" k="33" />
+<hkern u1="&#xc7;" u2="c" k="33" />
+<hkern u1="&#xc7;" u2="Q" k="18" />
+<hkern u1="&#xc7;" u2="O" k="18" />
+<hkern u1="&#xc7;" u2="G" k="18" />
+<hkern u1="&#xc7;" u2="C" k="18" />
+<hkern u1="&#xc7;" u2="&#x2d;" k="45" />
+<hkern u1="&#xc7;" u2="&#x26;" k="14" />
+<hkern u1="&#xc8;" u2="&#xfb04;" k="23" />
+<hkern u1="&#xc8;" u2="&#xfb03;" k="23" />
+<hkern u1="&#xc8;" u2="&#xfb02;" k="23" />
+<hkern u1="&#xc8;" u2="&#xfb01;" k="23" />
+<hkern u1="&#xc8;" u2="&#xff;" k="29" />
+<hkern u1="&#xc8;" u2="&#xfd;" k="29" />
+<hkern u1="&#xc8;" u2="&#xfc;" k="27" />
+<hkern u1="&#xc8;" u2="&#xfb;" k="27" />
+<hkern u1="&#xc8;" u2="&#xfa;" k="27" />
+<hkern u1="&#xc8;" u2="&#xf9;" k="27" />
+<hkern u1="&#xc8;" u2="&#xf8;" k="29" />
+<hkern u1="&#xc8;" u2="&#xf6;" k="29" />
+<hkern u1="&#xc8;" u2="&#xf5;" k="29" />
+<hkern u1="&#xc8;" u2="&#xf4;" k="29" />
+<hkern u1="&#xc8;" u2="&#xf3;" k="29" />
+<hkern u1="&#xc8;" u2="&#xf2;" k="29" />
+<hkern u1="&#xc8;" u2="&#xf1;" k="14" />
+<hkern u1="&#xc8;" u2="&#xf0;" k="29" />
+<hkern u1="&#xc8;" u2="&#xeb;" k="29" />
+<hkern u1="&#xc8;" u2="&#xea;" k="29" />
+<hkern u1="&#xc8;" u2="&#xe9;" k="29" />
+<hkern u1="&#xc8;" u2="&#xe8;" k="29" />
+<hkern u1="&#xc8;" u2="&#xe7;" k="29" />
+<hkern u1="&#xc8;" u2="&#xe6;" k="14" />
+<hkern u1="&#xc8;" u2="&#xe5;" k="14" />
+<hkern u1="&#xc8;" u2="&#xe4;" k="14" />
+<hkern u1="&#xc8;" u2="&#xe3;" k="14" />
+<hkern u1="&#xc8;" u2="&#xe2;" k="14" />
+<hkern u1="&#xc8;" u2="&#xe1;" k="14" />
+<hkern u1="&#xc8;" u2="&#xe0;" k="14" />
+<hkern u1="&#xc8;" u2="&#xdf;" k="23" />
+<hkern u1="&#xc8;" u2="&#xd8;" k="14" />
+<hkern u1="&#xc8;" u2="&#xd6;" k="14" />
+<hkern u1="&#xc8;" u2="&#xd5;" k="14" />
+<hkern u1="&#xc8;" u2="&#xd4;" k="14" />
+<hkern u1="&#xc8;" u2="&#xd3;" k="14" />
+<hkern u1="&#xc8;" u2="&#xd2;" k="14" />
+<hkern u1="&#xc8;" u2="&#xc7;" k="14" />
+<hkern u1="&#xc8;" u2="y" k="29" />
+<hkern u1="&#xc8;" u2="v" k="33" />
+<hkern u1="&#xc8;" u2="u" k="27" />
+<hkern u1="&#xc8;" u2="t" k="35" />
+<hkern u1="&#xc8;" u2="s" k="12" />
+<hkern u1="&#xc8;" u2="r" k="14" />
+<hkern u1="&#xc8;" u2="q" k="29" />
+<hkern u1="&#xc8;" u2="p" k="14" />
+<hkern u1="&#xc8;" u2="o" k="29" />
+<hkern u1="&#xc8;" u2="n" k="14" />
+<hkern u1="&#xc8;" u2="m" k="14" />
+<hkern u1="&#xc8;" u2="g" k="29" />
+<hkern u1="&#xc8;" u2="f" k="23" />
+<hkern u1="&#xc8;" u2="e" k="29" />
+<hkern u1="&#xc8;" u2="d" k="29" />
+<hkern u1="&#xc8;" u2="c" k="29" />
+<hkern u1="&#xc8;" u2="a" k="14" />
+<hkern u1="&#xc8;" u2="Q" k="14" />
+<hkern u1="&#xc8;" u2="O" k="14" />
+<hkern u1="&#xc8;" u2="G" k="14" />
+<hkern u1="&#xc8;" u2="C" k="14" />
+<hkern u1="&#xc8;" u2="&#x26;" k="14" />
+<hkern u1="&#xc9;" u2="&#xfb04;" k="23" />
+<hkern u1="&#xc9;" u2="&#xfb03;" k="23" />
+<hkern u1="&#xc9;" u2="&#xfb02;" k="23" />
+<hkern u1="&#xc9;" u2="&#xfb01;" k="23" />
+<hkern u1="&#xc9;" u2="&#xff;" k="29" />
+<hkern u1="&#xc9;" u2="&#xfd;" k="29" />
+<hkern u1="&#xc9;" u2="&#xfc;" k="27" />
+<hkern u1="&#xc9;" u2="&#xfb;" k="27" />
+<hkern u1="&#xc9;" u2="&#xfa;" k="27" />
+<hkern u1="&#xc9;" u2="&#xf9;" k="27" />
+<hkern u1="&#xc9;" u2="&#xf8;" k="29" />
+<hkern u1="&#xc9;" u2="&#xf6;" k="29" />
+<hkern u1="&#xc9;" u2="&#xf5;" k="29" />
+<hkern u1="&#xc9;" u2="&#xf4;" k="29" />
+<hkern u1="&#xc9;" u2="&#xf3;" k="29" />
+<hkern u1="&#xc9;" u2="&#xf2;" k="29" />
+<hkern u1="&#xc9;" u2="&#xf1;" k="14" />
+<hkern u1="&#xc9;" u2="&#xf0;" k="29" />
+<hkern u1="&#xc9;" u2="&#xeb;" k="29" />
+<hkern u1="&#xc9;" u2="&#xea;" k="29" />
+<hkern u1="&#xc9;" u2="&#xe9;" k="29" />
+<hkern u1="&#xc9;" u2="&#xe8;" k="29" />
+<hkern u1="&#xc9;" u2="&#xe7;" k="29" />
+<hkern u1="&#xc9;" u2="&#xe6;" k="14" />
+<hkern u1="&#xc9;" u2="&#xe5;" k="14" />
+<hkern u1="&#xc9;" u2="&#xe4;" k="14" />
+<hkern u1="&#xc9;" u2="&#xe3;" k="14" />
+<hkern u1="&#xc9;" u2="&#xe2;" k="14" />
+<hkern u1="&#xc9;" u2="&#xe1;" k="14" />
+<hkern u1="&#xc9;" u2="&#xe0;" k="14" />
+<hkern u1="&#xc9;" u2="&#xdf;" k="23" />
+<hkern u1="&#xc9;" u2="&#xd8;" k="14" />
+<hkern u1="&#xc9;" u2="&#xd6;" k="14" />
+<hkern u1="&#xc9;" u2="&#xd5;" k="14" />
+<hkern u1="&#xc9;" u2="&#xd4;" k="14" />
+<hkern u1="&#xc9;" u2="&#xd3;" k="14" />
+<hkern u1="&#xc9;" u2="&#xd2;" k="14" />
+<hkern u1="&#xc9;" u2="&#xc7;" k="14" />
+<hkern u1="&#xc9;" u2="y" k="29" />
+<hkern u1="&#xc9;" u2="v" k="33" />
+<hkern u1="&#xc9;" u2="u" k="27" />
+<hkern u1="&#xc9;" u2="t" k="35" />
+<hkern u1="&#xc9;" u2="s" k="12" />
+<hkern u1="&#xc9;" u2="r" k="14" />
+<hkern u1="&#xc9;" u2="q" k="29" />
+<hkern u1="&#xc9;" u2="p" k="14" />
+<hkern u1="&#xc9;" u2="o" k="29" />
+<hkern u1="&#xc9;" u2="n" k="14" />
+<hkern u1="&#xc9;" u2="m" k="14" />
+<hkern u1="&#xc9;" u2="g" k="29" />
+<hkern u1="&#xc9;" u2="f" k="23" />
+<hkern u1="&#xc9;" u2="e" k="29" />
+<hkern u1="&#xc9;" u2="d" k="29" />
+<hkern u1="&#xc9;" u2="c" k="29" />
+<hkern u1="&#xc9;" u2="a" k="14" />
+<hkern u1="&#xc9;" u2="Q" k="14" />
+<hkern u1="&#xc9;" u2="O" k="14" />
+<hkern u1="&#xc9;" u2="G" k="14" />
+<hkern u1="&#xc9;" u2="C" k="14" />
+<hkern u1="&#xc9;" u2="&#x26;" k="14" />
+<hkern u1="&#xca;" u2="&#xfb04;" k="23" />
+<hkern u1="&#xca;" u2="&#xfb03;" k="23" />
+<hkern u1="&#xca;" u2="&#xfb02;" k="23" />
+<hkern u1="&#xca;" u2="&#xfb01;" k="23" />
+<hkern u1="&#xca;" u2="&#xff;" k="29" />
+<hkern u1="&#xca;" u2="&#xfd;" k="29" />
+<hkern u1="&#xca;" u2="&#xfc;" k="27" />
+<hkern u1="&#xca;" u2="&#xfb;" k="27" />
+<hkern u1="&#xca;" u2="&#xfa;" k="27" />
+<hkern u1="&#xca;" u2="&#xf9;" k="27" />
+<hkern u1="&#xca;" u2="&#xf8;" k="29" />
+<hkern u1="&#xca;" u2="&#xf6;" k="29" />
+<hkern u1="&#xca;" u2="&#xf5;" k="29" />
+<hkern u1="&#xca;" u2="&#xf4;" k="29" />
+<hkern u1="&#xca;" u2="&#xf3;" k="29" />
+<hkern u1="&#xca;" u2="&#xf2;" k="29" />
+<hkern u1="&#xca;" u2="&#xf1;" k="14" />
+<hkern u1="&#xca;" u2="&#xf0;" k="29" />
+<hkern u1="&#xca;" u2="&#xeb;" k="29" />
+<hkern u1="&#xca;" u2="&#xea;" k="29" />
+<hkern u1="&#xca;" u2="&#xe9;" k="29" />
+<hkern u1="&#xca;" u2="&#xe8;" k="29" />
+<hkern u1="&#xca;" u2="&#xe7;" k="29" />
+<hkern u1="&#xca;" u2="&#xe6;" k="14" />
+<hkern u1="&#xca;" u2="&#xe5;" k="14" />
+<hkern u1="&#xca;" u2="&#xe4;" k="14" />
+<hkern u1="&#xca;" u2="&#xe3;" k="14" />
+<hkern u1="&#xca;" u2="&#xe2;" k="14" />
+<hkern u1="&#xca;" u2="&#xe1;" k="14" />
+<hkern u1="&#xca;" u2="&#xe0;" k="14" />
+<hkern u1="&#xca;" u2="&#xdf;" k="23" />
+<hkern u1="&#xca;" u2="&#xd8;" k="14" />
+<hkern u1="&#xca;" u2="&#xd6;" k="14" />
+<hkern u1="&#xca;" u2="&#xd5;" k="14" />
+<hkern u1="&#xca;" u2="&#xd4;" k="14" />
+<hkern u1="&#xca;" u2="&#xd3;" k="14" />
+<hkern u1="&#xca;" u2="&#xd2;" k="14" />
+<hkern u1="&#xca;" u2="&#xc7;" k="14" />
+<hkern u1="&#xca;" u2="y" k="29" />
+<hkern u1="&#xca;" u2="v" k="33" />
+<hkern u1="&#xca;" u2="u" k="27" />
+<hkern u1="&#xca;" u2="t" k="35" />
+<hkern u1="&#xca;" u2="s" k="12" />
+<hkern u1="&#xca;" u2="r" k="14" />
+<hkern u1="&#xca;" u2="q" k="29" />
+<hkern u1="&#xca;" u2="p" k="14" />
+<hkern u1="&#xca;" u2="o" k="29" />
+<hkern u1="&#xca;" u2="n" k="14" />
+<hkern u1="&#xca;" u2="m" k="14" />
+<hkern u1="&#xca;" u2="g" k="29" />
+<hkern u1="&#xca;" u2="f" k="23" />
+<hkern u1="&#xca;" u2="e" k="29" />
+<hkern u1="&#xca;" u2="d" k="29" />
+<hkern u1="&#xca;" u2="c" k="29" />
+<hkern u1="&#xca;" u2="a" k="14" />
+<hkern u1="&#xca;" u2="Q" k="14" />
+<hkern u1="&#xca;" u2="O" k="14" />
+<hkern u1="&#xca;" u2="G" k="14" />
+<hkern u1="&#xca;" u2="C" k="14" />
+<hkern u1="&#xca;" u2="&#x26;" k="14" />
+<hkern u1="&#xcb;" u2="&#xfb04;" k="23" />
+<hkern u1="&#xcb;" u2="&#xfb03;" k="23" />
+<hkern u1="&#xcb;" u2="&#xfb02;" k="23" />
+<hkern u1="&#xcb;" u2="&#xfb01;" k="23" />
+<hkern u1="&#xcb;" u2="&#xff;" k="29" />
+<hkern u1="&#xcb;" u2="&#xfd;" k="29" />
+<hkern u1="&#xcb;" u2="&#xfc;" k="27" />
+<hkern u1="&#xcb;" u2="&#xfb;" k="27" />
+<hkern u1="&#xcb;" u2="&#xfa;" k="27" />
+<hkern u1="&#xcb;" u2="&#xf9;" k="27" />
+<hkern u1="&#xcb;" u2="&#xf8;" k="29" />
+<hkern u1="&#xcb;" u2="&#xf6;" k="29" />
+<hkern u1="&#xcb;" u2="&#xf5;" k="29" />
+<hkern u1="&#xcb;" u2="&#xf4;" k="29" />
+<hkern u1="&#xcb;" u2="&#xf3;" k="29" />
+<hkern u1="&#xcb;" u2="&#xf2;" k="29" />
+<hkern u1="&#xcb;" u2="&#xf1;" k="14" />
+<hkern u1="&#xcb;" u2="&#xf0;" k="29" />
+<hkern u1="&#xcb;" u2="&#xeb;" k="29" />
+<hkern u1="&#xcb;" u2="&#xea;" k="29" />
+<hkern u1="&#xcb;" u2="&#xe9;" k="29" />
+<hkern u1="&#xcb;" u2="&#xe8;" k="29" />
+<hkern u1="&#xcb;" u2="&#xe7;" k="29" />
+<hkern u1="&#xcb;" u2="&#xe6;" k="14" />
+<hkern u1="&#xcb;" u2="&#xe5;" k="14" />
+<hkern u1="&#xcb;" u2="&#xe4;" k="14" />
+<hkern u1="&#xcb;" u2="&#xe3;" k="14" />
+<hkern u1="&#xcb;" u2="&#xe2;" k="14" />
+<hkern u1="&#xcb;" u2="&#xe1;" k="14" />
+<hkern u1="&#xcb;" u2="&#xe0;" k="14" />
+<hkern u1="&#xcb;" u2="&#xdf;" k="23" />
+<hkern u1="&#xcb;" u2="&#xd8;" k="14" />
+<hkern u1="&#xcb;" u2="&#xd6;" k="14" />
+<hkern u1="&#xcb;" u2="&#xd5;" k="14" />
+<hkern u1="&#xcb;" u2="&#xd4;" k="14" />
+<hkern u1="&#xcb;" u2="&#xd3;" k="14" />
+<hkern u1="&#xcb;" u2="&#xd2;" k="14" />
+<hkern u1="&#xcb;" u2="&#xc7;" k="14" />
+<hkern u1="&#xcb;" u2="y" k="29" />
+<hkern u1="&#xcb;" u2="v" k="33" />
+<hkern u1="&#xcb;" u2="u" k="27" />
+<hkern u1="&#xcb;" u2="t" k="35" />
+<hkern u1="&#xcb;" u2="s" k="12" />
+<hkern u1="&#xcb;" u2="r" k="14" />
+<hkern u1="&#xcb;" u2="q" k="29" />
+<hkern u1="&#xcb;" u2="p" k="14" />
+<hkern u1="&#xcb;" u2="o" k="29" />
+<hkern u1="&#xcb;" u2="n" k="14" />
+<hkern u1="&#xcb;" u2="m" k="14" />
+<hkern u1="&#xcb;" u2="g" k="29" />
+<hkern u1="&#xcb;" u2="f" k="23" />
+<hkern u1="&#xcb;" u2="e" k="29" />
+<hkern u1="&#xcb;" u2="d" k="29" />
+<hkern u1="&#xcb;" u2="c" k="29" />
+<hkern u1="&#xcb;" u2="a" k="14" />
+<hkern u1="&#xcb;" u2="Q" k="14" />
+<hkern u1="&#xcb;" u2="O" k="14" />
+<hkern u1="&#xcb;" u2="G" k="14" />
+<hkern u1="&#xcb;" u2="C" k="14" />
+<hkern u1="&#xcb;" u2="&#x26;" k="14" />
+<hkern u1="&#xcc;" u2="&#xfb04;" k="16" />
+<hkern u1="&#xcc;" u2="&#xfb03;" k="16" />
+<hkern u1="&#xcc;" u2="&#xfb02;" k="16" />
+<hkern u1="&#xcc;" u2="&#xfb01;" k="16" />
+<hkern u1="&#xcc;" u2="&#xff;" k="14" />
+<hkern u1="&#xcc;" u2="&#xfe;" k="20" />
+<hkern u1="&#xcc;" u2="&#xfd;" k="14" />
+<hkern u1="&#xcc;" u2="&#xfc;" k="27" />
+<hkern u1="&#xcc;" u2="&#xfb;" k="27" />
+<hkern u1="&#xcc;" u2="&#xfa;" k="27" />
+<hkern u1="&#xcc;" u2="&#xf9;" k="27" />
+<hkern u1="&#xcc;" u2="&#xf8;" k="29" />
+<hkern u1="&#xcc;" u2="&#xf6;" k="29" />
+<hkern u1="&#xcc;" u2="&#xf5;" k="29" />
+<hkern u1="&#xcc;" u2="&#xf4;" k="29" />
+<hkern u1="&#xcc;" u2="&#xf3;" k="29" />
+<hkern u1="&#xcc;" u2="&#xf2;" k="29" />
+<hkern u1="&#xcc;" u2="&#xf1;" k="20" />
+<hkern u1="&#xcc;" u2="&#xf0;" k="29" />
+<hkern u1="&#xcc;" u2="&#xef;" k="20" />
+<hkern u1="&#xcc;" u2="&#xee;" k="20" />
+<hkern u1="&#xcc;" u2="&#xed;" k="20" />
+<hkern u1="&#xcc;" u2="&#xec;" k="20" />
+<hkern u1="&#xcc;" u2="&#xeb;" k="29" />
+<hkern u1="&#xcc;" u2="&#xea;" k="29" />
+<hkern u1="&#xcc;" u2="&#xe9;" k="29" />
+<hkern u1="&#xcc;" u2="&#xe8;" k="29" />
+<hkern u1="&#xcc;" u2="&#xe7;" k="29" />
+<hkern u1="&#xcc;" u2="&#xe6;" k="23" />
+<hkern u1="&#xcc;" u2="&#xe5;" k="23" />
+<hkern u1="&#xcc;" u2="&#xe4;" k="23" />
+<hkern u1="&#xcc;" u2="&#xe3;" k="23" />
+<hkern u1="&#xcc;" u2="&#xe2;" k="23" />
+<hkern u1="&#xcc;" u2="&#xe1;" k="23" />
+<hkern u1="&#xcc;" u2="&#xe0;" k="23" />
+<hkern u1="&#xcc;" u2="&#xdf;" k="16" />
+<hkern u1="&#xcc;" u2="&#xdd;" k="10" />
+<hkern u1="&#xcc;" u2="y" k="14" />
+<hkern u1="&#xcc;" u2="v" k="18" />
+<hkern u1="&#xcc;" u2="u" k="27" />
+<hkern u1="&#xcc;" u2="t" k="23" />
+<hkern u1="&#xcc;" u2="s" k="23" />
+<hkern u1="&#xcc;" u2="r" k="20" />
+<hkern u1="&#xcc;" u2="q" k="29" />
+<hkern u1="&#xcc;" u2="p" k="20" />
+<hkern u1="&#xcc;" u2="o" k="29" />
+<hkern u1="&#xcc;" u2="n" k="20" />
+<hkern u1="&#xcc;" u2="m" k="20" />
+<hkern u1="&#xcc;" u2="k" k="20" />
+<hkern u1="&#xcc;" u2="j" k="20" />
+<hkern u1="&#xcc;" u2="i" k="20" />
+<hkern u1="&#xcc;" u2="h" k="20" />
+<hkern u1="&#xcc;" u2="g" k="29" />
+<hkern u1="&#xcc;" u2="f" k="16" />
+<hkern u1="&#xcc;" u2="e" k="29" />
+<hkern u1="&#xcc;" u2="d" k="29" />
+<hkern u1="&#xcc;" u2="c" k="29" />
+<hkern u1="&#xcc;" u2="b" k="20" />
+<hkern u1="&#xcc;" u2="a" k="23" />
+<hkern u1="&#xcc;" u2="Y" k="10" />
+<hkern u1="&#xcd;" u2="&#xfb04;" k="16" />
+<hkern u1="&#xcd;" u2="&#xfb03;" k="16" />
+<hkern u1="&#xcd;" u2="&#xfb02;" k="16" />
+<hkern u1="&#xcd;" u2="&#xfb01;" k="16" />
+<hkern u1="&#xcd;" u2="&#xff;" k="14" />
+<hkern u1="&#xcd;" u2="&#xfe;" k="20" />
+<hkern u1="&#xcd;" u2="&#xfd;" k="14" />
+<hkern u1="&#xcd;" u2="&#xfc;" k="27" />
+<hkern u1="&#xcd;" u2="&#xfb;" k="27" />
+<hkern u1="&#xcd;" u2="&#xfa;" k="27" />
+<hkern u1="&#xcd;" u2="&#xf9;" k="27" />
+<hkern u1="&#xcd;" u2="&#xf8;" k="29" />
+<hkern u1="&#xcd;" u2="&#xf6;" k="29" />
+<hkern u1="&#xcd;" u2="&#xf5;" k="29" />
+<hkern u1="&#xcd;" u2="&#xf4;" k="29" />
+<hkern u1="&#xcd;" u2="&#xf3;" k="29" />
+<hkern u1="&#xcd;" u2="&#xf2;" k="29" />
+<hkern u1="&#xcd;" u2="&#xf1;" k="20" />
+<hkern u1="&#xcd;" u2="&#xf0;" k="29" />
+<hkern u1="&#xcd;" u2="&#xef;" k="20" />
+<hkern u1="&#xcd;" u2="&#xee;" k="20" />
+<hkern u1="&#xcd;" u2="&#xed;" k="20" />
+<hkern u1="&#xcd;" u2="&#xec;" k="20" />
+<hkern u1="&#xcd;" u2="&#xeb;" k="29" />
+<hkern u1="&#xcd;" u2="&#xea;" k="29" />
+<hkern u1="&#xcd;" u2="&#xe9;" k="29" />
+<hkern u1="&#xcd;" u2="&#xe8;" k="29" />
+<hkern u1="&#xcd;" u2="&#xe7;" k="29" />
+<hkern u1="&#xcd;" u2="&#xe6;" k="23" />
+<hkern u1="&#xcd;" u2="&#xe5;" k="23" />
+<hkern u1="&#xcd;" u2="&#xe4;" k="23" />
+<hkern u1="&#xcd;" u2="&#xe3;" k="23" />
+<hkern u1="&#xcd;" u2="&#xe2;" k="23" />
+<hkern u1="&#xcd;" u2="&#xe1;" k="23" />
+<hkern u1="&#xcd;" u2="&#xe0;" k="23" />
+<hkern u1="&#xcd;" u2="&#xdf;" k="16" />
+<hkern u1="&#xcd;" u2="&#xdd;" k="10" />
+<hkern u1="&#xcd;" u2="y" k="14" />
+<hkern u1="&#xcd;" u2="v" k="18" />
+<hkern u1="&#xcd;" u2="u" k="27" />
+<hkern u1="&#xcd;" u2="t" k="23" />
+<hkern u1="&#xcd;" u2="s" k="23" />
+<hkern u1="&#xcd;" u2="r" k="20" />
+<hkern u1="&#xcd;" u2="q" k="29" />
+<hkern u1="&#xcd;" u2="p" k="20" />
+<hkern u1="&#xcd;" u2="o" k="29" />
+<hkern u1="&#xcd;" u2="n" k="20" />
+<hkern u1="&#xcd;" u2="m" k="20" />
+<hkern u1="&#xcd;" u2="k" k="20" />
+<hkern u1="&#xcd;" u2="j" k="20" />
+<hkern u1="&#xcd;" u2="i" k="20" />
+<hkern u1="&#xcd;" u2="h" k="20" />
+<hkern u1="&#xcd;" u2="g" k="29" />
+<hkern u1="&#xcd;" u2="f" k="16" />
+<hkern u1="&#xcd;" u2="e" k="29" />
+<hkern u1="&#xcd;" u2="d" k="29" />
+<hkern u1="&#xcd;" u2="c" k="29" />
+<hkern u1="&#xcd;" u2="b" k="20" />
+<hkern u1="&#xcd;" u2="a" k="23" />
+<hkern u1="&#xcd;" u2="Y" k="10" />
+<hkern u1="&#xce;" u2="&#xfb04;" k="16" />
+<hkern u1="&#xce;" u2="&#xfb03;" k="16" />
+<hkern u1="&#xce;" u2="&#xfb02;" k="16" />
+<hkern u1="&#xce;" u2="&#xfb01;" k="16" />
+<hkern u1="&#xce;" u2="&#xff;" k="14" />
+<hkern u1="&#xce;" u2="&#xfe;" k="20" />
+<hkern u1="&#xce;" u2="&#xfd;" k="14" />
+<hkern u1="&#xce;" u2="&#xfc;" k="27" />
+<hkern u1="&#xce;" u2="&#xfb;" k="27" />
+<hkern u1="&#xce;" u2="&#xfa;" k="27" />
+<hkern u1="&#xce;" u2="&#xf9;" k="27" />
+<hkern u1="&#xce;" u2="&#xf8;" k="29" />
+<hkern u1="&#xce;" u2="&#xf6;" k="29" />
+<hkern u1="&#xce;" u2="&#xf5;" k="29" />
+<hkern u1="&#xce;" u2="&#xf4;" k="29" />
+<hkern u1="&#xce;" u2="&#xf3;" k="29" />
+<hkern u1="&#xce;" u2="&#xf2;" k="29" />
+<hkern u1="&#xce;" u2="&#xf1;" k="20" />
+<hkern u1="&#xce;" u2="&#xf0;" k="29" />
+<hkern u1="&#xce;" u2="&#xef;" k="20" />
+<hkern u1="&#xce;" u2="&#xee;" k="20" />
+<hkern u1="&#xce;" u2="&#xed;" k="20" />
+<hkern u1="&#xce;" u2="&#xec;" k="20" />
+<hkern u1="&#xce;" u2="&#xeb;" k="29" />
+<hkern u1="&#xce;" u2="&#xea;" k="29" />
+<hkern u1="&#xce;" u2="&#xe9;" k="29" />
+<hkern u1="&#xce;" u2="&#xe8;" k="29" />
+<hkern u1="&#xce;" u2="&#xe7;" k="29" />
+<hkern u1="&#xce;" u2="&#xe6;" k="23" />
+<hkern u1="&#xce;" u2="&#xe5;" k="23" />
+<hkern u1="&#xce;" u2="&#xe4;" k="23" />
+<hkern u1="&#xce;" u2="&#xe3;" k="23" />
+<hkern u1="&#xce;" u2="&#xe2;" k="23" />
+<hkern u1="&#xce;" u2="&#xe1;" k="23" />
+<hkern u1="&#xce;" u2="&#xe0;" k="23" />
+<hkern u1="&#xce;" u2="&#xdf;" k="16" />
+<hkern u1="&#xce;" u2="&#xdd;" k="10" />
+<hkern u1="&#xce;" u2="&#x7d;" k="-23" />
+<hkern u1="&#xce;" u2="y" k="14" />
+<hkern u1="&#xce;" u2="v" k="18" />
+<hkern u1="&#xce;" u2="u" k="27" />
+<hkern u1="&#xce;" u2="t" k="23" />
+<hkern u1="&#xce;" u2="s" k="23" />
+<hkern u1="&#xce;" u2="r" k="20" />
+<hkern u1="&#xce;" u2="q" k="29" />
+<hkern u1="&#xce;" u2="p" k="20" />
+<hkern u1="&#xce;" u2="o" k="29" />
+<hkern u1="&#xce;" u2="n" k="20" />
+<hkern u1="&#xce;" u2="m" k="20" />
+<hkern u1="&#xce;" u2="k" k="20" />
+<hkern u1="&#xce;" u2="j" k="20" />
+<hkern u1="&#xce;" u2="i" k="20" />
+<hkern u1="&#xce;" u2="h" k="20" />
+<hkern u1="&#xce;" u2="g" k="29" />
+<hkern u1="&#xce;" u2="f" k="16" />
+<hkern u1="&#xce;" u2="e" k="29" />
+<hkern u1="&#xce;" u2="d" k="29" />
+<hkern u1="&#xce;" u2="c" k="29" />
+<hkern u1="&#xce;" u2="b" k="20" />
+<hkern u1="&#xce;" u2="a" k="23" />
+<hkern u1="&#xce;" u2="Y" k="10" />
+<hkern u1="&#xce;" u2="&#x29;" k="-35" />
+<hkern u1="&#xcf;" u2="&#xfb04;" k="16" />
+<hkern u1="&#xcf;" u2="&#xfb03;" k="16" />
+<hkern u1="&#xcf;" u2="&#xfb02;" k="16" />
+<hkern u1="&#xcf;" u2="&#xfb01;" k="16" />
+<hkern u1="&#xcf;" u2="&#xff;" k="14" />
+<hkern u1="&#xcf;" u2="&#xfe;" k="20" />
+<hkern u1="&#xcf;" u2="&#xfd;" k="14" />
+<hkern u1="&#xcf;" u2="&#xfc;" k="27" />
+<hkern u1="&#xcf;" u2="&#xfb;" k="27" />
+<hkern u1="&#xcf;" u2="&#xfa;" k="27" />
+<hkern u1="&#xcf;" u2="&#xf9;" k="27" />
+<hkern u1="&#xcf;" u2="&#xf8;" k="29" />
+<hkern u1="&#xcf;" u2="&#xf6;" k="29" />
+<hkern u1="&#xcf;" u2="&#xf5;" k="29" />
+<hkern u1="&#xcf;" u2="&#xf4;" k="29" />
+<hkern u1="&#xcf;" u2="&#xf3;" k="29" />
+<hkern u1="&#xcf;" u2="&#xf2;" k="29" />
+<hkern u1="&#xcf;" u2="&#xf1;" k="20" />
+<hkern u1="&#xcf;" u2="&#xf0;" k="29" />
+<hkern u1="&#xcf;" u2="&#xef;" k="20" />
+<hkern u1="&#xcf;" u2="&#xee;" k="20" />
+<hkern u1="&#xcf;" u2="&#xed;" k="20" />
+<hkern u1="&#xcf;" u2="&#xec;" k="20" />
+<hkern u1="&#xcf;" u2="&#xeb;" k="29" />
+<hkern u1="&#xcf;" u2="&#xea;" k="29" />
+<hkern u1="&#xcf;" u2="&#xe9;" k="29" />
+<hkern u1="&#xcf;" u2="&#xe8;" k="29" />
+<hkern u1="&#xcf;" u2="&#xe7;" k="29" />
+<hkern u1="&#xcf;" u2="&#xe6;" k="23" />
+<hkern u1="&#xcf;" u2="&#xe5;" k="23" />
+<hkern u1="&#xcf;" u2="&#xe4;" k="23" />
+<hkern u1="&#xcf;" u2="&#xe3;" k="23" />
+<hkern u1="&#xcf;" u2="&#xe2;" k="23" />
+<hkern u1="&#xcf;" u2="&#xe1;" k="23" />
+<hkern u1="&#xcf;" u2="&#xe0;" k="23" />
+<hkern u1="&#xcf;" u2="&#xdf;" k="16" />
+<hkern u1="&#xcf;" u2="&#xdd;" k="10" />
+<hkern u1="&#xcf;" u2="y" k="14" />
+<hkern u1="&#xcf;" u2="v" k="18" />
+<hkern u1="&#xcf;" u2="u" k="27" />
+<hkern u1="&#xcf;" u2="t" k="23" />
+<hkern u1="&#xcf;" u2="s" k="23" />
+<hkern u1="&#xcf;" u2="r" k="20" />
+<hkern u1="&#xcf;" u2="q" k="29" />
+<hkern u1="&#xcf;" u2="p" k="20" />
+<hkern u1="&#xcf;" u2="o" k="29" />
+<hkern u1="&#xcf;" u2="n" k="20" />
+<hkern u1="&#xcf;" u2="m" k="20" />
+<hkern u1="&#xcf;" u2="k" k="20" />
+<hkern u1="&#xcf;" u2="j" k="20" />
+<hkern u1="&#xcf;" u2="i" k="20" />
+<hkern u1="&#xcf;" u2="h" k="20" />
+<hkern u1="&#xcf;" u2="g" k="29" />
+<hkern u1="&#xcf;" u2="f" k="16" />
+<hkern u1="&#xcf;" u2="e" k="29" />
+<hkern u1="&#xcf;" u2="d" k="29" />
+<hkern u1="&#xcf;" u2="c" k="29" />
+<hkern u1="&#xcf;" u2="b" k="20" />
+<hkern u1="&#xcf;" u2="a" k="23" />
+<hkern u1="&#xcf;" u2="Y" k="10" />
+<hkern u1="&#xd0;" u2="&#x2122;" k="16" />
+<hkern u1="&#xd0;" u2="&#x2026;" k="39" />
+<hkern u1="&#xd0;" u2="&#x201e;" k="39" />
+<hkern u1="&#xd0;" u2="&#x201a;" k="39" />
+<hkern u1="&#xd0;" u2="&#xfe;" k="18" />
+<hkern u1="&#xd0;" u2="&#xfc;" k="16" />
+<hkern u1="&#xd0;" u2="&#xfb;" k="16" />
+<hkern u1="&#xd0;" u2="&#xfa;" k="16" />
+<hkern u1="&#xd0;" u2="&#xf9;" k="16" />
+<hkern u1="&#xd0;" u2="&#xf8;" k="12" />
+<hkern u1="&#xd0;" u2="&#xf6;" k="12" />
+<hkern u1="&#xd0;" u2="&#xf5;" k="12" />
+<hkern u1="&#xd0;" u2="&#xf4;" k="12" />
+<hkern u1="&#xd0;" u2="&#xf3;" k="12" />
+<hkern u1="&#xd0;" u2="&#xf2;" k="12" />
+<hkern u1="&#xd0;" u2="&#xf1;" k="18" />
+<hkern u1="&#xd0;" u2="&#xf0;" k="12" />
+<hkern u1="&#xd0;" u2="&#xef;" k="20" />
+<hkern u1="&#xd0;" u2="&#xee;" k="20" />
+<hkern u1="&#xd0;" u2="&#xed;" k="20" />
+<hkern u1="&#xd0;" u2="&#xec;" k="20" />
+<hkern u1="&#xd0;" u2="&#xeb;" k="12" />
+<hkern u1="&#xd0;" u2="&#xea;" k="12" />
+<hkern u1="&#xd0;" u2="&#xe9;" k="12" />
+<hkern u1="&#xd0;" u2="&#xe8;" k="12" />
+<hkern u1="&#xd0;" u2="&#xe7;" k="12" />
+<hkern u1="&#xd0;" u2="&#xe6;" k="20" />
+<hkern u1="&#xd0;" u2="&#xe5;" k="20" />
+<hkern u1="&#xd0;" u2="&#xe4;" k="20" />
+<hkern u1="&#xd0;" u2="&#xe3;" k="20" />
+<hkern u1="&#xd0;" u2="&#xe2;" k="20" />
+<hkern u1="&#xd0;" u2="&#xe1;" k="20" />
+<hkern u1="&#xd0;" u2="&#xe0;" k="20" />
+<hkern u1="&#xd0;" u2="&#xdd;" k="68" />
+<hkern u1="&#xd0;" u2="&#xc6;" k="96" />
+<hkern u1="&#xd0;" u2="&#xc5;" k="31" />
+<hkern u1="&#xd0;" u2="&#xc4;" k="31" />
+<hkern u1="&#xd0;" u2="&#xc3;" k="31" />
+<hkern u1="&#xd0;" u2="&#xc2;" k="31" />
+<hkern u1="&#xd0;" u2="&#xc1;" k="31" />
+<hkern u1="&#xd0;" u2="&#xc0;" k="31" />
+<hkern u1="&#xd0;" u2="&#x7d;" k="37" />
+<hkern u1="&#xd0;" u2="x" k="27" />
+<hkern u1="&#xd0;" u2="u" k="16" />
+<hkern u1="&#xd0;" u2="s" k="12" />
+<hkern u1="&#xd0;" u2="r" k="18" />
+<hkern u1="&#xd0;" u2="q" k="12" />
+<hkern u1="&#xd0;" u2="p" k="18" />
+<hkern u1="&#xd0;" u2="o" k="12" />
+<hkern u1="&#xd0;" u2="n" k="18" />
+<hkern u1="&#xd0;" u2="m" k="18" />
+<hkern u1="&#xd0;" u2="k" k="18" />
+<hkern u1="&#xd0;" u2="j" k="20" />
+<hkern u1="&#xd0;" u2="i" k="20" />
+<hkern u1="&#xd0;" u2="h" k="18" />
+<hkern u1="&#xd0;" u2="g" k="12" />
+<hkern u1="&#xd0;" u2="e" k="12" />
+<hkern u1="&#xd0;" u2="d" k="12" />
+<hkern u1="&#xd0;" u2="c" k="12" />
+<hkern u1="&#xd0;" u2="b" k="18" />
+<hkern u1="&#xd0;" u2="a" k="20" />
+<hkern u1="&#xd0;" u2="]" k="37" />
+<hkern u1="&#xd0;" u2="Y" k="68" />
+<hkern u1="&#xd0;" u2="X" k="57" />
+<hkern u1="&#xd0;" u2="V" k="29" />
+<hkern u1="&#xd0;" u2="T" k="57" />
+<hkern u1="&#xd0;" u2="A" k="31" />
+<hkern u1="&#xd0;" u2="&#x2f;" k="20" />
+<hkern u1="&#xd0;" u2="&#x2e;" k="39" />
+<hkern u1="&#xd0;" u2="&#x2c;" k="39" />
+<hkern u1="&#xd0;" u2="&#x29;" k="43" />
+<hkern u1="&#xd1;" u2="&#xfb04;" k="16" />
+<hkern u1="&#xd1;" u2="&#xfb03;" k="16" />
+<hkern u1="&#xd1;" u2="&#xfb02;" k="16" />
+<hkern u1="&#xd1;" u2="&#xfb01;" k="16" />
+<hkern u1="&#xd1;" u2="&#xff;" k="14" />
+<hkern u1="&#xd1;" u2="&#xfe;" k="20" />
+<hkern u1="&#xd1;" u2="&#xfd;" k="14" />
+<hkern u1="&#xd1;" u2="&#xfc;" k="27" />
+<hkern u1="&#xd1;" u2="&#xfb;" k="27" />
+<hkern u1="&#xd1;" u2="&#xfa;" k="27" />
+<hkern u1="&#xd1;" u2="&#xf9;" k="27" />
+<hkern u1="&#xd1;" u2="&#xf8;" k="29" />
+<hkern u1="&#xd1;" u2="&#xf6;" k="29" />
+<hkern u1="&#xd1;" u2="&#xf5;" k="29" />
+<hkern u1="&#xd1;" u2="&#xf4;" k="29" />
+<hkern u1="&#xd1;" u2="&#xf3;" k="29" />
+<hkern u1="&#xd1;" u2="&#xf2;" k="29" />
+<hkern u1="&#xd1;" u2="&#xf1;" k="20" />
+<hkern u1="&#xd1;" u2="&#xf0;" k="29" />
+<hkern u1="&#xd1;" u2="&#xef;" k="20" />
+<hkern u1="&#xd1;" u2="&#xee;" k="20" />
+<hkern u1="&#xd1;" u2="&#xed;" k="20" />
+<hkern u1="&#xd1;" u2="&#xec;" k="20" />
+<hkern u1="&#xd1;" u2="&#xeb;" k="29" />
+<hkern u1="&#xd1;" u2="&#xea;" k="29" />
+<hkern u1="&#xd1;" u2="&#xe9;" k="29" />
+<hkern u1="&#xd1;" u2="&#xe8;" k="29" />
+<hkern u1="&#xd1;" u2="&#xe7;" k="29" />
+<hkern u1="&#xd1;" u2="&#xe6;" k="23" />
+<hkern u1="&#xd1;" u2="&#xe5;" k="23" />
+<hkern u1="&#xd1;" u2="&#xe4;" k="23" />
+<hkern u1="&#xd1;" u2="&#xe3;" k="23" />
+<hkern u1="&#xd1;" u2="&#xe2;" k="23" />
+<hkern u1="&#xd1;" u2="&#xe1;" k="23" />
+<hkern u1="&#xd1;" u2="&#xe0;" k="23" />
+<hkern u1="&#xd1;" u2="&#xdf;" k="16" />
+<hkern u1="&#xd1;" u2="&#xdd;" k="10" />
+<hkern u1="&#xd1;" u2="y" k="14" />
+<hkern u1="&#xd1;" u2="v" k="18" />
+<hkern u1="&#xd1;" u2="u" k="27" />
+<hkern u1="&#xd1;" u2="t" k="23" />
+<hkern u1="&#xd1;" u2="s" k="23" />
+<hkern u1="&#xd1;" u2="r" k="20" />
+<hkern u1="&#xd1;" u2="q" k="29" />
+<hkern u1="&#xd1;" u2="p" k="20" />
+<hkern u1="&#xd1;" u2="o" k="29" />
+<hkern u1="&#xd1;" u2="n" k="20" />
+<hkern u1="&#xd1;" u2="m" k="20" />
+<hkern u1="&#xd1;" u2="k" k="20" />
+<hkern u1="&#xd1;" u2="j" k="20" />
+<hkern u1="&#xd1;" u2="i" k="20" />
+<hkern u1="&#xd1;" u2="h" k="20" />
+<hkern u1="&#xd1;" u2="g" k="29" />
+<hkern u1="&#xd1;" u2="f" k="16" />
+<hkern u1="&#xd1;" u2="e" k="29" />
+<hkern u1="&#xd1;" u2="d" k="29" />
+<hkern u1="&#xd1;" u2="c" k="29" />
+<hkern u1="&#xd1;" u2="b" k="20" />
+<hkern u1="&#xd1;" u2="a" k="23" />
+<hkern u1="&#xd1;" u2="Y" k="10" />
+<hkern u1="&#xd2;" u2="&#x2122;" k="16" />
+<hkern u1="&#xd2;" u2="&#x2026;" k="39" />
+<hkern u1="&#xd2;" u2="&#x201e;" k="39" />
+<hkern u1="&#xd2;" u2="&#x201a;" k="39" />
+<hkern u1="&#xd2;" u2="&#xfe;" k="18" />
+<hkern u1="&#xd2;" u2="&#xfc;" k="16" />
+<hkern u1="&#xd2;" u2="&#xfb;" k="16" />
+<hkern u1="&#xd2;" u2="&#xfa;" k="16" />
+<hkern u1="&#xd2;" u2="&#xf9;" k="16" />
+<hkern u1="&#xd2;" u2="&#xf8;" k="12" />
+<hkern u1="&#xd2;" u2="&#xf6;" k="12" />
+<hkern u1="&#xd2;" u2="&#xf5;" k="12" />
+<hkern u1="&#xd2;" u2="&#xf4;" k="12" />
+<hkern u1="&#xd2;" u2="&#xf3;" k="12" />
+<hkern u1="&#xd2;" u2="&#xf2;" k="12" />
+<hkern u1="&#xd2;" u2="&#xf1;" k="18" />
+<hkern u1="&#xd2;" u2="&#xf0;" k="12" />
+<hkern u1="&#xd2;" u2="&#xef;" k="20" />
+<hkern u1="&#xd2;" u2="&#xee;" k="20" />
+<hkern u1="&#xd2;" u2="&#xed;" k="20" />
+<hkern u1="&#xd2;" u2="&#xec;" k="20" />
+<hkern u1="&#xd2;" u2="&#xeb;" k="12" />
+<hkern u1="&#xd2;" u2="&#xea;" k="12" />
+<hkern u1="&#xd2;" u2="&#xe9;" k="12" />
+<hkern u1="&#xd2;" u2="&#xe8;" k="12" />
+<hkern u1="&#xd2;" u2="&#xe7;" k="12" />
+<hkern u1="&#xd2;" u2="&#xe6;" k="20" />
+<hkern u1="&#xd2;" u2="&#xe5;" k="20" />
+<hkern u1="&#xd2;" u2="&#xe4;" k="20" />
+<hkern u1="&#xd2;" u2="&#xe3;" k="20" />
+<hkern u1="&#xd2;" u2="&#xe2;" k="20" />
+<hkern u1="&#xd2;" u2="&#xe1;" k="20" />
+<hkern u1="&#xd2;" u2="&#xe0;" k="20" />
+<hkern u1="&#xd2;" u2="&#xdd;" k="63" />
+<hkern u1="&#xd2;" u2="&#xc6;" k="90" />
+<hkern u1="&#xd2;" u2="&#xc5;" k="29" />
+<hkern u1="&#xd2;" u2="&#xc4;" k="29" />
+<hkern u1="&#xd2;" u2="&#xc3;" k="29" />
+<hkern u1="&#xd2;" u2="&#xc2;" k="29" />
+<hkern u1="&#xd2;" u2="&#xc1;" k="29" />
+<hkern u1="&#xd2;" u2="&#xc0;" k="29" />
+<hkern u1="&#xd2;" u2="&#x7d;" k="35" />
+<hkern u1="&#xd2;" u2="x" k="27" />
+<hkern u1="&#xd2;" u2="u" k="16" />
+<hkern u1="&#xd2;" u2="s" k="12" />
+<hkern u1="&#xd2;" u2="r" k="18" />
+<hkern u1="&#xd2;" u2="q" k="12" />
+<hkern u1="&#xd2;" u2="p" k="18" />
+<hkern u1="&#xd2;" u2="o" k="12" />
+<hkern u1="&#xd2;" u2="n" k="18" />
+<hkern u1="&#xd2;" u2="m" k="18" />
+<hkern u1="&#xd2;" u2="k" k="18" />
+<hkern u1="&#xd2;" u2="j" k="20" />
+<hkern u1="&#xd2;" u2="i" k="20" />
+<hkern u1="&#xd2;" u2="h" k="18" />
+<hkern u1="&#xd2;" u2="g" k="12" />
+<hkern u1="&#xd2;" u2="e" k="12" />
+<hkern u1="&#xd2;" u2="d" k="12" />
+<hkern u1="&#xd2;" u2="c" k="12" />
+<hkern u1="&#xd2;" u2="b" k="18" />
+<hkern u1="&#xd2;" u2="a" k="20" />
+<hkern u1="&#xd2;" u2="]" k="37" />
+<hkern u1="&#xd2;" u2="Y" k="63" />
+<hkern u1="&#xd2;" u2="X" k="53" />
+<hkern u1="&#xd2;" u2="V" k="27" />
+<hkern u1="&#xd2;" u2="T" k="49" />
+<hkern u1="&#xd2;" u2="A" k="29" />
+<hkern u1="&#xd2;" u2="&#x2e;" k="39" />
+<hkern u1="&#xd2;" u2="&#x2c;" k="39" />
+<hkern u1="&#xd2;" u2="&#x29;" k="43" />
+<hkern u1="&#xd3;" u2="&#x2122;" k="16" />
+<hkern u1="&#xd3;" u2="&#x2026;" k="39" />
+<hkern u1="&#xd3;" u2="&#x201e;" k="39" />
+<hkern u1="&#xd3;" u2="&#x201a;" k="39" />
+<hkern u1="&#xd3;" u2="&#xfe;" k="18" />
+<hkern u1="&#xd3;" u2="&#xfc;" k="16" />
+<hkern u1="&#xd3;" u2="&#xfb;" k="16" />
+<hkern u1="&#xd3;" u2="&#xfa;" k="16" />
+<hkern u1="&#xd3;" u2="&#xf9;" k="16" />
+<hkern u1="&#xd3;" u2="&#xf8;" k="12" />
+<hkern u1="&#xd3;" u2="&#xf6;" k="12" />
+<hkern u1="&#xd3;" u2="&#xf5;" k="12" />
+<hkern u1="&#xd3;" u2="&#xf4;" k="12" />
+<hkern u1="&#xd3;" u2="&#xf3;" k="12" />
+<hkern u1="&#xd3;" u2="&#xf2;" k="12" />
+<hkern u1="&#xd3;" u2="&#xf1;" k="18" />
+<hkern u1="&#xd3;" u2="&#xf0;" k="12" />
+<hkern u1="&#xd3;" u2="&#xef;" k="20" />
+<hkern u1="&#xd3;" u2="&#xee;" k="20" />
+<hkern u1="&#xd3;" u2="&#xed;" k="20" />
+<hkern u1="&#xd3;" u2="&#xec;" k="20" />
+<hkern u1="&#xd3;" u2="&#xeb;" k="12" />
+<hkern u1="&#xd3;" u2="&#xea;" k="12" />
+<hkern u1="&#xd3;" u2="&#xe9;" k="12" />
+<hkern u1="&#xd3;" u2="&#xe8;" k="12" />
+<hkern u1="&#xd3;" u2="&#xe7;" k="12" />
+<hkern u1="&#xd3;" u2="&#xe6;" k="20" />
+<hkern u1="&#xd3;" u2="&#xe5;" k="20" />
+<hkern u1="&#xd3;" u2="&#xe4;" k="20" />
+<hkern u1="&#xd3;" u2="&#xe3;" k="20" />
+<hkern u1="&#xd3;" u2="&#xe2;" k="20" />
+<hkern u1="&#xd3;" u2="&#xe1;" k="20" />
+<hkern u1="&#xd3;" u2="&#xe0;" k="20" />
+<hkern u1="&#xd3;" u2="&#xdd;" k="63" />
+<hkern u1="&#xd3;" u2="&#xc6;" k="90" />
+<hkern u1="&#xd3;" u2="&#xc5;" k="29" />
+<hkern u1="&#xd3;" u2="&#xc4;" k="29" />
+<hkern u1="&#xd3;" u2="&#xc3;" k="29" />
+<hkern u1="&#xd3;" u2="&#xc2;" k="29" />
+<hkern u1="&#xd3;" u2="&#xc1;" k="29" />
+<hkern u1="&#xd3;" u2="&#xc0;" k="29" />
+<hkern u1="&#xd3;" u2="&#x7d;" k="35" />
+<hkern u1="&#xd3;" u2="x" k="27" />
+<hkern u1="&#xd3;" u2="u" k="16" />
+<hkern u1="&#xd3;" u2="s" k="12" />
+<hkern u1="&#xd3;" u2="r" k="18" />
+<hkern u1="&#xd3;" u2="q" k="12" />
+<hkern u1="&#xd3;" u2="p" k="18" />
+<hkern u1="&#xd3;" u2="o" k="12" />
+<hkern u1="&#xd3;" u2="n" k="18" />
+<hkern u1="&#xd3;" u2="m" k="18" />
+<hkern u1="&#xd3;" u2="k" k="18" />
+<hkern u1="&#xd3;" u2="j" k="20" />
+<hkern u1="&#xd3;" u2="i" k="20" />
+<hkern u1="&#xd3;" u2="h" k="18" />
+<hkern u1="&#xd3;" u2="g" k="12" />
+<hkern u1="&#xd3;" u2="e" k="12" />
+<hkern u1="&#xd3;" u2="d" k="12" />
+<hkern u1="&#xd3;" u2="c" k="12" />
+<hkern u1="&#xd3;" u2="b" k="18" />
+<hkern u1="&#xd3;" u2="a" k="20" />
+<hkern u1="&#xd3;" u2="]" k="37" />
+<hkern u1="&#xd3;" u2="Y" k="63" />
+<hkern u1="&#xd3;" u2="X" k="53" />
+<hkern u1="&#xd3;" u2="V" k="27" />
+<hkern u1="&#xd3;" u2="T" k="49" />
+<hkern u1="&#xd3;" u2="A" k="29" />
+<hkern u1="&#xd3;" u2="&#x2e;" k="39" />
+<hkern u1="&#xd3;" u2="&#x2c;" k="39" />
+<hkern u1="&#xd3;" u2="&#x29;" k="43" />
+<hkern u1="&#xd4;" u2="&#x2122;" k="16" />
+<hkern u1="&#xd4;" u2="&#x2026;" k="39" />
+<hkern u1="&#xd4;" u2="&#x201e;" k="39" />
+<hkern u1="&#xd4;" u2="&#x201a;" k="39" />
+<hkern u1="&#xd4;" u2="&#xfe;" k="18" />
+<hkern u1="&#xd4;" u2="&#xfc;" k="16" />
+<hkern u1="&#xd4;" u2="&#xfb;" k="16" />
+<hkern u1="&#xd4;" u2="&#xfa;" k="16" />
+<hkern u1="&#xd4;" u2="&#xf9;" k="16" />
+<hkern u1="&#xd4;" u2="&#xf8;" k="12" />
+<hkern u1="&#xd4;" u2="&#xf6;" k="12" />
+<hkern u1="&#xd4;" u2="&#xf5;" k="12" />
+<hkern u1="&#xd4;" u2="&#xf4;" k="12" />
+<hkern u1="&#xd4;" u2="&#xf3;" k="12" />
+<hkern u1="&#xd4;" u2="&#xf2;" k="12" />
+<hkern u1="&#xd4;" u2="&#xf1;" k="18" />
+<hkern u1="&#xd4;" u2="&#xf0;" k="12" />
+<hkern u1="&#xd4;" u2="&#xef;" k="20" />
+<hkern u1="&#xd4;" u2="&#xee;" k="20" />
+<hkern u1="&#xd4;" u2="&#xed;" k="20" />
+<hkern u1="&#xd4;" u2="&#xec;" k="20" />
+<hkern u1="&#xd4;" u2="&#xeb;" k="12" />
+<hkern u1="&#xd4;" u2="&#xea;" k="12" />
+<hkern u1="&#xd4;" u2="&#xe9;" k="12" />
+<hkern u1="&#xd4;" u2="&#xe8;" k="12" />
+<hkern u1="&#xd4;" u2="&#xe7;" k="12" />
+<hkern u1="&#xd4;" u2="&#xe6;" k="20" />
+<hkern u1="&#xd4;" u2="&#xe5;" k="20" />
+<hkern u1="&#xd4;" u2="&#xe4;" k="20" />
+<hkern u1="&#xd4;" u2="&#xe3;" k="20" />
+<hkern u1="&#xd4;" u2="&#xe2;" k="20" />
+<hkern u1="&#xd4;" u2="&#xe1;" k="20" />
+<hkern u1="&#xd4;" u2="&#xe0;" k="20" />
+<hkern u1="&#xd4;" u2="&#xdd;" k="63" />
+<hkern u1="&#xd4;" u2="&#xc6;" k="90" />
+<hkern u1="&#xd4;" u2="&#xc5;" k="29" />
+<hkern u1="&#xd4;" u2="&#xc4;" k="29" />
+<hkern u1="&#xd4;" u2="&#xc3;" k="29" />
+<hkern u1="&#xd4;" u2="&#xc2;" k="29" />
+<hkern u1="&#xd4;" u2="&#xc1;" k="29" />
+<hkern u1="&#xd4;" u2="&#xc0;" k="29" />
+<hkern u1="&#xd4;" u2="&#x7d;" k="35" />
+<hkern u1="&#xd4;" u2="x" k="27" />
+<hkern u1="&#xd4;" u2="u" k="16" />
+<hkern u1="&#xd4;" u2="s" k="12" />
+<hkern u1="&#xd4;" u2="r" k="18" />
+<hkern u1="&#xd4;" u2="q" k="12" />
+<hkern u1="&#xd4;" u2="p" k="18" />
+<hkern u1="&#xd4;" u2="o" k="12" />
+<hkern u1="&#xd4;" u2="n" k="18" />
+<hkern u1="&#xd4;" u2="m" k="18" />
+<hkern u1="&#xd4;" u2="k" k="18" />
+<hkern u1="&#xd4;" u2="j" k="20" />
+<hkern u1="&#xd4;" u2="i" k="20" />
+<hkern u1="&#xd4;" u2="h" k="18" />
+<hkern u1="&#xd4;" u2="g" k="12" />
+<hkern u1="&#xd4;" u2="e" k="12" />
+<hkern u1="&#xd4;" u2="d" k="12" />
+<hkern u1="&#xd4;" u2="c" k="12" />
+<hkern u1="&#xd4;" u2="b" k="18" />
+<hkern u1="&#xd4;" u2="a" k="20" />
+<hkern u1="&#xd4;" u2="]" k="37" />
+<hkern u1="&#xd4;" u2="Y" k="63" />
+<hkern u1="&#xd4;" u2="X" k="53" />
+<hkern u1="&#xd4;" u2="V" k="27" />
+<hkern u1="&#xd4;" u2="T" k="49" />
+<hkern u1="&#xd4;" u2="A" k="29" />
+<hkern u1="&#xd4;" u2="&#x2e;" k="39" />
+<hkern u1="&#xd4;" u2="&#x2c;" k="39" />
+<hkern u1="&#xd4;" u2="&#x29;" k="43" />
+<hkern u1="&#xd5;" u2="&#x2122;" k="16" />
+<hkern u1="&#xd5;" u2="&#x2026;" k="39" />
+<hkern u1="&#xd5;" u2="&#x201e;" k="39" />
+<hkern u1="&#xd5;" u2="&#x201a;" k="39" />
+<hkern u1="&#xd5;" u2="&#xfe;" k="18" />
+<hkern u1="&#xd5;" u2="&#xfc;" k="16" />
+<hkern u1="&#xd5;" u2="&#xfb;" k="16" />
+<hkern u1="&#xd5;" u2="&#xfa;" k="16" />
+<hkern u1="&#xd5;" u2="&#xf9;" k="16" />
+<hkern u1="&#xd5;" u2="&#xf8;" k="12" />
+<hkern u1="&#xd5;" u2="&#xf6;" k="12" />
+<hkern u1="&#xd5;" u2="&#xf5;" k="12" />
+<hkern u1="&#xd5;" u2="&#xf4;" k="12" />
+<hkern u1="&#xd5;" u2="&#xf3;" k="12" />
+<hkern u1="&#xd5;" u2="&#xf2;" k="12" />
+<hkern u1="&#xd5;" u2="&#xf1;" k="18" />
+<hkern u1="&#xd5;" u2="&#xf0;" k="12" />
+<hkern u1="&#xd5;" u2="&#xef;" k="20" />
+<hkern u1="&#xd5;" u2="&#xee;" k="20" />
+<hkern u1="&#xd5;" u2="&#xed;" k="20" />
+<hkern u1="&#xd5;" u2="&#xec;" k="20" />
+<hkern u1="&#xd5;" u2="&#xeb;" k="12" />
+<hkern u1="&#xd5;" u2="&#xea;" k="12" />
+<hkern u1="&#xd5;" u2="&#xe9;" k="12" />
+<hkern u1="&#xd5;" u2="&#xe8;" k="12" />
+<hkern u1="&#xd5;" u2="&#xe7;" k="12" />
+<hkern u1="&#xd5;" u2="&#xe6;" k="20" />
+<hkern u1="&#xd5;" u2="&#xe5;" k="20" />
+<hkern u1="&#xd5;" u2="&#xe4;" k="20" />
+<hkern u1="&#xd5;" u2="&#xe3;" k="20" />
+<hkern u1="&#xd5;" u2="&#xe2;" k="20" />
+<hkern u1="&#xd5;" u2="&#xe1;" k="20" />
+<hkern u1="&#xd5;" u2="&#xe0;" k="20" />
+<hkern u1="&#xd5;" u2="&#xdd;" k="63" />
+<hkern u1="&#xd5;" u2="&#xc6;" k="90" />
+<hkern u1="&#xd5;" u2="&#xc5;" k="29" />
+<hkern u1="&#xd5;" u2="&#xc4;" k="29" />
+<hkern u1="&#xd5;" u2="&#xc3;" k="29" />
+<hkern u1="&#xd5;" u2="&#xc2;" k="29" />
+<hkern u1="&#xd5;" u2="&#xc1;" k="29" />
+<hkern u1="&#xd5;" u2="&#xc0;" k="29" />
+<hkern u1="&#xd5;" u2="&#x7d;" k="35" />
+<hkern u1="&#xd5;" u2="x" k="27" />
+<hkern u1="&#xd5;" u2="u" k="16" />
+<hkern u1="&#xd5;" u2="s" k="12" />
+<hkern u1="&#xd5;" u2="r" k="18" />
+<hkern u1="&#xd5;" u2="q" k="12" />
+<hkern u1="&#xd5;" u2="p" k="18" />
+<hkern u1="&#xd5;" u2="o" k="12" />
+<hkern u1="&#xd5;" u2="n" k="18" />
+<hkern u1="&#xd5;" u2="m" k="18" />
+<hkern u1="&#xd5;" u2="k" k="18" />
+<hkern u1="&#xd5;" u2="j" k="20" />
+<hkern u1="&#xd5;" u2="i" k="20" />
+<hkern u1="&#xd5;" u2="h" k="18" />
+<hkern u1="&#xd5;" u2="g" k="12" />
+<hkern u1="&#xd5;" u2="e" k="12" />
+<hkern u1="&#xd5;" u2="d" k="12" />
+<hkern u1="&#xd5;" u2="c" k="12" />
+<hkern u1="&#xd5;" u2="b" k="18" />
+<hkern u1="&#xd5;" u2="a" k="20" />
+<hkern u1="&#xd5;" u2="]" k="37" />
+<hkern u1="&#xd5;" u2="Y" k="63" />
+<hkern u1="&#xd5;" u2="X" k="53" />
+<hkern u1="&#xd5;" u2="V" k="27" />
+<hkern u1="&#xd5;" u2="T" k="49" />
+<hkern u1="&#xd5;" u2="A" k="29" />
+<hkern u1="&#xd5;" u2="&#x2e;" k="39" />
+<hkern u1="&#xd5;" u2="&#x2c;" k="39" />
+<hkern u1="&#xd5;" u2="&#x29;" k="43" />
+<hkern u1="&#xd6;" u2="&#x2122;" k="16" />
+<hkern u1="&#xd6;" u2="&#x2026;" k="39" />
+<hkern u1="&#xd6;" u2="&#x201e;" k="39" />
+<hkern u1="&#xd6;" u2="&#x201a;" k="39" />
+<hkern u1="&#xd6;" u2="&#xfe;" k="18" />
+<hkern u1="&#xd6;" u2="&#xfc;" k="16" />
+<hkern u1="&#xd6;" u2="&#xfb;" k="16" />
+<hkern u1="&#xd6;" u2="&#xfa;" k="16" />
+<hkern u1="&#xd6;" u2="&#xf9;" k="16" />
+<hkern u1="&#xd6;" u2="&#xf8;" k="12" />
+<hkern u1="&#xd6;" u2="&#xf6;" k="12" />
+<hkern u1="&#xd6;" u2="&#xf5;" k="12" />
+<hkern u1="&#xd6;" u2="&#xf4;" k="12" />
+<hkern u1="&#xd6;" u2="&#xf3;" k="12" />
+<hkern u1="&#xd6;" u2="&#xf2;" k="12" />
+<hkern u1="&#xd6;" u2="&#xf1;" k="18" />
+<hkern u1="&#xd6;" u2="&#xf0;" k="12" />
+<hkern u1="&#xd6;" u2="&#xef;" k="20" />
+<hkern u1="&#xd6;" u2="&#xee;" k="20" />
+<hkern u1="&#xd6;" u2="&#xed;" k="20" />
+<hkern u1="&#xd6;" u2="&#xec;" k="20" />
+<hkern u1="&#xd6;" u2="&#xeb;" k="12" />
+<hkern u1="&#xd6;" u2="&#xea;" k="12" />
+<hkern u1="&#xd6;" u2="&#xe9;" k="12" />
+<hkern u1="&#xd6;" u2="&#xe8;" k="12" />
+<hkern u1="&#xd6;" u2="&#xe7;" k="12" />
+<hkern u1="&#xd6;" u2="&#xe6;" k="20" />
+<hkern u1="&#xd6;" u2="&#xe5;" k="20" />
+<hkern u1="&#xd6;" u2="&#xe4;" k="20" />
+<hkern u1="&#xd6;" u2="&#xe3;" k="20" />
+<hkern u1="&#xd6;" u2="&#xe2;" k="20" />
+<hkern u1="&#xd6;" u2="&#xe1;" k="20" />
+<hkern u1="&#xd6;" u2="&#xe0;" k="20" />
+<hkern u1="&#xd6;" u2="&#xdd;" k="63" />
+<hkern u1="&#xd6;" u2="&#xc6;" k="90" />
+<hkern u1="&#xd6;" u2="&#xc5;" k="29" />
+<hkern u1="&#xd6;" u2="&#xc4;" k="29" />
+<hkern u1="&#xd6;" u2="&#xc3;" k="29" />
+<hkern u1="&#xd6;" u2="&#xc2;" k="29" />
+<hkern u1="&#xd6;" u2="&#xc1;" k="29" />
+<hkern u1="&#xd6;" u2="&#xc0;" k="29" />
+<hkern u1="&#xd6;" u2="&#x7d;" k="35" />
+<hkern u1="&#xd6;" u2="x" k="27" />
+<hkern u1="&#xd6;" u2="u" k="16" />
+<hkern u1="&#xd6;" u2="s" k="12" />
+<hkern u1="&#xd6;" u2="r" k="18" />
+<hkern u1="&#xd6;" u2="q" k="12" />
+<hkern u1="&#xd6;" u2="p" k="18" />
+<hkern u1="&#xd6;" u2="o" k="12" />
+<hkern u1="&#xd6;" u2="n" k="18" />
+<hkern u1="&#xd6;" u2="m" k="18" />
+<hkern u1="&#xd6;" u2="k" k="18" />
+<hkern u1="&#xd6;" u2="j" k="20" />
+<hkern u1="&#xd6;" u2="i" k="20" />
+<hkern u1="&#xd6;" u2="h" k="18" />
+<hkern u1="&#xd6;" u2="g" k="12" />
+<hkern u1="&#xd6;" u2="e" k="12" />
+<hkern u1="&#xd6;" u2="d" k="12" />
+<hkern u1="&#xd6;" u2="c" k="12" />
+<hkern u1="&#xd6;" u2="b" k="18" />
+<hkern u1="&#xd6;" u2="a" k="20" />
+<hkern u1="&#xd6;" u2="]" k="37" />
+<hkern u1="&#xd6;" u2="Y" k="63" />
+<hkern u1="&#xd6;" u2="X" k="53" />
+<hkern u1="&#xd6;" u2="V" k="27" />
+<hkern u1="&#xd6;" u2="T" k="49" />
+<hkern u1="&#xd6;" u2="A" k="29" />
+<hkern u1="&#xd6;" u2="&#x2e;" k="39" />
+<hkern u1="&#xd6;" u2="&#x2c;" k="39" />
+<hkern u1="&#xd6;" u2="&#x29;" k="43" />
+<hkern u1="&#xd8;" u2="&#x2122;" k="16" />
+<hkern u1="&#xd8;" u2="&#x2026;" k="39" />
+<hkern u1="&#xd8;" u2="&#x201e;" k="39" />
+<hkern u1="&#xd8;" u2="&#x201a;" k="39" />
+<hkern u1="&#xd8;" u2="&#xfe;" k="18" />
+<hkern u1="&#xd8;" u2="&#xfc;" k="16" />
+<hkern u1="&#xd8;" u2="&#xfb;" k="16" />
+<hkern u1="&#xd8;" u2="&#xfa;" k="16" />
+<hkern u1="&#xd8;" u2="&#xf9;" k="16" />
+<hkern u1="&#xd8;" u2="&#xf8;" k="12" />
+<hkern u1="&#xd8;" u2="&#xf6;" k="12" />
+<hkern u1="&#xd8;" u2="&#xf5;" k="12" />
+<hkern u1="&#xd8;" u2="&#xf4;" k="12" />
+<hkern u1="&#xd8;" u2="&#xf3;" k="12" />
+<hkern u1="&#xd8;" u2="&#xf2;" k="12" />
+<hkern u1="&#xd8;" u2="&#xf1;" k="18" />
+<hkern u1="&#xd8;" u2="&#xf0;" k="12" />
+<hkern u1="&#xd8;" u2="&#xef;" k="20" />
+<hkern u1="&#xd8;" u2="&#xee;" k="20" />
+<hkern u1="&#xd8;" u2="&#xed;" k="20" />
+<hkern u1="&#xd8;" u2="&#xec;" k="20" />
+<hkern u1="&#xd8;" u2="&#xeb;" k="12" />
+<hkern u1="&#xd8;" u2="&#xea;" k="12" />
+<hkern u1="&#xd8;" u2="&#xe9;" k="12" />
+<hkern u1="&#xd8;" u2="&#xe8;" k="12" />
+<hkern u1="&#xd8;" u2="&#xe7;" k="12" />
+<hkern u1="&#xd8;" u2="&#xe6;" k="20" />
+<hkern u1="&#xd8;" u2="&#xe5;" k="20" />
+<hkern u1="&#xd8;" u2="&#xe4;" k="20" />
+<hkern u1="&#xd8;" u2="&#xe3;" k="20" />
+<hkern u1="&#xd8;" u2="&#xe2;" k="20" />
+<hkern u1="&#xd8;" u2="&#xe1;" k="20" />
+<hkern u1="&#xd8;" u2="&#xe0;" k="20" />
+<hkern u1="&#xd8;" u2="&#xdd;" k="63" />
+<hkern u1="&#xd8;" u2="&#xc6;" k="90" />
+<hkern u1="&#xd8;" u2="&#xc5;" k="29" />
+<hkern u1="&#xd8;" u2="&#xc4;" k="29" />
+<hkern u1="&#xd8;" u2="&#xc3;" k="29" />
+<hkern u1="&#xd8;" u2="&#xc2;" k="29" />
+<hkern u1="&#xd8;" u2="&#xc1;" k="29" />
+<hkern u1="&#xd8;" u2="&#xc0;" k="29" />
+<hkern u1="&#xd8;" u2="&#x7d;" k="35" />
+<hkern u1="&#xd8;" u2="x" k="27" />
+<hkern u1="&#xd8;" u2="u" k="16" />
+<hkern u1="&#xd8;" u2="s" k="12" />
+<hkern u1="&#xd8;" u2="r" k="18" />
+<hkern u1="&#xd8;" u2="q" k="12" />
+<hkern u1="&#xd8;" u2="p" k="18" />
+<hkern u1="&#xd8;" u2="o" k="12" />
+<hkern u1="&#xd8;" u2="n" k="18" />
+<hkern u1="&#xd8;" u2="m" k="18" />
+<hkern u1="&#xd8;" u2="k" k="18" />
+<hkern u1="&#xd8;" u2="j" k="20" />
+<hkern u1="&#xd8;" u2="i" k="20" />
+<hkern u1="&#xd8;" u2="h" k="18" />
+<hkern u1="&#xd8;" u2="g" k="12" />
+<hkern u1="&#xd8;" u2="e" k="12" />
+<hkern u1="&#xd8;" u2="d" k="12" />
+<hkern u1="&#xd8;" u2="c" k="12" />
+<hkern u1="&#xd8;" u2="b" k="18" />
+<hkern u1="&#xd8;" u2="a" k="20" />
+<hkern u1="&#xd8;" u2="]" k="37" />
+<hkern u1="&#xd8;" u2="Y" k="63" />
+<hkern u1="&#xd8;" u2="X" k="53" />
+<hkern u1="&#xd8;" u2="V" k="27" />
+<hkern u1="&#xd8;" u2="T" k="49" />
+<hkern u1="&#xd8;" u2="A" k="29" />
+<hkern u1="&#xd8;" u2="&#x2e;" k="39" />
+<hkern u1="&#xd8;" u2="&#x2c;" k="39" />
+<hkern u1="&#xd8;" u2="&#x29;" k="43" />
+<hkern u1="&#xd9;" u2="&#xfb04;" k="16" />
+<hkern u1="&#xd9;" u2="&#xfb03;" k="16" />
+<hkern u1="&#xd9;" u2="&#xfb02;" k="16" />
+<hkern u1="&#xd9;" u2="&#xfb01;" k="16" />
+<hkern u1="&#xd9;" u2="&#x2026;" k="37" />
+<hkern u1="&#xd9;" u2="&#x201e;" k="37" />
+<hkern u1="&#xd9;" u2="&#x201a;" k="37" />
+<hkern u1="&#xd9;" u2="&#xff;" k="12" />
+<hkern u1="&#xd9;" u2="&#xfe;" k="27" />
+<hkern u1="&#xd9;" u2="&#xfd;" k="12" />
+<hkern u1="&#xd9;" u2="&#xfc;" k="37" />
+<hkern u1="&#xd9;" u2="&#xfb;" k="37" />
+<hkern u1="&#xd9;" u2="&#xfa;" k="37" />
+<hkern u1="&#xd9;" u2="&#xf9;" k="37" />
+<hkern u1="&#xd9;" u2="&#xf8;" k="31" />
+<hkern u1="&#xd9;" u2="&#xf6;" k="31" />
+<hkern u1="&#xd9;" u2="&#xf5;" k="31" />
+<hkern u1="&#xd9;" u2="&#xf4;" k="31" />
+<hkern u1="&#xd9;" u2="&#xf3;" k="31" />
+<hkern u1="&#xd9;" u2="&#xf2;" k="31" />
+<hkern u1="&#xd9;" u2="&#xf1;" k="37" />
+<hkern u1="&#xd9;" u2="&#xf0;" k="31" />
+<hkern u1="&#xd9;" u2="&#xef;" k="31" />
+<hkern u1="&#xd9;" u2="&#xee;" k="31" />
+<hkern u1="&#xd9;" u2="&#xed;" k="31" />
+<hkern u1="&#xd9;" u2="&#xec;" k="31" />
+<hkern u1="&#xd9;" u2="&#xeb;" k="31" />
+<hkern u1="&#xd9;" u2="&#xea;" k="31" />
+<hkern u1="&#xd9;" u2="&#xe9;" k="31" />
+<hkern u1="&#xd9;" u2="&#xe8;" k="31" />
+<hkern u1="&#xd9;" u2="&#xe7;" k="31" />
+<hkern u1="&#xd9;" u2="&#xe6;" k="35" />
+<hkern u1="&#xd9;" u2="&#xe5;" k="35" />
+<hkern u1="&#xd9;" u2="&#xe4;" k="35" />
+<hkern u1="&#xd9;" u2="&#xe3;" k="35" />
+<hkern u1="&#xd9;" u2="&#xe2;" k="35" />
+<hkern u1="&#xd9;" u2="&#xe1;" k="35" />
+<hkern u1="&#xd9;" u2="&#xe0;" k="35" />
+<hkern u1="&#xd9;" u2="&#xdf;" k="16" />
+<hkern u1="&#xd9;" u2="&#xc6;" k="20" />
+<hkern u1="&#xd9;" u2="&#xc5;" k="41" />
+<hkern u1="&#xd9;" u2="&#xc4;" k="41" />
+<hkern u1="&#xd9;" u2="&#xc3;" k="41" />
+<hkern u1="&#xd9;" u2="&#xc2;" k="41" />
+<hkern u1="&#xd9;" u2="&#xc1;" k="41" />
+<hkern u1="&#xd9;" u2="&#xc0;" k="41" />
+<hkern u1="&#xd9;" u2="y" k="12" />
+<hkern u1="&#xd9;" u2="x" k="20" />
+<hkern u1="&#xd9;" u2="v" k="16" />
+<hkern u1="&#xd9;" u2="u" k="37" />
+<hkern u1="&#xd9;" u2="t" k="20" />
+<hkern u1="&#xd9;" u2="s" k="33" />
+<hkern u1="&#xd9;" u2="r" k="37" />
+<hkern u1="&#xd9;" u2="q" k="31" />
+<hkern u1="&#xd9;" u2="p" k="37" />
+<hkern u1="&#xd9;" u2="o" k="31" />
+<hkern u1="&#xd9;" u2="n" k="37" />
+<hkern u1="&#xd9;" u2="m" k="37" />
+<hkern u1="&#xd9;" u2="k" k="27" />
+<hkern u1="&#xd9;" u2="j" k="31" />
+<hkern u1="&#xd9;" u2="i" k="31" />
+<hkern u1="&#xd9;" u2="h" k="27" />
+<hkern u1="&#xd9;" u2="g" k="31" />
+<hkern u1="&#xd9;" u2="f" k="16" />
+<hkern u1="&#xd9;" u2="e" k="31" />
+<hkern u1="&#xd9;" u2="d" k="31" />
+<hkern u1="&#xd9;" u2="c" k="31" />
+<hkern u1="&#xd9;" u2="b" k="27" />
+<hkern u1="&#xd9;" u2="a" k="35" />
+<hkern u1="&#xd9;" u2="A" k="41" />
+<hkern u1="&#xd9;" u2="&#x2f;" k="29" />
+<hkern u1="&#xd9;" u2="&#x2e;" k="37" />
+<hkern u1="&#xd9;" u2="&#x2c;" k="37" />
+<hkern u1="&#xd9;" u2="&#x29;" k="23" />
+<hkern u1="&#xda;" u2="&#xfb04;" k="16" />
+<hkern u1="&#xda;" u2="&#xfb03;" k="16" />
+<hkern u1="&#xda;" u2="&#xfb02;" k="16" />
+<hkern u1="&#xda;" u2="&#xfb01;" k="16" />
+<hkern u1="&#xda;" u2="&#x2026;" k="37" />
+<hkern u1="&#xda;" u2="&#x201e;" k="37" />
+<hkern u1="&#xda;" u2="&#x201a;" k="37" />
+<hkern u1="&#xda;" u2="&#xff;" k="12" />
+<hkern u1="&#xda;" u2="&#xfe;" k="27" />
+<hkern u1="&#xda;" u2="&#xfd;" k="12" />
+<hkern u1="&#xda;" u2="&#xfc;" k="37" />
+<hkern u1="&#xda;" u2="&#xfb;" k="37" />
+<hkern u1="&#xda;" u2="&#xfa;" k="37" />
+<hkern u1="&#xda;" u2="&#xf9;" k="37" />
+<hkern u1="&#xda;" u2="&#xf8;" k="31" />
+<hkern u1="&#xda;" u2="&#xf6;" k="31" />
+<hkern u1="&#xda;" u2="&#xf5;" k="31" />
+<hkern u1="&#xda;" u2="&#xf4;" k="31" />
+<hkern u1="&#xda;" u2="&#xf3;" k="31" />
+<hkern u1="&#xda;" u2="&#xf2;" k="31" />
+<hkern u1="&#xda;" u2="&#xf1;" k="37" />
+<hkern u1="&#xda;" u2="&#xf0;" k="31" />
+<hkern u1="&#xda;" u2="&#xef;" k="31" />
+<hkern u1="&#xda;" u2="&#xee;" k="31" />
+<hkern u1="&#xda;" u2="&#xed;" k="31" />
+<hkern u1="&#xda;" u2="&#xec;" k="31" />
+<hkern u1="&#xda;" u2="&#xeb;" k="31" />
+<hkern u1="&#xda;" u2="&#xea;" k="31" />
+<hkern u1="&#xda;" u2="&#xe9;" k="31" />
+<hkern u1="&#xda;" u2="&#xe8;" k="31" />
+<hkern u1="&#xda;" u2="&#xe7;" k="31" />
+<hkern u1="&#xda;" u2="&#xe6;" k="35" />
+<hkern u1="&#xda;" u2="&#xe5;" k="35" />
+<hkern u1="&#xda;" u2="&#xe4;" k="35" />
+<hkern u1="&#xda;" u2="&#xe3;" k="35" />
+<hkern u1="&#xda;" u2="&#xe2;" k="35" />
+<hkern u1="&#xda;" u2="&#xe1;" k="35" />
+<hkern u1="&#xda;" u2="&#xe0;" k="35" />
+<hkern u1="&#xda;" u2="&#xdf;" k="16" />
+<hkern u1="&#xda;" u2="&#xc6;" k="20" />
+<hkern u1="&#xda;" u2="&#xc5;" k="41" />
+<hkern u1="&#xda;" u2="&#xc4;" k="41" />
+<hkern u1="&#xda;" u2="&#xc3;" k="41" />
+<hkern u1="&#xda;" u2="&#xc2;" k="41" />
+<hkern u1="&#xda;" u2="&#xc1;" k="41" />
+<hkern u1="&#xda;" u2="&#xc0;" k="41" />
+<hkern u1="&#xda;" u2="y" k="12" />
+<hkern u1="&#xda;" u2="x" k="20" />
+<hkern u1="&#xda;" u2="v" k="16" />
+<hkern u1="&#xda;" u2="u" k="37" />
+<hkern u1="&#xda;" u2="t" k="20" />
+<hkern u1="&#xda;" u2="s" k="33" />
+<hkern u1="&#xda;" u2="r" k="37" />
+<hkern u1="&#xda;" u2="q" k="31" />
+<hkern u1="&#xda;" u2="p" k="37" />
+<hkern u1="&#xda;" u2="o" k="31" />
+<hkern u1="&#xda;" u2="n" k="37" />
+<hkern u1="&#xda;" u2="m" k="37" />
+<hkern u1="&#xda;" u2="k" k="27" />
+<hkern u1="&#xda;" u2="j" k="31" />
+<hkern u1="&#xda;" u2="i" k="31" />
+<hkern u1="&#xda;" u2="h" k="27" />
+<hkern u1="&#xda;" u2="g" k="31" />
+<hkern u1="&#xda;" u2="f" k="16" />
+<hkern u1="&#xda;" u2="e" k="31" />
+<hkern u1="&#xda;" u2="d" k="31" />
+<hkern u1="&#xda;" u2="c" k="31" />
+<hkern u1="&#xda;" u2="b" k="27" />
+<hkern u1="&#xda;" u2="a" k="35" />
+<hkern u1="&#xda;" u2="A" k="41" />
+<hkern u1="&#xda;" u2="&#x2f;" k="29" />
+<hkern u1="&#xda;" u2="&#x2e;" k="37" />
+<hkern u1="&#xda;" u2="&#x2c;" k="37" />
+<hkern u1="&#xda;" u2="&#x29;" k="23" />
+<hkern u1="&#xdb;" u2="&#xfb04;" k="16" />
+<hkern u1="&#xdb;" u2="&#xfb03;" k="16" />
+<hkern u1="&#xdb;" u2="&#xfb02;" k="16" />
+<hkern u1="&#xdb;" u2="&#xfb01;" k="16" />
+<hkern u1="&#xdb;" u2="&#x2026;" k="37" />
+<hkern u1="&#xdb;" u2="&#x201e;" k="37" />
+<hkern u1="&#xdb;" u2="&#x201a;" k="37" />
+<hkern u1="&#xdb;" u2="&#xff;" k="12" />
+<hkern u1="&#xdb;" u2="&#xfe;" k="27" />
+<hkern u1="&#xdb;" u2="&#xfd;" k="12" />
+<hkern u1="&#xdb;" u2="&#xfc;" k="37" />
+<hkern u1="&#xdb;" u2="&#xfb;" k="37" />
+<hkern u1="&#xdb;" u2="&#xfa;" k="37" />
+<hkern u1="&#xdb;" u2="&#xf9;" k="37" />
+<hkern u1="&#xdb;" u2="&#xf8;" k="31" />
+<hkern u1="&#xdb;" u2="&#xf6;" k="31" />
+<hkern u1="&#xdb;" u2="&#xf5;" k="31" />
+<hkern u1="&#xdb;" u2="&#xf4;" k="31" />
+<hkern u1="&#xdb;" u2="&#xf3;" k="31" />
+<hkern u1="&#xdb;" u2="&#xf2;" k="31" />
+<hkern u1="&#xdb;" u2="&#xf1;" k="37" />
+<hkern u1="&#xdb;" u2="&#xf0;" k="31" />
+<hkern u1="&#xdb;" u2="&#xef;" k="31" />
+<hkern u1="&#xdb;" u2="&#xee;" k="31" />
+<hkern u1="&#xdb;" u2="&#xed;" k="31" />
+<hkern u1="&#xdb;" u2="&#xec;" k="31" />
+<hkern u1="&#xdb;" u2="&#xeb;" k="31" />
+<hkern u1="&#xdb;" u2="&#xea;" k="31" />
+<hkern u1="&#xdb;" u2="&#xe9;" k="31" />
+<hkern u1="&#xdb;" u2="&#xe8;" k="31" />
+<hkern u1="&#xdb;" u2="&#xe7;" k="31" />
+<hkern u1="&#xdb;" u2="&#xe6;" k="35" />
+<hkern u1="&#xdb;" u2="&#xe5;" k="35" />
+<hkern u1="&#xdb;" u2="&#xe4;" k="35" />
+<hkern u1="&#xdb;" u2="&#xe3;" k="35" />
+<hkern u1="&#xdb;" u2="&#xe2;" k="35" />
+<hkern u1="&#xdb;" u2="&#xe1;" k="35" />
+<hkern u1="&#xdb;" u2="&#xe0;" k="35" />
+<hkern u1="&#xdb;" u2="&#xdf;" k="16" />
+<hkern u1="&#xdb;" u2="&#xc6;" k="20" />
+<hkern u1="&#xdb;" u2="&#xc5;" k="41" />
+<hkern u1="&#xdb;" u2="&#xc4;" k="41" />
+<hkern u1="&#xdb;" u2="&#xc3;" k="41" />
+<hkern u1="&#xdb;" u2="&#xc2;" k="41" />
+<hkern u1="&#xdb;" u2="&#xc1;" k="41" />
+<hkern u1="&#xdb;" u2="&#xc0;" k="41" />
+<hkern u1="&#xdb;" u2="y" k="12" />
+<hkern u1="&#xdb;" u2="x" k="20" />
+<hkern u1="&#xdb;" u2="v" k="16" />
+<hkern u1="&#xdb;" u2="u" k="37" />
+<hkern u1="&#xdb;" u2="t" k="20" />
+<hkern u1="&#xdb;" u2="s" k="33" />
+<hkern u1="&#xdb;" u2="r" k="37" />
+<hkern u1="&#xdb;" u2="q" k="31" />
+<hkern u1="&#xdb;" u2="p" k="37" />
+<hkern u1="&#xdb;" u2="o" k="31" />
+<hkern u1="&#xdb;" u2="n" k="37" />
+<hkern u1="&#xdb;" u2="m" k="37" />
+<hkern u1="&#xdb;" u2="k" k="27" />
+<hkern u1="&#xdb;" u2="j" k="31" />
+<hkern u1="&#xdb;" u2="i" k="31" />
+<hkern u1="&#xdb;" u2="h" k="27" />
+<hkern u1="&#xdb;" u2="g" k="31" />
+<hkern u1="&#xdb;" u2="f" k="16" />
+<hkern u1="&#xdb;" u2="e" k="31" />
+<hkern u1="&#xdb;" u2="d" k="31" />
+<hkern u1="&#xdb;" u2="c" k="31" />
+<hkern u1="&#xdb;" u2="b" k="27" />
+<hkern u1="&#xdb;" u2="a" k="35" />
+<hkern u1="&#xdb;" u2="A" k="41" />
+<hkern u1="&#xdb;" u2="&#x2f;" k="29" />
+<hkern u1="&#xdb;" u2="&#x2e;" k="37" />
+<hkern u1="&#xdb;" u2="&#x2c;" k="37" />
+<hkern u1="&#xdb;" u2="&#x29;" k="23" />
+<hkern u1="&#xdc;" u2="&#xfb04;" k="16" />
+<hkern u1="&#xdc;" u2="&#xfb03;" k="16" />
+<hkern u1="&#xdc;" u2="&#xfb02;" k="16" />
+<hkern u1="&#xdc;" u2="&#xfb01;" k="16" />
+<hkern u1="&#xdc;" u2="&#x2026;" k="37" />
+<hkern u1="&#xdc;" u2="&#x201e;" k="37" />
+<hkern u1="&#xdc;" u2="&#x201a;" k="37" />
+<hkern u1="&#xdc;" u2="&#xff;" k="12" />
+<hkern u1="&#xdc;" u2="&#xfe;" k="27" />
+<hkern u1="&#xdc;" u2="&#xfd;" k="12" />
+<hkern u1="&#xdc;" u2="&#xfc;" k="37" />
+<hkern u1="&#xdc;" u2="&#xfb;" k="37" />
+<hkern u1="&#xdc;" u2="&#xfa;" k="37" />
+<hkern u1="&#xdc;" u2="&#xf9;" k="37" />
+<hkern u1="&#xdc;" u2="&#xf8;" k="31" />
+<hkern u1="&#xdc;" u2="&#xf6;" k="31" />
+<hkern u1="&#xdc;" u2="&#xf5;" k="31" />
+<hkern u1="&#xdc;" u2="&#xf4;" k="31" />
+<hkern u1="&#xdc;" u2="&#xf3;" k="31" />
+<hkern u1="&#xdc;" u2="&#xf2;" k="31" />
+<hkern u1="&#xdc;" u2="&#xf1;" k="37" />
+<hkern u1="&#xdc;" u2="&#xf0;" k="31" />
+<hkern u1="&#xdc;" u2="&#xef;" k="31" />
+<hkern u1="&#xdc;" u2="&#xee;" k="31" />
+<hkern u1="&#xdc;" u2="&#xed;" k="31" />
+<hkern u1="&#xdc;" u2="&#xec;" k="31" />
+<hkern u1="&#xdc;" u2="&#xeb;" k="31" />
+<hkern u1="&#xdc;" u2="&#xea;" k="31" />
+<hkern u1="&#xdc;" u2="&#xe9;" k="31" />
+<hkern u1="&#xdc;" u2="&#xe8;" k="31" />
+<hkern u1="&#xdc;" u2="&#xe7;" k="31" />
+<hkern u1="&#xdc;" u2="&#xe6;" k="35" />
+<hkern u1="&#xdc;" u2="&#xe5;" k="35" />
+<hkern u1="&#xdc;" u2="&#xe4;" k="35" />
+<hkern u1="&#xdc;" u2="&#xe3;" k="35" />
+<hkern u1="&#xdc;" u2="&#xe2;" k="35" />
+<hkern u1="&#xdc;" u2="&#xe1;" k="35" />
+<hkern u1="&#xdc;" u2="&#xe0;" k="35" />
+<hkern u1="&#xdc;" u2="&#xdf;" k="16" />
+<hkern u1="&#xdc;" u2="&#xc6;" k="20" />
+<hkern u1="&#xdc;" u2="&#xc5;" k="41" />
+<hkern u1="&#xdc;" u2="&#xc4;" k="41" />
+<hkern u1="&#xdc;" u2="&#xc3;" k="41" />
+<hkern u1="&#xdc;" u2="&#xc2;" k="41" />
+<hkern u1="&#xdc;" u2="&#xc1;" k="41" />
+<hkern u1="&#xdc;" u2="&#xc0;" k="41" />
+<hkern u1="&#xdc;" u2="y" k="12" />
+<hkern u1="&#xdc;" u2="x" k="20" />
+<hkern u1="&#xdc;" u2="v" k="16" />
+<hkern u1="&#xdc;" u2="u" k="37" />
+<hkern u1="&#xdc;" u2="t" k="20" />
+<hkern u1="&#xdc;" u2="s" k="33" />
+<hkern u1="&#xdc;" u2="r" k="37" />
+<hkern u1="&#xdc;" u2="q" k="31" />
+<hkern u1="&#xdc;" u2="p" k="37" />
+<hkern u1="&#xdc;" u2="o" k="31" />
+<hkern u1="&#xdc;" u2="n" k="37" />
+<hkern u1="&#xdc;" u2="m" k="37" />
+<hkern u1="&#xdc;" u2="k" k="27" />
+<hkern u1="&#xdc;" u2="j" k="31" />
+<hkern u1="&#xdc;" u2="i" k="31" />
+<hkern u1="&#xdc;" u2="h" k="27" />
+<hkern u1="&#xdc;" u2="g" k="31" />
+<hkern u1="&#xdc;" u2="f" k="16" />
+<hkern u1="&#xdc;" u2="e" k="31" />
+<hkern u1="&#xdc;" u2="d" k="31" />
+<hkern u1="&#xdc;" u2="c" k="31" />
+<hkern u1="&#xdc;" u2="b" k="27" />
+<hkern u1="&#xdc;" u2="a" k="35" />
+<hkern u1="&#xdc;" u2="A" k="41" />
+<hkern u1="&#xdc;" u2="&#x2f;" k="29" />
+<hkern u1="&#xdc;" u2="&#x2e;" k="37" />
+<hkern u1="&#xdc;" u2="&#x2c;" k="37" />
+<hkern u1="&#xdc;" u2="&#x29;" k="23" />
+<hkern u1="&#xdd;" u2="&#xfb04;" k="49" />
+<hkern u1="&#xdd;" u2="&#xfb03;" k="49" />
+<hkern u1="&#xdd;" u2="&#xfb02;" k="49" />
+<hkern u1="&#xdd;" u2="&#xfb01;" k="49" />
+<hkern u1="&#xdd;" u2="&#x2122;" k="-53" />
+<hkern u1="&#xdd;" u2="&#x203a;" k="66" />
+<hkern u1="&#xdd;" u2="&#x2039;" k="121" />
+<hkern u1="&#xdd;" u2="&#x2026;" k="154" />
+<hkern u1="&#xdd;" u2="&#x201e;" k="154" />
+<hkern u1="&#xdd;" u2="&#x201a;" k="154" />
+<hkern u1="&#xdd;" u2="&#x2014;" k="135" />
+<hkern u1="&#xdd;" u2="&#x2013;" k="135" />
+<hkern u1="&#xdd;" u2="&#xff;" k="70" />
+<hkern u1="&#xdd;" u2="&#xfe;" k="16" />
+<hkern u1="&#xdd;" u2="&#xfd;" k="70" />
+<hkern u1="&#xdd;" u2="&#xfc;" k="139" />
+<hkern u1="&#xdd;" u2="&#xfb;" k="139" />
+<hkern u1="&#xdd;" u2="&#xfa;" k="139" />
+<hkern u1="&#xdd;" u2="&#xf9;" k="139" />
+<hkern u1="&#xdd;" u2="&#xf8;" k="178" />
+<hkern u1="&#xdd;" u2="&#xf6;" k="178" />
+<hkern u1="&#xdd;" u2="&#xf5;" k="178" />
+<hkern u1="&#xdd;" u2="&#xf4;" k="178" />
+<hkern u1="&#xdd;" u2="&#xf3;" k="178" />
+<hkern u1="&#xdd;" u2="&#xf2;" k="178" />
+<hkern u1="&#xdd;" u2="&#xf1;" k="143" />
+<hkern u1="&#xdd;" u2="&#xf0;" k="178" />
+<hkern u1="&#xdd;" u2="&#xef;" k="-47" />
+<hkern u1="&#xdd;" u2="&#xee;" k="18" />
+<hkern u1="&#xdd;" u2="&#xed;" k="18" />
+<hkern u1="&#xdd;" u2="&#xec;" k="-29" />
+<hkern u1="&#xdd;" u2="&#xeb;" k="178" />
+<hkern u1="&#xdd;" u2="&#xea;" k="178" />
+<hkern u1="&#xdd;" u2="&#xe9;" k="178" />
+<hkern u1="&#xdd;" u2="&#xe8;" k="178" />
+<hkern u1="&#xdd;" u2="&#xe7;" k="178" />
+<hkern u1="&#xdd;" u2="&#xe6;" k="166" />
+<hkern u1="&#xdd;" u2="&#xe5;" k="166" />
+<hkern u1="&#xdd;" u2="&#xe4;" k="166" />
+<hkern u1="&#xdd;" u2="&#xe3;" k="166" />
+<hkern u1="&#xdd;" u2="&#xe2;" k="166" />
+<hkern u1="&#xdd;" u2="&#xe1;" k="166" />
+<hkern u1="&#xdd;" u2="&#xe0;" k="166" />
+<hkern u1="&#xdd;" u2="&#xdf;" k="49" />
+<hkern u1="&#xdd;" u2="&#xde;" k="10" />
+<hkern u1="&#xdd;" u2="&#xdd;" k="-102" />
+<hkern u1="&#xdd;" u2="&#xd8;" k="61" />
+<hkern u1="&#xdd;" u2="&#xd6;" k="61" />
+<hkern u1="&#xdd;" u2="&#xd5;" k="61" />
+<hkern u1="&#xdd;" u2="&#xd4;" k="61" />
+<hkern u1="&#xdd;" u2="&#xd3;" k="61" />
+<hkern u1="&#xdd;" u2="&#xd2;" k="61" />
+<hkern u1="&#xdd;" u2="&#xd1;" k="10" />
+<hkern u1="&#xdd;" u2="&#xd0;" k="10" />
+<hkern u1="&#xdd;" u2="&#xcf;" k="10" />
+<hkern u1="&#xdd;" u2="&#xce;" k="10" />
+<hkern u1="&#xdd;" u2="&#xcd;" k="10" />
+<hkern u1="&#xdd;" u2="&#xcc;" k="10" />
+<hkern u1="&#xdd;" u2="&#xcb;" k="10" />
+<hkern u1="&#xdd;" u2="&#xca;" k="10" />
+<hkern u1="&#xdd;" u2="&#xc9;" k="10" />
+<hkern u1="&#xdd;" u2="&#xc8;" k="10" />
+<hkern u1="&#xdd;" u2="&#xc7;" k="61" />
+<hkern u1="&#xdd;" u2="&#xc6;" k="147" />
+<hkern u1="&#xdd;" u2="&#xc5;" k="131" />
+<hkern u1="&#xdd;" u2="&#xc4;" k="131" />
+<hkern u1="&#xdd;" u2="&#xc3;" k="131" />
+<hkern u1="&#xdd;" u2="&#xc2;" k="131" />
+<hkern u1="&#xdd;" u2="&#xc1;" k="131" />
+<hkern u1="&#xdd;" u2="&#xc0;" k="131" />
+<hkern u1="&#xdd;" u2="&#xbb;" k="66" />
+<hkern u1="&#xdd;" u2="&#xae;" k="47" />
+<hkern u1="&#xdd;" u2="&#xab;" k="121" />
+<hkern u1="&#xdd;" u2="&#x7d;" k="-25" />
+<hkern u1="&#xdd;" u2="y" k="70" />
+<hkern u1="&#xdd;" u2="x" k="88" />
+<hkern u1="&#xdd;" u2="v" k="72" />
+<hkern u1="&#xdd;" u2="u" k="139" />
+<hkern u1="&#xdd;" u2="t" k="113" />
+<hkern u1="&#xdd;" u2="s" k="174" />
+<hkern u1="&#xdd;" u2="r" k="143" />
+<hkern u1="&#xdd;" u2="q" k="178" />
+<hkern u1="&#xdd;" u2="p" k="143" />
+<hkern u1="&#xdd;" u2="o" k="178" />
+<hkern u1="&#xdd;" u2="n" k="143" />
+<hkern u1="&#xdd;" u2="m" k="143" />
+<hkern u1="&#xdd;" u2="k" k="16" />
+<hkern u1="&#xdd;" u2="j" k="18" />
+<hkern u1="&#xdd;" u2="i" k="18" />
+<hkern u1="&#xdd;" u2="h" k="16" />
+<hkern u1="&#xdd;" u2="g" k="178" />
+<hkern u1="&#xdd;" u2="f" k="49" />
+<hkern u1="&#xdd;" u2="e" k="178" />
+<hkern u1="&#xdd;" u2="d" k="178" />
+<hkern u1="&#xdd;" u2="c" k="178" />
+<hkern u1="&#xdd;" u2="b" k="16" />
+<hkern u1="&#xdd;" u2="a" k="166" />
+<hkern u1="&#xdd;" u2="]" k="-20" />
+<hkern u1="&#xdd;" u2="Y" k="-102" />
+<hkern u1="&#xdd;" u2="X" k="-92" />
+<hkern u1="&#xdd;" u2="V" k="-92" />
+<hkern u1="&#xdd;" u2="T" k="-86" />
+<hkern u1="&#xdd;" u2="S" k="18" />
+<hkern u1="&#xdd;" u2="R" k="10" />
+<hkern u1="&#xdd;" u2="Q" k="61" />
+<hkern u1="&#xdd;" u2="P" k="10" />
+<hkern u1="&#xdd;" u2="O" k="61" />
+<hkern u1="&#xdd;" u2="N" k="10" />
+<hkern u1="&#xdd;" u2="M" k="10" />
+<hkern u1="&#xdd;" u2="L" k="10" />
+<hkern u1="&#xdd;" u2="K" k="10" />
+<hkern u1="&#xdd;" u2="I" k="10" />
+<hkern u1="&#xdd;" u2="H" k="10" />
+<hkern u1="&#xdd;" u2="G" k="61" />
+<hkern u1="&#xdd;" u2="F" k="10" />
+<hkern u1="&#xdd;" u2="E" k="10" />
+<hkern u1="&#xdd;" u2="D" k="10" />
+<hkern u1="&#xdd;" u2="C" k="61" />
+<hkern u1="&#xdd;" u2="B" k="10" />
+<hkern u1="&#xdd;" u2="A" k="131" />
+<hkern u1="&#xdd;" u2="&#x40;" k="72" />
+<hkern u1="&#xdd;" u2="&#x3b;" k="53" />
+<hkern u1="&#xdd;" u2="&#x3a;" k="53" />
+<hkern u1="&#xdd;" u2="&#x2f;" k="90" />
+<hkern u1="&#xdd;" u2="&#x2e;" k="154" />
+<hkern u1="&#xdd;" u2="&#x2d;" k="135" />
+<hkern u1="&#xdd;" u2="&#x2c;" k="154" />
+<hkern u1="&#xdd;" u2="&#x26;" k="53" />
+<hkern u1="&#xde;" u2="&#x2026;" k="72" />
+<hkern u1="&#xde;" u2="&#x201e;" k="72" />
+<hkern u1="&#xde;" u2="&#x201a;" k="72" />
+<hkern u1="&#xde;" u2="&#xfe;" k="10" />
+<hkern u1="&#xde;" u2="&#xf1;" k="10" />
+<hkern u1="&#xde;" u2="&#xef;" k="10" />
+<hkern u1="&#xde;" u2="&#xee;" k="10" />
+<hkern u1="&#xde;" u2="&#xed;" k="10" />
+<hkern u1="&#xde;" u2="&#xec;" k="10" />
+<hkern u1="&#xde;" u2="&#xe6;" k="16" />
+<hkern u1="&#xde;" u2="&#xe5;" k="16" />
+<hkern u1="&#xde;" u2="&#xe4;" k="16" />
+<hkern u1="&#xde;" u2="&#xe3;" k="16" />
+<hkern u1="&#xde;" u2="&#xe2;" k="16" />
+<hkern u1="&#xde;" u2="&#xe1;" k="16" />
+<hkern u1="&#xde;" u2="&#xe0;" k="16" />
+<hkern u1="&#xde;" u2="&#xdd;" k="70" />
+<hkern u1="&#xde;" u2="&#xc6;" k="121" />
+<hkern u1="&#xde;" u2="&#xc5;" k="35" />
+<hkern u1="&#xde;" u2="&#xc4;" k="35" />
+<hkern u1="&#xde;" u2="&#xc3;" k="35" />
+<hkern u1="&#xde;" u2="&#xc2;" k="35" />
+<hkern u1="&#xde;" u2="&#xc1;" k="35" />
+<hkern u1="&#xde;" u2="&#xc0;" k="35" />
+<hkern u1="&#xde;" u2="&#x7d;" k="31" />
+<hkern u1="&#xde;" u2="x" k="20" />
+<hkern u1="&#xde;" u2="r" k="10" />
+<hkern u1="&#xde;" u2="p" k="10" />
+<hkern u1="&#xde;" u2="n" k="10" />
+<hkern u1="&#xde;" u2="m" k="10" />
+<hkern u1="&#xde;" u2="k" k="10" />
+<hkern u1="&#xde;" u2="j" k="10" />
+<hkern u1="&#xde;" u2="i" k="10" />
+<hkern u1="&#xde;" u2="h" k="10" />
+<hkern u1="&#xde;" u2="b" k="10" />
+<hkern u1="&#xde;" u2="a" k="16" />
+<hkern u1="&#xde;" u2="]" k="35" />
+<hkern u1="&#xde;" u2="Y" k="70" />
+<hkern u1="&#xde;" u2="X" k="90" />
+<hkern u1="&#xde;" u2="V" k="23" />
+<hkern u1="&#xde;" u2="T" k="92" />
+<hkern u1="&#xde;" u2="A" k="35" />
+<hkern u1="&#xde;" u2="&#x2f;" k="20" />
+<hkern u1="&#xde;" u2="&#x2e;" k="72" />
+<hkern u1="&#xde;" u2="&#x2c;" k="72" />
+<hkern u1="&#xde;" u2="&#x29;" k="41" />
+<hkern u1="&#xdf;" u2="&#x2122;" k="18" />
+<hkern u1="&#xdf;" u2="&#x7d;" k="27" />
+<hkern u1="&#xdf;" u2="x" k="12" />
+<hkern u1="&#xdf;" u2="v" k="12" />
+<hkern u1="&#xdf;" u2="t" k="8" />
+<hkern u1="&#xdf;" u2="]" k="27" />
+<hkern u1="&#xdf;" u2="&#x29;" k="35" />
+<hkern u1="&#xe0;" u2="&#xfb04;" k="12" />
+<hkern u1="&#xe0;" u2="&#xfb03;" k="12" />
+<hkern u1="&#xe0;" u2="&#xfb02;" k="12" />
+<hkern u1="&#xe0;" u2="&#xfb01;" k="12" />
+<hkern u1="&#xe0;" u2="&#x2122;" k="51" />
+<hkern u1="&#xe0;" u2="&#x201d;" k="29" />
+<hkern u1="&#xe0;" u2="&#x201c;" k="27" />
+<hkern u1="&#xe0;" u2="&#x2019;" k="29" />
+<hkern u1="&#xe0;" u2="&#x2018;" k="27" />
+<hkern u1="&#xe0;" u2="&#xff;" k="14" />
+<hkern u1="&#xe0;" u2="&#xfd;" k="14" />
+<hkern u1="&#xe0;" u2="&#xfc;" k="8" />
+<hkern u1="&#xe0;" u2="&#xfb;" k="8" />
+<hkern u1="&#xe0;" u2="&#xfa;" k="8" />
+<hkern u1="&#xe0;" u2="&#xf9;" k="8" />
+<hkern u1="&#xe0;" u2="&#xdf;" k="12" />
+<hkern u1="&#xe0;" u2="&#xde;" k="29" />
+<hkern u1="&#xe0;" u2="&#xdd;" k="176" />
+<hkern u1="&#xe0;" u2="&#xdc;" k="45" />
+<hkern u1="&#xe0;" u2="&#xdb;" k="45" />
+<hkern u1="&#xe0;" u2="&#xda;" k="45" />
+<hkern u1="&#xe0;" u2="&#xd9;" k="45" />
+<hkern u1="&#xe0;" u2="&#xd8;" k="20" />
+<hkern u1="&#xe0;" u2="&#xd6;" k="20" />
+<hkern u1="&#xe0;" u2="&#xd5;" k="20" />
+<hkern u1="&#xe0;" u2="&#xd4;" k="20" />
+<hkern u1="&#xe0;" u2="&#xd3;" k="20" />
+<hkern u1="&#xe0;" u2="&#xd2;" k="20" />
+<hkern u1="&#xe0;" u2="&#xd1;" k="29" />
+<hkern u1="&#xe0;" u2="&#xd0;" k="29" />
+<hkern u1="&#xe0;" u2="&#xcf;" k="29" />
+<hkern u1="&#xe0;" u2="&#xce;" k="29" />
+<hkern u1="&#xe0;" u2="&#xcd;" k="29" />
+<hkern u1="&#xe0;" u2="&#xcc;" k="29" />
+<hkern u1="&#xe0;" u2="&#xcb;" k="29" />
+<hkern u1="&#xe0;" u2="&#xca;" k="29" />
+<hkern u1="&#xe0;" u2="&#xc9;" k="29" />
+<hkern u1="&#xe0;" u2="&#xc8;" k="29" />
+<hkern u1="&#xe0;" u2="&#xc7;" k="20" />
+<hkern u1="&#xe0;" u2="&#xc5;" k="10" />
+<hkern u1="&#xe0;" u2="&#xc4;" k="10" />
+<hkern u1="&#xe0;" u2="&#xc3;" k="10" />
+<hkern u1="&#xe0;" u2="&#xc2;" k="10" />
+<hkern u1="&#xe0;" u2="&#xc1;" k="10" />
+<hkern u1="&#xe0;" u2="&#xc0;" k="10" />
+<hkern u1="&#xe0;" u2="&#x7d;" k="41" />
+<hkern u1="&#xe0;" u2="y" k="14" />
+<hkern u1="&#xe0;" u2="v" k="20" />
+<hkern u1="&#xe0;" u2="u" k="8" />
+<hkern u1="&#xe0;" u2="t" k="10" />
+<hkern u1="&#xe0;" u2="f" k="12" />
+<hkern u1="&#xe0;" u2="]" k="47" />
+<hkern u1="&#xe0;" u2="\" k="47" />
+<hkern u1="&#xe0;" u2="Y" k="176" />
+<hkern u1="&#xe0;" u2="X" k="12" />
+<hkern u1="&#xe0;" u2="V" k="109" />
+<hkern u1="&#xe0;" u2="U" k="45" />
+<hkern u1="&#xe0;" u2="T" k="186" />
+<hkern u1="&#xe0;" u2="S" k="25" />
+<hkern u1="&#xe0;" u2="R" k="29" />
+<hkern u1="&#xe0;" u2="Q" k="20" />
+<hkern u1="&#xe0;" u2="P" k="29" />
+<hkern u1="&#xe0;" u2="O" k="20" />
+<hkern u1="&#xe0;" u2="N" k="29" />
+<hkern u1="&#xe0;" u2="M" k="29" />
+<hkern u1="&#xe0;" u2="L" k="29" />
+<hkern u1="&#xe0;" u2="K" k="29" />
+<hkern u1="&#xe0;" u2="I" k="29" />
+<hkern u1="&#xe0;" u2="H" k="29" />
+<hkern u1="&#xe0;" u2="G" k="20" />
+<hkern u1="&#xe0;" u2="F" k="29" />
+<hkern u1="&#xe0;" u2="E" k="29" />
+<hkern u1="&#xe0;" u2="D" k="29" />
+<hkern u1="&#xe0;" u2="C" k="20" />
+<hkern u1="&#xe0;" u2="B" k="29" />
+<hkern u1="&#xe0;" u2="A" k="10" />
+<hkern u1="&#xe0;" u2="&#x3f;" k="39" />
+<hkern u1="&#xe0;" u2="&#x2a;" k="29" />
+<hkern u1="&#xe0;" u2="&#x29;" k="41" />
+<hkern u1="&#xe0;" u2="&#x27;" k="29" />
+<hkern u1="&#xe0;" u2="&#x26;" k="12" />
+<hkern u1="&#xe0;" u2="&#x22;" k="29" />
+<hkern u1="&#xe1;" u2="&#xfb04;" k="12" />
+<hkern u1="&#xe1;" u2="&#xfb03;" k="12" />
+<hkern u1="&#xe1;" u2="&#xfb02;" k="12" />
+<hkern u1="&#xe1;" u2="&#xfb01;" k="12" />
+<hkern u1="&#xe1;" u2="&#x2122;" k="51" />
+<hkern u1="&#xe1;" u2="&#x201d;" k="29" />
+<hkern u1="&#xe1;" u2="&#x201c;" k="27" />
+<hkern u1="&#xe1;" u2="&#x2019;" k="29" />
+<hkern u1="&#xe1;" u2="&#x2018;" k="27" />
+<hkern u1="&#xe1;" u2="&#xff;" k="14" />
+<hkern u1="&#xe1;" u2="&#xfd;" k="14" />
+<hkern u1="&#xe1;" u2="&#xfc;" k="8" />
+<hkern u1="&#xe1;" u2="&#xfb;" k="8" />
+<hkern u1="&#xe1;" u2="&#xfa;" k="8" />
+<hkern u1="&#xe1;" u2="&#xf9;" k="8" />
+<hkern u1="&#xe1;" u2="&#xdf;" k="12" />
+<hkern u1="&#xe1;" u2="&#xde;" k="29" />
+<hkern u1="&#xe1;" u2="&#xdd;" k="176" />
+<hkern u1="&#xe1;" u2="&#xdc;" k="45" />
+<hkern u1="&#xe1;" u2="&#xdb;" k="45" />
+<hkern u1="&#xe1;" u2="&#xda;" k="45" />
+<hkern u1="&#xe1;" u2="&#xd9;" k="45" />
+<hkern u1="&#xe1;" u2="&#xd8;" k="20" />
+<hkern u1="&#xe1;" u2="&#xd6;" k="20" />
+<hkern u1="&#xe1;" u2="&#xd5;" k="20" />
+<hkern u1="&#xe1;" u2="&#xd4;" k="20" />
+<hkern u1="&#xe1;" u2="&#xd3;" k="20" />
+<hkern u1="&#xe1;" u2="&#xd2;" k="20" />
+<hkern u1="&#xe1;" u2="&#xd1;" k="29" />
+<hkern u1="&#xe1;" u2="&#xd0;" k="29" />
+<hkern u1="&#xe1;" u2="&#xcf;" k="29" />
+<hkern u1="&#xe1;" u2="&#xce;" k="29" />
+<hkern u1="&#xe1;" u2="&#xcd;" k="29" />
+<hkern u1="&#xe1;" u2="&#xcc;" k="29" />
+<hkern u1="&#xe1;" u2="&#xcb;" k="29" />
+<hkern u1="&#xe1;" u2="&#xca;" k="29" />
+<hkern u1="&#xe1;" u2="&#xc9;" k="29" />
+<hkern u1="&#xe1;" u2="&#xc8;" k="29" />
+<hkern u1="&#xe1;" u2="&#xc7;" k="20" />
+<hkern u1="&#xe1;" u2="&#xc5;" k="10" />
+<hkern u1="&#xe1;" u2="&#xc4;" k="10" />
+<hkern u1="&#xe1;" u2="&#xc3;" k="10" />
+<hkern u1="&#xe1;" u2="&#xc2;" k="10" />
+<hkern u1="&#xe1;" u2="&#xc1;" k="10" />
+<hkern u1="&#xe1;" u2="&#xc0;" k="10" />
+<hkern u1="&#xe1;" u2="&#x7d;" k="41" />
+<hkern u1="&#xe1;" u2="y" k="14" />
+<hkern u1="&#xe1;" u2="v" k="20" />
+<hkern u1="&#xe1;" u2="u" k="8" />
+<hkern u1="&#xe1;" u2="t" k="10" />
+<hkern u1="&#xe1;" u2="f" k="12" />
+<hkern u1="&#xe1;" u2="]" k="47" />
+<hkern u1="&#xe1;" u2="\" k="47" />
+<hkern u1="&#xe1;" u2="Y" k="176" />
+<hkern u1="&#xe1;" u2="X" k="12" />
+<hkern u1="&#xe1;" u2="V" k="109" />
+<hkern u1="&#xe1;" u2="U" k="45" />
+<hkern u1="&#xe1;" u2="T" k="186" />
+<hkern u1="&#xe1;" u2="S" k="25" />
+<hkern u1="&#xe1;" u2="R" k="29" />
+<hkern u1="&#xe1;" u2="Q" k="20" />
+<hkern u1="&#xe1;" u2="P" k="29" />
+<hkern u1="&#xe1;" u2="O" k="20" />
+<hkern u1="&#xe1;" u2="N" k="29" />
+<hkern u1="&#xe1;" u2="M" k="29" />
+<hkern u1="&#xe1;" u2="L" k="29" />
+<hkern u1="&#xe1;" u2="K" k="29" />
+<hkern u1="&#xe1;" u2="I" k="29" />
+<hkern u1="&#xe1;" u2="H" k="29" />
+<hkern u1="&#xe1;" u2="G" k="20" />
+<hkern u1="&#xe1;" u2="F" k="29" />
+<hkern u1="&#xe1;" u2="E" k="29" />
+<hkern u1="&#xe1;" u2="D" k="29" />
+<hkern u1="&#xe1;" u2="C" k="20" />
+<hkern u1="&#xe1;" u2="B" k="29" />
+<hkern u1="&#xe1;" u2="A" k="10" />
+<hkern u1="&#xe1;" u2="&#x3f;" k="39" />
+<hkern u1="&#xe1;" u2="&#x2a;" k="29" />
+<hkern u1="&#xe1;" u2="&#x29;" k="41" />
+<hkern u1="&#xe1;" u2="&#x27;" k="29" />
+<hkern u1="&#xe1;" u2="&#x26;" k="12" />
+<hkern u1="&#xe1;" u2="&#x22;" k="29" />
+<hkern u1="&#xe2;" u2="&#xfb04;" k="12" />
+<hkern u1="&#xe2;" u2="&#xfb03;" k="12" />
+<hkern u1="&#xe2;" u2="&#xfb02;" k="12" />
+<hkern u1="&#xe2;" u2="&#xfb01;" k="12" />
+<hkern u1="&#xe2;" u2="&#x2122;" k="51" />
+<hkern u1="&#xe2;" u2="&#x201d;" k="29" />
+<hkern u1="&#xe2;" u2="&#x201c;" k="27" />
+<hkern u1="&#xe2;" u2="&#x2019;" k="29" />
+<hkern u1="&#xe2;" u2="&#x2018;" k="27" />
+<hkern u1="&#xe2;" u2="&#xff;" k="14" />
+<hkern u1="&#xe2;" u2="&#xfd;" k="14" />
+<hkern u1="&#xe2;" u2="&#xfc;" k="8" />
+<hkern u1="&#xe2;" u2="&#xfb;" k="8" />
+<hkern u1="&#xe2;" u2="&#xfa;" k="8" />
+<hkern u1="&#xe2;" u2="&#xf9;" k="8" />
+<hkern u1="&#xe2;" u2="&#xdf;" k="12" />
+<hkern u1="&#xe2;" u2="&#xde;" k="29" />
+<hkern u1="&#xe2;" u2="&#xdd;" k="176" />
+<hkern u1="&#xe2;" u2="&#xdc;" k="45" />
+<hkern u1="&#xe2;" u2="&#xdb;" k="45" />
+<hkern u1="&#xe2;" u2="&#xda;" k="45" />
+<hkern u1="&#xe2;" u2="&#xd9;" k="45" />
+<hkern u1="&#xe2;" u2="&#xd8;" k="20" />
+<hkern u1="&#xe2;" u2="&#xd6;" k="20" />
+<hkern u1="&#xe2;" u2="&#xd5;" k="20" />
+<hkern u1="&#xe2;" u2="&#xd4;" k="20" />
+<hkern u1="&#xe2;" u2="&#xd3;" k="20" />
+<hkern u1="&#xe2;" u2="&#xd2;" k="20" />
+<hkern u1="&#xe2;" u2="&#xd1;" k="29" />
+<hkern u1="&#xe2;" u2="&#xd0;" k="29" />
+<hkern u1="&#xe2;" u2="&#xcf;" k="29" />
+<hkern u1="&#xe2;" u2="&#xce;" k="29" />
+<hkern u1="&#xe2;" u2="&#xcd;" k="29" />
+<hkern u1="&#xe2;" u2="&#xcc;" k="29" />
+<hkern u1="&#xe2;" u2="&#xcb;" k="29" />
+<hkern u1="&#xe2;" u2="&#xca;" k="29" />
+<hkern u1="&#xe2;" u2="&#xc9;" k="29" />
+<hkern u1="&#xe2;" u2="&#xc8;" k="29" />
+<hkern u1="&#xe2;" u2="&#xc7;" k="20" />
+<hkern u1="&#xe2;" u2="&#xc5;" k="10" />
+<hkern u1="&#xe2;" u2="&#xc4;" k="10" />
+<hkern u1="&#xe2;" u2="&#xc3;" k="10" />
+<hkern u1="&#xe2;" u2="&#xc2;" k="10" />
+<hkern u1="&#xe2;" u2="&#xc1;" k="10" />
+<hkern u1="&#xe2;" u2="&#xc0;" k="10" />
+<hkern u1="&#xe2;" u2="&#x7d;" k="41" />
+<hkern u1="&#xe2;" u2="y" k="14" />
+<hkern u1="&#xe2;" u2="v" k="20" />
+<hkern u1="&#xe2;" u2="u" k="8" />
+<hkern u1="&#xe2;" u2="t" k="10" />
+<hkern u1="&#xe2;" u2="f" k="12" />
+<hkern u1="&#xe2;" u2="]" k="47" />
+<hkern u1="&#xe2;" u2="\" k="47" />
+<hkern u1="&#xe2;" u2="Y" k="176" />
+<hkern u1="&#xe2;" u2="X" k="12" />
+<hkern u1="&#xe2;" u2="V" k="109" />
+<hkern u1="&#xe2;" u2="U" k="45" />
+<hkern u1="&#xe2;" u2="T" k="186" />
+<hkern u1="&#xe2;" u2="S" k="25" />
+<hkern u1="&#xe2;" u2="R" k="29" />
+<hkern u1="&#xe2;" u2="Q" k="20" />
+<hkern u1="&#xe2;" u2="P" k="29" />
+<hkern u1="&#xe2;" u2="O" k="20" />
+<hkern u1="&#xe2;" u2="N" k="29" />
+<hkern u1="&#xe2;" u2="M" k="29" />
+<hkern u1="&#xe2;" u2="L" k="29" />
+<hkern u1="&#xe2;" u2="K" k="29" />
+<hkern u1="&#xe2;" u2="I" k="29" />
+<hkern u1="&#xe2;" u2="H" k="29" />
+<hkern u1="&#xe2;" u2="G" k="20" />
+<hkern u1="&#xe2;" u2="F" k="29" />
+<hkern u1="&#xe2;" u2="E" k="29" />
+<hkern u1="&#xe2;" u2="D" k="29" />
+<hkern u1="&#xe2;" u2="C" k="20" />
+<hkern u1="&#xe2;" u2="B" k="29" />
+<hkern u1="&#xe2;" u2="A" k="10" />
+<hkern u1="&#xe2;" u2="&#x3f;" k="39" />
+<hkern u1="&#xe2;" u2="&#x2a;" k="29" />
+<hkern u1="&#xe2;" u2="&#x29;" k="41" />
+<hkern u1="&#xe2;" u2="&#x27;" k="29" />
+<hkern u1="&#xe2;" u2="&#x26;" k="12" />
+<hkern u1="&#xe2;" u2="&#x22;" k="29" />
+<hkern u1="&#xe3;" u2="&#xfb04;" k="12" />
+<hkern u1="&#xe3;" u2="&#xfb03;" k="12" />
+<hkern u1="&#xe3;" u2="&#xfb02;" k="12" />
+<hkern u1="&#xe3;" u2="&#xfb01;" k="12" />
+<hkern u1="&#xe3;" u2="&#x2122;" k="51" />
+<hkern u1="&#xe3;" u2="&#x201d;" k="29" />
+<hkern u1="&#xe3;" u2="&#x201c;" k="27" />
+<hkern u1="&#xe3;" u2="&#x2019;" k="29" />
+<hkern u1="&#xe3;" u2="&#x2018;" k="27" />
+<hkern u1="&#xe3;" u2="&#xff;" k="14" />
+<hkern u1="&#xe3;" u2="&#xfd;" k="14" />
+<hkern u1="&#xe3;" u2="&#xfc;" k="8" />
+<hkern u1="&#xe3;" u2="&#xfb;" k="8" />
+<hkern u1="&#xe3;" u2="&#xfa;" k="8" />
+<hkern u1="&#xe3;" u2="&#xf9;" k="8" />
+<hkern u1="&#xe3;" u2="&#xdf;" k="12" />
+<hkern u1="&#xe3;" u2="&#xde;" k="29" />
+<hkern u1="&#xe3;" u2="&#xdd;" k="176" />
+<hkern u1="&#xe3;" u2="&#xdc;" k="45" />
+<hkern u1="&#xe3;" u2="&#xdb;" k="45" />
+<hkern u1="&#xe3;" u2="&#xda;" k="45" />
+<hkern u1="&#xe3;" u2="&#xd9;" k="45" />
+<hkern u1="&#xe3;" u2="&#xd8;" k="20" />
+<hkern u1="&#xe3;" u2="&#xd6;" k="20" />
+<hkern u1="&#xe3;" u2="&#xd5;" k="20" />
+<hkern u1="&#xe3;" u2="&#xd4;" k="20" />
+<hkern u1="&#xe3;" u2="&#xd3;" k="20" />
+<hkern u1="&#xe3;" u2="&#xd2;" k="20" />
+<hkern u1="&#xe3;" u2="&#xd1;" k="29" />
+<hkern u1="&#xe3;" u2="&#xd0;" k="29" />
+<hkern u1="&#xe3;" u2="&#xcf;" k="29" />
+<hkern u1="&#xe3;" u2="&#xce;" k="29" />
+<hkern u1="&#xe3;" u2="&#xcd;" k="29" />
+<hkern u1="&#xe3;" u2="&#xcc;" k="29" />
+<hkern u1="&#xe3;" u2="&#xcb;" k="29" />
+<hkern u1="&#xe3;" u2="&#xca;" k="29" />
+<hkern u1="&#xe3;" u2="&#xc9;" k="29" />
+<hkern u1="&#xe3;" u2="&#xc8;" k="29" />
+<hkern u1="&#xe3;" u2="&#xc7;" k="20" />
+<hkern u1="&#xe3;" u2="&#xc5;" k="10" />
+<hkern u1="&#xe3;" u2="&#xc4;" k="10" />
+<hkern u1="&#xe3;" u2="&#xc3;" k="10" />
+<hkern u1="&#xe3;" u2="&#xc2;" k="10" />
+<hkern u1="&#xe3;" u2="&#xc1;" k="10" />
+<hkern u1="&#xe3;" u2="&#xc0;" k="10" />
+<hkern u1="&#xe3;" u2="&#x7d;" k="41" />
+<hkern u1="&#xe3;" u2="y" k="14" />
+<hkern u1="&#xe3;" u2="v" k="20" />
+<hkern u1="&#xe3;" u2="u" k="8" />
+<hkern u1="&#xe3;" u2="t" k="10" />
+<hkern u1="&#xe3;" u2="f" k="12" />
+<hkern u1="&#xe3;" u2="]" k="47" />
+<hkern u1="&#xe3;" u2="\" k="47" />
+<hkern u1="&#xe3;" u2="Y" k="176" />
+<hkern u1="&#xe3;" u2="X" k="12" />
+<hkern u1="&#xe3;" u2="V" k="109" />
+<hkern u1="&#xe3;" u2="U" k="45" />
+<hkern u1="&#xe3;" u2="T" k="186" />
+<hkern u1="&#xe3;" u2="S" k="25" />
+<hkern u1="&#xe3;" u2="R" k="29" />
+<hkern u1="&#xe3;" u2="Q" k="20" />
+<hkern u1="&#xe3;" u2="P" k="29" />
+<hkern u1="&#xe3;" u2="O" k="20" />
+<hkern u1="&#xe3;" u2="N" k="29" />
+<hkern u1="&#xe3;" u2="M" k="29" />
+<hkern u1="&#xe3;" u2="L" k="29" />
+<hkern u1="&#xe3;" u2="K" k="29" />
+<hkern u1="&#xe3;" u2="I" k="29" />
+<hkern u1="&#xe3;" u2="H" k="29" />
+<hkern u1="&#xe3;" u2="G" k="20" />
+<hkern u1="&#xe3;" u2="F" k="29" />
+<hkern u1="&#xe3;" u2="E" k="29" />
+<hkern u1="&#xe3;" u2="D" k="29" />
+<hkern u1="&#xe3;" u2="C" k="20" />
+<hkern u1="&#xe3;" u2="B" k="29" />
+<hkern u1="&#xe3;" u2="A" k="10" />
+<hkern u1="&#xe3;" u2="&#x3f;" k="39" />
+<hkern u1="&#xe3;" u2="&#x2a;" k="29" />
+<hkern u1="&#xe3;" u2="&#x29;" k="41" />
+<hkern u1="&#xe3;" u2="&#x27;" k="29" />
+<hkern u1="&#xe3;" u2="&#x26;" k="12" />
+<hkern u1="&#xe3;" u2="&#x22;" k="29" />
+<hkern u1="&#xe4;" u2="&#xfb04;" k="12" />
+<hkern u1="&#xe4;" u2="&#xfb03;" k="12" />
+<hkern u1="&#xe4;" u2="&#xfb02;" k="12" />
+<hkern u1="&#xe4;" u2="&#xfb01;" k="12" />
+<hkern u1="&#xe4;" u2="&#x2122;" k="51" />
+<hkern u1="&#xe4;" u2="&#x201d;" k="29" />
+<hkern u1="&#xe4;" u2="&#x201c;" k="27" />
+<hkern u1="&#xe4;" u2="&#x2019;" k="29" />
+<hkern u1="&#xe4;" u2="&#x2018;" k="27" />
+<hkern u1="&#xe4;" u2="&#xff;" k="14" />
+<hkern u1="&#xe4;" u2="&#xfd;" k="14" />
+<hkern u1="&#xe4;" u2="&#xfc;" k="8" />
+<hkern u1="&#xe4;" u2="&#xfb;" k="8" />
+<hkern u1="&#xe4;" u2="&#xfa;" k="8" />
+<hkern u1="&#xe4;" u2="&#xf9;" k="8" />
+<hkern u1="&#xe4;" u2="&#xdf;" k="12" />
+<hkern u1="&#xe4;" u2="&#xde;" k="29" />
+<hkern u1="&#xe4;" u2="&#xdd;" k="176" />
+<hkern u1="&#xe4;" u2="&#xdc;" k="45" />
+<hkern u1="&#xe4;" u2="&#xdb;" k="45" />
+<hkern u1="&#xe4;" u2="&#xda;" k="45" />
+<hkern u1="&#xe4;" u2="&#xd9;" k="45" />
+<hkern u1="&#xe4;" u2="&#xd8;" k="20" />
+<hkern u1="&#xe4;" u2="&#xd6;" k="20" />
+<hkern u1="&#xe4;" u2="&#xd5;" k="20" />
+<hkern u1="&#xe4;" u2="&#xd4;" k="20" />
+<hkern u1="&#xe4;" u2="&#xd3;" k="20" />
+<hkern u1="&#xe4;" u2="&#xd2;" k="20" />
+<hkern u1="&#xe4;" u2="&#xd1;" k="29" />
+<hkern u1="&#xe4;" u2="&#xd0;" k="29" />
+<hkern u1="&#xe4;" u2="&#xcf;" k="29" />
+<hkern u1="&#xe4;" u2="&#xce;" k="29" />
+<hkern u1="&#xe4;" u2="&#xcd;" k="29" />
+<hkern u1="&#xe4;" u2="&#xcc;" k="29" />
+<hkern u1="&#xe4;" u2="&#xcb;" k="29" />
+<hkern u1="&#xe4;" u2="&#xca;" k="29" />
+<hkern u1="&#xe4;" u2="&#xc9;" k="29" />
+<hkern u1="&#xe4;" u2="&#xc8;" k="29" />
+<hkern u1="&#xe4;" u2="&#xc7;" k="20" />
+<hkern u1="&#xe4;" u2="&#xc5;" k="10" />
+<hkern u1="&#xe4;" u2="&#xc4;" k="10" />
+<hkern u1="&#xe4;" u2="&#xc3;" k="10" />
+<hkern u1="&#xe4;" u2="&#xc2;" k="10" />
+<hkern u1="&#xe4;" u2="&#xc1;" k="10" />
+<hkern u1="&#xe4;" u2="&#xc0;" k="10" />
+<hkern u1="&#xe4;" u2="&#x7d;" k="41" />
+<hkern u1="&#xe4;" u2="y" k="14" />
+<hkern u1="&#xe4;" u2="v" k="20" />
+<hkern u1="&#xe4;" u2="u" k="8" />
+<hkern u1="&#xe4;" u2="t" k="10" />
+<hkern u1="&#xe4;" u2="f" k="12" />
+<hkern u1="&#xe4;" u2="]" k="47" />
+<hkern u1="&#xe4;" u2="\" k="47" />
+<hkern u1="&#xe4;" u2="Y" k="176" />
+<hkern u1="&#xe4;" u2="X" k="12" />
+<hkern u1="&#xe4;" u2="V" k="109" />
+<hkern u1="&#xe4;" u2="U" k="45" />
+<hkern u1="&#xe4;" u2="T" k="186" />
+<hkern u1="&#xe4;" u2="S" k="25" />
+<hkern u1="&#xe4;" u2="R" k="29" />
+<hkern u1="&#xe4;" u2="Q" k="20" />
+<hkern u1="&#xe4;" u2="P" k="29" />
+<hkern u1="&#xe4;" u2="O" k="20" />
+<hkern u1="&#xe4;" u2="N" k="29" />
+<hkern u1="&#xe4;" u2="M" k="29" />
+<hkern u1="&#xe4;" u2="L" k="29" />
+<hkern u1="&#xe4;" u2="K" k="29" />
+<hkern u1="&#xe4;" u2="I" k="29" />
+<hkern u1="&#xe4;" u2="H" k="29" />
+<hkern u1="&#xe4;" u2="G" k="20" />
+<hkern u1="&#xe4;" u2="F" k="29" />
+<hkern u1="&#xe4;" u2="E" k="29" />
+<hkern u1="&#xe4;" u2="D" k="29" />
+<hkern u1="&#xe4;" u2="C" k="20" />
+<hkern u1="&#xe4;" u2="B" k="29" />
+<hkern u1="&#xe4;" u2="A" k="10" />
+<hkern u1="&#xe4;" u2="&#x3f;" k="39" />
+<hkern u1="&#xe4;" u2="&#x2a;" k="29" />
+<hkern u1="&#xe4;" u2="&#x29;" k="41" />
+<hkern u1="&#xe4;" u2="&#x27;" k="29" />
+<hkern u1="&#xe4;" u2="&#x26;" k="12" />
+<hkern u1="&#xe4;" u2="&#x22;" k="29" />
+<hkern u1="&#xe5;" u2="&#xfb04;" k="12" />
+<hkern u1="&#xe5;" u2="&#xfb03;" k="12" />
+<hkern u1="&#xe5;" u2="&#xfb02;" k="12" />
+<hkern u1="&#xe5;" u2="&#xfb01;" k="12" />
+<hkern u1="&#xe5;" u2="&#x2122;" k="51" />
+<hkern u1="&#xe5;" u2="&#x201d;" k="29" />
+<hkern u1="&#xe5;" u2="&#x201c;" k="27" />
+<hkern u1="&#xe5;" u2="&#x2019;" k="29" />
+<hkern u1="&#xe5;" u2="&#x2018;" k="27" />
+<hkern u1="&#xe5;" u2="&#xff;" k="14" />
+<hkern u1="&#xe5;" u2="&#xfd;" k="14" />
+<hkern u1="&#xe5;" u2="&#xfc;" k="8" />
+<hkern u1="&#xe5;" u2="&#xfb;" k="8" />
+<hkern u1="&#xe5;" u2="&#xfa;" k="8" />
+<hkern u1="&#xe5;" u2="&#xf9;" k="8" />
+<hkern u1="&#xe5;" u2="&#xdf;" k="12" />
+<hkern u1="&#xe5;" u2="&#xde;" k="29" />
+<hkern u1="&#xe5;" u2="&#xdd;" k="176" />
+<hkern u1="&#xe5;" u2="&#xdc;" k="45" />
+<hkern u1="&#xe5;" u2="&#xdb;" k="45" />
+<hkern u1="&#xe5;" u2="&#xda;" k="45" />
+<hkern u1="&#xe5;" u2="&#xd9;" k="45" />
+<hkern u1="&#xe5;" u2="&#xd8;" k="20" />
+<hkern u1="&#xe5;" u2="&#xd6;" k="20" />
+<hkern u1="&#xe5;" u2="&#xd5;" k="20" />
+<hkern u1="&#xe5;" u2="&#xd4;" k="20" />
+<hkern u1="&#xe5;" u2="&#xd3;" k="20" />
+<hkern u1="&#xe5;" u2="&#xd2;" k="20" />
+<hkern u1="&#xe5;" u2="&#xd1;" k="29" />
+<hkern u1="&#xe5;" u2="&#xd0;" k="29" />
+<hkern u1="&#xe5;" u2="&#xcf;" k="29" />
+<hkern u1="&#xe5;" u2="&#xce;" k="29" />
+<hkern u1="&#xe5;" u2="&#xcd;" k="29" />
+<hkern u1="&#xe5;" u2="&#xcc;" k="29" />
+<hkern u1="&#xe5;" u2="&#xcb;" k="29" />
+<hkern u1="&#xe5;" u2="&#xca;" k="29" />
+<hkern u1="&#xe5;" u2="&#xc9;" k="29" />
+<hkern u1="&#xe5;" u2="&#xc8;" k="29" />
+<hkern u1="&#xe5;" u2="&#xc7;" k="20" />
+<hkern u1="&#xe5;" u2="&#xc5;" k="10" />
+<hkern u1="&#xe5;" u2="&#xc4;" k="10" />
+<hkern u1="&#xe5;" u2="&#xc3;" k="10" />
+<hkern u1="&#xe5;" u2="&#xc2;" k="10" />
+<hkern u1="&#xe5;" u2="&#xc1;" k="10" />
+<hkern u1="&#xe5;" u2="&#xc0;" k="10" />
+<hkern u1="&#xe5;" u2="&#x7d;" k="41" />
+<hkern u1="&#xe5;" u2="y" k="14" />
+<hkern u1="&#xe5;" u2="v" k="20" />
+<hkern u1="&#xe5;" u2="u" k="8" />
+<hkern u1="&#xe5;" u2="t" k="10" />
+<hkern u1="&#xe5;" u2="f" k="12" />
+<hkern u1="&#xe5;" u2="]" k="47" />
+<hkern u1="&#xe5;" u2="\" k="47" />
+<hkern u1="&#xe5;" u2="Y" k="176" />
+<hkern u1="&#xe5;" u2="X" k="12" />
+<hkern u1="&#xe5;" u2="V" k="109" />
+<hkern u1="&#xe5;" u2="U" k="45" />
+<hkern u1="&#xe5;" u2="T" k="186" />
+<hkern u1="&#xe5;" u2="S" k="25" />
+<hkern u1="&#xe5;" u2="R" k="29" />
+<hkern u1="&#xe5;" u2="Q" k="20" />
+<hkern u1="&#xe5;" u2="P" k="29" />
+<hkern u1="&#xe5;" u2="O" k="20" />
+<hkern u1="&#xe5;" u2="N" k="29" />
+<hkern u1="&#xe5;" u2="M" k="29" />
+<hkern u1="&#xe5;" u2="L" k="29" />
+<hkern u1="&#xe5;" u2="K" k="29" />
+<hkern u1="&#xe5;" u2="I" k="29" />
+<hkern u1="&#xe5;" u2="H" k="29" />
+<hkern u1="&#xe5;" u2="G" k="20" />
+<hkern u1="&#xe5;" u2="F" k="29" />
+<hkern u1="&#xe5;" u2="E" k="29" />
+<hkern u1="&#xe5;" u2="D" k="29" />
+<hkern u1="&#xe5;" u2="C" k="20" />
+<hkern u1="&#xe5;" u2="B" k="29" />
+<hkern u1="&#xe5;" u2="A" k="10" />
+<hkern u1="&#xe5;" u2="&#x3f;" k="39" />
+<hkern u1="&#xe5;" u2="&#x2a;" k="29" />
+<hkern u1="&#xe5;" u2="&#x29;" k="41" />
+<hkern u1="&#xe5;" u2="&#x27;" k="29" />
+<hkern u1="&#xe5;" u2="&#x26;" k="12" />
+<hkern u1="&#xe5;" u2="&#x22;" k="29" />
+<hkern u1="&#xe6;" u2="&#x2122;" k="43" />
+<hkern u1="&#xe6;" u2="&#x201d;" k="25" />
+<hkern u1="&#xe6;" u2="&#x201c;" k="23" />
+<hkern u1="&#xe6;" u2="&#x2019;" k="25" />
+<hkern u1="&#xe6;" u2="&#x2018;" k="23" />
+<hkern u1="&#xe6;" u2="&#xde;" k="23" />
+<hkern u1="&#xe6;" u2="&#xdd;" k="170" />
+<hkern u1="&#xe6;" u2="&#xdc;" k="27" />
+<hkern u1="&#xe6;" u2="&#xdb;" k="27" />
+<hkern u1="&#xe6;" u2="&#xda;" k="27" />
+<hkern u1="&#xe6;" u2="&#xd9;" k="27" />
+<hkern u1="&#xe6;" u2="&#xd8;" k="10" />
+<hkern u1="&#xe6;" u2="&#xd6;" k="10" />
+<hkern u1="&#xe6;" u2="&#xd5;" k="10" />
+<hkern u1="&#xe6;" u2="&#xd4;" k="10" />
+<hkern u1="&#xe6;" u2="&#xd3;" k="10" />
+<hkern u1="&#xe6;" u2="&#xd2;" k="10" />
+<hkern u1="&#xe6;" u2="&#xd1;" k="23" />
+<hkern u1="&#xe6;" u2="&#xd0;" k="23" />
+<hkern u1="&#xe6;" u2="&#xcf;" k="23" />
+<hkern u1="&#xe6;" u2="&#xce;" k="23" />
+<hkern u1="&#xe6;" u2="&#xcd;" k="23" />
+<hkern u1="&#xe6;" u2="&#xcc;" k="23" />
+<hkern u1="&#xe6;" u2="&#xcb;" k="23" />
+<hkern u1="&#xe6;" u2="&#xca;" k="23" />
+<hkern u1="&#xe6;" u2="&#xc9;" k="23" />
+<hkern u1="&#xe6;" u2="&#xc8;" k="23" />
+<hkern u1="&#xe6;" u2="&#xc7;" k="10" />
+<hkern u1="&#xe6;" u2="&#xc5;" k="10" />
+<hkern u1="&#xe6;" u2="&#xc4;" k="10" />
+<hkern u1="&#xe6;" u2="&#xc3;" k="10" />
+<hkern u1="&#xe6;" u2="&#xc2;" k="10" />
+<hkern u1="&#xe6;" u2="&#xc1;" k="10" />
+<hkern u1="&#xe6;" u2="&#xc0;" k="10" />
+<hkern u1="&#xe6;" u2="&#x7d;" k="39" />
+<hkern u1="&#xe6;" u2="x" k="12" />
+<hkern u1="&#xe6;" u2="v" k="10" />
+<hkern u1="&#xe6;" u2="]" k="43" />
+<hkern u1="&#xe6;" u2="\" k="39" />
+<hkern u1="&#xe6;" u2="Y" k="170" />
+<hkern u1="&#xe6;" u2="X" k="33" />
+<hkern u1="&#xe6;" u2="V" k="111" />
+<hkern u1="&#xe6;" u2="U" k="27" />
+<hkern u1="&#xe6;" u2="T" k="166" />
+<hkern u1="&#xe6;" u2="S" k="23" />
+<hkern u1="&#xe6;" u2="R" k="23" />
+<hkern u1="&#xe6;" u2="Q" k="10" />
+<hkern u1="&#xe6;" u2="P" k="23" />
+<hkern u1="&#xe6;" u2="O" k="10" />
+<hkern u1="&#xe6;" u2="N" k="23" />
+<hkern u1="&#xe6;" u2="M" k="23" />
+<hkern u1="&#xe6;" u2="L" k="23" />
+<hkern u1="&#xe6;" u2="K" k="23" />
+<hkern u1="&#xe6;" u2="I" k="23" />
+<hkern u1="&#xe6;" u2="H" k="23" />
+<hkern u1="&#xe6;" u2="G" k="10" />
+<hkern u1="&#xe6;" u2="F" k="23" />
+<hkern u1="&#xe6;" u2="E" k="23" />
+<hkern u1="&#xe6;" u2="D" k="23" />
+<hkern u1="&#xe6;" u2="C" k="10" />
+<hkern u1="&#xe6;" u2="B" k="23" />
+<hkern u1="&#xe6;" u2="A" k="10" />
+<hkern u1="&#xe6;" u2="&#x3f;" k="35" />
+<hkern u1="&#xe6;" u2="&#x2a;" k="23" />
+<hkern u1="&#xe6;" u2="&#x29;" k="43" />
+<hkern u1="&#xe6;" u2="&#x27;" k="25" />
+<hkern u1="&#xe6;" u2="&#x26;" k="12" />
+<hkern u1="&#xe6;" u2="&#x22;" k="25" />
+<hkern u1="&#xe7;" u2="&#x2122;" k="25" />
+<hkern u1="&#xe7;" u2="&#x2014;" k="25" />
+<hkern u1="&#xe7;" u2="&#x2013;" k="25" />
+<hkern u1="&#xe7;" u2="&#xf8;" k="8" />
+<hkern u1="&#xe7;" u2="&#xf6;" k="8" />
+<hkern u1="&#xe7;" u2="&#xf5;" k="8" />
+<hkern u1="&#xe7;" u2="&#xf4;" k="8" />
+<hkern u1="&#xe7;" u2="&#xf3;" k="8" />
+<hkern u1="&#xe7;" u2="&#xf2;" k="8" />
+<hkern u1="&#xe7;" u2="&#xf0;" k="8" />
+<hkern u1="&#xe7;" u2="&#xeb;" k="8" />
+<hkern u1="&#xe7;" u2="&#xea;" k="8" />
+<hkern u1="&#xe7;" u2="&#xe9;" k="8" />
+<hkern u1="&#xe7;" u2="&#xe8;" k="8" />
+<hkern u1="&#xe7;" u2="&#xe7;" k="8" />
+<hkern u1="&#xe7;" u2="&#xdd;" k="143" />
+<hkern u1="&#xe7;" u2="&#xdc;" k="18" />
+<hkern u1="&#xe7;" u2="&#xdb;" k="18" />
+<hkern u1="&#xe7;" u2="&#xda;" k="18" />
+<hkern u1="&#xe7;" u2="&#xd9;" k="18" />
+<hkern u1="&#xe7;" u2="&#xd8;" k="23" />
+<hkern u1="&#xe7;" u2="&#xd6;" k="23" />
+<hkern u1="&#xe7;" u2="&#xd5;" k="23" />
+<hkern u1="&#xe7;" u2="&#xd4;" k="23" />
+<hkern u1="&#xe7;" u2="&#xd3;" k="23" />
+<hkern u1="&#xe7;" u2="&#xd2;" k="23" />
+<hkern u1="&#xe7;" u2="&#xc7;" k="23" />
+<hkern u1="&#xe7;" u2="q" k="8" />
+<hkern u1="&#xe7;" u2="o" k="8" />
+<hkern u1="&#xe7;" u2="g" k="8" />
+<hkern u1="&#xe7;" u2="e" k="8" />
+<hkern u1="&#xe7;" u2="d" k="8" />
+<hkern u1="&#xe7;" u2="c" k="8" />
+<hkern u1="&#xe7;" u2="]" k="25" />
+<hkern u1="&#xe7;" u2="Y" k="143" />
+<hkern u1="&#xe7;" u2="V" k="63" />
+<hkern u1="&#xe7;" u2="U" k="18" />
+<hkern u1="&#xe7;" u2="T" k="197" />
+<hkern u1="&#xe7;" u2="S" k="23" />
+<hkern u1="&#xe7;" u2="Q" k="23" />
+<hkern u1="&#xe7;" u2="O" k="23" />
+<hkern u1="&#xe7;" u2="G" k="23" />
+<hkern u1="&#xe7;" u2="C" k="23" />
+<hkern u1="&#xe7;" u2="&#x2d;" k="25" />
+<hkern u1="&#xe7;" u2="&#x29;" k="20" />
+<hkern u1="&#xe7;" u2="&#x26;" k="35" />
+<hkern u1="&#xe8;" u2="&#x2122;" k="43" />
+<hkern u1="&#xe8;" u2="&#x201d;" k="25" />
+<hkern u1="&#xe8;" u2="&#x201c;" k="23" />
+<hkern u1="&#xe8;" u2="&#x2019;" k="25" />
+<hkern u1="&#xe8;" u2="&#x2018;" k="23" />
+<hkern u1="&#xe8;" u2="&#xde;" k="23" />
+<hkern u1="&#xe8;" u2="&#xdd;" k="170" />
+<hkern u1="&#xe8;" u2="&#xdc;" k="27" />
+<hkern u1="&#xe8;" u2="&#xdb;" k="27" />
+<hkern u1="&#xe8;" u2="&#xda;" k="27" />
+<hkern u1="&#xe8;" u2="&#xd9;" k="27" />
+<hkern u1="&#xe8;" u2="&#xd8;" k="10" />
+<hkern u1="&#xe8;" u2="&#xd6;" k="10" />
+<hkern u1="&#xe8;" u2="&#xd5;" k="10" />
+<hkern u1="&#xe8;" u2="&#xd4;" k="10" />
+<hkern u1="&#xe8;" u2="&#xd3;" k="10" />
+<hkern u1="&#xe8;" u2="&#xd2;" k="10" />
+<hkern u1="&#xe8;" u2="&#xd1;" k="23" />
+<hkern u1="&#xe8;" u2="&#xd0;" k="23" />
+<hkern u1="&#xe8;" u2="&#xcf;" k="23" />
+<hkern u1="&#xe8;" u2="&#xce;" k="23" />
+<hkern u1="&#xe8;" u2="&#xcd;" k="23" />
+<hkern u1="&#xe8;" u2="&#xcc;" k="23" />
+<hkern u1="&#xe8;" u2="&#xcb;" k="23" />
+<hkern u1="&#xe8;" u2="&#xca;" k="23" />
+<hkern u1="&#xe8;" u2="&#xc9;" k="23" />
+<hkern u1="&#xe8;" u2="&#xc8;" k="23" />
+<hkern u1="&#xe8;" u2="&#xc7;" k="10" />
+<hkern u1="&#xe8;" u2="&#xc5;" k="10" />
+<hkern u1="&#xe8;" u2="&#xc4;" k="10" />
+<hkern u1="&#xe8;" u2="&#xc3;" k="10" />
+<hkern u1="&#xe8;" u2="&#xc2;" k="10" />
+<hkern u1="&#xe8;" u2="&#xc1;" k="10" />
+<hkern u1="&#xe8;" u2="&#xc0;" k="10" />
+<hkern u1="&#xe8;" u2="&#x7d;" k="39" />
+<hkern u1="&#xe8;" u2="x" k="12" />
+<hkern u1="&#xe8;" u2="v" k="10" />
+<hkern u1="&#xe8;" u2="]" k="43" />
+<hkern u1="&#xe8;" u2="\" k="39" />
+<hkern u1="&#xe8;" u2="Y" k="170" />
+<hkern u1="&#xe8;" u2="X" k="33" />
+<hkern u1="&#xe8;" u2="V" k="111" />
+<hkern u1="&#xe8;" u2="U" k="27" />
+<hkern u1="&#xe8;" u2="T" k="166" />
+<hkern u1="&#xe8;" u2="S" k="23" />
+<hkern u1="&#xe8;" u2="R" k="23" />
+<hkern u1="&#xe8;" u2="Q" k="10" />
+<hkern u1="&#xe8;" u2="P" k="23" />
+<hkern u1="&#xe8;" u2="O" k="10" />
+<hkern u1="&#xe8;" u2="N" k="23" />
+<hkern u1="&#xe8;" u2="M" k="23" />
+<hkern u1="&#xe8;" u2="L" k="23" />
+<hkern u1="&#xe8;" u2="K" k="23" />
+<hkern u1="&#xe8;" u2="I" k="23" />
+<hkern u1="&#xe8;" u2="H" k="23" />
+<hkern u1="&#xe8;" u2="G" k="10" />
+<hkern u1="&#xe8;" u2="F" k="23" />
+<hkern u1="&#xe8;" u2="E" k="23" />
+<hkern u1="&#xe8;" u2="D" k="23" />
+<hkern u1="&#xe8;" u2="C" k="10" />
+<hkern u1="&#xe8;" u2="B" k="23" />
+<hkern u1="&#xe8;" u2="A" k="10" />
+<hkern u1="&#xe8;" u2="&#x3f;" k="35" />
+<hkern u1="&#xe8;" u2="&#x2a;" k="23" />
+<hkern u1="&#xe8;" u2="&#x29;" k="43" />
+<hkern u1="&#xe8;" u2="&#x27;" k="25" />
+<hkern u1="&#xe8;" u2="&#x26;" k="12" />
+<hkern u1="&#xe8;" u2="&#x22;" k="25" />
+<hkern u1="&#xe9;" u2="&#x2122;" k="43" />
+<hkern u1="&#xe9;" u2="&#x201d;" k="25" />
+<hkern u1="&#xe9;" u2="&#x201c;" k="23" />
+<hkern u1="&#xe9;" u2="&#x2019;" k="25" />
+<hkern u1="&#xe9;" u2="&#x2018;" k="23" />
+<hkern u1="&#xe9;" u2="&#xde;" k="23" />
+<hkern u1="&#xe9;" u2="&#xdd;" k="170" />
+<hkern u1="&#xe9;" u2="&#xdc;" k="27" />
+<hkern u1="&#xe9;" u2="&#xdb;" k="27" />
+<hkern u1="&#xe9;" u2="&#xda;" k="27" />
+<hkern u1="&#xe9;" u2="&#xd9;" k="27" />
+<hkern u1="&#xe9;" u2="&#xd8;" k="10" />
+<hkern u1="&#xe9;" u2="&#xd6;" k="10" />
+<hkern u1="&#xe9;" u2="&#xd5;" k="10" />
+<hkern u1="&#xe9;" u2="&#xd4;" k="10" />
+<hkern u1="&#xe9;" u2="&#xd3;" k="10" />
+<hkern u1="&#xe9;" u2="&#xd2;" k="10" />
+<hkern u1="&#xe9;" u2="&#xd1;" k="23" />
+<hkern u1="&#xe9;" u2="&#xd0;" k="23" />
+<hkern u1="&#xe9;" u2="&#xcf;" k="23" />
+<hkern u1="&#xe9;" u2="&#xce;" k="23" />
+<hkern u1="&#xe9;" u2="&#xcd;" k="23" />
+<hkern u1="&#xe9;" u2="&#xcc;" k="23" />
+<hkern u1="&#xe9;" u2="&#xcb;" k="23" />
+<hkern u1="&#xe9;" u2="&#xca;" k="23" />
+<hkern u1="&#xe9;" u2="&#xc9;" k="23" />
+<hkern u1="&#xe9;" u2="&#xc8;" k="23" />
+<hkern u1="&#xe9;" u2="&#xc7;" k="10" />
+<hkern u1="&#xe9;" u2="&#xc5;" k="10" />
+<hkern u1="&#xe9;" u2="&#xc4;" k="10" />
+<hkern u1="&#xe9;" u2="&#xc3;" k="10" />
+<hkern u1="&#xe9;" u2="&#xc2;" k="10" />
+<hkern u1="&#xe9;" u2="&#xc1;" k="10" />
+<hkern u1="&#xe9;" u2="&#xc0;" k="10" />
+<hkern u1="&#xe9;" u2="&#x7d;" k="39" />
+<hkern u1="&#xe9;" u2="x" k="12" />
+<hkern u1="&#xe9;" u2="v" k="10" />
+<hkern u1="&#xe9;" u2="]" k="43" />
+<hkern u1="&#xe9;" u2="\" k="39" />
+<hkern u1="&#xe9;" u2="Y" k="170" />
+<hkern u1="&#xe9;" u2="X" k="33" />
+<hkern u1="&#xe9;" u2="V" k="111" />
+<hkern u1="&#xe9;" u2="U" k="27" />
+<hkern u1="&#xe9;" u2="T" k="166" />
+<hkern u1="&#xe9;" u2="S" k="23" />
+<hkern u1="&#xe9;" u2="R" k="23" />
+<hkern u1="&#xe9;" u2="Q" k="10" />
+<hkern u1="&#xe9;" u2="P" k="23" />
+<hkern u1="&#xe9;" u2="O" k="10" />
+<hkern u1="&#xe9;" u2="N" k="23" />
+<hkern u1="&#xe9;" u2="M" k="23" />
+<hkern u1="&#xe9;" u2="L" k="23" />
+<hkern u1="&#xe9;" u2="K" k="23" />
+<hkern u1="&#xe9;" u2="I" k="23" />
+<hkern u1="&#xe9;" u2="H" k="23" />
+<hkern u1="&#xe9;" u2="G" k="10" />
+<hkern u1="&#xe9;" u2="F" k="23" />
+<hkern u1="&#xe9;" u2="E" k="23" />
+<hkern u1="&#xe9;" u2="D" k="23" />
+<hkern u1="&#xe9;" u2="C" k="10" />
+<hkern u1="&#xe9;" u2="B" k="23" />
+<hkern u1="&#xe9;" u2="A" k="10" />
+<hkern u1="&#xe9;" u2="&#x3f;" k="35" />
+<hkern u1="&#xe9;" u2="&#x2a;" k="23" />
+<hkern u1="&#xe9;" u2="&#x29;" k="43" />
+<hkern u1="&#xe9;" u2="&#x27;" k="25" />
+<hkern u1="&#xe9;" u2="&#x26;" k="12" />
+<hkern u1="&#xe9;" u2="&#x22;" k="25" />
+<hkern u1="&#xea;" u2="&#x2122;" k="43" />
+<hkern u1="&#xea;" u2="&#x201d;" k="25" />
+<hkern u1="&#xea;" u2="&#x201c;" k="23" />
+<hkern u1="&#xea;" u2="&#x2019;" k="25" />
+<hkern u1="&#xea;" u2="&#x2018;" k="23" />
+<hkern u1="&#xea;" u2="&#xde;" k="23" />
+<hkern u1="&#xea;" u2="&#xdd;" k="170" />
+<hkern u1="&#xea;" u2="&#xdc;" k="27" />
+<hkern u1="&#xea;" u2="&#xdb;" k="27" />
+<hkern u1="&#xea;" u2="&#xda;" k="27" />
+<hkern u1="&#xea;" u2="&#xd9;" k="27" />
+<hkern u1="&#xea;" u2="&#xd8;" k="10" />
+<hkern u1="&#xea;" u2="&#xd6;" k="10" />
+<hkern u1="&#xea;" u2="&#xd5;" k="10" />
+<hkern u1="&#xea;" u2="&#xd4;" k="10" />
+<hkern u1="&#xea;" u2="&#xd3;" k="10" />
+<hkern u1="&#xea;" u2="&#xd2;" k="10" />
+<hkern u1="&#xea;" u2="&#xd1;" k="23" />
+<hkern u1="&#xea;" u2="&#xd0;" k="23" />
+<hkern u1="&#xea;" u2="&#xcf;" k="23" />
+<hkern u1="&#xea;" u2="&#xce;" k="23" />
+<hkern u1="&#xea;" u2="&#xcd;" k="23" />
+<hkern u1="&#xea;" u2="&#xcc;" k="23" />
+<hkern u1="&#xea;" u2="&#xcb;" k="23" />
+<hkern u1="&#xea;" u2="&#xca;" k="23" />
+<hkern u1="&#xea;" u2="&#xc9;" k="23" />
+<hkern u1="&#xea;" u2="&#xc8;" k="23" />
+<hkern u1="&#xea;" u2="&#xc7;" k="10" />
+<hkern u1="&#xea;" u2="&#xc5;" k="10" />
+<hkern u1="&#xea;" u2="&#xc4;" k="10" />
+<hkern u1="&#xea;" u2="&#xc3;" k="10" />
+<hkern u1="&#xea;" u2="&#xc2;" k="10" />
+<hkern u1="&#xea;" u2="&#xc1;" k="10" />
+<hkern u1="&#xea;" u2="&#xc0;" k="10" />
+<hkern u1="&#xea;" u2="&#x7d;" k="39" />
+<hkern u1="&#xea;" u2="x" k="12" />
+<hkern u1="&#xea;" u2="v" k="10" />
+<hkern u1="&#xea;" u2="]" k="43" />
+<hkern u1="&#xea;" u2="\" k="39" />
+<hkern u1="&#xea;" u2="Y" k="170" />
+<hkern u1="&#xea;" u2="X" k="33" />
+<hkern u1="&#xea;" u2="V" k="111" />
+<hkern u1="&#xea;" u2="U" k="27" />
+<hkern u1="&#xea;" u2="T" k="166" />
+<hkern u1="&#xea;" u2="S" k="23" />
+<hkern u1="&#xea;" u2="R" k="23" />
+<hkern u1="&#xea;" u2="Q" k="10" />
+<hkern u1="&#xea;" u2="P" k="23" />
+<hkern u1="&#xea;" u2="O" k="10" />
+<hkern u1="&#xea;" u2="N" k="23" />
+<hkern u1="&#xea;" u2="M" k="23" />
+<hkern u1="&#xea;" u2="L" k="23" />
+<hkern u1="&#xea;" u2="K" k="23" />
+<hkern u1="&#xea;" u2="I" k="23" />
+<hkern u1="&#xea;" u2="H" k="23" />
+<hkern u1="&#xea;" u2="G" k="10" />
+<hkern u1="&#xea;" u2="F" k="23" />
+<hkern u1="&#xea;" u2="E" k="23" />
+<hkern u1="&#xea;" u2="D" k="23" />
+<hkern u1="&#xea;" u2="C" k="10" />
+<hkern u1="&#xea;" u2="B" k="23" />
+<hkern u1="&#xea;" u2="A" k="10" />
+<hkern u1="&#xea;" u2="&#x3f;" k="35" />
+<hkern u1="&#xea;" u2="&#x2a;" k="23" />
+<hkern u1="&#xea;" u2="&#x29;" k="43" />
+<hkern u1="&#xea;" u2="&#x27;" k="25" />
+<hkern u1="&#xea;" u2="&#x26;" k="12" />
+<hkern u1="&#xea;" u2="&#x22;" k="25" />
+<hkern u1="&#xeb;" u2="&#x2122;" k="43" />
+<hkern u1="&#xeb;" u2="&#x201d;" k="25" />
+<hkern u1="&#xeb;" u2="&#x201c;" k="23" />
+<hkern u1="&#xeb;" u2="&#x2019;" k="25" />
+<hkern u1="&#xeb;" u2="&#x2018;" k="23" />
+<hkern u1="&#xeb;" u2="&#xde;" k="23" />
+<hkern u1="&#xeb;" u2="&#xdd;" k="170" />
+<hkern u1="&#xeb;" u2="&#xdc;" k="27" />
+<hkern u1="&#xeb;" u2="&#xdb;" k="27" />
+<hkern u1="&#xeb;" u2="&#xda;" k="27" />
+<hkern u1="&#xeb;" u2="&#xd9;" k="27" />
+<hkern u1="&#xeb;" u2="&#xd8;" k="10" />
+<hkern u1="&#xeb;" u2="&#xd6;" k="10" />
+<hkern u1="&#xeb;" u2="&#xd5;" k="10" />
+<hkern u1="&#xeb;" u2="&#xd4;" k="10" />
+<hkern u1="&#xeb;" u2="&#xd3;" k="10" />
+<hkern u1="&#xeb;" u2="&#xd2;" k="10" />
+<hkern u1="&#xeb;" u2="&#xd1;" k="23" />
+<hkern u1="&#xeb;" u2="&#xd0;" k="23" />
+<hkern u1="&#xeb;" u2="&#xcf;" k="23" />
+<hkern u1="&#xeb;" u2="&#xce;" k="23" />
+<hkern u1="&#xeb;" u2="&#xcd;" k="23" />
+<hkern u1="&#xeb;" u2="&#xcc;" k="23" />
+<hkern u1="&#xeb;" u2="&#xcb;" k="23" />
+<hkern u1="&#xeb;" u2="&#xca;" k="23" />
+<hkern u1="&#xeb;" u2="&#xc9;" k="23" />
+<hkern u1="&#xeb;" u2="&#xc8;" k="23" />
+<hkern u1="&#xeb;" u2="&#xc7;" k="10" />
+<hkern u1="&#xeb;" u2="&#xc5;" k="10" />
+<hkern u1="&#xeb;" u2="&#xc4;" k="10" />
+<hkern u1="&#xeb;" u2="&#xc3;" k="10" />
+<hkern u1="&#xeb;" u2="&#xc2;" k="10" />
+<hkern u1="&#xeb;" u2="&#xc1;" k="10" />
+<hkern u1="&#xeb;" u2="&#xc0;" k="10" />
+<hkern u1="&#xeb;" u2="&#x7d;" k="39" />
+<hkern u1="&#xeb;" u2="x" k="12" />
+<hkern u1="&#xeb;" u2="v" k="10" />
+<hkern u1="&#xeb;" u2="]" k="43" />
+<hkern u1="&#xeb;" u2="\" k="39" />
+<hkern u1="&#xeb;" u2="Y" k="170" />
+<hkern u1="&#xeb;" u2="X" k="33" />
+<hkern u1="&#xeb;" u2="V" k="111" />
+<hkern u1="&#xeb;" u2="U" k="27" />
+<hkern u1="&#xeb;" u2="T" k="166" />
+<hkern u1="&#xeb;" u2="S" k="23" />
+<hkern u1="&#xeb;" u2="R" k="23" />
+<hkern u1="&#xeb;" u2="Q" k="10" />
+<hkern u1="&#xeb;" u2="P" k="23" />
+<hkern u1="&#xeb;" u2="O" k="10" />
+<hkern u1="&#xeb;" u2="N" k="23" />
+<hkern u1="&#xeb;" u2="M" k="23" />
+<hkern u1="&#xeb;" u2="L" k="23" />
+<hkern u1="&#xeb;" u2="K" k="23" />
+<hkern u1="&#xeb;" u2="I" k="23" />
+<hkern u1="&#xeb;" u2="H" k="23" />
+<hkern u1="&#xeb;" u2="G" k="10" />
+<hkern u1="&#xeb;" u2="F" k="23" />
+<hkern u1="&#xeb;" u2="E" k="23" />
+<hkern u1="&#xeb;" u2="D" k="23" />
+<hkern u1="&#xeb;" u2="C" k="10" />
+<hkern u1="&#xeb;" u2="B" k="23" />
+<hkern u1="&#xeb;" u2="A" k="10" />
+<hkern u1="&#xeb;" u2="&#x3f;" k="35" />
+<hkern u1="&#xeb;" u2="&#x2a;" k="23" />
+<hkern u1="&#xeb;" u2="&#x29;" k="43" />
+<hkern u1="&#xeb;" u2="&#x27;" k="25" />
+<hkern u1="&#xeb;" u2="&#x26;" k="12" />
+<hkern u1="&#xeb;" u2="&#x22;" k="25" />
+<hkern u1="&#xec;" u2="&#xde;" k="20" />
+<hkern u1="&#xec;" u2="&#xdd;" k="16" />
+<hkern u1="&#xec;" u2="&#xdc;" k="31" />
+<hkern u1="&#xec;" u2="&#xdb;" k="31" />
+<hkern u1="&#xec;" u2="&#xda;" k="31" />
+<hkern u1="&#xec;" u2="&#xd9;" k="31" />
+<hkern u1="&#xec;" u2="&#xd8;" k="20" />
+<hkern u1="&#xec;" u2="&#xd6;" k="20" />
+<hkern u1="&#xec;" u2="&#xd5;" k="20" />
+<hkern u1="&#xec;" u2="&#xd4;" k="20" />
+<hkern u1="&#xec;" u2="&#xd3;" k="20" />
+<hkern u1="&#xec;" u2="&#xd2;" k="20" />
+<hkern u1="&#xec;" u2="&#xd1;" k="20" />
+<hkern u1="&#xec;" u2="&#xd0;" k="20" />
+<hkern u1="&#xec;" u2="&#xcf;" k="20" />
+<hkern u1="&#xec;" u2="&#xce;" k="20" />
+<hkern u1="&#xec;" u2="&#xcd;" k="20" />
+<hkern u1="&#xec;" u2="&#xcc;" k="20" />
+<hkern u1="&#xec;" u2="&#xcb;" k="20" />
+<hkern u1="&#xec;" u2="&#xca;" k="20" />
+<hkern u1="&#xec;" u2="&#xc9;" k="20" />
+<hkern u1="&#xec;" u2="&#xc8;" k="20" />
+<hkern u1="&#xec;" u2="&#xc7;" k="20" />
+<hkern u1="&#xec;" u2="&#xc5;" k="14" />
+<hkern u1="&#xec;" u2="&#xc4;" k="14" />
+<hkern u1="&#xec;" u2="&#xc3;" k="14" />
+<hkern u1="&#xec;" u2="&#xc2;" k="14" />
+<hkern u1="&#xec;" u2="&#xc1;" k="14" />
+<hkern u1="&#xec;" u2="&#xc0;" k="14" />
+<hkern u1="&#xec;" u2="Y" k="16" />
+<hkern u1="&#xec;" u2="V" k="18" />
+<hkern u1="&#xec;" u2="U" k="31" />
+<hkern u1="&#xec;" u2="T" k="20" />
+<hkern u1="&#xec;" u2="S" k="18" />
+<hkern u1="&#xec;" u2="R" k="20" />
+<hkern u1="&#xec;" u2="Q" k="20" />
+<hkern u1="&#xec;" u2="P" k="20" />
+<hkern u1="&#xec;" u2="O" k="20" />
+<hkern u1="&#xec;" u2="N" k="20" />
+<hkern u1="&#xec;" u2="M" k="20" />
+<hkern u1="&#xec;" u2="L" k="20" />
+<hkern u1="&#xec;" u2="K" k="20" />
+<hkern u1="&#xec;" u2="I" k="20" />
+<hkern u1="&#xec;" u2="H" k="20" />
+<hkern u1="&#xec;" u2="G" k="20" />
+<hkern u1="&#xec;" u2="F" k="20" />
+<hkern u1="&#xec;" u2="E" k="20" />
+<hkern u1="&#xec;" u2="D" k="20" />
+<hkern u1="&#xec;" u2="C" k="20" />
+<hkern u1="&#xec;" u2="B" k="20" />
+<hkern u1="&#xec;" u2="A" k="14" />
+<hkern u1="&#xec;" u2="&#x26;" k="16" />
+<hkern u1="&#xed;" u2="&#xde;" k="20" />
+<hkern u1="&#xed;" u2="&#xdd;" k="16" />
+<hkern u1="&#xed;" u2="&#xdc;" k="31" />
+<hkern u1="&#xed;" u2="&#xdb;" k="31" />
+<hkern u1="&#xed;" u2="&#xda;" k="31" />
+<hkern u1="&#xed;" u2="&#xd9;" k="31" />
+<hkern u1="&#xed;" u2="&#xd8;" k="20" />
+<hkern u1="&#xed;" u2="&#xd6;" k="20" />
+<hkern u1="&#xed;" u2="&#xd5;" k="20" />
+<hkern u1="&#xed;" u2="&#xd4;" k="20" />
+<hkern u1="&#xed;" u2="&#xd3;" k="20" />
+<hkern u1="&#xed;" u2="&#xd2;" k="20" />
+<hkern u1="&#xed;" u2="&#xd1;" k="20" />
+<hkern u1="&#xed;" u2="&#xd0;" k="20" />
+<hkern u1="&#xed;" u2="&#xcf;" k="20" />
+<hkern u1="&#xed;" u2="&#xce;" k="20" />
+<hkern u1="&#xed;" u2="&#xcd;" k="20" />
+<hkern u1="&#xed;" u2="&#xcc;" k="20" />
+<hkern u1="&#xed;" u2="&#xcb;" k="20" />
+<hkern u1="&#xed;" u2="&#xca;" k="20" />
+<hkern u1="&#xed;" u2="&#xc9;" k="20" />
+<hkern u1="&#xed;" u2="&#xc8;" k="20" />
+<hkern u1="&#xed;" u2="&#xc7;" k="20" />
+<hkern u1="&#xed;" u2="&#xc5;" k="14" />
+<hkern u1="&#xed;" u2="&#xc4;" k="14" />
+<hkern u1="&#xed;" u2="&#xc3;" k="14" />
+<hkern u1="&#xed;" u2="&#xc2;" k="14" />
+<hkern u1="&#xed;" u2="&#xc1;" k="14" />
+<hkern u1="&#xed;" u2="&#xc0;" k="14" />
+<hkern u1="&#xed;" u2="Y" k="16" />
+<hkern u1="&#xed;" u2="V" k="18" />
+<hkern u1="&#xed;" u2="U" k="31" />
+<hkern u1="&#xed;" u2="T" k="20" />
+<hkern u1="&#xed;" u2="S" k="18" />
+<hkern u1="&#xed;" u2="R" k="20" />
+<hkern u1="&#xed;" u2="Q" k="20" />
+<hkern u1="&#xed;" u2="P" k="20" />
+<hkern u1="&#xed;" u2="O" k="20" />
+<hkern u1="&#xed;" u2="N" k="20" />
+<hkern u1="&#xed;" u2="M" k="20" />
+<hkern u1="&#xed;" u2="L" k="20" />
+<hkern u1="&#xed;" u2="K" k="20" />
+<hkern u1="&#xed;" u2="I" k="20" />
+<hkern u1="&#xed;" u2="H" k="20" />
+<hkern u1="&#xed;" u2="G" k="20" />
+<hkern u1="&#xed;" u2="F" k="20" />
+<hkern u1="&#xed;" u2="E" k="20" />
+<hkern u1="&#xed;" u2="D" k="20" />
+<hkern u1="&#xed;" u2="C" k="20" />
+<hkern u1="&#xed;" u2="B" k="20" />
+<hkern u1="&#xed;" u2="A" k="14" />
+<hkern u1="&#xed;" u2="&#x26;" k="16" />
+<hkern u1="&#xee;" u2="&#xde;" k="20" />
+<hkern u1="&#xee;" u2="&#xdd;" k="16" />
+<hkern u1="&#xee;" u2="&#xdc;" k="31" />
+<hkern u1="&#xee;" u2="&#xdb;" k="31" />
+<hkern u1="&#xee;" u2="&#xda;" k="31" />
+<hkern u1="&#xee;" u2="&#xd9;" k="31" />
+<hkern u1="&#xee;" u2="&#xd8;" k="20" />
+<hkern u1="&#xee;" u2="&#xd6;" k="20" />
+<hkern u1="&#xee;" u2="&#xd5;" k="20" />
+<hkern u1="&#xee;" u2="&#xd4;" k="20" />
+<hkern u1="&#xee;" u2="&#xd3;" k="20" />
+<hkern u1="&#xee;" u2="&#xd2;" k="20" />
+<hkern u1="&#xee;" u2="&#xd1;" k="20" />
+<hkern u1="&#xee;" u2="&#xd0;" k="20" />
+<hkern u1="&#xee;" u2="&#xcf;" k="20" />
+<hkern u1="&#xee;" u2="&#xce;" k="20" />
+<hkern u1="&#xee;" u2="&#xcd;" k="20" />
+<hkern u1="&#xee;" u2="&#xcc;" k="20" />
+<hkern u1="&#xee;" u2="&#xcb;" k="20" />
+<hkern u1="&#xee;" u2="&#xca;" k="20" />
+<hkern u1="&#xee;" u2="&#xc9;" k="20" />
+<hkern u1="&#xee;" u2="&#xc8;" k="20" />
+<hkern u1="&#xee;" u2="&#xc7;" k="20" />
+<hkern u1="&#xee;" u2="&#xc5;" k="14" />
+<hkern u1="&#xee;" u2="&#xc4;" k="14" />
+<hkern u1="&#xee;" u2="&#xc3;" k="14" />
+<hkern u1="&#xee;" u2="&#xc2;" k="14" />
+<hkern u1="&#xee;" u2="&#xc1;" k="14" />
+<hkern u1="&#xee;" u2="&#xc0;" k="14" />
+<hkern u1="&#xee;" u2="Y" k="16" />
+<hkern u1="&#xee;" u2="V" k="18" />
+<hkern u1="&#xee;" u2="U" k="31" />
+<hkern u1="&#xee;" u2="T" k="20" />
+<hkern u1="&#xee;" u2="S" k="18" />
+<hkern u1="&#xee;" u2="R" k="20" />
+<hkern u1="&#xee;" u2="Q" k="20" />
+<hkern u1="&#xee;" u2="P" k="20" />
+<hkern u1="&#xee;" u2="O" k="20" />
+<hkern u1="&#xee;" u2="N" k="20" />
+<hkern u1="&#xee;" u2="M" k="20" />
+<hkern u1="&#xee;" u2="L" k="20" />
+<hkern u1="&#xee;" u2="K" k="20" />
+<hkern u1="&#xee;" u2="I" k="20" />
+<hkern u1="&#xee;" u2="H" k="20" />
+<hkern u1="&#xee;" u2="G" k="20" />
+<hkern u1="&#xee;" u2="F" k="20" />
+<hkern u1="&#xee;" u2="E" k="20" />
+<hkern u1="&#xee;" u2="D" k="20" />
+<hkern u1="&#xee;" u2="C" k="20" />
+<hkern u1="&#xee;" u2="B" k="20" />
+<hkern u1="&#xee;" u2="A" k="14" />
+<hkern u1="&#xee;" u2="&#x3f;" k="-29" />
+<hkern u1="&#xee;" u2="&#x2a;" k="-39" />
+<hkern u1="&#xee;" u2="&#x26;" k="16" />
+<hkern u1="&#xef;" u2="&#x2122;" k="-12" />
+<hkern u1="&#xef;" u2="&#xde;" k="20" />
+<hkern u1="&#xef;" u2="&#xdd;" k="16" />
+<hkern u1="&#xef;" u2="&#xdc;" k="31" />
+<hkern u1="&#xef;" u2="&#xdb;" k="31" />
+<hkern u1="&#xef;" u2="&#xda;" k="31" />
+<hkern u1="&#xef;" u2="&#xd9;" k="31" />
+<hkern u1="&#xef;" u2="&#xd8;" k="20" />
+<hkern u1="&#xef;" u2="&#xd6;" k="20" />
+<hkern u1="&#xef;" u2="&#xd5;" k="20" />
+<hkern u1="&#xef;" u2="&#xd4;" k="20" />
+<hkern u1="&#xef;" u2="&#xd3;" k="20" />
+<hkern u1="&#xef;" u2="&#xd2;" k="20" />
+<hkern u1="&#xef;" u2="&#xd1;" k="20" />
+<hkern u1="&#xef;" u2="&#xd0;" k="20" />
+<hkern u1="&#xef;" u2="&#xcf;" k="20" />
+<hkern u1="&#xef;" u2="&#xce;" k="20" />
+<hkern u1="&#xef;" u2="&#xcd;" k="20" />
+<hkern u1="&#xef;" u2="&#xcc;" k="20" />
+<hkern u1="&#xef;" u2="&#xcb;" k="20" />
+<hkern u1="&#xef;" u2="&#xca;" k="20" />
+<hkern u1="&#xef;" u2="&#xc9;" k="20" />
+<hkern u1="&#xef;" u2="&#xc8;" k="20" />
+<hkern u1="&#xef;" u2="&#xc7;" k="20" />
+<hkern u1="&#xef;" u2="&#xc5;" k="14" />
+<hkern u1="&#xef;" u2="&#xc4;" k="14" />
+<hkern u1="&#xef;" u2="&#xc3;" k="14" />
+<hkern u1="&#xef;" u2="&#xc2;" k="14" />
+<hkern u1="&#xef;" u2="&#xc1;" k="14" />
+<hkern u1="&#xef;" u2="&#xc0;" k="14" />
+<hkern u1="&#xef;" u2="Y" k="16" />
+<hkern u1="&#xef;" u2="V" k="18" />
+<hkern u1="&#xef;" u2="U" k="31" />
+<hkern u1="&#xef;" u2="T" k="20" />
+<hkern u1="&#xef;" u2="S" k="18" />
+<hkern u1="&#xef;" u2="R" k="20" />
+<hkern u1="&#xef;" u2="Q" k="20" />
+<hkern u1="&#xef;" u2="P" k="20" />
+<hkern u1="&#xef;" u2="O" k="20" />
+<hkern u1="&#xef;" u2="N" k="20" />
+<hkern u1="&#xef;" u2="M" k="20" />
+<hkern u1="&#xef;" u2="L" k="20" />
+<hkern u1="&#xef;" u2="K" k="20" />
+<hkern u1="&#xef;" u2="I" k="20" />
+<hkern u1="&#xef;" u2="H" k="20" />
+<hkern u1="&#xef;" u2="G" k="20" />
+<hkern u1="&#xef;" u2="F" k="20" />
+<hkern u1="&#xef;" u2="E" k="20" />
+<hkern u1="&#xef;" u2="D" k="20" />
+<hkern u1="&#xef;" u2="C" k="20" />
+<hkern u1="&#xef;" u2="B" k="20" />
+<hkern u1="&#xef;" u2="A" k="14" />
+<hkern u1="&#xef;" u2="&#x2a;" k="-20" />
+<hkern u1="&#xef;" u2="&#x26;" k="16" />
+<hkern u1="&#xf0;" u2="&#x2122;" k="35" />
+<hkern u1="&#xf0;" u2="&#x201d;" k="27" />
+<hkern u1="&#xf0;" u2="&#x201c;" k="25" />
+<hkern u1="&#xf0;" u2="&#x2019;" k="27" />
+<hkern u1="&#xf0;" u2="&#x2018;" k="25" />
+<hkern u1="&#xf0;" u2="&#x7d;" k="37" />
+<hkern u1="&#xf0;" u2="x" k="23" />
+<hkern u1="&#xf0;" u2="v" k="8" />
+<hkern u1="&#xf0;" u2="]" k="39" />
+<hkern u1="&#xf0;" u2="\" k="25" />
+<hkern u1="&#xf0;" u2="&#x3f;" k="25" />
+<hkern u1="&#xf0;" u2="&#x2a;" k="20" />
+<hkern u1="&#xf0;" u2="&#x29;" k="43" />
+<hkern u1="&#xf0;" u2="&#x27;" k="27" />
+<hkern u1="&#xf0;" u2="&#x26;" k="10" />
+<hkern u1="&#xf0;" u2="&#x22;" k="27" />
+<hkern u1="&#xf1;" u2="&#xfb04;" k="10" />
+<hkern u1="&#xf1;" u2="&#xfb03;" k="10" />
+<hkern u1="&#xf1;" u2="&#xfb02;" k="10" />
+<hkern u1="&#xf1;" u2="&#xfb01;" k="10" />
+<hkern u1="&#xf1;" u2="&#x2122;" k="49" />
+<hkern u1="&#xf1;" u2="&#x201d;" k="29" />
+<hkern u1="&#xf1;" u2="&#x201c;" k="23" />
+<hkern u1="&#xf1;" u2="&#x2019;" k="29" />
+<hkern u1="&#xf1;" u2="&#x2018;" k="23" />
+<hkern u1="&#xf1;" u2="&#xff;" k="12" />
+<hkern u1="&#xf1;" u2="&#xfd;" k="12" />
+<hkern u1="&#xf1;" u2="&#xdf;" k="10" />
+<hkern u1="&#xf1;" u2="&#xde;" k="29" />
+<hkern u1="&#xf1;" u2="&#xdd;" k="166" />
+<hkern u1="&#xf1;" u2="&#xdc;" k="43" />
+<hkern u1="&#xf1;" u2="&#xdb;" k="43" />
+<hkern u1="&#xf1;" u2="&#xda;" k="43" />
+<hkern u1="&#xf1;" u2="&#xd9;" k="43" />
+<hkern u1="&#xf1;" u2="&#xd8;" k="20" />
+<hkern u1="&#xf1;" u2="&#xd6;" k="20" />
+<hkern u1="&#xf1;" u2="&#xd5;" k="20" />
+<hkern u1="&#xf1;" u2="&#xd4;" k="20" />
+<hkern u1="&#xf1;" u2="&#xd3;" k="20" />
+<hkern u1="&#xf1;" u2="&#xd2;" k="20" />
+<hkern u1="&#xf1;" u2="&#xd1;" k="29" />
+<hkern u1="&#xf1;" u2="&#xd0;" k="29" />
+<hkern u1="&#xf1;" u2="&#xcf;" k="29" />
+<hkern u1="&#xf1;" u2="&#xce;" k="29" />
+<hkern u1="&#xf1;" u2="&#xcd;" k="29" />
+<hkern u1="&#xf1;" u2="&#xcc;" k="29" />
+<hkern u1="&#xf1;" u2="&#xcb;" k="29" />
+<hkern u1="&#xf1;" u2="&#xca;" k="29" />
+<hkern u1="&#xf1;" u2="&#xc9;" k="29" />
+<hkern u1="&#xf1;" u2="&#xc8;" k="29" />
+<hkern u1="&#xf1;" u2="&#xc7;" k="20" />
+<hkern u1="&#xf1;" u2="&#xc5;" k="10" />
+<hkern u1="&#xf1;" u2="&#xc4;" k="10" />
+<hkern u1="&#xf1;" u2="&#xc3;" k="10" />
+<hkern u1="&#xf1;" u2="&#xc2;" k="10" />
+<hkern u1="&#xf1;" u2="&#xc1;" k="10" />
+<hkern u1="&#xf1;" u2="&#xc0;" k="10" />
+<hkern u1="&#xf1;" u2="&#x7d;" k="41" />
+<hkern u1="&#xf1;" u2="y" k="12" />
+<hkern u1="&#xf1;" u2="v" k="18" />
+<hkern u1="&#xf1;" u2="t" k="8" />
+<hkern u1="&#xf1;" u2="f" k="10" />
+<hkern u1="&#xf1;" u2="]" k="47" />
+<hkern u1="&#xf1;" u2="\" k="45" />
+<hkern u1="&#xf1;" u2="Y" k="166" />
+<hkern u1="&#xf1;" u2="X" k="12" />
+<hkern u1="&#xf1;" u2="V" k="106" />
+<hkern u1="&#xf1;" u2="U" k="43" />
+<hkern u1="&#xf1;" u2="T" k="184" />
+<hkern u1="&#xf1;" u2="S" k="23" />
+<hkern u1="&#xf1;" u2="R" k="29" />
+<hkern u1="&#xf1;" u2="Q" k="20" />
+<hkern u1="&#xf1;" u2="P" k="29" />
+<hkern u1="&#xf1;" u2="O" k="20" />
+<hkern u1="&#xf1;" u2="N" k="29" />
+<hkern u1="&#xf1;" u2="M" k="29" />
+<hkern u1="&#xf1;" u2="L" k="29" />
+<hkern u1="&#xf1;" u2="K" k="29" />
+<hkern u1="&#xf1;" u2="I" k="29" />
+<hkern u1="&#xf1;" u2="H" k="29" />
+<hkern u1="&#xf1;" u2="G" k="20" />
+<hkern u1="&#xf1;" u2="F" k="29" />
+<hkern u1="&#xf1;" u2="E" k="29" />
+<hkern u1="&#xf1;" u2="D" k="29" />
+<hkern u1="&#xf1;" u2="C" k="20" />
+<hkern u1="&#xf1;" u2="B" k="29" />
+<hkern u1="&#xf1;" u2="A" k="10" />
+<hkern u1="&#xf1;" u2="&#x3f;" k="37" />
+<hkern u1="&#xf1;" u2="&#x2a;" k="27" />
+<hkern u1="&#xf1;" u2="&#x29;" k="41" />
+<hkern u1="&#xf1;" u2="&#x27;" k="29" />
+<hkern u1="&#xf1;" u2="&#x26;" k="12" />
+<hkern u1="&#xf1;" u2="&#x22;" k="29" />
+<hkern u1="&#xf2;" u2="&#xfb04;" k="10" />
+<hkern u1="&#xf2;" u2="&#xfb03;" k="10" />
+<hkern u1="&#xf2;" u2="&#xfb02;" k="10" />
+<hkern u1="&#xf2;" u2="&#xfb01;" k="10" />
+<hkern u1="&#xf2;" u2="&#x2122;" k="47" />
+<hkern u1="&#xf2;" u2="&#x201d;" k="33" />
+<hkern u1="&#xf2;" u2="&#x201c;" k="31" />
+<hkern u1="&#xf2;" u2="&#x2019;" k="33" />
+<hkern u1="&#xf2;" u2="&#x2018;" k="31" />
+<hkern u1="&#xf2;" u2="&#xff;" k="10" />
+<hkern u1="&#xf2;" u2="&#xfd;" k="10" />
+<hkern u1="&#xf2;" u2="&#xdf;" k="10" />
+<hkern u1="&#xf2;" u2="&#xde;" k="29" />
+<hkern u1="&#xf2;" u2="&#xdd;" k="178" />
+<hkern u1="&#xf2;" u2="&#xdc;" k="31" />
+<hkern u1="&#xf2;" u2="&#xdb;" k="31" />
+<hkern u1="&#xf2;" u2="&#xda;" k="31" />
+<hkern u1="&#xf2;" u2="&#xd9;" k="31" />
+<hkern u1="&#xf2;" u2="&#xd8;" k="12" />
+<hkern u1="&#xf2;" u2="&#xd6;" k="12" />
+<hkern u1="&#xf2;" u2="&#xd5;" k="12" />
+<hkern u1="&#xf2;" u2="&#xd4;" k="12" />
+<hkern u1="&#xf2;" u2="&#xd3;" k="12" />
+<hkern u1="&#xf2;" u2="&#xd2;" k="12" />
+<hkern u1="&#xf2;" u2="&#xd1;" k="29" />
+<hkern u1="&#xf2;" u2="&#xd0;" k="29" />
+<hkern u1="&#xf2;" u2="&#xcf;" k="29" />
+<hkern u1="&#xf2;" u2="&#xce;" k="29" />
+<hkern u1="&#xf2;" u2="&#xcd;" k="29" />
+<hkern u1="&#xf2;" u2="&#xcc;" k="29" />
+<hkern u1="&#xf2;" u2="&#xcb;" k="29" />
+<hkern u1="&#xf2;" u2="&#xca;" k="29" />
+<hkern u1="&#xf2;" u2="&#xc9;" k="29" />
+<hkern u1="&#xf2;" u2="&#xc8;" k="29" />
+<hkern u1="&#xf2;" u2="&#xc7;" k="12" />
+<hkern u1="&#xf2;" u2="&#xc5;" k="25" />
+<hkern u1="&#xf2;" u2="&#xc4;" k="25" />
+<hkern u1="&#xf2;" u2="&#xc3;" k="25" />
+<hkern u1="&#xf2;" u2="&#xc2;" k="25" />
+<hkern u1="&#xf2;" u2="&#xc1;" k="25" />
+<hkern u1="&#xf2;" u2="&#xc0;" k="25" />
+<hkern u1="&#xf2;" u2="&#x7d;" k="47" />
+<hkern u1="&#xf2;" u2="y" k="10" />
+<hkern u1="&#xf2;" u2="x" k="31" />
+<hkern u1="&#xf2;" u2="v" k="14" />
+<hkern u1="&#xf2;" u2="t" k="8" />
+<hkern u1="&#xf2;" u2="f" k="10" />
+<hkern u1="&#xf2;" u2="]" k="51" />
+<hkern u1="&#xf2;" u2="\" k="45" />
+<hkern u1="&#xf2;" u2="Y" k="178" />
+<hkern u1="&#xf2;" u2="X" k="84" />
+<hkern u1="&#xf2;" u2="V" k="109" />
+<hkern u1="&#xf2;" u2="U" k="31" />
+<hkern u1="&#xf2;" u2="T" k="176" />
+<hkern u1="&#xf2;" u2="S" k="29" />
+<hkern u1="&#xf2;" u2="R" k="29" />
+<hkern u1="&#xf2;" u2="Q" k="12" />
+<hkern u1="&#xf2;" u2="P" k="29" />
+<hkern u1="&#xf2;" u2="O" k="12" />
+<hkern u1="&#xf2;" u2="N" k="29" />
+<hkern u1="&#xf2;" u2="M" k="29" />
+<hkern u1="&#xf2;" u2="L" k="29" />
+<hkern u1="&#xf2;" u2="K" k="29" />
+<hkern u1="&#xf2;" u2="I" k="29" />
+<hkern u1="&#xf2;" u2="H" k="29" />
+<hkern u1="&#xf2;" u2="G" k="12" />
+<hkern u1="&#xf2;" u2="F" k="29" />
+<hkern u1="&#xf2;" u2="E" k="29" />
+<hkern u1="&#xf2;" u2="D" k="29" />
+<hkern u1="&#xf2;" u2="C" k="12" />
+<hkern u1="&#xf2;" u2="B" k="29" />
+<hkern u1="&#xf2;" u2="A" k="25" />
+<hkern u1="&#xf2;" u2="&#x3f;" k="41" />
+<hkern u1="&#xf2;" u2="&#x2a;" k="29" />
+<hkern u1="&#xf2;" u2="&#x29;" k="55" />
+<hkern u1="&#xf2;" u2="&#x27;" k="33" />
+<hkern u1="&#xf2;" u2="&#x22;" k="33" />
+<hkern u1="&#xf3;" u2="&#xfb04;" k="10" />
+<hkern u1="&#xf3;" u2="&#xfb03;" k="10" />
+<hkern u1="&#xf3;" u2="&#xfb02;" k="10" />
+<hkern u1="&#xf3;" u2="&#xfb01;" k="10" />
+<hkern u1="&#xf3;" u2="&#x2122;" k="47" />
+<hkern u1="&#xf3;" u2="&#x201d;" k="33" />
+<hkern u1="&#xf3;" u2="&#x201c;" k="31" />
+<hkern u1="&#xf3;" u2="&#x2019;" k="33" />
+<hkern u1="&#xf3;" u2="&#x2018;" k="31" />
+<hkern u1="&#xf3;" u2="&#xff;" k="10" />
+<hkern u1="&#xf3;" u2="&#xfd;" k="10" />
+<hkern u1="&#xf3;" u2="&#xdf;" k="10" />
+<hkern u1="&#xf3;" u2="&#xde;" k="29" />
+<hkern u1="&#xf3;" u2="&#xdd;" k="178" />
+<hkern u1="&#xf3;" u2="&#xdc;" k="31" />
+<hkern u1="&#xf3;" u2="&#xdb;" k="31" />
+<hkern u1="&#xf3;" u2="&#xda;" k="31" />
+<hkern u1="&#xf3;" u2="&#xd9;" k="31" />
+<hkern u1="&#xf3;" u2="&#xd8;" k="12" />
+<hkern u1="&#xf3;" u2="&#xd6;" k="12" />
+<hkern u1="&#xf3;" u2="&#xd5;" k="12" />
+<hkern u1="&#xf3;" u2="&#xd4;" k="12" />
+<hkern u1="&#xf3;" u2="&#xd3;" k="12" />
+<hkern u1="&#xf3;" u2="&#xd2;" k="12" />
+<hkern u1="&#xf3;" u2="&#xd1;" k="29" />
+<hkern u1="&#xf3;" u2="&#xd0;" k="29" />
+<hkern u1="&#xf3;" u2="&#xcf;" k="29" />
+<hkern u1="&#xf3;" u2="&#xce;" k="29" />
+<hkern u1="&#xf3;" u2="&#xcd;" k="29" />
+<hkern u1="&#xf3;" u2="&#xcc;" k="29" />
+<hkern u1="&#xf3;" u2="&#xcb;" k="29" />
+<hkern u1="&#xf3;" u2="&#xca;" k="29" />
+<hkern u1="&#xf3;" u2="&#xc9;" k="29" />
+<hkern u1="&#xf3;" u2="&#xc8;" k="29" />
+<hkern u1="&#xf3;" u2="&#xc7;" k="12" />
+<hkern u1="&#xf3;" u2="&#xc5;" k="25" />
+<hkern u1="&#xf3;" u2="&#xc4;" k="25" />
+<hkern u1="&#xf3;" u2="&#xc3;" k="25" />
+<hkern u1="&#xf3;" u2="&#xc2;" k="25" />
+<hkern u1="&#xf3;" u2="&#xc1;" k="25" />
+<hkern u1="&#xf3;" u2="&#xc0;" k="25" />
+<hkern u1="&#xf3;" u2="&#x7d;" k="47" />
+<hkern u1="&#xf3;" u2="y" k="10" />
+<hkern u1="&#xf3;" u2="x" k="31" />
+<hkern u1="&#xf3;" u2="v" k="14" />
+<hkern u1="&#xf3;" u2="t" k="8" />
+<hkern u1="&#xf3;" u2="f" k="10" />
+<hkern u1="&#xf3;" u2="]" k="51" />
+<hkern u1="&#xf3;" u2="\" k="45" />
+<hkern u1="&#xf3;" u2="Y" k="178" />
+<hkern u1="&#xf3;" u2="X" k="84" />
+<hkern u1="&#xf3;" u2="V" k="109" />
+<hkern u1="&#xf3;" u2="U" k="31" />
+<hkern u1="&#xf3;" u2="T" k="176" />
+<hkern u1="&#xf3;" u2="S" k="29" />
+<hkern u1="&#xf3;" u2="R" k="29" />
+<hkern u1="&#xf3;" u2="Q" k="12" />
+<hkern u1="&#xf3;" u2="P" k="29" />
+<hkern u1="&#xf3;" u2="O" k="12" />
+<hkern u1="&#xf3;" u2="N" k="29" />
+<hkern u1="&#xf3;" u2="M" k="29" />
+<hkern u1="&#xf3;" u2="L" k="29" />
+<hkern u1="&#xf3;" u2="K" k="29" />
+<hkern u1="&#xf3;" u2="I" k="29" />
+<hkern u1="&#xf3;" u2="H" k="29" />
+<hkern u1="&#xf3;" u2="G" k="12" />
+<hkern u1="&#xf3;" u2="F" k="29" />
+<hkern u1="&#xf3;" u2="E" k="29" />
+<hkern u1="&#xf3;" u2="D" k="29" />
+<hkern u1="&#xf3;" u2="C" k="12" />
+<hkern u1="&#xf3;" u2="B" k="29" />
+<hkern u1="&#xf3;" u2="A" k="25" />
+<hkern u1="&#xf3;" u2="&#x3f;" k="41" />
+<hkern u1="&#xf3;" u2="&#x2a;" k="29" />
+<hkern u1="&#xf3;" u2="&#x29;" k="55" />
+<hkern u1="&#xf3;" u2="&#x27;" k="33" />
+<hkern u1="&#xf3;" u2="&#x22;" k="33" />
+<hkern u1="&#xf4;" u2="&#xfb04;" k="10" />
+<hkern u1="&#xf4;" u2="&#xfb03;" k="10" />
+<hkern u1="&#xf4;" u2="&#xfb02;" k="10" />
+<hkern u1="&#xf4;" u2="&#xfb01;" k="10" />
+<hkern u1="&#xf4;" u2="&#x2122;" k="47" />
+<hkern u1="&#xf4;" u2="&#x201d;" k="33" />
+<hkern u1="&#xf4;" u2="&#x201c;" k="31" />
+<hkern u1="&#xf4;" u2="&#x2019;" k="33" />
+<hkern u1="&#xf4;" u2="&#x2018;" k="31" />
+<hkern u1="&#xf4;" u2="&#xff;" k="10" />
+<hkern u1="&#xf4;" u2="&#xfd;" k="10" />
+<hkern u1="&#xf4;" u2="&#xdf;" k="10" />
+<hkern u1="&#xf4;" u2="&#xde;" k="29" />
+<hkern u1="&#xf4;" u2="&#xdd;" k="178" />
+<hkern u1="&#xf4;" u2="&#xdc;" k="31" />
+<hkern u1="&#xf4;" u2="&#xdb;" k="31" />
+<hkern u1="&#xf4;" u2="&#xda;" k="31" />
+<hkern u1="&#xf4;" u2="&#xd9;" k="31" />
+<hkern u1="&#xf4;" u2="&#xd8;" k="12" />
+<hkern u1="&#xf4;" u2="&#xd6;" k="12" />
+<hkern u1="&#xf4;" u2="&#xd5;" k="12" />
+<hkern u1="&#xf4;" u2="&#xd4;" k="12" />
+<hkern u1="&#xf4;" u2="&#xd3;" k="12" />
+<hkern u1="&#xf4;" u2="&#xd2;" k="12" />
+<hkern u1="&#xf4;" u2="&#xd1;" k="29" />
+<hkern u1="&#xf4;" u2="&#xd0;" k="29" />
+<hkern u1="&#xf4;" u2="&#xcf;" k="29" />
+<hkern u1="&#xf4;" u2="&#xce;" k="29" />
+<hkern u1="&#xf4;" u2="&#xcd;" k="29" />
+<hkern u1="&#xf4;" u2="&#xcc;" k="29" />
+<hkern u1="&#xf4;" u2="&#xcb;" k="29" />
+<hkern u1="&#xf4;" u2="&#xca;" k="29" />
+<hkern u1="&#xf4;" u2="&#xc9;" k="29" />
+<hkern u1="&#xf4;" u2="&#xc8;" k="29" />
+<hkern u1="&#xf4;" u2="&#xc7;" k="12" />
+<hkern u1="&#xf4;" u2="&#xc5;" k="25" />
+<hkern u1="&#xf4;" u2="&#xc4;" k="25" />
+<hkern u1="&#xf4;" u2="&#xc3;" k="25" />
+<hkern u1="&#xf4;" u2="&#xc2;" k="25" />
+<hkern u1="&#xf4;" u2="&#xc1;" k="25" />
+<hkern u1="&#xf4;" u2="&#xc0;" k="25" />
+<hkern u1="&#xf4;" u2="&#x7d;" k="47" />
+<hkern u1="&#xf4;" u2="y" k="10" />
+<hkern u1="&#xf4;" u2="x" k="31" />
+<hkern u1="&#xf4;" u2="v" k="14" />
+<hkern u1="&#xf4;" u2="t" k="8" />
+<hkern u1="&#xf4;" u2="f" k="10" />
+<hkern u1="&#xf4;" u2="]" k="51" />
+<hkern u1="&#xf4;" u2="\" k="45" />
+<hkern u1="&#xf4;" u2="Y" k="178" />
+<hkern u1="&#xf4;" u2="X" k="84" />
+<hkern u1="&#xf4;" u2="V" k="109" />
+<hkern u1="&#xf4;" u2="U" k="31" />
+<hkern u1="&#xf4;" u2="T" k="176" />
+<hkern u1="&#xf4;" u2="S" k="29" />
+<hkern u1="&#xf4;" u2="R" k="29" />
+<hkern u1="&#xf4;" u2="Q" k="12" />
+<hkern u1="&#xf4;" u2="P" k="29" />
+<hkern u1="&#xf4;" u2="O" k="12" />
+<hkern u1="&#xf4;" u2="N" k="29" />
+<hkern u1="&#xf4;" u2="M" k="29" />
+<hkern u1="&#xf4;" u2="L" k="29" />
+<hkern u1="&#xf4;" u2="K" k="29" />
+<hkern u1="&#xf4;" u2="I" k="29" />
+<hkern u1="&#xf4;" u2="H" k="29" />
+<hkern u1="&#xf4;" u2="G" k="12" />
+<hkern u1="&#xf4;" u2="F" k="29" />
+<hkern u1="&#xf4;" u2="E" k="29" />
+<hkern u1="&#xf4;" u2="D" k="29" />
+<hkern u1="&#xf4;" u2="C" k="12" />
+<hkern u1="&#xf4;" u2="B" k="29" />
+<hkern u1="&#xf4;" u2="A" k="25" />
+<hkern u1="&#xf4;" u2="&#x3f;" k="41" />
+<hkern u1="&#xf4;" u2="&#x2a;" k="29" />
+<hkern u1="&#xf4;" u2="&#x29;" k="55" />
+<hkern u1="&#xf4;" u2="&#x27;" k="33" />
+<hkern u1="&#xf4;" u2="&#x22;" k="33" />
+<hkern u1="&#xf5;" u2="&#xfb04;" k="10" />
+<hkern u1="&#xf5;" u2="&#xfb03;" k="10" />
+<hkern u1="&#xf5;" u2="&#xfb02;" k="10" />
+<hkern u1="&#xf5;" u2="&#xfb01;" k="10" />
+<hkern u1="&#xf5;" u2="&#x2122;" k="47" />
+<hkern u1="&#xf5;" u2="&#x201d;" k="33" />
+<hkern u1="&#xf5;" u2="&#x201c;" k="31" />
+<hkern u1="&#xf5;" u2="&#x2019;" k="33" />
+<hkern u1="&#xf5;" u2="&#x2018;" k="31" />
+<hkern u1="&#xf5;" u2="&#xff;" k="10" />
+<hkern u1="&#xf5;" u2="&#xfd;" k="10" />
+<hkern u1="&#xf5;" u2="&#xdf;" k="10" />
+<hkern u1="&#xf5;" u2="&#xde;" k="29" />
+<hkern u1="&#xf5;" u2="&#xdd;" k="178" />
+<hkern u1="&#xf5;" u2="&#xdc;" k="31" />
+<hkern u1="&#xf5;" u2="&#xdb;" k="31" />
+<hkern u1="&#xf5;" u2="&#xda;" k="31" />
+<hkern u1="&#xf5;" u2="&#xd9;" k="31" />
+<hkern u1="&#xf5;" u2="&#xd8;" k="12" />
+<hkern u1="&#xf5;" u2="&#xd6;" k="12" />
+<hkern u1="&#xf5;" u2="&#xd5;" k="12" />
+<hkern u1="&#xf5;" u2="&#xd4;" k="12" />
+<hkern u1="&#xf5;" u2="&#xd3;" k="12" />
+<hkern u1="&#xf5;" u2="&#xd2;" k="12" />
+<hkern u1="&#xf5;" u2="&#xd1;" k="29" />
+<hkern u1="&#xf5;" u2="&#xd0;" k="29" />
+<hkern u1="&#xf5;" u2="&#xcf;" k="29" />
+<hkern u1="&#xf5;" u2="&#xce;" k="29" />
+<hkern u1="&#xf5;" u2="&#xcd;" k="29" />
+<hkern u1="&#xf5;" u2="&#xcc;" k="29" />
+<hkern u1="&#xf5;" u2="&#xcb;" k="29" />
+<hkern u1="&#xf5;" u2="&#xca;" k="29" />
+<hkern u1="&#xf5;" u2="&#xc9;" k="29" />
+<hkern u1="&#xf5;" u2="&#xc8;" k="29" />
+<hkern u1="&#xf5;" u2="&#xc7;" k="12" />
+<hkern u1="&#xf5;" u2="&#xc5;" k="25" />
+<hkern u1="&#xf5;" u2="&#xc4;" k="25" />
+<hkern u1="&#xf5;" u2="&#xc3;" k="25" />
+<hkern u1="&#xf5;" u2="&#xc2;" k="25" />
+<hkern u1="&#xf5;" u2="&#xc1;" k="25" />
+<hkern u1="&#xf5;" u2="&#xc0;" k="25" />
+<hkern u1="&#xf5;" u2="&#x7d;" k="47" />
+<hkern u1="&#xf5;" u2="y" k="10" />
+<hkern u1="&#xf5;" u2="x" k="31" />
+<hkern u1="&#xf5;" u2="v" k="14" />
+<hkern u1="&#xf5;" u2="t" k="8" />
+<hkern u1="&#xf5;" u2="f" k="10" />
+<hkern u1="&#xf5;" u2="]" k="51" />
+<hkern u1="&#xf5;" u2="\" k="45" />
+<hkern u1="&#xf5;" u2="Y" k="178" />
+<hkern u1="&#xf5;" u2="X" k="84" />
+<hkern u1="&#xf5;" u2="V" k="109" />
+<hkern u1="&#xf5;" u2="U" k="31" />
+<hkern u1="&#xf5;" u2="T" k="176" />
+<hkern u1="&#xf5;" u2="S" k="29" />
+<hkern u1="&#xf5;" u2="R" k="29" />
+<hkern u1="&#xf5;" u2="Q" k="12" />
+<hkern u1="&#xf5;" u2="P" k="29" />
+<hkern u1="&#xf5;" u2="O" k="12" />
+<hkern u1="&#xf5;" u2="N" k="29" />
+<hkern u1="&#xf5;" u2="M" k="29" />
+<hkern u1="&#xf5;" u2="L" k="29" />
+<hkern u1="&#xf5;" u2="K" k="29" />
+<hkern u1="&#xf5;" u2="I" k="29" />
+<hkern u1="&#xf5;" u2="H" k="29" />
+<hkern u1="&#xf5;" u2="G" k="12" />
+<hkern u1="&#xf5;" u2="F" k="29" />
+<hkern u1="&#xf5;" u2="E" k="29" />
+<hkern u1="&#xf5;" u2="D" k="29" />
+<hkern u1="&#xf5;" u2="C" k="12" />
+<hkern u1="&#xf5;" u2="B" k="29" />
+<hkern u1="&#xf5;" u2="A" k="25" />
+<hkern u1="&#xf5;" u2="&#x3f;" k="41" />
+<hkern u1="&#xf5;" u2="&#x2a;" k="29" />
+<hkern u1="&#xf5;" u2="&#x29;" k="55" />
+<hkern u1="&#xf5;" u2="&#x27;" k="33" />
+<hkern u1="&#xf5;" u2="&#x22;" k="33" />
+<hkern u1="&#xf6;" u2="&#xfb04;" k="10" />
+<hkern u1="&#xf6;" u2="&#xfb03;" k="10" />
+<hkern u1="&#xf6;" u2="&#xfb02;" k="10" />
+<hkern u1="&#xf6;" u2="&#xfb01;" k="10" />
+<hkern u1="&#xf6;" u2="&#x2122;" k="47" />
+<hkern u1="&#xf6;" u2="&#x201d;" k="33" />
+<hkern u1="&#xf6;" u2="&#x201c;" k="31" />
+<hkern u1="&#xf6;" u2="&#x2019;" k="33" />
+<hkern u1="&#xf6;" u2="&#x2018;" k="31" />
+<hkern u1="&#xf6;" u2="&#xff;" k="10" />
+<hkern u1="&#xf6;" u2="&#xfd;" k="10" />
+<hkern u1="&#xf6;" u2="&#xdf;" k="10" />
+<hkern u1="&#xf6;" u2="&#xde;" k="29" />
+<hkern u1="&#xf6;" u2="&#xdd;" k="178" />
+<hkern u1="&#xf6;" u2="&#xdc;" k="31" />
+<hkern u1="&#xf6;" u2="&#xdb;" k="31" />
+<hkern u1="&#xf6;" u2="&#xda;" k="31" />
+<hkern u1="&#xf6;" u2="&#xd9;" k="31" />
+<hkern u1="&#xf6;" u2="&#xd8;" k="12" />
+<hkern u1="&#xf6;" u2="&#xd6;" k="12" />
+<hkern u1="&#xf6;" u2="&#xd5;" k="12" />
+<hkern u1="&#xf6;" u2="&#xd4;" k="12" />
+<hkern u1="&#xf6;" u2="&#xd3;" k="12" />
+<hkern u1="&#xf6;" u2="&#xd2;" k="12" />
+<hkern u1="&#xf6;" u2="&#xd1;" k="29" />
+<hkern u1="&#xf6;" u2="&#xd0;" k="29" />
+<hkern u1="&#xf6;" u2="&#xcf;" k="29" />
+<hkern u1="&#xf6;" u2="&#xce;" k="29" />
+<hkern u1="&#xf6;" u2="&#xcd;" k="29" />
+<hkern u1="&#xf6;" u2="&#xcc;" k="29" />
+<hkern u1="&#xf6;" u2="&#xcb;" k="29" />
+<hkern u1="&#xf6;" u2="&#xca;" k="29" />
+<hkern u1="&#xf6;" u2="&#xc9;" k="29" />
+<hkern u1="&#xf6;" u2="&#xc8;" k="29" />
+<hkern u1="&#xf6;" u2="&#xc7;" k="12" />
+<hkern u1="&#xf6;" u2="&#xc5;" k="25" />
+<hkern u1="&#xf6;" u2="&#xc4;" k="25" />
+<hkern u1="&#xf6;" u2="&#xc3;" k="25" />
+<hkern u1="&#xf6;" u2="&#xc2;" k="25" />
+<hkern u1="&#xf6;" u2="&#xc1;" k="25" />
+<hkern u1="&#xf6;" u2="&#xc0;" k="25" />
+<hkern u1="&#xf6;" u2="&#x7d;" k="47" />
+<hkern u1="&#xf6;" u2="y" k="10" />
+<hkern u1="&#xf6;" u2="x" k="31" />
+<hkern u1="&#xf6;" u2="v" k="14" />
+<hkern u1="&#xf6;" u2="t" k="8" />
+<hkern u1="&#xf6;" u2="f" k="10" />
+<hkern u1="&#xf6;" u2="]" k="51" />
+<hkern u1="&#xf6;" u2="\" k="45" />
+<hkern u1="&#xf6;" u2="Y" k="178" />
+<hkern u1="&#xf6;" u2="X" k="84" />
+<hkern u1="&#xf6;" u2="V" k="109" />
+<hkern u1="&#xf6;" u2="U" k="31" />
+<hkern u1="&#xf6;" u2="T" k="176" />
+<hkern u1="&#xf6;" u2="S" k="29" />
+<hkern u1="&#xf6;" u2="R" k="29" />
+<hkern u1="&#xf6;" u2="Q" k="12" />
+<hkern u1="&#xf6;" u2="P" k="29" />
+<hkern u1="&#xf6;" u2="O" k="12" />
+<hkern u1="&#xf6;" u2="N" k="29" />
+<hkern u1="&#xf6;" u2="M" k="29" />
+<hkern u1="&#xf6;" u2="L" k="29" />
+<hkern u1="&#xf6;" u2="K" k="29" />
+<hkern u1="&#xf6;" u2="I" k="29" />
+<hkern u1="&#xf6;" u2="H" k="29" />
+<hkern u1="&#xf6;" u2="G" k="12" />
+<hkern u1="&#xf6;" u2="F" k="29" />
+<hkern u1="&#xf6;" u2="E" k="29" />
+<hkern u1="&#xf6;" u2="D" k="29" />
+<hkern u1="&#xf6;" u2="C" k="12" />
+<hkern u1="&#xf6;" u2="B" k="29" />
+<hkern u1="&#xf6;" u2="A" k="25" />
+<hkern u1="&#xf6;" u2="&#x3f;" k="41" />
+<hkern u1="&#xf6;" u2="&#x2a;" k="29" />
+<hkern u1="&#xf6;" u2="&#x29;" k="55" />
+<hkern u1="&#xf6;" u2="&#x27;" k="33" />
+<hkern u1="&#xf6;" u2="&#x22;" k="33" />
+<hkern u1="&#xf8;" u2="&#xfb04;" k="10" />
+<hkern u1="&#xf8;" u2="&#xfb03;" k="10" />
+<hkern u1="&#xf8;" u2="&#xfb02;" k="10" />
+<hkern u1="&#xf8;" u2="&#xfb01;" k="10" />
+<hkern u1="&#xf8;" u2="&#x2122;" k="47" />
+<hkern u1="&#xf8;" u2="&#x201d;" k="33" />
+<hkern u1="&#xf8;" u2="&#x201c;" k="31" />
+<hkern u1="&#xf8;" u2="&#x2019;" k="33" />
+<hkern u1="&#xf8;" u2="&#x2018;" k="31" />
+<hkern u1="&#xf8;" u2="&#xff;" k="10" />
+<hkern u1="&#xf8;" u2="&#xfd;" k="10" />
+<hkern u1="&#xf8;" u2="&#xdf;" k="10" />
+<hkern u1="&#xf8;" u2="&#xde;" k="29" />
+<hkern u1="&#xf8;" u2="&#xdd;" k="178" />
+<hkern u1="&#xf8;" u2="&#xdc;" k="31" />
+<hkern u1="&#xf8;" u2="&#xdb;" k="31" />
+<hkern u1="&#xf8;" u2="&#xda;" k="31" />
+<hkern u1="&#xf8;" u2="&#xd9;" k="31" />
+<hkern u1="&#xf8;" u2="&#xd8;" k="12" />
+<hkern u1="&#xf8;" u2="&#xd6;" k="12" />
+<hkern u1="&#xf8;" u2="&#xd5;" k="12" />
+<hkern u1="&#xf8;" u2="&#xd4;" k="12" />
+<hkern u1="&#xf8;" u2="&#xd3;" k="12" />
+<hkern u1="&#xf8;" u2="&#xd2;" k="12" />
+<hkern u1="&#xf8;" u2="&#xd1;" k="29" />
+<hkern u1="&#xf8;" u2="&#xd0;" k="29" />
+<hkern u1="&#xf8;" u2="&#xcf;" k="29" />
+<hkern u1="&#xf8;" u2="&#xce;" k="29" />
+<hkern u1="&#xf8;" u2="&#xcd;" k="29" />
+<hkern u1="&#xf8;" u2="&#xcc;" k="29" />
+<hkern u1="&#xf8;" u2="&#xcb;" k="29" />
+<hkern u1="&#xf8;" u2="&#xca;" k="29" />
+<hkern u1="&#xf8;" u2="&#xc9;" k="29" />
+<hkern u1="&#xf8;" u2="&#xc8;" k="29" />
+<hkern u1="&#xf8;" u2="&#xc7;" k="12" />
+<hkern u1="&#xf8;" u2="&#xc5;" k="25" />
+<hkern u1="&#xf8;" u2="&#xc4;" k="25" />
+<hkern u1="&#xf8;" u2="&#xc3;" k="25" />
+<hkern u1="&#xf8;" u2="&#xc2;" k="25" />
+<hkern u1="&#xf8;" u2="&#xc1;" k="25" />
+<hkern u1="&#xf8;" u2="&#xc0;" k="25" />
+<hkern u1="&#xf8;" u2="&#x7d;" k="47" />
+<hkern u1="&#xf8;" u2="y" k="10" />
+<hkern u1="&#xf8;" u2="x" k="31" />
+<hkern u1="&#xf8;" u2="v" k="14" />
+<hkern u1="&#xf8;" u2="t" k="8" />
+<hkern u1="&#xf8;" u2="f" k="10" />
+<hkern u1="&#xf8;" u2="]" k="51" />
+<hkern u1="&#xf8;" u2="\" k="45" />
+<hkern u1="&#xf8;" u2="Y" k="178" />
+<hkern u1="&#xf8;" u2="X" k="84" />
+<hkern u1="&#xf8;" u2="V" k="109" />
+<hkern u1="&#xf8;" u2="U" k="31" />
+<hkern u1="&#xf8;" u2="T" k="176" />
+<hkern u1="&#xf8;" u2="S" k="29" />
+<hkern u1="&#xf8;" u2="R" k="29" />
+<hkern u1="&#xf8;" u2="Q" k="12" />
+<hkern u1="&#xf8;" u2="P" k="29" />
+<hkern u1="&#xf8;" u2="O" k="12" />
+<hkern u1="&#xf8;" u2="N" k="29" />
+<hkern u1="&#xf8;" u2="M" k="29" />
+<hkern u1="&#xf8;" u2="L" k="29" />
+<hkern u1="&#xf8;" u2="K" k="29" />
+<hkern u1="&#xf8;" u2="I" k="29" />
+<hkern u1="&#xf8;" u2="H" k="29" />
+<hkern u1="&#xf8;" u2="G" k="12" />
+<hkern u1="&#xf8;" u2="F" k="29" />
+<hkern u1="&#xf8;" u2="E" k="29" />
+<hkern u1="&#xf8;" u2="D" k="29" />
+<hkern u1="&#xf8;" u2="C" k="12" />
+<hkern u1="&#xf8;" u2="B" k="29" />
+<hkern u1="&#xf8;" u2="A" k="25" />
+<hkern u1="&#xf8;" u2="&#x3f;" k="41" />
+<hkern u1="&#xf8;" u2="&#x2a;" k="29" />
+<hkern u1="&#xf8;" u2="&#x29;" k="55" />
+<hkern u1="&#xf8;" u2="&#x27;" k="33" />
+<hkern u1="&#xf8;" u2="&#x22;" k="33" />
+<hkern u1="&#xf9;" u2="&#x2122;" k="37" />
+<hkern u1="&#xf9;" u2="&#xde;" k="20" />
+<hkern u1="&#xf9;" u2="&#xdd;" k="143" />
+<hkern u1="&#xf9;" u2="&#xdc;" k="37" />
+<hkern u1="&#xf9;" u2="&#xdb;" k="37" />
+<hkern u1="&#xf9;" u2="&#xda;" k="37" />
+<hkern u1="&#xf9;" u2="&#xd9;" k="37" />
+<hkern u1="&#xf9;" u2="&#xd8;" k="18" />
+<hkern u1="&#xf9;" u2="&#xd6;" k="18" />
+<hkern u1="&#xf9;" u2="&#xd5;" k="18" />
+<hkern u1="&#xf9;" u2="&#xd4;" k="18" />
+<hkern u1="&#xf9;" u2="&#xd3;" k="18" />
+<hkern u1="&#xf9;" u2="&#xd2;" k="18" />
+<hkern u1="&#xf9;" u2="&#xd1;" k="20" />
+<hkern u1="&#xf9;" u2="&#xd0;" k="20" />
+<hkern u1="&#xf9;" u2="&#xcf;" k="20" />
+<hkern u1="&#xf9;" u2="&#xce;" k="20" />
+<hkern u1="&#xf9;" u2="&#xcd;" k="20" />
+<hkern u1="&#xf9;" u2="&#xcc;" k="20" />
+<hkern u1="&#xf9;" u2="&#xcb;" k="20" />
+<hkern u1="&#xf9;" u2="&#xca;" k="20" />
+<hkern u1="&#xf9;" u2="&#xc9;" k="20" />
+<hkern u1="&#xf9;" u2="&#xc8;" k="20" />
+<hkern u1="&#xf9;" u2="&#xc7;" k="18" />
+<hkern u1="&#xf9;" u2="&#xc5;" k="12" />
+<hkern u1="&#xf9;" u2="&#xc4;" k="12" />
+<hkern u1="&#xf9;" u2="&#xc3;" k="12" />
+<hkern u1="&#xf9;" u2="&#xc2;" k="12" />
+<hkern u1="&#xf9;" u2="&#xc1;" k="12" />
+<hkern u1="&#xf9;" u2="&#xc0;" k="12" />
+<hkern u1="&#xf9;" u2="&#x7d;" k="37" />
+<hkern u1="&#xf9;" u2="]" k="41" />
+<hkern u1="&#xf9;" u2="\" k="31" />
+<hkern u1="&#xf9;" u2="Y" k="143" />
+<hkern u1="&#xf9;" u2="X" k="16" />
+<hkern u1="&#xf9;" u2="V" k="90" />
+<hkern u1="&#xf9;" u2="U" k="37" />
+<hkern u1="&#xf9;" u2="T" k="137" />
+<hkern u1="&#xf9;" u2="S" k="16" />
+<hkern u1="&#xf9;" u2="R" k="20" />
+<hkern u1="&#xf9;" u2="Q" k="18" />
+<hkern u1="&#xf9;" u2="P" k="20" />
+<hkern u1="&#xf9;" u2="O" k="18" />
+<hkern u1="&#xf9;" u2="N" k="20" />
+<hkern u1="&#xf9;" u2="M" k="20" />
+<hkern u1="&#xf9;" u2="L" k="20" />
+<hkern u1="&#xf9;" u2="K" k="20" />
+<hkern u1="&#xf9;" u2="I" k="20" />
+<hkern u1="&#xf9;" u2="H" k="20" />
+<hkern u1="&#xf9;" u2="G" k="18" />
+<hkern u1="&#xf9;" u2="F" k="20" />
+<hkern u1="&#xf9;" u2="E" k="20" />
+<hkern u1="&#xf9;" u2="D" k="20" />
+<hkern u1="&#xf9;" u2="C" k="18" />
+<hkern u1="&#xf9;" u2="B" k="20" />
+<hkern u1="&#xf9;" u2="A" k="12" />
+<hkern u1="&#xf9;" u2="&#x29;" k="37" />
+<hkern u1="&#xf9;" u2="&#x26;" k="14" />
+<hkern u1="&#xfa;" u2="&#x2122;" k="37" />
+<hkern u1="&#xfa;" u2="&#xde;" k="20" />
+<hkern u1="&#xfa;" u2="&#xdd;" k="143" />
+<hkern u1="&#xfa;" u2="&#xdc;" k="37" />
+<hkern u1="&#xfa;" u2="&#xdb;" k="37" />
+<hkern u1="&#xfa;" u2="&#xda;" k="37" />
+<hkern u1="&#xfa;" u2="&#xd9;" k="37" />
+<hkern u1="&#xfa;" u2="&#xd8;" k="18" />
+<hkern u1="&#xfa;" u2="&#xd6;" k="18" />
+<hkern u1="&#xfa;" u2="&#xd5;" k="18" />
+<hkern u1="&#xfa;" u2="&#xd4;" k="18" />
+<hkern u1="&#xfa;" u2="&#xd3;" k="18" />
+<hkern u1="&#xfa;" u2="&#xd2;" k="18" />
+<hkern u1="&#xfa;" u2="&#xd1;" k="20" />
+<hkern u1="&#xfa;" u2="&#xd0;" k="20" />
+<hkern u1="&#xfa;" u2="&#xcf;" k="20" />
+<hkern u1="&#xfa;" u2="&#xce;" k="20" />
+<hkern u1="&#xfa;" u2="&#xcd;" k="20" />
+<hkern u1="&#xfa;" u2="&#xcc;" k="20" />
+<hkern u1="&#xfa;" u2="&#xcb;" k="20" />
+<hkern u1="&#xfa;" u2="&#xca;" k="20" />
+<hkern u1="&#xfa;" u2="&#xc9;" k="20" />
+<hkern u1="&#xfa;" u2="&#xc8;" k="20" />
+<hkern u1="&#xfa;" u2="&#xc7;" k="18" />
+<hkern u1="&#xfa;" u2="&#xc5;" k="12" />
+<hkern u1="&#xfa;" u2="&#xc4;" k="12" />
+<hkern u1="&#xfa;" u2="&#xc3;" k="12" />
+<hkern u1="&#xfa;" u2="&#xc2;" k="12" />
+<hkern u1="&#xfa;" u2="&#xc1;" k="12" />
+<hkern u1="&#xfa;" u2="&#xc0;" k="12" />
+<hkern u1="&#xfa;" u2="&#x7d;" k="37" />
+<hkern u1="&#xfa;" u2="]" k="41" />
+<hkern u1="&#xfa;" u2="\" k="31" />
+<hkern u1="&#xfa;" u2="Y" k="143" />
+<hkern u1="&#xfa;" u2="X" k="16" />
+<hkern u1="&#xfa;" u2="V" k="90" />
+<hkern u1="&#xfa;" u2="U" k="37" />
+<hkern u1="&#xfa;" u2="T" k="137" />
+<hkern u1="&#xfa;" u2="S" k="16" />
+<hkern u1="&#xfa;" u2="R" k="20" />
+<hkern u1="&#xfa;" u2="Q" k="18" />
+<hkern u1="&#xfa;" u2="P" k="20" />
+<hkern u1="&#xfa;" u2="O" k="18" />
+<hkern u1="&#xfa;" u2="N" k="20" />
+<hkern u1="&#xfa;" u2="M" k="20" />
+<hkern u1="&#xfa;" u2="L" k="20" />
+<hkern u1="&#xfa;" u2="K" k="20" />
+<hkern u1="&#xfa;" u2="I" k="20" />
+<hkern u1="&#xfa;" u2="H" k="20" />
+<hkern u1="&#xfa;" u2="G" k="18" />
+<hkern u1="&#xfa;" u2="F" k="20" />
+<hkern u1="&#xfa;" u2="E" k="20" />
+<hkern u1="&#xfa;" u2="D" k="20" />
+<hkern u1="&#xfa;" u2="C" k="18" />
+<hkern u1="&#xfa;" u2="B" k="20" />
+<hkern u1="&#xfa;" u2="A" k="12" />
+<hkern u1="&#xfa;" u2="&#x29;" k="37" />
+<hkern u1="&#xfa;" u2="&#x26;" k="14" />
+<hkern u1="&#xfb;" u2="&#x2122;" k="37" />
+<hkern u1="&#xfb;" u2="&#xde;" k="20" />
+<hkern u1="&#xfb;" u2="&#xdd;" k="143" />
+<hkern u1="&#xfb;" u2="&#xdc;" k="37" />
+<hkern u1="&#xfb;" u2="&#xdb;" k="37" />
+<hkern u1="&#xfb;" u2="&#xda;" k="37" />
+<hkern u1="&#xfb;" u2="&#xd9;" k="37" />
+<hkern u1="&#xfb;" u2="&#xd8;" k="18" />
+<hkern u1="&#xfb;" u2="&#xd6;" k="18" />
+<hkern u1="&#xfb;" u2="&#xd5;" k="18" />
+<hkern u1="&#xfb;" u2="&#xd4;" k="18" />
+<hkern u1="&#xfb;" u2="&#xd3;" k="18" />
+<hkern u1="&#xfb;" u2="&#xd2;" k="18" />
+<hkern u1="&#xfb;" u2="&#xd1;" k="20" />
+<hkern u1="&#xfb;" u2="&#xd0;" k="20" />
+<hkern u1="&#xfb;" u2="&#xcf;" k="20" />
+<hkern u1="&#xfb;" u2="&#xce;" k="20" />
+<hkern u1="&#xfb;" u2="&#xcd;" k="20" />
+<hkern u1="&#xfb;" u2="&#xcc;" k="20" />
+<hkern u1="&#xfb;" u2="&#xcb;" k="20" />
+<hkern u1="&#xfb;" u2="&#xca;" k="20" />
+<hkern u1="&#xfb;" u2="&#xc9;" k="20" />
+<hkern u1="&#xfb;" u2="&#xc8;" k="20" />
+<hkern u1="&#xfb;" u2="&#xc7;" k="18" />
+<hkern u1="&#xfb;" u2="&#xc5;" k="12" />
+<hkern u1="&#xfb;" u2="&#xc4;" k="12" />
+<hkern u1="&#xfb;" u2="&#xc3;" k="12" />
+<hkern u1="&#xfb;" u2="&#xc2;" k="12" />
+<hkern u1="&#xfb;" u2="&#xc1;" k="12" />
+<hkern u1="&#xfb;" u2="&#xc0;" k="12" />
+<hkern u1="&#xfb;" u2="&#x7d;" k="37" />
+<hkern u1="&#xfb;" u2="]" k="41" />
+<hkern u1="&#xfb;" u2="\" k="31" />
+<hkern u1="&#xfb;" u2="Y" k="143" />
+<hkern u1="&#xfb;" u2="X" k="16" />
+<hkern u1="&#xfb;" u2="V" k="90" />
+<hkern u1="&#xfb;" u2="U" k="37" />
+<hkern u1="&#xfb;" u2="T" k="137" />
+<hkern u1="&#xfb;" u2="S" k="16" />
+<hkern u1="&#xfb;" u2="R" k="20" />
+<hkern u1="&#xfb;" u2="Q" k="18" />
+<hkern u1="&#xfb;" u2="P" k="20" />
+<hkern u1="&#xfb;" u2="O" k="18" />
+<hkern u1="&#xfb;" u2="N" k="20" />
+<hkern u1="&#xfb;" u2="M" k="20" />
+<hkern u1="&#xfb;" u2="L" k="20" />
+<hkern u1="&#xfb;" u2="K" k="20" />
+<hkern u1="&#xfb;" u2="I" k="20" />
+<hkern u1="&#xfb;" u2="H" k="20" />
+<hkern u1="&#xfb;" u2="G" k="18" />
+<hkern u1="&#xfb;" u2="F" k="20" />
+<hkern u1="&#xfb;" u2="E" k="20" />
+<hkern u1="&#xfb;" u2="D" k="20" />
+<hkern u1="&#xfb;" u2="C" k="18" />
+<hkern u1="&#xfb;" u2="B" k="20" />
+<hkern u1="&#xfb;" u2="A" k="12" />
+<hkern u1="&#xfb;" u2="&#x29;" k="37" />
+<hkern u1="&#xfb;" u2="&#x26;" k="14" />
+<hkern u1="&#xfc;" u2="&#x2122;" k="37" />
+<hkern u1="&#xfc;" u2="&#xde;" k="20" />
+<hkern u1="&#xfc;" u2="&#xdd;" k="143" />
+<hkern u1="&#xfc;" u2="&#xdc;" k="37" />
+<hkern u1="&#xfc;" u2="&#xdb;" k="37" />
+<hkern u1="&#xfc;" u2="&#xda;" k="37" />
+<hkern u1="&#xfc;" u2="&#xd9;" k="37" />
+<hkern u1="&#xfc;" u2="&#xd8;" k="18" />
+<hkern u1="&#xfc;" u2="&#xd6;" k="18" />
+<hkern u1="&#xfc;" u2="&#xd5;" k="18" />
+<hkern u1="&#xfc;" u2="&#xd4;" k="18" />
+<hkern u1="&#xfc;" u2="&#xd3;" k="18" />
+<hkern u1="&#xfc;" u2="&#xd2;" k="18" />
+<hkern u1="&#xfc;" u2="&#xd1;" k="20" />
+<hkern u1="&#xfc;" u2="&#xd0;" k="20" />
+<hkern u1="&#xfc;" u2="&#xcf;" k="20" />
+<hkern u1="&#xfc;" u2="&#xce;" k="20" />
+<hkern u1="&#xfc;" u2="&#xcd;" k="20" />
+<hkern u1="&#xfc;" u2="&#xcc;" k="20" />
+<hkern u1="&#xfc;" u2="&#xcb;" k="20" />
+<hkern u1="&#xfc;" u2="&#xca;" k="20" />
+<hkern u1="&#xfc;" u2="&#xc9;" k="20" />
+<hkern u1="&#xfc;" u2="&#xc8;" k="20" />
+<hkern u1="&#xfc;" u2="&#xc7;" k="18" />
+<hkern u1="&#xfc;" u2="&#xc5;" k="12" />
+<hkern u1="&#xfc;" u2="&#xc4;" k="12" />
+<hkern u1="&#xfc;" u2="&#xc3;" k="12" />
+<hkern u1="&#xfc;" u2="&#xc2;" k="12" />
+<hkern u1="&#xfc;" u2="&#xc1;" k="12" />
+<hkern u1="&#xfc;" u2="&#xc0;" k="12" />
+<hkern u1="&#xfc;" u2="&#x7d;" k="37" />
+<hkern u1="&#xfc;" u2="]" k="41" />
+<hkern u1="&#xfc;" u2="\" k="31" />
+<hkern u1="&#xfc;" u2="Y" k="143" />
+<hkern u1="&#xfc;" u2="X" k="16" />
+<hkern u1="&#xfc;" u2="V" k="90" />
+<hkern u1="&#xfc;" u2="U" k="37" />
+<hkern u1="&#xfc;" u2="T" k="137" />
+<hkern u1="&#xfc;" u2="S" k="16" />
+<hkern u1="&#xfc;" u2="R" k="20" />
+<hkern u1="&#xfc;" u2="Q" k="18" />
+<hkern u1="&#xfc;" u2="P" k="20" />
+<hkern u1="&#xfc;" u2="O" k="18" />
+<hkern u1="&#xfc;" u2="N" k="20" />
+<hkern u1="&#xfc;" u2="M" k="20" />
+<hkern u1="&#xfc;" u2="L" k="20" />
+<hkern u1="&#xfc;" u2="K" k="20" />
+<hkern u1="&#xfc;" u2="I" k="20" />
+<hkern u1="&#xfc;" u2="H" k="20" />
+<hkern u1="&#xfc;" u2="G" k="18" />
+<hkern u1="&#xfc;" u2="F" k="20" />
+<hkern u1="&#xfc;" u2="E" k="20" />
+<hkern u1="&#xfc;" u2="D" k="20" />
+<hkern u1="&#xfc;" u2="C" k="18" />
+<hkern u1="&#xfc;" u2="B" k="20" />
+<hkern u1="&#xfc;" u2="A" k="12" />
+<hkern u1="&#xfc;" u2="&#x29;" k="37" />
+<hkern u1="&#xfc;" u2="&#x26;" k="14" />
+<hkern u1="&#xfd;" u2="&#x2026;" k="57" />
+<hkern u1="&#xfd;" u2="&#x201e;" k="57" />
+<hkern u1="&#xfd;" u2="&#x201a;" k="57" />
+<hkern u1="&#xfd;" u2="&#xff;" k="-59" />
+<hkern u1="&#xfd;" u2="&#xfd;" k="-59" />
+<hkern u1="&#xfd;" u2="&#xf8;" k="10" />
+<hkern u1="&#xfd;" u2="&#xf6;" k="10" />
+<hkern u1="&#xfd;" u2="&#xf5;" k="10" />
+<hkern u1="&#xfd;" u2="&#xf4;" k="10" />
+<hkern u1="&#xfd;" u2="&#xf3;" k="10" />
+<hkern u1="&#xfd;" u2="&#xf2;" k="10" />
+<hkern u1="&#xfd;" u2="&#xf0;" k="10" />
+<hkern u1="&#xfd;" u2="&#xeb;" k="10" />
+<hkern u1="&#xfd;" u2="&#xea;" k="10" />
+<hkern u1="&#xfd;" u2="&#xe9;" k="10" />
+<hkern u1="&#xfd;" u2="&#xe8;" k="10" />
+<hkern u1="&#xfd;" u2="&#xe7;" k="10" />
+<hkern u1="&#xfd;" u2="&#xe6;" k="8" />
+<hkern u1="&#xfd;" u2="&#xe5;" k="8" />
+<hkern u1="&#xfd;" u2="&#xe4;" k="8" />
+<hkern u1="&#xfd;" u2="&#xe3;" k="8" />
+<hkern u1="&#xfd;" u2="&#xe2;" k="8" />
+<hkern u1="&#xfd;" u2="&#xe1;" k="8" />
+<hkern u1="&#xfd;" u2="&#xe0;" k="8" />
+<hkern u1="&#xfd;" u2="&#xde;" k="14" />
+<hkern u1="&#xfd;" u2="&#xdd;" k="68" />
+<hkern u1="&#xfd;" u2="&#xdc;" k="12" />
+<hkern u1="&#xfd;" u2="&#xdb;" k="12" />
+<hkern u1="&#xfd;" u2="&#xda;" k="12" />
+<hkern u1="&#xfd;" u2="&#xd9;" k="12" />
+<hkern u1="&#xfd;" u2="&#xd1;" k="14" />
+<hkern u1="&#xfd;" u2="&#xd0;" k="14" />
+<hkern u1="&#xfd;" u2="&#xcf;" k="14" />
+<hkern u1="&#xfd;" u2="&#xce;" k="14" />
+<hkern u1="&#xfd;" u2="&#xcd;" k="14" />
+<hkern u1="&#xfd;" u2="&#xcc;" k="14" />
+<hkern u1="&#xfd;" u2="&#xcb;" k="14" />
+<hkern u1="&#xfd;" u2="&#xca;" k="14" />
+<hkern u1="&#xfd;" u2="&#xc9;" k="14" />
+<hkern u1="&#xfd;" u2="&#xc8;" k="14" />
+<hkern u1="&#xfd;" u2="&#xc5;" k="70" />
+<hkern u1="&#xfd;" u2="&#xc4;" k="70" />
+<hkern u1="&#xfd;" u2="&#xc3;" k="70" />
+<hkern u1="&#xfd;" u2="&#xc2;" k="70" />
+<hkern u1="&#xfd;" u2="&#xc1;" k="70" />
+<hkern u1="&#xfd;" u2="&#xc0;" k="70" />
+<hkern u1="&#xfd;" u2="&#x7d;" k="27" />
+<hkern u1="&#xfd;" u2="y" k="-59" />
+<hkern u1="&#xfd;" u2="x" k="-57" />
+<hkern u1="&#xfd;" u2="v" k="-63" />
+<hkern u1="&#xfd;" u2="t" k="-45" />
+<hkern u1="&#xfd;" u2="q" k="10" />
+<hkern u1="&#xfd;" u2="o" k="10" />
+<hkern u1="&#xfd;" u2="g" k="10" />
+<hkern u1="&#xfd;" u2="e" k="10" />
+<hkern u1="&#xfd;" u2="d" k="10" />
+<hkern u1="&#xfd;" u2="c" k="10" />
+<hkern u1="&#xfd;" u2="a" k="8" />
+<hkern u1="&#xfd;" u2="]" k="37" />
+<hkern u1="&#xfd;" u2="Y" k="68" />
+<hkern u1="&#xfd;" u2="X" k="74" />
+<hkern u1="&#xfd;" u2="V" k="20" />
+<hkern u1="&#xfd;" u2="U" k="12" />
+<hkern u1="&#xfd;" u2="T" k="98" />
+<hkern u1="&#xfd;" u2="R" k="14" />
+<hkern u1="&#xfd;" u2="P" k="14" />
+<hkern u1="&#xfd;" u2="N" k="14" />
+<hkern u1="&#xfd;" u2="M" k="14" />
+<hkern u1="&#xfd;" u2="L" k="14" />
+<hkern u1="&#xfd;" u2="K" k="14" />
+<hkern u1="&#xfd;" u2="I" k="14" />
+<hkern u1="&#xfd;" u2="H" k="14" />
+<hkern u1="&#xfd;" u2="F" k="14" />
+<hkern u1="&#xfd;" u2="E" k="14" />
+<hkern u1="&#xfd;" u2="D" k="14" />
+<hkern u1="&#xfd;" u2="B" k="14" />
+<hkern u1="&#xfd;" u2="A" k="70" />
+<hkern u1="&#xfd;" u2="&#x2f;" k="31" />
+<hkern u1="&#xfd;" u2="&#x2e;" k="57" />
+<hkern u1="&#xfd;" u2="&#x2c;" k="57" />
+<hkern u1="&#xfd;" u2="&#x29;" k="35" />
+<hkern u1="&#xfd;" u2="&#x26;" k="25" />
+<hkern u1="&#xfe;" u2="&#xfb04;" k="10" />
+<hkern u1="&#xfe;" u2="&#xfb03;" k="10" />
+<hkern u1="&#xfe;" u2="&#xfb02;" k="10" />
+<hkern u1="&#xfe;" u2="&#xfb01;" k="10" />
+<hkern u1="&#xfe;" u2="&#x2122;" k="47" />
+<hkern u1="&#xfe;" u2="&#x201d;" k="33" />
+<hkern u1="&#xfe;" u2="&#x201c;" k="31" />
+<hkern u1="&#xfe;" u2="&#x2019;" k="33" />
+<hkern u1="&#xfe;" u2="&#x2018;" k="31" />
+<hkern u1="&#xfe;" u2="&#xff;" k="10" />
+<hkern u1="&#xfe;" u2="&#xfd;" k="10" />
+<hkern u1="&#xfe;" u2="&#xdf;" k="10" />
+<hkern u1="&#xfe;" u2="&#xde;" k="29" />
+<hkern u1="&#xfe;" u2="&#xdd;" k="178" />
+<hkern u1="&#xfe;" u2="&#xdc;" k="31" />
+<hkern u1="&#xfe;" u2="&#xdb;" k="31" />
+<hkern u1="&#xfe;" u2="&#xda;" k="31" />
+<hkern u1="&#xfe;" u2="&#xd9;" k="31" />
+<hkern u1="&#xfe;" u2="&#xd8;" k="12" />
+<hkern u1="&#xfe;" u2="&#xd6;" k="12" />
+<hkern u1="&#xfe;" u2="&#xd5;" k="12" />
+<hkern u1="&#xfe;" u2="&#xd4;" k="12" />
+<hkern u1="&#xfe;" u2="&#xd3;" k="12" />
+<hkern u1="&#xfe;" u2="&#xd2;" k="12" />
+<hkern u1="&#xfe;" u2="&#xd1;" k="29" />
+<hkern u1="&#xfe;" u2="&#xd0;" k="29" />
+<hkern u1="&#xfe;" u2="&#xcf;" k="29" />
+<hkern u1="&#xfe;" u2="&#xce;" k="29" />
+<hkern u1="&#xfe;" u2="&#xcd;" k="29" />
+<hkern u1="&#xfe;" u2="&#xcc;" k="29" />
+<hkern u1="&#xfe;" u2="&#xcb;" k="29" />
+<hkern u1="&#xfe;" u2="&#xca;" k="29" />
+<hkern u1="&#xfe;" u2="&#xc9;" k="29" />
+<hkern u1="&#xfe;" u2="&#xc8;" k="29" />
+<hkern u1="&#xfe;" u2="&#xc7;" k="12" />
+<hkern u1="&#xfe;" u2="&#xc5;" k="25" />
+<hkern u1="&#xfe;" u2="&#xc4;" k="25" />
+<hkern u1="&#xfe;" u2="&#xc3;" k="25" />
+<hkern u1="&#xfe;" u2="&#xc2;" k="25" />
+<hkern u1="&#xfe;" u2="&#xc1;" k="25" />
+<hkern u1="&#xfe;" u2="&#xc0;" k="25" />
+<hkern u1="&#xfe;" u2="&#x7d;" k="47" />
+<hkern u1="&#xfe;" u2="y" k="10" />
+<hkern u1="&#xfe;" u2="x" k="31" />
+<hkern u1="&#xfe;" u2="v" k="14" />
+<hkern u1="&#xfe;" u2="t" k="8" />
+<hkern u1="&#xfe;" u2="f" k="10" />
+<hkern u1="&#xfe;" u2="]" k="51" />
+<hkern u1="&#xfe;" u2="\" k="45" />
+<hkern u1="&#xfe;" u2="Y" k="178" />
+<hkern u1="&#xfe;" u2="X" k="84" />
+<hkern u1="&#xfe;" u2="V" k="109" />
+<hkern u1="&#xfe;" u2="U" k="31" />
+<hkern u1="&#xfe;" u2="T" k="176" />
+<hkern u1="&#xfe;" u2="S" k="29" />
+<hkern u1="&#xfe;" u2="R" k="29" />
+<hkern u1="&#xfe;" u2="Q" k="12" />
+<hkern u1="&#xfe;" u2="P" k="29" />
+<hkern u1="&#xfe;" u2="O" k="12" />
+<hkern u1="&#xfe;" u2="N" k="29" />
+<hkern u1="&#xfe;" u2="M" k="29" />
+<hkern u1="&#xfe;" u2="L" k="29" />
+<hkern u1="&#xfe;" u2="K" k="29" />
+<hkern u1="&#xfe;" u2="I" k="29" />
+<hkern u1="&#xfe;" u2="H" k="29" />
+<hkern u1="&#xfe;" u2="G" k="12" />
+<hkern u1="&#xfe;" u2="F" k="29" />
+<hkern u1="&#xfe;" u2="E" k="29" />
+<hkern u1="&#xfe;" u2="D" k="29" />
+<hkern u1="&#xfe;" u2="C" k="12" />
+<hkern u1="&#xfe;" u2="B" k="29" />
+<hkern u1="&#xfe;" u2="A" k="25" />
+<hkern u1="&#xfe;" u2="&#x3f;" k="41" />
+<hkern u1="&#xfe;" u2="&#x2a;" k="29" />
+<hkern u1="&#xfe;" u2="&#x29;" k="55" />
+<hkern u1="&#xfe;" u2="&#x27;" k="33" />
+<hkern u1="&#xfe;" u2="&#x22;" k="33" />
+<hkern u1="&#xff;" u2="&#x2026;" k="57" />
+<hkern u1="&#xff;" u2="&#x201e;" k="57" />
+<hkern u1="&#xff;" u2="&#x201a;" k="57" />
+<hkern u1="&#xff;" u2="&#xff;" k="-59" />
+<hkern u1="&#xff;" u2="&#xfd;" k="-59" />
+<hkern u1="&#xff;" u2="&#xf8;" k="10" />
+<hkern u1="&#xff;" u2="&#xf6;" k="10" />
+<hkern u1="&#xff;" u2="&#xf5;" k="10" />
+<hkern u1="&#xff;" u2="&#xf4;" k="10" />
+<hkern u1="&#xff;" u2="&#xf3;" k="10" />
+<hkern u1="&#xff;" u2="&#xf2;" k="10" />
+<hkern u1="&#xff;" u2="&#xf0;" k="10" />
+<hkern u1="&#xff;" u2="&#xeb;" k="10" />
+<hkern u1="&#xff;" u2="&#xea;" k="10" />
+<hkern u1="&#xff;" u2="&#xe9;" k="10" />
+<hkern u1="&#xff;" u2="&#xe8;" k="10" />
+<hkern u1="&#xff;" u2="&#xe7;" k="10" />
+<hkern u1="&#xff;" u2="&#xe6;" k="8" />
+<hkern u1="&#xff;" u2="&#xe5;" k="8" />
+<hkern u1="&#xff;" u2="&#xe4;" k="8" />
+<hkern u1="&#xff;" u2="&#xe3;" k="8" />
+<hkern u1="&#xff;" u2="&#xe2;" k="8" />
+<hkern u1="&#xff;" u2="&#xe1;" k="8" />
+<hkern u1="&#xff;" u2="&#xe0;" k="8" />
+<hkern u1="&#xff;" u2="&#xde;" k="14" />
+<hkern u1="&#xff;" u2="&#xdd;" k="68" />
+<hkern u1="&#xff;" u2="&#xdc;" k="12" />
+<hkern u1="&#xff;" u2="&#xdb;" k="12" />
+<hkern u1="&#xff;" u2="&#xda;" k="12" />
+<hkern u1="&#xff;" u2="&#xd9;" k="12" />
+<hkern u1="&#xff;" u2="&#xd1;" k="14" />
+<hkern u1="&#xff;" u2="&#xd0;" k="14" />
+<hkern u1="&#xff;" u2="&#xcf;" k="14" />
+<hkern u1="&#xff;" u2="&#xce;" k="14" />
+<hkern u1="&#xff;" u2="&#xcd;" k="14" />
+<hkern u1="&#xff;" u2="&#xcc;" k="14" />
+<hkern u1="&#xff;" u2="&#xcb;" k="14" />
+<hkern u1="&#xff;" u2="&#xca;" k="14" />
+<hkern u1="&#xff;" u2="&#xc9;" k="14" />
+<hkern u1="&#xff;" u2="&#xc8;" k="14" />
+<hkern u1="&#xff;" u2="&#xc5;" k="70" />
+<hkern u1="&#xff;" u2="&#xc4;" k="70" />
+<hkern u1="&#xff;" u2="&#xc3;" k="70" />
+<hkern u1="&#xff;" u2="&#xc2;" k="70" />
+<hkern u1="&#xff;" u2="&#xc1;" k="70" />
+<hkern u1="&#xff;" u2="&#xc0;" k="70" />
+<hkern u1="&#xff;" u2="&#x7d;" k="27" />
+<hkern u1="&#xff;" u2="y" k="-59" />
+<hkern u1="&#xff;" u2="x" k="-57" />
+<hkern u1="&#xff;" u2="v" k="-63" />
+<hkern u1="&#xff;" u2="t" k="-45" />
+<hkern u1="&#xff;" u2="q" k="10" />
+<hkern u1="&#xff;" u2="o" k="10" />
+<hkern u1="&#xff;" u2="g" k="10" />
+<hkern u1="&#xff;" u2="e" k="10" />
+<hkern u1="&#xff;" u2="d" k="10" />
+<hkern u1="&#xff;" u2="c" k="10" />
+<hkern u1="&#xff;" u2="a" k="8" />
+<hkern u1="&#xff;" u2="]" k="37" />
+<hkern u1="&#xff;" u2="Y" k="68" />
+<hkern u1="&#xff;" u2="X" k="74" />
+<hkern u1="&#xff;" u2="V" k="20" />
+<hkern u1="&#xff;" u2="U" k="12" />
+<hkern u1="&#xff;" u2="T" k="98" />
+<hkern u1="&#xff;" u2="R" k="14" />
+<hkern u1="&#xff;" u2="P" k="14" />
+<hkern u1="&#xff;" u2="N" k="14" />
+<hkern u1="&#xff;" u2="M" k="14" />
+<hkern u1="&#xff;" u2="L" k="14" />
+<hkern u1="&#xff;" u2="K" k="14" />
+<hkern u1="&#xff;" u2="I" k="14" />
+<hkern u1="&#xff;" u2="H" k="14" />
+<hkern u1="&#xff;" u2="F" k="14" />
+<hkern u1="&#xff;" u2="E" k="14" />
+<hkern u1="&#xff;" u2="D" k="14" />
+<hkern u1="&#xff;" u2="B" k="14" />
+<hkern u1="&#xff;" u2="A" k="70" />
+<hkern u1="&#xff;" u2="&#x2f;" k="31" />
+<hkern u1="&#xff;" u2="&#x2e;" k="57" />
+<hkern u1="&#xff;" u2="&#x2c;" k="57" />
+<hkern u1="&#xff;" u2="&#x29;" k="35" />
+<hkern u1="&#xff;" u2="&#x26;" k="25" />
+<hkern u1="&#x2013;" u2="&#xfb04;" k="27" />
+<hkern u1="&#x2013;" u2="&#xfb03;" k="27" />
+<hkern u1="&#x2013;" u2="&#xfb02;" k="27" />
+<hkern u1="&#x2013;" u2="&#xfb01;" k="27" />
+<hkern u1="&#x2013;" u2="&#xdf;" k="27" />
+<hkern u1="&#x2013;" u2="&#xdd;" k="135" />
+<hkern u1="&#x2013;" u2="&#xc5;" k="29" />
+<hkern u1="&#x2013;" u2="&#xc4;" k="29" />
+<hkern u1="&#x2013;" u2="&#xc3;" k="29" />
+<hkern u1="&#x2013;" u2="&#xc2;" k="29" />
+<hkern u1="&#x2013;" u2="&#xc1;" k="29" />
+<hkern u1="&#x2013;" u2="&#xc0;" k="29" />
+<hkern u1="&#x2013;" u2="x" k="45" />
+<hkern u1="&#x2013;" u2="v" k="16" />
+<hkern u1="&#x2013;" u2="t" k="25" />
+<hkern u1="&#x2013;" u2="f" k="27" />
+<hkern u1="&#x2013;" u2="Y" k="135" />
+<hkern u1="&#x2013;" u2="X" k="63" />
+<hkern u1="&#x2013;" u2="V" k="68" />
+<hkern u1="&#x2013;" u2="T" k="131" />
+<hkern u1="&#x2013;" u2="S" k="39" />
+<hkern u1="&#x2013;" u2="A" k="29" />
+<hkern u1="&#x2014;" u2="&#xfb04;" k="27" />
+<hkern u1="&#x2014;" u2="&#xfb03;" k="27" />
+<hkern u1="&#x2014;" u2="&#xfb02;" k="27" />
+<hkern u1="&#x2014;" u2="&#xfb01;" k="27" />
+<hkern u1="&#x2014;" u2="&#xdf;" k="27" />
+<hkern u1="&#x2014;" u2="&#xdd;" k="135" />
+<hkern u1="&#x2014;" u2="&#xc5;" k="29" />
+<hkern u1="&#x2014;" u2="&#xc4;" k="29" />
+<hkern u1="&#x2014;" u2="&#xc3;" k="29" />
+<hkern u1="&#x2014;" u2="&#xc2;" k="29" />
+<hkern u1="&#x2014;" u2="&#xc1;" k="29" />
+<hkern u1="&#x2014;" u2="&#xc0;" k="29" />
+<hkern u1="&#x2014;" u2="x" k="45" />
+<hkern u1="&#x2014;" u2="v" k="16" />
+<hkern u1="&#x2014;" u2="t" k="25" />
+<hkern u1="&#x2014;" u2="f" k="27" />
+<hkern u1="&#x2014;" u2="Y" k="135" />
+<hkern u1="&#x2014;" u2="X" k="63" />
+<hkern u1="&#x2014;" u2="V" k="68" />
+<hkern u1="&#x2014;" u2="T" k="131" />
+<hkern u1="&#x2014;" u2="S" k="39" />
+<hkern u1="&#x2014;" u2="A" k="29" />
+<hkern u1="&#x2018;" u2="&#x2026;" k="254" />
+<hkern u1="&#x2018;" u2="&#x201e;" k="254" />
+<hkern u1="&#x2018;" u2="&#x201a;" k="254" />
+<hkern u1="&#x2018;" u2="&#xf8;" k="31" />
+<hkern u1="&#x2018;" u2="&#xf6;" k="31" />
+<hkern u1="&#x2018;" u2="&#xf5;" k="31" />
+<hkern u1="&#x2018;" u2="&#xf4;" k="31" />
+<hkern u1="&#x2018;" u2="&#xf3;" k="31" />
+<hkern u1="&#x2018;" u2="&#xf2;" k="31" />
+<hkern u1="&#x2018;" u2="&#xf0;" k="31" />
+<hkern u1="&#x2018;" u2="&#xeb;" k="31" />
+<hkern u1="&#x2018;" u2="&#xea;" k="31" />
+<hkern u1="&#x2018;" u2="&#xe9;" k="31" />
+<hkern u1="&#x2018;" u2="&#xe8;" k="31" />
+<hkern u1="&#x2018;" u2="&#xe7;" k="31" />
+<hkern u1="&#x2018;" u2="&#xc6;" k="117" />
+<hkern u1="&#x2018;" u2="&#xc5;" k="92" />
+<hkern u1="&#x2018;" u2="&#xc4;" k="92" />
+<hkern u1="&#x2018;" u2="&#xc3;" k="92" />
+<hkern u1="&#x2018;" u2="&#xc2;" k="92" />
+<hkern u1="&#x2018;" u2="&#xc1;" k="92" />
+<hkern u1="&#x2018;" u2="&#xc0;" k="92" />
+<hkern u1="&#x2018;" u2="q" k="31" />
+<hkern u1="&#x2018;" u2="o" k="31" />
+<hkern u1="&#x2018;" u2="g" k="31" />
+<hkern u1="&#x2018;" u2="e" k="31" />
+<hkern u1="&#x2018;" u2="d" k="31" />
+<hkern u1="&#x2018;" u2="c" k="31" />
+<hkern u1="&#x2018;" u2="A" k="92" />
+<hkern u1="&#x2018;" u2="&#x2e;" k="254" />
+<hkern u1="&#x2018;" u2="&#x2c;" k="254" />
+<hkern u1="&#x2019;" u2="&#x2039;" k="70" />
+<hkern u1="&#x2019;" u2="&#x2026;" k="244" />
+<hkern u1="&#x2019;" u2="&#x201e;" k="244" />
+<hkern u1="&#x2019;" u2="&#x201a;" k="244" />
+<hkern u1="&#x2019;" u2="&#xf8;" k="57" />
+<hkern u1="&#x2019;" u2="&#xf6;" k="57" />
+<hkern u1="&#x2019;" u2="&#xf5;" k="57" />
+<hkern u1="&#x2019;" u2="&#xf4;" k="57" />
+<hkern u1="&#x2019;" u2="&#xf3;" k="57" />
+<hkern u1="&#x2019;" u2="&#xf2;" k="57" />
+<hkern u1="&#x2019;" u2="&#xf0;" k="57" />
+<hkern u1="&#x2019;" u2="&#xeb;" k="57" />
+<hkern u1="&#x2019;" u2="&#xea;" k="57" />
+<hkern u1="&#x2019;" u2="&#xe9;" k="57" />
+<hkern u1="&#x2019;" u2="&#xe8;" k="57" />
+<hkern u1="&#x2019;" u2="&#xe7;" k="57" />
+<hkern u1="&#x2019;" u2="&#xe6;" k="29" />
+<hkern u1="&#x2019;" u2="&#xe5;" k="29" />
+<hkern u1="&#x2019;" u2="&#xe4;" k="29" />
+<hkern u1="&#x2019;" u2="&#xe3;" k="29" />
+<hkern u1="&#x2019;" u2="&#xe2;" k="29" />
+<hkern u1="&#x2019;" u2="&#xe1;" k="29" />
+<hkern u1="&#x2019;" u2="&#xe0;" k="29" />
+<hkern u1="&#x2019;" u2="&#xc6;" k="131" />
+<hkern u1="&#x2019;" u2="&#xc5;" k="104" />
+<hkern u1="&#x2019;" u2="&#xc4;" k="104" />
+<hkern u1="&#x2019;" u2="&#xc3;" k="104" />
+<hkern u1="&#x2019;" u2="&#xc2;" k="104" />
+<hkern u1="&#x2019;" u2="&#xc1;" k="104" />
+<hkern u1="&#x2019;" u2="&#xc0;" k="104" />
+<hkern u1="&#x2019;" u2="&#xab;" k="70" />
+<hkern u1="&#x2019;" u2="s" k="33" />
+<hkern u1="&#x2019;" u2="q" k="57" />
+<hkern u1="&#x2019;" u2="o" k="57" />
+<hkern u1="&#x2019;" u2="g" k="57" />
+<hkern u1="&#x2019;" u2="e" k="57" />
+<hkern u1="&#x2019;" u2="d" k="57" />
+<hkern u1="&#x2019;" u2="c" k="57" />
+<hkern u1="&#x2019;" u2="a" k="29" />
+<hkern u1="&#x2019;" u2="A" k="104" />
+<hkern u1="&#x2019;" u2="&#x40;" k="41" />
+<hkern u1="&#x2019;" u2="&#x2f;" k="88" />
+<hkern u1="&#x2019;" u2="&#x2e;" k="244" />
+<hkern u1="&#x2019;" u2="&#x2c;" k="244" />
+<hkern u1="&#x201a;" u2="&#xfb04;" k="20" />
+<hkern u1="&#x201a;" u2="&#xfb03;" k="20" />
+<hkern u1="&#x201a;" u2="&#xfb02;" k="20" />
+<hkern u1="&#x201a;" u2="&#xfb01;" k="20" />
+<hkern u1="&#x201a;" u2="&#x201d;" k="256" />
+<hkern u1="&#x201a;" u2="&#x201c;" k="254" />
+<hkern u1="&#x201a;" u2="&#x2019;" k="244" />
+<hkern u1="&#x201a;" u2="&#x2018;" k="254" />
+<hkern u1="&#x201a;" u2="&#xff;" k="57" />
+<hkern u1="&#x201a;" u2="&#xfd;" k="57" />
+<hkern u1="&#x201a;" u2="&#xdf;" k="20" />
+<hkern u1="&#x201a;" u2="&#xdd;" k="154" />
+<hkern u1="&#x201a;" u2="&#xdc;" k="37" />
+<hkern u1="&#x201a;" u2="&#xdb;" k="37" />
+<hkern u1="&#x201a;" u2="&#xda;" k="37" />
+<hkern u1="&#x201a;" u2="&#xd9;" k="37" />
+<hkern u1="&#x201a;" u2="&#xd8;" k="39" />
+<hkern u1="&#x201a;" u2="&#xd6;" k="39" />
+<hkern u1="&#x201a;" u2="&#xd5;" k="39" />
+<hkern u1="&#x201a;" u2="&#xd4;" k="39" />
+<hkern u1="&#x201a;" u2="&#xd3;" k="39" />
+<hkern u1="&#x201a;" u2="&#xd2;" k="39" />
+<hkern u1="&#x201a;" u2="&#xc7;" k="39" />
+<hkern u1="&#x201a;" u2="y" k="57" />
+<hkern u1="&#x201a;" u2="v" k="63" />
+<hkern u1="&#x201a;" u2="t" k="25" />
+<hkern u1="&#x201a;" u2="f" k="20" />
+<hkern u1="&#x201a;" u2="Y" k="154" />
+<hkern u1="&#x201a;" u2="V" k="131" />
+<hkern u1="&#x201a;" u2="U" k="37" />
+<hkern u1="&#x201a;" u2="T" k="131" />
+<hkern u1="&#x201a;" u2="Q" k="39" />
+<hkern u1="&#x201a;" u2="O" k="39" />
+<hkern u1="&#x201a;" u2="G" k="39" />
+<hkern u1="&#x201a;" u2="C" k="39" />
+<hkern u1="&#x201a;" u2="&#x27;" k="244" />
+<hkern u1="&#x201a;" u2="&#x22;" k="256" />
+<hkern u1="&#x201c;" u2="&#x2026;" k="254" />
+<hkern u1="&#x201c;" u2="&#x201e;" k="254" />
+<hkern u1="&#x201c;" u2="&#x201a;" k="254" />
+<hkern u1="&#x201c;" u2="&#xf8;" k="31" />
+<hkern u1="&#x201c;" u2="&#xf6;" k="31" />
+<hkern u1="&#x201c;" u2="&#xf5;" k="31" />
+<hkern u1="&#x201c;" u2="&#xf4;" k="31" />
+<hkern u1="&#x201c;" u2="&#xf3;" k="31" />
+<hkern u1="&#x201c;" u2="&#xf2;" k="31" />
+<hkern u1="&#x201c;" u2="&#xf0;" k="31" />
+<hkern u1="&#x201c;" u2="&#xeb;" k="31" />
+<hkern u1="&#x201c;" u2="&#xea;" k="31" />
+<hkern u1="&#x201c;" u2="&#xe9;" k="31" />
+<hkern u1="&#x201c;" u2="&#xe8;" k="31" />
+<hkern u1="&#x201c;" u2="&#xe7;" k="31" />
+<hkern u1="&#x201c;" u2="&#xc6;" k="117" />
+<hkern u1="&#x201c;" u2="&#xc5;" k="92" />
+<hkern u1="&#x201c;" u2="&#xc4;" k="92" />
+<hkern u1="&#x201c;" u2="&#xc3;" k="92" />
+<hkern u1="&#x201c;" u2="&#xc2;" k="92" />
+<hkern u1="&#x201c;" u2="&#xc1;" k="92" />
+<hkern u1="&#x201c;" u2="&#xc0;" k="92" />
+<hkern u1="&#x201c;" u2="q" k="31" />
+<hkern u1="&#x201c;" u2="o" k="31" />
+<hkern u1="&#x201c;" u2="g" k="31" />
+<hkern u1="&#x201c;" u2="e" k="31" />
+<hkern u1="&#x201c;" u2="d" k="31" />
+<hkern u1="&#x201c;" u2="c" k="31" />
+<hkern u1="&#x201c;" u2="A" k="92" />
+<hkern u1="&#x201c;" u2="&#x2e;" k="254" />
+<hkern u1="&#x201c;" u2="&#x2c;" k="254" />
+<hkern u1="&#x201d;" u2="&#x2039;" k="70" />
+<hkern u1="&#x201d;" u2="&#x2026;" k="266" />
+<hkern u1="&#x201d;" u2="&#x201e;" k="266" />
+<hkern u1="&#x201d;" u2="&#x201a;" k="266" />
+<hkern u1="&#x201d;" u2="&#xf8;" k="57" />
+<hkern u1="&#x201d;" u2="&#xf6;" k="57" />
+<hkern u1="&#x201d;" u2="&#xf5;" k="57" />
+<hkern u1="&#x201d;" u2="&#xf4;" k="57" />
+<hkern u1="&#x201d;" u2="&#xf3;" k="57" />
+<hkern u1="&#x201d;" u2="&#xf2;" k="57" />
+<hkern u1="&#x201d;" u2="&#xf0;" k="57" />
+<hkern u1="&#x201d;" u2="&#xeb;" k="57" />
+<hkern u1="&#x201d;" u2="&#xea;" k="57" />
+<hkern u1="&#x201d;" u2="&#xe9;" k="57" />
+<hkern u1="&#x201d;" u2="&#xe8;" k="57" />
+<hkern u1="&#x201d;" u2="&#xe7;" k="57" />
+<hkern u1="&#x201d;" u2="&#xe6;" k="29" />
+<hkern u1="&#x201d;" u2="&#xe5;" k="29" />
+<hkern u1="&#x201d;" u2="&#xe4;" k="29" />
+<hkern u1="&#x201d;" u2="&#xe3;" k="29" />
+<hkern u1="&#x201d;" u2="&#xe2;" k="29" />
+<hkern u1="&#x201d;" u2="&#xe1;" k="29" />
+<hkern u1="&#x201d;" u2="&#xe0;" k="29" />
+<hkern u1="&#x201d;" u2="&#xc6;" k="131" />
+<hkern u1="&#x201d;" u2="&#xc5;" k="104" />
+<hkern u1="&#x201d;" u2="&#xc4;" k="104" />
+<hkern u1="&#x201d;" u2="&#xc3;" k="104" />
+<hkern u1="&#x201d;" u2="&#xc2;" k="104" />
+<hkern u1="&#x201d;" u2="&#xc1;" k="104" />
+<hkern u1="&#x201d;" u2="&#xc0;" k="104" />
+<hkern u1="&#x201d;" u2="&#xab;" k="70" />
+<hkern u1="&#x201d;" u2="s" k="33" />
+<hkern u1="&#x201d;" u2="q" k="57" />
+<hkern u1="&#x201d;" u2="o" k="57" />
+<hkern u1="&#x201d;" u2="g" k="57" />
+<hkern u1="&#x201d;" u2="e" k="57" />
+<hkern u1="&#x201d;" u2="d" k="57" />
+<hkern u1="&#x201d;" u2="c" k="57" />
+<hkern u1="&#x201d;" u2="a" k="29" />
+<hkern u1="&#x201d;" u2="A" k="104" />
+<hkern u1="&#x201d;" u2="&#x40;" k="41" />
+<hkern u1="&#x201d;" u2="&#x2f;" k="88" />
+<hkern u1="&#x201d;" u2="&#x2e;" k="266" />
+<hkern u1="&#x201d;" u2="&#x2c;" k="266" />
+<hkern u1="&#x201e;" u2="&#xfb04;" k="20" />
+<hkern u1="&#x201e;" u2="&#xfb03;" k="20" />
+<hkern u1="&#x201e;" u2="&#xfb02;" k="20" />
+<hkern u1="&#x201e;" u2="&#xfb01;" k="20" />
+<hkern u1="&#x201e;" u2="&#x201d;" k="256" />
+<hkern u1="&#x201e;" u2="&#x201c;" k="254" />
+<hkern u1="&#x201e;" u2="&#x2019;" k="244" />
+<hkern u1="&#x201e;" u2="&#x2018;" k="254" />
+<hkern u1="&#x201e;" u2="&#xff;" k="57" />
+<hkern u1="&#x201e;" u2="&#xfd;" k="57" />
+<hkern u1="&#x201e;" u2="&#xdf;" k="20" />
+<hkern u1="&#x201e;" u2="&#xdd;" k="154" />
+<hkern u1="&#x201e;" u2="&#xdc;" k="37" />
+<hkern u1="&#x201e;" u2="&#xdb;" k="37" />
+<hkern u1="&#x201e;" u2="&#xda;" k="37" />
+<hkern u1="&#x201e;" u2="&#xd9;" k="37" />
+<hkern u1="&#x201e;" u2="&#xd8;" k="39" />
+<hkern u1="&#x201e;" u2="&#xd6;" k="39" />
+<hkern u1="&#x201e;" u2="&#xd5;" k="39" />
+<hkern u1="&#x201e;" u2="&#xd4;" k="39" />
+<hkern u1="&#x201e;" u2="&#xd3;" k="39" />
+<hkern u1="&#x201e;" u2="&#xd2;" k="39" />
+<hkern u1="&#x201e;" u2="&#xc7;" k="39" />
+<hkern u1="&#x201e;" u2="y" k="57" />
+<hkern u1="&#x201e;" u2="v" k="63" />
+<hkern u1="&#x201e;" u2="t" k="25" />
+<hkern u1="&#x201e;" u2="f" k="20" />
+<hkern u1="&#x201e;" u2="Y" k="154" />
+<hkern u1="&#x201e;" u2="V" k="131" />
+<hkern u1="&#x201e;" u2="U" k="37" />
+<hkern u1="&#x201e;" u2="T" k="131" />
+<hkern u1="&#x201e;" u2="Q" k="39" />
+<hkern u1="&#x201e;" u2="O" k="39" />
+<hkern u1="&#x201e;" u2="G" k="39" />
+<hkern u1="&#x201e;" u2="C" k="39" />
+<hkern u1="&#x201e;" u2="&#x27;" k="244" />
+<hkern u1="&#x201e;" u2="&#x22;" k="256" />
+<hkern u1="&#x2039;" u2="&#xdd;" k="66" />
+<hkern u1="&#x2039;" u2="Y" k="66" />
+<hkern u1="&#x2039;" u2="V" k="25" />
+<hkern u1="&#x2039;" u2="T" k="104" />
+<hkern u1="&#x203a;" u2="&#x201d;" k="45" />
+<hkern u1="&#x203a;" u2="&#x2019;" k="45" />
+<hkern u1="&#x203a;" u2="&#xdd;" k="121" />
+<hkern u1="&#x203a;" u2="x" k="27" />
+<hkern u1="&#x203a;" u2="Y" k="121" />
+<hkern u1="&#x203a;" u2="X" k="31" />
+<hkern u1="&#x203a;" u2="V" k="63" />
+<hkern u1="&#x203a;" u2="T" k="121" />
+<hkern u1="&#x203a;" u2="&#x27;" k="45" />
+<hkern u1="&#x203a;" u2="&#x22;" k="45" />
+<hkern u1="&#x2122;" u2="&#xc6;" k="61" />
+<hkern u1="&#x2122;" u2="&#xc5;" k="61" />
+<hkern u1="&#x2122;" u2="&#xc4;" k="61" />
+<hkern u1="&#x2122;" u2="&#xc3;" k="61" />
+<hkern u1="&#x2122;" u2="&#xc2;" k="61" />
+<hkern u1="&#x2122;" u2="&#xc1;" k="61" />
+<hkern u1="&#x2122;" u2="&#xc0;" k="61" />
+<hkern u1="&#x2122;" u2="A" k="61" />
+<hkern u1="&#xfb01;" u2="&#xde;" k="20" />
+<hkern u1="&#xfb01;" u2="&#xdd;" k="16" />
+<hkern u1="&#xfb01;" u2="&#xdc;" k="31" />
+<hkern u1="&#xfb01;" u2="&#xdb;" k="31" />
+<hkern u1="&#xfb01;" u2="&#xda;" k="31" />
+<hkern u1="&#xfb01;" u2="&#xd9;" k="31" />
+<hkern u1="&#xfb01;" u2="&#xd8;" k="20" />
+<hkern u1="&#xfb01;" u2="&#xd6;" k="20" />
+<hkern u1="&#xfb01;" u2="&#xd5;" k="20" />
+<hkern u1="&#xfb01;" u2="&#xd4;" k="20" />
+<hkern u1="&#xfb01;" u2="&#xd3;" k="20" />
+<hkern u1="&#xfb01;" u2="&#xd2;" k="20" />
+<hkern u1="&#xfb01;" u2="&#xd1;" k="20" />
+<hkern u1="&#xfb01;" u2="&#xd0;" k="20" />
+<hkern u1="&#xfb01;" u2="&#xcf;" k="20" />
+<hkern u1="&#xfb01;" u2="&#xce;" k="20" />
+<hkern u1="&#xfb01;" u2="&#xcd;" k="20" />
+<hkern u1="&#xfb01;" u2="&#xcc;" k="20" />
+<hkern u1="&#xfb01;" u2="&#xcb;" k="20" />
+<hkern u1="&#xfb01;" u2="&#xca;" k="20" />
+<hkern u1="&#xfb01;" u2="&#xc9;" k="20" />
+<hkern u1="&#xfb01;" u2="&#xc8;" k="20" />
+<hkern u1="&#xfb01;" u2="&#xc7;" k="20" />
+<hkern u1="&#xfb01;" u2="&#xc5;" k="14" />
+<hkern u1="&#xfb01;" u2="&#xc4;" k="14" />
+<hkern u1="&#xfb01;" u2="&#xc3;" k="14" />
+<hkern u1="&#xfb01;" u2="&#xc2;" k="14" />
+<hkern u1="&#xfb01;" u2="&#xc1;" k="14" />
+<hkern u1="&#xfb01;" u2="&#xc0;" k="14" />
+<hkern u1="&#xfb01;" u2="Y" k="16" />
+<hkern u1="&#xfb01;" u2="V" k="18" />
+<hkern u1="&#xfb01;" u2="U" k="31" />
+<hkern u1="&#xfb01;" u2="T" k="20" />
+<hkern u1="&#xfb01;" u2="S" k="18" />
+<hkern u1="&#xfb01;" u2="R" k="20" />
+<hkern u1="&#xfb01;" u2="Q" k="20" />
+<hkern u1="&#xfb01;" u2="P" k="20" />
+<hkern u1="&#xfb01;" u2="O" k="20" />
+<hkern u1="&#xfb01;" u2="N" k="20" />
+<hkern u1="&#xfb01;" u2="M" k="20" />
+<hkern u1="&#xfb01;" u2="L" k="20" />
+<hkern u1="&#xfb01;" u2="K" k="20" />
+<hkern u1="&#xfb01;" u2="I" k="20" />
+<hkern u1="&#xfb01;" u2="H" k="20" />
+<hkern u1="&#xfb01;" u2="G" k="20" />
+<hkern u1="&#xfb01;" u2="F" k="20" />
+<hkern u1="&#xfb01;" u2="E" k="20" />
+<hkern u1="&#xfb01;" u2="D" k="20" />
+<hkern u1="&#xfb01;" u2="C" k="20" />
+<hkern u1="&#xfb01;" u2="B" k="20" />
+<hkern u1="&#xfb01;" u2="A" k="14" />
+<hkern u1="&#xfb01;" u2="&#x26;" k="16" />
+<hkern u1="&#xfb02;" u2="&#xde;" k="20" />
+<hkern u1="&#xfb02;" u2="&#xdd;" k="23" />
+<hkern u1="&#xfb02;" u2="&#xdc;" k="37" />
+<hkern u1="&#xfb02;" u2="&#xdb;" k="37" />
+<hkern u1="&#xfb02;" u2="&#xda;" k="37" />
+<hkern u1="&#xfb02;" u2="&#xd9;" k="37" />
+<hkern u1="&#xfb02;" u2="&#xd8;" k="23" />
+<hkern u1="&#xfb02;" u2="&#xd6;" k="23" />
+<hkern u1="&#xfb02;" u2="&#xd5;" k="23" />
+<hkern u1="&#xfb02;" u2="&#xd4;" k="23" />
+<hkern u1="&#xfb02;" u2="&#xd3;" k="23" />
+<hkern u1="&#xfb02;" u2="&#xd2;" k="23" />
+<hkern u1="&#xfb02;" u2="&#xd1;" k="20" />
+<hkern u1="&#xfb02;" u2="&#xd0;" k="20" />
+<hkern u1="&#xfb02;" u2="&#xcf;" k="20" />
+<hkern u1="&#xfb02;" u2="&#xce;" k="20" />
+<hkern u1="&#xfb02;" u2="&#xcd;" k="20" />
+<hkern u1="&#xfb02;" u2="&#xcc;" k="20" />
+<hkern u1="&#xfb02;" u2="&#xcb;" k="20" />
+<hkern u1="&#xfb02;" u2="&#xca;" k="20" />
+<hkern u1="&#xfb02;" u2="&#xc9;" k="20" />
+<hkern u1="&#xfb02;" u2="&#xc8;" k="20" />
+<hkern u1="&#xfb02;" u2="&#xc7;" k="23" />
+<hkern u1="&#xfb02;" u2="&#xc5;" k="16" />
+<hkern u1="&#xfb02;" u2="&#xc4;" k="16" />
+<hkern u1="&#xfb02;" u2="&#xc3;" k="16" />
+<hkern u1="&#xfb02;" u2="&#xc2;" k="16" />
+<hkern u1="&#xfb02;" u2="&#xc1;" k="16" />
+<hkern u1="&#xfb02;" u2="&#xc0;" k="16" />
+<hkern u1="&#xfb02;" u2="&#xb7;" k="123" />
+<hkern u1="&#xfb02;" u2="Y" k="23" />
+<hkern u1="&#xfb02;" u2="V" k="23" />
+<hkern u1="&#xfb02;" u2="U" k="37" />
+<hkern u1="&#xfb02;" u2="T" k="18" />
+<hkern u1="&#xfb02;" u2="S" k="18" />
+<hkern u1="&#xfb02;" u2="R" k="20" />
+<hkern u1="&#xfb02;" u2="Q" k="23" />
+<hkern u1="&#xfb02;" u2="P" k="20" />
+<hkern u1="&#xfb02;" u2="O" k="23" />
+<hkern u1="&#xfb02;" u2="N" k="20" />
+<hkern u1="&#xfb02;" u2="M" k="20" />
+<hkern u1="&#xfb02;" u2="L" k="20" />
+<hkern u1="&#xfb02;" u2="K" k="20" />
+<hkern u1="&#xfb02;" u2="I" k="20" />
+<hkern u1="&#xfb02;" u2="H" k="20" />
+<hkern u1="&#xfb02;" u2="G" k="23" />
+<hkern u1="&#xfb02;" u2="F" k="20" />
+<hkern u1="&#xfb02;" u2="E" k="20" />
+<hkern u1="&#xfb02;" u2="D" k="20" />
+<hkern u1="&#xfb02;" u2="C" k="23" />
+<hkern u1="&#xfb02;" u2="B" k="20" />
+<hkern u1="&#xfb02;" u2="A" k="16" />
+<hkern u1="&#xfb02;" u2="&#x26;" k="18" />
+<hkern u1="&#xfb03;" u2="&#xde;" k="20" />
+<hkern u1="&#xfb03;" u2="&#xdd;" k="16" />
+<hkern u1="&#xfb03;" u2="&#xdc;" k="31" />
+<hkern u1="&#xfb03;" u2="&#xdb;" k="31" />
+<hkern u1="&#xfb03;" u2="&#xda;" k="31" />
+<hkern u1="&#xfb03;" u2="&#xd9;" k="31" />
+<hkern u1="&#xfb03;" u2="&#xd8;" k="20" />
+<hkern u1="&#xfb03;" u2="&#xd6;" k="20" />
+<hkern u1="&#xfb03;" u2="&#xd5;" k="20" />
+<hkern u1="&#xfb03;" u2="&#xd4;" k="20" />
+<hkern u1="&#xfb03;" u2="&#xd3;" k="20" />
+<hkern u1="&#xfb03;" u2="&#xd2;" k="20" />
+<hkern u1="&#xfb03;" u2="&#xd1;" k="20" />
+<hkern u1="&#xfb03;" u2="&#xd0;" k="20" />
+<hkern u1="&#xfb03;" u2="&#xcf;" k="20" />
+<hkern u1="&#xfb03;" u2="&#xce;" k="20" />
+<hkern u1="&#xfb03;" u2="&#xcd;" k="20" />
+<hkern u1="&#xfb03;" u2="&#xcc;" k="20" />
+<hkern u1="&#xfb03;" u2="&#xcb;" k="20" />
+<hkern u1="&#xfb03;" u2="&#xca;" k="20" />
+<hkern u1="&#xfb03;" u2="&#xc9;" k="20" />
+<hkern u1="&#xfb03;" u2="&#xc8;" k="20" />
+<hkern u1="&#xfb03;" u2="&#xc7;" k="20" />
+<hkern u1="&#xfb03;" u2="&#xc5;" k="14" />
+<hkern u1="&#xfb03;" u2="&#xc4;" k="14" />
+<hkern u1="&#xfb03;" u2="&#xc3;" k="14" />
+<hkern u1="&#xfb03;" u2="&#xc2;" k="14" />
+<hkern u1="&#xfb03;" u2="&#xc1;" k="14" />
+<hkern u1="&#xfb03;" u2="&#xc0;" k="14" />
+<hkern u1="&#xfb03;" u2="Y" k="16" />
+<hkern u1="&#xfb03;" u2="V" k="18" />
+<hkern u1="&#xfb03;" u2="U" k="31" />
+<hkern u1="&#xfb03;" u2="T" k="20" />
+<hkern u1="&#xfb03;" u2="S" k="18" />
+<hkern u1="&#xfb03;" u2="R" k="20" />
+<hkern u1="&#xfb03;" u2="Q" k="20" />
+<hkern u1="&#xfb03;" u2="P" k="20" />
+<hkern u1="&#xfb03;" u2="O" k="20" />
+<hkern u1="&#xfb03;" u2="N" k="20" />
+<hkern u1="&#xfb03;" u2="M" k="20" />
+<hkern u1="&#xfb03;" u2="L" k="20" />
+<hkern u1="&#xfb03;" u2="K" k="20" />
+<hkern u1="&#xfb03;" u2="I" k="20" />
+<hkern u1="&#xfb03;" u2="H" k="20" />
+<hkern u1="&#xfb03;" u2="G" k="20" />
+<hkern u1="&#xfb03;" u2="F" k="20" />
+<hkern u1="&#xfb03;" u2="E" k="20" />
+<hkern u1="&#xfb03;" u2="D" k="20" />
+<hkern u1="&#xfb03;" u2="C" k="20" />
+<hkern u1="&#xfb03;" u2="B" k="20" />
+<hkern u1="&#xfb03;" u2="A" k="14" />
+<hkern u1="&#xfb03;" u2="&#x26;" k="16" />
+<hkern u1="&#xfb04;" u2="&#xde;" k="20" />
+<hkern u1="&#xfb04;" u2="&#xdd;" k="23" />
+<hkern u1="&#xfb04;" u2="&#xdc;" k="37" />
+<hkern u1="&#xfb04;" u2="&#xdb;" k="37" />
+<hkern u1="&#xfb04;" u2="&#xda;" k="37" />
+<hkern u1="&#xfb04;" u2="&#xd9;" k="37" />
+<hkern u1="&#xfb04;" u2="&#xd8;" k="23" />
+<hkern u1="&#xfb04;" u2="&#xd6;" k="23" />
+<hkern u1="&#xfb04;" u2="&#xd5;" k="23" />
+<hkern u1="&#xfb04;" u2="&#xd4;" k="23" />
+<hkern u1="&#xfb04;" u2="&#xd3;" k="23" />
+<hkern u1="&#xfb04;" u2="&#xd2;" k="23" />
+<hkern u1="&#xfb04;" u2="&#xd1;" k="20" />
+<hkern u1="&#xfb04;" u2="&#xd0;" k="20" />
+<hkern u1="&#xfb04;" u2="&#xcf;" k="20" />
+<hkern u1="&#xfb04;" u2="&#xce;" k="20" />
+<hkern u1="&#xfb04;" u2="&#xcd;" k="20" />
+<hkern u1="&#xfb04;" u2="&#xcc;" k="20" />
+<hkern u1="&#xfb04;" u2="&#xcb;" k="20" />
+<hkern u1="&#xfb04;" u2="&#xca;" k="20" />
+<hkern u1="&#xfb04;" u2="&#xc9;" k="20" />
+<hkern u1="&#xfb04;" u2="&#xc8;" k="20" />
+<hkern u1="&#xfb04;" u2="&#xc7;" k="23" />
+<hkern u1="&#xfb04;" u2="&#xc5;" k="16" />
+<hkern u1="&#xfb04;" u2="&#xc4;" k="16" />
+<hkern u1="&#xfb04;" u2="&#xc3;" k="16" />
+<hkern u1="&#xfb04;" u2="&#xc2;" k="16" />
+<hkern u1="&#xfb04;" u2="&#xc1;" k="16" />
+<hkern u1="&#xfb04;" u2="&#xc0;" k="16" />
+<hkern u1="&#xfb04;" u2="&#xb7;" k="123" />
+<hkern u1="&#xfb04;" u2="Y" k="23" />
+<hkern u1="&#xfb04;" u2="V" k="23" />
+<hkern u1="&#xfb04;" u2="U" k="37" />
+<hkern u1="&#xfb04;" u2="T" k="18" />
+<hkern u1="&#xfb04;" u2="S" k="18" />
+<hkern u1="&#xfb04;" u2="R" k="20" />
+<hkern u1="&#xfb04;" u2="Q" k="23" />
+<hkern u1="&#xfb04;" u2="P" k="20" />
+<hkern u1="&#xfb04;" u2="O" k="23" />
+<hkern u1="&#xfb04;" u2="N" k="20" />
+<hkern u1="&#xfb04;" u2="M" k="20" />
+<hkern u1="&#xfb04;" u2="L" k="20" />
+<hkern u1="&#xfb04;" u2="K" k="20" />
+<hkern u1="&#xfb04;" u2="I" k="20" />
+<hkern u1="&#xfb04;" u2="H" k="20" />
+<hkern u1="&#xfb04;" u2="G" k="23" />
+<hkern u1="&#xfb04;" u2="F" k="20" />
+<hkern u1="&#xfb04;" u2="E" k="20" />
+<hkern u1="&#xfb04;" u2="D" k="20" />
+<hkern u1="&#xfb04;" u2="C" k="23" />
+<hkern u1="&#xfb04;" u2="B" k="20" />
+<hkern u1="&#xfb04;" u2="A" k="16" />
+<hkern u1="&#xfb04;" u2="&#x26;" k="18" />
+</font>
+</defs></svg> 
\ No newline at end of file
diff --git a/src/main/webapp/resources/fonts/varela_round-webfont.ttf b/src/main/webapp/resources/fonts/varela_round-webfont.ttf
new file mode 100644
index 0000000000000000000000000000000000000000..3ca0666937719a3b757dd792d770646fd8f8dba9
Binary files /dev/null and b/src/main/webapp/resources/fonts/varela_round-webfont.ttf differ
diff --git a/src/main/webapp/resources/fonts/varela_round-webfont.woff b/src/main/webapp/resources/fonts/varela_round-webfont.woff
new file mode 100644
index 0000000000000000000000000000000000000000..77ba16614b8fa5030e048630882e493cdcbd8ab3
Binary files /dev/null and b/src/main/webapp/resources/fonts/varela_round-webfont.woff differ
diff --git a/src/main/webapp/resources/images/banner-graphic.png b/src/main/webapp/resources/images/banner-graphic.png
deleted file mode 100644
index e6d01d5885266efbf4dc99431576a13dee5725e4..0000000000000000000000000000000000000000
Binary files a/src/main/webapp/resources/images/banner-graphic.png and /dev/null differ
diff --git a/src/main/webapp/resources/images/bullet-arrow.png b/src/main/webapp/resources/images/bullet-arrow.png
deleted file mode 100644
index 5909c25b397bb899de0dc010cb1b564b90175893..0000000000000000000000000000000000000000
Binary files a/src/main/webapp/resources/images/bullet-arrow.png and /dev/null differ
diff --git a/src/main/webapp/resources/images/pets.png b/src/main/webapp/resources/images/pets.png
index 0fe63c282b189268e53aa34cf523f32ad7772401..bb5cf3a341298064901422ee30f3515a41acf4a6 100644
Binary files a/src/main/webapp/resources/images/pets.png and b/src/main/webapp/resources/images/pets.png differ
diff --git a/src/main/webapp/resources/images/platform-bg.png b/src/main/webapp/resources/images/platform-bg.png
new file mode 100644
index 0000000000000000000000000000000000000000..512185839bdd94afc996e737d61041d9600e8eb9
Binary files /dev/null and b/src/main/webapp/resources/images/platform-bg.png differ
diff --git a/src/main/webapp/resources/images/spring-logo-dataflow-mobile.png b/src/main/webapp/resources/images/spring-logo-dataflow-mobile.png
new file mode 100644
index 0000000000000000000000000000000000000000..45d24a6f3e53b709821db86857f4caaa867ed526
Binary files /dev/null and b/src/main/webapp/resources/images/spring-logo-dataflow-mobile.png differ
diff --git a/src/main/webapp/resources/images/spring-logo-dataflow.png b/src/main/webapp/resources/images/spring-logo-dataflow.png
new file mode 100644
index 0000000000000000000000000000000000000000..ff7cdbb40d78468b08701431128bb972c34a3587
Binary files /dev/null and b/src/main/webapp/resources/images/spring-logo-dataflow.png differ
diff --git a/src/main/webapp/resources/images/springsource-logo.png b/src/main/webapp/resources/images/springsource-logo.png
deleted file mode 100644
index e170f8abf778b24ed1de11dad6f1444e849269ba..0000000000000000000000000000000000000000
Binary files a/src/main/webapp/resources/images/springsource-logo.png and /dev/null differ
diff --git a/src/main/webapp/resources/images/submit-bg.png b/src/main/webapp/resources/images/submit-bg.png
deleted file mode 100644
index 10a94371b642251703b0c2439d5e62578f8e6e5a..0000000000000000000000000000000000000000
Binary files a/src/main/webapp/resources/images/submit-bg.png and /dev/null differ
diff --git a/src/main/webapp/resources/less/header.less b/src/main/webapp/resources/less/header.less
new file mode 100644
index 0000000000000000000000000000000000000000..7cb1a7888e00190caf26af5de8f7f7c1d903a1bf
--- /dev/null
+++ b/src/main/webapp/resources/less/header.less
@@ -0,0 +1,73 @@
+.navbar {
+  border-top: 4px solid #6db33f;
+  background-color: #34302d;
+  margin-bottom: 0px;
+  border-bottom: 0;
+  border-left: 0;
+  border-right: 0;
+}
+
+.navbar a.navbar-brand {
+  background: url("../images/spring-logo-dataflow.png") -1px -1px no-repeat;
+  margin: 12px 0 6px;
+  width: 229px;
+  height: 46px;
+  display: inline-block;
+  text-decoration: none;
+  padding: 0;
+}
+
+.navbar a.navbar-brand span {
+  display: block;
+  width: 229px;
+  height: 46px;
+  background: url("../images/spring-logo-dataflow.png") -1px -48px no-repeat;
+  opacity: 0;
+  -moz-transition: opacity 0.12s ease-in-out;
+  -webkit-transition: opacity 0.12s ease-in-out;
+  -o-transition: opacity 0.12s ease-in-out;
+}
+
+.navbar a:hover.navbar-brand span {
+  opacity: 1;
+}
+
+.navbar li > a, .navbar-text {
+  font-family: "montserratregular", sans-serif;
+  text-shadow: none;
+  font-size: 14px;
+
+/* line-height: 14px; */
+  padding: 28px 20px;
+  transition: all 0.15s;
+  -webkit-transition: all 0.15s;
+  -moz-transition: all 0.15s;
+  -o-transition: all 0.15s;
+  -ms-transition: all 0.15s;
+}
+
+.navbar li > a {
+  text-transform: uppercase;
+}
+
+.navbar .navbar-text {
+  margin-top: 0;
+  margin-bottom: 0;
+}
+.navbar li:hover > a {
+  color: #eeeeee;
+  background-color: #6db33f;
+}
+
+.navbar-toggle {
+  border-width: 0;
+
+  .icon-bar + .icon-bar {
+    margin-top: 3px;
+  }
+  .icon-bar {
+    width: 19px;
+    height: 3px;
+  }
+
+}
diff --git a/src/main/webapp/resources/less/petclinic.less b/src/main/webapp/resources/less/petclinic.less
new file mode 100644
index 0000000000000000000000000000000000000000..f939bab580c0300865db14ed161ddf7e013f2fa0
--- /dev/null
+++ b/src/main/webapp/resources/less/petclinic.less
@@ -0,0 +1,252 @@
+/*
+ * Copyright 2016 the original author or authors.
+ *
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+@import "../../vendors/bootstrap/less/bootstrap.less";
+
+@spring-green:      #6db33f;
+@spring-dark-green: #5fa134;
+@spring-brown:      #34302D;
+@spring-grey:       #838789;
+@spring-light-grey: #f1f1f1;
+
+@body-bg:                           @spring-light-grey;
+@text-color:                        @spring-brown;
+@link-color:                        @spring-dark-green;
+@link-hover-color:                  @spring-dark-green;
+
+@navbar-default-link-color:         @spring-light-grey;
+@navbar-default-link-active-color:  @spring-light-grey;
+@navbar-default-link-hover-color:   @spring-light-grey;
+@navbar-default-link-hover-bg:      @spring-green;
+@navbar-default-toggle-icon-bar-bg: @spring-light-grey;
+@navbar-default-toggle-hover-bg:    transparent;
+@navbar-default-link-active-bg:     @spring-green;
+
+@border-radius-base:             0;
+@border-radius-large:            0;
+@border-radius-small:            0;
+
+@btn-default-color:              @spring-light-grey;
+@btn-default-bg:                 @spring-brown;
+@btn-default-border:             @spring-green;
+
+@icon-font-path: "../../vendors/bootstrap/dist/fonts/";
+
+@nav-tabs-active-link-hover-color:        @spring-light-grey;
+@nav-tabs-active-link-hover-bg:           @spring-brown;
+@nav-tabs-active-link-hover-border-color: @spring-brown;
+@nav-tabs-border-color:                   @spring-brown;
+
+@pagination-active-bg:                    @spring-brown;
+@pagination-active-border:                @spring-green;
+@table-border-color:                      @spring-brown;
+
+@import "typography.less";
+@import "header.less";
+
+.table > thead > tr > th {
+  background-color: lighten(@spring-brown, 3%);
+  color: @spring-light-grey;
+}
+
+.table-filter {
+  background-color: @spring-brown;
+  padding: 9px 12px;
+}
+
+.nav > li > a {
+  color: @spring-grey;
+}
+
+.btn-default {
+  border-width: 2px;
+  transition: border 0.15s;
+  -webkit-transition: border 0.15s;
+  -moz-transition: border 0.15s;
+  -o-transition: border 0.15s;
+  -ms-transition: border 0.15s;
+
+  &:hover,
+  &:focus,
+  &:active,
+  &.active,
+  .open .dropdown-toggle& {
+    background-color: @spring-brown;
+    border-color: @spring-brown;
+  }
+}
+
+
+.container .text-muted {
+  margin: 20px 0;
+}
+
+code {
+  font-size: 80%;
+}
+
+.xd-container {
+  margin-top: 40px;
+  margin-bottom: 100px;
+  padding-left: 5px;
+  padding-right: 5px;
+}
+
+h1 {
+  margin-bottom: 15px
+}
+
+.index-page--subtitle {
+  font-size: 16px;
+  line-height: 24px;
+  margin: 0 0 30px;
+}
+
+.form-horizontal button.btn-inverse {
+  margin-left: 32px;
+}
+
+#job-params-modal .modal-dialog {
+  width: 90%;
+  margin-left:auto;
+  margin-right:auto;
+}
+
+[ng-cloak].splash {
+  display: block !important;
+}
+[ng-cloak] {
+  display: none;
+}
+
+.splash {
+  background: @spring-green;
+  color: @spring-brown;
+  display: none;
+}
+
+.error-page {
+  margin-top: 100px;
+  text-align: center;
+}
+
+.error-page .error-title {
+  font-size: 24px;
+  line-height: 24px;
+  margin: 30px 0 0;
+}
+
+table td {
+  vertical-align: middle;
+}
+
+table td .progress {
+  margin-bottom: 0;
+}
+
+table td.action-column {
+  width: 1px;
+}
+
+.help-block {
+  color: lighten(@text-color, 50%); // lighten the text some for contrast
+}
+
+.xd-containers {
+  font-size: 15px;
+}
+
+.cluster-view > table td {
+  vertical-align: top;
+}
+
+.cluster-view .label, .cluster-view .column-block {
+  display: block;
+}
+
+.cluster-view .input-group-addon {
+  width: 0%;
+}
+
+.cluster-view {
+  margin-bottom: 0;
+}
+
+.deployment-status-deployed {
+  .label-success;
+}
+
+.deployment-status-incomplete {
+  .label-warning;
+}
+
+.deployment-status-failed {
+  .label-danger;
+}
+
+.deployment-status-deploying {
+  .label-info
+}
+.deployment-status-na {
+}
+
+.container-details-table th {
+  background-color: lighten(@spring-brown, 3%);
+  color: @spring-light-grey;
+}
+
+.status-help-content-table td {
+  color: @spring-brown;
+}
+
+.alert-success {
+  .alert-variant(fade(@alert-success-bg, 70%); @alert-success-border; @alert-success-text);
+}
+.alert-info {
+  .alert-variant(fade(@alert-info-bg, 70%); @alert-info-border; @alert-info-text);
+}
+.alert-warning {
+  .alert-variant(fade(@alert-warning-bg, 70%); @alert-warning-border; @alert-warning-text);
+}
+.alert-danger {
+  .alert-variant(fade(@alert-danger-bg, 70%); @alert-danger-border; @alert-danger-text);
+}
+
+.myspinner {
+  animation-name: spinner;
+  animation-duration: 2s;
+  animation-iteration-count: infinite;
+  animation-timing-function: linear;
+
+  -webkit-transform-origin: 49% 50%;
+  -webkit-animation-name: spinner;
+  -webkit-animation-duration: 2s;
+  -webkit-animation-iteration-count: infinite;
+  -webkit-animation-timing-function: linear;
+}
+
+@keyframes "spinner" {
+  from { transform: rotate( 0deg );   }
+  to   { transform: rotate( 360deg ); }
+}
+
+@-webkit-keyframes "spinner" {
+  from { -webkit-transform: rotate( 0deg ); }
+  to   { -webkit-transform: rotate( 360deg ); }
+}
+
+hr {
+  border-top: 1px dotted @spring-brown;
+}
+
+@import "responsive.less";
diff --git a/src/main/webapp/resources/less/responsive.less b/src/main/webapp/resources/less/responsive.less
new file mode 100644
index 0000000000000000000000000000000000000000..8f3b21545ca03684e8b18f098caa18fd3ce378f5
--- /dev/null
+++ b/src/main/webapp/resources/less/responsive.less
@@ -0,0 +1,41 @@
+@media (max-width: 768px) {
+  .navbar-toggle {
+    position:absolute;
+    z-index: 9999;
+    left:0px;
+  top:0px;
+  }
+
+  .navbar a.navbar-brand {
+    display: block;
+    margin: 0 auto 0 auto;
+    width: 148px;
+    height: 50px;
+    float: none;
+    background: url("../images/spring-logo-dataflow-mobile.png") 0 center no-repeat;
+  }
+
+  .homepage-billboard .homepage-subtitle {
+    font-size: 21px;
+    line-height: 21px;
+  }
+
+  .navbar a.navbar-brand span {
+    display: none;
+  }
+
+  .navbar {
+    border-top-width: 0;
+  }
+
+  .xd-container {
+    margin-top: 20px;
+    margin-bottom: 30px;
+  }
+
+  .index-page--subtitle {
+    margin-top: 10px;
+    margin-bottom: 30px;
+  }
+
+}
diff --git a/src/main/webapp/resources/less/typography.less b/src/main/webapp/resources/less/typography.less
new file mode 100644
index 0000000000000000000000000000000000000000..8b8436e13e8f5bdd00683b2a3841b6c7ce179987
--- /dev/null
+++ b/src/main/webapp/resources/less/typography.less
@@ -0,0 +1,60 @@
+@font-face {
+  font-family: 'varela_roundregular';
+
+  src: url('../fonts/varela_round-webfont.eot');
+  src: url('../fonts/varela_round-webfont.eot?#iefix') format('embedded-opentype'),
+       url('../fonts/varela_round-webfont.woff') format('woff'),
+       url('../fonts/varela_round-webfont.ttf') format('truetype'),
+       url('../fonts/varela_round-webfont.svg#varela_roundregular') format('svg');
+  font-weight: normal;
+  font-style: normal;
+}
+
+@font-face {
+  font-family: 'montserratregular';
+  src: url('../fonts/montserrat-webfont.eot');
+  src: url('../fonts/montserrat-webfont.eot?#iefix') format('embedded-opentype'),
+       url('../fonts/montserrat-webfont.woff') format('woff'),
+       url('../fonts/montserrat-webfont.ttf') format('truetype'),
+       url('../fonts/montserrat-webfont.svg#montserratregular') format('svg');
+  font-weight: normal;
+  font-style: normal;
+}
+
+body, h1, h2, h3, p, input {
+  margin: 0;
+  font-weight: 400;
+  font-family: "varela_roundregular", sans-serif;
+  color: #34302d;
+}
+
+h1 {
+  font-size: 24px;
+  line-height: 30px;
+  font-family: "montserratregular", sans-serif;
+}
+
+h2 {
+  font-size: 18px;
+  font-weight: 700;
+  line-height: 24px;
+  margin-bottom: 10px;
+  font-family: "montserratregular", sans-serif;
+}
+
+h3 {
+  font-size: 16px;
+  line-height: 24px;
+  margin-bottom: 10px;
+  font-weight: 700;
+}
+
+p {
+  //font-size: 15px;
+  //line-height: 24px;
+}
+
+strong {
+  font-weight: 700;
+  font-family: "montserratregular", sans-serif;
+}
diff --git a/src/main/webapp/vendors/bootstrap/dist/css/bootstrap-theme.css b/src/main/webapp/vendors/bootstrap/dist/css/bootstrap-theme.css
deleted file mode 100644
index ebe57fbf64d3c72a032b9db83898b99151d9d991..0000000000000000000000000000000000000000
--- a/src/main/webapp/vendors/bootstrap/dist/css/bootstrap-theme.css
+++ /dev/null
@@ -1,587 +0,0 @@
-/*!
- * Bootstrap v3.3.6 (http://getbootstrap.com)
- * Copyright 2011-2015 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- */
-.btn-default,
-.btn-primary,
-.btn-success,
-.btn-info,
-.btn-warning,
-.btn-danger {
-  text-shadow: 0 -1px 0 rgba(0, 0, 0, .2);
-  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
-          box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
-}
-.btn-default:active,
-.btn-primary:active,
-.btn-success:active,
-.btn-info:active,
-.btn-warning:active,
-.btn-danger:active,
-.btn-default.active,
-.btn-primary.active,
-.btn-success.active,
-.btn-info.active,
-.btn-warning.active,
-.btn-danger.active {
-  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
-          box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
-}
-.btn-default.disabled,
-.btn-primary.disabled,
-.btn-success.disabled,
-.btn-info.disabled,
-.btn-warning.disabled,
-.btn-danger.disabled,
-.btn-default[disabled],
-.btn-primary[disabled],
-.btn-success[disabled],
-.btn-info[disabled],
-.btn-warning[disabled],
-.btn-danger[disabled],
-fieldset[disabled] .btn-default,
-fieldset[disabled] .btn-primary,
-fieldset[disabled] .btn-success,
-fieldset[disabled] .btn-info,
-fieldset[disabled] .btn-warning,
-fieldset[disabled] .btn-danger {
-  -webkit-box-shadow: none;
-          box-shadow: none;
-}
-.btn-default .badge,
-.btn-primary .badge,
-.btn-success .badge,
-.btn-info .badge,
-.btn-warning .badge,
-.btn-danger .badge {
-  text-shadow: none;
-}
-.btn:active,
-.btn.active {
-  background-image: none;
-}
-.btn-default {
-  text-shadow: 0 1px 0 #fff;
-  background-image: -webkit-linear-gradient(top, #fff 0%, #e0e0e0 100%);
-  background-image:      -o-linear-gradient(top, #fff 0%, #e0e0e0 100%);
-  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e0e0e0));
-  background-image:         linear-gradient(to bottom, #fff 0%, #e0e0e0 100%);
-  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);
-  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
-  background-repeat: repeat-x;
-  border-color: #dbdbdb;
-  border-color: #ccc;
-}
-.btn-default:hover,
-.btn-default:focus {
-  background-color: #e0e0e0;
-  background-position: 0 -15px;
-}
-.btn-default:active,
-.btn-default.active {
-  background-color: #e0e0e0;
-  border-color: #dbdbdb;
-}
-.btn-default.disabled,
-.btn-default[disabled],
-fieldset[disabled] .btn-default,
-.btn-default.disabled:hover,
-.btn-default[disabled]:hover,
-fieldset[disabled] .btn-default:hover,
-.btn-default.disabled:focus,
-.btn-default[disabled]:focus,
-fieldset[disabled] .btn-default:focus,
-.btn-default.disabled.focus,
-.btn-default[disabled].focus,
-fieldset[disabled] .btn-default.focus,
-.btn-default.disabled:active,
-.btn-default[disabled]:active,
-fieldset[disabled] .btn-default:active,
-.btn-default.disabled.active,
-.btn-default[disabled].active,
-fieldset[disabled] .btn-default.active {
-  background-color: #e0e0e0;
-  background-image: none;
-}
-.btn-primary {
-  background-image: -webkit-linear-gradient(top, #337ab7 0%, #265a88 100%);
-  background-image:      -o-linear-gradient(top, #337ab7 0%, #265a88 100%);
-  background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#265a88));
-  background-image:         linear-gradient(to bottom, #337ab7 0%, #265a88 100%);
-  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);
-  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
-  background-repeat: repeat-x;
-  border-color: #245580;
-}
-.btn-primary:hover,
-.btn-primary:focus {
-  background-color: #265a88;
-  background-position: 0 -15px;
-}
-.btn-primary:active,
-.btn-primary.active {
-  background-color: #265a88;
-  border-color: #245580;
-}
-.btn-primary.disabled,
-.btn-primary[disabled],
-fieldset[disabled] .btn-primary,
-.btn-primary.disabled:hover,
-.btn-primary[disabled]:hover,
-fieldset[disabled] .btn-primary:hover,
-.btn-primary.disabled:focus,
-.btn-primary[disabled]:focus,
-fieldset[disabled] .btn-primary:focus,
-.btn-primary.disabled.focus,
-.btn-primary[disabled].focus,
-fieldset[disabled] .btn-primary.focus,
-.btn-primary.disabled:active,
-.btn-primary[disabled]:active,
-fieldset[disabled] .btn-primary:active,
-.btn-primary.disabled.active,
-.btn-primary[disabled].active,
-fieldset[disabled] .btn-primary.active {
-  background-color: #265a88;
-  background-image: none;
-}
-.btn-success {
-  background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%);
-  background-image:      -o-linear-gradient(top, #5cb85c 0%, #419641 100%);
-  background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#419641));
-  background-image:         linear-gradient(to bottom, #5cb85c 0%, #419641 100%);
-  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);
-  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
-  background-repeat: repeat-x;
-  border-color: #3e8f3e;
-}
-.btn-success:hover,
-.btn-success:focus {
-  background-color: #419641;
-  background-position: 0 -15px;
-}
-.btn-success:active,
-.btn-success.active {
-  background-color: #419641;
-  border-color: #3e8f3e;
-}
-.btn-success.disabled,
-.btn-success[disabled],
-fieldset[disabled] .btn-success,
-.btn-success.disabled:hover,
-.btn-success[disabled]:hover,
-fieldset[disabled] .btn-success:hover,
-.btn-success.disabled:focus,
-.btn-success[disabled]:focus,
-fieldset[disabled] .btn-success:focus,
-.btn-success.disabled.focus,
-.btn-success[disabled].focus,
-fieldset[disabled] .btn-success.focus,
-.btn-success.disabled:active,
-.btn-success[disabled]:active,
-fieldset[disabled] .btn-success:active,
-.btn-success.disabled.active,
-.btn-success[disabled].active,
-fieldset[disabled] .btn-success.active {
-  background-color: #419641;
-  background-image: none;
-}
-.btn-info {
-  background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
-  background-image:      -o-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
-  background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#2aabd2));
-  background-image:         linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%);
-  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);
-  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
-  background-repeat: repeat-x;
-  border-color: #28a4c9;
-}
-.btn-info:hover,
-.btn-info:focus {
-  background-color: #2aabd2;
-  background-position: 0 -15px;
-}
-.btn-info:active,
-.btn-info.active {
-  background-color: #2aabd2;
-  border-color: #28a4c9;
-}
-.btn-info.disabled,
-.btn-info[disabled],
-fieldset[disabled] .btn-info,
-.btn-info.disabled:hover,
-.btn-info[disabled]:hover,
-fieldset[disabled] .btn-info:hover,
-.btn-info.disabled:focus,
-.btn-info[disabled]:focus,
-fieldset[disabled] .btn-info:focus,
-.btn-info.disabled.focus,
-.btn-info[disabled].focus,
-fieldset[disabled] .btn-info.focus,
-.btn-info.disabled:active,
-.btn-info[disabled]:active,
-fieldset[disabled] .btn-info:active,
-.btn-info.disabled.active,
-.btn-info[disabled].active,
-fieldset[disabled] .btn-info.active {
-  background-color: #2aabd2;
-  background-image: none;
-}
-.btn-warning {
-  background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
-  background-image:      -o-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
-  background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#eb9316));
-  background-image:         linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%);
-  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);
-  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
-  background-repeat: repeat-x;
-  border-color: #e38d13;
-}
-.btn-warning:hover,
-.btn-warning:focus {
-  background-color: #eb9316;
-  background-position: 0 -15px;
-}
-.btn-warning:active,
-.btn-warning.active {
-  background-color: #eb9316;
-  border-color: #e38d13;
-}
-.btn-warning.disabled,
-.btn-warning[disabled],
-fieldset[disabled] .btn-warning,
-.btn-warning.disabled:hover,
-.btn-warning[disabled]:hover,
-fieldset[disabled] .btn-warning:hover,
-.btn-warning.disabled:focus,
-.btn-warning[disabled]:focus,
-fieldset[disabled] .btn-warning:focus,
-.btn-warning.disabled.focus,
-.btn-warning[disabled].focus,
-fieldset[disabled] .btn-warning.focus,
-.btn-warning.disabled:active,
-.btn-warning[disabled]:active,
-fieldset[disabled] .btn-warning:active,
-.btn-warning.disabled.active,
-.btn-warning[disabled].active,
-fieldset[disabled] .btn-warning.active {
-  background-color: #eb9316;
-  background-image: none;
-}
-.btn-danger {
-  background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
-  background-image:      -o-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
-  background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c12e2a));
-  background-image:         linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%);
-  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);
-  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
-  background-repeat: repeat-x;
-  border-color: #b92c28;
-}
-.btn-danger:hover,
-.btn-danger:focus {
-  background-color: #c12e2a;
-  background-position: 0 -15px;
-}
-.btn-danger:active,
-.btn-danger.active {
-  background-color: #c12e2a;
-  border-color: #b92c28;
-}
-.btn-danger.disabled,
-.btn-danger[disabled],
-fieldset[disabled] .btn-danger,
-.btn-danger.disabled:hover,
-.btn-danger[disabled]:hover,
-fieldset[disabled] .btn-danger:hover,
-.btn-danger.disabled:focus,
-.btn-danger[disabled]:focus,
-fieldset[disabled] .btn-danger:focus,
-.btn-danger.disabled.focus,
-.btn-danger[disabled].focus,
-fieldset[disabled] .btn-danger.focus,
-.btn-danger.disabled:active,
-.btn-danger[disabled]:active,
-fieldset[disabled] .btn-danger:active,
-.btn-danger.disabled.active,
-.btn-danger[disabled].active,
-fieldset[disabled] .btn-danger.active {
-  background-color: #c12e2a;
-  background-image: none;
-}
-.thumbnail,
-.img-thumbnail {
-  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
-          box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
-}
-.dropdown-menu > li > a:hover,
-.dropdown-menu > li > a:focus {
-  background-color: #e8e8e8;
-  background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
-  background-image:      -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
-  background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8));
-  background-image:         linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
-  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
-  background-repeat: repeat-x;
-}
-.dropdown-menu > .active > a,
-.dropdown-menu > .active > a:hover,
-.dropdown-menu > .active > a:focus {
-  background-color: #2e6da4;
-  background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
-  background-image:      -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
-  background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));
-  background-image:         linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
-  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);
-  background-repeat: repeat-x;
-}
-.navbar-default {
-  background-image: -webkit-linear-gradient(top, #fff 0%, #f8f8f8 100%);
-  background-image:      -o-linear-gradient(top, #fff 0%, #f8f8f8 100%);
-  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f8f8f8));
-  background-image:         linear-gradient(to bottom, #fff 0%, #f8f8f8 100%);
-  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);
-  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
-  background-repeat: repeat-x;
-  border-radius: 4px;
-  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075);
-          box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075);
-}
-.navbar-default .navbar-nav > .open > a,
-.navbar-default .navbar-nav > .active > a {
-  background-image: -webkit-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);
-  background-image:      -o-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);
-  background-image: -webkit-gradient(linear, left top, left bottom, from(#dbdbdb), to(#e2e2e2));
-  background-image:         linear-gradient(to bottom, #dbdbdb 0%, #e2e2e2 100%);
-  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);
-  background-repeat: repeat-x;
-  -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075);
-          box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075);
-}
-.navbar-brand,
-.navbar-nav > li > a {
-  text-shadow: 0 1px 0 rgba(255, 255, 255, .25);
-}
-.navbar-inverse {
-  background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222 100%);
-  background-image:      -o-linear-gradient(top, #3c3c3c 0%, #222 100%);
-  background-image: -webkit-gradient(linear, left top, left bottom, from(#3c3c3c), to(#222));
-  background-image:         linear-gradient(to bottom, #3c3c3c 0%, #222 100%);
-  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);
-  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
-  background-repeat: repeat-x;
-  border-radius: 4px;
-}
-.navbar-inverse .navbar-nav > .open > a,
-.navbar-inverse .navbar-nav > .active > a {
-  background-image: -webkit-linear-gradient(top, #080808 0%, #0f0f0f 100%);
-  background-image:      -o-linear-gradient(top, #080808 0%, #0f0f0f 100%);
-  background-image: -webkit-gradient(linear, left top, left bottom, from(#080808), to(#0f0f0f));
-  background-image:         linear-gradient(to bottom, #080808 0%, #0f0f0f 100%);
-  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);
-  background-repeat: repeat-x;
-  -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25);
-          box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25);
-}
-.navbar-inverse .navbar-brand,
-.navbar-inverse .navbar-nav > li > a {
-  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25);
-}
-.navbar-static-top,
-.navbar-fixed-top,
-.navbar-fixed-bottom {
-  border-radius: 0;
-}
-@media (max-width: 767px) {
-  .navbar .navbar-nav .open .dropdown-menu > .active > a,
-  .navbar .navbar-nav .open .dropdown-menu > .active > a:hover,
-  .navbar .navbar-nav .open .dropdown-menu > .active > a:focus {
-    color: #fff;
-    background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
-    background-image:      -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
-    background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));
-    background-image:         linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
-    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);
-    background-repeat: repeat-x;
-  }
-}
-.alert {
-  text-shadow: 0 1px 0 rgba(255, 255, 255, .2);
-  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05);
-          box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05);
-}
-.alert-success {
-  background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
-  background-image:      -o-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
-  background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#c8e5bc));
-  background-image:         linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);
-  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);
-  background-repeat: repeat-x;
-  border-color: #b2dba1;
-}
-.alert-info {
-  background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
-  background-image:      -o-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
-  background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#b9def0));
-  background-image:         linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);
-  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);
-  background-repeat: repeat-x;
-  border-color: #9acfea;
-}
-.alert-warning {
-  background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
-  background-image:      -o-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
-  background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#f8efc0));
-  background-image:         linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%);
-  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);
-  background-repeat: repeat-x;
-  border-color: #f5e79e;
-}
-.alert-danger {
-  background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
-  background-image:      -o-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
-  background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#e7c3c3));
-  background-image:         linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%);
-  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);
-  background-repeat: repeat-x;
-  border-color: #dca7a7;
-}
-.progress {
-  background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);
-  background-image:      -o-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);
-  background-image: -webkit-gradient(linear, left top, left bottom, from(#ebebeb), to(#f5f5f5));
-  background-image:         linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%);
-  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);
-  background-repeat: repeat-x;
-}
-.progress-bar {
-  background-image: -webkit-linear-gradient(top, #337ab7 0%, #286090 100%);
-  background-image:      -o-linear-gradient(top, #337ab7 0%, #286090 100%);
-  background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#286090));
-  background-image:         linear-gradient(to bottom, #337ab7 0%, #286090 100%);
-  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);
-  background-repeat: repeat-x;
-}
-.progress-bar-success {
-  background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%);
-  background-image:      -o-linear-gradient(top, #5cb85c 0%, #449d44 100%);
-  background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#449d44));
-  background-image:         linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);
-  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);
-  background-repeat: repeat-x;
-}
-.progress-bar-info {
-  background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
-  background-image:      -o-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
-  background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#31b0d5));
-  background-image:         linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%);
-  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);
-  background-repeat: repeat-x;
-}
-.progress-bar-warning {
-  background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
-  background-image:      -o-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
-  background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#ec971f));
-  background-image:         linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%);
-  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);
-  background-repeat: repeat-x;
-}
-.progress-bar-danger {
-  background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%);
-  background-image:      -o-linear-gradient(top, #d9534f 0%, #c9302c 100%);
-  background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c9302c));
-  background-image:         linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);
-  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);
-  background-repeat: repeat-x;
-}
-.progress-bar-striped {
-  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
-  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
-  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
-}
-.list-group {
-  border-radius: 4px;
-  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
-          box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
-}
-.list-group-item.active,
-.list-group-item.active:hover,
-.list-group-item.active:focus {
-  text-shadow: 0 -1px 0 #286090;
-  background-image: -webkit-linear-gradient(top, #337ab7 0%, #2b669a 100%);
-  background-image:      -o-linear-gradient(top, #337ab7 0%, #2b669a 100%);
-  background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2b669a));
-  background-image:         linear-gradient(to bottom, #337ab7 0%, #2b669a 100%);
-  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);
-  background-repeat: repeat-x;
-  border-color: #2b669a;
-}
-.list-group-item.active .badge,
-.list-group-item.active:hover .badge,
-.list-group-item.active:focus .badge {
-  text-shadow: none;
-}
-.panel {
-  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
-          box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
-}
-.panel-default > .panel-heading {
-  background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
-  background-image:      -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
-  background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8));
-  background-image:         linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
-  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
-  background-repeat: repeat-x;
-}
-.panel-primary > .panel-heading {
-  background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
-  background-image:      -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
-  background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));
-  background-image:         linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
-  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);
-  background-repeat: repeat-x;
-}
-.panel-success > .panel-heading {
-  background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);
-  background-image:      -o-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);
-  background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#d0e9c6));
-  background-image:         linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%);
-  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);
-  background-repeat: repeat-x;
-}
-.panel-info > .panel-heading {
-  background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);
-  background-image:      -o-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);
-  background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#c4e3f3));
-  background-image:         linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%);
-  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);
-  background-repeat: repeat-x;
-}
-.panel-warning > .panel-heading {
-  background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);
-  background-image:      -o-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);
-  background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#faf2cc));
-  background-image:         linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%);
-  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);
-  background-repeat: repeat-x;
-}
-.panel-danger > .panel-heading {
-  background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%);
-  background-image:      -o-linear-gradient(top, #f2dede 0%, #ebcccc 100%);
-  background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#ebcccc));
-  background-image:         linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%);
-  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);
-  background-repeat: repeat-x;
-}
-.well {
-  background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);
-  background-image:      -o-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);
-  background-image: -webkit-gradient(linear, left top, left bottom, from(#e8e8e8), to(#f5f5f5));
-  background-image:         linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%);
-  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);
-  background-repeat: repeat-x;
-  border-color: #dcdcdc;
-  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1);
-          box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1);
-}
-/*# sourceMappingURL=bootstrap-theme.css.map */
diff --git a/src/main/webapp/vendors/bootstrap/dist/css/bootstrap-theme.css.map b/src/main/webapp/vendors/bootstrap/dist/css/bootstrap-theme.css.map
deleted file mode 100644
index 21e19101e1a57da0dc43183b634db4b354560f5b..0000000000000000000000000000000000000000
--- a/src/main/webapp/vendors/bootstrap/dist/css/bootstrap-theme.css.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"sources":["bootstrap-theme.css","less/theme.less","less/mixins/vendor-prefixes.less","less/mixins/gradients.less","less/mixins/reset-filter.less"],"names":[],"mappings":"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","file":"bootstrap-theme.css","sourcesContent":["/*!\n * Bootstrap v3.3.6 (http://getbootstrap.com)\n * Copyright 2011-2015 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n.btn-default,\n.btn-primary,\n.btn-success,\n.btn-info,\n.btn-warning,\n.btn-danger {\n  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);\n  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);\n  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.btn-default:active,\n.btn-primary:active,\n.btn-success:active,\n.btn-info:active,\n.btn-warning:active,\n.btn-danger:active,\n.btn-default.active,\n.btn-primary.active,\n.btn-success.active,\n.btn-info.active,\n.btn-warning.active,\n.btn-danger.active {\n  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.btn-default.disabled,\n.btn-primary.disabled,\n.btn-success.disabled,\n.btn-info.disabled,\n.btn-warning.disabled,\n.btn-danger.disabled,\n.btn-default[disabled],\n.btn-primary[disabled],\n.btn-success[disabled],\n.btn-info[disabled],\n.btn-warning[disabled],\n.btn-danger[disabled],\nfieldset[disabled] .btn-default,\nfieldset[disabled] .btn-primary,\nfieldset[disabled] .btn-success,\nfieldset[disabled] .btn-info,\nfieldset[disabled] .btn-warning,\nfieldset[disabled] .btn-danger {\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.btn-default .badge,\n.btn-primary .badge,\n.btn-success .badge,\n.btn-info .badge,\n.btn-warning .badge,\n.btn-danger .badge {\n  text-shadow: none;\n}\n.btn:active,\n.btn.active {\n  background-image: none;\n}\n.btn-default {\n  background-image: -webkit-linear-gradient(top, #fff 0%, #e0e0e0 100%);\n  background-image: -o-linear-gradient(top, #fff 0%, #e0e0e0 100%);\n  background-image: linear-gradient(to bottom, #fff 0%, #e0e0e0 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);\n  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n  background-repeat: repeat-x;\n  border-color: #dbdbdb;\n  text-shadow: 0 1px 0 #fff;\n  border-color: #ccc;\n}\n.btn-default:hover,\n.btn-default:focus {\n  background-color: #e0e0e0;\n  background-position: 0 -15px;\n}\n.btn-default:active,\n.btn-default.active {\n  background-color: #e0e0e0;\n  border-color: #dbdbdb;\n}\n.btn-default.disabled,\n.btn-default[disabled],\nfieldset[disabled] .btn-default,\n.btn-default.disabled:hover,\n.btn-default[disabled]:hover,\nfieldset[disabled] .btn-default:hover,\n.btn-default.disabled:focus,\n.btn-default[disabled]:focus,\nfieldset[disabled] .btn-default:focus,\n.btn-default.disabled.focus,\n.btn-default[disabled].focus,\nfieldset[disabled] .btn-default.focus,\n.btn-default.disabled:active,\n.btn-default[disabled]:active,\nfieldset[disabled] .btn-default:active,\n.btn-default.disabled.active,\n.btn-default[disabled].active,\nfieldset[disabled] .btn-default.active {\n  background-color: #e0e0e0;\n  background-image: none;\n}\n.btn-primary {\n  background-image: -webkit-linear-gradient(top, #337ab7 0%, #265a88 100%);\n  background-image: -o-linear-gradient(top, #337ab7 0%, #265a88 100%);\n  background-image: linear-gradient(to bottom, #337ab7 0%, #265a88 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);\n  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n  background-repeat: repeat-x;\n  border-color: #245580;\n}\n.btn-primary:hover,\n.btn-primary:focus {\n  background-color: #265a88;\n  background-position: 0 -15px;\n}\n.btn-primary:active,\n.btn-primary.active {\n  background-color: #265a88;\n  border-color: #245580;\n}\n.btn-primary.disabled,\n.btn-primary[disabled],\nfieldset[disabled] .btn-primary,\n.btn-primary.disabled:hover,\n.btn-primary[disabled]:hover,\nfieldset[disabled] .btn-primary:hover,\n.btn-primary.disabled:focus,\n.btn-primary[disabled]:focus,\nfieldset[disabled] .btn-primary:focus,\n.btn-primary.disabled.focus,\n.btn-primary[disabled].focus,\nfieldset[disabled] .btn-primary.focus,\n.btn-primary.disabled:active,\n.btn-primary[disabled]:active,\nfieldset[disabled] .btn-primary:active,\n.btn-primary.disabled.active,\n.btn-primary[disabled].active,\nfieldset[disabled] .btn-primary.active {\n  background-color: #265a88;\n  background-image: none;\n}\n.btn-success {\n  background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%);\n  background-image: -o-linear-gradient(top, #5cb85c 0%, #419641 100%);\n  background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);\n  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n  background-repeat: repeat-x;\n  border-color: #3e8f3e;\n}\n.btn-success:hover,\n.btn-success:focus {\n  background-color: #419641;\n  background-position: 0 -15px;\n}\n.btn-success:active,\n.btn-success.active {\n  background-color: #419641;\n  border-color: #3e8f3e;\n}\n.btn-success.disabled,\n.btn-success[disabled],\nfieldset[disabled] .btn-success,\n.btn-success.disabled:hover,\n.btn-success[disabled]:hover,\nfieldset[disabled] .btn-success:hover,\n.btn-success.disabled:focus,\n.btn-success[disabled]:focus,\nfieldset[disabled] .btn-success:focus,\n.btn-success.disabled.focus,\n.btn-success[disabled].focus,\nfieldset[disabled] .btn-success.focus,\n.btn-success.disabled:active,\n.btn-success[disabled]:active,\nfieldset[disabled] .btn-success:active,\n.btn-success.disabled.active,\n.btn-success[disabled].active,\nfieldset[disabled] .btn-success.active {\n  background-color: #419641;\n  background-image: none;\n}\n.btn-info {\n  background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);\n  background-image: -o-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);\n  background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);\n  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n  background-repeat: repeat-x;\n  border-color: #28a4c9;\n}\n.btn-info:hover,\n.btn-info:focus {\n  background-color: #2aabd2;\n  background-position: 0 -15px;\n}\n.btn-info:active,\n.btn-info.active {\n  background-color: #2aabd2;\n  border-color: #28a4c9;\n}\n.btn-info.disabled,\n.btn-info[disabled],\nfieldset[disabled] .btn-info,\n.btn-info.disabled:hover,\n.btn-info[disabled]:hover,\nfieldset[disabled] .btn-info:hover,\n.btn-info.disabled:focus,\n.btn-info[disabled]:focus,\nfieldset[disabled] .btn-info:focus,\n.btn-info.disabled.focus,\n.btn-info[disabled].focus,\nfieldset[disabled] .btn-info.focus,\n.btn-info.disabled:active,\n.btn-info[disabled]:active,\nfieldset[disabled] .btn-info:active,\n.btn-info.disabled.active,\n.btn-info[disabled].active,\nfieldset[disabled] .btn-info.active {\n  background-color: #2aabd2;\n  background-image: none;\n}\n.btn-warning {\n  background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);\n  background-image: -o-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);\n  background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);\n  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n  background-repeat: repeat-x;\n  border-color: #e38d13;\n}\n.btn-warning:hover,\n.btn-warning:focus {\n  background-color: #eb9316;\n  background-position: 0 -15px;\n}\n.btn-warning:active,\n.btn-warning.active {\n  background-color: #eb9316;\n  border-color: #e38d13;\n}\n.btn-warning.disabled,\n.btn-warning[disabled],\nfieldset[disabled] .btn-warning,\n.btn-warning.disabled:hover,\n.btn-warning[disabled]:hover,\nfieldset[disabled] .btn-warning:hover,\n.btn-warning.disabled:focus,\n.btn-warning[disabled]:focus,\nfieldset[disabled] .btn-warning:focus,\n.btn-warning.disabled.focus,\n.btn-warning[disabled].focus,\nfieldset[disabled] .btn-warning.focus,\n.btn-warning.disabled:active,\n.btn-warning[disabled]:active,\nfieldset[disabled] .btn-warning:active,\n.btn-warning.disabled.active,\n.btn-warning[disabled].active,\nfieldset[disabled] .btn-warning.active {\n  background-color: #eb9316;\n  background-image: none;\n}\n.btn-danger {\n  background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%);\n  background-image: -o-linear-gradient(top, #d9534f 0%, #c12e2a 100%);\n  background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);\n  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n  background-repeat: repeat-x;\n  border-color: #b92c28;\n}\n.btn-danger:hover,\n.btn-danger:focus {\n  background-color: #c12e2a;\n  background-position: 0 -15px;\n}\n.btn-danger:active,\n.btn-danger.active {\n  background-color: #c12e2a;\n  border-color: #b92c28;\n}\n.btn-danger.disabled,\n.btn-danger[disabled],\nfieldset[disabled] .btn-danger,\n.btn-danger.disabled:hover,\n.btn-danger[disabled]:hover,\nfieldset[disabled] .btn-danger:hover,\n.btn-danger.disabled:focus,\n.btn-danger[disabled]:focus,\nfieldset[disabled] .btn-danger:focus,\n.btn-danger.disabled.focus,\n.btn-danger[disabled].focus,\nfieldset[disabled] .btn-danger.focus,\n.btn-danger.disabled:active,\n.btn-danger[disabled]:active,\nfieldset[disabled] .btn-danger:active,\n.btn-danger.disabled.active,\n.btn-danger[disabled].active,\nfieldset[disabled] .btn-danger.active {\n  background-color: #c12e2a;\n  background-image: none;\n}\n.thumbnail,\n.img-thumbnail {\n  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n}\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n  background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n  background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n  background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);\n  background-repeat: repeat-x;\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);\n  background-color: #e8e8e8;\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n  background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n  background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n  background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);\n  background-repeat: repeat-x;\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);\n  background-color: #2e6da4;\n}\n.navbar-default {\n  background-image: -webkit-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);\n  background-image: -o-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);\n  background-image: linear-gradient(to bottom, #ffffff 0%, #f8f8f8 100%);\n  background-repeat: repeat-x;\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);\n  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n  border-radius: 4px;\n  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);\n  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);\n}\n.navbar-default .navbar-nav > .open > a,\n.navbar-default .navbar-nav > .active > a {\n  background-image: -webkit-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);\n  background-image: -o-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);\n  background-image: linear-gradient(to bottom, #dbdbdb 0%, #e2e2e2 100%);\n  background-repeat: repeat-x;\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);\n  -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);\n  box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);\n}\n.navbar-brand,\n.navbar-nav > li > a {\n  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);\n}\n.navbar-inverse {\n  background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222 100%);\n  background-image: -o-linear-gradient(top, #3c3c3c 0%, #222 100%);\n  background-image: linear-gradient(to bottom, #3c3c3c 0%, #222 100%);\n  background-repeat: repeat-x;\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);\n  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n  border-radius: 4px;\n}\n.navbar-inverse .navbar-nav > .open > a,\n.navbar-inverse .navbar-nav > .active > a {\n  background-image: -webkit-linear-gradient(top, #080808 0%, #0f0f0f 100%);\n  background-image: -o-linear-gradient(top, #080808 0%, #0f0f0f 100%);\n  background-image: linear-gradient(to bottom, #080808 0%, #0f0f0f 100%);\n  background-repeat: repeat-x;\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);\n  -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);\n  box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);\n}\n.navbar-inverse .navbar-brand,\n.navbar-inverse .navbar-nav > li > a {\n  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);\n}\n.navbar-static-top,\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n  border-radius: 0;\n}\n@media (max-width: 767px) {\n  .navbar .navbar-nav .open .dropdown-menu > .active > a,\n  .navbar .navbar-nav .open .dropdown-menu > .active > a:hover,\n  .navbar .navbar-nav .open .dropdown-menu > .active > a:focus {\n    color: #fff;\n    background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n    background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n    background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);\n    background-repeat: repeat-x;\n    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);\n  }\n}\n.alert {\n  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);\n  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);\n  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);\n}\n.alert-success {\n  background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);\n  background-image: -o-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);\n  background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);\n  background-repeat: repeat-x;\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);\n  border-color: #b2dba1;\n}\n.alert-info {\n  background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%);\n  background-image: -o-linear-gradient(top, #d9edf7 0%, #b9def0 100%);\n  background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);\n  background-repeat: repeat-x;\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);\n  border-color: #9acfea;\n}\n.alert-warning {\n  background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);\n  background-image: -o-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);\n  background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%);\n  background-repeat: repeat-x;\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);\n  border-color: #f5e79e;\n}\n.alert-danger {\n  background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);\n  background-image: -o-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);\n  background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%);\n  background-repeat: repeat-x;\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);\n  border-color: #dca7a7;\n}\n.progress {\n  background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);\n  background-image: -o-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);\n  background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%);\n  background-repeat: repeat-x;\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);\n}\n.progress-bar {\n  background-image: -webkit-linear-gradient(top, #337ab7 0%, #286090 100%);\n  background-image: -o-linear-gradient(top, #337ab7 0%, #286090 100%);\n  background-image: linear-gradient(to bottom, #337ab7 0%, #286090 100%);\n  background-repeat: repeat-x;\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);\n}\n.progress-bar-success {\n  background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%);\n  background-image: -o-linear-gradient(top, #5cb85c 0%, #449d44 100%);\n  background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);\n  background-repeat: repeat-x;\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);\n}\n.progress-bar-info {\n  background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);\n  background-image: -o-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);\n  background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%);\n  background-repeat: repeat-x;\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);\n}\n.progress-bar-warning {\n  background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);\n  background-image: -o-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);\n  background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%);\n  background-repeat: repeat-x;\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);\n}\n.progress-bar-danger {\n  background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%);\n  background-image: -o-linear-gradient(top, #d9534f 0%, #c9302c 100%);\n  background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);\n  background-repeat: repeat-x;\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);\n}\n.progress-bar-striped {\n  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.list-group {\n  border-radius: 4px;\n  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n  text-shadow: 0 -1px 0 #286090;\n  background-image: -webkit-linear-gradient(top, #337ab7 0%, #2b669a 100%);\n  background-image: -o-linear-gradient(top, #337ab7 0%, #2b669a 100%);\n  background-image: linear-gradient(to bottom, #337ab7 0%, #2b669a 100%);\n  background-repeat: repeat-x;\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);\n  border-color: #2b669a;\n}\n.list-group-item.active .badge,\n.list-group-item.active:hover .badge,\n.list-group-item.active:focus .badge {\n  text-shadow: none;\n}\n.panel {\n  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);\n  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);\n}\n.panel-default > .panel-heading {\n  background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n  background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n  background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);\n  background-repeat: repeat-x;\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);\n}\n.panel-primary > .panel-heading {\n  background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n  background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n  background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);\n  background-repeat: repeat-x;\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);\n}\n.panel-success > .panel-heading {\n  background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);\n  background-image: -o-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);\n  background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%);\n  background-repeat: repeat-x;\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);\n}\n.panel-info > .panel-heading {\n  background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);\n  background-image: -o-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);\n  background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%);\n  background-repeat: repeat-x;\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);\n}\n.panel-warning > .panel-heading {\n  background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);\n  background-image: -o-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);\n  background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%);\n  background-repeat: repeat-x;\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);\n}\n.panel-danger > .panel-heading {\n  background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%);\n  background-image: -o-linear-gradient(top, #f2dede 0%, #ebcccc 100%);\n  background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%);\n  background-repeat: repeat-x;\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);\n}\n.well {\n  background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);\n  background-image: -o-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);\n  background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%);\n  background-repeat: repeat-x;\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);\n  border-color: #dcdcdc;\n  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);\n  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);\n}\n/*# sourceMappingURL=bootstrap-theme.css.map */","/*!\n * Bootstrap v3.3.6 (http://getbootstrap.com)\n * Copyright 2011-2015 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n\n//\n// Load core variables and mixins\n// --------------------------------------------------\n\n@import \"variables.less\";\n@import \"mixins.less\";\n\n\n//\n// Buttons\n// --------------------------------------------------\n\n// Common styles\n.btn-default,\n.btn-primary,\n.btn-success,\n.btn-info,\n.btn-warning,\n.btn-danger {\n  text-shadow: 0 -1px 0 rgba(0,0,0,.2);\n  @shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 1px rgba(0,0,0,.075);\n  .box-shadow(@shadow);\n\n  // Reset the shadow\n  &:active,\n  &.active {\n    .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n  }\n\n  &.disabled,\n  &[disabled],\n  fieldset[disabled] & {\n    .box-shadow(none);\n  }\n\n  .badge {\n    text-shadow: none;\n  }\n}\n\n// Mixin for generating new styles\n.btn-styles(@btn-color: #555) {\n  #gradient > .vertical(@start-color: @btn-color; @end-color: darken(@btn-color, 12%));\n  .reset-filter(); // Disable gradients for IE9 because filter bleeds through rounded corners; see https://github.com/twbs/bootstrap/issues/10620\n  background-repeat: repeat-x;\n  border-color: darken(@btn-color, 14%);\n\n  &:hover,\n  &:focus  {\n    background-color: darken(@btn-color, 12%);\n    background-position: 0 -15px;\n  }\n\n  &:active,\n  &.active {\n    background-color: darken(@btn-color, 12%);\n    border-color: darken(@btn-color, 14%);\n  }\n\n  &.disabled,\n  &[disabled],\n  fieldset[disabled] & {\n    &,\n    &:hover,\n    &:focus,\n    &.focus,\n    &:active,\n    &.active {\n      background-color: darken(@btn-color, 12%);\n      background-image: none;\n    }\n  }\n}\n\n// Common styles\n.btn {\n  // Remove the gradient for the pressed/active state\n  &:active,\n  &.active {\n    background-image: none;\n  }\n}\n\n// Apply the mixin to the buttons\n.btn-default { .btn-styles(@btn-default-bg); text-shadow: 0 1px 0 #fff; border-color: #ccc; }\n.btn-primary { .btn-styles(@btn-primary-bg); }\n.btn-success { .btn-styles(@btn-success-bg); }\n.btn-info    { .btn-styles(@btn-info-bg); }\n.btn-warning { .btn-styles(@btn-warning-bg); }\n.btn-danger  { .btn-styles(@btn-danger-bg); }\n\n\n//\n// Images\n// --------------------------------------------------\n\n.thumbnail,\n.img-thumbnail {\n  .box-shadow(0 1px 2px rgba(0,0,0,.075));\n}\n\n\n//\n// Dropdowns\n// --------------------------------------------------\n\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n  #gradient > .vertical(@start-color: @dropdown-link-hover-bg; @end-color: darken(@dropdown-link-hover-bg, 5%));\n  background-color: darken(@dropdown-link-hover-bg, 5%);\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n  #gradient > .vertical(@start-color: @dropdown-link-active-bg; @end-color: darken(@dropdown-link-active-bg, 5%));\n  background-color: darken(@dropdown-link-active-bg, 5%);\n}\n\n\n//\n// Navbar\n// --------------------------------------------------\n\n// Default navbar\n.navbar-default {\n  #gradient > .vertical(@start-color: lighten(@navbar-default-bg, 10%); @end-color: @navbar-default-bg);\n  .reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered\n  border-radius: @navbar-border-radius;\n  @shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 5px rgba(0,0,0,.075);\n  .box-shadow(@shadow);\n\n  .navbar-nav > .open > a,\n  .navbar-nav > .active > a {\n    #gradient > .vertical(@start-color: darken(@navbar-default-link-active-bg, 5%); @end-color: darken(@navbar-default-link-active-bg, 2%));\n    .box-shadow(inset 0 3px 9px rgba(0,0,0,.075));\n  }\n}\n.navbar-brand,\n.navbar-nav > li > a {\n  text-shadow: 0 1px 0 rgba(255,255,255,.25);\n}\n\n// Inverted navbar\n.navbar-inverse {\n  #gradient > .vertical(@start-color: lighten(@navbar-inverse-bg, 10%); @end-color: @navbar-inverse-bg);\n  .reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered; see https://github.com/twbs/bootstrap/issues/10257\n  border-radius: @navbar-border-radius;\n  .navbar-nav > .open > a,\n  .navbar-nav > .active > a {\n    #gradient > .vertical(@start-color: @navbar-inverse-link-active-bg; @end-color: lighten(@navbar-inverse-link-active-bg, 2.5%));\n    .box-shadow(inset 0 3px 9px rgba(0,0,0,.25));\n  }\n\n  .navbar-brand,\n  .navbar-nav > li > a {\n    text-shadow: 0 -1px 0 rgba(0,0,0,.25);\n  }\n}\n\n// Undo rounded corners in static and fixed navbars\n.navbar-static-top,\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n  border-radius: 0;\n}\n\n// Fix active state of dropdown items in collapsed mode\n@media (max-width: @grid-float-breakpoint-max) {\n  .navbar .navbar-nav .open .dropdown-menu > .active > a {\n    &,\n    &:hover,\n    &:focus {\n      color: #fff;\n      #gradient > .vertical(@start-color: @dropdown-link-active-bg; @end-color: darken(@dropdown-link-active-bg, 5%));\n    }\n  }\n}\n\n\n//\n// Alerts\n// --------------------------------------------------\n\n// Common styles\n.alert {\n  text-shadow: 0 1px 0 rgba(255,255,255,.2);\n  @shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 1px 2px rgba(0,0,0,.05);\n  .box-shadow(@shadow);\n}\n\n// Mixin for generating new styles\n.alert-styles(@color) {\n  #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 7.5%));\n  border-color: darken(@color, 15%);\n}\n\n// Apply the mixin to the alerts\n.alert-success    { .alert-styles(@alert-success-bg); }\n.alert-info       { .alert-styles(@alert-info-bg); }\n.alert-warning    { .alert-styles(@alert-warning-bg); }\n.alert-danger     { .alert-styles(@alert-danger-bg); }\n\n\n//\n// Progress bars\n// --------------------------------------------------\n\n// Give the progress background some depth\n.progress {\n  #gradient > .vertical(@start-color: darken(@progress-bg, 4%); @end-color: @progress-bg)\n}\n\n// Mixin for generating new styles\n.progress-bar-styles(@color) {\n  #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 10%));\n}\n\n// Apply the mixin to the progress bars\n.progress-bar            { .progress-bar-styles(@progress-bar-bg); }\n.progress-bar-success    { .progress-bar-styles(@progress-bar-success-bg); }\n.progress-bar-info       { .progress-bar-styles(@progress-bar-info-bg); }\n.progress-bar-warning    { .progress-bar-styles(@progress-bar-warning-bg); }\n.progress-bar-danger     { .progress-bar-styles(@progress-bar-danger-bg); }\n\n// Reset the striped class because our mixins don't do multiple gradients and\n// the above custom styles override the new `.progress-bar-striped` in v3.2.0.\n.progress-bar-striped {\n  #gradient > .striped();\n}\n\n\n//\n// List groups\n// --------------------------------------------------\n\n.list-group {\n  border-radius: @border-radius-base;\n  .box-shadow(0 1px 2px rgba(0,0,0,.075));\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n  text-shadow: 0 -1px 0 darken(@list-group-active-bg, 10%);\n  #gradient > .vertical(@start-color: @list-group-active-bg; @end-color: darken(@list-group-active-bg, 7.5%));\n  border-color: darken(@list-group-active-border, 7.5%);\n\n  .badge {\n    text-shadow: none;\n  }\n}\n\n\n//\n// Panels\n// --------------------------------------------------\n\n// Common styles\n.panel {\n  .box-shadow(0 1px 2px rgba(0,0,0,.05));\n}\n\n// Mixin for generating new styles\n.panel-heading-styles(@color) {\n  #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 5%));\n}\n\n// Apply the mixin to the panel headings only\n.panel-default > .panel-heading   { .panel-heading-styles(@panel-default-heading-bg); }\n.panel-primary > .panel-heading   { .panel-heading-styles(@panel-primary-heading-bg); }\n.panel-success > .panel-heading   { .panel-heading-styles(@panel-success-heading-bg); }\n.panel-info > .panel-heading      { .panel-heading-styles(@panel-info-heading-bg); }\n.panel-warning > .panel-heading   { .panel-heading-styles(@panel-warning-heading-bg); }\n.panel-danger > .panel-heading    { .panel-heading-styles(@panel-danger-heading-bg); }\n\n\n//\n// Wells\n// --------------------------------------------------\n\n.well {\n  #gradient > .vertical(@start-color: darken(@well-bg, 5%); @end-color: @well-bg);\n  border-color: darken(@well-bg, 10%);\n  @shadow: inset 0 1px 3px rgba(0,0,0,.05), 0 1px 0 rgba(255,255,255,.1);\n  .box-shadow(@shadow);\n}\n","// Vendor Prefixes\n//\n// All vendor mixins are deprecated as of v3.2.0 due to the introduction of\n// Autoprefixer in our Gruntfile. They have been removed in v4.\n\n// - Animations\n// - Backface visibility\n// - Box shadow\n// - Box sizing\n// - Content columns\n// - Hyphens\n// - Placeholder text\n// - Transformations\n// - Transitions\n// - User Select\n\n\n// Animations\n.animation(@animation) {\n  -webkit-animation: @animation;\n       -o-animation: @animation;\n          animation: @animation;\n}\n.animation-name(@name) {\n  -webkit-animation-name: @name;\n          animation-name: @name;\n}\n.animation-duration(@duration) {\n  -webkit-animation-duration: @duration;\n          animation-duration: @duration;\n}\n.animation-timing-function(@timing-function) {\n  -webkit-animation-timing-function: @timing-function;\n          animation-timing-function: @timing-function;\n}\n.animation-delay(@delay) {\n  -webkit-animation-delay: @delay;\n          animation-delay: @delay;\n}\n.animation-iteration-count(@iteration-count) {\n  -webkit-animation-iteration-count: @iteration-count;\n          animation-iteration-count: @iteration-count;\n}\n.animation-direction(@direction) {\n  -webkit-animation-direction: @direction;\n          animation-direction: @direction;\n}\n.animation-fill-mode(@fill-mode) {\n  -webkit-animation-fill-mode: @fill-mode;\n          animation-fill-mode: @fill-mode;\n}\n\n// Backface visibility\n// Prevent browsers from flickering when using CSS 3D transforms.\n// Default value is `visible`, but can be changed to `hidden`\n\n.backface-visibility(@visibility) {\n  -webkit-backface-visibility: @visibility;\n     -moz-backface-visibility: @visibility;\n          backface-visibility: @visibility;\n}\n\n// Drop shadows\n//\n// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's\n// supported browsers that have box shadow capabilities now support it.\n\n.box-shadow(@shadow) {\n  -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n          box-shadow: @shadow;\n}\n\n// Box sizing\n.box-sizing(@boxmodel) {\n  -webkit-box-sizing: @boxmodel;\n     -moz-box-sizing: @boxmodel;\n          box-sizing: @boxmodel;\n}\n\n// CSS3 Content Columns\n.content-columns(@column-count; @column-gap: @grid-gutter-width) {\n  -webkit-column-count: @column-count;\n     -moz-column-count: @column-count;\n          column-count: @column-count;\n  -webkit-column-gap: @column-gap;\n     -moz-column-gap: @column-gap;\n          column-gap: @column-gap;\n}\n\n// Optional hyphenation\n.hyphens(@mode: auto) {\n  word-wrap: break-word;\n  -webkit-hyphens: @mode;\n     -moz-hyphens: @mode;\n      -ms-hyphens: @mode; // IE10+\n       -o-hyphens: @mode;\n          hyphens: @mode;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n  // Firefox\n  &::-moz-placeholder {\n    color: @color;\n    opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526\n  }\n  &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+\n  &::-webkit-input-placeholder  { color: @color; } // Safari and Chrome\n}\n\n// Transformations\n.scale(@ratio) {\n  -webkit-transform: scale(@ratio);\n      -ms-transform: scale(@ratio); // IE9 only\n       -o-transform: scale(@ratio);\n          transform: scale(@ratio);\n}\n.scale(@ratioX; @ratioY) {\n  -webkit-transform: scale(@ratioX, @ratioY);\n      -ms-transform: scale(@ratioX, @ratioY); // IE9 only\n       -o-transform: scale(@ratioX, @ratioY);\n          transform: scale(@ratioX, @ratioY);\n}\n.scaleX(@ratio) {\n  -webkit-transform: scaleX(@ratio);\n      -ms-transform: scaleX(@ratio); // IE9 only\n       -o-transform: scaleX(@ratio);\n          transform: scaleX(@ratio);\n}\n.scaleY(@ratio) {\n  -webkit-transform: scaleY(@ratio);\n      -ms-transform: scaleY(@ratio); // IE9 only\n       -o-transform: scaleY(@ratio);\n          transform: scaleY(@ratio);\n}\n.skew(@x; @y) {\n  -webkit-transform: skewX(@x) skewY(@y);\n      -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+\n       -o-transform: skewX(@x) skewY(@y);\n          transform: skewX(@x) skewY(@y);\n}\n.translate(@x; @y) {\n  -webkit-transform: translate(@x, @y);\n      -ms-transform: translate(@x, @y); // IE9 only\n       -o-transform: translate(@x, @y);\n          transform: translate(@x, @y);\n}\n.translate3d(@x; @y; @z) {\n  -webkit-transform: translate3d(@x, @y, @z);\n          transform: translate3d(@x, @y, @z);\n}\n.rotate(@degrees) {\n  -webkit-transform: rotate(@degrees);\n      -ms-transform: rotate(@degrees); // IE9 only\n       -o-transform: rotate(@degrees);\n          transform: rotate(@degrees);\n}\n.rotateX(@degrees) {\n  -webkit-transform: rotateX(@degrees);\n      -ms-transform: rotateX(@degrees); // IE9 only\n       -o-transform: rotateX(@degrees);\n          transform: rotateX(@degrees);\n}\n.rotateY(@degrees) {\n  -webkit-transform: rotateY(@degrees);\n      -ms-transform: rotateY(@degrees); // IE9 only\n       -o-transform: rotateY(@degrees);\n          transform: rotateY(@degrees);\n}\n.perspective(@perspective) {\n  -webkit-perspective: @perspective;\n     -moz-perspective: @perspective;\n          perspective: @perspective;\n}\n.perspective-origin(@perspective) {\n  -webkit-perspective-origin: @perspective;\n     -moz-perspective-origin: @perspective;\n          perspective-origin: @perspective;\n}\n.transform-origin(@origin) {\n  -webkit-transform-origin: @origin;\n     -moz-transform-origin: @origin;\n      -ms-transform-origin: @origin; // IE9 only\n          transform-origin: @origin;\n}\n\n\n// Transitions\n\n.transition(@transition) {\n  -webkit-transition: @transition;\n       -o-transition: @transition;\n          transition: @transition;\n}\n.transition-property(@transition-property) {\n  -webkit-transition-property: @transition-property;\n          transition-property: @transition-property;\n}\n.transition-delay(@transition-delay) {\n  -webkit-transition-delay: @transition-delay;\n          transition-delay: @transition-delay;\n}\n.transition-duration(@transition-duration) {\n  -webkit-transition-duration: @transition-duration;\n          transition-duration: @transition-duration;\n}\n.transition-timing-function(@timing-function) {\n  -webkit-transition-timing-function: @timing-function;\n          transition-timing-function: @timing-function;\n}\n.transition-transform(@transition) {\n  -webkit-transition: -webkit-transform @transition;\n     -moz-transition: -moz-transform @transition;\n       -o-transition: -o-transform @transition;\n          transition: transform @transition;\n}\n\n\n// User select\n// For selecting text on the page\n\n.user-select(@select) {\n  -webkit-user-select: @select;\n     -moz-user-select: @select;\n      -ms-user-select: @select; // IE10+\n          user-select: @select;\n}\n","// Gradients\n\n#gradient {\n\n  // Horizontal gradient, from left to right\n  //\n  // Creates two color stops, start and end, by specifying a color and position for each color stop.\n  // Color stops are not available in IE9 and below.\n  .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n    background-image: -webkit-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n    background-image: -o-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Opera 12\n    background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n    background-repeat: repeat-x;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down\n  }\n\n  // Vertical gradient, from top to bottom\n  //\n  // Creates two color stops, start and end, by specifying a color and position for each color stop.\n  // Color stops are not available in IE9 and below.\n  .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n    background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent);  // Safari 5.1-6, Chrome 10+\n    background-image: -o-linear-gradient(top, @start-color @start-percent, @end-color @end-percent);  // Opera 12\n    background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n    background-repeat: repeat-x;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down\n  }\n\n  .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {\n    background-repeat: repeat-x;\n    background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+\n    background-image: -o-linear-gradient(@deg, @start-color, @end-color); // Opera 12\n    background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n  }\n  .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n    background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n    background-image: -o-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n    background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);\n    background-repeat: no-repeat;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n  }\n  .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n    background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n    background-image: -o-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n    background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n    background-repeat: no-repeat;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n  }\n  .radial(@inner-color: #555; @outer-color: #333) {\n    background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);\n    background-image: radial-gradient(circle, @inner-color, @outer-color);\n    background-repeat: no-repeat;\n  }\n  .striped(@color: rgba(255,255,255,.15); @angle: 45deg) {\n    background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n    background-image: -o-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n    background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n  }\n}\n","// Reset filters for IE\n//\n// When you need to remove a gradient background, do not forget to use this to reset\n// the IE filter for IE9 and below.\n\n.reset-filter() {\n  filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(enabled = false)\"));\n}\n"]}
\ No newline at end of file
diff --git a/src/main/webapp/vendors/bootstrap/dist/css/bootstrap-theme.min.css b/src/main/webapp/vendors/bootstrap/dist/css/bootstrap-theme.min.css
deleted file mode 100644
index dc95d8e4e4bdf33fd0d151908fbe19b0439be115..0000000000000000000000000000000000000000
--- a/src/main/webapp/vendors/bootstrap/dist/css/bootstrap-theme.min.css
+++ /dev/null
@@ -1,6 +0,0 @@
-/*!
- * Bootstrap v3.3.6 (http://getbootstrap.com)
- * Copyright 2011-2015 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- */.btn-danger,.btn-default,.btn-info,.btn-primary,.btn-success,.btn-warning{text-shadow:0 -1px 0 rgba(0,0,0,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-danger.active,.btn-danger:active,.btn-default.active,.btn-default:active,.btn-info.active,.btn-info:active,.btn-primary.active,.btn-primary:active,.btn-success.active,.btn-success:active,.btn-warning.active,.btn-warning:active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-danger.disabled,.btn-danger[disabled],.btn-default.disabled,.btn-default[disabled],.btn-info.disabled,.btn-info[disabled],.btn-primary.disabled,.btn-primary[disabled],.btn-success.disabled,.btn-success[disabled],.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-danger,fieldset[disabled] .btn-default,fieldset[disabled] .btn-info,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-success,fieldset[disabled] .btn-warning{-webkit-box-shadow:none;box-shadow:none}.btn-danger .badge,.btn-default .badge,.btn-info .badge,.btn-primary .badge,.btn-success .badge,.btn-warning .badge{text-shadow:none}.btn.active,.btn:active{background-image:none}.btn-default{text-shadow:0 1px 0 #fff;background-image:-webkit-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-o-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e0e0e0));background-image:linear-gradient(to bottom,#fff 0,#e0e0e0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#dbdbdb;border-color:#ccc}.btn-default:focus,.btn-default:hover{background-color:#e0e0e0;background-position:0 -15px}.btn-default.active,.btn-default:active{background-color:#e0e0e0;border-color:#dbdbdb}.btn-default.disabled,.btn-default.disabled.active,.btn-default.disabled.focus,.btn-default.disabled:active,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled],.btn-default[disabled].active,.btn-default[disabled].focus,.btn-default[disabled]:active,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default,fieldset[disabled] .btn-default.active,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#e0e0e0;background-image:none}.btn-primary{background-image:-webkit-linear-gradient(top,#337ab7 0,#265a88 100%);background-image:-o-linear-gradient(top,#337ab7 0,#265a88 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#265a88));background-image:linear-gradient(to bottom,#337ab7 0,#265a88 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#245580}.btn-primary:focus,.btn-primary:hover{background-color:#265a88;background-position:0 -15px}.btn-primary.active,.btn-primary:active{background-color:#265a88;border-color:#245580}.btn-primary.disabled,.btn-primary.disabled.active,.btn-primary.disabled.focus,.btn-primary.disabled:active,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled],.btn-primary[disabled].active,.btn-primary[disabled].focus,.btn-primary[disabled]:active,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-primary.active,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:active,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#265a88;background-image:none}.btn-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:-o-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#419641));background-image:linear-gradient(to bottom,#5cb85c 0,#419641 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#3e8f3e}.btn-success:focus,.btn-success:hover{background-color:#419641;background-position:0 -15px}.btn-success.active,.btn-success:active{background-color:#419641;border-color:#3e8f3e}.btn-success.disabled,.btn-success.disabled.active,.btn-success.disabled.focus,.btn-success.disabled:active,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled],.btn-success[disabled].active,.btn-success[disabled].focus,.btn-success[disabled]:active,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success,fieldset[disabled] .btn-success.active,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:active,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#419641;background-image:none}.btn-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:-o-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#2aabd2));background-image:linear-gradient(to bottom,#5bc0de 0,#2aabd2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#28a4c9}.btn-info:focus,.btn-info:hover{background-color:#2aabd2;background-position:0 -15px}.btn-info.active,.btn-info:active{background-color:#2aabd2;border-color:#28a4c9}.btn-info.disabled,.btn-info.disabled.active,.btn-info.disabled.focus,.btn-info.disabled:active,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled],.btn-info[disabled].active,.btn-info[disabled].focus,.btn-info[disabled]:active,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info,fieldset[disabled] .btn-info.active,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:active,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#2aabd2;background-image:none}.btn-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:-o-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#eb9316));background-image:linear-gradient(to bottom,#f0ad4e 0,#eb9316 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#e38d13}.btn-warning:focus,.btn-warning:hover{background-color:#eb9316;background-position:0 -15px}.btn-warning.active,.btn-warning:active{background-color:#eb9316;border-color:#e38d13}.btn-warning.disabled,.btn-warning.disabled.active,.btn-warning.disabled.focus,.btn-warning.disabled:active,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled],.btn-warning[disabled].active,.btn-warning[disabled].focus,.btn-warning[disabled]:active,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning,fieldset[disabled] .btn-warning.active,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:active,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#eb9316;background-image:none}.btn-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:-o-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c12e2a));background-image:linear-gradient(to bottom,#d9534f 0,#c12e2a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#b92c28}.btn-danger:focus,.btn-danger:hover{background-color:#c12e2a;background-position:0 -15px}.btn-danger.active,.btn-danger:active{background-color:#c12e2a;border-color:#b92c28}.btn-danger.disabled,.btn-danger.disabled.active,.btn-danger.disabled.focus,.btn-danger.disabled:active,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled],.btn-danger[disabled].active,.btn-danger[disabled].focus,.btn-danger[disabled]:active,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger,fieldset[disabled] .btn-danger.active,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:active,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#c12e2a;background-image:none}.img-thumbnail,.thumbnail{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{background-color:#e8e8e8;background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-o-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);background-repeat:repeat-x}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{background-color:#2e6da4;background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}.navbar-default{background-image:-webkit-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:-o-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#f8f8f8));background-image:linear-gradient(to bottom,#fff 0,#f8f8f8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075)}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.open>a{background-image:-webkit-linear-gradient(top,#dbdbdb 0,#e2e2e2 100%);background-image:-o-linear-gradient(top,#dbdbdb 0,#e2e2e2 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dbdbdb),to(#e2e2e2));background-image:linear-gradient(to bottom,#dbdbdb 0,#e2e2e2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.075);box-shadow:inset 0 3px 9px rgba(0,0,0,.075)}.navbar-brand,.navbar-nav>li>a{text-shadow:0 1px 0 rgba(255,255,255,.25)}.navbar-inverse{background-image:-webkit-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:-o-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#3c3c3c),to(#222));background-image:linear-gradient(to bottom,#3c3c3c 0,#222 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-radius:4px}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.open>a{background-image:-webkit-linear-gradient(top,#080808 0,#0f0f0f 100%);background-image:-o-linear-gradient(top,#080808 0,#0f0f0f 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#080808),to(#0f0f0f));background-image:linear-gradient(to bottom,#080808 0,#0f0f0f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.25);box-shadow:inset 0 3px 9px rgba(0,0,0,.25)}.navbar-inverse .navbar-brand,.navbar-inverse .navbar-nav>li>a{text-shadow:0 -1px 0 rgba(0,0,0,.25)}.navbar-fixed-bottom,.navbar-fixed-top,.navbar-static-top{border-radius:0}@media (max-width:767px){.navbar .navbar-nav .open .dropdown-menu>.active>a,.navbar .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}}.alert{text-shadow:0 1px 0 rgba(255,255,255,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05)}.alert-success{background-image:-webkit-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:-o-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dff0d8),to(#c8e5bc));background-image:linear-gradient(to bottom,#dff0d8 0,#c8e5bc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);background-repeat:repeat-x;border-color:#b2dba1}.alert-info{background-image:-webkit-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:-o-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9edf7),to(#b9def0));background-image:linear-gradient(to bottom,#d9edf7 0,#b9def0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);background-repeat:repeat-x;border-color:#9acfea}.alert-warning{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:-o-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fcf8e3),to(#f8efc0));background-image:linear-gradient(to bottom,#fcf8e3 0,#f8efc0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);background-repeat:repeat-x;border-color:#f5e79e}.alert-danger{background-image:-webkit-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:-o-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f2dede),to(#e7c3c3));background-image:linear-gradient(to bottom,#f2dede 0,#e7c3c3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);background-repeat:repeat-x;border-color:#dca7a7}.progress{background-image:-webkit-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:-o-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#f5f5f5));background-image:linear-gradient(to bottom,#ebebeb 0,#f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);background-repeat:repeat-x}.progress-bar{background-image:-webkit-linear-gradient(top,#337ab7 0,#286090 100%);background-image:-o-linear-gradient(top,#337ab7 0,#286090 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#286090));background-image:linear-gradient(to bottom,#337ab7 0,#286090 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);background-repeat:repeat-x}.progress-bar-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:-o-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#449d44));background-image:linear-gradient(to bottom,#5cb85c 0,#449d44 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);background-repeat:repeat-x}.progress-bar-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:-o-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#31b0d5));background-image:linear-gradient(to bottom,#5bc0de 0,#31b0d5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);background-repeat:repeat-x}.progress-bar-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:-o-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#ec971f));background-image:linear-gradient(to bottom,#f0ad4e 0,#ec971f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);background-repeat:repeat-x}.progress-bar-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:-o-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c9302c));background-image:linear-gradient(to bottom,#d9534f 0,#c9302c 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);background-repeat:repeat-x}.progress-bar-striped{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.list-group{border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{text-shadow:0 -1px 0 #286090;background-image:-webkit-linear-gradient(top,#337ab7 0,#2b669a 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2b669a 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2b669a));background-image:linear-gradient(to bottom,#337ab7 0,#2b669a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);background-repeat:repeat-x;border-color:#2b669a}.list-group-item.active .badge,.list-group-item.active:focus .badge,.list-group-item.active:hover .badge{text-shadow:none}.panel{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.05);box-shadow:0 1px 2px rgba(0,0,0,.05)}.panel-default>.panel-heading{background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-o-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);background-repeat:repeat-x}.panel-primary>.panel-heading{background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}.panel-success>.panel-heading{background-image:-webkit-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:-o-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dff0d8),to(#d0e9c6));background-image:linear-gradient(to bottom,#dff0d8 0,#d0e9c6 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);background-repeat:repeat-x}.panel-info>.panel-heading{background-image:-webkit-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:-o-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9edf7),to(#c4e3f3));background-image:linear-gradient(to bottom,#d9edf7 0,#c4e3f3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);background-repeat:repeat-x}.panel-warning>.panel-heading{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:-o-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fcf8e3),to(#faf2cc));background-image:linear-gradient(to bottom,#fcf8e3 0,#faf2cc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);background-repeat:repeat-x}.panel-danger>.panel-heading{background-image:-webkit-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:-o-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f2dede),to(#ebcccc));background-image:linear-gradient(to bottom,#f2dede 0,#ebcccc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);background-repeat:repeat-x}.well{background-image:-webkit-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:-o-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#e8e8e8),to(#f5f5f5));background-image:linear-gradient(to bottom,#e8e8e8 0,#f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);background-repeat:repeat-x;border-color:#dcdcdc;-webkit-box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1)}
-/*# sourceMappingURL=bootstrap-theme.min.css.map */
\ No newline at end of file
diff --git a/src/main/webapp/vendors/bootstrap/dist/css/bootstrap-theme.min.css.map b/src/main/webapp/vendors/bootstrap/dist/css/bootstrap-theme.min.css.map
deleted file mode 100644
index 2c6b65afc02ca83e758a65a2c538b3fddca66a00..0000000000000000000000000000000000000000
--- a/src/main/webapp/vendors/bootstrap/dist/css/bootstrap-theme.min.css.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"sources":["less/theme.less","less/mixins/vendor-prefixes.less","less/mixins/gradients.less","less/mixins/reset-filter.less"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/src/main/webapp/vendors/bootstrap/dist/css/bootstrap.css b/src/main/webapp/vendors/bootstrap/dist/css/bootstrap.css
deleted file mode 100644
index 42c79d6e459ece1c606314879146768dad3d2656..0000000000000000000000000000000000000000
--- a/src/main/webapp/vendors/bootstrap/dist/css/bootstrap.css
+++ /dev/null
@@ -1,6760 +0,0 @@
-/*!
- * Bootstrap v3.3.6 (http://getbootstrap.com)
- * Copyright 2011-2015 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- */
-/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
-html {
-  font-family: sans-serif;
-  -webkit-text-size-adjust: 100%;
-      -ms-text-size-adjust: 100%;
-}
-body {
-  margin: 0;
-}
-article,
-aside,
-details,
-figcaption,
-figure,
-footer,
-header,
-hgroup,
-main,
-menu,
-nav,
-section,
-summary {
-  display: block;
-}
-audio,
-canvas,
-progress,
-video {
-  display: inline-block;
-  vertical-align: baseline;
-}
-audio:not([controls]) {
-  display: none;
-  height: 0;
-}
-[hidden],
-template {
-  display: none;
-}
-a {
-  background-color: transparent;
-}
-a:active,
-a:hover {
-  outline: 0;
-}
-abbr[title] {
-  border-bottom: 1px dotted;
-}
-b,
-strong {
-  font-weight: bold;
-}
-dfn {
-  font-style: italic;
-}
-h1 {
-  margin: .67em 0;
-  font-size: 2em;
-}
-mark {
-  color: #000;
-  background: #ff0;
-}
-small {
-  font-size: 80%;
-}
-sub,
-sup {
-  position: relative;
-  font-size: 75%;
-  line-height: 0;
-  vertical-align: baseline;
-}
-sup {
-  top: -.5em;
-}
-sub {
-  bottom: -.25em;
-}
-img {
-  border: 0;
-}
-svg:not(:root) {
-  overflow: hidden;
-}
-figure {
-  margin: 1em 40px;
-}
-hr {
-  height: 0;
-  -webkit-box-sizing: content-box;
-     -moz-box-sizing: content-box;
-          box-sizing: content-box;
-}
-pre {
-  overflow: auto;
-}
-code,
-kbd,
-pre,
-samp {
-  font-family: monospace, monospace;
-  font-size: 1em;
-}
-button,
-input,
-optgroup,
-select,
-textarea {
-  margin: 0;
-  font: inherit;
-  color: inherit;
-}
-button {
-  overflow: visible;
-}
-button,
-select {
-  text-transform: none;
-}
-button,
-html input[type="button"],
-input[type="reset"],
-input[type="submit"] {
-  -webkit-appearance: button;
-  cursor: pointer;
-}
-button[disabled],
-html input[disabled] {
-  cursor: default;
-}
-button::-moz-focus-inner,
-input::-moz-focus-inner {
-  padding: 0;
-  border: 0;
-}
-input {
-  line-height: normal;
-}
-input[type="checkbox"],
-input[type="radio"] {
-  -webkit-box-sizing: border-box;
-     -moz-box-sizing: border-box;
-          box-sizing: border-box;
-  padding: 0;
-}
-input[type="number"]::-webkit-inner-spin-button,
-input[type="number"]::-webkit-outer-spin-button {
-  height: auto;
-}
-input[type="search"] {
-  -webkit-box-sizing: content-box;
-     -moz-box-sizing: content-box;
-          box-sizing: content-box;
-  -webkit-appearance: textfield;
-}
-input[type="search"]::-webkit-search-cancel-button,
-input[type="search"]::-webkit-search-decoration {
-  -webkit-appearance: none;
-}
-fieldset {
-  padding: .35em .625em .75em;
-  margin: 0 2px;
-  border: 1px solid #c0c0c0;
-}
-legend {
-  padding: 0;
-  border: 0;
-}
-textarea {
-  overflow: auto;
-}
-optgroup {
-  font-weight: bold;
-}
-table {
-  border-spacing: 0;
-  border-collapse: collapse;
-}
-td,
-th {
-  padding: 0;
-}
-/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
-@media print {
-  *,
-  *:before,
-  *:after {
-    color: #000 !important;
-    text-shadow: none !important;
-    background: transparent !important;
-    -webkit-box-shadow: none !important;
-            box-shadow: none !important;
-  }
-  a,
-  a:visited {
-    text-decoration: underline;
-  }
-  a[href]:after {
-    content: " (" attr(href) ")";
-  }
-  abbr[title]:after {
-    content: " (" attr(title) ")";
-  }
-  a[href^="#"]:after,
-  a[href^="javascript:"]:after {
-    content: "";
-  }
-  pre,
-  blockquote {
-    border: 1px solid #999;
-
-    page-break-inside: avoid;
-  }
-  thead {
-    display: table-header-group;
-  }
-  tr,
-  img {
-    page-break-inside: avoid;
-  }
-  img {
-    max-width: 100% !important;
-  }
-  p,
-  h2,
-  h3 {
-    orphans: 3;
-    widows: 3;
-  }
-  h2,
-  h3 {
-    page-break-after: avoid;
-  }
-  .navbar {
-    display: none;
-  }
-  .btn > .caret,
-  .dropup > .btn > .caret {
-    border-top-color: #000 !important;
-  }
-  .label {
-    border: 1px solid #000;
-  }
-  .table {
-    border-collapse: collapse !important;
-  }
-  .table td,
-  .table th {
-    background-color: #fff !important;
-  }
-  .table-bordered th,
-  .table-bordered td {
-    border: 1px solid #ddd !important;
-  }
-}
-@font-face {
-  font-family: 'Glyphicons Halflings';
-
-  src: url('../fonts/glyphicons-halflings-regular.eot');
-  src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
-}
-.glyphicon {
-  position: relative;
-  top: 1px;
-  display: inline-block;
-  font-family: 'Glyphicons Halflings';
-  font-style: normal;
-  font-weight: normal;
-  line-height: 1;
-
-  -webkit-font-smoothing: antialiased;
-  -moz-osx-font-smoothing: grayscale;
-}
-.glyphicon-asterisk:before {
-  content: "\002a";
-}
-.glyphicon-plus:before {
-  content: "\002b";
-}
-.glyphicon-euro:before,
-.glyphicon-eur:before {
-  content: "\20ac";
-}
-.glyphicon-minus:before {
-  content: "\2212";
-}
-.glyphicon-cloud:before {
-  content: "\2601";
-}
-.glyphicon-envelope:before {
-  content: "\2709";
-}
-.glyphicon-pencil:before {
-  content: "\270f";
-}
-.glyphicon-glass:before {
-  content: "\e001";
-}
-.glyphicon-music:before {
-  content: "\e002";
-}
-.glyphicon-search:before {
-  content: "\e003";
-}
-.glyphicon-heart:before {
-  content: "\e005";
-}
-.glyphicon-star:before {
-  content: "\e006";
-}
-.glyphicon-star-empty:before {
-  content: "\e007";
-}
-.glyphicon-user:before {
-  content: "\e008";
-}
-.glyphicon-film:before {
-  content: "\e009";
-}
-.glyphicon-th-large:before {
-  content: "\e010";
-}
-.glyphicon-th:before {
-  content: "\e011";
-}
-.glyphicon-th-list:before {
-  content: "\e012";
-}
-.glyphicon-ok:before {
-  content: "\e013";
-}
-.glyphicon-remove:before {
-  content: "\e014";
-}
-.glyphicon-zoom-in:before {
-  content: "\e015";
-}
-.glyphicon-zoom-out:before {
-  content: "\e016";
-}
-.glyphicon-off:before {
-  content: "\e017";
-}
-.glyphicon-signal:before {
-  content: "\e018";
-}
-.glyphicon-cog:before {
-  content: "\e019";
-}
-.glyphicon-trash:before {
-  content: "\e020";
-}
-.glyphicon-home:before {
-  content: "\e021";
-}
-.glyphicon-file:before {
-  content: "\e022";
-}
-.glyphicon-time:before {
-  content: "\e023";
-}
-.glyphicon-road:before {
-  content: "\e024";
-}
-.glyphicon-download-alt:before {
-  content: "\e025";
-}
-.glyphicon-download:before {
-  content: "\e026";
-}
-.glyphicon-upload:before {
-  content: "\e027";
-}
-.glyphicon-inbox:before {
-  content: "\e028";
-}
-.glyphicon-play-circle:before {
-  content: "\e029";
-}
-.glyphicon-repeat:before {
-  content: "\e030";
-}
-.glyphicon-refresh:before {
-  content: "\e031";
-}
-.glyphicon-list-alt:before {
-  content: "\e032";
-}
-.glyphicon-lock:before {
-  content: "\e033";
-}
-.glyphicon-flag:before {
-  content: "\e034";
-}
-.glyphicon-headphones:before {
-  content: "\e035";
-}
-.glyphicon-volume-off:before {
-  content: "\e036";
-}
-.glyphicon-volume-down:before {
-  content: "\e037";
-}
-.glyphicon-volume-up:before {
-  content: "\e038";
-}
-.glyphicon-qrcode:before {
-  content: "\e039";
-}
-.glyphicon-barcode:before {
-  content: "\e040";
-}
-.glyphicon-tag:before {
-  content: "\e041";
-}
-.glyphicon-tags:before {
-  content: "\e042";
-}
-.glyphicon-book:before {
-  content: "\e043";
-}
-.glyphicon-bookmark:before {
-  content: "\e044";
-}
-.glyphicon-print:before {
-  content: "\e045";
-}
-.glyphicon-camera:before {
-  content: "\e046";
-}
-.glyphicon-font:before {
-  content: "\e047";
-}
-.glyphicon-bold:before {
-  content: "\e048";
-}
-.glyphicon-italic:before {
-  content: "\e049";
-}
-.glyphicon-text-height:before {
-  content: "\e050";
-}
-.glyphicon-text-width:before {
-  content: "\e051";
-}
-.glyphicon-align-left:before {
-  content: "\e052";
-}
-.glyphicon-align-center:before {
-  content: "\e053";
-}
-.glyphicon-align-right:before {
-  content: "\e054";
-}
-.glyphicon-align-justify:before {
-  content: "\e055";
-}
-.glyphicon-list:before {
-  content: "\e056";
-}
-.glyphicon-indent-left:before {
-  content: "\e057";
-}
-.glyphicon-indent-right:before {
-  content: "\e058";
-}
-.glyphicon-facetime-video:before {
-  content: "\e059";
-}
-.glyphicon-picture:before {
-  content: "\e060";
-}
-.glyphicon-map-marker:before {
-  content: "\e062";
-}
-.glyphicon-adjust:before {
-  content: "\e063";
-}
-.glyphicon-tint:before {
-  content: "\e064";
-}
-.glyphicon-edit:before {
-  content: "\e065";
-}
-.glyphicon-share:before {
-  content: "\e066";
-}
-.glyphicon-check:before {
-  content: "\e067";
-}
-.glyphicon-move:before {
-  content: "\e068";
-}
-.glyphicon-step-backward:before {
-  content: "\e069";
-}
-.glyphicon-fast-backward:before {
-  content: "\e070";
-}
-.glyphicon-backward:before {
-  content: "\e071";
-}
-.glyphicon-play:before {
-  content: "\e072";
-}
-.glyphicon-pause:before {
-  content: "\e073";
-}
-.glyphicon-stop:before {
-  content: "\e074";
-}
-.glyphicon-forward:before {
-  content: "\e075";
-}
-.glyphicon-fast-forward:before {
-  content: "\e076";
-}
-.glyphicon-step-forward:before {
-  content: "\e077";
-}
-.glyphicon-eject:before {
-  content: "\e078";
-}
-.glyphicon-chevron-left:before {
-  content: "\e079";
-}
-.glyphicon-chevron-right:before {
-  content: "\e080";
-}
-.glyphicon-plus-sign:before {
-  content: "\e081";
-}
-.glyphicon-minus-sign:before {
-  content: "\e082";
-}
-.glyphicon-remove-sign:before {
-  content: "\e083";
-}
-.glyphicon-ok-sign:before {
-  content: "\e084";
-}
-.glyphicon-question-sign:before {
-  content: "\e085";
-}
-.glyphicon-info-sign:before {
-  content: "\e086";
-}
-.glyphicon-screenshot:before {
-  content: "\e087";
-}
-.glyphicon-remove-circle:before {
-  content: "\e088";
-}
-.glyphicon-ok-circle:before {
-  content: "\e089";
-}
-.glyphicon-ban-circle:before {
-  content: "\e090";
-}
-.glyphicon-arrow-left:before {
-  content: "\e091";
-}
-.glyphicon-arrow-right:before {
-  content: "\e092";
-}
-.glyphicon-arrow-up:before {
-  content: "\e093";
-}
-.glyphicon-arrow-down:before {
-  content: "\e094";
-}
-.glyphicon-share-alt:before {
-  content: "\e095";
-}
-.glyphicon-resize-full:before {
-  content: "\e096";
-}
-.glyphicon-resize-small:before {
-  content: "\e097";
-}
-.glyphicon-exclamation-sign:before {
-  content: "\e101";
-}
-.glyphicon-gift:before {
-  content: "\e102";
-}
-.glyphicon-leaf:before {
-  content: "\e103";
-}
-.glyphicon-fire:before {
-  content: "\e104";
-}
-.glyphicon-eye-open:before {
-  content: "\e105";
-}
-.glyphicon-eye-close:before {
-  content: "\e106";
-}
-.glyphicon-warning-sign:before {
-  content: "\e107";
-}
-.glyphicon-plane:before {
-  content: "\e108";
-}
-.glyphicon-calendar:before {
-  content: "\e109";
-}
-.glyphicon-random:before {
-  content: "\e110";
-}
-.glyphicon-comment:before {
-  content: "\e111";
-}
-.glyphicon-magnet:before {
-  content: "\e112";
-}
-.glyphicon-chevron-up:before {
-  content: "\e113";
-}
-.glyphicon-chevron-down:before {
-  content: "\e114";
-}
-.glyphicon-retweet:before {
-  content: "\e115";
-}
-.glyphicon-shopping-cart:before {
-  content: "\e116";
-}
-.glyphicon-folder-close:before {
-  content: "\e117";
-}
-.glyphicon-folder-open:before {
-  content: "\e118";
-}
-.glyphicon-resize-vertical:before {
-  content: "\e119";
-}
-.glyphicon-resize-horizontal:before {
-  content: "\e120";
-}
-.glyphicon-hdd:before {
-  content: "\e121";
-}
-.glyphicon-bullhorn:before {
-  content: "\e122";
-}
-.glyphicon-bell:before {
-  content: "\e123";
-}
-.glyphicon-certificate:before {
-  content: "\e124";
-}
-.glyphicon-thumbs-up:before {
-  content: "\e125";
-}
-.glyphicon-thumbs-down:before {
-  content: "\e126";
-}
-.glyphicon-hand-right:before {
-  content: "\e127";
-}
-.glyphicon-hand-left:before {
-  content: "\e128";
-}
-.glyphicon-hand-up:before {
-  content: "\e129";
-}
-.glyphicon-hand-down:before {
-  content: "\e130";
-}
-.glyphicon-circle-arrow-right:before {
-  content: "\e131";
-}
-.glyphicon-circle-arrow-left:before {
-  content: "\e132";
-}
-.glyphicon-circle-arrow-up:before {
-  content: "\e133";
-}
-.glyphicon-circle-arrow-down:before {
-  content: "\e134";
-}
-.glyphicon-globe:before {
-  content: "\e135";
-}
-.glyphicon-wrench:before {
-  content: "\e136";
-}
-.glyphicon-tasks:before {
-  content: "\e137";
-}
-.glyphicon-filter:before {
-  content: "\e138";
-}
-.glyphicon-briefcase:before {
-  content: "\e139";
-}
-.glyphicon-fullscreen:before {
-  content: "\e140";
-}
-.glyphicon-dashboard:before {
-  content: "\e141";
-}
-.glyphicon-paperclip:before {
-  content: "\e142";
-}
-.glyphicon-heart-empty:before {
-  content: "\e143";
-}
-.glyphicon-link:before {
-  content: "\e144";
-}
-.glyphicon-phone:before {
-  content: "\e145";
-}
-.glyphicon-pushpin:before {
-  content: "\e146";
-}
-.glyphicon-usd:before {
-  content: "\e148";
-}
-.glyphicon-gbp:before {
-  content: "\e149";
-}
-.glyphicon-sort:before {
-  content: "\e150";
-}
-.glyphicon-sort-by-alphabet:before {
-  content: "\e151";
-}
-.glyphicon-sort-by-alphabet-alt:before {
-  content: "\e152";
-}
-.glyphicon-sort-by-order:before {
-  content: "\e153";
-}
-.glyphicon-sort-by-order-alt:before {
-  content: "\e154";
-}
-.glyphicon-sort-by-attributes:before {
-  content: "\e155";
-}
-.glyphicon-sort-by-attributes-alt:before {
-  content: "\e156";
-}
-.glyphicon-unchecked:before {
-  content: "\e157";
-}
-.glyphicon-expand:before {
-  content: "\e158";
-}
-.glyphicon-collapse-down:before {
-  content: "\e159";
-}
-.glyphicon-collapse-up:before {
-  content: "\e160";
-}
-.glyphicon-log-in:before {
-  content: "\e161";
-}
-.glyphicon-flash:before {
-  content: "\e162";
-}
-.glyphicon-log-out:before {
-  content: "\e163";
-}
-.glyphicon-new-window:before {
-  content: "\e164";
-}
-.glyphicon-record:before {
-  content: "\e165";
-}
-.glyphicon-save:before {
-  content: "\e166";
-}
-.glyphicon-open:before {
-  content: "\e167";
-}
-.glyphicon-saved:before {
-  content: "\e168";
-}
-.glyphicon-import:before {
-  content: "\e169";
-}
-.glyphicon-export:before {
-  content: "\e170";
-}
-.glyphicon-send:before {
-  content: "\e171";
-}
-.glyphicon-floppy-disk:before {
-  content: "\e172";
-}
-.glyphicon-floppy-saved:before {
-  content: "\e173";
-}
-.glyphicon-floppy-remove:before {
-  content: "\e174";
-}
-.glyphicon-floppy-save:before {
-  content: "\e175";
-}
-.glyphicon-floppy-open:before {
-  content: "\e176";
-}
-.glyphicon-credit-card:before {
-  content: "\e177";
-}
-.glyphicon-transfer:before {
-  content: "\e178";
-}
-.glyphicon-cutlery:before {
-  content: "\e179";
-}
-.glyphicon-header:before {
-  content: "\e180";
-}
-.glyphicon-compressed:before {
-  content: "\e181";
-}
-.glyphicon-earphone:before {
-  content: "\e182";
-}
-.glyphicon-phone-alt:before {
-  content: "\e183";
-}
-.glyphicon-tower:before {
-  content: "\e184";
-}
-.glyphicon-stats:before {
-  content: "\e185";
-}
-.glyphicon-sd-video:before {
-  content: "\e186";
-}
-.glyphicon-hd-video:before {
-  content: "\e187";
-}
-.glyphicon-subtitles:before {
-  content: "\e188";
-}
-.glyphicon-sound-stereo:before {
-  content: "\e189";
-}
-.glyphicon-sound-dolby:before {
-  content: "\e190";
-}
-.glyphicon-sound-5-1:before {
-  content: "\e191";
-}
-.glyphicon-sound-6-1:before {
-  content: "\e192";
-}
-.glyphicon-sound-7-1:before {
-  content: "\e193";
-}
-.glyphicon-copyright-mark:before {
-  content: "\e194";
-}
-.glyphicon-registration-mark:before {
-  content: "\e195";
-}
-.glyphicon-cloud-download:before {
-  content: "\e197";
-}
-.glyphicon-cloud-upload:before {
-  content: "\e198";
-}
-.glyphicon-tree-conifer:before {
-  content: "\e199";
-}
-.glyphicon-tree-deciduous:before {
-  content: "\e200";
-}
-.glyphicon-cd:before {
-  content: "\e201";
-}
-.glyphicon-save-file:before {
-  content: "\e202";
-}
-.glyphicon-open-file:before {
-  content: "\e203";
-}
-.glyphicon-level-up:before {
-  content: "\e204";
-}
-.glyphicon-copy:before {
-  content: "\e205";
-}
-.glyphicon-paste:before {
-  content: "\e206";
-}
-.glyphicon-alert:before {
-  content: "\e209";
-}
-.glyphicon-equalizer:before {
-  content: "\e210";
-}
-.glyphicon-king:before {
-  content: "\e211";
-}
-.glyphicon-queen:before {
-  content: "\e212";
-}
-.glyphicon-pawn:before {
-  content: "\e213";
-}
-.glyphicon-bishop:before {
-  content: "\e214";
-}
-.glyphicon-knight:before {
-  content: "\e215";
-}
-.glyphicon-baby-formula:before {
-  content: "\e216";
-}
-.glyphicon-tent:before {
-  content: "\26fa";
-}
-.glyphicon-blackboard:before {
-  content: "\e218";
-}
-.glyphicon-bed:before {
-  content: "\e219";
-}
-.glyphicon-apple:before {
-  content: "\f8ff";
-}
-.glyphicon-erase:before {
-  content: "\e221";
-}
-.glyphicon-hourglass:before {
-  content: "\231b";
-}
-.glyphicon-lamp:before {
-  content: "\e223";
-}
-.glyphicon-duplicate:before {
-  content: "\e224";
-}
-.glyphicon-piggy-bank:before {
-  content: "\e225";
-}
-.glyphicon-scissors:before {
-  content: "\e226";
-}
-.glyphicon-bitcoin:before {
-  content: "\e227";
-}
-.glyphicon-btc:before {
-  content: "\e227";
-}
-.glyphicon-xbt:before {
-  content: "\e227";
-}
-.glyphicon-yen:before {
-  content: "\00a5";
-}
-.glyphicon-jpy:before {
-  content: "\00a5";
-}
-.glyphicon-ruble:before {
-  content: "\20bd";
-}
-.glyphicon-rub:before {
-  content: "\20bd";
-}
-.glyphicon-scale:before {
-  content: "\e230";
-}
-.glyphicon-ice-lolly:before {
-  content: "\e231";
-}
-.glyphicon-ice-lolly-tasted:before {
-  content: "\e232";
-}
-.glyphicon-education:before {
-  content: "\e233";
-}
-.glyphicon-option-horizontal:before {
-  content: "\e234";
-}
-.glyphicon-option-vertical:before {
-  content: "\e235";
-}
-.glyphicon-menu-hamburger:before {
-  content: "\e236";
-}
-.glyphicon-modal-window:before {
-  content: "\e237";
-}
-.glyphicon-oil:before {
-  content: "\e238";
-}
-.glyphicon-grain:before {
-  content: "\e239";
-}
-.glyphicon-sunglasses:before {
-  content: "\e240";
-}
-.glyphicon-text-size:before {
-  content: "\e241";
-}
-.glyphicon-text-color:before {
-  content: "\e242";
-}
-.glyphicon-text-background:before {
-  content: "\e243";
-}
-.glyphicon-object-align-top:before {
-  content: "\e244";
-}
-.glyphicon-object-align-bottom:before {
-  content: "\e245";
-}
-.glyphicon-object-align-horizontal:before {
-  content: "\e246";
-}
-.glyphicon-object-align-left:before {
-  content: "\e247";
-}
-.glyphicon-object-align-vertical:before {
-  content: "\e248";
-}
-.glyphicon-object-align-right:before {
-  content: "\e249";
-}
-.glyphicon-triangle-right:before {
-  content: "\e250";
-}
-.glyphicon-triangle-left:before {
-  content: "\e251";
-}
-.glyphicon-triangle-bottom:before {
-  content: "\e252";
-}
-.glyphicon-triangle-top:before {
-  content: "\e253";
-}
-.glyphicon-console:before {
-  content: "\e254";
-}
-.glyphicon-superscript:before {
-  content: "\e255";
-}
-.glyphicon-subscript:before {
-  content: "\e256";
-}
-.glyphicon-menu-left:before {
-  content: "\e257";
-}
-.glyphicon-menu-right:before {
-  content: "\e258";
-}
-.glyphicon-menu-down:before {
-  content: "\e259";
-}
-.glyphicon-menu-up:before {
-  content: "\e260";
-}
-* {
-  -webkit-box-sizing: border-box;
-     -moz-box-sizing: border-box;
-          box-sizing: border-box;
-}
-*:before,
-*:after {
-  -webkit-box-sizing: border-box;
-     -moz-box-sizing: border-box;
-          box-sizing: border-box;
-}
-html {
-  font-size: 10px;
-
-  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-}
-body {
-  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
-  font-size: 14px;
-  line-height: 1.42857143;
-  color: #333;
-  background-color: #fff;
-}
-input,
-button,
-select,
-textarea {
-  font-family: inherit;
-  font-size: inherit;
-  line-height: inherit;
-}
-a {
-  color: #337ab7;
-  text-decoration: none;
-}
-a:hover,
-a:focus {
-  color: #23527c;
-  text-decoration: underline;
-}
-a:focus {
-  outline: thin dotted;
-  outline: 5px auto -webkit-focus-ring-color;
-  outline-offset: -2px;
-}
-figure {
-  margin: 0;
-}
-img {
-  vertical-align: middle;
-}
-.img-responsive,
-.thumbnail > img,
-.thumbnail a > img,
-.carousel-inner > .item > img,
-.carousel-inner > .item > a > img {
-  display: block;
-  max-width: 100%;
-  height: auto;
-}
-.img-rounded {
-  border-radius: 6px;
-}
-.img-thumbnail {
-  display: inline-block;
-  max-width: 100%;
-  height: auto;
-  padding: 4px;
-  line-height: 1.42857143;
-  background-color: #fff;
-  border: 1px solid #ddd;
-  border-radius: 4px;
-  -webkit-transition: all .2s ease-in-out;
-       -o-transition: all .2s ease-in-out;
-          transition: all .2s ease-in-out;
-}
-.img-circle {
-  border-radius: 50%;
-}
-hr {
-  margin-top: 20px;
-  margin-bottom: 20px;
-  border: 0;
-  border-top: 1px solid #eee;
-}
-.sr-only {
-  position: absolute;
-  width: 1px;
-  height: 1px;
-  padding: 0;
-  margin: -1px;
-  overflow: hidden;
-  clip: rect(0, 0, 0, 0);
-  border: 0;
-}
-.sr-only-focusable:active,
-.sr-only-focusable:focus {
-  position: static;
-  width: auto;
-  height: auto;
-  margin: 0;
-  overflow: visible;
-  clip: auto;
-}
-[role="button"] {
-  cursor: pointer;
-}
-h1,
-h2,
-h3,
-h4,
-h5,
-h6,
-.h1,
-.h2,
-.h3,
-.h4,
-.h5,
-.h6 {
-  font-family: inherit;
-  font-weight: 500;
-  line-height: 1.1;
-  color: inherit;
-}
-h1 small,
-h2 small,
-h3 small,
-h4 small,
-h5 small,
-h6 small,
-.h1 small,
-.h2 small,
-.h3 small,
-.h4 small,
-.h5 small,
-.h6 small,
-h1 .small,
-h2 .small,
-h3 .small,
-h4 .small,
-h5 .small,
-h6 .small,
-.h1 .small,
-.h2 .small,
-.h3 .small,
-.h4 .small,
-.h5 .small,
-.h6 .small {
-  font-weight: normal;
-  line-height: 1;
-  color: #777;
-}
-h1,
-.h1,
-h2,
-.h2,
-h3,
-.h3 {
-  margin-top: 20px;
-  margin-bottom: 10px;
-}
-h1 small,
-.h1 small,
-h2 small,
-.h2 small,
-h3 small,
-.h3 small,
-h1 .small,
-.h1 .small,
-h2 .small,
-.h2 .small,
-h3 .small,
-.h3 .small {
-  font-size: 65%;
-}
-h4,
-.h4,
-h5,
-.h5,
-h6,
-.h6 {
-  margin-top: 10px;
-  margin-bottom: 10px;
-}
-h4 small,
-.h4 small,
-h5 small,
-.h5 small,
-h6 small,
-.h6 small,
-h4 .small,
-.h4 .small,
-h5 .small,
-.h5 .small,
-h6 .small,
-.h6 .small {
-  font-size: 75%;
-}
-h1,
-.h1 {
-  font-size: 36px;
-}
-h2,
-.h2 {
-  font-size: 30px;
-}
-h3,
-.h3 {
-  font-size: 24px;
-}
-h4,
-.h4 {
-  font-size: 18px;
-}
-h5,
-.h5 {
-  font-size: 14px;
-}
-h6,
-.h6 {
-  font-size: 12px;
-}
-p {
-  margin: 0 0 10px;
-}
-.lead {
-  margin-bottom: 20px;
-  font-size: 16px;
-  font-weight: 300;
-  line-height: 1.4;
-}
-@media (min-width: 768px) {
-  .lead {
-    font-size: 21px;
-  }
-}
-small,
-.small {
-  font-size: 85%;
-}
-mark,
-.mark {
-  padding: .2em;
-  background-color: #fcf8e3;
-}
-.text-left {
-  text-align: left;
-}
-.text-right {
-  text-align: right;
-}
-.text-center {
-  text-align: center;
-}
-.text-justify {
-  text-align: justify;
-}
-.text-nowrap {
-  white-space: nowrap;
-}
-.text-lowercase {
-  text-transform: lowercase;
-}
-.text-uppercase {
-  text-transform: uppercase;
-}
-.text-capitalize {
-  text-transform: capitalize;
-}
-.text-muted {
-  color: #777;
-}
-.text-primary {
-  color: #337ab7;
-}
-a.text-primary:hover,
-a.text-primary:focus {
-  color: #286090;
-}
-.text-success {
-  color: #3c763d;
-}
-a.text-success:hover,
-a.text-success:focus {
-  color: #2b542c;
-}
-.text-info {
-  color: #31708f;
-}
-a.text-info:hover,
-a.text-info:focus {
-  color: #245269;
-}
-.text-warning {
-  color: #8a6d3b;
-}
-a.text-warning:hover,
-a.text-warning:focus {
-  color: #66512c;
-}
-.text-danger {
-  color: #a94442;
-}
-a.text-danger:hover,
-a.text-danger:focus {
-  color: #843534;
-}
-.bg-primary {
-  color: #fff;
-  background-color: #337ab7;
-}
-a.bg-primary:hover,
-a.bg-primary:focus {
-  background-color: #286090;
-}
-.bg-success {
-  background-color: #dff0d8;
-}
-a.bg-success:hover,
-a.bg-success:focus {
-  background-color: #c1e2b3;
-}
-.bg-info {
-  background-color: #d9edf7;
-}
-a.bg-info:hover,
-a.bg-info:focus {
-  background-color: #afd9ee;
-}
-.bg-warning {
-  background-color: #fcf8e3;
-}
-a.bg-warning:hover,
-a.bg-warning:focus {
-  background-color: #f7ecb5;
-}
-.bg-danger {
-  background-color: #f2dede;
-}
-a.bg-danger:hover,
-a.bg-danger:focus {
-  background-color: #e4b9b9;
-}
-.page-header {
-  padding-bottom: 9px;
-  margin: 40px 0 20px;
-  border-bottom: 1px solid #eee;
-}
-ul,
-ol {
-  margin-top: 0;
-  margin-bottom: 10px;
-}
-ul ul,
-ol ul,
-ul ol,
-ol ol {
-  margin-bottom: 0;
-}
-.list-unstyled {
-  padding-left: 0;
-  list-style: none;
-}
-.list-inline {
-  padding-left: 0;
-  margin-left: -5px;
-  list-style: none;
-}
-.list-inline > li {
-  display: inline-block;
-  padding-right: 5px;
-  padding-left: 5px;
-}
-dl {
-  margin-top: 0;
-  margin-bottom: 20px;
-}
-dt,
-dd {
-  line-height: 1.42857143;
-}
-dt {
-  font-weight: bold;
-}
-dd {
-  margin-left: 0;
-}
-@media (min-width: 768px) {
-  .dl-horizontal dt {
-    float: left;
-    width: 160px;
-    overflow: hidden;
-    clear: left;
-    text-align: right;
-    text-overflow: ellipsis;
-    white-space: nowrap;
-  }
-  .dl-horizontal dd {
-    margin-left: 180px;
-  }
-}
-abbr[title],
-abbr[data-original-title] {
-  cursor: help;
-  border-bottom: 1px dotted #777;
-}
-.initialism {
-  font-size: 90%;
-  text-transform: uppercase;
-}
-blockquote {
-  padding: 10px 20px;
-  margin: 0 0 20px;
-  font-size: 17.5px;
-  border-left: 5px solid #eee;
-}
-blockquote p:last-child,
-blockquote ul:last-child,
-blockquote ol:last-child {
-  margin-bottom: 0;
-}
-blockquote footer,
-blockquote small,
-blockquote .small {
-  display: block;
-  font-size: 80%;
-  line-height: 1.42857143;
-  color: #777;
-}
-blockquote footer:before,
-blockquote small:before,
-blockquote .small:before {
-  content: '\2014 \00A0';
-}
-.blockquote-reverse,
-blockquote.pull-right {
-  padding-right: 15px;
-  padding-left: 0;
-  text-align: right;
-  border-right: 5px solid #eee;
-  border-left: 0;
-}
-.blockquote-reverse footer:before,
-blockquote.pull-right footer:before,
-.blockquote-reverse small:before,
-blockquote.pull-right small:before,
-.blockquote-reverse .small:before,
-blockquote.pull-right .small:before {
-  content: '';
-}
-.blockquote-reverse footer:after,
-blockquote.pull-right footer:after,
-.blockquote-reverse small:after,
-blockquote.pull-right small:after,
-.blockquote-reverse .small:after,
-blockquote.pull-right .small:after {
-  content: '\00A0 \2014';
-}
-address {
-  margin-bottom: 20px;
-  font-style: normal;
-  line-height: 1.42857143;
-}
-code,
-kbd,
-pre,
-samp {
-  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
-}
-code {
-  padding: 2px 4px;
-  font-size: 90%;
-  color: #c7254e;
-  background-color: #f9f2f4;
-  border-radius: 4px;
-}
-kbd {
-  padding: 2px 4px;
-  font-size: 90%;
-  color: #fff;
-  background-color: #333;
-  border-radius: 3px;
-  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
-          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
-}
-kbd kbd {
-  padding: 0;
-  font-size: 100%;
-  font-weight: bold;
-  -webkit-box-shadow: none;
-          box-shadow: none;
-}
-pre {
-  display: block;
-  padding: 9.5px;
-  margin: 0 0 10px;
-  font-size: 13px;
-  line-height: 1.42857143;
-  color: #333;
-  word-break: break-all;
-  word-wrap: break-word;
-  background-color: #f5f5f5;
-  border: 1px solid #ccc;
-  border-radius: 4px;
-}
-pre code {
-  padding: 0;
-  font-size: inherit;
-  color: inherit;
-  white-space: pre-wrap;
-  background-color: transparent;
-  border-radius: 0;
-}
-.pre-scrollable {
-  max-height: 340px;
-  overflow-y: scroll;
-}
-.container {
-  padding-right: 15px;
-  padding-left: 15px;
-  margin-right: auto;
-  margin-left: auto;
-}
-@media (min-width: 768px) {
-  .container {
-    width: 750px;
-  }
-}
-@media (min-width: 992px) {
-  .container {
-    width: 970px;
-  }
-}
-@media (min-width: 1200px) {
-  .container {
-    width: 1170px;
-  }
-}
-.container-fluid {
-  padding-right: 15px;
-  padding-left: 15px;
-  margin-right: auto;
-  margin-left: auto;
-}
-.row {
-  margin-right: -15px;
-  margin-left: -15px;
-}
-.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
-  position: relative;
-  min-height: 1px;
-  padding-right: 15px;
-  padding-left: 15px;
-}
-.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
-  float: left;
-}
-.col-xs-12 {
-  width: 100%;
-}
-.col-xs-11 {
-  width: 91.66666667%;
-}
-.col-xs-10 {
-  width: 83.33333333%;
-}
-.col-xs-9 {
-  width: 75%;
-}
-.col-xs-8 {
-  width: 66.66666667%;
-}
-.col-xs-7 {
-  width: 58.33333333%;
-}
-.col-xs-6 {
-  width: 50%;
-}
-.col-xs-5 {
-  width: 41.66666667%;
-}
-.col-xs-4 {
-  width: 33.33333333%;
-}
-.col-xs-3 {
-  width: 25%;
-}
-.col-xs-2 {
-  width: 16.66666667%;
-}
-.col-xs-1 {
-  width: 8.33333333%;
-}
-.col-xs-pull-12 {
-  right: 100%;
-}
-.col-xs-pull-11 {
-  right: 91.66666667%;
-}
-.col-xs-pull-10 {
-  right: 83.33333333%;
-}
-.col-xs-pull-9 {
-  right: 75%;
-}
-.col-xs-pull-8 {
-  right: 66.66666667%;
-}
-.col-xs-pull-7 {
-  right: 58.33333333%;
-}
-.col-xs-pull-6 {
-  right: 50%;
-}
-.col-xs-pull-5 {
-  right: 41.66666667%;
-}
-.col-xs-pull-4 {
-  right: 33.33333333%;
-}
-.col-xs-pull-3 {
-  right: 25%;
-}
-.col-xs-pull-2 {
-  right: 16.66666667%;
-}
-.col-xs-pull-1 {
-  right: 8.33333333%;
-}
-.col-xs-pull-0 {
-  right: auto;
-}
-.col-xs-push-12 {
-  left: 100%;
-}
-.col-xs-push-11 {
-  left: 91.66666667%;
-}
-.col-xs-push-10 {
-  left: 83.33333333%;
-}
-.col-xs-push-9 {
-  left: 75%;
-}
-.col-xs-push-8 {
-  left: 66.66666667%;
-}
-.col-xs-push-7 {
-  left: 58.33333333%;
-}
-.col-xs-push-6 {
-  left: 50%;
-}
-.col-xs-push-5 {
-  left: 41.66666667%;
-}
-.col-xs-push-4 {
-  left: 33.33333333%;
-}
-.col-xs-push-3 {
-  left: 25%;
-}
-.col-xs-push-2 {
-  left: 16.66666667%;
-}
-.col-xs-push-1 {
-  left: 8.33333333%;
-}
-.col-xs-push-0 {
-  left: auto;
-}
-.col-xs-offset-12 {
-  margin-left: 100%;
-}
-.col-xs-offset-11 {
-  margin-left: 91.66666667%;
-}
-.col-xs-offset-10 {
-  margin-left: 83.33333333%;
-}
-.col-xs-offset-9 {
-  margin-left: 75%;
-}
-.col-xs-offset-8 {
-  margin-left: 66.66666667%;
-}
-.col-xs-offset-7 {
-  margin-left: 58.33333333%;
-}
-.col-xs-offset-6 {
-  margin-left: 50%;
-}
-.col-xs-offset-5 {
-  margin-left: 41.66666667%;
-}
-.col-xs-offset-4 {
-  margin-left: 33.33333333%;
-}
-.col-xs-offset-3 {
-  margin-left: 25%;
-}
-.col-xs-offset-2 {
-  margin-left: 16.66666667%;
-}
-.col-xs-offset-1 {
-  margin-left: 8.33333333%;
-}
-.col-xs-offset-0 {
-  margin-left: 0;
-}
-@media (min-width: 768px) {
-  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
-    float: left;
-  }
-  .col-sm-12 {
-    width: 100%;
-  }
-  .col-sm-11 {
-    width: 91.66666667%;
-  }
-  .col-sm-10 {
-    width: 83.33333333%;
-  }
-  .col-sm-9 {
-    width: 75%;
-  }
-  .col-sm-8 {
-    width: 66.66666667%;
-  }
-  .col-sm-7 {
-    width: 58.33333333%;
-  }
-  .col-sm-6 {
-    width: 50%;
-  }
-  .col-sm-5 {
-    width: 41.66666667%;
-  }
-  .col-sm-4 {
-    width: 33.33333333%;
-  }
-  .col-sm-3 {
-    width: 25%;
-  }
-  .col-sm-2 {
-    width: 16.66666667%;
-  }
-  .col-sm-1 {
-    width: 8.33333333%;
-  }
-  .col-sm-pull-12 {
-    right: 100%;
-  }
-  .col-sm-pull-11 {
-    right: 91.66666667%;
-  }
-  .col-sm-pull-10 {
-    right: 83.33333333%;
-  }
-  .col-sm-pull-9 {
-    right: 75%;
-  }
-  .col-sm-pull-8 {
-    right: 66.66666667%;
-  }
-  .col-sm-pull-7 {
-    right: 58.33333333%;
-  }
-  .col-sm-pull-6 {
-    right: 50%;
-  }
-  .col-sm-pull-5 {
-    right: 41.66666667%;
-  }
-  .col-sm-pull-4 {
-    right: 33.33333333%;
-  }
-  .col-sm-pull-3 {
-    right: 25%;
-  }
-  .col-sm-pull-2 {
-    right: 16.66666667%;
-  }
-  .col-sm-pull-1 {
-    right: 8.33333333%;
-  }
-  .col-sm-pull-0 {
-    right: auto;
-  }
-  .col-sm-push-12 {
-    left: 100%;
-  }
-  .col-sm-push-11 {
-    left: 91.66666667%;
-  }
-  .col-sm-push-10 {
-    left: 83.33333333%;
-  }
-  .col-sm-push-9 {
-    left: 75%;
-  }
-  .col-sm-push-8 {
-    left: 66.66666667%;
-  }
-  .col-sm-push-7 {
-    left: 58.33333333%;
-  }
-  .col-sm-push-6 {
-    left: 50%;
-  }
-  .col-sm-push-5 {
-    left: 41.66666667%;
-  }
-  .col-sm-push-4 {
-    left: 33.33333333%;
-  }
-  .col-sm-push-3 {
-    left: 25%;
-  }
-  .col-sm-push-2 {
-    left: 16.66666667%;
-  }
-  .col-sm-push-1 {
-    left: 8.33333333%;
-  }
-  .col-sm-push-0 {
-    left: auto;
-  }
-  .col-sm-offset-12 {
-    margin-left: 100%;
-  }
-  .col-sm-offset-11 {
-    margin-left: 91.66666667%;
-  }
-  .col-sm-offset-10 {
-    margin-left: 83.33333333%;
-  }
-  .col-sm-offset-9 {
-    margin-left: 75%;
-  }
-  .col-sm-offset-8 {
-    margin-left: 66.66666667%;
-  }
-  .col-sm-offset-7 {
-    margin-left: 58.33333333%;
-  }
-  .col-sm-offset-6 {
-    margin-left: 50%;
-  }
-  .col-sm-offset-5 {
-    margin-left: 41.66666667%;
-  }
-  .col-sm-offset-4 {
-    margin-left: 33.33333333%;
-  }
-  .col-sm-offset-3 {
-    margin-left: 25%;
-  }
-  .col-sm-offset-2 {
-    margin-left: 16.66666667%;
-  }
-  .col-sm-offset-1 {
-    margin-left: 8.33333333%;
-  }
-  .col-sm-offset-0 {
-    margin-left: 0;
-  }
-}
-@media (min-width: 992px) {
-  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
-    float: left;
-  }
-  .col-md-12 {
-    width: 100%;
-  }
-  .col-md-11 {
-    width: 91.66666667%;
-  }
-  .col-md-10 {
-    width: 83.33333333%;
-  }
-  .col-md-9 {
-    width: 75%;
-  }
-  .col-md-8 {
-    width: 66.66666667%;
-  }
-  .col-md-7 {
-    width: 58.33333333%;
-  }
-  .col-md-6 {
-    width: 50%;
-  }
-  .col-md-5 {
-    width: 41.66666667%;
-  }
-  .col-md-4 {
-    width: 33.33333333%;
-  }
-  .col-md-3 {
-    width: 25%;
-  }
-  .col-md-2 {
-    width: 16.66666667%;
-  }
-  .col-md-1 {
-    width: 8.33333333%;
-  }
-  .col-md-pull-12 {
-    right: 100%;
-  }
-  .col-md-pull-11 {
-    right: 91.66666667%;
-  }
-  .col-md-pull-10 {
-    right: 83.33333333%;
-  }
-  .col-md-pull-9 {
-    right: 75%;
-  }
-  .col-md-pull-8 {
-    right: 66.66666667%;
-  }
-  .col-md-pull-7 {
-    right: 58.33333333%;
-  }
-  .col-md-pull-6 {
-    right: 50%;
-  }
-  .col-md-pull-5 {
-    right: 41.66666667%;
-  }
-  .col-md-pull-4 {
-    right: 33.33333333%;
-  }
-  .col-md-pull-3 {
-    right: 25%;
-  }
-  .col-md-pull-2 {
-    right: 16.66666667%;
-  }
-  .col-md-pull-1 {
-    right: 8.33333333%;
-  }
-  .col-md-pull-0 {
-    right: auto;
-  }
-  .col-md-push-12 {
-    left: 100%;
-  }
-  .col-md-push-11 {
-    left: 91.66666667%;
-  }
-  .col-md-push-10 {
-    left: 83.33333333%;
-  }
-  .col-md-push-9 {
-    left: 75%;
-  }
-  .col-md-push-8 {
-    left: 66.66666667%;
-  }
-  .col-md-push-7 {
-    left: 58.33333333%;
-  }
-  .col-md-push-6 {
-    left: 50%;
-  }
-  .col-md-push-5 {
-    left: 41.66666667%;
-  }
-  .col-md-push-4 {
-    left: 33.33333333%;
-  }
-  .col-md-push-3 {
-    left: 25%;
-  }
-  .col-md-push-2 {
-    left: 16.66666667%;
-  }
-  .col-md-push-1 {
-    left: 8.33333333%;
-  }
-  .col-md-push-0 {
-    left: auto;
-  }
-  .col-md-offset-12 {
-    margin-left: 100%;
-  }
-  .col-md-offset-11 {
-    margin-left: 91.66666667%;
-  }
-  .col-md-offset-10 {
-    margin-left: 83.33333333%;
-  }
-  .col-md-offset-9 {
-    margin-left: 75%;
-  }
-  .col-md-offset-8 {
-    margin-left: 66.66666667%;
-  }
-  .col-md-offset-7 {
-    margin-left: 58.33333333%;
-  }
-  .col-md-offset-6 {
-    margin-left: 50%;
-  }
-  .col-md-offset-5 {
-    margin-left: 41.66666667%;
-  }
-  .col-md-offset-4 {
-    margin-left: 33.33333333%;
-  }
-  .col-md-offset-3 {
-    margin-left: 25%;
-  }
-  .col-md-offset-2 {
-    margin-left: 16.66666667%;
-  }
-  .col-md-offset-1 {
-    margin-left: 8.33333333%;
-  }
-  .col-md-offset-0 {
-    margin-left: 0;
-  }
-}
-@media (min-width: 1200px) {
-  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
-    float: left;
-  }
-  .col-lg-12 {
-    width: 100%;
-  }
-  .col-lg-11 {
-    width: 91.66666667%;
-  }
-  .col-lg-10 {
-    width: 83.33333333%;
-  }
-  .col-lg-9 {
-    width: 75%;
-  }
-  .col-lg-8 {
-    width: 66.66666667%;
-  }
-  .col-lg-7 {
-    width: 58.33333333%;
-  }
-  .col-lg-6 {
-    width: 50%;
-  }
-  .col-lg-5 {
-    width: 41.66666667%;
-  }
-  .col-lg-4 {
-    width: 33.33333333%;
-  }
-  .col-lg-3 {
-    width: 25%;
-  }
-  .col-lg-2 {
-    width: 16.66666667%;
-  }
-  .col-lg-1 {
-    width: 8.33333333%;
-  }
-  .col-lg-pull-12 {
-    right: 100%;
-  }
-  .col-lg-pull-11 {
-    right: 91.66666667%;
-  }
-  .col-lg-pull-10 {
-    right: 83.33333333%;
-  }
-  .col-lg-pull-9 {
-    right: 75%;
-  }
-  .col-lg-pull-8 {
-    right: 66.66666667%;
-  }
-  .col-lg-pull-7 {
-    right: 58.33333333%;
-  }
-  .col-lg-pull-6 {
-    right: 50%;
-  }
-  .col-lg-pull-5 {
-    right: 41.66666667%;
-  }
-  .col-lg-pull-4 {
-    right: 33.33333333%;
-  }
-  .col-lg-pull-3 {
-    right: 25%;
-  }
-  .col-lg-pull-2 {
-    right: 16.66666667%;
-  }
-  .col-lg-pull-1 {
-    right: 8.33333333%;
-  }
-  .col-lg-pull-0 {
-    right: auto;
-  }
-  .col-lg-push-12 {
-    left: 100%;
-  }
-  .col-lg-push-11 {
-    left: 91.66666667%;
-  }
-  .col-lg-push-10 {
-    left: 83.33333333%;
-  }
-  .col-lg-push-9 {
-    left: 75%;
-  }
-  .col-lg-push-8 {
-    left: 66.66666667%;
-  }
-  .col-lg-push-7 {
-    left: 58.33333333%;
-  }
-  .col-lg-push-6 {
-    left: 50%;
-  }
-  .col-lg-push-5 {
-    left: 41.66666667%;
-  }
-  .col-lg-push-4 {
-    left: 33.33333333%;
-  }
-  .col-lg-push-3 {
-    left: 25%;
-  }
-  .col-lg-push-2 {
-    left: 16.66666667%;
-  }
-  .col-lg-push-1 {
-    left: 8.33333333%;
-  }
-  .col-lg-push-0 {
-    left: auto;
-  }
-  .col-lg-offset-12 {
-    margin-left: 100%;
-  }
-  .col-lg-offset-11 {
-    margin-left: 91.66666667%;
-  }
-  .col-lg-offset-10 {
-    margin-left: 83.33333333%;
-  }
-  .col-lg-offset-9 {
-    margin-left: 75%;
-  }
-  .col-lg-offset-8 {
-    margin-left: 66.66666667%;
-  }
-  .col-lg-offset-7 {
-    margin-left: 58.33333333%;
-  }
-  .col-lg-offset-6 {
-    margin-left: 50%;
-  }
-  .col-lg-offset-5 {
-    margin-left: 41.66666667%;
-  }
-  .col-lg-offset-4 {
-    margin-left: 33.33333333%;
-  }
-  .col-lg-offset-3 {
-    margin-left: 25%;
-  }
-  .col-lg-offset-2 {
-    margin-left: 16.66666667%;
-  }
-  .col-lg-offset-1 {
-    margin-left: 8.33333333%;
-  }
-  .col-lg-offset-0 {
-    margin-left: 0;
-  }
-}
-table {
-  background-color: transparent;
-}
-caption {
-  padding-top: 8px;
-  padding-bottom: 8px;
-  color: #777;
-  text-align: left;
-}
-th {
-  text-align: left;
-}
-.table {
-  width: 100%;
-  max-width: 100%;
-  margin-bottom: 20px;
-}
-.table > thead > tr > th,
-.table > tbody > tr > th,
-.table > tfoot > tr > th,
-.table > thead > tr > td,
-.table > tbody > tr > td,
-.table > tfoot > tr > td {
-  padding: 8px;
-  line-height: 1.42857143;
-  vertical-align: top;
-  border-top: 1px solid #ddd;
-}
-.table > thead > tr > th {
-  vertical-align: bottom;
-  border-bottom: 2px solid #ddd;
-}
-.table > caption + thead > tr:first-child > th,
-.table > colgroup + thead > tr:first-child > th,
-.table > thead:first-child > tr:first-child > th,
-.table > caption + thead > tr:first-child > td,
-.table > colgroup + thead > tr:first-child > td,
-.table > thead:first-child > tr:first-child > td {
-  border-top: 0;
-}
-.table > tbody + tbody {
-  border-top: 2px solid #ddd;
-}
-.table .table {
-  background-color: #fff;
-}
-.table-condensed > thead > tr > th,
-.table-condensed > tbody > tr > th,
-.table-condensed > tfoot > tr > th,
-.table-condensed > thead > tr > td,
-.table-condensed > tbody > tr > td,
-.table-condensed > tfoot > tr > td {
-  padding: 5px;
-}
-.table-bordered {
-  border: 1px solid #ddd;
-}
-.table-bordered > thead > tr > th,
-.table-bordered > tbody > tr > th,
-.table-bordered > tfoot > tr > th,
-.table-bordered > thead > tr > td,
-.table-bordered > tbody > tr > td,
-.table-bordered > tfoot > tr > td {
-  border: 1px solid #ddd;
-}
-.table-bordered > thead > tr > th,
-.table-bordered > thead > tr > td {
-  border-bottom-width: 2px;
-}
-.table-striped > tbody > tr:nth-of-type(odd) {
-  background-color: #f9f9f9;
-}
-.table-hover > tbody > tr:hover {
-  background-color: #f5f5f5;
-}
-table col[class*="col-"] {
-  position: static;
-  display: table-column;
-  float: none;
-}
-table td[class*="col-"],
-table th[class*="col-"] {
-  position: static;
-  display: table-cell;
-  float: none;
-}
-.table > thead > tr > td.active,
-.table > tbody > tr > td.active,
-.table > tfoot > tr > td.active,
-.table > thead > tr > th.active,
-.table > tbody > tr > th.active,
-.table > tfoot > tr > th.active,
-.table > thead > tr.active > td,
-.table > tbody > tr.active > td,
-.table > tfoot > tr.active > td,
-.table > thead > tr.active > th,
-.table > tbody > tr.active > th,
-.table > tfoot > tr.active > th {
-  background-color: #f5f5f5;
-}
-.table-hover > tbody > tr > td.active:hover,
-.table-hover > tbody > tr > th.active:hover,
-.table-hover > tbody > tr.active:hover > td,
-.table-hover > tbody > tr:hover > .active,
-.table-hover > tbody > tr.active:hover > th {
-  background-color: #e8e8e8;
-}
-.table > thead > tr > td.success,
-.table > tbody > tr > td.success,
-.table > tfoot > tr > td.success,
-.table > thead > tr > th.success,
-.table > tbody > tr > th.success,
-.table > tfoot > tr > th.success,
-.table > thead > tr.success > td,
-.table > tbody > tr.success > td,
-.table > tfoot > tr.success > td,
-.table > thead > tr.success > th,
-.table > tbody > tr.success > th,
-.table > tfoot > tr.success > th {
-  background-color: #dff0d8;
-}
-.table-hover > tbody > tr > td.success:hover,
-.table-hover > tbody > tr > th.success:hover,
-.table-hover > tbody > tr.success:hover > td,
-.table-hover > tbody > tr:hover > .success,
-.table-hover > tbody > tr.success:hover > th {
-  background-color: #d0e9c6;
-}
-.table > thead > tr > td.info,
-.table > tbody > tr > td.info,
-.table > tfoot > tr > td.info,
-.table > thead > tr > th.info,
-.table > tbody > tr > th.info,
-.table > tfoot > tr > th.info,
-.table > thead > tr.info > td,
-.table > tbody > tr.info > td,
-.table > tfoot > tr.info > td,
-.table > thead > tr.info > th,
-.table > tbody > tr.info > th,
-.table > tfoot > tr.info > th {
-  background-color: #d9edf7;
-}
-.table-hover > tbody > tr > td.info:hover,
-.table-hover > tbody > tr > th.info:hover,
-.table-hover > tbody > tr.info:hover > td,
-.table-hover > tbody > tr:hover > .info,
-.table-hover > tbody > tr.info:hover > th {
-  background-color: #c4e3f3;
-}
-.table > thead > tr > td.warning,
-.table > tbody > tr > td.warning,
-.table > tfoot > tr > td.warning,
-.table > thead > tr > th.warning,
-.table > tbody > tr > th.warning,
-.table > tfoot > tr > th.warning,
-.table > thead > tr.warning > td,
-.table > tbody > tr.warning > td,
-.table > tfoot > tr.warning > td,
-.table > thead > tr.warning > th,
-.table > tbody > tr.warning > th,
-.table > tfoot > tr.warning > th {
-  background-color: #fcf8e3;
-}
-.table-hover > tbody > tr > td.warning:hover,
-.table-hover > tbody > tr > th.warning:hover,
-.table-hover > tbody > tr.warning:hover > td,
-.table-hover > tbody > tr:hover > .warning,
-.table-hover > tbody > tr.warning:hover > th {
-  background-color: #faf2cc;
-}
-.table > thead > tr > td.danger,
-.table > tbody > tr > td.danger,
-.table > tfoot > tr > td.danger,
-.table > thead > tr > th.danger,
-.table > tbody > tr > th.danger,
-.table > tfoot > tr > th.danger,
-.table > thead > tr.danger > td,
-.table > tbody > tr.danger > td,
-.table > tfoot > tr.danger > td,
-.table > thead > tr.danger > th,
-.table > tbody > tr.danger > th,
-.table > tfoot > tr.danger > th {
-  background-color: #f2dede;
-}
-.table-hover > tbody > tr > td.danger:hover,
-.table-hover > tbody > tr > th.danger:hover,
-.table-hover > tbody > tr.danger:hover > td,
-.table-hover > tbody > tr:hover > .danger,
-.table-hover > tbody > tr.danger:hover > th {
-  background-color: #ebcccc;
-}
-.table-responsive {
-  min-height: .01%;
-  overflow-x: auto;
-}
-@media screen and (max-width: 767px) {
-  .table-responsive {
-    width: 100%;
-    margin-bottom: 15px;
-    overflow-y: hidden;
-    -ms-overflow-style: -ms-autohiding-scrollbar;
-    border: 1px solid #ddd;
-  }
-  .table-responsive > .table {
-    margin-bottom: 0;
-  }
-  .table-responsive > .table > thead > tr > th,
-  .table-responsive > .table > tbody > tr > th,
-  .table-responsive > .table > tfoot > tr > th,
-  .table-responsive > .table > thead > tr > td,
-  .table-responsive > .table > tbody > tr > td,
-  .table-responsive > .table > tfoot > tr > td {
-    white-space: nowrap;
-  }
-  .table-responsive > .table-bordered {
-    border: 0;
-  }
-  .table-responsive > .table-bordered > thead > tr > th:first-child,
-  .table-responsive > .table-bordered > tbody > tr > th:first-child,
-  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
-  .table-responsive > .table-bordered > thead > tr > td:first-child,
-  .table-responsive > .table-bordered > tbody > tr > td:first-child,
-  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
-    border-left: 0;
-  }
-  .table-responsive > .table-bordered > thead > tr > th:last-child,
-  .table-responsive > .table-bordered > tbody > tr > th:last-child,
-  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
-  .table-responsive > .table-bordered > thead > tr > td:last-child,
-  .table-responsive > .table-bordered > tbody > tr > td:last-child,
-  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
-    border-right: 0;
-  }
-  .table-responsive > .table-bordered > tbody > tr:last-child > th,
-  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
-  .table-responsive > .table-bordered > tbody > tr:last-child > td,
-  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
-    border-bottom: 0;
-  }
-}
-fieldset {
-  min-width: 0;
-  padding: 0;
-  margin: 0;
-  border: 0;
-}
-legend {
-  display: block;
-  width: 100%;
-  padding: 0;
-  margin-bottom: 20px;
-  font-size: 21px;
-  line-height: inherit;
-  color: #333;
-  border: 0;
-  border-bottom: 1px solid #e5e5e5;
-}
-label {
-  display: inline-block;
-  max-width: 100%;
-  margin-bottom: 5px;
-  font-weight: bold;
-}
-input[type="search"] {
-  -webkit-box-sizing: border-box;
-     -moz-box-sizing: border-box;
-          box-sizing: border-box;
-}
-input[type="radio"],
-input[type="checkbox"] {
-  margin: 4px 0 0;
-  margin-top: 1px \9;
-  line-height: normal;
-}
-input[type="file"] {
-  display: block;
-}
-input[type="range"] {
-  display: block;
-  width: 100%;
-}
-select[multiple],
-select[size] {
-  height: auto;
-}
-input[type="file"]:focus,
-input[type="radio"]:focus,
-input[type="checkbox"]:focus {
-  outline: thin dotted;
-  outline: 5px auto -webkit-focus-ring-color;
-  outline-offset: -2px;
-}
-output {
-  display: block;
-  padding-top: 7px;
-  font-size: 14px;
-  line-height: 1.42857143;
-  color: #555;
-}
-.form-control {
-  display: block;
-  width: 100%;
-  height: 34px;
-  padding: 6px 12px;
-  font-size: 14px;
-  line-height: 1.42857143;
-  color: #555;
-  background-color: #fff;
-  background-image: none;
-  border: 1px solid #ccc;
-  border-radius: 4px;
-  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
-          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
-  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
-       -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
-          transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
-}
-.form-control:focus {
-  border-color: #66afe9;
-  outline: 0;
-  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
-          box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
-}
-.form-control::-moz-placeholder {
-  color: #999;
-  opacity: 1;
-}
-.form-control:-ms-input-placeholder {
-  color: #999;
-}
-.form-control::-webkit-input-placeholder {
-  color: #999;
-}
-.form-control::-ms-expand {
-  background-color: transparent;
-  border: 0;
-}
-.form-control[disabled],
-.form-control[readonly],
-fieldset[disabled] .form-control {
-  background-color: #eee;
-  opacity: 1;
-}
-.form-control[disabled],
-fieldset[disabled] .form-control {
-  cursor: not-allowed;
-}
-textarea.form-control {
-  height: auto;
-}
-input[type="search"] {
-  -webkit-appearance: none;
-}
-@media screen and (-webkit-min-device-pixel-ratio: 0) {
-  input[type="date"].form-control,
-  input[type="time"].form-control,
-  input[type="datetime-local"].form-control,
-  input[type="month"].form-control {
-    line-height: 34px;
-  }
-  input[type="date"].input-sm,
-  input[type="time"].input-sm,
-  input[type="datetime-local"].input-sm,
-  input[type="month"].input-sm,
-  .input-group-sm input[type="date"],
-  .input-group-sm input[type="time"],
-  .input-group-sm input[type="datetime-local"],
-  .input-group-sm input[type="month"] {
-    line-height: 30px;
-  }
-  input[type="date"].input-lg,
-  input[type="time"].input-lg,
-  input[type="datetime-local"].input-lg,
-  input[type="month"].input-lg,
-  .input-group-lg input[type="date"],
-  .input-group-lg input[type="time"],
-  .input-group-lg input[type="datetime-local"],
-  .input-group-lg input[type="month"] {
-    line-height: 46px;
-  }
-}
-.form-group {
-  margin-bottom: 15px;
-}
-.radio,
-.checkbox {
-  position: relative;
-  display: block;
-  margin-top: 10px;
-  margin-bottom: 10px;
-}
-.radio label,
-.checkbox label {
-  min-height: 20px;
-  padding-left: 20px;
-  margin-bottom: 0;
-  font-weight: normal;
-  cursor: pointer;
-}
-.radio input[type="radio"],
-.radio-inline input[type="radio"],
-.checkbox input[type="checkbox"],
-.checkbox-inline input[type="checkbox"] {
-  position: absolute;
-  margin-top: 4px \9;
-  margin-left: -20px;
-}
-.radio + .radio,
-.checkbox + .checkbox {
-  margin-top: -5px;
-}
-.radio-inline,
-.checkbox-inline {
-  position: relative;
-  display: inline-block;
-  padding-left: 20px;
-  margin-bottom: 0;
-  font-weight: normal;
-  vertical-align: middle;
-  cursor: pointer;
-}
-.radio-inline + .radio-inline,
-.checkbox-inline + .checkbox-inline {
-  margin-top: 0;
-  margin-left: 10px;
-}
-input[type="radio"][disabled],
-input[type="checkbox"][disabled],
-input[type="radio"].disabled,
-input[type="checkbox"].disabled,
-fieldset[disabled] input[type="radio"],
-fieldset[disabled] input[type="checkbox"] {
-  cursor: not-allowed;
-}
-.radio-inline.disabled,
-.checkbox-inline.disabled,
-fieldset[disabled] .radio-inline,
-fieldset[disabled] .checkbox-inline {
-  cursor: not-allowed;
-}
-.radio.disabled label,
-.checkbox.disabled label,
-fieldset[disabled] .radio label,
-fieldset[disabled] .checkbox label {
-  cursor: not-allowed;
-}
-.form-control-static {
-  min-height: 34px;
-  padding-top: 7px;
-  padding-bottom: 7px;
-  margin-bottom: 0;
-}
-.form-control-static.input-lg,
-.form-control-static.input-sm {
-  padding-right: 0;
-  padding-left: 0;
-}
-.input-sm {
-  height: 30px;
-  padding: 5px 10px;
-  font-size: 12px;
-  line-height: 1.5;
-  border-radius: 3px;
-}
-select.input-sm {
-  height: 30px;
-  line-height: 30px;
-}
-textarea.input-sm,
-select[multiple].input-sm {
-  height: auto;
-}
-.form-group-sm .form-control {
-  height: 30px;
-  padding: 5px 10px;
-  font-size: 12px;
-  line-height: 1.5;
-  border-radius: 3px;
-}
-.form-group-sm select.form-control {
-  height: 30px;
-  line-height: 30px;
-}
-.form-group-sm textarea.form-control,
-.form-group-sm select[multiple].form-control {
-  height: auto;
-}
-.form-group-sm .form-control-static {
-  height: 30px;
-  min-height: 32px;
-  padding: 6px 10px;
-  font-size: 12px;
-  line-height: 1.5;
-}
-.input-lg {
-  height: 46px;
-  padding: 10px 16px;
-  font-size: 18px;
-  line-height: 1.3333333;
-  border-radius: 6px;
-}
-select.input-lg {
-  height: 46px;
-  line-height: 46px;
-}
-textarea.input-lg,
-select[multiple].input-lg {
-  height: auto;
-}
-.form-group-lg .form-control {
-  height: 46px;
-  padding: 10px 16px;
-  font-size: 18px;
-  line-height: 1.3333333;
-  border-radius: 6px;
-}
-.form-group-lg select.form-control {
-  height: 46px;
-  line-height: 46px;
-}
-.form-group-lg textarea.form-control,
-.form-group-lg select[multiple].form-control {
-  height: auto;
-}
-.form-group-lg .form-control-static {
-  height: 46px;
-  min-height: 38px;
-  padding: 11px 16px;
-  font-size: 18px;
-  line-height: 1.3333333;
-}
-.has-feedback {
-  position: relative;
-}
-.has-feedback .form-control {
-  padding-right: 42.5px;
-}
-.form-control-feedback {
-  position: absolute;
-  top: 0;
-  right: 0;
-  z-index: 2;
-  display: block;
-  width: 34px;
-  height: 34px;
-  line-height: 34px;
-  text-align: center;
-  pointer-events: none;
-}
-.input-lg + .form-control-feedback,
-.input-group-lg + .form-control-feedback,
-.form-group-lg .form-control + .form-control-feedback {
-  width: 46px;
-  height: 46px;
-  line-height: 46px;
-}
-.input-sm + .form-control-feedback,
-.input-group-sm + .form-control-feedback,
-.form-group-sm .form-control + .form-control-feedback {
-  width: 30px;
-  height: 30px;
-  line-height: 30px;
-}
-.has-success .help-block,
-.has-success .control-label,
-.has-success .radio,
-.has-success .checkbox,
-.has-success .radio-inline,
-.has-success .checkbox-inline,
-.has-success.radio label,
-.has-success.checkbox label,
-.has-success.radio-inline label,
-.has-success.checkbox-inline label {
-  color: #3c763d;
-}
-.has-success .form-control {
-  border-color: #3c763d;
-  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
-          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
-}
-.has-success .form-control:focus {
-  border-color: #2b542c;
-  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
-          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
-}
-.has-success .input-group-addon {
-  color: #3c763d;
-  background-color: #dff0d8;
-  border-color: #3c763d;
-}
-.has-success .form-control-feedback {
-  color: #3c763d;
-}
-.has-warning .help-block,
-.has-warning .control-label,
-.has-warning .radio,
-.has-warning .checkbox,
-.has-warning .radio-inline,
-.has-warning .checkbox-inline,
-.has-warning.radio label,
-.has-warning.checkbox label,
-.has-warning.radio-inline label,
-.has-warning.checkbox-inline label {
-  color: #8a6d3b;
-}
-.has-warning .form-control {
-  border-color: #8a6d3b;
-  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
-          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
-}
-.has-warning .form-control:focus {
-  border-color: #66512c;
-  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
-          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
-}
-.has-warning .input-group-addon {
-  color: #8a6d3b;
-  background-color: #fcf8e3;
-  border-color: #8a6d3b;
-}
-.has-warning .form-control-feedback {
-  color: #8a6d3b;
-}
-.has-error .help-block,
-.has-error .control-label,
-.has-error .radio,
-.has-error .checkbox,
-.has-error .radio-inline,
-.has-error .checkbox-inline,
-.has-error.radio label,
-.has-error.checkbox label,
-.has-error.radio-inline label,
-.has-error.checkbox-inline label {
-  color: #a94442;
-}
-.has-error .form-control {
-  border-color: #a94442;
-  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
-          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
-}
-.has-error .form-control:focus {
-  border-color: #843534;
-  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
-          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
-}
-.has-error .input-group-addon {
-  color: #a94442;
-  background-color: #f2dede;
-  border-color: #a94442;
-}
-.has-error .form-control-feedback {
-  color: #a94442;
-}
-.has-feedback label ~ .form-control-feedback {
-  top: 25px;
-}
-.has-feedback label.sr-only ~ .form-control-feedback {
-  top: 0;
-}
-.help-block {
-  display: block;
-  margin-top: 5px;
-  margin-bottom: 10px;
-  color: #737373;
-}
-@media (min-width: 768px) {
-  .form-inline .form-group {
-    display: inline-block;
-    margin-bottom: 0;
-    vertical-align: middle;
-  }
-  .form-inline .form-control {
-    display: inline-block;
-    width: auto;
-    vertical-align: middle;
-  }
-  .form-inline .form-control-static {
-    display: inline-block;
-  }
-  .form-inline .input-group {
-    display: inline-table;
-    vertical-align: middle;
-  }
-  .form-inline .input-group .input-group-addon,
-  .form-inline .input-group .input-group-btn,
-  .form-inline .input-group .form-control {
-    width: auto;
-  }
-  .form-inline .input-group > .form-control {
-    width: 100%;
-  }
-  .form-inline .control-label {
-    margin-bottom: 0;
-    vertical-align: middle;
-  }
-  .form-inline .radio,
-  .form-inline .checkbox {
-    display: inline-block;
-    margin-top: 0;
-    margin-bottom: 0;
-    vertical-align: middle;
-  }
-  .form-inline .radio label,
-  .form-inline .checkbox label {
-    padding-left: 0;
-  }
-  .form-inline .radio input[type="radio"],
-  .form-inline .checkbox input[type="checkbox"] {
-    position: relative;
-    margin-left: 0;
-  }
-  .form-inline .has-feedback .form-control-feedback {
-    top: 0;
-  }
-}
-.form-horizontal .radio,
-.form-horizontal .checkbox,
-.form-horizontal .radio-inline,
-.form-horizontal .checkbox-inline {
-  padding-top: 7px;
-  margin-top: 0;
-  margin-bottom: 0;
-}
-.form-horizontal .radio,
-.form-horizontal .checkbox {
-  min-height: 27px;
-}
-.form-horizontal .form-group {
-  margin-right: -15px;
-  margin-left: -15px;
-}
-@media (min-width: 768px) {
-  .form-horizontal .control-label {
-    padding-top: 7px;
-    margin-bottom: 0;
-    text-align: right;
-  }
-}
-.form-horizontal .has-feedback .form-control-feedback {
-  right: 15px;
-}
-@media (min-width: 768px) {
-  .form-horizontal .form-group-lg .control-label {
-    padding-top: 11px;
-    font-size: 18px;
-  }
-}
-@media (min-width: 768px) {
-  .form-horizontal .form-group-sm .control-label {
-    padding-top: 6px;
-    font-size: 12px;
-  }
-}
-.btn {
-  display: inline-block;
-  padding: 6px 12px;
-  margin-bottom: 0;
-  font-size: 14px;
-  font-weight: normal;
-  line-height: 1.42857143;
-  text-align: center;
-  white-space: nowrap;
-  vertical-align: middle;
-  -ms-touch-action: manipulation;
-      touch-action: manipulation;
-  cursor: pointer;
-  -webkit-user-select: none;
-     -moz-user-select: none;
-      -ms-user-select: none;
-          user-select: none;
-  background-image: none;
-  border: 1px solid transparent;
-  border-radius: 4px;
-}
-.btn:focus,
-.btn:active:focus,
-.btn.active:focus,
-.btn.focus,
-.btn:active.focus,
-.btn.active.focus {
-  outline: thin dotted;
-  outline: 5px auto -webkit-focus-ring-color;
-  outline-offset: -2px;
-}
-.btn:hover,
-.btn:focus,
-.btn.focus {
-  color: #333;
-  text-decoration: none;
-}
-.btn:active,
-.btn.active {
-  background-image: none;
-  outline: 0;
-  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
-          box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
-}
-.btn.disabled,
-.btn[disabled],
-fieldset[disabled] .btn {
-  cursor: not-allowed;
-  filter: alpha(opacity=65);
-  -webkit-box-shadow: none;
-          box-shadow: none;
-  opacity: .65;
-}
-a.btn.disabled,
-fieldset[disabled] a.btn {
-  pointer-events: none;
-}
-.btn-default {
-  color: #333;
-  background-color: #fff;
-  border-color: #ccc;
-}
-.btn-default:focus,
-.btn-default.focus {
-  color: #333;
-  background-color: #e6e6e6;
-  border-color: #8c8c8c;
-}
-.btn-default:hover {
-  color: #333;
-  background-color: #e6e6e6;
-  border-color: #adadad;
-}
-.btn-default:active,
-.btn-default.active,
-.open > .dropdown-toggle.btn-default {
-  color: #333;
-  background-color: #e6e6e6;
-  border-color: #adadad;
-}
-.btn-default:active:hover,
-.btn-default.active:hover,
-.open > .dropdown-toggle.btn-default:hover,
-.btn-default:active:focus,
-.btn-default.active:focus,
-.open > .dropdown-toggle.btn-default:focus,
-.btn-default:active.focus,
-.btn-default.active.focus,
-.open > .dropdown-toggle.btn-default.focus {
-  color: #333;
-  background-color: #d4d4d4;
-  border-color: #8c8c8c;
-}
-.btn-default:active,
-.btn-default.active,
-.open > .dropdown-toggle.btn-default {
-  background-image: none;
-}
-.btn-default.disabled:hover,
-.btn-default[disabled]:hover,
-fieldset[disabled] .btn-default:hover,
-.btn-default.disabled:focus,
-.btn-default[disabled]:focus,
-fieldset[disabled] .btn-default:focus,
-.btn-default.disabled.focus,
-.btn-default[disabled].focus,
-fieldset[disabled] .btn-default.focus {
-  background-color: #fff;
-  border-color: #ccc;
-}
-.btn-default .badge {
-  color: #fff;
-  background-color: #333;
-}
-.btn-primary {
-  color: #fff;
-  background-color: #337ab7;
-  border-color: #2e6da4;
-}
-.btn-primary:focus,
-.btn-primary.focus {
-  color: #fff;
-  background-color: #286090;
-  border-color: #122b40;
-}
-.btn-primary:hover {
-  color: #fff;
-  background-color: #286090;
-  border-color: #204d74;
-}
-.btn-primary:active,
-.btn-primary.active,
-.open > .dropdown-toggle.btn-primary {
-  color: #fff;
-  background-color: #286090;
-  border-color: #204d74;
-}
-.btn-primary:active:hover,
-.btn-primary.active:hover,
-.open > .dropdown-toggle.btn-primary:hover,
-.btn-primary:active:focus,
-.btn-primary.active:focus,
-.open > .dropdown-toggle.btn-primary:focus,
-.btn-primary:active.focus,
-.btn-primary.active.focus,
-.open > .dropdown-toggle.btn-primary.focus {
-  color: #fff;
-  background-color: #204d74;
-  border-color: #122b40;
-}
-.btn-primary:active,
-.btn-primary.active,
-.open > .dropdown-toggle.btn-primary {
-  background-image: none;
-}
-.btn-primary.disabled:hover,
-.btn-primary[disabled]:hover,
-fieldset[disabled] .btn-primary:hover,
-.btn-primary.disabled:focus,
-.btn-primary[disabled]:focus,
-fieldset[disabled] .btn-primary:focus,
-.btn-primary.disabled.focus,
-.btn-primary[disabled].focus,
-fieldset[disabled] .btn-primary.focus {
-  background-color: #337ab7;
-  border-color: #2e6da4;
-}
-.btn-primary .badge {
-  color: #337ab7;
-  background-color: #fff;
-}
-.btn-success {
-  color: #fff;
-  background-color: #5cb85c;
-  border-color: #4cae4c;
-}
-.btn-success:focus,
-.btn-success.focus {
-  color: #fff;
-  background-color: #449d44;
-  border-color: #255625;
-}
-.btn-success:hover {
-  color: #fff;
-  background-color: #449d44;
-  border-color: #398439;
-}
-.btn-success:active,
-.btn-success.active,
-.open > .dropdown-toggle.btn-success {
-  color: #fff;
-  background-color: #449d44;
-  border-color: #398439;
-}
-.btn-success:active:hover,
-.btn-success.active:hover,
-.open > .dropdown-toggle.btn-success:hover,
-.btn-success:active:focus,
-.btn-success.active:focus,
-.open > .dropdown-toggle.btn-success:focus,
-.btn-success:active.focus,
-.btn-success.active.focus,
-.open > .dropdown-toggle.btn-success.focus {
-  color: #fff;
-  background-color: #398439;
-  border-color: #255625;
-}
-.btn-success:active,
-.btn-success.active,
-.open > .dropdown-toggle.btn-success {
-  background-image: none;
-}
-.btn-success.disabled:hover,
-.btn-success[disabled]:hover,
-fieldset[disabled] .btn-success:hover,
-.btn-success.disabled:focus,
-.btn-success[disabled]:focus,
-fieldset[disabled] .btn-success:focus,
-.btn-success.disabled.focus,
-.btn-success[disabled].focus,
-fieldset[disabled] .btn-success.focus {
-  background-color: #5cb85c;
-  border-color: #4cae4c;
-}
-.btn-success .badge {
-  color: #5cb85c;
-  background-color: #fff;
-}
-.btn-info {
-  color: #fff;
-  background-color: #5bc0de;
-  border-color: #46b8da;
-}
-.btn-info:focus,
-.btn-info.focus {
-  color: #fff;
-  background-color: #31b0d5;
-  border-color: #1b6d85;
-}
-.btn-info:hover {
-  color: #fff;
-  background-color: #31b0d5;
-  border-color: #269abc;
-}
-.btn-info:active,
-.btn-info.active,
-.open > .dropdown-toggle.btn-info {
-  color: #fff;
-  background-color: #31b0d5;
-  border-color: #269abc;
-}
-.btn-info:active:hover,
-.btn-info.active:hover,
-.open > .dropdown-toggle.btn-info:hover,
-.btn-info:active:focus,
-.btn-info.active:focus,
-.open > .dropdown-toggle.btn-info:focus,
-.btn-info:active.focus,
-.btn-info.active.focus,
-.open > .dropdown-toggle.btn-info.focus {
-  color: #fff;
-  background-color: #269abc;
-  border-color: #1b6d85;
-}
-.btn-info:active,
-.btn-info.active,
-.open > .dropdown-toggle.btn-info {
-  background-image: none;
-}
-.btn-info.disabled:hover,
-.btn-info[disabled]:hover,
-fieldset[disabled] .btn-info:hover,
-.btn-info.disabled:focus,
-.btn-info[disabled]:focus,
-fieldset[disabled] .btn-info:focus,
-.btn-info.disabled.focus,
-.btn-info[disabled].focus,
-fieldset[disabled] .btn-info.focus {
-  background-color: #5bc0de;
-  border-color: #46b8da;
-}
-.btn-info .badge {
-  color: #5bc0de;
-  background-color: #fff;
-}
-.btn-warning {
-  color: #fff;
-  background-color: #f0ad4e;
-  border-color: #eea236;
-}
-.btn-warning:focus,
-.btn-warning.focus {
-  color: #fff;
-  background-color: #ec971f;
-  border-color: #985f0d;
-}
-.btn-warning:hover {
-  color: #fff;
-  background-color: #ec971f;
-  border-color: #d58512;
-}
-.btn-warning:active,
-.btn-warning.active,
-.open > .dropdown-toggle.btn-warning {
-  color: #fff;
-  background-color: #ec971f;
-  border-color: #d58512;
-}
-.btn-warning:active:hover,
-.btn-warning.active:hover,
-.open > .dropdown-toggle.btn-warning:hover,
-.btn-warning:active:focus,
-.btn-warning.active:focus,
-.open > .dropdown-toggle.btn-warning:focus,
-.btn-warning:active.focus,
-.btn-warning.active.focus,
-.open > .dropdown-toggle.btn-warning.focus {
-  color: #fff;
-  background-color: #d58512;
-  border-color: #985f0d;
-}
-.btn-warning:active,
-.btn-warning.active,
-.open > .dropdown-toggle.btn-warning {
-  background-image: none;
-}
-.btn-warning.disabled:hover,
-.btn-warning[disabled]:hover,
-fieldset[disabled] .btn-warning:hover,
-.btn-warning.disabled:focus,
-.btn-warning[disabled]:focus,
-fieldset[disabled] .btn-warning:focus,
-.btn-warning.disabled.focus,
-.btn-warning[disabled].focus,
-fieldset[disabled] .btn-warning.focus {
-  background-color: #f0ad4e;
-  border-color: #eea236;
-}
-.btn-warning .badge {
-  color: #f0ad4e;
-  background-color: #fff;
-}
-.btn-danger {
-  color: #fff;
-  background-color: #d9534f;
-  border-color: #d43f3a;
-}
-.btn-danger:focus,
-.btn-danger.focus {
-  color: #fff;
-  background-color: #c9302c;
-  border-color: #761c19;
-}
-.btn-danger:hover {
-  color: #fff;
-  background-color: #c9302c;
-  border-color: #ac2925;
-}
-.btn-danger:active,
-.btn-danger.active,
-.open > .dropdown-toggle.btn-danger {
-  color: #fff;
-  background-color: #c9302c;
-  border-color: #ac2925;
-}
-.btn-danger:active:hover,
-.btn-danger.active:hover,
-.open > .dropdown-toggle.btn-danger:hover,
-.btn-danger:active:focus,
-.btn-danger.active:focus,
-.open > .dropdown-toggle.btn-danger:focus,
-.btn-danger:active.focus,
-.btn-danger.active.focus,
-.open > .dropdown-toggle.btn-danger.focus {
-  color: #fff;
-  background-color: #ac2925;
-  border-color: #761c19;
-}
-.btn-danger:active,
-.btn-danger.active,
-.open > .dropdown-toggle.btn-danger {
-  background-image: none;
-}
-.btn-danger.disabled:hover,
-.btn-danger[disabled]:hover,
-fieldset[disabled] .btn-danger:hover,
-.btn-danger.disabled:focus,
-.btn-danger[disabled]:focus,
-fieldset[disabled] .btn-danger:focus,
-.btn-danger.disabled.focus,
-.btn-danger[disabled].focus,
-fieldset[disabled] .btn-danger.focus {
-  background-color: #d9534f;
-  border-color: #d43f3a;
-}
-.btn-danger .badge {
-  color: #d9534f;
-  background-color: #fff;
-}
-.btn-link {
-  font-weight: normal;
-  color: #337ab7;
-  border-radius: 0;
-}
-.btn-link,
-.btn-link:active,
-.btn-link.active,
-.btn-link[disabled],
-fieldset[disabled] .btn-link {
-  background-color: transparent;
-  -webkit-box-shadow: none;
-          box-shadow: none;
-}
-.btn-link,
-.btn-link:hover,
-.btn-link:focus,
-.btn-link:active {
-  border-color: transparent;
-}
-.btn-link:hover,
-.btn-link:focus {
-  color: #23527c;
-  text-decoration: underline;
-  background-color: transparent;
-}
-.btn-link[disabled]:hover,
-fieldset[disabled] .btn-link:hover,
-.btn-link[disabled]:focus,
-fieldset[disabled] .btn-link:focus {
-  color: #777;
-  text-decoration: none;
-}
-.btn-lg,
-.btn-group-lg > .btn {
-  padding: 10px 16px;
-  font-size: 18px;
-  line-height: 1.3333333;
-  border-radius: 6px;
-}
-.btn-sm,
-.btn-group-sm > .btn {
-  padding: 5px 10px;
-  font-size: 12px;
-  line-height: 1.5;
-  border-radius: 3px;
-}
-.btn-xs,
-.btn-group-xs > .btn {
-  padding: 1px 5px;
-  font-size: 12px;
-  line-height: 1.5;
-  border-radius: 3px;
-}
-.btn-block {
-  display: block;
-  width: 100%;
-}
-.btn-block + .btn-block {
-  margin-top: 5px;
-}
-input[type="submit"].btn-block,
-input[type="reset"].btn-block,
-input[type="button"].btn-block {
-  width: 100%;
-}
-.fade {
-  opacity: 0;
-  -webkit-transition: opacity .15s linear;
-       -o-transition: opacity .15s linear;
-          transition: opacity .15s linear;
-}
-.fade.in {
-  opacity: 1;
-}
-.collapse {
-  display: none;
-}
-.collapse.in {
-  display: block;
-}
-tr.collapse.in {
-  display: table-row;
-}
-tbody.collapse.in {
-  display: table-row-group;
-}
-.collapsing {
-  position: relative;
-  height: 0;
-  overflow: hidden;
-  -webkit-transition-timing-function: ease;
-       -o-transition-timing-function: ease;
-          transition-timing-function: ease;
-  -webkit-transition-duration: .35s;
-       -o-transition-duration: .35s;
-          transition-duration: .35s;
-  -webkit-transition-property: height, visibility;
-       -o-transition-property: height, visibility;
-          transition-property: height, visibility;
-}
-.caret {
-  display: inline-block;
-  width: 0;
-  height: 0;
-  margin-left: 2px;
-  vertical-align: middle;
-  border-top: 4px dashed;
-  border-top: 4px solid \9;
-  border-right: 4px solid transparent;
-  border-left: 4px solid transparent;
-}
-.dropup,
-.dropdown {
-  position: relative;
-}
-.dropdown-toggle:focus {
-  outline: 0;
-}
-.dropdown-menu {
-  position: absolute;
-  top: 100%;
-  left: 0;
-  z-index: 1000;
-  display: none;
-  float: left;
-  min-width: 160px;
-  padding: 5px 0;
-  margin: 2px 0 0;
-  font-size: 14px;
-  text-align: left;
-  list-style: none;
-  background-color: #fff;
-  -webkit-background-clip: padding-box;
-          background-clip: padding-box;
-  border: 1px solid #ccc;
-  border: 1px solid rgba(0, 0, 0, .15);
-  border-radius: 4px;
-  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
-          box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
-}
-.dropdown-menu.pull-right {
-  right: 0;
-  left: auto;
-}
-.dropdown-menu .divider {
-  height: 1px;
-  margin: 9px 0;
-  overflow: hidden;
-  background-color: #e5e5e5;
-}
-.dropdown-menu > li > a {
-  display: block;
-  padding: 3px 20px;
-  clear: both;
-  font-weight: normal;
-  line-height: 1.42857143;
-  color: #333;
-  white-space: nowrap;
-}
-.dropdown-menu > li > a:hover,
-.dropdown-menu > li > a:focus {
-  color: #262626;
-  text-decoration: none;
-  background-color: #f5f5f5;
-}
-.dropdown-menu > .active > a,
-.dropdown-menu > .active > a:hover,
-.dropdown-menu > .active > a:focus {
-  color: #fff;
-  text-decoration: none;
-  background-color: #337ab7;
-  outline: 0;
-}
-.dropdown-menu > .disabled > a,
-.dropdown-menu > .disabled > a:hover,
-.dropdown-menu > .disabled > a:focus {
-  color: #777;
-}
-.dropdown-menu > .disabled > a:hover,
-.dropdown-menu > .disabled > a:focus {
-  text-decoration: none;
-  cursor: not-allowed;
-  background-color: transparent;
-  background-image: none;
-  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
-}
-.open > .dropdown-menu {
-  display: block;
-}
-.open > a {
-  outline: 0;
-}
-.dropdown-menu-right {
-  right: 0;
-  left: auto;
-}
-.dropdown-menu-left {
-  right: auto;
-  left: 0;
-}
-.dropdown-header {
-  display: block;
-  padding: 3px 20px;
-  font-size: 12px;
-  line-height: 1.42857143;
-  color: #777;
-  white-space: nowrap;
-}
-.dropdown-backdrop {
-  position: fixed;
-  top: 0;
-  right: 0;
-  bottom: 0;
-  left: 0;
-  z-index: 990;
-}
-.pull-right > .dropdown-menu {
-  right: 0;
-  left: auto;
-}
-.dropup .caret,
-.navbar-fixed-bottom .dropdown .caret {
-  content: "";
-  border-top: 0;
-  border-bottom: 4px dashed;
-  border-bottom: 4px solid \9;
-}
-.dropup .dropdown-menu,
-.navbar-fixed-bottom .dropdown .dropdown-menu {
-  top: auto;
-  bottom: 100%;
-  margin-bottom: 2px;
-}
-@media (min-width: 768px) {
-  .navbar-right .dropdown-menu {
-    right: 0;
-    left: auto;
-  }
-  .navbar-right .dropdown-menu-left {
-    right: auto;
-    left: 0;
-  }
-}
-.btn-group,
-.btn-group-vertical {
-  position: relative;
-  display: inline-block;
-  vertical-align: middle;
-}
-.btn-group > .btn,
-.btn-group-vertical > .btn {
-  position: relative;
-  float: left;
-}
-.btn-group > .btn:hover,
-.btn-group-vertical > .btn:hover,
-.btn-group > .btn:focus,
-.btn-group-vertical > .btn:focus,
-.btn-group > .btn:active,
-.btn-group-vertical > .btn:active,
-.btn-group > .btn.active,
-.btn-group-vertical > .btn.active {
-  z-index: 2;
-}
-.btn-group .btn + .btn,
-.btn-group .btn + .btn-group,
-.btn-group .btn-group + .btn,
-.btn-group .btn-group + .btn-group {
-  margin-left: -1px;
-}
-.btn-toolbar {
-  margin-left: -5px;
-}
-.btn-toolbar .btn,
-.btn-toolbar .btn-group,
-.btn-toolbar .input-group {
-  float: left;
-}
-.btn-toolbar > .btn,
-.btn-toolbar > .btn-group,
-.btn-toolbar > .input-group {
-  margin-left: 5px;
-}
-.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
-  border-radius: 0;
-}
-.btn-group > .btn:first-child {
-  margin-left: 0;
-}
-.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
-  border-top-right-radius: 0;
-  border-bottom-right-radius: 0;
-}
-.btn-group > .btn:last-child:not(:first-child),
-.btn-group > .dropdown-toggle:not(:first-child) {
-  border-top-left-radius: 0;
-  border-bottom-left-radius: 0;
-}
-.btn-group > .btn-group {
-  float: left;
-}
-.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
-  border-radius: 0;
-}
-.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
-.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
-  border-top-right-radius: 0;
-  border-bottom-right-radius: 0;
-}
-.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
-  border-top-left-radius: 0;
-  border-bottom-left-radius: 0;
-}
-.btn-group .dropdown-toggle:active,
-.btn-group.open .dropdown-toggle {
-  outline: 0;
-}
-.btn-group > .btn + .dropdown-toggle {
-  padding-right: 8px;
-  padding-left: 8px;
-}
-.btn-group > .btn-lg + .dropdown-toggle {
-  padding-right: 12px;
-  padding-left: 12px;
-}
-.btn-group.open .dropdown-toggle {
-  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
-          box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
-}
-.btn-group.open .dropdown-toggle.btn-link {
-  -webkit-box-shadow: none;
-          box-shadow: none;
-}
-.btn .caret {
-  margin-left: 0;
-}
-.btn-lg .caret {
-  border-width: 5px 5px 0;
-  border-bottom-width: 0;
-}
-.dropup .btn-lg .caret {
-  border-width: 0 5px 5px;
-}
-.btn-group-vertical > .btn,
-.btn-group-vertical > .btn-group,
-.btn-group-vertical > .btn-group > .btn {
-  display: block;
-  float: none;
-  width: 100%;
-  max-width: 100%;
-}
-.btn-group-vertical > .btn-group > .btn {
-  float: none;
-}
-.btn-group-vertical > .btn + .btn,
-.btn-group-vertical > .btn + .btn-group,
-.btn-group-vertical > .btn-group + .btn,
-.btn-group-vertical > .btn-group + .btn-group {
-  margin-top: -1px;
-  margin-left: 0;
-}
-.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
-  border-radius: 0;
-}
-.btn-group-vertical > .btn:first-child:not(:last-child) {
-  border-top-left-radius: 4px;
-  border-top-right-radius: 4px;
-  border-bottom-right-radius: 0;
-  border-bottom-left-radius: 0;
-}
-.btn-group-vertical > .btn:last-child:not(:first-child) {
-  border-top-left-radius: 0;
-  border-top-right-radius: 0;
-  border-bottom-right-radius: 4px;
-  border-bottom-left-radius: 4px;
-}
-.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
-  border-radius: 0;
-}
-.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
-.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
-  border-bottom-right-radius: 0;
-  border-bottom-left-radius: 0;
-}
-.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
-  border-top-left-radius: 0;
-  border-top-right-radius: 0;
-}
-.btn-group-justified {
-  display: table;
-  width: 100%;
-  table-layout: fixed;
-  border-collapse: separate;
-}
-.btn-group-justified > .btn,
-.btn-group-justified > .btn-group {
-  display: table-cell;
-  float: none;
-  width: 1%;
-}
-.btn-group-justified > .btn-group .btn {
-  width: 100%;
-}
-.btn-group-justified > .btn-group .dropdown-menu {
-  left: auto;
-}
-[data-toggle="buttons"] > .btn input[type="radio"],
-[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
-[data-toggle="buttons"] > .btn input[type="checkbox"],
-[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
-  position: absolute;
-  clip: rect(0, 0, 0, 0);
-  pointer-events: none;
-}
-.input-group {
-  position: relative;
-  display: table;
-  border-collapse: separate;
-}
-.input-group[class*="col-"] {
-  float: none;
-  padding-right: 0;
-  padding-left: 0;
-}
-.input-group .form-control {
-  position: relative;
-  z-index: 2;
-  float: left;
-  width: 100%;
-  margin-bottom: 0;
-}
-.input-group .form-control:focus {
-  z-index: 3;
-}
-.input-group-lg > .form-control,
-.input-group-lg > .input-group-addon,
-.input-group-lg > .input-group-btn > .btn {
-  height: 46px;
-  padding: 10px 16px;
-  font-size: 18px;
-  line-height: 1.3333333;
-  border-radius: 6px;
-}
-select.input-group-lg > .form-control,
-select.input-group-lg > .input-group-addon,
-select.input-group-lg > .input-group-btn > .btn {
-  height: 46px;
-  line-height: 46px;
-}
-textarea.input-group-lg > .form-control,
-textarea.input-group-lg > .input-group-addon,
-textarea.input-group-lg > .input-group-btn > .btn,
-select[multiple].input-group-lg > .form-control,
-select[multiple].input-group-lg > .input-group-addon,
-select[multiple].input-group-lg > .input-group-btn > .btn {
-  height: auto;
-}
-.input-group-sm > .form-control,
-.input-group-sm > .input-group-addon,
-.input-group-sm > .input-group-btn > .btn {
-  height: 30px;
-  padding: 5px 10px;
-  font-size: 12px;
-  line-height: 1.5;
-  border-radius: 3px;
-}
-select.input-group-sm > .form-control,
-select.input-group-sm > .input-group-addon,
-select.input-group-sm > .input-group-btn > .btn {
-  height: 30px;
-  line-height: 30px;
-}
-textarea.input-group-sm > .form-control,
-textarea.input-group-sm > .input-group-addon,
-textarea.input-group-sm > .input-group-btn > .btn,
-select[multiple].input-group-sm > .form-control,
-select[multiple].input-group-sm > .input-group-addon,
-select[multiple].input-group-sm > .input-group-btn > .btn {
-  height: auto;
-}
-.input-group-addon,
-.input-group-btn,
-.input-group .form-control {
-  display: table-cell;
-}
-.input-group-addon:not(:first-child):not(:last-child),
-.input-group-btn:not(:first-child):not(:last-child),
-.input-group .form-control:not(:first-child):not(:last-child) {
-  border-radius: 0;
-}
-.input-group-addon,
-.input-group-btn {
-  width: 1%;
-  white-space: nowrap;
-  vertical-align: middle;
-}
-.input-group-addon {
-  padding: 6px 12px;
-  font-size: 14px;
-  font-weight: normal;
-  line-height: 1;
-  color: #555;
-  text-align: center;
-  background-color: #eee;
-  border: 1px solid #ccc;
-  border-radius: 4px;
-}
-.input-group-addon.input-sm {
-  padding: 5px 10px;
-  font-size: 12px;
-  border-radius: 3px;
-}
-.input-group-addon.input-lg {
-  padding: 10px 16px;
-  font-size: 18px;
-  border-radius: 6px;
-}
-.input-group-addon input[type="radio"],
-.input-group-addon input[type="checkbox"] {
-  margin-top: 0;
-}
-.input-group .form-control:first-child,
-.input-group-addon:first-child,
-.input-group-btn:first-child > .btn,
-.input-group-btn:first-child > .btn-group > .btn,
-.input-group-btn:first-child > .dropdown-toggle,
-.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
-.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
-  border-top-right-radius: 0;
-  border-bottom-right-radius: 0;
-}
-.input-group-addon:first-child {
-  border-right: 0;
-}
-.input-group .form-control:last-child,
-.input-group-addon:last-child,
-.input-group-btn:last-child > .btn,
-.input-group-btn:last-child > .btn-group > .btn,
-.input-group-btn:last-child > .dropdown-toggle,
-.input-group-btn:first-child > .btn:not(:first-child),
-.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
-  border-top-left-radius: 0;
-  border-bottom-left-radius: 0;
-}
-.input-group-addon:last-child {
-  border-left: 0;
-}
-.input-group-btn {
-  position: relative;
-  font-size: 0;
-  white-space: nowrap;
-}
-.input-group-btn > .btn {
-  position: relative;
-}
-.input-group-btn > .btn + .btn {
-  margin-left: -1px;
-}
-.input-group-btn > .btn:hover,
-.input-group-btn > .btn:focus,
-.input-group-btn > .btn:active {
-  z-index: 2;
-}
-.input-group-btn:first-child > .btn,
-.input-group-btn:first-child > .btn-group {
-  margin-right: -1px;
-}
-.input-group-btn:last-child > .btn,
-.input-group-btn:last-child > .btn-group {
-  z-index: 2;
-  margin-left: -1px;
-}
-.nav {
-  padding-left: 0;
-  margin-bottom: 0;
-  list-style: none;
-}
-.nav > li {
-  position: relative;
-  display: block;
-}
-.nav > li > a {
-  position: relative;
-  display: block;
-  padding: 10px 15px;
-}
-.nav > li > a:hover,
-.nav > li > a:focus {
-  text-decoration: none;
-  background-color: #eee;
-}
-.nav > li.disabled > a {
-  color: #777;
-}
-.nav > li.disabled > a:hover,
-.nav > li.disabled > a:focus {
-  color: #777;
-  text-decoration: none;
-  cursor: not-allowed;
-  background-color: transparent;
-}
-.nav .open > a,
-.nav .open > a:hover,
-.nav .open > a:focus {
-  background-color: #eee;
-  border-color: #337ab7;
-}
-.nav .nav-divider {
-  height: 1px;
-  margin: 9px 0;
-  overflow: hidden;
-  background-color: #e5e5e5;
-}
-.nav > li > a > img {
-  max-width: none;
-}
-.nav-tabs {
-  border-bottom: 1px solid #ddd;
-}
-.nav-tabs > li {
-  float: left;
-  margin-bottom: -1px;
-}
-.nav-tabs > li > a {
-  margin-right: 2px;
-  line-height: 1.42857143;
-  border: 1px solid transparent;
-  border-radius: 4px 4px 0 0;
-}
-.nav-tabs > li > a:hover {
-  border-color: #eee #eee #ddd;
-}
-.nav-tabs > li.active > a,
-.nav-tabs > li.active > a:hover,
-.nav-tabs > li.active > a:focus {
-  color: #555;
-  cursor: default;
-  background-color: #fff;
-  border: 1px solid #ddd;
-  border-bottom-color: transparent;
-}
-.nav-tabs.nav-justified {
-  width: 100%;
-  border-bottom: 0;
-}
-.nav-tabs.nav-justified > li {
-  float: none;
-}
-.nav-tabs.nav-justified > li > a {
-  margin-bottom: 5px;
-  text-align: center;
-}
-.nav-tabs.nav-justified > .dropdown .dropdown-menu {
-  top: auto;
-  left: auto;
-}
-@media (min-width: 768px) {
-  .nav-tabs.nav-justified > li {
-    display: table-cell;
-    width: 1%;
-  }
-  .nav-tabs.nav-justified > li > a {
-    margin-bottom: 0;
-  }
-}
-.nav-tabs.nav-justified > li > a {
-  margin-right: 0;
-  border-radius: 4px;
-}
-.nav-tabs.nav-justified > .active > a,
-.nav-tabs.nav-justified > .active > a:hover,
-.nav-tabs.nav-justified > .active > a:focus {
-  border: 1px solid #ddd;
-}
-@media (min-width: 768px) {
-  .nav-tabs.nav-justified > li > a {
-    border-bottom: 1px solid #ddd;
-    border-radius: 4px 4px 0 0;
-  }
-  .nav-tabs.nav-justified > .active > a,
-  .nav-tabs.nav-justified > .active > a:hover,
-  .nav-tabs.nav-justified > .active > a:focus {
-    border-bottom-color: #fff;
-  }
-}
-.nav-pills > li {
-  float: left;
-}
-.nav-pills > li > a {
-  border-radius: 4px;
-}
-.nav-pills > li + li {
-  margin-left: 2px;
-}
-.nav-pills > li.active > a,
-.nav-pills > li.active > a:hover,
-.nav-pills > li.active > a:focus {
-  color: #fff;
-  background-color: #337ab7;
-}
-.nav-stacked > li {
-  float: none;
-}
-.nav-stacked > li + li {
-  margin-top: 2px;
-  margin-left: 0;
-}
-.nav-justified {
-  width: 100%;
-}
-.nav-justified > li {
-  float: none;
-}
-.nav-justified > li > a {
-  margin-bottom: 5px;
-  text-align: center;
-}
-.nav-justified > .dropdown .dropdown-menu {
-  top: auto;
-  left: auto;
-}
-@media (min-width: 768px) {
-  .nav-justified > li {
-    display: table-cell;
-    width: 1%;
-  }
-  .nav-justified > li > a {
-    margin-bottom: 0;
-  }
-}
-.nav-tabs-justified {
-  border-bottom: 0;
-}
-.nav-tabs-justified > li > a {
-  margin-right: 0;
-  border-radius: 4px;
-}
-.nav-tabs-justified > .active > a,
-.nav-tabs-justified > .active > a:hover,
-.nav-tabs-justified > .active > a:focus {
-  border: 1px solid #ddd;
-}
-@media (min-width: 768px) {
-  .nav-tabs-justified > li > a {
-    border-bottom: 1px solid #ddd;
-    border-radius: 4px 4px 0 0;
-  }
-  .nav-tabs-justified > .active > a,
-  .nav-tabs-justified > .active > a:hover,
-  .nav-tabs-justified > .active > a:focus {
-    border-bottom-color: #fff;
-  }
-}
-.tab-content > .tab-pane {
-  display: none;
-}
-.tab-content > .active {
-  display: block;
-}
-.nav-tabs .dropdown-menu {
-  margin-top: -1px;
-  border-top-left-radius: 0;
-  border-top-right-radius: 0;
-}
-.navbar {
-  position: relative;
-  min-height: 50px;
-  margin-bottom: 20px;
-  border: 1px solid transparent;
-}
-@media (min-width: 768px) {
-  .navbar {
-    border-radius: 4px;
-  }
-}
-@media (min-width: 768px) {
-  .navbar-header {
-    float: left;
-  }
-}
-.navbar-collapse {
-  padding-right: 15px;
-  padding-left: 15px;
-  overflow-x: visible;
-  -webkit-overflow-scrolling: touch;
-  border-top: 1px solid transparent;
-  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
-          box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
-}
-.navbar-collapse.in {
-  overflow-y: auto;
-}
-@media (min-width: 768px) {
-  .navbar-collapse {
-    width: auto;
-    border-top: 0;
-    -webkit-box-shadow: none;
-            box-shadow: none;
-  }
-  .navbar-collapse.collapse {
-    display: block !important;
-    height: auto !important;
-    padding-bottom: 0;
-    overflow: visible !important;
-  }
-  .navbar-collapse.in {
-    overflow-y: visible;
-  }
-  .navbar-fixed-top .navbar-collapse,
-  .navbar-static-top .navbar-collapse,
-  .navbar-fixed-bottom .navbar-collapse {
-    padding-right: 0;
-    padding-left: 0;
-  }
-}
-.navbar-fixed-top .navbar-collapse,
-.navbar-fixed-bottom .navbar-collapse {
-  max-height: 340px;
-}
-@media (max-device-width: 480px) and (orientation: landscape) {
-  .navbar-fixed-top .navbar-collapse,
-  .navbar-fixed-bottom .navbar-collapse {
-    max-height: 200px;
-  }
-}
-.container > .navbar-header,
-.container-fluid > .navbar-header,
-.container > .navbar-collapse,
-.container-fluid > .navbar-collapse {
-  margin-right: -15px;
-  margin-left: -15px;
-}
-@media (min-width: 768px) {
-  .container > .navbar-header,
-  .container-fluid > .navbar-header,
-  .container > .navbar-collapse,
-  .container-fluid > .navbar-collapse {
-    margin-right: 0;
-    margin-left: 0;
-  }
-}
-.navbar-static-top {
-  z-index: 1000;
-  border-width: 0 0 1px;
-}
-@media (min-width: 768px) {
-  .navbar-static-top {
-    border-radius: 0;
-  }
-}
-.navbar-fixed-top,
-.navbar-fixed-bottom {
-  position: fixed;
-  right: 0;
-  left: 0;
-  z-index: 1030;
-}
-@media (min-width: 768px) {
-  .navbar-fixed-top,
-  .navbar-fixed-bottom {
-    border-radius: 0;
-  }
-}
-.navbar-fixed-top {
-  top: 0;
-  border-width: 0 0 1px;
-}
-.navbar-fixed-bottom {
-  bottom: 0;
-  margin-bottom: 0;
-  border-width: 1px 0 0;
-}
-.navbar-brand {
-  float: left;
-  height: 50px;
-  padding: 15px 15px;
-  font-size: 18px;
-  line-height: 20px;
-}
-.navbar-brand:hover,
-.navbar-brand:focus {
-  text-decoration: none;
-}
-.navbar-brand > img {
-  display: block;
-}
-@media (min-width: 768px) {
-  .navbar > .container .navbar-brand,
-  .navbar > .container-fluid .navbar-brand {
-    margin-left: -15px;
-  }
-}
-.navbar-toggle {
-  position: relative;
-  float: right;
-  padding: 9px 10px;
-  margin-top: 8px;
-  margin-right: 15px;
-  margin-bottom: 8px;
-  background-color: transparent;
-  background-image: none;
-  border: 1px solid transparent;
-  border-radius: 4px;
-}
-.navbar-toggle:focus {
-  outline: 0;
-}
-.navbar-toggle .icon-bar {
-  display: block;
-  width: 22px;
-  height: 2px;
-  border-radius: 1px;
-}
-.navbar-toggle .icon-bar + .icon-bar {
-  margin-top: 4px;
-}
-@media (min-width: 768px) {
-  .navbar-toggle {
-    display: none;
-  }
-}
-.navbar-nav {
-  margin: 7.5px -15px;
-}
-.navbar-nav > li > a {
-  padding-top: 10px;
-  padding-bottom: 10px;
-  line-height: 20px;
-}
-@media (max-width: 767px) {
-  .navbar-nav .open .dropdown-menu {
-    position: static;
-    float: none;
-    width: auto;
-    margin-top: 0;
-    background-color: transparent;
-    border: 0;
-    -webkit-box-shadow: none;
-            box-shadow: none;
-  }
-  .navbar-nav .open .dropdown-menu > li > a,
-  .navbar-nav .open .dropdown-menu .dropdown-header {
-    padding: 5px 15px 5px 25px;
-  }
-  .navbar-nav .open .dropdown-menu > li > a {
-    line-height: 20px;
-  }
-  .navbar-nav .open .dropdown-menu > li > a:hover,
-  .navbar-nav .open .dropdown-menu > li > a:focus {
-    background-image: none;
-  }
-}
-@media (min-width: 768px) {
-  .navbar-nav {
-    float: left;
-    margin: 0;
-  }
-  .navbar-nav > li {
-    float: left;
-  }
-  .navbar-nav > li > a {
-    padding-top: 15px;
-    padding-bottom: 15px;
-  }
-}
-.navbar-form {
-  padding: 10px 15px;
-  margin-top: 8px;
-  margin-right: -15px;
-  margin-bottom: 8px;
-  margin-left: -15px;
-  border-top: 1px solid transparent;
-  border-bottom: 1px solid transparent;
-  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
-          box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
-}
-@media (min-width: 768px) {
-  .navbar-form .form-group {
-    display: inline-block;
-    margin-bottom: 0;
-    vertical-align: middle;
-  }
-  .navbar-form .form-control {
-    display: inline-block;
-    width: auto;
-    vertical-align: middle;
-  }
-  .navbar-form .form-control-static {
-    display: inline-block;
-  }
-  .navbar-form .input-group {
-    display: inline-table;
-    vertical-align: middle;
-  }
-  .navbar-form .input-group .input-group-addon,
-  .navbar-form .input-group .input-group-btn,
-  .navbar-form .input-group .form-control {
-    width: auto;
-  }
-  .navbar-form .input-group > .form-control {
-    width: 100%;
-  }
-  .navbar-form .control-label {
-    margin-bottom: 0;
-    vertical-align: middle;
-  }
-  .navbar-form .radio,
-  .navbar-form .checkbox {
-    display: inline-block;
-    margin-top: 0;
-    margin-bottom: 0;
-    vertical-align: middle;
-  }
-  .navbar-form .radio label,
-  .navbar-form .checkbox label {
-    padding-left: 0;
-  }
-  .navbar-form .radio input[type="radio"],
-  .navbar-form .checkbox input[type="checkbox"] {
-    position: relative;
-    margin-left: 0;
-  }
-  .navbar-form .has-feedback .form-control-feedback {
-    top: 0;
-  }
-}
-@media (max-width: 767px) {
-  .navbar-form .form-group {
-    margin-bottom: 5px;
-  }
-  .navbar-form .form-group:last-child {
-    margin-bottom: 0;
-  }
-}
-@media (min-width: 768px) {
-  .navbar-form {
-    width: auto;
-    padding-top: 0;
-    padding-bottom: 0;
-    margin-right: 0;
-    margin-left: 0;
-    border: 0;
-    -webkit-box-shadow: none;
-            box-shadow: none;
-  }
-}
-.navbar-nav > li > .dropdown-menu {
-  margin-top: 0;
-  border-top-left-radius: 0;
-  border-top-right-radius: 0;
-}
-.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
-  margin-bottom: 0;
-  border-top-left-radius: 4px;
-  border-top-right-radius: 4px;
-  border-bottom-right-radius: 0;
-  border-bottom-left-radius: 0;
-}
-.navbar-btn {
-  margin-top: 8px;
-  margin-bottom: 8px;
-}
-.navbar-btn.btn-sm {
-  margin-top: 10px;
-  margin-bottom: 10px;
-}
-.navbar-btn.btn-xs {
-  margin-top: 14px;
-  margin-bottom: 14px;
-}
-.navbar-text {
-  margin-top: 15px;
-  margin-bottom: 15px;
-}
-@media (min-width: 768px) {
-  .navbar-text {
-    float: left;
-    margin-right: 15px;
-    margin-left: 15px;
-  }
-}
-@media (min-width: 768px) {
-  .navbar-left {
-    float: left !important;
-  }
-  .navbar-right {
-    float: right !important;
-    margin-right: -15px;
-  }
-  .navbar-right ~ .navbar-right {
-    margin-right: 0;
-  }
-}
-.navbar-default {
-  background-color: #f8f8f8;
-  border-color: #e7e7e7;
-}
-.navbar-default .navbar-brand {
-  color: #777;
-}
-.navbar-default .navbar-brand:hover,
-.navbar-default .navbar-brand:focus {
-  color: #5e5e5e;
-  background-color: transparent;
-}
-.navbar-default .navbar-text {
-  color: #777;
-}
-.navbar-default .navbar-nav > li > a {
-  color: #777;
-}
-.navbar-default .navbar-nav > li > a:hover,
-.navbar-default .navbar-nav > li > a:focus {
-  color: #333;
-  background-color: transparent;
-}
-.navbar-default .navbar-nav > .active > a,
-.navbar-default .navbar-nav > .active > a:hover,
-.navbar-default .navbar-nav > .active > a:focus {
-  color: #555;
-  background-color: #e7e7e7;
-}
-.navbar-default .navbar-nav > .disabled > a,
-.navbar-default .navbar-nav > .disabled > a:hover,
-.navbar-default .navbar-nav > .disabled > a:focus {
-  color: #ccc;
-  background-color: transparent;
-}
-.navbar-default .navbar-toggle {
-  border-color: #ddd;
-}
-.navbar-default .navbar-toggle:hover,
-.navbar-default .navbar-toggle:focus {
-  background-color: #ddd;
-}
-.navbar-default .navbar-toggle .icon-bar {
-  background-color: #888;
-}
-.navbar-default .navbar-collapse,
-.navbar-default .navbar-form {
-  border-color: #e7e7e7;
-}
-.navbar-default .navbar-nav > .open > a,
-.navbar-default .navbar-nav > .open > a:hover,
-.navbar-default .navbar-nav > .open > a:focus {
-  color: #555;
-  background-color: #e7e7e7;
-}
-@media (max-width: 767px) {
-  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
-    color: #777;
-  }
-  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
-  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
-    color: #333;
-    background-color: transparent;
-  }
-  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
-  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
-  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
-    color: #555;
-    background-color: #e7e7e7;
-  }
-  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
-  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
-  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
-    color: #ccc;
-    background-color: transparent;
-  }
-}
-.navbar-default .navbar-link {
-  color: #777;
-}
-.navbar-default .navbar-link:hover {
-  color: #333;
-}
-.navbar-default .btn-link {
-  color: #777;
-}
-.navbar-default .btn-link:hover,
-.navbar-default .btn-link:focus {
-  color: #333;
-}
-.navbar-default .btn-link[disabled]:hover,
-fieldset[disabled] .navbar-default .btn-link:hover,
-.navbar-default .btn-link[disabled]:focus,
-fieldset[disabled] .navbar-default .btn-link:focus {
-  color: #ccc;
-}
-.navbar-inverse {
-  background-color: #222;
-  border-color: #080808;
-}
-.navbar-inverse .navbar-brand {
-  color: #9d9d9d;
-}
-.navbar-inverse .navbar-brand:hover,
-.navbar-inverse .navbar-brand:focus {
-  color: #fff;
-  background-color: transparent;
-}
-.navbar-inverse .navbar-text {
-  color: #9d9d9d;
-}
-.navbar-inverse .navbar-nav > li > a {
-  color: #9d9d9d;
-}
-.navbar-inverse .navbar-nav > li > a:hover,
-.navbar-inverse .navbar-nav > li > a:focus {
-  color: #fff;
-  background-color: transparent;
-}
-.navbar-inverse .navbar-nav > .active > a,
-.navbar-inverse .navbar-nav > .active > a:hover,
-.navbar-inverse .navbar-nav > .active > a:focus {
-  color: #fff;
-  background-color: #080808;
-}
-.navbar-inverse .navbar-nav > .disabled > a,
-.navbar-inverse .navbar-nav > .disabled > a:hover,
-.navbar-inverse .navbar-nav > .disabled > a:focus {
-  color: #444;
-  background-color: transparent;
-}
-.navbar-inverse .navbar-toggle {
-  border-color: #333;
-}
-.navbar-inverse .navbar-toggle:hover,
-.navbar-inverse .navbar-toggle:focus {
-  background-color: #333;
-}
-.navbar-inverse .navbar-toggle .icon-bar {
-  background-color: #fff;
-}
-.navbar-inverse .navbar-collapse,
-.navbar-inverse .navbar-form {
-  border-color: #101010;
-}
-.navbar-inverse .navbar-nav > .open > a,
-.navbar-inverse .navbar-nav > .open > a:hover,
-.navbar-inverse .navbar-nav > .open > a:focus {
-  color: #fff;
-  background-color: #080808;
-}
-@media (max-width: 767px) {
-  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
-    border-color: #080808;
-  }
-  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
-    background-color: #080808;
-  }
-  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
-    color: #9d9d9d;
-  }
-  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
-  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
-    color: #fff;
-    background-color: transparent;
-  }
-  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
-  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
-  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
-    color: #fff;
-    background-color: #080808;
-  }
-  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
-  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
-  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
-    color: #444;
-    background-color: transparent;
-  }
-}
-.navbar-inverse .navbar-link {
-  color: #9d9d9d;
-}
-.navbar-inverse .navbar-link:hover {
-  color: #fff;
-}
-.navbar-inverse .btn-link {
-  color: #9d9d9d;
-}
-.navbar-inverse .btn-link:hover,
-.navbar-inverse .btn-link:focus {
-  color: #fff;
-}
-.navbar-inverse .btn-link[disabled]:hover,
-fieldset[disabled] .navbar-inverse .btn-link:hover,
-.navbar-inverse .btn-link[disabled]:focus,
-fieldset[disabled] .navbar-inverse .btn-link:focus {
-  color: #444;
-}
-.breadcrumb {
-  padding: 8px 15px;
-  margin-bottom: 20px;
-  list-style: none;
-  background-color: #f5f5f5;
-  border-radius: 4px;
-}
-.breadcrumb > li {
-  display: inline-block;
-}
-.breadcrumb > li + li:before {
-  padding: 0 5px;
-  color: #ccc;
-  content: "/\00a0";
-}
-.breadcrumb > .active {
-  color: #777;
-}
-.pagination {
-  display: inline-block;
-  padding-left: 0;
-  margin: 20px 0;
-  border-radius: 4px;
-}
-.pagination > li {
-  display: inline;
-}
-.pagination > li > a,
-.pagination > li > span {
-  position: relative;
-  float: left;
-  padding: 6px 12px;
-  margin-left: -1px;
-  line-height: 1.42857143;
-  color: #337ab7;
-  text-decoration: none;
-  background-color: #fff;
-  border: 1px solid #ddd;
-}
-.pagination > li:first-child > a,
-.pagination > li:first-child > span {
-  margin-left: 0;
-  border-top-left-radius: 4px;
-  border-bottom-left-radius: 4px;
-}
-.pagination > li:last-child > a,
-.pagination > li:last-child > span {
-  border-top-right-radius: 4px;
-  border-bottom-right-radius: 4px;
-}
-.pagination > li > a:hover,
-.pagination > li > span:hover,
-.pagination > li > a:focus,
-.pagination > li > span:focus {
-  z-index: 2;
-  color: #23527c;
-  background-color: #eee;
-  border-color: #ddd;
-}
-.pagination > .active > a,
-.pagination > .active > span,
-.pagination > .active > a:hover,
-.pagination > .active > span:hover,
-.pagination > .active > a:focus,
-.pagination > .active > span:focus {
-  z-index: 3;
-  color: #fff;
-  cursor: default;
-  background-color: #337ab7;
-  border-color: #337ab7;
-}
-.pagination > .disabled > span,
-.pagination > .disabled > span:hover,
-.pagination > .disabled > span:focus,
-.pagination > .disabled > a,
-.pagination > .disabled > a:hover,
-.pagination > .disabled > a:focus {
-  color: #777;
-  cursor: not-allowed;
-  background-color: #fff;
-  border-color: #ddd;
-}
-.pagination-lg > li > a,
-.pagination-lg > li > span {
-  padding: 10px 16px;
-  font-size: 18px;
-  line-height: 1.3333333;
-}
-.pagination-lg > li:first-child > a,
-.pagination-lg > li:first-child > span {
-  border-top-left-radius: 6px;
-  border-bottom-left-radius: 6px;
-}
-.pagination-lg > li:last-child > a,
-.pagination-lg > li:last-child > span {
-  border-top-right-radius: 6px;
-  border-bottom-right-radius: 6px;
-}
-.pagination-sm > li > a,
-.pagination-sm > li > span {
-  padding: 5px 10px;
-  font-size: 12px;
-  line-height: 1.5;
-}
-.pagination-sm > li:first-child > a,
-.pagination-sm > li:first-child > span {
-  border-top-left-radius: 3px;
-  border-bottom-left-radius: 3px;
-}
-.pagination-sm > li:last-child > a,
-.pagination-sm > li:last-child > span {
-  border-top-right-radius: 3px;
-  border-bottom-right-radius: 3px;
-}
-.pager {
-  padding-left: 0;
-  margin: 20px 0;
-  text-align: center;
-  list-style: none;
-}
-.pager li {
-  display: inline;
-}
-.pager li > a,
-.pager li > span {
-  display: inline-block;
-  padding: 5px 14px;
-  background-color: #fff;
-  border: 1px solid #ddd;
-  border-radius: 15px;
-}
-.pager li > a:hover,
-.pager li > a:focus {
-  text-decoration: none;
-  background-color: #eee;
-}
-.pager .next > a,
-.pager .next > span {
-  float: right;
-}
-.pager .previous > a,
-.pager .previous > span {
-  float: left;
-}
-.pager .disabled > a,
-.pager .disabled > a:hover,
-.pager .disabled > a:focus,
-.pager .disabled > span {
-  color: #777;
-  cursor: not-allowed;
-  background-color: #fff;
-}
-.label {
-  display: inline;
-  padding: .2em .6em .3em;
-  font-size: 75%;
-  font-weight: bold;
-  line-height: 1;
-  color: #fff;
-  text-align: center;
-  white-space: nowrap;
-  vertical-align: baseline;
-  border-radius: .25em;
-}
-a.label:hover,
-a.label:focus {
-  color: #fff;
-  text-decoration: none;
-  cursor: pointer;
-}
-.label:empty {
-  display: none;
-}
-.btn .label {
-  position: relative;
-  top: -1px;
-}
-.label-default {
-  background-color: #777;
-}
-.label-default[href]:hover,
-.label-default[href]:focus {
-  background-color: #5e5e5e;
-}
-.label-primary {
-  background-color: #337ab7;
-}
-.label-primary[href]:hover,
-.label-primary[href]:focus {
-  background-color: #286090;
-}
-.label-success {
-  background-color: #5cb85c;
-}
-.label-success[href]:hover,
-.label-success[href]:focus {
-  background-color: #449d44;
-}
-.label-info {
-  background-color: #5bc0de;
-}
-.label-info[href]:hover,
-.label-info[href]:focus {
-  background-color: #31b0d5;
-}
-.label-warning {
-  background-color: #f0ad4e;
-}
-.label-warning[href]:hover,
-.label-warning[href]:focus {
-  background-color: #ec971f;
-}
-.label-danger {
-  background-color: #d9534f;
-}
-.label-danger[href]:hover,
-.label-danger[href]:focus {
-  background-color: #c9302c;
-}
-.badge {
-  display: inline-block;
-  min-width: 10px;
-  padding: 3px 7px;
-  font-size: 12px;
-  font-weight: bold;
-  line-height: 1;
-  color: #fff;
-  text-align: center;
-  white-space: nowrap;
-  vertical-align: middle;
-  background-color: #777;
-  border-radius: 10px;
-}
-.badge:empty {
-  display: none;
-}
-.btn .badge {
-  position: relative;
-  top: -1px;
-}
-.btn-xs .badge,
-.btn-group-xs > .btn .badge {
-  top: 0;
-  padding: 1px 5px;
-}
-a.badge:hover,
-a.badge:focus {
-  color: #fff;
-  text-decoration: none;
-  cursor: pointer;
-}
-.list-group-item.active > .badge,
-.nav-pills > .active > a > .badge {
-  color: #337ab7;
-  background-color: #fff;
-}
-.list-group-item > .badge {
-  float: right;
-}
-.list-group-item > .badge + .badge {
-  margin-right: 5px;
-}
-.nav-pills > li > a > .badge {
-  margin-left: 3px;
-}
-.jumbotron {
-  padding-top: 30px;
-  padding-bottom: 30px;
-  margin-bottom: 30px;
-  color: inherit;
-  background-color: #eee;
-}
-.jumbotron h1,
-.jumbotron .h1 {
-  color: inherit;
-}
-.jumbotron p {
-  margin-bottom: 15px;
-  font-size: 21px;
-  font-weight: 200;
-}
-.jumbotron > hr {
-  border-top-color: #d5d5d5;
-}
-.container .jumbotron,
-.container-fluid .jumbotron {
-  padding-right: 15px;
-  padding-left: 15px;
-  border-radius: 6px;
-}
-.jumbotron .container {
-  max-width: 100%;
-}
-@media screen and (min-width: 768px) {
-  .jumbotron {
-    padding-top: 48px;
-    padding-bottom: 48px;
-  }
-  .container .jumbotron,
-  .container-fluid .jumbotron {
-    padding-right: 60px;
-    padding-left: 60px;
-  }
-  .jumbotron h1,
-  .jumbotron .h1 {
-    font-size: 63px;
-  }
-}
-.thumbnail {
-  display: block;
-  padding: 4px;
-  margin-bottom: 20px;
-  line-height: 1.42857143;
-  background-color: #fff;
-  border: 1px solid #ddd;
-  border-radius: 4px;
-  -webkit-transition: border .2s ease-in-out;
-       -o-transition: border .2s ease-in-out;
-          transition: border .2s ease-in-out;
-}
-.thumbnail > img,
-.thumbnail a > img {
-  margin-right: auto;
-  margin-left: auto;
-}
-a.thumbnail:hover,
-a.thumbnail:focus,
-a.thumbnail.active {
-  border-color: #337ab7;
-}
-.thumbnail .caption {
-  padding: 9px;
-  color: #333;
-}
-.alert {
-  padding: 15px;
-  margin-bottom: 20px;
-  border: 1px solid transparent;
-  border-radius: 4px;
-}
-.alert h4 {
-  margin-top: 0;
-  color: inherit;
-}
-.alert .alert-link {
-  font-weight: bold;
-}
-.alert > p,
-.alert > ul {
-  margin-bottom: 0;
-}
-.alert > p + p {
-  margin-top: 5px;
-}
-.alert-dismissable,
-.alert-dismissible {
-  padding-right: 35px;
-}
-.alert-dismissable .close,
-.alert-dismissible .close {
-  position: relative;
-  top: -2px;
-  right: -21px;
-  color: inherit;
-}
-.alert-success {
-  color: #3c763d;
-  background-color: #dff0d8;
-  border-color: #d6e9c6;
-}
-.alert-success hr {
-  border-top-color: #c9e2b3;
-}
-.alert-success .alert-link {
-  color: #2b542c;
-}
-.alert-info {
-  color: #31708f;
-  background-color: #d9edf7;
-  border-color: #bce8f1;
-}
-.alert-info hr {
-  border-top-color: #a6e1ec;
-}
-.alert-info .alert-link {
-  color: #245269;
-}
-.alert-warning {
-  color: #8a6d3b;
-  background-color: #fcf8e3;
-  border-color: #faebcc;
-}
-.alert-warning hr {
-  border-top-color: #f7e1b5;
-}
-.alert-warning .alert-link {
-  color: #66512c;
-}
-.alert-danger {
-  color: #a94442;
-  background-color: #f2dede;
-  border-color: #ebccd1;
-}
-.alert-danger hr {
-  border-top-color: #e4b9c0;
-}
-.alert-danger .alert-link {
-  color: #843534;
-}
-@-webkit-keyframes progress-bar-stripes {
-  from {
-    background-position: 40px 0;
-  }
-  to {
-    background-position: 0 0;
-  }
-}
-@-o-keyframes progress-bar-stripes {
-  from {
-    background-position: 40px 0;
-  }
-  to {
-    background-position: 0 0;
-  }
-}
-@keyframes progress-bar-stripes {
-  from {
-    background-position: 40px 0;
-  }
-  to {
-    background-position: 0 0;
-  }
-}
-.progress {
-  height: 20px;
-  margin-bottom: 20px;
-  overflow: hidden;
-  background-color: #f5f5f5;
-  border-radius: 4px;
-  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
-          box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
-}
-.progress-bar {
-  float: left;
-  width: 0;
-  height: 100%;
-  font-size: 12px;
-  line-height: 20px;
-  color: #fff;
-  text-align: center;
-  background-color: #337ab7;
-  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
-          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
-  -webkit-transition: width .6s ease;
-       -o-transition: width .6s ease;
-          transition: width .6s ease;
-}
-.progress-striped .progress-bar,
-.progress-bar-striped {
-  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
-  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
-  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
-  -webkit-background-size: 40px 40px;
-          background-size: 40px 40px;
-}
-.progress.active .progress-bar,
-.progress-bar.active {
-  -webkit-animation: progress-bar-stripes 2s linear infinite;
-       -o-animation: progress-bar-stripes 2s linear infinite;
-          animation: progress-bar-stripes 2s linear infinite;
-}
-.progress-bar-success {
-  background-color: #5cb85c;
-}
-.progress-striped .progress-bar-success {
-  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
-  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
-  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
-}
-.progress-bar-info {
-  background-color: #5bc0de;
-}
-.progress-striped .progress-bar-info {
-  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
-  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
-  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
-}
-.progress-bar-warning {
-  background-color: #f0ad4e;
-}
-.progress-striped .progress-bar-warning {
-  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
-  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
-  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
-}
-.progress-bar-danger {
-  background-color: #d9534f;
-}
-.progress-striped .progress-bar-danger {
-  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
-  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
-  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
-}
-.media {
-  margin-top: 15px;
-}
-.media:first-child {
-  margin-top: 0;
-}
-.media,
-.media-body {
-  overflow: hidden;
-  zoom: 1;
-}
-.media-body {
-  width: 10000px;
-}
-.media-object {
-  display: block;
-}
-.media-object.img-thumbnail {
-  max-width: none;
-}
-.media-right,
-.media > .pull-right {
-  padding-left: 10px;
-}
-.media-left,
-.media > .pull-left {
-  padding-right: 10px;
-}
-.media-left,
-.media-right,
-.media-body {
-  display: table-cell;
-  vertical-align: top;
-}
-.media-middle {
-  vertical-align: middle;
-}
-.media-bottom {
-  vertical-align: bottom;
-}
-.media-heading {
-  margin-top: 0;
-  margin-bottom: 5px;
-}
-.media-list {
-  padding-left: 0;
-  list-style: none;
-}
-.list-group {
-  padding-left: 0;
-  margin-bottom: 20px;
-}
-.list-group-item {
-  position: relative;
-  display: block;
-  padding: 10px 15px;
-  margin-bottom: -1px;
-  background-color: #fff;
-  border: 1px solid #ddd;
-}
-.list-group-item:first-child {
-  border-top-left-radius: 4px;
-  border-top-right-radius: 4px;
-}
-.list-group-item:last-child {
-  margin-bottom: 0;
-  border-bottom-right-radius: 4px;
-  border-bottom-left-radius: 4px;
-}
-a.list-group-item,
-button.list-group-item {
-  color: #555;
-}
-a.list-group-item .list-group-item-heading,
-button.list-group-item .list-group-item-heading {
-  color: #333;
-}
-a.list-group-item:hover,
-button.list-group-item:hover,
-a.list-group-item:focus,
-button.list-group-item:focus {
-  color: #555;
-  text-decoration: none;
-  background-color: #f5f5f5;
-}
-button.list-group-item {
-  width: 100%;
-  text-align: left;
-}
-.list-group-item.disabled,
-.list-group-item.disabled:hover,
-.list-group-item.disabled:focus {
-  color: #777;
-  cursor: not-allowed;
-  background-color: #eee;
-}
-.list-group-item.disabled .list-group-item-heading,
-.list-group-item.disabled:hover .list-group-item-heading,
-.list-group-item.disabled:focus .list-group-item-heading {
-  color: inherit;
-}
-.list-group-item.disabled .list-group-item-text,
-.list-group-item.disabled:hover .list-group-item-text,
-.list-group-item.disabled:focus .list-group-item-text {
-  color: #777;
-}
-.list-group-item.active,
-.list-group-item.active:hover,
-.list-group-item.active:focus {
-  z-index: 2;
-  color: #fff;
-  background-color: #337ab7;
-  border-color: #337ab7;
-}
-.list-group-item.active .list-group-item-heading,
-.list-group-item.active:hover .list-group-item-heading,
-.list-group-item.active:focus .list-group-item-heading,
-.list-group-item.active .list-group-item-heading > small,
-.list-group-item.active:hover .list-group-item-heading > small,
-.list-group-item.active:focus .list-group-item-heading > small,
-.list-group-item.active .list-group-item-heading > .small,
-.list-group-item.active:hover .list-group-item-heading > .small,
-.list-group-item.active:focus .list-group-item-heading > .small {
-  color: inherit;
-}
-.list-group-item.active .list-group-item-text,
-.list-group-item.active:hover .list-group-item-text,
-.list-group-item.active:focus .list-group-item-text {
-  color: #c7ddef;
-}
-.list-group-item-success {
-  color: #3c763d;
-  background-color: #dff0d8;
-}
-a.list-group-item-success,
-button.list-group-item-success {
-  color: #3c763d;
-}
-a.list-group-item-success .list-group-item-heading,
-button.list-group-item-success .list-group-item-heading {
-  color: inherit;
-}
-a.list-group-item-success:hover,
-button.list-group-item-success:hover,
-a.list-group-item-success:focus,
-button.list-group-item-success:focus {
-  color: #3c763d;
-  background-color: #d0e9c6;
-}
-a.list-group-item-success.active,
-button.list-group-item-success.active,
-a.list-group-item-success.active:hover,
-button.list-group-item-success.active:hover,
-a.list-group-item-success.active:focus,
-button.list-group-item-success.active:focus {
-  color: #fff;
-  background-color: #3c763d;
-  border-color: #3c763d;
-}
-.list-group-item-info {
-  color: #31708f;
-  background-color: #d9edf7;
-}
-a.list-group-item-info,
-button.list-group-item-info {
-  color: #31708f;
-}
-a.list-group-item-info .list-group-item-heading,
-button.list-group-item-info .list-group-item-heading {
-  color: inherit;
-}
-a.list-group-item-info:hover,
-button.list-group-item-info:hover,
-a.list-group-item-info:focus,
-button.list-group-item-info:focus {
-  color: #31708f;
-  background-color: #c4e3f3;
-}
-a.list-group-item-info.active,
-button.list-group-item-info.active,
-a.list-group-item-info.active:hover,
-button.list-group-item-info.active:hover,
-a.list-group-item-info.active:focus,
-button.list-group-item-info.active:focus {
-  color: #fff;
-  background-color: #31708f;
-  border-color: #31708f;
-}
-.list-group-item-warning {
-  color: #8a6d3b;
-  background-color: #fcf8e3;
-}
-a.list-group-item-warning,
-button.list-group-item-warning {
-  color: #8a6d3b;
-}
-a.list-group-item-warning .list-group-item-heading,
-button.list-group-item-warning .list-group-item-heading {
-  color: inherit;
-}
-a.list-group-item-warning:hover,
-button.list-group-item-warning:hover,
-a.list-group-item-warning:focus,
-button.list-group-item-warning:focus {
-  color: #8a6d3b;
-  background-color: #faf2cc;
-}
-a.list-group-item-warning.active,
-button.list-group-item-warning.active,
-a.list-group-item-warning.active:hover,
-button.list-group-item-warning.active:hover,
-a.list-group-item-warning.active:focus,
-button.list-group-item-warning.active:focus {
-  color: #fff;
-  background-color: #8a6d3b;
-  border-color: #8a6d3b;
-}
-.list-group-item-danger {
-  color: #a94442;
-  background-color: #f2dede;
-}
-a.list-group-item-danger,
-button.list-group-item-danger {
-  color: #a94442;
-}
-a.list-group-item-danger .list-group-item-heading,
-button.list-group-item-danger .list-group-item-heading {
-  color: inherit;
-}
-a.list-group-item-danger:hover,
-button.list-group-item-danger:hover,
-a.list-group-item-danger:focus,
-button.list-group-item-danger:focus {
-  color: #a94442;
-  background-color: #ebcccc;
-}
-a.list-group-item-danger.active,
-button.list-group-item-danger.active,
-a.list-group-item-danger.active:hover,
-button.list-group-item-danger.active:hover,
-a.list-group-item-danger.active:focus,
-button.list-group-item-danger.active:focus {
-  color: #fff;
-  background-color: #a94442;
-  border-color: #a94442;
-}
-.list-group-item-heading {
-  margin-top: 0;
-  margin-bottom: 5px;
-}
-.list-group-item-text {
-  margin-bottom: 0;
-  line-height: 1.3;
-}
-.panel {
-  margin-bottom: 20px;
-  background-color: #fff;
-  border: 1px solid transparent;
-  border-radius: 4px;
-  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
-          box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
-}
-.panel-body {
-  padding: 15px;
-}
-.panel-heading {
-  padding: 10px 15px;
-  border-bottom: 1px solid transparent;
-  border-top-left-radius: 3px;
-  border-top-right-radius: 3px;
-}
-.panel-heading > .dropdown .dropdown-toggle {
-  color: inherit;
-}
-.panel-title {
-  margin-top: 0;
-  margin-bottom: 0;
-  font-size: 16px;
-  color: inherit;
-}
-.panel-title > a,
-.panel-title > small,
-.panel-title > .small,
-.panel-title > small > a,
-.panel-title > .small > a {
-  color: inherit;
-}
-.panel-footer {
-  padding: 10px 15px;
-  background-color: #f5f5f5;
-  border-top: 1px solid #ddd;
-  border-bottom-right-radius: 3px;
-  border-bottom-left-radius: 3px;
-}
-.panel > .list-group,
-.panel > .panel-collapse > .list-group {
-  margin-bottom: 0;
-}
-.panel > .list-group .list-group-item,
-.panel > .panel-collapse > .list-group .list-group-item {
-  border-width: 1px 0;
-  border-radius: 0;
-}
-.panel > .list-group:first-child .list-group-item:first-child,
-.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
-  border-top: 0;
-  border-top-left-radius: 3px;
-  border-top-right-radius: 3px;
-}
-.panel > .list-group:last-child .list-group-item:last-child,
-.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
-  border-bottom: 0;
-  border-bottom-right-radius: 3px;
-  border-bottom-left-radius: 3px;
-}
-.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
-  border-top-left-radius: 0;
-  border-top-right-radius: 0;
-}
-.panel-heading + .list-group .list-group-item:first-child {
-  border-top-width: 0;
-}
-.list-group + .panel-footer {
-  border-top-width: 0;
-}
-.panel > .table,
-.panel > .table-responsive > .table,
-.panel > .panel-collapse > .table {
-  margin-bottom: 0;
-}
-.panel > .table caption,
-.panel > .table-responsive > .table caption,
-.panel > .panel-collapse > .table caption {
-  padding-right: 15px;
-  padding-left: 15px;
-}
-.panel > .table:first-child,
-.panel > .table-responsive:first-child > .table:first-child {
-  border-top-left-radius: 3px;
-  border-top-right-radius: 3px;
-}
-.panel > .table:first-child > thead:first-child > tr:first-child,
-.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
-.panel > .table:first-child > tbody:first-child > tr:first-child,
-.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
-  border-top-left-radius: 3px;
-  border-top-right-radius: 3px;
-}
-.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
-.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
-.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
-.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
-.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
-.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
-.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
-.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
-  border-top-left-radius: 3px;
-}
-.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
-.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
-.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
-.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
-.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
-.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
-.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
-.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
-  border-top-right-radius: 3px;
-}
-.panel > .table:last-child,
-.panel > .table-responsive:last-child > .table:last-child {
-  border-bottom-right-radius: 3px;
-  border-bottom-left-radius: 3px;
-}
-.panel > .table:last-child > tbody:last-child > tr:last-child,
-.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
-.panel > .table:last-child > tfoot:last-child > tr:last-child,
-.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
-  border-bottom-right-radius: 3px;
-  border-bottom-left-radius: 3px;
-}
-.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
-.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
-.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
-.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
-.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
-.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
-.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
-.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
-  border-bottom-left-radius: 3px;
-}
-.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
-.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
-.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
-.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
-.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
-.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
-.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
-.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
-  border-bottom-right-radius: 3px;
-}
-.panel > .panel-body + .table,
-.panel > .panel-body + .table-responsive,
-.panel > .table + .panel-body,
-.panel > .table-responsive + .panel-body {
-  border-top: 1px solid #ddd;
-}
-.panel > .table > tbody:first-child > tr:first-child th,
-.panel > .table > tbody:first-child > tr:first-child td {
-  border-top: 0;
-}
-.panel > .table-bordered,
-.panel > .table-responsive > .table-bordered {
-  border: 0;
-}
-.panel > .table-bordered > thead > tr > th:first-child,
-.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
-.panel > .table-bordered > tbody > tr > th:first-child,
-.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
-.panel > .table-bordered > tfoot > tr > th:first-child,
-.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
-.panel > .table-bordered > thead > tr > td:first-child,
-.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
-.panel > .table-bordered > tbody > tr > td:first-child,
-.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
-.panel > .table-bordered > tfoot > tr > td:first-child,
-.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
-  border-left: 0;
-}
-.panel > .table-bordered > thead > tr > th:last-child,
-.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
-.panel > .table-bordered > tbody > tr > th:last-child,
-.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
-.panel > .table-bordered > tfoot > tr > th:last-child,
-.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
-.panel > .table-bordered > thead > tr > td:last-child,
-.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
-.panel > .table-bordered > tbody > tr > td:last-child,
-.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
-.panel > .table-bordered > tfoot > tr > td:last-child,
-.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
-  border-right: 0;
-}
-.panel > .table-bordered > thead > tr:first-child > td,
-.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
-.panel > .table-bordered > tbody > tr:first-child > td,
-.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
-.panel > .table-bordered > thead > tr:first-child > th,
-.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
-.panel > .table-bordered > tbody > tr:first-child > th,
-.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
-  border-bottom: 0;
-}
-.panel > .table-bordered > tbody > tr:last-child > td,
-.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
-.panel > .table-bordered > tfoot > tr:last-child > td,
-.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
-.panel > .table-bordered > tbody > tr:last-child > th,
-.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
-.panel > .table-bordered > tfoot > tr:last-child > th,
-.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
-  border-bottom: 0;
-}
-.panel > .table-responsive {
-  margin-bottom: 0;
-  border: 0;
-}
-.panel-group {
-  margin-bottom: 20px;
-}
-.panel-group .panel {
-  margin-bottom: 0;
-  border-radius: 4px;
-}
-.panel-group .panel + .panel {
-  margin-top: 5px;
-}
-.panel-group .panel-heading {
-  border-bottom: 0;
-}
-.panel-group .panel-heading + .panel-collapse > .panel-body,
-.panel-group .panel-heading + .panel-collapse > .list-group {
-  border-top: 1px solid #ddd;
-}
-.panel-group .panel-footer {
-  border-top: 0;
-}
-.panel-group .panel-footer + .panel-collapse .panel-body {
-  border-bottom: 1px solid #ddd;
-}
-.panel-default {
-  border-color: #ddd;
-}
-.panel-default > .panel-heading {
-  color: #333;
-  background-color: #f5f5f5;
-  border-color: #ddd;
-}
-.panel-default > .panel-heading + .panel-collapse > .panel-body {
-  border-top-color: #ddd;
-}
-.panel-default > .panel-heading .badge {
-  color: #f5f5f5;
-  background-color: #333;
-}
-.panel-default > .panel-footer + .panel-collapse > .panel-body {
-  border-bottom-color: #ddd;
-}
-.panel-primary {
-  border-color: #337ab7;
-}
-.panel-primary > .panel-heading {
-  color: #fff;
-  background-color: #337ab7;
-  border-color: #337ab7;
-}
-.panel-primary > .panel-heading + .panel-collapse > .panel-body {
-  border-top-color: #337ab7;
-}
-.panel-primary > .panel-heading .badge {
-  color: #337ab7;
-  background-color: #fff;
-}
-.panel-primary > .panel-footer + .panel-collapse > .panel-body {
-  border-bottom-color: #337ab7;
-}
-.panel-success {
-  border-color: #d6e9c6;
-}
-.panel-success > .panel-heading {
-  color: #3c763d;
-  background-color: #dff0d8;
-  border-color: #d6e9c6;
-}
-.panel-success > .panel-heading + .panel-collapse > .panel-body {
-  border-top-color: #d6e9c6;
-}
-.panel-success > .panel-heading .badge {
-  color: #dff0d8;
-  background-color: #3c763d;
-}
-.panel-success > .panel-footer + .panel-collapse > .panel-body {
-  border-bottom-color: #d6e9c6;
-}
-.panel-info {
-  border-color: #bce8f1;
-}
-.panel-info > .panel-heading {
-  color: #31708f;
-  background-color: #d9edf7;
-  border-color: #bce8f1;
-}
-.panel-info > .panel-heading + .panel-collapse > .panel-body {
-  border-top-color: #bce8f1;
-}
-.panel-info > .panel-heading .badge {
-  color: #d9edf7;
-  background-color: #31708f;
-}
-.panel-info > .panel-footer + .panel-collapse > .panel-body {
-  border-bottom-color: #bce8f1;
-}
-.panel-warning {
-  border-color: #faebcc;
-}
-.panel-warning > .panel-heading {
-  color: #8a6d3b;
-  background-color: #fcf8e3;
-  border-color: #faebcc;
-}
-.panel-warning > .panel-heading + .panel-collapse > .panel-body {
-  border-top-color: #faebcc;
-}
-.panel-warning > .panel-heading .badge {
-  color: #fcf8e3;
-  background-color: #8a6d3b;
-}
-.panel-warning > .panel-footer + .panel-collapse > .panel-body {
-  border-bottom-color: #faebcc;
-}
-.panel-danger {
-  border-color: #ebccd1;
-}
-.panel-danger > .panel-heading {
-  color: #a94442;
-  background-color: #f2dede;
-  border-color: #ebccd1;
-}
-.panel-danger > .panel-heading + .panel-collapse > .panel-body {
-  border-top-color: #ebccd1;
-}
-.panel-danger > .panel-heading .badge {
-  color: #f2dede;
-  background-color: #a94442;
-}
-.panel-danger > .panel-footer + .panel-collapse > .panel-body {
-  border-bottom-color: #ebccd1;
-}
-.embed-responsive {
-  position: relative;
-  display: block;
-  height: 0;
-  padding: 0;
-  overflow: hidden;
-}
-.embed-responsive .embed-responsive-item,
-.embed-responsive iframe,
-.embed-responsive embed,
-.embed-responsive object,
-.embed-responsive video {
-  position: absolute;
-  top: 0;
-  bottom: 0;
-  left: 0;
-  width: 100%;
-  height: 100%;
-  border: 0;
-}
-.embed-responsive-16by9 {
-  padding-bottom: 56.25%;
-}
-.embed-responsive-4by3 {
-  padding-bottom: 75%;
-}
-.well {
-  min-height: 20px;
-  padding: 19px;
-  margin-bottom: 20px;
-  background-color: #f5f5f5;
-  border: 1px solid #e3e3e3;
-  border-radius: 4px;
-  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
-          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
-}
-.well blockquote {
-  border-color: #ddd;
-  border-color: rgba(0, 0, 0, .15);
-}
-.well-lg {
-  padding: 24px;
-  border-radius: 6px;
-}
-.well-sm {
-  padding: 9px;
-  border-radius: 3px;
-}
-.close {
-  float: right;
-  font-size: 21px;
-  font-weight: bold;
-  line-height: 1;
-  color: #000;
-  text-shadow: 0 1px 0 #fff;
-  filter: alpha(opacity=20);
-  opacity: .2;
-}
-.close:hover,
-.close:focus {
-  color: #000;
-  text-decoration: none;
-  cursor: pointer;
-  filter: alpha(opacity=50);
-  opacity: .5;
-}
-button.close {
-  -webkit-appearance: none;
-  padding: 0;
-  cursor: pointer;
-  background: transparent;
-  border: 0;
-}
-.modal-open {
-  overflow: hidden;
-}
-.modal {
-  position: fixed;
-  top: 0;
-  right: 0;
-  bottom: 0;
-  left: 0;
-  z-index: 1050;
-  display: none;
-  overflow: hidden;
-  -webkit-overflow-scrolling: touch;
-  outline: 0;
-}
-.modal.fade .modal-dialog {
-  -webkit-transition: -webkit-transform .3s ease-out;
-       -o-transition:      -o-transform .3s ease-out;
-          transition:         transform .3s ease-out;
-  -webkit-transform: translate(0, -25%);
-      -ms-transform: translate(0, -25%);
-       -o-transform: translate(0, -25%);
-          transform: translate(0, -25%);
-}
-.modal.in .modal-dialog {
-  -webkit-transform: translate(0, 0);
-      -ms-transform: translate(0, 0);
-       -o-transform: translate(0, 0);
-          transform: translate(0, 0);
-}
-.modal-open .modal {
-  overflow-x: hidden;
-  overflow-y: auto;
-}
-.modal-dialog {
-  position: relative;
-  width: auto;
-  margin: 10px;
-}
-.modal-content {
-  position: relative;
-  background-color: #fff;
-  -webkit-background-clip: padding-box;
-          background-clip: padding-box;
-  border: 1px solid #999;
-  border: 1px solid rgba(0, 0, 0, .2);
-  border-radius: 6px;
-  outline: 0;
-  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
-          box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
-}
-.modal-backdrop {
-  position: fixed;
-  top: 0;
-  right: 0;
-  bottom: 0;
-  left: 0;
-  z-index: 1040;
-  background-color: #000;
-}
-.modal-backdrop.fade {
-  filter: alpha(opacity=0);
-  opacity: 0;
-}
-.modal-backdrop.in {
-  filter: alpha(opacity=50);
-  opacity: .5;
-}
-.modal-header {
-  padding: 15px;
-  border-bottom: 1px solid #e5e5e5;
-}
-.modal-header .close {
-  margin-top: -2px;
-}
-.modal-title {
-  margin: 0;
-  line-height: 1.42857143;
-}
-.modal-body {
-  position: relative;
-  padding: 15px;
-}
-.modal-footer {
-  padding: 15px;
-  text-align: right;
-  border-top: 1px solid #e5e5e5;
-}
-.modal-footer .btn + .btn {
-  margin-bottom: 0;
-  margin-left: 5px;
-}
-.modal-footer .btn-group .btn + .btn {
-  margin-left: -1px;
-}
-.modal-footer .btn-block + .btn-block {
-  margin-left: 0;
-}
-.modal-scrollbar-measure {
-  position: absolute;
-  top: -9999px;
-  width: 50px;
-  height: 50px;
-  overflow: scroll;
-}
-@media (min-width: 768px) {
-  .modal-dialog {
-    width: 600px;
-    margin: 30px auto;
-  }
-  .modal-content {
-    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
-            box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
-  }
-  .modal-sm {
-    width: 300px;
-  }
-}
-@media (min-width: 992px) {
-  .modal-lg {
-    width: 900px;
-  }
-}
-.tooltip {
-  position: absolute;
-  z-index: 1070;
-  display: block;
-  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
-  font-size: 12px;
-  font-style: normal;
-  font-weight: normal;
-  line-height: 1.42857143;
-  text-align: left;
-  text-align: start;
-  text-decoration: none;
-  text-shadow: none;
-  text-transform: none;
-  letter-spacing: normal;
-  word-break: normal;
-  word-spacing: normal;
-  word-wrap: normal;
-  white-space: normal;
-  filter: alpha(opacity=0);
-  opacity: 0;
-
-  line-break: auto;
-}
-.tooltip.in {
-  filter: alpha(opacity=90);
-  opacity: .9;
-}
-.tooltip.top {
-  padding: 5px 0;
-  margin-top: -3px;
-}
-.tooltip.right {
-  padding: 0 5px;
-  margin-left: 3px;
-}
-.tooltip.bottom {
-  padding: 5px 0;
-  margin-top: 3px;
-}
-.tooltip.left {
-  padding: 0 5px;
-  margin-left: -3px;
-}
-.tooltip-inner {
-  max-width: 200px;
-  padding: 3px 8px;
-  color: #fff;
-  text-align: center;
-  background-color: #000;
-  border-radius: 4px;
-}
-.tooltip-arrow {
-  position: absolute;
-  width: 0;
-  height: 0;
-  border-color: transparent;
-  border-style: solid;
-}
-.tooltip.top .tooltip-arrow {
-  bottom: 0;
-  left: 50%;
-  margin-left: -5px;
-  border-width: 5px 5px 0;
-  border-top-color: #000;
-}
-.tooltip.top-left .tooltip-arrow {
-  right: 5px;
-  bottom: 0;
-  margin-bottom: -5px;
-  border-width: 5px 5px 0;
-  border-top-color: #000;
-}
-.tooltip.top-right .tooltip-arrow {
-  bottom: 0;
-  left: 5px;
-  margin-bottom: -5px;
-  border-width: 5px 5px 0;
-  border-top-color: #000;
-}
-.tooltip.right .tooltip-arrow {
-  top: 50%;
-  left: 0;
-  margin-top: -5px;
-  border-width: 5px 5px 5px 0;
-  border-right-color: #000;
-}
-.tooltip.left .tooltip-arrow {
-  top: 50%;
-  right: 0;
-  margin-top: -5px;
-  border-width: 5px 0 5px 5px;
-  border-left-color: #000;
-}
-.tooltip.bottom .tooltip-arrow {
-  top: 0;
-  left: 50%;
-  margin-left: -5px;
-  border-width: 0 5px 5px;
-  border-bottom-color: #000;
-}
-.tooltip.bottom-left .tooltip-arrow {
-  top: 0;
-  right: 5px;
-  margin-top: -5px;
-  border-width: 0 5px 5px;
-  border-bottom-color: #000;
-}
-.tooltip.bottom-right .tooltip-arrow {
-  top: 0;
-  left: 5px;
-  margin-top: -5px;
-  border-width: 0 5px 5px;
-  border-bottom-color: #000;
-}
-.popover {
-  position: absolute;
-  top: 0;
-  left: 0;
-  z-index: 1060;
-  display: none;
-  max-width: 276px;
-  padding: 1px;
-  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
-  font-size: 14px;
-  font-style: normal;
-  font-weight: normal;
-  line-height: 1.42857143;
-  text-align: left;
-  text-align: start;
-  text-decoration: none;
-  text-shadow: none;
-  text-transform: none;
-  letter-spacing: normal;
-  word-break: normal;
-  word-spacing: normal;
-  word-wrap: normal;
-  white-space: normal;
-  background-color: #fff;
-  -webkit-background-clip: padding-box;
-          background-clip: padding-box;
-  border: 1px solid #ccc;
-  border: 1px solid rgba(0, 0, 0, .2);
-  border-radius: 6px;
-  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
-          box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
-
-  line-break: auto;
-}
-.popover.top {
-  margin-top: -10px;
-}
-.popover.right {
-  margin-left: 10px;
-}
-.popover.bottom {
-  margin-top: 10px;
-}
-.popover.left {
-  margin-left: -10px;
-}
-.popover-title {
-  padding: 8px 14px;
-  margin: 0;
-  font-size: 14px;
-  background-color: #f7f7f7;
-  border-bottom: 1px solid #ebebeb;
-  border-radius: 5px 5px 0 0;
-}
-.popover-content {
-  padding: 9px 14px;
-}
-.popover > .arrow,
-.popover > .arrow:after {
-  position: absolute;
-  display: block;
-  width: 0;
-  height: 0;
-  border-color: transparent;
-  border-style: solid;
-}
-.popover > .arrow {
-  border-width: 11px;
-}
-.popover > .arrow:after {
-  content: "";
-  border-width: 10px;
-}
-.popover.top > .arrow {
-  bottom: -11px;
-  left: 50%;
-  margin-left: -11px;
-  border-top-color: #999;
-  border-top-color: rgba(0, 0, 0, .25);
-  border-bottom-width: 0;
-}
-.popover.top > .arrow:after {
-  bottom: 1px;
-  margin-left: -10px;
-  content: " ";
-  border-top-color: #fff;
-  border-bottom-width: 0;
-}
-.popover.right > .arrow {
-  top: 50%;
-  left: -11px;
-  margin-top: -11px;
-  border-right-color: #999;
-  border-right-color: rgba(0, 0, 0, .25);
-  border-left-width: 0;
-}
-.popover.right > .arrow:after {
-  bottom: -10px;
-  left: 1px;
-  content: " ";
-  border-right-color: #fff;
-  border-left-width: 0;
-}
-.popover.bottom > .arrow {
-  top: -11px;
-  left: 50%;
-  margin-left: -11px;
-  border-top-width: 0;
-  border-bottom-color: #999;
-  border-bottom-color: rgba(0, 0, 0, .25);
-}
-.popover.bottom > .arrow:after {
-  top: 1px;
-  margin-left: -10px;
-  content: " ";
-  border-top-width: 0;
-  border-bottom-color: #fff;
-}
-.popover.left > .arrow {
-  top: 50%;
-  right: -11px;
-  margin-top: -11px;
-  border-right-width: 0;
-  border-left-color: #999;
-  border-left-color: rgba(0, 0, 0, .25);
-}
-.popover.left > .arrow:after {
-  right: 1px;
-  bottom: -10px;
-  content: " ";
-  border-right-width: 0;
-  border-left-color: #fff;
-}
-.carousel {
-  position: relative;
-}
-.carousel-inner {
-  position: relative;
-  width: 100%;
-  overflow: hidden;
-}
-.carousel-inner > .item {
-  position: relative;
-  display: none;
-  -webkit-transition: .6s ease-in-out left;
-       -o-transition: .6s ease-in-out left;
-          transition: .6s ease-in-out left;
-}
-.carousel-inner > .item > img,
-.carousel-inner > .item > a > img {
-  line-height: 1;
-}
-@media all and (transform-3d), (-webkit-transform-3d) {
-  .carousel-inner > .item {
-    -webkit-transition: -webkit-transform .6s ease-in-out;
-         -o-transition:      -o-transform .6s ease-in-out;
-            transition:         transform .6s ease-in-out;
-
-    -webkit-backface-visibility: hidden;
-            backface-visibility: hidden;
-    -webkit-perspective: 1000px;
-            perspective: 1000px;
-  }
-  .carousel-inner > .item.next,
-  .carousel-inner > .item.active.right {
-    left: 0;
-    -webkit-transform: translate3d(100%, 0, 0);
-            transform: translate3d(100%, 0, 0);
-  }
-  .carousel-inner > .item.prev,
-  .carousel-inner > .item.active.left {
-    left: 0;
-    -webkit-transform: translate3d(-100%, 0, 0);
-            transform: translate3d(-100%, 0, 0);
-  }
-  .carousel-inner > .item.next.left,
-  .carousel-inner > .item.prev.right,
-  .carousel-inner > .item.active {
-    left: 0;
-    -webkit-transform: translate3d(0, 0, 0);
-            transform: translate3d(0, 0, 0);
-  }
-}
-.carousel-inner > .active,
-.carousel-inner > .next,
-.carousel-inner > .prev {
-  display: block;
-}
-.carousel-inner > .active {
-  left: 0;
-}
-.carousel-inner > .next,
-.carousel-inner > .prev {
-  position: absolute;
-  top: 0;
-  width: 100%;
-}
-.carousel-inner > .next {
-  left: 100%;
-}
-.carousel-inner > .prev {
-  left: -100%;
-}
-.carousel-inner > .next.left,
-.carousel-inner > .prev.right {
-  left: 0;
-}
-.carousel-inner > .active.left {
-  left: -100%;
-}
-.carousel-inner > .active.right {
-  left: 100%;
-}
-.carousel-control {
-  position: absolute;
-  top: 0;
-  bottom: 0;
-  left: 0;
-  width: 15%;
-  font-size: 20px;
-  color: #fff;
-  text-align: center;
-  text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
-  background-color: rgba(0, 0, 0, 0);
-  filter: alpha(opacity=50);
-  opacity: .5;
-}
-.carousel-control.left {
-  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
-  background-image:      -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
-  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));
-  background-image:         linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
-  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
-  background-repeat: repeat-x;
-}
-.carousel-control.right {
-  right: 0;
-  left: auto;
-  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
-  background-image:      -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
-  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
-  background-image:         linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
-  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
-  background-repeat: repeat-x;
-}
-.carousel-control:hover,
-.carousel-control:focus {
-  color: #fff;
-  text-decoration: none;
-  filter: alpha(opacity=90);
-  outline: 0;
-  opacity: .9;
-}
-.carousel-control .icon-prev,
-.carousel-control .icon-next,
-.carousel-control .glyphicon-chevron-left,
-.carousel-control .glyphicon-chevron-right {
-  position: absolute;
-  top: 50%;
-  z-index: 5;
-  display: inline-block;
-  margin-top: -10px;
-}
-.carousel-control .icon-prev,
-.carousel-control .glyphicon-chevron-left {
-  left: 50%;
-  margin-left: -10px;
-}
-.carousel-control .icon-next,
-.carousel-control .glyphicon-chevron-right {
-  right: 50%;
-  margin-right: -10px;
-}
-.carousel-control .icon-prev,
-.carousel-control .icon-next {
-  width: 20px;
-  height: 20px;
-  font-family: serif;
-  line-height: 1;
-}
-.carousel-control .icon-prev:before {
-  content: '\2039';
-}
-.carousel-control .icon-next:before {
-  content: '\203a';
-}
-.carousel-indicators {
-  position: absolute;
-  bottom: 10px;
-  left: 50%;
-  z-index: 15;
-  width: 60%;
-  padding-left: 0;
-  margin-left: -30%;
-  text-align: center;
-  list-style: none;
-}
-.carousel-indicators li {
-  display: inline-block;
-  width: 10px;
-  height: 10px;
-  margin: 1px;
-  text-indent: -999px;
-  cursor: pointer;
-  background-color: #000 \9;
-  background-color: rgba(0, 0, 0, 0);
-  border: 1px solid #fff;
-  border-radius: 10px;
-}
-.carousel-indicators .active {
-  width: 12px;
-  height: 12px;
-  margin: 0;
-  background-color: #fff;
-}
-.carousel-caption {
-  position: absolute;
-  right: 15%;
-  bottom: 20px;
-  left: 15%;
-  z-index: 10;
-  padding-top: 20px;
-  padding-bottom: 20px;
-  color: #fff;
-  text-align: center;
-  text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
-}
-.carousel-caption .btn {
-  text-shadow: none;
-}
-@media screen and (min-width: 768px) {
-  .carousel-control .glyphicon-chevron-left,
-  .carousel-control .glyphicon-chevron-right,
-  .carousel-control .icon-prev,
-  .carousel-control .icon-next {
-    width: 30px;
-    height: 30px;
-    margin-top: -10px;
-    font-size: 30px;
-  }
-  .carousel-control .glyphicon-chevron-left,
-  .carousel-control .icon-prev {
-    margin-left: -10px;
-  }
-  .carousel-control .glyphicon-chevron-right,
-  .carousel-control .icon-next {
-    margin-right: -10px;
-  }
-  .carousel-caption {
-    right: 20%;
-    left: 20%;
-    padding-bottom: 30px;
-  }
-  .carousel-indicators {
-    bottom: 20px;
-  }
-}
-.clearfix:before,
-.clearfix:after,
-.dl-horizontal dd:before,
-.dl-horizontal dd:after,
-.container:before,
-.container:after,
-.container-fluid:before,
-.container-fluid:after,
-.row:before,
-.row:after,
-.form-horizontal .form-group:before,
-.form-horizontal .form-group:after,
-.btn-toolbar:before,
-.btn-toolbar:after,
-.btn-group-vertical > .btn-group:before,
-.btn-group-vertical > .btn-group:after,
-.nav:before,
-.nav:after,
-.navbar:before,
-.navbar:after,
-.navbar-header:before,
-.navbar-header:after,
-.navbar-collapse:before,
-.navbar-collapse:after,
-.pager:before,
-.pager:after,
-.panel-body:before,
-.panel-body:after,
-.modal-header:before,
-.modal-header:after,
-.modal-footer:before,
-.modal-footer:after {
-  display: table;
-  content: " ";
-}
-.clearfix:after,
-.dl-horizontal dd:after,
-.container:after,
-.container-fluid:after,
-.row:after,
-.form-horizontal .form-group:after,
-.btn-toolbar:after,
-.btn-group-vertical > .btn-group:after,
-.nav:after,
-.navbar:after,
-.navbar-header:after,
-.navbar-collapse:after,
-.pager:after,
-.panel-body:after,
-.modal-header:after,
-.modal-footer:after {
-  clear: both;
-}
-.center-block {
-  display: block;
-  margin-right: auto;
-  margin-left: auto;
-}
-.pull-right {
-  float: right !important;
-}
-.pull-left {
-  float: left !important;
-}
-.hide {
-  display: none !important;
-}
-.show {
-  display: block !important;
-}
-.invisible {
-  visibility: hidden;
-}
-.text-hide {
-  font: 0/0 a;
-  color: transparent;
-  text-shadow: none;
-  background-color: transparent;
-  border: 0;
-}
-.hidden {
-  display: none !important;
-}
-.affix {
-  position: fixed;
-}
-@-ms-viewport {
-  width: device-width;
-}
-.visible-xs,
-.visible-sm,
-.visible-md,
-.visible-lg {
-  display: none !important;
-}
-.visible-xs-block,
-.visible-xs-inline,
-.visible-xs-inline-block,
-.visible-sm-block,
-.visible-sm-inline,
-.visible-sm-inline-block,
-.visible-md-block,
-.visible-md-inline,
-.visible-md-inline-block,
-.visible-lg-block,
-.visible-lg-inline,
-.visible-lg-inline-block {
-  display: none !important;
-}
-@media (max-width: 767px) {
-  .visible-xs {
-    display: block !important;
-  }
-  table.visible-xs {
-    display: table !important;
-  }
-  tr.visible-xs {
-    display: table-row !important;
-  }
-  th.visible-xs,
-  td.visible-xs {
-    display: table-cell !important;
-  }
-}
-@media (max-width: 767px) {
-  .visible-xs-block {
-    display: block !important;
-  }
-}
-@media (max-width: 767px) {
-  .visible-xs-inline {
-    display: inline !important;
-  }
-}
-@media (max-width: 767px) {
-  .visible-xs-inline-block {
-    display: inline-block !important;
-  }
-}
-@media (min-width: 768px) and (max-width: 991px) {
-  .visible-sm {
-    display: block !important;
-  }
-  table.visible-sm {
-    display: table !important;
-  }
-  tr.visible-sm {
-    display: table-row !important;
-  }
-  th.visible-sm,
-  td.visible-sm {
-    display: table-cell !important;
-  }
-}
-@media (min-width: 768px) and (max-width: 991px) {
-  .visible-sm-block {
-    display: block !important;
-  }
-}
-@media (min-width: 768px) and (max-width: 991px) {
-  .visible-sm-inline {
-    display: inline !important;
-  }
-}
-@media (min-width: 768px) and (max-width: 991px) {
-  .visible-sm-inline-block {
-    display: inline-block !important;
-  }
-}
-@media (min-width: 992px) and (max-width: 1199px) {
-  .visible-md {
-    display: block !important;
-  }
-  table.visible-md {
-    display: table !important;
-  }
-  tr.visible-md {
-    display: table-row !important;
-  }
-  th.visible-md,
-  td.visible-md {
-    display: table-cell !important;
-  }
-}
-@media (min-width: 992px) and (max-width: 1199px) {
-  .visible-md-block {
-    display: block !important;
-  }
-}
-@media (min-width: 992px) and (max-width: 1199px) {
-  .visible-md-inline {
-    display: inline !important;
-  }
-}
-@media (min-width: 992px) and (max-width: 1199px) {
-  .visible-md-inline-block {
-    display: inline-block !important;
-  }
-}
-@media (min-width: 1200px) {
-  .visible-lg {
-    display: block !important;
-  }
-  table.visible-lg {
-    display: table !important;
-  }
-  tr.visible-lg {
-    display: table-row !important;
-  }
-  th.visible-lg,
-  td.visible-lg {
-    display: table-cell !important;
-  }
-}
-@media (min-width: 1200px) {
-  .visible-lg-block {
-    display: block !important;
-  }
-}
-@media (min-width: 1200px) {
-  .visible-lg-inline {
-    display: inline !important;
-  }
-}
-@media (min-width: 1200px) {
-  .visible-lg-inline-block {
-    display: inline-block !important;
-  }
-}
-@media (max-width: 767px) {
-  .hidden-xs {
-    display: none !important;
-  }
-}
-@media (min-width: 768px) and (max-width: 991px) {
-  .hidden-sm {
-    display: none !important;
-  }
-}
-@media (min-width: 992px) and (max-width: 1199px) {
-  .hidden-md {
-    display: none !important;
-  }
-}
-@media (min-width: 1200px) {
-  .hidden-lg {
-    display: none !important;
-  }
-}
-.visible-print {
-  display: none !important;
-}
-@media print {
-  .visible-print {
-    display: block !important;
-  }
-  table.visible-print {
-    display: table !important;
-  }
-  tr.visible-print {
-    display: table-row !important;
-  }
-  th.visible-print,
-  td.visible-print {
-    display: table-cell !important;
-  }
-}
-.visible-print-block {
-  display: none !important;
-}
-@media print {
-  .visible-print-block {
-    display: block !important;
-  }
-}
-.visible-print-inline {
-  display: none !important;
-}
-@media print {
-  .visible-print-inline {
-    display: inline !important;
-  }
-}
-.visible-print-inline-block {
-  display: none !important;
-}
-@media print {
-  .visible-print-inline-block {
-    display: inline-block !important;
-  }
-}
-@media print {
-  .hidden-print {
-    display: none !important;
-  }
-}
-/*# sourceMappingURL=bootstrap.css.map */
diff --git a/src/main/webapp/vendors/bootstrap/dist/css/bootstrap.css.map b/src/main/webapp/vendors/bootstrap/dist/css/bootstrap.css.map
deleted file mode 100644
index 09f8cda78a2082983b574be3abab705f8f169ab8..0000000000000000000000000000000000000000
--- a/src/main/webapp/vendors/bootstrap/dist/css/bootstrap.css.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"sources":["bootstrap.css","less/normalize.less","less/print.less","less/glyphicons.less","less/scaffolding.less","less/mixins/vendor-prefixes.less","less/mixins/tab-focus.less","less/mixins/image.less","less/type.less","less/mixins/text-emphasis.less","less/mixins/background-variant.less","less/mixins/text-overflow.less","less/code.less","less/grid.less","less/mixins/grid.less","less/mixins/grid-framework.less","less/tables.less","less/mixins/table-row.less","less/forms.less","less/mixins/forms.less","less/buttons.less","less/mixins/buttons.less","less/mixins/opacity.less","less/component-animations.less","less/dropdowns.less","less/mixins/nav-divider.less","less/mixins/reset-filter.less","less/button-groups.less","less/mixins/border-radius.less","less/input-groups.less","less/navs.less","less/navbar.less","less/mixins/nav-vertical-align.less","less/utilities.less","less/breadcrumbs.less","less/pagination.less","less/mixins/pagination.less","less/pager.less","less/labels.less","less/mixins/labels.less","less/badges.less","less/jumbotron.less","less/thumbnails.less","less/alerts.less","less/mixins/alerts.less","less/progress-bars.less","less/mixins/gradients.less","less/mixins/progress-bar.less","less/media.less","less/list-group.less","less/mixins/list-group.less","less/panels.less","less/mixins/panels.less","less/responsive-embed.less","less/wells.less","less/close.less","less/modals.less","less/tooltip.less","less/mixins/reset-text.less","less/popovers.less","less/carousel.less","less/mixins/clearfix.less","less/mixins/center-block.less","less/mixins/hide-text.less","less/responsive-utilities.less","less/mixins/responsive-visibility.less"],"names":[],"mappings":"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AW,iBAAA;CHsR9C;AGrRmC;EAAW,iBAAA;CHwR9C;AGvRmC;EAAW,iBAAA;CH0R9C;AGzRmC;EAAW,iBAAA;CH4R9C;AG3RmC;EAAW,iBAAA;CH8R9C;AG7RmC;EAAW,iBAAA;CHgS9C;AG/RmC;EAAW,iBAAA;CHkS9C;AGjSmC;EAAW,iBAAA;CHoS9C;AGnSmC;EAAW,iBAAA;CHsS9C;AGrSmC;EAAW,iBAAA;CHwS9C;AGvSmC;EAAW,iBAAA;CH0S9C;AGzSmC;EAAW,iBAAA;CH4S9C;AG3SmC;EAAW,iBAAA;CH8S9C;AG7SmC;EAAW,iBAAA;CHgT9C;AG/SmC;EAAW,iBAAA;CHkT9C;AGjTmC;EAAW,iBAAA;CHoT9C;AGnTmC;EAAW,iBAAA;CHsT9C;AGrTmC;EAAW,iBAAA;CHwT9C;AGvTmC;EAAW,iBAAA;CH0T9C;AGzTmC;EAAW,iBAAA;CH4T9C;AG3TmC;EAAW,iBAAA;CH8T9C;AG7TmC;EAAW,iBAAA;CHgU9C;AG/TmC;EAAW,iBAAA;CHkU9C;AGjUmC;EAAW,iBAAA;CHoU9C;AGnUmC;EAAW,iBAAA;CHsU9C;AGrUmC;EAAW,iBAAA;CHwU9C;AGvUmC;EAAW,iBAAA;CH0U9C;AGzUmC;EAAW,iBAAA;CH4U9C;AG3UmC;EAAW,iBAAA;CH8U9C;AG7UmC;EAAW,iBAAA;CHgV9C;AG/UmC;EAAW,iBAAA;CHkV9C;AGjVmC;EAAW,iBAAA;CHoV9C;AGnVmC;EAAW,iBAAA;CHsV9C;AGrVmC;EAAW,iBAAA;CHwV9C;AGvVmC;EAAW,iBAAA;CH0V9C;AGzVmC;EAAW,iBAAA;CH4V9C;AG3VmC;EAAW,iBAAA;CH8V9C;AG7VmC;EAAW,iBAAA;CHgW9C;AG/VmC;EAAW,iBAAA;CHkW9C;AGjWmC;EAAW,iBAAA;CHoW9C;AGnWmC;EAAW,iBAAA;CHsW9C;AGrWmC;EAAW,iBAAA;CHwW9C;AGvWmC;EAAW,iBAAA;CH0W9C;AGzWmC;EAAW,iBAAA;CH4W9C;AG3WmC;EAAW,iBAAA;CH8W9C;AG7WmC;EAAW,iBAAA;CHgX9C;AG/WmC;EAAW,iBAAA;CHkX9C;AGjXmC;EAAW,iBAAA;CHoX9C;AGnXmC;EAAW,iBAAA;CHsX9C;AGrXmC;EAAW,iBAAA;CHwX9C;AGvXmC;EAAW,iBAAA;CH0X9C;AGzXmC;EAAW,iBAAA;CH4X9C;AG3XmC;EAAW,iBAAA;CH8X9C;AG7XmC;EAAW,iBAAA;CHgY9C;AG/XmC;EAAW,iBAAA;CHkY9C;AGjYmC;EAAW,iBAAA;CHoY9C;AGnYmC;EAAW,iBAAA;CHsY9C;AGrYmC;EAAW,iBAAA;CHwY9C;AGvYmC;EAAW,iBAAA;CH0Y9C;AGzYmC;EAAW,iBAAA;CH4Y9C;AG3YmC;EAAW,iBAAA;CH8Y9C;AG7YmC;EAAW,iBAAA;CHgZ9C;AG/YmC;EAAW,iBAAA;CHkZ9C;AGjZmC;EAAW,iBAAA;CHoZ9C;AGnZmC;EAAW,iBAAA;CHsZ9C;AGrZmC;EAAW,iBAAA;CHwZ9C;AGvZmC;EAAW,iBAAA;CH0Z9C;AGzZmC;EAAW,iBAAA;CH4Z9C;AG3ZmC;EAAW,iBAAA;CH8Z9C;AG7ZmC;EAAW,iBAAA;CHga9C;AG/ZmC;EAAW,iBAAA;CHka9C;AGjamC;EAAW,iBAAA;CHoa9C;AGnamC;EAAW,iBAAA;CHsa9C;AGramC;EAAW,iBAAA;CHwa9C;AGvamC;EAAW,iBAAA;CH0a9C;AGzamC;EAAW,iBAAA;CH4a9C;AG3amC;EAAW,iBAAA;CH8a9C;AG7amC;EAAW,iBAAA;CHgb9C;AG/amC;EAAW,iBAAA;CHkb9C;AGjbmC;EAAW,iBAAA;CHob9C;AGnbmC;EAAW,iBAAA;CHsb9C;AGrbmC;EAAW,iBAAA;CHwb9C;AGvbmC;EAAW,iBAAA;CH0b9C;AGzbmC;EAAW,iBAAA;CH4b9C;AG3bmC;EAAW,iBAAA;CH8b9C;AG7bmC;EAAW,iBAAA;CHgc9C;AG/bmC;EAAW,iBAAA;CHkc9C;AGjcmC;EAAW,iBAAA;CHoc9C;AGncmC;EAAW,iBAAA;CHsc9C;AGrcmC;EAAW,iBAAA;CHwc9C;AGvcmC;EAAW,iBAAA;CH0c9C;AGzcmC;EAAW,iBAAA;CH4c9C;AG3cmC;EAAW,iBAAA;CH8c9C;AG7cmC;EAAW,iBAAA;CHgd9C;AG/cmC;EAAW,iBAAA;CHkd9C;AGjdmC;EAAW,iBAAA;CHod9C;AGndmC;EAAW,iBAAA;CHsd9C;AGrdmC;EAAW,iBAAA;CHwd9C;AGvdmC;EAAW,iBAAA;CH0d9C;AGzdmC;EAAW,iBAAA;CH4d9C;AG3dmC;EAAW,iBAAA;CH8d9C;AG7dmC;EAAW,iBAAA;CHge9C;AG/dmC;EAAW,iBAAA;CHke9C;AGjemC;EAAW,iBAAA;CHoe9C;AGnemC;EAAW,iBAAA;CHse9C;AGremC;EAAW,iBAAA;CHwe9C;AGvemC;EAAW,iBAAA;CH0e9C;AGzemC;EAAW,iBAAA;CH4e9C;AG3emC;EAAW,iBAAA;CH8e9C;AG7emC;EAAW,iBAAA;CHgf9C;AG/emC;EAAW,iBAAA;CHkf9C;AGjfmC;EAAW,iBAAA;CHof9C;AGnfmC;EAAW,iBAAA;CHsf9C;AGrfmC;EAAW,iBAAA;CHwf9C;AGvfmC;EAAW,iBAAA;CH0f9C;AGzfmC;EAAW,iBAAA;CH4f9C;AG3fmC;EAAW,iBAAA;CH8f9C;AG7fmC;EAAW,iBAAA;CHggB9C;AG/fmC;EAAW,iBAAA;CHkgB9C;AGjgBmC;EAAW,iBAAA;CHogB9C;AGngBmC;EAAW,iBAAA;CHsgB9C;AGrgBmC;EAAW,iBAAA;CHwgB9C;AGvgBmC;EAAW,iBAAA;CH0gB9C;AGzgBmC;EAAW,iBAAA;CH4gB9C;AG3gBmC;EAAW,iBAAA;CH8gB9C;AG7gBmC;EAAW,iBAAA;CHghB9C;AG/gBmC;EAAW,iBAAA;CHkhB9C;AGjhBmC;EAAW,iBAAA;CHohB9C;AGnhBmC;EAAW,iBAAA;CHshB9C;AGrhBmC;EAAW,iBAAA;CHwhB9C;AGvhBmC;EAAW,iBAAA;CH0hB9C;AGzhBmC;EAAW,iBAAA;CH4hB9C;AG3hBmC;EAAW,iBAAA;CH8hB9C;AG7hBmC;EAAW,iBAAA;CHgiB9C;AG/hBmC;EAAW,iBAAA;CHkiB9C;AGjiBmC;EAAW,iBAAA;CHoiB9C;AGniBmC;EAAW,iBAAA;CHsiB9C;AGriBmC;EAAW,iBAAA;CHwiB9C;AGviBmC;EAAW,iBAAA;CH0iB9C;AGziBmC;EAAW,iBAAA;CH4iB9C;AG3iBmC;EAAW,iBAAA;CH8iB9C;AG7iBmC;EAAW,iBAAA;CHgjB9C;AG/iBmC;EAAW,iBAAA;CHkjB9C;AGjjBmC;EAAW,iBAAA;CHojB9C;AGnjBmC;EAAW,iBAAA;CHsjB9C;AGrjBmC;EAAW,iBAAA;CHwjB9C;AGvjBmC;EAAW,iBAAA;CH0jB9C;AGzjBmC;EAAW,iBAAA;CH4jB9C;AG3jBmC;EAAW,iBAAA;CH8jB9C;AG7jBmC;EAAW,iBAAA;CHgkB9C;AG/jBmC;EAAW,iBAAA;CHkkB9C;AGjkBmC;EAAW,iBAAA;CHokB9C;AGnkBmC;EAAW,iBAAA;CHskB9C;AGrkBmC;EAAW,iBAAA;CHwkB9C;AGvkBmC;EAAW,iBAAA;CH0kB9C;AGzkBmC;EAAW,iBAAA;CH4kB9C;AG3kBmC;EAAW,iBAAA;CH8kB9C;AG7kBmC;EAAW,iBAAA;CHglB9C;AG/kBmC;EAAW,iBAAA;CHklB9C;AGjlBmC;EAAW,iBAAA;CHolB9C;AGnlBmC;EAAW,iBAAA;CHslB9C;AGrlBmC;EAAW,iBAAA;CHwlB9C;AGvlBmC;EAAW,iBAAA;CH0lB9C;AGzlBmC;EAAW,iBAAA;CH4lB9C;AG3lBmC;EAAW,iBAAA;CH8lB9C;AG7lBmC;EAAW,iBAAA;CHgmB9C;AG/lBmC;EAAW,iBAAA;CHkmB9C;AGjmBmC;EAAW,iBAAA;CHomB9C;AGnmBmC;EAAW,iBAAA;CHsmB9C;AGrmBmC;EAAW,iBAAA;CHwmB9C;AGvmBmC;EAAW,iBAAA;CH0mB9C;AGzmBmC;EAAW,iBAAA;CH4mB9C;AG3mBmC;EAAW,iBAAA;CH8mB9C;AG7mBmC;EAAW,iBAAA;CHgnB9C;AG/mBmC;EAAW,iBAAA;CHknB9C;AGjnBmC;EAAW,iBAAA;CHonB9C;AGnnBmC;EAAW,iBAAA;CHsnB9C;AGrnBmC;EAAW,iBAAA;CHwnB9C;AGvnBmC;EAAW,iBAAA;CH0nB9C;AGznBmC;EAAW,iBAAA;CH4nB9C;AG3nBmC;EAAW,iBAAA;CH8nB9C;AG7nBmC;EAAW,iBAAA;CHgoB9C;AG/nBmC;EAAW,iBAAA;CHkoB9C;AGjoBmC;EAAW,iBAAA;CHooB9C;AGnoBmC;EAAW,iBAAA;CHsoB9C;AGroBmC;EAAW,iBAAA;CHwoB9C;AG/nBmC;EAAW,iBAAA;CHkoB9C;AGjoBmC;EAAW,iBAAA;CHooB9C;AGnoBmC;EAAW,iBAAA;CHsoB9C;AGroBmC;EAAW,iBAAA;CHwoB9C;AGvoBmC;EAAW,iBAAA;CH0oB9C;AGzoBmC;EAAW,iBAAA;CH4oB9C;AG3oBmC;EAAW,iBAAA;CH8oB9C;AG7oBmC;EAAW,iBAAA;CHgpB9C;AG/oBmC;EAAW,iBAAA;CHkpB9C;AGjpBmC;EAAW,iBAAA;CHopB9C;AGnpBmC;EAAW,iBAAA;CHspB9C;AGrpBmC;EAAW,iBAAA;CHwpB9C;AGvpBmC;EAAW,iBAAA;CH0pB9C;AGzpBmC;EAAW,iBAAA;CH4pB9C;AG3pBmC;EAAW,iBAAA;CH8pB9C;AG7pBmC;EAAW,iBAAA;CHgqB9C;AG/pBmC;EAAW,iBAAA;CHkqB9C;AGjqBmC;EAAW,iBAAA;CHoqB9C;AGnqBmC;EAAW,iBAAA;CHsqB9C;AGrqBmC;EAAW,iBAAA;CHwqB9C;AGvqBmC;EAAW,iBAAA;CH0qB9C;AGzqBmC;EAAW,iBAAA;CH4qB9C;AG3qBmC;EAAW,iBAAA;CH8qB9C;AG7qBmC;EAAW,iBAAA;CHgrB9C;AG/qBmC;EAAW,iBAAA;CHkrB9C;AGjrBmC;EAAW,iBAAA;CHorB9C;AGnrBmC;EAAW,iBAAA;CHsrB9C;AGrrBmC;EAAW,iBAAA;CHwrB9C;AGvrBmC;EAAW,iBAAA;CH0rB9C;AGzrBmC;EAAW,iBAAA;CH4rB9C;AG3rBmC;EAAW,iBAAA;CH8rB9C;AG7rBmC;EAAW,iBAAA;CHgsB9C;AG/rBmC;EAAW,iBAAA;CHksB9C;AGjsBmC;EAAW,iBAAA;CHosB9C;AGnsBmC;EAAW,iBAAA;CHssB9C;AGrsBmC;EAAW,iBAAA;CHwsB9C;AGvsBmC;EAAW,iBAAA;CH0sB9C;AGzsBmC;EAAW,iBAAA;CH4sB9C;AG3sBmC;EAAW,iBAAA;CH8sB9C;AG7sBmC;EAAW,iBAAA;CHgtB9C;AG/sBmC;EAAW,iBAAA;CHktB9C;AGjtBmC;EAAW,iBAAA;CHotB9C;AGntBmC;EAAW,iBAAA;CHstB9C;AGrtBmC;EAAW,iBAAA;CHwtB9C;AGvtBmC;EAAW,iBAAA;CH0tB9C;AGztBmC;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CE,oBAAA;CfwkDH;AezkDC;EACE,oBAAA;Cf2kDH;Ae5kDC;EACE,WAAA;Cf8kDH;Ae/kDC;EACE,oBAAA;CfilDH;AellDC;EACE,mBAAA;CfolDH;AehlDC;EACE,YAAA;CfklDH;AelmDC;EACE,WAAA;CfomDH;AermDC;EACE,mBAAA;CfumDH;AexmDC;EACE,mBAAA;Cf0mDH;Ae3mDC;EACE,UAAA;Cf6mDH;Ae9mDC;EACE,mBAAA;CfgnDH;AejnDC;EACE,mBAAA;CfmnDH;AepnDC;EACE,UAAA;CfsnDH;AevnDC;EACE,mBAAA;CfynDH;Ae1nDC;EACE,mBAAA;Cf4nDH;Ae7nDC;EACE,UAAA;Cf+nDH;AehoDC;EACE,mBAAA;CfkoDH;AenoDC;EACE,kBAAA;CfqoDH;AejoDC;EACE,WAAA;CfmoDH;AernDC;EACE,kBAAA;CfunDH;AexnDC;EACE,0BAAA;Cf0nDH;Ae3nDC;EACE,0BAAA;Cf6nDH;Ae9nDC;EACE,iBAAA;CfgoDH;AejoDC;EACE,0BAAA;CfmoDH;AepoDC;EACE,0BAAA;CfsoDH;AevoDC;EACE,iBAAA;CfyoDH;Ae1oDC;EACE,0BAAA;Cf4oDH;Ae7oDC;EACE,0BAAA;Cf+oDH;AehpDC;EACE,iBAAA;CfkpDH;AenpDC;EACE,0BAAA;CfqpDH;AetpDC;EACE,yBAAA;CfwpDH;AezpDC;EACE,gBAAA;Cf2pDH;Aa3pDD;EElCI;IACE,YAAA;GfgsDH;EezrDD;IACE,YAAA;Gf2rDD;Ee5rDD;IACE,oBAAA;Gf8rDD;Ee/rDD;IACE,oBAAA;GfisDD;EelsDD;IACE,WAAA;GfosDD;EersDD;IACE,oBAAA;GfusDD;EexsDD;IACE,oBAAA;Gf0sDD;Ee3sDD;IACE,WAAA;Gf6sDD;Ee9sDD;IACE,oBAAA;GfgtDD;EejtDD;IACE,oBAAA;GfmtDD;EeptDD;IACE,WAAA;GfstDD;EevtDD;IACE,oBAAA;GfytDD;Ee1tDD;IACE,mBAAA;Gf4tDD;Ee9sDD;IACE,YAAA;GfgtDD;EejtDD;IACE,oBAAA;GfmtDD;EeptDD;IACE,oBAAA;GfstDD;EevtDD;IACE,WAAA;GfytDD;Ee1tDD;IACE,oBAAA;Gf4tDD;Ee7tDD;IACE,oBAAA;Gf+tDD;EehuDD;IACE,WAAA;GfkuDD;EenuDD;IACE,oBAAA;GfquDD;EetuDD;IACE,oBAAA;GfwuDD;EezuDD;IACE,WAAA;Gf2uDD;Ee5uDD;IACE,oBAAA;Gf8uDD;Ee/uDD;IACE,mBAAA;GfivDD;Ee7uDD;IACE,YAAA;Gf+uDD;Ee/vDD;IACE,WAAA;GfiwDD;EelwDD;IACE,mBAAA;GfowDD;EerwDD;IACE,mBAAA;GfuwDD;EexwDD;IACE,UAAA;Gf0wDD;Ee3wDD;IACE,mBAAA;Gf6wDD;Ee9wDD;IACE,mBAAA;GfgxDD;EejxDD;IACE,UAAA;GfmxDD;EepxDD;IACE,mBAAA;GfsxDD;EevxDD;IACE,mBAAA;GfyxDD;Ee1xDD;IACE,UAAA;Gf4xDD;Ee7xDD;IACE,mBAAA;Gf+xDD;EehyDD;IACE,kBAAA;GfkyDD;Ee9xDD;IACE,WAAA;GfgyDD;EelxDD;IACE,kBAAA;GfoxDD;EerxDD;IACE,0BAAA;GfuxDD;EexxDD;IACE,0BAAA;Gf0xDD;Ee3xDD;IACE,iBAAA;Gf6xDD;Ee9xDD;IACE,0BAAA;GfgyDD;EejyDD;IACE,0BAAA;GfmyDD;EepyDD;IACE,iBAAA;GfsyDD;EevyDD;IACE,0BAAA;GfyyDD;Ee1yDD;IACE,0BAAA;Gf4yDD;Ee7yDD;IACE,iBAAA;Gf+yDD;EehzDD;IACE,0BAAA;GfkzDD;EenzDD;IACE,yBAAA;GfqzDD;EetzDD;IACE,gBAAA;GfwzDD;CACF;AahzDD;EE3CI;IACE,YAAA;Gf81DH;Eev1DD;IACE,YAAA;Gfy1DD;Ee11DD;IACE,oBAAA;Gf41DD;Ee71DD;IACE,oBAAA;Gf+1DD;Eeh2DD;IACE,WAAA;Gfk2DD;Een2DD;IACE,oBAAA;Gfq2DD;Eet2DD;IACE,oBAAA;Gfw2DD;Eez2DD;IACE,WAAA;Gf22DD;Ee52DD;IACE,oBAAA;Gf82DD;Ee/2DD;IACE,oBAAA;Gfi3DD;Eel3DD;IACE,WAAA;Gfo3DD;Eer3DD;IACE,oBAAA;Gfu3DD;Eex3DD;IACE,mBAAA;Gf03DD;Ee52DD;IACE,YAAA;Gf82DD;Ee/2DD;IACE,oBAAA;Gfi3DD;Eel3DD;IACE,oBAAA;Gfo3DD;Eer3DD;IACE,WAAA;Gfu3DD;Eex3DD;IACE,oBAAA;Gf03DD;Ee33DD;IACE,oBAAA;Gf63DD;Ee93DD;IACE,WAAA;Gfg4DD;Eej4DD;IACE,oBAAA;Gfm4DD;Eep4DD;IACE,oBAAA;Gfs4DD;Eev4DD;IACE,WAAA;Gfy4DD;Ee14DD;IACE,oBAAA;Gf44DD;Ee74DD;IACE,mBAAA;Gf+4DD;Ee34DD;IACE,YAAA;Gf64DD;Ee75DD;IACE,WAAA;Gf+5DD;Eeh6DD;IACE,mBAAA;Gfk6DD;Een6DD;IACE,mBAAA;Gfq6DD;Eet6DD;IACE,UAAA;Gfw6DD;Eez6DD;IACE,mBAAA;Gf26DD;Ee56DD;IACE,mBAAA;Gf86DD;Ee/6DD;IACE,UAAA;Gfi7DD;Eel7DD;IACE,mBAAA;Gfo7DD;Eer7DD;IACE,mBAAA;Gfu7DD;Eex7DD;IACE,UAAA;Gf07DD;Ee37DD;IACE,mBAAA;Gf67DD;Ee97DD;IACE,kBAAA;Gfg8DD;Ee57DD;IACE,WAAA;Gf87DD;Eeh7DD;IACE,kBAAA;Gfk7DD;Een7DD;IACE,0BAAA;Gfq7DD;Eet7DD;IACE,0BAAA;Gfw7DD;Eez7DD;IACE,iBAAA;Gf27DD;Ee57DD;IACE,0BAAA;Gf87DD;Ee/7DD;IACE,0BAAA;Gfi8DD;Eel8DD;IACE,iBAAA;Gfo8DD;Eer8DD;IACE,0BAAA;Gfu8DD;Eex8DD;IACE,0BAAA;Gf08DD;Ee38DD;IACE,iBAAA;Gf68DD;Ee98DD;IACE,0BAAA;Gfg9DD;Eej9DD;IACE,yBAAA;Gfm9DD;Eep9DD;IACE,gBAAA;Gfs9DD;CACF;Aa38DD;EE9CI;IACE,YAAA;Gf4/DH;Eer/DD;IACE,YAAA;Gfu/DD;Eex/DD;IACE,oBAAA;Gf0/DD;Ee3/DD;IACE,oBAAA;Gf6/DD;Ee9/DD;IACE,WAAA;GfggED;EejgED;IACE,oBAAA;GfmgED;EepgED;IACE,oBAAA;GfsgED;EevgED;IACE,WAAA;GfygED;Ee1gED;IACE,oBAAA;Gf4gED;Ee7gED;IACE,oBAAA;Gf+gED;EehhED;IACE,WAAA;GfkhED;EenhED;IACE,oBAAA;GfqhED;EethED;IACE,mBAAA;GfwhED;Ee1gED;IACE,YAAA;Gf4gED;Ee7gED;IACE,oBAAA;Gf+gED;EehhED;IACE,oBAAA;GfkhED;EenhED;IACE,WAAA;GfqhED;EethED;IACE,oBAAA;GfwhED;EezhED;IACE,oBAAA;Gf2hED;Ee5hED;IACE,WAAA;Gf8hED;Ee/hED;IACE,oBAAA;GfiiED;EeliED;IACE,oBAAA;GfoiED;EeriED;IACE,WAAA;GfuiED;EexiED;IACE,oBAAA;Gf0iED;Ee3iED;IACE,mBAAA;Gf6iED;EeziED;IACE,YAAA;Gf2iED;Ee3jED;IACE,WAAA;Gf6jED;Ee9jED;IACE,mBAAA;GfgkED;EejkED;IACE,mBAAA;GfmkED;EepkED;IACE,UAAA;GfskED;EevkED;IACE,mBAAA;GfykED;Ee1kED;IACE,mBAAA;Gf4kED;Ee7kED;IACE,UAAA;Gf+kED;EehlED;IACE,mBAAA;GfklED;EenlED;IACE,mBAAA;GfqlED;EetlED;IACE,UAAA;GfwlED;EezlED;IACE,mBAAA;Gf2lED;Ee5lED;IACE,kBAAA;Gf8lED;Ee1lED;IACE,WAAA;Gf4lED;Ee9kED;IACE,kBAAA;GfglED;EejlED;IACE,0BAAA;GfmlED;EeplED;IACE,0BAAA;GfslED;EevlED;IACE,iBAAA;GfylED;Ee1lED;IACE,0BAAA;Gf4lED;Ee7lED;IACE,0BAAA;Gf+lED;EehmED;IACE,iBAAA;GfkmED;EenmED;IACE,0BAAA;GfqmED;EetmED;IACE,0BAAA;GfwmED;EezmED;IACE,iBAAA;Gf2mED;Ee5mED;IACE,0BAAA;Gf8mED;Ee/mED;IACE,yBAAA;GfinED;EelnED;IACE,gBAAA;GfonED;CACF;AgBxrED;EACE,8BAAA;ChB0rED;AgBxrED;EACE,iBAAA;EACA,oBAAA;EACA,eAAA;EACA,iBAAA;ChB0rED;AgBxrED;EACE,iBAAA;ChB0rED;AgBprED;EACE,YA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","file":"bootstrap.css","sourcesContent":["/*!\n * Bootstrap v3.3.6 (http://getbootstrap.com)\n * Copyright 2011-2015 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */\nhtml {\n  font-family: sans-serif;\n  -ms-text-size-adjust: 100%;\n  -webkit-text-size-adjust: 100%;\n}\nbody {\n  margin: 0;\n}\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nmenu,\nnav,\nsection,\nsummary {\n  display: block;\n}\naudio,\ncanvas,\nprogress,\nvideo {\n  display: inline-block;\n  vertical-align: baseline;\n}\naudio:not([controls]) {\n  display: none;\n  height: 0;\n}\n[hidden],\ntemplate {\n  display: none;\n}\na {\n  background-color: transparent;\n}\na:active,\na:hover {\n  outline: 0;\n}\nabbr[title] {\n  border-bottom: 1px dotted;\n}\nb,\nstrong {\n  font-weight: bold;\n}\ndfn {\n  font-style: italic;\n}\nh1 {\n  font-size: 2em;\n  margin: 0.67em 0;\n}\nmark {\n  background: #ff0;\n  color: #000;\n}\nsmall {\n  font-size: 80%;\n}\nsub,\nsup {\n  font-size: 75%;\n  line-height: 0;\n  position: relative;\n  vertical-align: baseline;\n}\nsup {\n  top: -0.5em;\n}\nsub {\n  bottom: -0.25em;\n}\nimg {\n  border: 0;\n}\nsvg:not(:root) {\n  overflow: hidden;\n}\nfigure {\n  margin: 1em 40px;\n}\nhr {\n  box-sizing: content-box;\n  height: 0;\n}\npre {\n  overflow: auto;\n}\ncode,\nkbd,\npre,\nsamp {\n  font-family: monospace, monospace;\n  font-size: 1em;\n}\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n  color: inherit;\n  font: inherit;\n  margin: 0;\n}\nbutton {\n  overflow: visible;\n}\nbutton,\nselect {\n  text-transform: none;\n}\nbutton,\nhtml input[type=\"button\"],\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n  -webkit-appearance: button;\n  cursor: pointer;\n}\nbutton[disabled],\nhtml input[disabled] {\n  cursor: default;\n}\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner {\n  border: 0;\n  padding: 0;\n}\ninput {\n  line-height: normal;\n}\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n  box-sizing: border-box;\n  padding: 0;\n}\ninput[type=\"number\"]::-webkit-inner-spin-button,\ninput[type=\"number\"]::-webkit-outer-spin-button {\n  height: auto;\n}\ninput[type=\"search\"] {\n  -webkit-appearance: textfield;\n  box-sizing: content-box;\n}\ninput[type=\"search\"]::-webkit-search-cancel-button,\ninput[type=\"search\"]::-webkit-search-decoration {\n  -webkit-appearance: none;\n}\nfieldset {\n  border: 1px solid #c0c0c0;\n  margin: 0 2px;\n  padding: 0.35em 0.625em 0.75em;\n}\nlegend {\n  border: 0;\n  padding: 0;\n}\ntextarea {\n  overflow: auto;\n}\noptgroup {\n  font-weight: bold;\n}\ntable {\n  border-collapse: collapse;\n  border-spacing: 0;\n}\ntd,\nth {\n  padding: 0;\n}\n/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */\n@media print {\n  *,\n  *:before,\n  *:after {\n    background: transparent !important;\n    color: #000 !important;\n    box-shadow: none !important;\n    text-shadow: none !important;\n  }\n  a,\n  a:visited {\n    text-decoration: underline;\n  }\n  a[href]:after {\n    content: \" (\" attr(href) \")\";\n  }\n  abbr[title]:after {\n    content: \" (\" attr(title) \")\";\n  }\n  a[href^=\"#\"]:after,\n  a[href^=\"javascript:\"]:after {\n    content: \"\";\n  }\n  pre,\n  blockquote {\n    border: 1px solid #999;\n    page-break-inside: avoid;\n  }\n  thead {\n    display: table-header-group;\n  }\n  tr,\n  img {\n    page-break-inside: avoid;\n  }\n  img {\n    max-width: 100% !important;\n  }\n  p,\n  h2,\n  h3 {\n    orphans: 3;\n    widows: 3;\n  }\n  h2,\n  h3 {\n    page-break-after: avoid;\n  }\n  .navbar {\n    display: none;\n  }\n  .btn > .caret,\n  .dropup > .btn > .caret {\n    border-top-color: #000 !important;\n  }\n  .label {\n    border: 1px solid #000;\n  }\n  .table {\n    border-collapse: collapse !important;\n  }\n  .table td,\n  .table th {\n    background-color: #fff !important;\n  }\n  .table-bordered th,\n  .table-bordered td {\n    border: 1px solid #ddd !important;\n  }\n}\n@font-face {\n  font-family: 'Glyphicons Halflings';\n  src: url('../fonts/glyphicons-halflings-regular.eot');\n  src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');\n}\n.glyphicon {\n  position: relative;\n  top: 1px;\n  display: inline-block;\n  font-family: 'Glyphicons Halflings';\n  font-style: normal;\n  font-weight: normal;\n  line-height: 1;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n.glyphicon-asterisk:before {\n  content: \"\\002a\";\n}\n.glyphicon-plus:before {\n  content: \"\\002b\";\n}\n.glyphicon-euro:before,\n.glyphicon-eur:before {\n  content: \"\\20ac\";\n}\n.glyphicon-minus:before {\n  content: \"\\2212\";\n}\n.glyphicon-cloud:before {\n  content: \"\\2601\";\n}\n.glyphicon-envelope:before {\n  content: \"\\2709\";\n}\n.glyphicon-pencil:before {\n  content: \"\\270f\";\n}\n.glyphicon-glass:before {\n  content: \"\\e001\";\n}\n.glyphicon-music:before {\n  content: \"\\e002\";\n}\n.glyphicon-search:before {\n  content: \"\\e003\";\n}\n.glyphicon-heart:before {\n  content: \"\\e005\";\n}\n.glyphicon-star:before {\n  content: \"\\e006\";\n}\n.glyphicon-star-empty:before {\n  content: \"\\e007\";\n}\n.glyphicon-user:before {\n  content: \"\\e008\";\n}\n.glyphicon-film:before {\n  content: \"\\e009\";\n}\n.glyphicon-th-large:before {\n  content: \"\\e010\";\n}\n.glyphicon-th:before {\n  content: \"\\e011\";\n}\n.glyphicon-th-list:before {\n  content: \"\\e012\";\n}\n.glyphicon-ok:before {\n  content: \"\\e013\";\n}\n.glyphicon-remove:before {\n  content: \"\\e014\";\n}\n.glyphicon-zoom-in:before {\n  content: \"\\e015\";\n}\n.glyphicon-zoom-out:before {\n  content: \"\\e016\";\n}\n.glyphicon-off:before {\n  content: \"\\e017\";\n}\n.glyphicon-signal:before {\n  content: \"\\e018\";\n}\n.glyphicon-cog:before {\n  content: \"\\e019\";\n}\n.glyphicon-trash:before {\n  content: \"\\e020\";\n}\n.glyphicon-home:before {\n  content: \"\\e021\";\n}\n.glyphicon-file:before {\n  content: \"\\e022\";\n}\n.glyphicon-time:before {\n  content: \"\\e023\";\n}\n.glyphicon-road:before {\n  content: \"\\e024\";\n}\n.glyphicon-download-alt:before {\n  content: \"\\e025\";\n}\n.glyphicon-download:before {\n  content: \"\\e026\";\n}\n.glyphicon-upload:before {\n  content: \"\\e027\";\n}\n.glyphicon-inbox:before {\n  content: \"\\e028\";\n}\n.glyphicon-play-circle:before {\n  content: \"\\e029\";\n}\n.glyphicon-repeat:before {\n  content: \"\\e030\";\n}\n.glyphicon-refresh:before {\n  content: \"\\e031\";\n}\n.glyphicon-list-alt:before {\n  content: \"\\e032\";\n}\n.glyphicon-lock:before {\n  content: \"\\e033\";\n}\n.glyphicon-flag:before {\n  content: \"\\e034\";\n}\n.glyphicon-headphones:before {\n  content: \"\\e035\";\n}\n.glyphicon-volume-off:before {\n  content: \"\\e036\";\n}\n.glyphicon-volume-down:before {\n  content: \"\\e037\";\n}\n.glyphicon-volume-up:before {\n  content: \"\\e038\";\n}\n.glyphicon-qrcode:before {\n  content: \"\\e039\";\n}\n.glyphicon-barcode:before {\n  content: \"\\e040\";\n}\n.glyphicon-tag:before {\n  content: \"\\e041\";\n}\n.glyphicon-tags:before {\n  content: \"\\e042\";\n}\n.glyphicon-book:before {\n  content: \"\\e043\";\n}\n.glyphicon-bookmark:before {\n  content: \"\\e044\";\n}\n.glyphicon-print:before {\n  content: \"\\e045\";\n}\n.glyphicon-camera:before {\n  content: \"\\e046\";\n}\n.glyphicon-font:before {\n  content: \"\\e047\";\n}\n.glyphicon-bold:before {\n  content: \"\\e048\";\n}\n.glyphicon-italic:before {\n  content: \"\\e049\";\n}\n.glyphicon-text-height:before {\n  content: \"\\e050\";\n}\n.glyphicon-text-width:before {\n  content: \"\\e051\";\n}\n.glyphicon-align-left:before {\n  content: \"\\e052\";\n}\n.glyphicon-align-center:before {\n  content: \"\\e053\";\n}\n.glyphicon-align-right:before {\n  content: \"\\e054\";\n}\n.glyphicon-align-justify:before {\n  content: \"\\e055\";\n}\n.glyphicon-list:before {\n  content: \"\\e056\";\n}\n.glyphicon-indent-left:before {\n  content: \"\\e057\";\n}\n.glyphicon-indent-right:before {\n  content: \"\\e058\";\n}\n.glyphicon-facetime-video:before {\n  content: \"\\e059\";\n}\n.glyphicon-picture:before {\n  content: \"\\e060\";\n}\n.glyphicon-map-marker:before {\n  content: \"\\e062\";\n}\n.glyphicon-adjust:before {\n  content: \"\\e063\";\n}\n.glyphicon-tint:before {\n  content: \"\\e064\";\n}\n.glyphicon-edit:before {\n  content: \"\\e065\";\n}\n.glyphicon-share:before {\n  content: \"\\e066\";\n}\n.glyphicon-check:before {\n  content: \"\\e067\";\n}\n.glyphicon-move:before {\n  content: \"\\e068\";\n}\n.glyphicon-step-backward:before {\n  content: \"\\e069\";\n}\n.glyphicon-fast-backward:before {\n  content: \"\\e070\";\n}\n.glyphicon-backward:before {\n  content: \"\\e071\";\n}\n.glyphicon-play:before {\n  content: \"\\e072\";\n}\n.glyphicon-pause:before {\n  content: \"\\e073\";\n}\n.glyphicon-stop:before {\n  content: \"\\e074\";\n}\n.glyphicon-forward:before {\n  content: \"\\e075\";\n}\n.glyphicon-fast-forward:before {\n  content: \"\\e076\";\n}\n.glyphicon-step-forward:before {\n  content: \"\\e077\";\n}\n.glyphicon-eject:before {\n  content: \"\\e078\";\n}\n.glyphicon-chevron-left:before {\n  content: \"\\e079\";\n}\n.glyphicon-chevron-right:before {\n  content: \"\\e080\";\n}\n.glyphicon-plus-sign:before {\n  content: \"\\e081\";\n}\n.glyphicon-minus-sign:before {\n  content: \"\\e082\";\n}\n.glyphicon-remove-sign:before {\n  content: \"\\e083\";\n}\n.glyphicon-ok-sign:before {\n  content: \"\\e084\";\n}\n.glyphicon-question-sign:before {\n  content: \"\\e085\";\n}\n.glyphicon-info-sign:before {\n  content: \"\\e086\";\n}\n.glyphicon-screenshot:before {\n  content: \"\\e087\";\n}\n.glyphicon-remove-circle:before {\n  content: \"\\e088\";\n}\n.glyphicon-ok-circle:before {\n  content: \"\\e089\";\n}\n.glyphicon-ban-circle:before {\n  content: \"\\e090\";\n}\n.glyphicon-arrow-left:before {\n  content: \"\\e091\";\n}\n.glyphicon-arrow-right:before {\n  content: \"\\e092\";\n}\n.glyphicon-arrow-up:before {\n  content: \"\\e093\";\n}\n.glyphicon-arrow-down:before {\n  content: \"\\e094\";\n}\n.glyphicon-share-alt:before {\n  content: \"\\e095\";\n}\n.glyphicon-resize-full:before {\n  content: \"\\e096\";\n}\n.glyphicon-resize-small:before {\n  content: \"\\e097\";\n}\n.glyphicon-exclamation-sign:before {\n  content: \"\\e101\";\n}\n.glyphicon-gift:before {\n  content: \"\\e102\";\n}\n.glyphicon-leaf:before {\n  content: \"\\e103\";\n}\n.glyphicon-fire:before {\n  content: \"\\e104\";\n}\n.glyphicon-eye-open:before {\n  content: \"\\e105\";\n}\n.glyphicon-eye-close:before {\n  content: \"\\e106\";\n}\n.glyphicon-warning-sign:before {\n  content: \"\\e107\";\n}\n.glyphicon-plane:before {\n  content: \"\\e108\";\n}\n.glyphicon-calendar:before {\n  content: \"\\e109\";\n}\n.glyphicon-random:before {\n  content: \"\\e110\";\n}\n.glyphicon-comment:before {\n  content: \"\\e111\";\n}\n.glyphicon-magnet:before {\n  content: \"\\e112\";\n}\n.glyphicon-chevron-up:before {\n  content: \"\\e113\";\n}\n.glyphicon-chevron-down:before {\n  content: \"\\e114\";\n}\n.glyphicon-retweet:before {\n  content: \"\\e115\";\n}\n.glyphicon-shopping-cart:before {\n  content: \"\\e116\";\n}\n.glyphicon-folder-close:before {\n  content: \"\\e117\";\n}\n.glyphicon-folder-open:before {\n  content: \"\\e118\";\n}\n.glyphicon-resize-vertical:before {\n  content: \"\\e119\";\n}\n.glyphicon-resize-horizontal:before {\n  content: \"\\e120\";\n}\n.glyphicon-hdd:before {\n  content: \"\\e121\";\n}\n.glyphicon-bullhorn:before {\n  content: \"\\e122\";\n}\n.glyphicon-bell:before {\n  content: \"\\e123\";\n}\n.glyphicon-certificate:before {\n  content: \"\\e124\";\n}\n.glyphicon-thumbs-up:before {\n  content: \"\\e125\";\n}\n.glyphicon-thumbs-down:before {\n  content: \"\\e126\";\n}\n.glyphicon-hand-right:before {\n  content: \"\\e127\";\n}\n.glyphicon-hand-left:before {\n  content: \"\\e128\";\n}\n.glyphicon-hand-up:before {\n  content: \"\\e129\";\n}\n.glyphicon-hand-down:before {\n  content: \"\\e130\";\n}\n.glyphicon-circle-arrow-right:before {\n  content: \"\\e131\";\n}\n.glyphicon-circle-arrow-left:before {\n  content: \"\\e132\";\n}\n.glyphicon-circle-arrow-up:before {\n  content: \"\\e133\";\n}\n.glyphicon-circle-arrow-down:before {\n  content: \"\\e134\";\n}\n.glyphicon-globe:before {\n  content: \"\\e135\";\n}\n.glyphicon-wrench:before {\n  content: \"\\e136\";\n}\n.glyphicon-tasks:before {\n  content: \"\\e137\";\n}\n.glyphicon-filter:before {\n  content: \"\\e138\";\n}\n.glyphicon-briefcase:before {\n  content: \"\\e139\";\n}\n.glyphicon-fullscreen:before {\n  content: \"\\e140\";\n}\n.glyphicon-dashboard:before {\n  content: \"\\e141\";\n}\n.glyphicon-paperclip:before {\n  content: \"\\e142\";\n}\n.glyphicon-heart-empty:before {\n  content: \"\\e143\";\n}\n.glyphicon-link:before {\n  content: \"\\e144\";\n}\n.glyphicon-phone:before {\n  content: \"\\e145\";\n}\n.glyphicon-pushpin:before {\n  content: \"\\e146\";\n}\n.glyphicon-usd:before {\n  content: \"\\e148\";\n}\n.glyphicon-gbp:before {\n  content: \"\\e149\";\n}\n.glyphicon-sort:before {\n  content: \"\\e150\";\n}\n.glyphicon-sort-by-alphabet:before {\n  content: \"\\e151\";\n}\n.glyphicon-sort-by-alphabet-alt:before {\n  content: \"\\e152\";\n}\n.glyphicon-sort-by-order:before {\n  content: \"\\e153\";\n}\n.glyphicon-sort-by-order-alt:before {\n  content: \"\\e154\";\n}\n.glyphicon-sort-by-attributes:before {\n  content: \"\\e155\";\n}\n.glyphicon-sort-by-attributes-alt:before {\n  content: \"\\e156\";\n}\n.glyphicon-unchecked:before {\n  content: \"\\e157\";\n}\n.glyphicon-expand:before {\n  content: \"\\e158\";\n}\n.glyphicon-collapse-down:before {\n  content: \"\\e159\";\n}\n.glyphicon-collapse-up:before {\n  content: \"\\e160\";\n}\n.glyphicon-log-in:before {\n  content: \"\\e161\";\n}\n.glyphicon-flash:before {\n  content: \"\\e162\";\n}\n.glyphicon-log-out:before {\n  content: \"\\e163\";\n}\n.glyphicon-new-window:before {\n  content: \"\\e164\";\n}\n.glyphicon-record:before {\n  content: \"\\e165\";\n}\n.glyphicon-save:before {\n  content: \"\\e166\";\n}\n.glyphicon-open:before {\n  content: \"\\e167\";\n}\n.glyphicon-saved:before {\n  content: \"\\e168\";\n}\n.glyphicon-import:before {\n  content: \"\\e169\";\n}\n.glyphicon-export:before {\n  content: \"\\e170\";\n}\n.glyphicon-send:before {\n  content: \"\\e171\";\n}\n.glyphicon-floppy-disk:before {\n  content: \"\\e172\";\n}\n.glyphicon-floppy-saved:before {\n  content: \"\\e173\";\n}\n.glyphicon-floppy-remove:before {\n  content: \"\\e174\";\n}\n.glyphicon-floppy-save:before {\n  content: \"\\e175\";\n}\n.glyphicon-floppy-open:before {\n  content: \"\\e176\";\n}\n.glyphicon-credit-card:before {\n  content: \"\\e177\";\n}\n.glyphicon-transfer:before {\n  content: \"\\e178\";\n}\n.glyphicon-cutlery:before {\n  content: \"\\e179\";\n}\n.glyphicon-header:before {\n  content: \"\\e180\";\n}\n.glyphicon-compressed:before {\n  content: \"\\e181\";\n}\n.glyphicon-earphone:before {\n  content: \"\\e182\";\n}\n.glyphicon-phone-alt:before {\n  content: \"\\e183\";\n}\n.glyphicon-tower:before {\n  content: \"\\e184\";\n}\n.glyphicon-stats:before {\n  content: \"\\e185\";\n}\n.glyphicon-sd-video:before {\n  content: \"\\e186\";\n}\n.glyphicon-hd-video:before {\n  content: \"\\e187\";\n}\n.glyphicon-subtitles:before {\n  content: \"\\e188\";\n}\n.glyphicon-sound-stereo:before {\n  content: \"\\e189\";\n}\n.glyphicon-sound-dolby:before {\n  content: \"\\e190\";\n}\n.glyphicon-sound-5-1:before {\n  content: \"\\e191\";\n}\n.glyphicon-sound-6-1:before {\n  content: \"\\e192\";\n}\n.glyphicon-sound-7-1:before {\n  content: \"\\e193\";\n}\n.glyphicon-copyright-mark:before {\n  content: \"\\e194\";\n}\n.glyphicon-registration-mark:before {\n  content: \"\\e195\";\n}\n.glyphicon-cloud-download:before {\n  content: \"\\e197\";\n}\n.glyphicon-cloud-upload:before {\n  content: \"\\e198\";\n}\n.glyphicon-tree-conifer:before {\n  content: \"\\e199\";\n}\n.glyphicon-tree-deciduous:before {\n  content: \"\\e200\";\n}\n.glyphicon-cd:before {\n  content: \"\\e201\";\n}\n.glyphicon-save-file:before {\n  content: \"\\e202\";\n}\n.glyphicon-open-file:before {\n  content: \"\\e203\";\n}\n.glyphicon-level-up:before {\n  content: \"\\e204\";\n}\n.glyphicon-copy:before {\n  content: \"\\e205\";\n}\n.glyphicon-paste:before {\n  content: \"\\e206\";\n}\n.glyphicon-alert:before {\n  content: \"\\e209\";\n}\n.glyphicon-equalizer:before {\n  content: \"\\e210\";\n}\n.glyphicon-king:before {\n  content: \"\\e211\";\n}\n.glyphicon-queen:before {\n  content: \"\\e212\";\n}\n.glyphicon-pawn:before {\n  content: \"\\e213\";\n}\n.glyphicon-bishop:before {\n  content: \"\\e214\";\n}\n.glyphicon-knight:before {\n  content: \"\\e215\";\n}\n.glyphicon-baby-formula:before {\n  content: \"\\e216\";\n}\n.glyphicon-tent:before {\n  content: \"\\26fa\";\n}\n.glyphicon-blackboard:before {\n  content: \"\\e218\";\n}\n.glyphicon-bed:before {\n  content: \"\\e219\";\n}\n.glyphicon-apple:before {\n  content: \"\\f8ff\";\n}\n.glyphicon-erase:before {\n  content: \"\\e221\";\n}\n.glyphicon-hourglass:before {\n  content: \"\\231b\";\n}\n.glyphicon-lamp:before {\n  content: \"\\e223\";\n}\n.glyphicon-duplicate:before {\n  content: \"\\e224\";\n}\n.glyphicon-piggy-bank:before {\n  content: \"\\e225\";\n}\n.glyphicon-scissors:before {\n  content: \"\\e226\";\n}\n.glyphicon-bitcoin:before {\n  content: \"\\e227\";\n}\n.glyphicon-btc:before {\n  content: \"\\e227\";\n}\n.glyphicon-xbt:before {\n  content: \"\\e227\";\n}\n.glyphicon-yen:before {\n  content: \"\\00a5\";\n}\n.glyphicon-jpy:before {\n  content: \"\\00a5\";\n}\n.glyphicon-ruble:before {\n  content: \"\\20bd\";\n}\n.glyphicon-rub:before {\n  content: \"\\20bd\";\n}\n.glyphicon-scale:before {\n  content: \"\\e230\";\n}\n.glyphicon-ice-lolly:before {\n  content: \"\\e231\";\n}\n.glyphicon-ice-lolly-tasted:before {\n  content: \"\\e232\";\n}\n.glyphicon-education:before {\n  content: \"\\e233\";\n}\n.glyphicon-option-horizontal:before {\n  content: \"\\e234\";\n}\n.glyphicon-option-vertical:before {\n  content: \"\\e235\";\n}\n.glyphicon-menu-hamburger:before {\n  content: \"\\e236\";\n}\n.glyphicon-modal-window:before {\n  content: \"\\e237\";\n}\n.glyphicon-oil:before {\n  content: \"\\e238\";\n}\n.glyphicon-grain:before {\n  content: \"\\e239\";\n}\n.glyphicon-sunglasses:before {\n  content: \"\\e240\";\n}\n.glyphicon-text-size:before {\n  content: \"\\e241\";\n}\n.glyphicon-text-color:before {\n  content: \"\\e242\";\n}\n.glyphicon-text-background:before {\n  content: \"\\e243\";\n}\n.glyphicon-object-align-top:before {\n  content: \"\\e244\";\n}\n.glyphicon-object-align-bottom:before {\n  content: \"\\e245\";\n}\n.glyphicon-object-align-horizontal:before {\n  content: \"\\e246\";\n}\n.glyphicon-object-align-left:before {\n  content: \"\\e247\";\n}\n.glyphicon-object-align-vertical:before {\n  content: \"\\e248\";\n}\n.glyphicon-object-align-right:before {\n  content: \"\\e249\";\n}\n.glyphicon-triangle-right:before {\n  content: \"\\e250\";\n}\n.glyphicon-triangle-left:before {\n  content: \"\\e251\";\n}\n.glyphicon-triangle-bottom:before {\n  content: \"\\e252\";\n}\n.glyphicon-triangle-top:before {\n  content: \"\\e253\";\n}\n.glyphicon-console:before {\n  content: \"\\e254\";\n}\n.glyphicon-superscript:before {\n  content: \"\\e255\";\n}\n.glyphicon-subscript:before {\n  content: \"\\e256\";\n}\n.glyphicon-menu-left:before {\n  content: \"\\e257\";\n}\n.glyphicon-menu-right:before {\n  content: \"\\e258\";\n}\n.glyphicon-menu-down:before {\n  content: \"\\e259\";\n}\n.glyphicon-menu-up:before {\n  content: \"\\e260\";\n}\n* {\n  -webkit-box-sizing: border-box;\n  -moz-box-sizing: border-box;\n  box-sizing: border-box;\n}\n*:before,\n*:after {\n  -webkit-box-sizing: border-box;\n  -moz-box-sizing: border-box;\n  box-sizing: border-box;\n}\nhtml {\n  font-size: 10px;\n  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n}\nbody {\n  font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n  font-size: 14px;\n  line-height: 1.42857143;\n  color: #333333;\n  background-color: #fff;\n}\ninput,\nbutton,\nselect,\ntextarea {\n  font-family: inherit;\n  font-size: inherit;\n  line-height: inherit;\n}\na {\n  color: #337ab7;\n  text-decoration: none;\n}\na:hover,\na:focus {\n  color: #23527c;\n  text-decoration: underline;\n}\na:focus {\n  outline: thin dotted;\n  outline: 5px auto -webkit-focus-ring-color;\n  outline-offset: -2px;\n}\nfigure {\n  margin: 0;\n}\nimg {\n  vertical-align: middle;\n}\n.img-responsive,\n.thumbnail > img,\n.thumbnail a > img,\n.carousel-inner > .item > img,\n.carousel-inner > .item > a > img {\n  display: block;\n  max-width: 100%;\n  height: auto;\n}\n.img-rounded {\n  border-radius: 6px;\n}\n.img-thumbnail {\n  padding: 4px;\n  line-height: 1.42857143;\n  background-color: #fff;\n  border: 1px solid #ddd;\n  border-radius: 4px;\n  -webkit-transition: all 0.2s ease-in-out;\n  -o-transition: all 0.2s ease-in-out;\n  transition: all 0.2s ease-in-out;\n  display: inline-block;\n  max-width: 100%;\n  height: auto;\n}\n.img-circle {\n  border-radius: 50%;\n}\nhr {\n  margin-top: 20px;\n  margin-bottom: 20px;\n  border: 0;\n  border-top: 1px solid #eeeeee;\n}\n.sr-only {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  margin: -1px;\n  padding: 0;\n  overflow: hidden;\n  clip: rect(0, 0, 0, 0);\n  border: 0;\n}\n.sr-only-focusable:active,\n.sr-only-focusable:focus {\n  position: static;\n  width: auto;\n  height: auto;\n  margin: 0;\n  overflow: visible;\n  clip: auto;\n}\n[role=\"button\"] {\n  cursor: pointer;\n}\nh1,\nh2,\nh3,\nh4,\nh5,\nh6,\n.h1,\n.h2,\n.h3,\n.h4,\n.h5,\n.h6 {\n  font-family: inherit;\n  font-weight: 500;\n  line-height: 1.1;\n  color: inherit;\n}\nh1 small,\nh2 small,\nh3 small,\nh4 small,\nh5 small,\nh6 small,\n.h1 small,\n.h2 small,\n.h3 small,\n.h4 small,\n.h5 small,\n.h6 small,\nh1 .small,\nh2 .small,\nh3 .small,\nh4 .small,\nh5 .small,\nh6 .small,\n.h1 .small,\n.h2 .small,\n.h3 .small,\n.h4 .small,\n.h5 .small,\n.h6 .small {\n  font-weight: normal;\n  line-height: 1;\n  color: #777777;\n}\nh1,\n.h1,\nh2,\n.h2,\nh3,\n.h3 {\n  margin-top: 20px;\n  margin-bottom: 10px;\n}\nh1 small,\n.h1 small,\nh2 small,\n.h2 small,\nh3 small,\n.h3 small,\nh1 .small,\n.h1 .small,\nh2 .small,\n.h2 .small,\nh3 .small,\n.h3 .small {\n  font-size: 65%;\n}\nh4,\n.h4,\nh5,\n.h5,\nh6,\n.h6 {\n  margin-top: 10px;\n  margin-bottom: 10px;\n}\nh4 small,\n.h4 small,\nh5 small,\n.h5 small,\nh6 small,\n.h6 small,\nh4 .small,\n.h4 .small,\nh5 .small,\n.h5 .small,\nh6 .small,\n.h6 .small {\n  font-size: 75%;\n}\nh1,\n.h1 {\n  font-size: 36px;\n}\nh2,\n.h2 {\n  font-size: 30px;\n}\nh3,\n.h3 {\n  font-size: 24px;\n}\nh4,\n.h4 {\n  font-size: 18px;\n}\nh5,\n.h5 {\n  font-size: 14px;\n}\nh6,\n.h6 {\n  font-size: 12px;\n}\np {\n  margin: 0 0 10px;\n}\n.lead {\n  margin-bottom: 20px;\n  font-size: 16px;\n  font-weight: 300;\n  line-height: 1.4;\n}\n@media (min-width: 768px) {\n  .lead {\n    font-size: 21px;\n  }\n}\nsmall,\n.small {\n  font-size: 85%;\n}\nmark,\n.mark {\n  background-color: #fcf8e3;\n  padding: .2em;\n}\n.text-left {\n  text-align: left;\n}\n.text-right {\n  text-align: right;\n}\n.text-center {\n  text-align: center;\n}\n.text-justify {\n  text-align: justify;\n}\n.text-nowrap {\n  white-space: nowrap;\n}\n.text-lowercase {\n  text-transform: lowercase;\n}\n.text-uppercase {\n  text-transform: uppercase;\n}\n.text-capitalize {\n  text-transform: capitalize;\n}\n.text-muted {\n  color: #777777;\n}\n.text-primary {\n  color: #337ab7;\n}\na.text-primary:hover,\na.text-primary:focus {\n  color: #286090;\n}\n.text-success {\n  color: #3c763d;\n}\na.text-success:hover,\na.text-success:focus {\n  color: #2b542c;\n}\n.text-info {\n  color: #31708f;\n}\na.text-info:hover,\na.text-info:focus {\n  color: #245269;\n}\n.text-warning {\n  color: #8a6d3b;\n}\na.text-warning:hover,\na.text-warning:focus {\n  color: #66512c;\n}\n.text-danger {\n  color: #a94442;\n}\na.text-danger:hover,\na.text-danger:focus {\n  color: #843534;\n}\n.bg-primary {\n  color: #fff;\n  background-color: #337ab7;\n}\na.bg-primary:hover,\na.bg-primary:focus {\n  background-color: #286090;\n}\n.bg-success {\n  background-color: #dff0d8;\n}\na.bg-success:hover,\na.bg-success:focus {\n  background-color: #c1e2b3;\n}\n.bg-info {\n  background-color: #d9edf7;\n}\na.bg-info:hover,\na.bg-info:focus {\n  background-color: #afd9ee;\n}\n.bg-warning {\n  background-color: #fcf8e3;\n}\na.bg-warning:hover,\na.bg-warning:focus {\n  background-color: #f7ecb5;\n}\n.bg-danger {\n  background-color: #f2dede;\n}\na.bg-danger:hover,\na.bg-danger:focus {\n  background-color: #e4b9b9;\n}\n.page-header {\n  padding-bottom: 9px;\n  margin: 40px 0 20px;\n  border-bottom: 1px solid #eeeeee;\n}\nul,\nol {\n  margin-top: 0;\n  margin-bottom: 10px;\n}\nul ul,\nol ul,\nul ol,\nol ol {\n  margin-bottom: 0;\n}\n.list-unstyled {\n  padding-left: 0;\n  list-style: none;\n}\n.list-inline {\n  padding-left: 0;\n  list-style: none;\n  margin-left: -5px;\n}\n.list-inline > li {\n  display: inline-block;\n  padding-left: 5px;\n  padding-right: 5px;\n}\ndl {\n  margin-top: 0;\n  margin-bottom: 20px;\n}\ndt,\ndd {\n  line-height: 1.42857143;\n}\ndt {\n  font-weight: bold;\n}\ndd {\n  margin-left: 0;\n}\n@media (min-width: 768px) {\n  .dl-horizontal dt {\n    float: left;\n    width: 160px;\n    clear: left;\n    text-align: right;\n    overflow: hidden;\n    text-overflow: ellipsis;\n    white-space: nowrap;\n  }\n  .dl-horizontal dd {\n    margin-left: 180px;\n  }\n}\nabbr[title],\nabbr[data-original-title] {\n  cursor: help;\n  border-bottom: 1px dotted #777777;\n}\n.initialism {\n  font-size: 90%;\n  text-transform: uppercase;\n}\nblockquote {\n  padding: 10px 20px;\n  margin: 0 0 20px;\n  font-size: 17.5px;\n  border-left: 5px solid #eeeeee;\n}\nblockquote p:last-child,\nblockquote ul:last-child,\nblockquote ol:last-child {\n  margin-bottom: 0;\n}\nblockquote footer,\nblockquote small,\nblockquote .small {\n  display: block;\n  font-size: 80%;\n  line-height: 1.42857143;\n  color: #777777;\n}\nblockquote footer:before,\nblockquote small:before,\nblockquote .small:before {\n  content: '\\2014 \\00A0';\n}\n.blockquote-reverse,\nblockquote.pull-right {\n  padding-right: 15px;\n  padding-left: 0;\n  border-right: 5px solid #eeeeee;\n  border-left: 0;\n  text-align: right;\n}\n.blockquote-reverse footer:before,\nblockquote.pull-right footer:before,\n.blockquote-reverse small:before,\nblockquote.pull-right small:before,\n.blockquote-reverse .small:before,\nblockquote.pull-right .small:before {\n  content: '';\n}\n.blockquote-reverse footer:after,\nblockquote.pull-right footer:after,\n.blockquote-reverse small:after,\nblockquote.pull-right small:after,\n.blockquote-reverse .small:after,\nblockquote.pull-right .small:after {\n  content: '\\00A0 \\2014';\n}\naddress {\n  margin-bottom: 20px;\n  font-style: normal;\n  line-height: 1.42857143;\n}\ncode,\nkbd,\npre,\nsamp {\n  font-family: Menlo, Monaco, Consolas, \"Courier New\", monospace;\n}\ncode {\n  padding: 2px 4px;\n  font-size: 90%;\n  color: #c7254e;\n  background-color: #f9f2f4;\n  border-radius: 4px;\n}\nkbd {\n  padding: 2px 4px;\n  font-size: 90%;\n  color: #fff;\n  background-color: #333;\n  border-radius: 3px;\n  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);\n}\nkbd kbd {\n  padding: 0;\n  font-size: 100%;\n  font-weight: bold;\n  box-shadow: none;\n}\npre {\n  display: block;\n  padding: 9.5px;\n  margin: 0 0 10px;\n  font-size: 13px;\n  line-height: 1.42857143;\n  word-break: break-all;\n  word-wrap: break-word;\n  color: #333333;\n  background-color: #f5f5f5;\n  border: 1px solid #ccc;\n  border-radius: 4px;\n}\npre code {\n  padding: 0;\n  font-size: inherit;\n  color: inherit;\n  white-space: pre-wrap;\n  background-color: transparent;\n  border-radius: 0;\n}\n.pre-scrollable {\n  max-height: 340px;\n  overflow-y: scroll;\n}\n.container {\n  margin-right: auto;\n  margin-left: auto;\n  padding-left: 15px;\n  padding-right: 15px;\n}\n@media (min-width: 768px) {\n  .container {\n    width: 750px;\n  }\n}\n@media (min-width: 992px) {\n  .container {\n    width: 970px;\n  }\n}\n@media (min-width: 1200px) {\n  .container {\n    width: 1170px;\n  }\n}\n.container-fluid {\n  margin-right: auto;\n  margin-left: auto;\n  padding-left: 15px;\n  padding-right: 15px;\n}\n.row {\n  margin-left: -15px;\n  margin-right: -15px;\n}\n.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {\n  position: relative;\n  min-height: 1px;\n  padding-left: 15px;\n  padding-right: 15px;\n}\n.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {\n  float: left;\n}\n.col-xs-12 {\n  width: 100%;\n}\n.col-xs-11 {\n  width: 91.66666667%;\n}\n.col-xs-10 {\n  width: 83.33333333%;\n}\n.col-xs-9 {\n  width: 75%;\n}\n.col-xs-8 {\n  width: 66.66666667%;\n}\n.col-xs-7 {\n  width: 58.33333333%;\n}\n.col-xs-6 {\n  width: 50%;\n}\n.col-xs-5 {\n  width: 41.66666667%;\n}\n.col-xs-4 {\n  width: 33.33333333%;\n}\n.col-xs-3 {\n  width: 25%;\n}\n.col-xs-2 {\n  width: 16.66666667%;\n}\n.col-xs-1 {\n  width: 8.33333333%;\n}\n.col-xs-pull-12 {\n  right: 100%;\n}\n.col-xs-pull-11 {\n  right: 91.66666667%;\n}\n.col-xs-pull-10 {\n  right: 83.33333333%;\n}\n.col-xs-pull-9 {\n  right: 75%;\n}\n.col-xs-pull-8 {\n  right: 66.66666667%;\n}\n.col-xs-pull-7 {\n  right: 58.33333333%;\n}\n.col-xs-pull-6 {\n  right: 50%;\n}\n.col-xs-pull-5 {\n  right: 41.66666667%;\n}\n.col-xs-pull-4 {\n  right: 33.33333333%;\n}\n.col-xs-pull-3 {\n  right: 25%;\n}\n.col-xs-pull-2 {\n  right: 16.66666667%;\n}\n.col-xs-pull-1 {\n  right: 8.33333333%;\n}\n.col-xs-pull-0 {\n  right: auto;\n}\n.col-xs-push-12 {\n  left: 100%;\n}\n.col-xs-push-11 {\n  left: 91.66666667%;\n}\n.col-xs-push-10 {\n  left: 83.33333333%;\n}\n.col-xs-push-9 {\n  left: 75%;\n}\n.col-xs-push-8 {\n  left: 66.66666667%;\n}\n.col-xs-push-7 {\n  left: 58.33333333%;\n}\n.col-xs-push-6 {\n  left: 50%;\n}\n.col-xs-push-5 {\n  left: 41.66666667%;\n}\n.col-xs-push-4 {\n  left: 33.33333333%;\n}\n.col-xs-push-3 {\n  left: 25%;\n}\n.col-xs-push-2 {\n  left: 16.66666667%;\n}\n.col-xs-push-1 {\n  left: 8.33333333%;\n}\n.col-xs-push-0 {\n  left: auto;\n}\n.col-xs-offset-12 {\n  margin-left: 100%;\n}\n.col-xs-offset-11 {\n  margin-left: 91.66666667%;\n}\n.col-xs-offset-10 {\n  margin-left: 83.33333333%;\n}\n.col-xs-offset-9 {\n  margin-left: 75%;\n}\n.col-xs-offset-8 {\n  margin-left: 66.66666667%;\n}\n.col-xs-offset-7 {\n  margin-left: 58.33333333%;\n}\n.col-xs-offset-6 {\n  margin-left: 50%;\n}\n.col-xs-offset-5 {\n  margin-left: 41.66666667%;\n}\n.col-xs-offset-4 {\n  margin-left: 33.33333333%;\n}\n.col-xs-offset-3 {\n  margin-left: 25%;\n}\n.col-xs-offset-2 {\n  margin-left: 16.66666667%;\n}\n.col-xs-offset-1 {\n  margin-left: 8.33333333%;\n}\n.col-xs-offset-0 {\n  margin-left: 0%;\n}\n@media (min-width: 768px) {\n  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {\n    float: left;\n  }\n  .col-sm-12 {\n    width: 100%;\n  }\n  .col-sm-11 {\n    width: 91.66666667%;\n  }\n  .col-sm-10 {\n    width: 83.33333333%;\n  }\n  .col-sm-9 {\n    width: 75%;\n  }\n  .col-sm-8 {\n    width: 66.66666667%;\n  }\n  .col-sm-7 {\n    width: 58.33333333%;\n  }\n  .col-sm-6 {\n    width: 50%;\n  }\n  .col-sm-5 {\n    width: 41.66666667%;\n  }\n  .col-sm-4 {\n    width: 33.33333333%;\n  }\n  .col-sm-3 {\n    width: 25%;\n  }\n  .col-sm-2 {\n    width: 16.66666667%;\n  }\n  .col-sm-1 {\n    width: 8.33333333%;\n  }\n  .col-sm-pull-12 {\n    right: 100%;\n  }\n  .col-sm-pull-11 {\n    right: 91.66666667%;\n  }\n  .col-sm-pull-10 {\n    right: 83.33333333%;\n  }\n  .col-sm-pull-9 {\n    right: 75%;\n  }\n  .col-sm-pull-8 {\n    right: 66.66666667%;\n  }\n  .col-sm-pull-7 {\n    right: 58.33333333%;\n  }\n  .col-sm-pull-6 {\n    right: 50%;\n  }\n  .col-sm-pull-5 {\n    right: 41.66666667%;\n  }\n  .col-sm-pull-4 {\n    right: 33.33333333%;\n  }\n  .col-sm-pull-3 {\n    right: 25%;\n  }\n  .col-sm-pull-2 {\n    right: 16.66666667%;\n  }\n  .col-sm-pull-1 {\n    right: 8.33333333%;\n  }\n  .col-sm-pull-0 {\n    right: auto;\n  }\n  .col-sm-push-12 {\n    left: 100%;\n  }\n  .col-sm-push-11 {\n    left: 91.66666667%;\n  }\n  .col-sm-push-10 {\n    left: 83.33333333%;\n  }\n  .col-sm-push-9 {\n    left: 75%;\n  }\n  .col-sm-push-8 {\n    left: 66.66666667%;\n  }\n  .col-sm-push-7 {\n    left: 58.33333333%;\n  }\n  .col-sm-push-6 {\n    left: 50%;\n  }\n  .col-sm-push-5 {\n    left: 41.66666667%;\n  }\n  .col-sm-push-4 {\n    left: 33.33333333%;\n  }\n  .col-sm-push-3 {\n    left: 25%;\n  }\n  .col-sm-push-2 {\n    left: 16.66666667%;\n  }\n  .col-sm-push-1 {\n    left: 8.33333333%;\n  }\n  .col-sm-push-0 {\n    left: auto;\n  }\n  .col-sm-offset-12 {\n    margin-left: 100%;\n  }\n  .col-sm-offset-11 {\n    margin-left: 91.66666667%;\n  }\n  .col-sm-offset-10 {\n    margin-left: 83.33333333%;\n  }\n  .col-sm-offset-9 {\n    margin-left: 75%;\n  }\n  .col-sm-offset-8 {\n    margin-left: 66.66666667%;\n  }\n  .col-sm-offset-7 {\n    margin-left: 58.33333333%;\n  }\n  .col-sm-offset-6 {\n    margin-left: 50%;\n  }\n  .col-sm-offset-5 {\n    margin-left: 41.66666667%;\n  }\n  .col-sm-offset-4 {\n    margin-left: 33.33333333%;\n  }\n  .col-sm-offset-3 {\n    margin-left: 25%;\n  }\n  .col-sm-offset-2 {\n    margin-left: 16.66666667%;\n  }\n  .col-sm-offset-1 {\n    margin-left: 8.33333333%;\n  }\n  .col-sm-offset-0 {\n    margin-left: 0%;\n  }\n}\n@media (min-width: 992px) {\n  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {\n    float: left;\n  }\n  .col-md-12 {\n    width: 100%;\n  }\n  .col-md-11 {\n    width: 91.66666667%;\n  }\n  .col-md-10 {\n    width: 83.33333333%;\n  }\n  .col-md-9 {\n    width: 75%;\n  }\n  .col-md-8 {\n    width: 66.66666667%;\n  }\n  .col-md-7 {\n    width: 58.33333333%;\n  }\n  .col-md-6 {\n    width: 50%;\n  }\n  .col-md-5 {\n    width: 41.66666667%;\n  }\n  .col-md-4 {\n    width: 33.33333333%;\n  }\n  .col-md-3 {\n    width: 25%;\n  }\n  .col-md-2 {\n    width: 16.66666667%;\n  }\n  .col-md-1 {\n    width: 8.33333333%;\n  }\n  .col-md-pull-12 {\n    right: 100%;\n  }\n  .col-md-pull-11 {\n    right: 91.66666667%;\n  }\n  .col-md-pull-10 {\n    right: 83.33333333%;\n  }\n  .col-md-pull-9 {\n    right: 75%;\n  }\n  .col-md-pull-8 {\n    right: 66.66666667%;\n  }\n  .col-md-pull-7 {\n    right: 58.33333333%;\n  }\n  .col-md-pull-6 {\n    right: 50%;\n  }\n  .col-md-pull-5 {\n    right: 41.66666667%;\n  }\n  .col-md-pull-4 {\n    right: 33.33333333%;\n  }\n  .col-md-pull-3 {\n    right: 25%;\n  }\n  .col-md-pull-2 {\n    right: 16.66666667%;\n  }\n  .col-md-pull-1 {\n    right: 8.33333333%;\n  }\n  .col-md-pull-0 {\n    right: auto;\n  }\n  .col-md-push-12 {\n    left: 100%;\n  }\n  .col-md-push-11 {\n    left: 91.66666667%;\n  }\n  .col-md-push-10 {\n    left: 83.33333333%;\n  }\n  .col-md-push-9 {\n    left: 75%;\n  }\n  .col-md-push-8 {\n    left: 66.66666667%;\n  }\n  .col-md-push-7 {\n    left: 58.33333333%;\n  }\n  .col-md-push-6 {\n    left: 50%;\n  }\n  .col-md-push-5 {\n    left: 41.66666667%;\n  }\n  .col-md-push-4 {\n    left: 33.33333333%;\n  }\n  .col-md-push-3 {\n    left: 25%;\n  }\n  .col-md-push-2 {\n    left: 16.66666667%;\n  }\n  .col-md-push-1 {\n    left: 8.33333333%;\n  }\n  .col-md-push-0 {\n    left: auto;\n  }\n  .col-md-offset-12 {\n    margin-left: 100%;\n  }\n  .col-md-offset-11 {\n    margin-left: 91.66666667%;\n  }\n  .col-md-offset-10 {\n    margin-left: 83.33333333%;\n  }\n  .col-md-offset-9 {\n    margin-left: 75%;\n  }\n  .col-md-offset-8 {\n    margin-left: 66.66666667%;\n  }\n  .col-md-offset-7 {\n    margin-left: 58.33333333%;\n  }\n  .col-md-offset-6 {\n    margin-left: 50%;\n  }\n  .col-md-offset-5 {\n    margin-left: 41.66666667%;\n  }\n  .col-md-offset-4 {\n    margin-left: 33.33333333%;\n  }\n  .col-md-offset-3 {\n    margin-left: 25%;\n  }\n  .col-md-offset-2 {\n    margin-left: 16.66666667%;\n  }\n  .col-md-offset-1 {\n    margin-left: 8.33333333%;\n  }\n  .col-md-offset-0 {\n    margin-left: 0%;\n  }\n}\n@media (min-width: 1200px) {\n  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {\n    float: left;\n  }\n  .col-lg-12 {\n    width: 100%;\n  }\n  .col-lg-11 {\n    width: 91.66666667%;\n  }\n  .col-lg-10 {\n    width: 83.33333333%;\n  }\n  .col-lg-9 {\n    width: 75%;\n  }\n  .col-lg-8 {\n    width: 66.66666667%;\n  }\n  .col-lg-7 {\n    width: 58.33333333%;\n  }\n  .col-lg-6 {\n    width: 50%;\n  }\n  .col-lg-5 {\n    width: 41.66666667%;\n  }\n  .col-lg-4 {\n    width: 33.33333333%;\n  }\n  .col-lg-3 {\n    width: 25%;\n  }\n  .col-lg-2 {\n    width: 16.66666667%;\n  }\n  .col-lg-1 {\n    width: 8.33333333%;\n  }\n  .col-lg-pull-12 {\n    right: 100%;\n  }\n  .col-lg-pull-11 {\n    right: 91.66666667%;\n  }\n  .col-lg-pull-10 {\n    right: 83.33333333%;\n  }\n  .col-lg-pull-9 {\n    right: 75%;\n  }\n  .col-lg-pull-8 {\n    right: 66.66666667%;\n  }\n  .col-lg-pull-7 {\n    right: 58.33333333%;\n  }\n  .col-lg-pull-6 {\n    right: 50%;\n  }\n  .col-lg-pull-5 {\n    right: 41.66666667%;\n  }\n  .col-lg-pull-4 {\n    right: 33.33333333%;\n  }\n  .col-lg-pull-3 {\n    right: 25%;\n  }\n  .col-lg-pull-2 {\n    right: 16.66666667%;\n  }\n  .col-lg-pull-1 {\n    right: 8.33333333%;\n  }\n  .col-lg-pull-0 {\n    right: auto;\n  }\n  .col-lg-push-12 {\n    left: 100%;\n  }\n  .col-lg-push-11 {\n    left: 91.66666667%;\n  }\n  .col-lg-push-10 {\n    left: 83.33333333%;\n  }\n  .col-lg-push-9 {\n    left: 75%;\n  }\n  .col-lg-push-8 {\n    left: 66.66666667%;\n  }\n  .col-lg-push-7 {\n    left: 58.33333333%;\n  }\n  .col-lg-push-6 {\n    left: 50%;\n  }\n  .col-lg-push-5 {\n    left: 41.66666667%;\n  }\n  .col-lg-push-4 {\n    left: 33.33333333%;\n  }\n  .col-lg-push-3 {\n    left: 25%;\n  }\n  .col-lg-push-2 {\n    left: 16.66666667%;\n  }\n  .col-lg-push-1 {\n    left: 8.33333333%;\n  }\n  .col-lg-push-0 {\n    left: auto;\n  }\n  .col-lg-offset-12 {\n    margin-left: 100%;\n  }\n  .col-lg-offset-11 {\n    margin-left: 91.66666667%;\n  }\n  .col-lg-offset-10 {\n    margin-left: 83.33333333%;\n  }\n  .col-lg-offset-9 {\n    margin-left: 75%;\n  }\n  .col-lg-offset-8 {\n    margin-left: 66.66666667%;\n  }\n  .col-lg-offset-7 {\n    margin-left: 58.33333333%;\n  }\n  .col-lg-offset-6 {\n    margin-left: 50%;\n  }\n  .col-lg-offset-5 {\n    margin-left: 41.66666667%;\n  }\n  .col-lg-offset-4 {\n    margin-left: 33.33333333%;\n  }\n  .col-lg-offset-3 {\n    margin-left: 25%;\n  }\n  .col-lg-offset-2 {\n    margin-left: 16.66666667%;\n  }\n  .col-lg-offset-1 {\n    margin-left: 8.33333333%;\n  }\n  .col-lg-offset-0 {\n    margin-left: 0%;\n  }\n}\ntable {\n  background-color: transparent;\n}\ncaption {\n  padding-top: 8px;\n  padding-bottom: 8px;\n  color: #777777;\n  text-align: left;\n}\nth {\n  text-align: left;\n}\n.table {\n  width: 100%;\n  max-width: 100%;\n  margin-bottom: 20px;\n}\n.table > thead > tr > th,\n.table > tbody > tr > th,\n.table > tfoot > tr > th,\n.table > thead > tr > td,\n.table > tbody > tr > td,\n.table > tfoot > tr > td {\n  padding: 8px;\n  line-height: 1.42857143;\n  vertical-align: top;\n  border-top: 1px solid #ddd;\n}\n.table > thead > tr > th {\n  vertical-align: bottom;\n  border-bottom: 2px solid #ddd;\n}\n.table > caption + thead > tr:first-child > th,\n.table > colgroup + thead > tr:first-child > th,\n.table > thead:first-child > tr:first-child > th,\n.table > caption + thead > tr:first-child > td,\n.table > colgroup + thead > tr:first-child > td,\n.table > thead:first-child > tr:first-child > td {\n  border-top: 0;\n}\n.table > tbody + tbody {\n  border-top: 2px solid #ddd;\n}\n.table .table {\n  background-color: #fff;\n}\n.table-condensed > thead > tr > th,\n.table-condensed > tbody > tr > th,\n.table-condensed > tfoot > tr > th,\n.table-condensed > thead > tr > td,\n.table-condensed > tbody > tr > td,\n.table-condensed > tfoot > tr > td {\n  padding: 5px;\n}\n.table-bordered {\n  border: 1px solid #ddd;\n}\n.table-bordered > thead > tr > th,\n.table-bordered > tbody > tr > th,\n.table-bordered > tfoot > tr > th,\n.table-bordered > thead > tr > td,\n.table-bordered > tbody > tr > td,\n.table-bordered > tfoot > tr > td {\n  border: 1px solid #ddd;\n}\n.table-bordered > thead > tr > th,\n.table-bordered > thead > tr > td {\n  border-bottom-width: 2px;\n}\n.table-striped > tbody > tr:nth-of-type(odd) {\n  background-color: #f9f9f9;\n}\n.table-hover > tbody > tr:hover {\n  background-color: #f5f5f5;\n}\ntable col[class*=\"col-\"] {\n  position: static;\n  float: none;\n  display: table-column;\n}\ntable td[class*=\"col-\"],\ntable th[class*=\"col-\"] {\n  position: static;\n  float: none;\n  display: table-cell;\n}\n.table > thead > tr > td.active,\n.table > tbody > tr > td.active,\n.table > tfoot > tr > td.active,\n.table > thead > tr > th.active,\n.table > tbody > tr > th.active,\n.table > tfoot > tr > th.active,\n.table > thead > tr.active > td,\n.table > tbody > tr.active > td,\n.table > tfoot > tr.active > td,\n.table > thead > tr.active > th,\n.table > tbody > tr.active > th,\n.table > tfoot > tr.active > th {\n  background-color: #f5f5f5;\n}\n.table-hover > tbody > tr > td.active:hover,\n.table-hover > tbody > tr > th.active:hover,\n.table-hover > tbody > tr.active:hover > td,\n.table-hover > tbody > tr:hover > .active,\n.table-hover > tbody > tr.active:hover > th {\n  background-color: #e8e8e8;\n}\n.table > thead > tr > td.success,\n.table > tbody > tr > td.success,\n.table > tfoot > tr > td.success,\n.table > thead > tr > th.success,\n.table > tbody > tr > th.success,\n.table > tfoot > tr > th.success,\n.table > thead > tr.success > td,\n.table > tbody > tr.success > td,\n.table > tfoot > tr.success > td,\n.table > thead > tr.success > th,\n.table > tbody > tr.success > th,\n.table > tfoot > tr.success > th {\n  background-color: #dff0d8;\n}\n.table-hover > tbody > tr > td.success:hover,\n.table-hover > tbody > tr > th.success:hover,\n.table-hover > tbody > tr.success:hover > td,\n.table-hover > tbody > tr:hover > .success,\n.table-hover > tbody > tr.success:hover > th {\n  background-color: #d0e9c6;\n}\n.table > thead > tr > td.info,\n.table > tbody > tr > td.info,\n.table > tfoot > tr > td.info,\n.table > thead > tr > th.info,\n.table > tbody > tr > th.info,\n.table > tfoot > tr > th.info,\n.table > thead > tr.info > td,\n.table > tbody > tr.info > td,\n.table > tfoot > tr.info > td,\n.table > thead > tr.info > th,\n.table > tbody > tr.info > th,\n.table > tfoot > tr.info > th {\n  background-color: #d9edf7;\n}\n.table-hover > tbody > tr > td.info:hover,\n.table-hover > tbody > tr > th.info:hover,\n.table-hover > tbody > tr.info:hover > td,\n.table-hover > tbody > tr:hover > .info,\n.table-hover > tbody > tr.info:hover > th {\n  background-color: #c4e3f3;\n}\n.table > thead > tr > td.warning,\n.table > tbody > tr > td.warning,\n.table > tfoot > tr > td.warning,\n.table > thead > tr > th.warning,\n.table > tbody > tr > th.warning,\n.table > tfoot > tr > th.warning,\n.table > thead > tr.warning > td,\n.table > tbody > tr.warning > td,\n.table > tfoot > tr.warning > td,\n.table > thead > tr.warning > th,\n.table > tbody > tr.warning > th,\n.table > tfoot > tr.warning > th {\n  background-color: #fcf8e3;\n}\n.table-hover > tbody > tr > td.warning:hover,\n.table-hover > tbody > tr > th.warning:hover,\n.table-hover > tbody > tr.warning:hover > td,\n.table-hover > tbody > tr:hover > .warning,\n.table-hover > tbody > tr.warning:hover > th {\n  background-color: #faf2cc;\n}\n.table > thead > tr > td.danger,\n.table > tbody > tr > td.danger,\n.table > tfoot > tr > td.danger,\n.table > thead > tr > th.danger,\n.table > tbody > tr > th.danger,\n.table > tfoot > tr > th.danger,\n.table > thead > tr.danger > td,\n.table > tbody > tr.danger > td,\n.table > tfoot > tr.danger > td,\n.table > thead > tr.danger > th,\n.table > tbody > tr.danger > th,\n.table > tfoot > tr.danger > th {\n  background-color: #f2dede;\n}\n.table-hover > tbody > tr > td.danger:hover,\n.table-hover > tbody > tr > th.danger:hover,\n.table-hover > tbody > tr.danger:hover > td,\n.table-hover > tbody > tr:hover > .danger,\n.table-hover > tbody > tr.danger:hover > th {\n  background-color: #ebcccc;\n}\n.table-responsive {\n  overflow-x: auto;\n  min-height: 0.01%;\n}\n@media screen and (max-width: 767px) {\n  .table-responsive {\n    width: 100%;\n    margin-bottom: 15px;\n    overflow-y: hidden;\n    -ms-overflow-style: -ms-autohiding-scrollbar;\n    border: 1px solid #ddd;\n  }\n  .table-responsive > .table {\n    margin-bottom: 0;\n  }\n  .table-responsive > .table > thead > tr > th,\n  .table-responsive > .table > tbody > tr > th,\n  .table-responsive > .table > tfoot > tr > th,\n  .table-responsive > .table > thead > tr > td,\n  .table-responsive > .table > tbody > tr > td,\n  .table-responsive > .table > tfoot > tr > td {\n    white-space: nowrap;\n  }\n  .table-responsive > .table-bordered {\n    border: 0;\n  }\n  .table-responsive > .table-bordered > thead > tr > th:first-child,\n  .table-responsive > .table-bordered > tbody > tr > th:first-child,\n  .table-responsive > .table-bordered > tfoot > tr > th:first-child,\n  .table-responsive > .table-bordered > thead > tr > td:first-child,\n  .table-responsive > .table-bordered > tbody > tr > td:first-child,\n  .table-responsive > .table-bordered > tfoot > tr > td:first-child {\n    border-left: 0;\n  }\n  .table-responsive > .table-bordered > thead > tr > th:last-child,\n  .table-responsive > .table-bordered > tbody > tr > th:last-child,\n  .table-responsive > .table-bordered > tfoot > tr > th:last-child,\n  .table-responsive > .table-bordered > thead > tr > td:last-child,\n  .table-responsive > .table-bordered > tbody > tr > td:last-child,\n  .table-responsive > .table-bordered > tfoot > tr > td:last-child {\n    border-right: 0;\n  }\n  .table-responsive > .table-bordered > tbody > tr:last-child > th,\n  .table-responsive > .table-bordered > tfoot > tr:last-child > th,\n  .table-responsive > .table-bordered > tbody > tr:last-child > td,\n  .table-responsive > .table-bordered > tfoot > tr:last-child > td {\n    border-bottom: 0;\n  }\n}\nfieldset {\n  padding: 0;\n  margin: 0;\n  border: 0;\n  min-width: 0;\n}\nlegend {\n  display: block;\n  width: 100%;\n  padding: 0;\n  margin-bottom: 20px;\n  font-size: 21px;\n  line-height: inherit;\n  color: #333333;\n  border: 0;\n  border-bottom: 1px solid #e5e5e5;\n}\nlabel {\n  display: inline-block;\n  max-width: 100%;\n  margin-bottom: 5px;\n  font-weight: bold;\n}\ninput[type=\"search\"] {\n  -webkit-box-sizing: border-box;\n  -moz-box-sizing: border-box;\n  box-sizing: border-box;\n}\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n  margin: 4px 0 0;\n  margin-top: 1px \\9;\n  line-height: normal;\n}\ninput[type=\"file\"] {\n  display: block;\n}\ninput[type=\"range\"] {\n  display: block;\n  width: 100%;\n}\nselect[multiple],\nselect[size] {\n  height: auto;\n}\ninput[type=\"file\"]:focus,\ninput[type=\"radio\"]:focus,\ninput[type=\"checkbox\"]:focus {\n  outline: thin dotted;\n  outline: 5px auto -webkit-focus-ring-color;\n  outline-offset: -2px;\n}\noutput {\n  display: block;\n  padding-top: 7px;\n  font-size: 14px;\n  line-height: 1.42857143;\n  color: #555555;\n}\n.form-control {\n  display: block;\n  width: 100%;\n  height: 34px;\n  padding: 6px 12px;\n  font-size: 14px;\n  line-height: 1.42857143;\n  color: #555555;\n  background-color: #fff;\n  background-image: none;\n  border: 1px solid #ccc;\n  border-radius: 4px;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n}\n.form-control:focus {\n  border-color: #66afe9;\n  outline: 0;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);\n  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);\n}\n.form-control::-moz-placeholder {\n  color: #999;\n  opacity: 1;\n}\n.form-control:-ms-input-placeholder {\n  color: #999;\n}\n.form-control::-webkit-input-placeholder {\n  color: #999;\n}\n.form-control::-ms-expand {\n  border: 0;\n  background-color: transparent;\n}\n.form-control[disabled],\n.form-control[readonly],\nfieldset[disabled] .form-control {\n  background-color: #eeeeee;\n  opacity: 1;\n}\n.form-control[disabled],\nfieldset[disabled] .form-control {\n  cursor: not-allowed;\n}\ntextarea.form-control {\n  height: auto;\n}\ninput[type=\"search\"] {\n  -webkit-appearance: none;\n}\n@media screen and (-webkit-min-device-pixel-ratio: 0) {\n  input[type=\"date\"].form-control,\n  input[type=\"time\"].form-control,\n  input[type=\"datetime-local\"].form-control,\n  input[type=\"month\"].form-control {\n    line-height: 34px;\n  }\n  input[type=\"date\"].input-sm,\n  input[type=\"time\"].input-sm,\n  input[type=\"datetime-local\"].input-sm,\n  input[type=\"month\"].input-sm,\n  .input-group-sm input[type=\"date\"],\n  .input-group-sm input[type=\"time\"],\n  .input-group-sm input[type=\"datetime-local\"],\n  .input-group-sm input[type=\"month\"] {\n    line-height: 30px;\n  }\n  input[type=\"date\"].input-lg,\n  input[type=\"time\"].input-lg,\n  input[type=\"datetime-local\"].input-lg,\n  input[type=\"month\"].input-lg,\n  .input-group-lg input[type=\"date\"],\n  .input-group-lg input[type=\"time\"],\n  .input-group-lg input[type=\"datetime-local\"],\n  .input-group-lg input[type=\"month\"] {\n    line-height: 46px;\n  }\n}\n.form-group {\n  margin-bottom: 15px;\n}\n.radio,\n.checkbox {\n  position: relative;\n  display: block;\n  margin-top: 10px;\n  margin-bottom: 10px;\n}\n.radio label,\n.checkbox label {\n  min-height: 20px;\n  padding-left: 20px;\n  margin-bottom: 0;\n  font-weight: normal;\n  cursor: pointer;\n}\n.radio input[type=\"radio\"],\n.radio-inline input[type=\"radio\"],\n.checkbox input[type=\"checkbox\"],\n.checkbox-inline input[type=\"checkbox\"] {\n  position: absolute;\n  margin-left: -20px;\n  margin-top: 4px \\9;\n}\n.radio + .radio,\n.checkbox + .checkbox {\n  margin-top: -5px;\n}\n.radio-inline,\n.checkbox-inline {\n  position: relative;\n  display: inline-block;\n  padding-left: 20px;\n  margin-bottom: 0;\n  vertical-align: middle;\n  font-weight: normal;\n  cursor: pointer;\n}\n.radio-inline + .radio-inline,\n.checkbox-inline + .checkbox-inline {\n  margin-top: 0;\n  margin-left: 10px;\n}\ninput[type=\"radio\"][disabled],\ninput[type=\"checkbox\"][disabled],\ninput[type=\"radio\"].disabled,\ninput[type=\"checkbox\"].disabled,\nfieldset[disabled] input[type=\"radio\"],\nfieldset[disabled] input[type=\"checkbox\"] {\n  cursor: not-allowed;\n}\n.radio-inline.disabled,\n.checkbox-inline.disabled,\nfieldset[disabled] .radio-inline,\nfieldset[disabled] .checkbox-inline {\n  cursor: not-allowed;\n}\n.radio.disabled label,\n.checkbox.disabled label,\nfieldset[disabled] .radio label,\nfieldset[disabled] .checkbox label {\n  cursor: not-allowed;\n}\n.form-control-static {\n  padding-top: 7px;\n  padding-bottom: 7px;\n  margin-bottom: 0;\n  min-height: 34px;\n}\n.form-control-static.input-lg,\n.form-control-static.input-sm {\n  padding-left: 0;\n  padding-right: 0;\n}\n.input-sm {\n  height: 30px;\n  padding: 5px 10px;\n  font-size: 12px;\n  line-height: 1.5;\n  border-radius: 3px;\n}\nselect.input-sm {\n  height: 30px;\n  line-height: 30px;\n}\ntextarea.input-sm,\nselect[multiple].input-sm {\n  height: auto;\n}\n.form-group-sm .form-control {\n  height: 30px;\n  padding: 5px 10px;\n  font-size: 12px;\n  line-height: 1.5;\n  border-radius: 3px;\n}\n.form-group-sm select.form-control {\n  height: 30px;\n  line-height: 30px;\n}\n.form-group-sm textarea.form-control,\n.form-group-sm select[multiple].form-control {\n  height: auto;\n}\n.form-group-sm .form-control-static {\n  height: 30px;\n  min-height: 32px;\n  padding: 6px 10px;\n  font-size: 12px;\n  line-height: 1.5;\n}\n.input-lg {\n  height: 46px;\n  padding: 10px 16px;\n  font-size: 18px;\n  line-height: 1.3333333;\n  border-radius: 6px;\n}\nselect.input-lg {\n  height: 46px;\n  line-height: 46px;\n}\ntextarea.input-lg,\nselect[multiple].input-lg {\n  height: auto;\n}\n.form-group-lg .form-control {\n  height: 46px;\n  padding: 10px 16px;\n  font-size: 18px;\n  line-height: 1.3333333;\n  border-radius: 6px;\n}\n.form-group-lg select.form-control {\n  height: 46px;\n  line-height: 46px;\n}\n.form-group-lg textarea.form-control,\n.form-group-lg select[multiple].form-control {\n  height: auto;\n}\n.form-group-lg .form-control-static {\n  height: 46px;\n  min-height: 38px;\n  padding: 11px 16px;\n  font-size: 18px;\n  line-height: 1.3333333;\n}\n.has-feedback {\n  position: relative;\n}\n.has-feedback .form-control {\n  padding-right: 42.5px;\n}\n.form-control-feedback {\n  position: absolute;\n  top: 0;\n  right: 0;\n  z-index: 2;\n  display: block;\n  width: 34px;\n  height: 34px;\n  line-height: 34px;\n  text-align: center;\n  pointer-events: none;\n}\n.input-lg + .form-control-feedback,\n.input-group-lg + .form-control-feedback,\n.form-group-lg .form-control + .form-control-feedback {\n  width: 46px;\n  height: 46px;\n  line-height: 46px;\n}\n.input-sm + .form-control-feedback,\n.input-group-sm + .form-control-feedback,\n.form-group-sm .form-control + .form-control-feedback {\n  width: 30px;\n  height: 30px;\n  line-height: 30px;\n}\n.has-success .help-block,\n.has-success .control-label,\n.has-success .radio,\n.has-success .checkbox,\n.has-success .radio-inline,\n.has-success .checkbox-inline,\n.has-success.radio label,\n.has-success.checkbox label,\n.has-success.radio-inline label,\n.has-success.checkbox-inline label {\n  color: #3c763d;\n}\n.has-success .form-control {\n  border-color: #3c763d;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.has-success .form-control:focus {\n  border-color: #2b542c;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;\n  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;\n}\n.has-success .input-group-addon {\n  color: #3c763d;\n  border-color: #3c763d;\n  background-color: #dff0d8;\n}\n.has-success .form-control-feedback {\n  color: #3c763d;\n}\n.has-warning .help-block,\n.has-warning .control-label,\n.has-warning .radio,\n.has-warning .checkbox,\n.has-warning .radio-inline,\n.has-warning .checkbox-inline,\n.has-warning.radio label,\n.has-warning.checkbox label,\n.has-warning.radio-inline label,\n.has-warning.checkbox-inline label {\n  color: #8a6d3b;\n}\n.has-warning .form-control {\n  border-color: #8a6d3b;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.has-warning .form-control:focus {\n  border-color: #66512c;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;\n  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;\n}\n.has-warning .input-group-addon {\n  color: #8a6d3b;\n  border-color: #8a6d3b;\n  background-color: #fcf8e3;\n}\n.has-warning .form-control-feedback {\n  color: #8a6d3b;\n}\n.has-error .help-block,\n.has-error .control-label,\n.has-error .radio,\n.has-error .checkbox,\n.has-error .radio-inline,\n.has-error .checkbox-inline,\n.has-error.radio label,\n.has-error.checkbox label,\n.has-error.radio-inline label,\n.has-error.checkbox-inline label {\n  color: #a94442;\n}\n.has-error .form-control {\n  border-color: #a94442;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.has-error .form-control:focus {\n  border-color: #843534;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;\n  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;\n}\n.has-error .input-group-addon {\n  color: #a94442;\n  border-color: #a94442;\n  background-color: #f2dede;\n}\n.has-error .form-control-feedback {\n  color: #a94442;\n}\n.has-feedback label ~ .form-control-feedback {\n  top: 25px;\n}\n.has-feedback label.sr-only ~ .form-control-feedback {\n  top: 0;\n}\n.help-block {\n  display: block;\n  margin-top: 5px;\n  margin-bottom: 10px;\n  color: #737373;\n}\n@media (min-width: 768px) {\n  .form-inline .form-group {\n    display: inline-block;\n    margin-bottom: 0;\n    vertical-align: middle;\n  }\n  .form-inline .form-control {\n    display: inline-block;\n    width: auto;\n    vertical-align: middle;\n  }\n  .form-inline .form-control-static {\n    display: inline-block;\n  }\n  .form-inline .input-group {\n    display: inline-table;\n    vertical-align: middle;\n  }\n  .form-inline .input-group .input-group-addon,\n  .form-inline .input-group .input-group-btn,\n  .form-inline .input-group .form-control {\n    width: auto;\n  }\n  .form-inline .input-group > .form-control {\n    width: 100%;\n  }\n  .form-inline .control-label {\n    margin-bottom: 0;\n    vertical-align: middle;\n  }\n  .form-inline .radio,\n  .form-inline .checkbox {\n    display: inline-block;\n    margin-top: 0;\n    margin-bottom: 0;\n    vertical-align: middle;\n  }\n  .form-inline .radio label,\n  .form-inline .checkbox label {\n    padding-left: 0;\n  }\n  .form-inline .radio input[type=\"radio\"],\n  .form-inline .checkbox input[type=\"checkbox\"] {\n    position: relative;\n    margin-left: 0;\n  }\n  .form-inline .has-feedback .form-control-feedback {\n    top: 0;\n  }\n}\n.form-horizontal .radio,\n.form-horizontal .checkbox,\n.form-horizontal .radio-inline,\n.form-horizontal .checkbox-inline {\n  margin-top: 0;\n  margin-bottom: 0;\n  padding-top: 7px;\n}\n.form-horizontal .radio,\n.form-horizontal .checkbox {\n  min-height: 27px;\n}\n.form-horizontal .form-group {\n  margin-left: -15px;\n  margin-right: -15px;\n}\n@media (min-width: 768px) {\n  .form-horizontal .control-label {\n    text-align: right;\n    margin-bottom: 0;\n    padding-top: 7px;\n  }\n}\n.form-horizontal .has-feedback .form-control-feedback {\n  right: 15px;\n}\n@media (min-width: 768px) {\n  .form-horizontal .form-group-lg .control-label {\n    padding-top: 11px;\n    font-size: 18px;\n  }\n}\n@media (min-width: 768px) {\n  .form-horizontal .form-group-sm .control-label {\n    padding-top: 6px;\n    font-size: 12px;\n  }\n}\n.btn {\n  display: inline-block;\n  margin-bottom: 0;\n  font-weight: normal;\n  text-align: center;\n  vertical-align: middle;\n  touch-action: manipulation;\n  cursor: pointer;\n  background-image: none;\n  border: 1px solid transparent;\n  white-space: nowrap;\n  padding: 6px 12px;\n  font-size: 14px;\n  line-height: 1.42857143;\n  border-radius: 4px;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n.btn:focus,\n.btn:active:focus,\n.btn.active:focus,\n.btn.focus,\n.btn:active.focus,\n.btn.active.focus {\n  outline: thin dotted;\n  outline: 5px auto -webkit-focus-ring-color;\n  outline-offset: -2px;\n}\n.btn:hover,\n.btn:focus,\n.btn.focus {\n  color: #333;\n  text-decoration: none;\n}\n.btn:active,\n.btn.active {\n  outline: 0;\n  background-image: none;\n  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.btn.disabled,\n.btn[disabled],\nfieldset[disabled] .btn {\n  cursor: not-allowed;\n  opacity: 0.65;\n  filter: alpha(opacity=65);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\na.btn.disabled,\nfieldset[disabled] a.btn {\n  pointer-events: none;\n}\n.btn-default {\n  color: #333;\n  background-color: #fff;\n  border-color: #ccc;\n}\n.btn-default:focus,\n.btn-default.focus {\n  color: #333;\n  background-color: #e6e6e6;\n  border-color: #8c8c8c;\n}\n.btn-default:hover {\n  color: #333;\n  background-color: #e6e6e6;\n  border-color: #adadad;\n}\n.btn-default:active,\n.btn-default.active,\n.open > .dropdown-toggle.btn-default {\n  color: #333;\n  background-color: #e6e6e6;\n  border-color: #adadad;\n}\n.btn-default:active:hover,\n.btn-default.active:hover,\n.open > .dropdown-toggle.btn-default:hover,\n.btn-default:active:focus,\n.btn-default.active:focus,\n.open > .dropdown-toggle.btn-default:focus,\n.btn-default:active.focus,\n.btn-default.active.focus,\n.open > .dropdown-toggle.btn-default.focus {\n  color: #333;\n  background-color: #d4d4d4;\n  border-color: #8c8c8c;\n}\n.btn-default:active,\n.btn-default.active,\n.open > .dropdown-toggle.btn-default {\n  background-image: none;\n}\n.btn-default.disabled:hover,\n.btn-default[disabled]:hover,\nfieldset[disabled] .btn-default:hover,\n.btn-default.disabled:focus,\n.btn-default[disabled]:focus,\nfieldset[disabled] .btn-default:focus,\n.btn-default.disabled.focus,\n.btn-default[disabled].focus,\nfieldset[disabled] .btn-default.focus {\n  background-color: #fff;\n  border-color: #ccc;\n}\n.btn-default .badge {\n  color: #fff;\n  background-color: #333;\n}\n.btn-primary {\n  color: #fff;\n  background-color: #337ab7;\n  border-color: #2e6da4;\n}\n.btn-primary:focus,\n.btn-primary.focus {\n  color: #fff;\n  background-color: #286090;\n  border-color: #122b40;\n}\n.btn-primary:hover {\n  color: #fff;\n  background-color: #286090;\n  border-color: #204d74;\n}\n.btn-primary:active,\n.btn-primary.active,\n.open > .dropdown-toggle.btn-primary {\n  color: #fff;\n  background-color: #286090;\n  border-color: #204d74;\n}\n.btn-primary:active:hover,\n.btn-primary.active:hover,\n.open > .dropdown-toggle.btn-primary:hover,\n.btn-primary:active:focus,\n.btn-primary.active:focus,\n.open > .dropdown-toggle.btn-primary:focus,\n.btn-primary:active.focus,\n.btn-primary.active.focus,\n.open > .dropdown-toggle.btn-primary.focus {\n  color: #fff;\n  background-color: #204d74;\n  border-color: #122b40;\n}\n.btn-primary:active,\n.btn-primary.active,\n.open > .dropdown-toggle.btn-primary {\n  background-image: none;\n}\n.btn-primary.disabled:hover,\n.btn-primary[disabled]:hover,\nfieldset[disabled] .btn-primary:hover,\n.btn-primary.disabled:focus,\n.btn-primary[disabled]:focus,\nfieldset[disabled] .btn-primary:focus,\n.btn-primary.disabled.focus,\n.btn-primary[disabled].focus,\nfieldset[disabled] .btn-primary.focus {\n  background-color: #337ab7;\n  border-color: #2e6da4;\n}\n.btn-primary .badge {\n  color: #337ab7;\n  background-color: #fff;\n}\n.btn-success {\n  color: #fff;\n  background-color: #5cb85c;\n  border-color: #4cae4c;\n}\n.btn-success:focus,\n.btn-success.focus {\n  color: #fff;\n  background-color: #449d44;\n  border-color: #255625;\n}\n.btn-success:hover {\n  color: #fff;\n  background-color: #449d44;\n  border-color: #398439;\n}\n.btn-success:active,\n.btn-success.active,\n.open > .dropdown-toggle.btn-success {\n  color: #fff;\n  background-color: #449d44;\n  border-color: #398439;\n}\n.btn-success:active:hover,\n.btn-success.active:hover,\n.open > .dropdown-toggle.btn-success:hover,\n.btn-success:active:focus,\n.btn-success.active:focus,\n.open > .dropdown-toggle.btn-success:focus,\n.btn-success:active.focus,\n.btn-success.active.focus,\n.open > .dropdown-toggle.btn-success.focus {\n  color: #fff;\n  background-color: #398439;\n  border-color: #255625;\n}\n.btn-success:active,\n.btn-success.active,\n.open > .dropdown-toggle.btn-success {\n  background-image: none;\n}\n.btn-success.disabled:hover,\n.btn-success[disabled]:hover,\nfieldset[disabled] .btn-success:hover,\n.btn-success.disabled:focus,\n.btn-success[disabled]:focus,\nfieldset[disabled] .btn-success:focus,\n.btn-success.disabled.focus,\n.btn-success[disabled].focus,\nfieldset[disabled] .btn-success.focus {\n  background-color: #5cb85c;\n  border-color: #4cae4c;\n}\n.btn-success .badge {\n  color: #5cb85c;\n  background-color: #fff;\n}\n.btn-info {\n  color: #fff;\n  background-color: #5bc0de;\n  border-color: #46b8da;\n}\n.btn-info:focus,\n.btn-info.focus {\n  color: #fff;\n  background-color: #31b0d5;\n  border-color: #1b6d85;\n}\n.btn-info:hover {\n  color: #fff;\n  background-color: #31b0d5;\n  border-color: #269abc;\n}\n.btn-info:active,\n.btn-info.active,\n.open > .dropdown-toggle.btn-info {\n  color: #fff;\n  background-color: #31b0d5;\n  border-color: #269abc;\n}\n.btn-info:active:hover,\n.btn-info.active:hover,\n.open > .dropdown-toggle.btn-info:hover,\n.btn-info:active:focus,\n.btn-info.active:focus,\n.open > .dropdown-toggle.btn-info:focus,\n.btn-info:active.focus,\n.btn-info.active.focus,\n.open > .dropdown-toggle.btn-info.focus {\n  color: #fff;\n  background-color: #269abc;\n  border-color: #1b6d85;\n}\n.btn-info:active,\n.btn-info.active,\n.open > .dropdown-toggle.btn-info {\n  background-image: none;\n}\n.btn-info.disabled:hover,\n.btn-info[disabled]:hover,\nfieldset[disabled] .btn-info:hover,\n.btn-info.disabled:focus,\n.btn-info[disabled]:focus,\nfieldset[disabled] .btn-info:focus,\n.btn-info.disabled.focus,\n.btn-info[disabled].focus,\nfieldset[disabled] .btn-info.focus {\n  background-color: #5bc0de;\n  border-color: #46b8da;\n}\n.btn-info .badge {\n  color: #5bc0de;\n  background-color: #fff;\n}\n.btn-warning {\n  color: #fff;\n  background-color: #f0ad4e;\n  border-color: #eea236;\n}\n.btn-warning:focus,\n.btn-warning.focus {\n  color: #fff;\n  background-color: #ec971f;\n  border-color: #985f0d;\n}\n.btn-warning:hover {\n  color: #fff;\n  background-color: #ec971f;\n  border-color: #d58512;\n}\n.btn-warning:active,\n.btn-warning.active,\n.open > .dropdown-toggle.btn-warning {\n  color: #fff;\n  background-color: #ec971f;\n  border-color: #d58512;\n}\n.btn-warning:active:hover,\n.btn-warning.active:hover,\n.open > .dropdown-toggle.btn-warning:hover,\n.btn-warning:active:focus,\n.btn-warning.active:focus,\n.open > .dropdown-toggle.btn-warning:focus,\n.btn-warning:active.focus,\n.btn-warning.active.focus,\n.open > .dropdown-toggle.btn-warning.focus {\n  color: #fff;\n  background-color: #d58512;\n  border-color: #985f0d;\n}\n.btn-warning:active,\n.btn-warning.active,\n.open > .dropdown-toggle.btn-warning {\n  background-image: none;\n}\n.btn-warning.disabled:hover,\n.btn-warning[disabled]:hover,\nfieldset[disabled] .btn-warning:hover,\n.btn-warning.disabled:focus,\n.btn-warning[disabled]:focus,\nfieldset[disabled] .btn-warning:focus,\n.btn-warning.disabled.focus,\n.btn-warning[disabled].focus,\nfieldset[disabled] .btn-warning.focus {\n  background-color: #f0ad4e;\n  border-color: #eea236;\n}\n.btn-warning .badge {\n  color: #f0ad4e;\n  background-color: #fff;\n}\n.btn-danger {\n  color: #fff;\n  background-color: #d9534f;\n  border-color: #d43f3a;\n}\n.btn-danger:focus,\n.btn-danger.focus {\n  color: #fff;\n  background-color: #c9302c;\n  border-color: #761c19;\n}\n.btn-danger:hover {\n  color: #fff;\n  background-color: #c9302c;\n  border-color: #ac2925;\n}\n.btn-danger:active,\n.btn-danger.active,\n.open > .dropdown-toggle.btn-danger {\n  color: #fff;\n  background-color: #c9302c;\n  border-color: #ac2925;\n}\n.btn-danger:active:hover,\n.btn-danger.active:hover,\n.open > .dropdown-toggle.btn-danger:hover,\n.btn-danger:active:focus,\n.btn-danger.active:focus,\n.open > .dropdown-toggle.btn-danger:focus,\n.btn-danger:active.focus,\n.btn-danger.active.focus,\n.open > .dropdown-toggle.btn-danger.focus {\n  color: #fff;\n  background-color: #ac2925;\n  border-color: #761c19;\n}\n.btn-danger:active,\n.btn-danger.active,\n.open > .dropdown-toggle.btn-danger {\n  background-image: none;\n}\n.btn-danger.disabled:hover,\n.btn-danger[disabled]:hover,\nfieldset[disabled] .btn-danger:hover,\n.btn-danger.disabled:focus,\n.btn-danger[disabled]:focus,\nfieldset[disabled] .btn-danger:focus,\n.btn-danger.disabled.focus,\n.btn-danger[disabled].focus,\nfieldset[disabled] .btn-danger.focus {\n  background-color: #d9534f;\n  border-color: #d43f3a;\n}\n.btn-danger .badge {\n  color: #d9534f;\n  background-color: #fff;\n}\n.btn-link {\n  color: #337ab7;\n  font-weight: normal;\n  border-radius: 0;\n}\n.btn-link,\n.btn-link:active,\n.btn-link.active,\n.btn-link[disabled],\nfieldset[disabled] .btn-link {\n  background-color: transparent;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.btn-link,\n.btn-link:hover,\n.btn-link:focus,\n.btn-link:active {\n  border-color: transparent;\n}\n.btn-link:hover,\n.btn-link:focus {\n  color: #23527c;\n  text-decoration: underline;\n  background-color: transparent;\n}\n.btn-link[disabled]:hover,\nfieldset[disabled] .btn-link:hover,\n.btn-link[disabled]:focus,\nfieldset[disabled] .btn-link:focus {\n  color: #777777;\n  text-decoration: none;\n}\n.btn-lg,\n.btn-group-lg > .btn {\n  padding: 10px 16px;\n  font-size: 18px;\n  line-height: 1.3333333;\n  border-radius: 6px;\n}\n.btn-sm,\n.btn-group-sm > .btn {\n  padding: 5px 10px;\n  font-size: 12px;\n  line-height: 1.5;\n  border-radius: 3px;\n}\n.btn-xs,\n.btn-group-xs > .btn {\n  padding: 1px 5px;\n  font-size: 12px;\n  line-height: 1.5;\n  border-radius: 3px;\n}\n.btn-block {\n  display: block;\n  width: 100%;\n}\n.btn-block + .btn-block {\n  margin-top: 5px;\n}\ninput[type=\"submit\"].btn-block,\ninput[type=\"reset\"].btn-block,\ninput[type=\"button\"].btn-block {\n  width: 100%;\n}\n.fade {\n  opacity: 0;\n  -webkit-transition: opacity 0.15s linear;\n  -o-transition: opacity 0.15s linear;\n  transition: opacity 0.15s linear;\n}\n.fade.in {\n  opacity: 1;\n}\n.collapse {\n  display: none;\n}\n.collapse.in {\n  display: block;\n}\ntr.collapse.in {\n  display: table-row;\n}\ntbody.collapse.in {\n  display: table-row-group;\n}\n.collapsing {\n  position: relative;\n  height: 0;\n  overflow: hidden;\n  -webkit-transition-property: height, visibility;\n  transition-property: height, visibility;\n  -webkit-transition-duration: 0.35s;\n  transition-duration: 0.35s;\n  -webkit-transition-timing-function: ease;\n  transition-timing-function: ease;\n}\n.caret {\n  display: inline-block;\n  width: 0;\n  height: 0;\n  margin-left: 2px;\n  vertical-align: middle;\n  border-top: 4px dashed;\n  border-top: 4px solid \\9;\n  border-right: 4px solid transparent;\n  border-left: 4px solid transparent;\n}\n.dropup,\n.dropdown {\n  position: relative;\n}\n.dropdown-toggle:focus {\n  outline: 0;\n}\n.dropdown-menu {\n  position: absolute;\n  top: 100%;\n  left: 0;\n  z-index: 1000;\n  display: none;\n  float: left;\n  min-width: 160px;\n  padding: 5px 0;\n  margin: 2px 0 0;\n  list-style: none;\n  font-size: 14px;\n  text-align: left;\n  background-color: #fff;\n  border: 1px solid #ccc;\n  border: 1px solid rgba(0, 0, 0, 0.15);\n  border-radius: 4px;\n  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\n  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\n  background-clip: padding-box;\n}\n.dropdown-menu.pull-right {\n  right: 0;\n  left: auto;\n}\n.dropdown-menu .divider {\n  height: 1px;\n  margin: 9px 0;\n  overflow: hidden;\n  background-color: #e5e5e5;\n}\n.dropdown-menu > li > a {\n  display: block;\n  padding: 3px 20px;\n  clear: both;\n  font-weight: normal;\n  line-height: 1.42857143;\n  color: #333333;\n  white-space: nowrap;\n}\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n  text-decoration: none;\n  color: #262626;\n  background-color: #f5f5f5;\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n  color: #fff;\n  text-decoration: none;\n  outline: 0;\n  background-color: #337ab7;\n}\n.dropdown-menu > .disabled > a,\n.dropdown-menu > .disabled > a:hover,\n.dropdown-menu > .disabled > a:focus {\n  color: #777777;\n}\n.dropdown-menu > .disabled > a:hover,\n.dropdown-menu > .disabled > a:focus {\n  text-decoration: none;\n  background-color: transparent;\n  background-image: none;\n  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n  cursor: not-allowed;\n}\n.open > .dropdown-menu {\n  display: block;\n}\n.open > a {\n  outline: 0;\n}\n.dropdown-menu-right {\n  left: auto;\n  right: 0;\n}\n.dropdown-menu-left {\n  left: 0;\n  right: auto;\n}\n.dropdown-header {\n  display: block;\n  padding: 3px 20px;\n  font-size: 12px;\n  line-height: 1.42857143;\n  color: #777777;\n  white-space: nowrap;\n}\n.dropdown-backdrop {\n  position: fixed;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  top: 0;\n  z-index: 990;\n}\n.pull-right > .dropdown-menu {\n  right: 0;\n  left: auto;\n}\n.dropup .caret,\n.navbar-fixed-bottom .dropdown .caret {\n  border-top: 0;\n  border-bottom: 4px dashed;\n  border-bottom: 4px solid \\9;\n  content: \"\";\n}\n.dropup .dropdown-menu,\n.navbar-fixed-bottom .dropdown .dropdown-menu {\n  top: auto;\n  bottom: 100%;\n  margin-bottom: 2px;\n}\n@media (min-width: 768px) {\n  .navbar-right .dropdown-menu {\n    left: auto;\n    right: 0;\n  }\n  .navbar-right .dropdown-menu-left {\n    left: 0;\n    right: auto;\n  }\n}\n.btn-group,\n.btn-group-vertical {\n  position: relative;\n  display: inline-block;\n  vertical-align: middle;\n}\n.btn-group > .btn,\n.btn-group-vertical > .btn {\n  position: relative;\n  float: left;\n}\n.btn-group > .btn:hover,\n.btn-group-vertical > .btn:hover,\n.btn-group > .btn:focus,\n.btn-group-vertical > .btn:focus,\n.btn-group > .btn:active,\n.btn-group-vertical > .btn:active,\n.btn-group > .btn.active,\n.btn-group-vertical > .btn.active {\n  z-index: 2;\n}\n.btn-group .btn + .btn,\n.btn-group .btn + .btn-group,\n.btn-group .btn-group + .btn,\n.btn-group .btn-group + .btn-group {\n  margin-left: -1px;\n}\n.btn-toolbar {\n  margin-left: -5px;\n}\n.btn-toolbar .btn,\n.btn-toolbar .btn-group,\n.btn-toolbar .input-group {\n  float: left;\n}\n.btn-toolbar > .btn,\n.btn-toolbar > .btn-group,\n.btn-toolbar > .input-group {\n  margin-left: 5px;\n}\n.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {\n  border-radius: 0;\n}\n.btn-group > .btn:first-child {\n  margin-left: 0;\n}\n.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {\n  border-bottom-right-radius: 0;\n  border-top-right-radius: 0;\n}\n.btn-group > .btn:last-child:not(:first-child),\n.btn-group > .dropdown-toggle:not(:first-child) {\n  border-bottom-left-radius: 0;\n  border-top-left-radius: 0;\n}\n.btn-group > .btn-group {\n  float: left;\n}\n.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {\n  border-radius: 0;\n}\n.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,\n.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {\n  border-bottom-right-radius: 0;\n  border-top-right-radius: 0;\n}\n.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {\n  border-bottom-left-radius: 0;\n  border-top-left-radius: 0;\n}\n.btn-group .dropdown-toggle:active,\n.btn-group.open .dropdown-toggle {\n  outline: 0;\n}\n.btn-group > .btn + .dropdown-toggle {\n  padding-left: 8px;\n  padding-right: 8px;\n}\n.btn-group > .btn-lg + .dropdown-toggle {\n  padding-left: 12px;\n  padding-right: 12px;\n}\n.btn-group.open .dropdown-toggle {\n  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.btn-group.open .dropdown-toggle.btn-link {\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.btn .caret {\n  margin-left: 0;\n}\n.btn-lg .caret {\n  border-width: 5px 5px 0;\n  border-bottom-width: 0;\n}\n.dropup .btn-lg .caret {\n  border-width: 0 5px 5px;\n}\n.btn-group-vertical > .btn,\n.btn-group-vertical > .btn-group,\n.btn-group-vertical > .btn-group > .btn {\n  display: block;\n  float: none;\n  width: 100%;\n  max-width: 100%;\n}\n.btn-group-vertical > .btn-group > .btn {\n  float: none;\n}\n.btn-group-vertical > .btn + .btn,\n.btn-group-vertical > .btn + .btn-group,\n.btn-group-vertical > .btn-group + .btn,\n.btn-group-vertical > .btn-group + .btn-group {\n  margin-top: -1px;\n  margin-left: 0;\n}\n.btn-group-vertical > .btn:not(:first-child):not(:last-child) {\n  border-radius: 0;\n}\n.btn-group-vertical > .btn:first-child:not(:last-child) {\n  border-top-right-radius: 4px;\n  border-top-left-radius: 4px;\n  border-bottom-right-radius: 0;\n  border-bottom-left-radius: 0;\n}\n.btn-group-vertical > .btn:last-child:not(:first-child) {\n  border-top-right-radius: 0;\n  border-top-left-radius: 0;\n  border-bottom-right-radius: 4px;\n  border-bottom-left-radius: 4px;\n}\n.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {\n  border-radius: 0;\n}\n.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,\n.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {\n  border-bottom-right-radius: 0;\n  border-bottom-left-radius: 0;\n}\n.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {\n  border-top-right-radius: 0;\n  border-top-left-radius: 0;\n}\n.btn-group-justified {\n  display: table;\n  width: 100%;\n  table-layout: fixed;\n  border-collapse: separate;\n}\n.btn-group-justified > .btn,\n.btn-group-justified > .btn-group {\n  float: none;\n  display: table-cell;\n  width: 1%;\n}\n.btn-group-justified > .btn-group .btn {\n  width: 100%;\n}\n.btn-group-justified > .btn-group .dropdown-menu {\n  left: auto;\n}\n[data-toggle=\"buttons\"] > .btn input[type=\"radio\"],\n[data-toggle=\"buttons\"] > .btn-group > .btn input[type=\"radio\"],\n[data-toggle=\"buttons\"] > .btn input[type=\"checkbox\"],\n[data-toggle=\"buttons\"] > .btn-group > .btn input[type=\"checkbox\"] {\n  position: absolute;\n  clip: rect(0, 0, 0, 0);\n  pointer-events: none;\n}\n.input-group {\n  position: relative;\n  display: table;\n  border-collapse: separate;\n}\n.input-group[class*=\"col-\"] {\n  float: none;\n  padding-left: 0;\n  padding-right: 0;\n}\n.input-group .form-control {\n  position: relative;\n  z-index: 2;\n  float: left;\n  width: 100%;\n  margin-bottom: 0;\n}\n.input-group .form-control:focus {\n  z-index: 3;\n}\n.input-group-lg > .form-control,\n.input-group-lg > .input-group-addon,\n.input-group-lg > .input-group-btn > .btn {\n  height: 46px;\n  padding: 10px 16px;\n  font-size: 18px;\n  line-height: 1.3333333;\n  border-radius: 6px;\n}\nselect.input-group-lg > .form-control,\nselect.input-group-lg > .input-group-addon,\nselect.input-group-lg > .input-group-btn > .btn {\n  height: 46px;\n  line-height: 46px;\n}\ntextarea.input-group-lg > .form-control,\ntextarea.input-group-lg > .input-group-addon,\ntextarea.input-group-lg > .input-group-btn > .btn,\nselect[multiple].input-group-lg > .form-control,\nselect[multiple].input-group-lg > .input-group-addon,\nselect[multiple].input-group-lg > .input-group-btn > .btn {\n  height: auto;\n}\n.input-group-sm > .form-control,\n.input-group-sm > .input-group-addon,\n.input-group-sm > .input-group-btn > .btn {\n  height: 30px;\n  padding: 5px 10px;\n  font-size: 12px;\n  line-height: 1.5;\n  border-radius: 3px;\n}\nselect.input-group-sm > .form-control,\nselect.input-group-sm > .input-group-addon,\nselect.input-group-sm > .input-group-btn > .btn {\n  height: 30px;\n  line-height: 30px;\n}\ntextarea.input-group-sm > .form-control,\ntextarea.input-group-sm > .input-group-addon,\ntextarea.input-group-sm > .input-group-btn > .btn,\nselect[multiple].input-group-sm > .form-control,\nselect[multiple].input-group-sm > .input-group-addon,\nselect[multiple].input-group-sm > .input-group-btn > .btn {\n  height: auto;\n}\n.input-group-addon,\n.input-group-btn,\n.input-group .form-control {\n  display: table-cell;\n}\n.input-group-addon:not(:first-child):not(:last-child),\n.input-group-btn:not(:first-child):not(:last-child),\n.input-group .form-control:not(:first-child):not(:last-child) {\n  border-radius: 0;\n}\n.input-group-addon,\n.input-group-btn {\n  width: 1%;\n  white-space: nowrap;\n  vertical-align: middle;\n}\n.input-group-addon {\n  padding: 6px 12px;\n  font-size: 14px;\n  font-weight: normal;\n  line-height: 1;\n  color: #555555;\n  text-align: center;\n  background-color: #eeeeee;\n  border: 1px solid #ccc;\n  border-radius: 4px;\n}\n.input-group-addon.input-sm {\n  padding: 5px 10px;\n  font-size: 12px;\n  border-radius: 3px;\n}\n.input-group-addon.input-lg {\n  padding: 10px 16px;\n  font-size: 18px;\n  border-radius: 6px;\n}\n.input-group-addon input[type=\"radio\"],\n.input-group-addon input[type=\"checkbox\"] {\n  margin-top: 0;\n}\n.input-group .form-control:first-child,\n.input-group-addon:first-child,\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group > .btn,\n.input-group-btn:first-child > .dropdown-toggle,\n.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {\n  border-bottom-right-radius: 0;\n  border-top-right-radius: 0;\n}\n.input-group-addon:first-child {\n  border-right: 0;\n}\n.input-group .form-control:last-child,\n.input-group-addon:last-child,\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group > .btn,\n.input-group-btn:last-child > .dropdown-toggle,\n.input-group-btn:first-child > .btn:not(:first-child),\n.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {\n  border-bottom-left-radius: 0;\n  border-top-left-radius: 0;\n}\n.input-group-addon:last-child {\n  border-left: 0;\n}\n.input-group-btn {\n  position: relative;\n  font-size: 0;\n  white-space: nowrap;\n}\n.input-group-btn > .btn {\n  position: relative;\n}\n.input-group-btn > .btn + .btn {\n  margin-left: -1px;\n}\n.input-group-btn > .btn:hover,\n.input-group-btn > .btn:focus,\n.input-group-btn > .btn:active {\n  z-index: 2;\n}\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group {\n  margin-right: -1px;\n}\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group {\n  z-index: 2;\n  margin-left: -1px;\n}\n.nav {\n  margin-bottom: 0;\n  padding-left: 0;\n  list-style: none;\n}\n.nav > li {\n  position: relative;\n  display: block;\n}\n.nav > li > a {\n  position: relative;\n  display: block;\n  padding: 10px 15px;\n}\n.nav > li > a:hover,\n.nav > li > a:focus {\n  text-decoration: none;\n  background-color: #eeeeee;\n}\n.nav > li.disabled > a {\n  color: #777777;\n}\n.nav > li.disabled > a:hover,\n.nav > li.disabled > a:focus {\n  color: #777777;\n  text-decoration: none;\n  background-color: transparent;\n  cursor: not-allowed;\n}\n.nav .open > a,\n.nav .open > a:hover,\n.nav .open > a:focus {\n  background-color: #eeeeee;\n  border-color: #337ab7;\n}\n.nav .nav-divider {\n  height: 1px;\n  margin: 9px 0;\n  overflow: hidden;\n  background-color: #e5e5e5;\n}\n.nav > li > a > img {\n  max-width: none;\n}\n.nav-tabs {\n  border-bottom: 1px solid #ddd;\n}\n.nav-tabs > li {\n  float: left;\n  margin-bottom: -1px;\n}\n.nav-tabs > li > a {\n  margin-right: 2px;\n  line-height: 1.42857143;\n  border: 1px solid transparent;\n  border-radius: 4px 4px 0 0;\n}\n.nav-tabs > li > a:hover {\n  border-color: #eeeeee #eeeeee #ddd;\n}\n.nav-tabs > li.active > a,\n.nav-tabs > li.active > a:hover,\n.nav-tabs > li.active > a:focus {\n  color: #555555;\n  background-color: #fff;\n  border: 1px solid #ddd;\n  border-bottom-color: transparent;\n  cursor: default;\n}\n.nav-tabs.nav-justified {\n  width: 100%;\n  border-bottom: 0;\n}\n.nav-tabs.nav-justified > li {\n  float: none;\n}\n.nav-tabs.nav-justified > li > a {\n  text-align: center;\n  margin-bottom: 5px;\n}\n.nav-tabs.nav-justified > .dropdown .dropdown-menu {\n  top: auto;\n  left: auto;\n}\n@media (min-width: 768px) {\n  .nav-tabs.nav-justified > li {\n    display: table-cell;\n    width: 1%;\n  }\n  .nav-tabs.nav-justified > li > a {\n    margin-bottom: 0;\n  }\n}\n.nav-tabs.nav-justified > li > a {\n  margin-right: 0;\n  border-radius: 4px;\n}\n.nav-tabs.nav-justified > .active > a,\n.nav-tabs.nav-justified > .active > a:hover,\n.nav-tabs.nav-justified > .active > a:focus {\n  border: 1px solid #ddd;\n}\n@media (min-width: 768px) {\n  .nav-tabs.nav-justified > li > a {\n    border-bottom: 1px solid #ddd;\n    border-radius: 4px 4px 0 0;\n  }\n  .nav-tabs.nav-justified > .active > a,\n  .nav-tabs.nav-justified > .active > a:hover,\n  .nav-tabs.nav-justified > .active > a:focus {\n    border-bottom-color: #fff;\n  }\n}\n.nav-pills > li {\n  float: left;\n}\n.nav-pills > li > a {\n  border-radius: 4px;\n}\n.nav-pills > li + li {\n  margin-left: 2px;\n}\n.nav-pills > li.active > a,\n.nav-pills > li.active > a:hover,\n.nav-pills > li.active > a:focus {\n  color: #fff;\n  background-color: #337ab7;\n}\n.nav-stacked > li {\n  float: none;\n}\n.nav-stacked > li + li {\n  margin-top: 2px;\n  margin-left: 0;\n}\n.nav-justified {\n  width: 100%;\n}\n.nav-justified > li {\n  float: none;\n}\n.nav-justified > li > a {\n  text-align: center;\n  margin-bottom: 5px;\n}\n.nav-justified > .dropdown .dropdown-menu {\n  top: auto;\n  left: auto;\n}\n@media (min-width: 768px) {\n  .nav-justified > li {\n    display: table-cell;\n    width: 1%;\n  }\n  .nav-justified > li > a {\n    margin-bottom: 0;\n  }\n}\n.nav-tabs-justified {\n  border-bottom: 0;\n}\n.nav-tabs-justified > li > a {\n  margin-right: 0;\n  border-radius: 4px;\n}\n.nav-tabs-justified > .active > a,\n.nav-tabs-justified > .active > a:hover,\n.nav-tabs-justified > .active > a:focus {\n  border: 1px solid #ddd;\n}\n@media (min-width: 768px) {\n  .nav-tabs-justified > li > a {\n    border-bottom: 1px solid #ddd;\n    border-radius: 4px 4px 0 0;\n  }\n  .nav-tabs-justified > .active > a,\n  .nav-tabs-justified > .active > a:hover,\n  .nav-tabs-justified > .active > a:focus {\n    border-bottom-color: #fff;\n  }\n}\n.tab-content > .tab-pane {\n  display: none;\n}\n.tab-content > .active {\n  display: block;\n}\n.nav-tabs .dropdown-menu {\n  margin-top: -1px;\n  border-top-right-radius: 0;\n  border-top-left-radius: 0;\n}\n.navbar {\n  position: relative;\n  min-height: 50px;\n  margin-bottom: 20px;\n  border: 1px solid transparent;\n}\n@media (min-width: 768px) {\n  .navbar {\n    border-radius: 4px;\n  }\n}\n@media (min-width: 768px) {\n  .navbar-header {\n    float: left;\n  }\n}\n.navbar-collapse {\n  overflow-x: visible;\n  padding-right: 15px;\n  padding-left: 15px;\n  border-top: 1px solid transparent;\n  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);\n  -webkit-overflow-scrolling: touch;\n}\n.navbar-collapse.in {\n  overflow-y: auto;\n}\n@media (min-width: 768px) {\n  .navbar-collapse {\n    width: auto;\n    border-top: 0;\n    box-shadow: none;\n  }\n  .navbar-collapse.collapse {\n    display: block !important;\n    height: auto !important;\n    padding-bottom: 0;\n    overflow: visible !important;\n  }\n  .navbar-collapse.in {\n    overflow-y: visible;\n  }\n  .navbar-fixed-top .navbar-collapse,\n  .navbar-static-top .navbar-collapse,\n  .navbar-fixed-bottom .navbar-collapse {\n    padding-left: 0;\n    padding-right: 0;\n  }\n}\n.navbar-fixed-top .navbar-collapse,\n.navbar-fixed-bottom .navbar-collapse {\n  max-height: 340px;\n}\n@media (max-device-width: 480px) and (orientation: landscape) {\n  .navbar-fixed-top .navbar-collapse,\n  .navbar-fixed-bottom .navbar-collapse {\n    max-height: 200px;\n  }\n}\n.container > .navbar-header,\n.container-fluid > .navbar-header,\n.container > .navbar-collapse,\n.container-fluid > .navbar-collapse {\n  margin-right: -15px;\n  margin-left: -15px;\n}\n@media (min-width: 768px) {\n  .container > .navbar-header,\n  .container-fluid > .navbar-header,\n  .container > .navbar-collapse,\n  .container-fluid > .navbar-collapse {\n    margin-right: 0;\n    margin-left: 0;\n  }\n}\n.navbar-static-top {\n  z-index: 1000;\n  border-width: 0 0 1px;\n}\n@media (min-width: 768px) {\n  .navbar-static-top {\n    border-radius: 0;\n  }\n}\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n  position: fixed;\n  right: 0;\n  left: 0;\n  z-index: 1030;\n}\n@media (min-width: 768px) {\n  .navbar-fixed-top,\n  .navbar-fixed-bottom {\n    border-radius: 0;\n  }\n}\n.navbar-fixed-top {\n  top: 0;\n  border-width: 0 0 1px;\n}\n.navbar-fixed-bottom {\n  bottom: 0;\n  margin-bottom: 0;\n  border-width: 1px 0 0;\n}\n.navbar-brand {\n  float: left;\n  padding: 15px 15px;\n  font-size: 18px;\n  line-height: 20px;\n  height: 50px;\n}\n.navbar-brand:hover,\n.navbar-brand:focus {\n  text-decoration: none;\n}\n.navbar-brand > img {\n  display: block;\n}\n@media (min-width: 768px) {\n  .navbar > .container .navbar-brand,\n  .navbar > .container-fluid .navbar-brand {\n    margin-left: -15px;\n  }\n}\n.navbar-toggle {\n  position: relative;\n  float: right;\n  margin-right: 15px;\n  padding: 9px 10px;\n  margin-top: 8px;\n  margin-bottom: 8px;\n  background-color: transparent;\n  background-image: none;\n  border: 1px solid transparent;\n  border-radius: 4px;\n}\n.navbar-toggle:focus {\n  outline: 0;\n}\n.navbar-toggle .icon-bar {\n  display: block;\n  width: 22px;\n  height: 2px;\n  border-radius: 1px;\n}\n.navbar-toggle .icon-bar + .icon-bar {\n  margin-top: 4px;\n}\n@media (min-width: 768px) {\n  .navbar-toggle {\n    display: none;\n  }\n}\n.navbar-nav {\n  margin: 7.5px -15px;\n}\n.navbar-nav > li > a {\n  padding-top: 10px;\n  padding-bottom: 10px;\n  line-height: 20px;\n}\n@media (max-width: 767px) {\n  .navbar-nav .open .dropdown-menu {\n    position: static;\n    float: none;\n    width: auto;\n    margin-top: 0;\n    background-color: transparent;\n    border: 0;\n    box-shadow: none;\n  }\n  .navbar-nav .open .dropdown-menu > li > a,\n  .navbar-nav .open .dropdown-menu .dropdown-header {\n    padding: 5px 15px 5px 25px;\n  }\n  .navbar-nav .open .dropdown-menu > li > a {\n    line-height: 20px;\n  }\n  .navbar-nav .open .dropdown-menu > li > a:hover,\n  .navbar-nav .open .dropdown-menu > li > a:focus {\n    background-image: none;\n  }\n}\n@media (min-width: 768px) {\n  .navbar-nav {\n    float: left;\n    margin: 0;\n  }\n  .navbar-nav > li {\n    float: left;\n  }\n  .navbar-nav > li > a {\n    padding-top: 15px;\n    padding-bottom: 15px;\n  }\n}\n.navbar-form {\n  margin-left: -15px;\n  margin-right: -15px;\n  padding: 10px 15px;\n  border-top: 1px solid transparent;\n  border-bottom: 1px solid transparent;\n  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);\n  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);\n  margin-top: 8px;\n  margin-bottom: 8px;\n}\n@media (min-width: 768px) {\n  .navbar-form .form-group {\n    display: inline-block;\n    margin-bottom: 0;\n    vertical-align: middle;\n  }\n  .navbar-form .form-control {\n    display: inline-block;\n    width: auto;\n    vertical-align: middle;\n  }\n  .navbar-form .form-control-static {\n    display: inline-block;\n  }\n  .navbar-form .input-group {\n    display: inline-table;\n    vertical-align: middle;\n  }\n  .navbar-form .input-group .input-group-addon,\n  .navbar-form .input-group .input-group-btn,\n  .navbar-form .input-group .form-control {\n    width: auto;\n  }\n  .navbar-form .input-group > .form-control {\n    width: 100%;\n  }\n  .navbar-form .control-label {\n    margin-bottom: 0;\n    vertical-align: middle;\n  }\n  .navbar-form .radio,\n  .navbar-form .checkbox {\n    display: inline-block;\n    margin-top: 0;\n    margin-bottom: 0;\n    vertical-align: middle;\n  }\n  .navbar-form .radio label,\n  .navbar-form .checkbox label {\n    padding-left: 0;\n  }\n  .navbar-form .radio input[type=\"radio\"],\n  .navbar-form .checkbox input[type=\"checkbox\"] {\n    position: relative;\n    margin-left: 0;\n  }\n  .navbar-form .has-feedback .form-control-feedback {\n    top: 0;\n  }\n}\n@media (max-width: 767px) {\n  .navbar-form .form-group {\n    margin-bottom: 5px;\n  }\n  .navbar-form .form-group:last-child {\n    margin-bottom: 0;\n  }\n}\n@media (min-width: 768px) {\n  .navbar-form {\n    width: auto;\n    border: 0;\n    margin-left: 0;\n    margin-right: 0;\n    padding-top: 0;\n    padding-bottom: 0;\n    -webkit-box-shadow: none;\n    box-shadow: none;\n  }\n}\n.navbar-nav > li > .dropdown-menu {\n  margin-top: 0;\n  border-top-right-radius: 0;\n  border-top-left-radius: 0;\n}\n.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {\n  margin-bottom: 0;\n  border-top-right-radius: 4px;\n  border-top-left-radius: 4px;\n  border-bottom-right-radius: 0;\n  border-bottom-left-radius: 0;\n}\n.navbar-btn {\n  margin-top: 8px;\n  margin-bottom: 8px;\n}\n.navbar-btn.btn-sm {\n  margin-top: 10px;\n  margin-bottom: 10px;\n}\n.navbar-btn.btn-xs {\n  margin-top: 14px;\n  margin-bottom: 14px;\n}\n.navbar-text {\n  margin-top: 15px;\n  margin-bottom: 15px;\n}\n@media (min-width: 768px) {\n  .navbar-text {\n    float: left;\n    margin-left: 15px;\n    margin-right: 15px;\n  }\n}\n@media (min-width: 768px) {\n  .navbar-left {\n    float: left !important;\n  }\n  .navbar-right {\n    float: right !important;\n    margin-right: -15px;\n  }\n  .navbar-right ~ .navbar-right {\n    margin-right: 0;\n  }\n}\n.navbar-default {\n  background-color: #f8f8f8;\n  border-color: #e7e7e7;\n}\n.navbar-default .navbar-brand {\n  color: #777;\n}\n.navbar-default .navbar-brand:hover,\n.navbar-default .navbar-brand:focus {\n  color: #5e5e5e;\n  background-color: transparent;\n}\n.navbar-default .navbar-text {\n  color: #777;\n}\n.navbar-default .navbar-nav > li > a {\n  color: #777;\n}\n.navbar-default .navbar-nav > li > a:hover,\n.navbar-default .navbar-nav > li > a:focus {\n  color: #333;\n  background-color: transparent;\n}\n.navbar-default .navbar-nav > .active > a,\n.navbar-default .navbar-nav > .active > a:hover,\n.navbar-default .navbar-nav > .active > a:focus {\n  color: #555;\n  background-color: #e7e7e7;\n}\n.navbar-default .navbar-nav > .disabled > a,\n.navbar-default .navbar-nav > .disabled > a:hover,\n.navbar-default .navbar-nav > .disabled > a:focus {\n  color: #ccc;\n  background-color: transparent;\n}\n.navbar-default .navbar-toggle {\n  border-color: #ddd;\n}\n.navbar-default .navbar-toggle:hover,\n.navbar-default .navbar-toggle:focus {\n  background-color: #ddd;\n}\n.navbar-default .navbar-toggle .icon-bar {\n  background-color: #888;\n}\n.navbar-default .navbar-collapse,\n.navbar-default .navbar-form {\n  border-color: #e7e7e7;\n}\n.navbar-default .navbar-nav > .open > a,\n.navbar-default .navbar-nav > .open > a:hover,\n.navbar-default .navbar-nav > .open > a:focus {\n  background-color: #e7e7e7;\n  color: #555;\n}\n@media (max-width: 767px) {\n  .navbar-default .navbar-nav .open .dropdown-menu > li > a {\n    color: #777;\n  }\n  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,\n  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {\n    color: #333;\n    background-color: transparent;\n  }\n  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,\n  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,\n  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {\n    color: #555;\n    background-color: #e7e7e7;\n  }\n  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,\n  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,\n  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {\n    color: #ccc;\n    background-color: transparent;\n  }\n}\n.navbar-default .navbar-link {\n  color: #777;\n}\n.navbar-default .navbar-link:hover {\n  color: #333;\n}\n.navbar-default .btn-link {\n  color: #777;\n}\n.navbar-default .btn-link:hover,\n.navbar-default .btn-link:focus {\n  color: #333;\n}\n.navbar-default .btn-link[disabled]:hover,\nfieldset[disabled] .navbar-default .btn-link:hover,\n.navbar-default .btn-link[disabled]:focus,\nfieldset[disabled] .navbar-default .btn-link:focus {\n  color: #ccc;\n}\n.navbar-inverse {\n  background-color: #222;\n  border-color: #080808;\n}\n.navbar-inverse .navbar-brand {\n  color: #9d9d9d;\n}\n.navbar-inverse .navbar-brand:hover,\n.navbar-inverse .navbar-brand:focus {\n  color: #fff;\n  background-color: transparent;\n}\n.navbar-inverse .navbar-text {\n  color: #9d9d9d;\n}\n.navbar-inverse .navbar-nav > li > a {\n  color: #9d9d9d;\n}\n.navbar-inverse .navbar-nav > li > a:hover,\n.navbar-inverse .navbar-nav > li > a:focus {\n  color: #fff;\n  background-color: transparent;\n}\n.navbar-inverse .navbar-nav > .active > a,\n.navbar-inverse .navbar-nav > .active > a:hover,\n.navbar-inverse .navbar-nav > .active > a:focus {\n  color: #fff;\n  background-color: #080808;\n}\n.navbar-inverse .navbar-nav > .disabled > a,\n.navbar-inverse .navbar-nav > .disabled > a:hover,\n.navbar-inverse .navbar-nav > .disabled > a:focus {\n  color: #444;\n  background-color: transparent;\n}\n.navbar-inverse .navbar-toggle {\n  border-color: #333;\n}\n.navbar-inverse .navbar-toggle:hover,\n.navbar-inverse .navbar-toggle:focus {\n  background-color: #333;\n}\n.navbar-inverse .navbar-toggle .icon-bar {\n  background-color: #fff;\n}\n.navbar-inverse .navbar-collapse,\n.navbar-inverse .navbar-form {\n  border-color: #101010;\n}\n.navbar-inverse .navbar-nav > .open > a,\n.navbar-inverse .navbar-nav > .open > a:hover,\n.navbar-inverse .navbar-nav > .open > a:focus {\n  background-color: #080808;\n  color: #fff;\n}\n@media (max-width: 767px) {\n  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {\n    border-color: #080808;\n  }\n  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {\n    background-color: #080808;\n  }\n  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {\n    color: #9d9d9d;\n  }\n  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,\n  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {\n    color: #fff;\n    background-color: transparent;\n  }\n  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,\n  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,\n  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {\n    color: #fff;\n    background-color: #080808;\n  }\n  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,\n  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,\n  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {\n    color: #444;\n    background-color: transparent;\n  }\n}\n.navbar-inverse .navbar-link {\n  color: #9d9d9d;\n}\n.navbar-inverse .navbar-link:hover {\n  color: #fff;\n}\n.navbar-inverse .btn-link {\n  color: #9d9d9d;\n}\n.navbar-inverse .btn-link:hover,\n.navbar-inverse .btn-link:focus {\n  color: #fff;\n}\n.navbar-inverse .btn-link[disabled]:hover,\nfieldset[disabled] .navbar-inverse .btn-link:hover,\n.navbar-inverse .btn-link[disabled]:focus,\nfieldset[disabled] .navbar-inverse .btn-link:focus {\n  color: #444;\n}\n.breadcrumb {\n  padding: 8px 15px;\n  margin-bottom: 20px;\n  list-style: none;\n  background-color: #f5f5f5;\n  border-radius: 4px;\n}\n.breadcrumb > li {\n  display: inline-block;\n}\n.breadcrumb > li + li:before {\n  content: \"/\\00a0\";\n  padding: 0 5px;\n  color: #ccc;\n}\n.breadcrumb > .active {\n  color: #777777;\n}\n.pagination {\n  display: inline-block;\n  padding-left: 0;\n  margin: 20px 0;\n  border-radius: 4px;\n}\n.pagination > li {\n  display: inline;\n}\n.pagination > li > a,\n.pagination > li > span {\n  position: relative;\n  float: left;\n  padding: 6px 12px;\n  line-height: 1.42857143;\n  text-decoration: none;\n  color: #337ab7;\n  background-color: #fff;\n  border: 1px solid #ddd;\n  margin-left: -1px;\n}\n.pagination > li:first-child > a,\n.pagination > li:first-child > span {\n  margin-left: 0;\n  border-bottom-left-radius: 4px;\n  border-top-left-radius: 4px;\n}\n.pagination > li:last-child > a,\n.pagination > li:last-child > span {\n  border-bottom-right-radius: 4px;\n  border-top-right-radius: 4px;\n}\n.pagination > li > a:hover,\n.pagination > li > span:hover,\n.pagination > li > a:focus,\n.pagination > li > span:focus {\n  z-index: 2;\n  color: #23527c;\n  background-color: #eeeeee;\n  border-color: #ddd;\n}\n.pagination > .active > a,\n.pagination > .active > span,\n.pagination > .active > a:hover,\n.pagination > .active > span:hover,\n.pagination > .active > a:focus,\n.pagination > .active > span:focus {\n  z-index: 3;\n  color: #fff;\n  background-color: #337ab7;\n  border-color: #337ab7;\n  cursor: default;\n}\n.pagination > .disabled > span,\n.pagination > .disabled > span:hover,\n.pagination > .disabled > span:focus,\n.pagination > .disabled > a,\n.pagination > .disabled > a:hover,\n.pagination > .disabled > a:focus {\n  color: #777777;\n  background-color: #fff;\n  border-color: #ddd;\n  cursor: not-allowed;\n}\n.pagination-lg > li > a,\n.pagination-lg > li > span {\n  padding: 10px 16px;\n  font-size: 18px;\n  line-height: 1.3333333;\n}\n.pagination-lg > li:first-child > a,\n.pagination-lg > li:first-child > span {\n  border-bottom-left-radius: 6px;\n  border-top-left-radius: 6px;\n}\n.pagination-lg > li:last-child > a,\n.pagination-lg > li:last-child > span {\n  border-bottom-right-radius: 6px;\n  border-top-right-radius: 6px;\n}\n.pagination-sm > li > a,\n.pagination-sm > li > span {\n  padding: 5px 10px;\n  font-size: 12px;\n  line-height: 1.5;\n}\n.pagination-sm > li:first-child > a,\n.pagination-sm > li:first-child > span {\n  border-bottom-left-radius: 3px;\n  border-top-left-radius: 3px;\n}\n.pagination-sm > li:last-child > a,\n.pagination-sm > li:last-child > span {\n  border-bottom-right-radius: 3px;\n  border-top-right-radius: 3px;\n}\n.pager {\n  padding-left: 0;\n  margin: 20px 0;\n  list-style: none;\n  text-align: center;\n}\n.pager li {\n  display: inline;\n}\n.pager li > a,\n.pager li > span {\n  display: inline-block;\n  padding: 5px 14px;\n  background-color: #fff;\n  border: 1px solid #ddd;\n  border-radius: 15px;\n}\n.pager li > a:hover,\n.pager li > a:focus {\n  text-decoration: none;\n  background-color: #eeeeee;\n}\n.pager .next > a,\n.pager .next > span {\n  float: right;\n}\n.pager .previous > a,\n.pager .previous > span {\n  float: left;\n}\n.pager .disabled > a,\n.pager .disabled > a:hover,\n.pager .disabled > a:focus,\n.pager .disabled > span {\n  color: #777777;\n  background-color: #fff;\n  cursor: not-allowed;\n}\n.label {\n  display: inline;\n  padding: .2em .6em .3em;\n  font-size: 75%;\n  font-weight: bold;\n  line-height: 1;\n  color: #fff;\n  text-align: center;\n  white-space: nowrap;\n  vertical-align: baseline;\n  border-radius: .25em;\n}\na.label:hover,\na.label:focus {\n  color: #fff;\n  text-decoration: none;\n  cursor: pointer;\n}\n.label:empty {\n  display: none;\n}\n.btn .label {\n  position: relative;\n  top: -1px;\n}\n.label-default {\n  background-color: #777777;\n}\n.label-default[href]:hover,\n.label-default[href]:focus {\n  background-color: #5e5e5e;\n}\n.label-primary {\n  background-color: #337ab7;\n}\n.label-primary[href]:hover,\n.label-primary[href]:focus {\n  background-color: #286090;\n}\n.label-success {\n  background-color: #5cb85c;\n}\n.label-success[href]:hover,\n.label-success[href]:focus {\n  background-color: #449d44;\n}\n.label-info {\n  background-color: #5bc0de;\n}\n.label-info[href]:hover,\n.label-info[href]:focus {\n  background-color: #31b0d5;\n}\n.label-warning {\n  background-color: #f0ad4e;\n}\n.label-warning[href]:hover,\n.label-warning[href]:focus {\n  background-color: #ec971f;\n}\n.label-danger {\n  background-color: #d9534f;\n}\n.label-danger[href]:hover,\n.label-danger[href]:focus {\n  background-color: #c9302c;\n}\n.badge {\n  display: inline-block;\n  min-width: 10px;\n  padding: 3px 7px;\n  font-size: 12px;\n  font-weight: bold;\n  color: #fff;\n  line-height: 1;\n  vertical-align: middle;\n  white-space: nowrap;\n  text-align: center;\n  background-color: #777777;\n  border-radius: 10px;\n}\n.badge:empty {\n  display: none;\n}\n.btn .badge {\n  position: relative;\n  top: -1px;\n}\n.btn-xs .badge,\n.btn-group-xs > .btn .badge {\n  top: 0;\n  padding: 1px 5px;\n}\na.badge:hover,\na.badge:focus {\n  color: #fff;\n  text-decoration: none;\n  cursor: pointer;\n}\n.list-group-item.active > .badge,\n.nav-pills > .active > a > .badge {\n  color: #337ab7;\n  background-color: #fff;\n}\n.list-group-item > .badge {\n  float: right;\n}\n.list-group-item > .badge + .badge {\n  margin-right: 5px;\n}\n.nav-pills > li > a > .badge {\n  margin-left: 3px;\n}\n.jumbotron {\n  padding-top: 30px;\n  padding-bottom: 30px;\n  margin-bottom: 30px;\n  color: inherit;\n  background-color: #eeeeee;\n}\n.jumbotron h1,\n.jumbotron .h1 {\n  color: inherit;\n}\n.jumbotron p {\n  margin-bottom: 15px;\n  font-size: 21px;\n  font-weight: 200;\n}\n.jumbotron > hr {\n  border-top-color: #d5d5d5;\n}\n.container .jumbotron,\n.container-fluid .jumbotron {\n  border-radius: 6px;\n  padding-left: 15px;\n  padding-right: 15px;\n}\n.jumbotron .container {\n  max-width: 100%;\n}\n@media screen and (min-width: 768px) {\n  .jumbotron {\n    padding-top: 48px;\n    padding-bottom: 48px;\n  }\n  .container .jumbotron,\n  .container-fluid .jumbotron {\n    padding-left: 60px;\n    padding-right: 60px;\n  }\n  .jumbotron h1,\n  .jumbotron .h1 {\n    font-size: 63px;\n  }\n}\n.thumbnail {\n  display: block;\n  padding: 4px;\n  margin-bottom: 20px;\n  line-height: 1.42857143;\n  background-color: #fff;\n  border: 1px solid #ddd;\n  border-radius: 4px;\n  -webkit-transition: border 0.2s ease-in-out;\n  -o-transition: border 0.2s ease-in-out;\n  transition: border 0.2s ease-in-out;\n}\n.thumbnail > img,\n.thumbnail a > img {\n  margin-left: auto;\n  margin-right: auto;\n}\na.thumbnail:hover,\na.thumbnail:focus,\na.thumbnail.active {\n  border-color: #337ab7;\n}\n.thumbnail .caption {\n  padding: 9px;\n  color: #333333;\n}\n.alert {\n  padding: 15px;\n  margin-bottom: 20px;\n  border: 1px solid transparent;\n  border-radius: 4px;\n}\n.alert h4 {\n  margin-top: 0;\n  color: inherit;\n}\n.alert .alert-link {\n  font-weight: bold;\n}\n.alert > p,\n.alert > ul {\n  margin-bottom: 0;\n}\n.alert > p + p {\n  margin-top: 5px;\n}\n.alert-dismissable,\n.alert-dismissible {\n  padding-right: 35px;\n}\n.alert-dismissable .close,\n.alert-dismissible .close {\n  position: relative;\n  top: -2px;\n  right: -21px;\n  color: inherit;\n}\n.alert-success {\n  background-color: #dff0d8;\n  border-color: #d6e9c6;\n  color: #3c763d;\n}\n.alert-success hr {\n  border-top-color: #c9e2b3;\n}\n.alert-success .alert-link {\n  color: #2b542c;\n}\n.alert-info {\n  background-color: #d9edf7;\n  border-color: #bce8f1;\n  color: #31708f;\n}\n.alert-info hr {\n  border-top-color: #a6e1ec;\n}\n.alert-info .alert-link {\n  color: #245269;\n}\n.alert-warning {\n  background-color: #fcf8e3;\n  border-color: #faebcc;\n  color: #8a6d3b;\n}\n.alert-warning hr {\n  border-top-color: #f7e1b5;\n}\n.alert-warning .alert-link {\n  color: #66512c;\n}\n.alert-danger {\n  background-color: #f2dede;\n  border-color: #ebccd1;\n  color: #a94442;\n}\n.alert-danger hr {\n  border-top-color: #e4b9c0;\n}\n.alert-danger .alert-link {\n  color: #843534;\n}\n@-webkit-keyframes progress-bar-stripes {\n  from {\n    background-position: 40px 0;\n  }\n  to {\n    background-position: 0 0;\n  }\n}\n@keyframes progress-bar-stripes {\n  from {\n    background-position: 40px 0;\n  }\n  to {\n    background-position: 0 0;\n  }\n}\n.progress {\n  overflow: hidden;\n  height: 20px;\n  margin-bottom: 20px;\n  background-color: #f5f5f5;\n  border-radius: 4px;\n  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);\n  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);\n}\n.progress-bar {\n  float: left;\n  width: 0%;\n  height: 100%;\n  font-size: 12px;\n  line-height: 20px;\n  color: #fff;\n  text-align: center;\n  background-color: #337ab7;\n  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);\n  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);\n  -webkit-transition: width 0.6s ease;\n  -o-transition: width 0.6s ease;\n  transition: width 0.6s ease;\n}\n.progress-striped .progress-bar,\n.progress-bar-striped {\n  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-size: 40px 40px;\n}\n.progress.active .progress-bar,\n.progress-bar.active {\n  -webkit-animation: progress-bar-stripes 2s linear infinite;\n  -o-animation: progress-bar-stripes 2s linear infinite;\n  animation: progress-bar-stripes 2s linear infinite;\n}\n.progress-bar-success {\n  background-color: #5cb85c;\n}\n.progress-striped .progress-bar-success {\n  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.progress-bar-info {\n  background-color: #5bc0de;\n}\n.progress-striped .progress-bar-info {\n  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.progress-bar-warning {\n  background-color: #f0ad4e;\n}\n.progress-striped .progress-bar-warning {\n  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.progress-bar-danger {\n  background-color: #d9534f;\n}\n.progress-striped .progress-bar-danger {\n  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.media {\n  margin-top: 15px;\n}\n.media:first-child {\n  margin-top: 0;\n}\n.media,\n.media-body {\n  zoom: 1;\n  overflow: hidden;\n}\n.media-body {\n  width: 10000px;\n}\n.media-object {\n  display: block;\n}\n.media-object.img-thumbnail {\n  max-width: none;\n}\n.media-right,\n.media > .pull-right {\n  padding-left: 10px;\n}\n.media-left,\n.media > .pull-left {\n  padding-right: 10px;\n}\n.media-left,\n.media-right,\n.media-body {\n  display: table-cell;\n  vertical-align: top;\n}\n.media-middle {\n  vertical-align: middle;\n}\n.media-bottom {\n  vertical-align: bottom;\n}\n.media-heading {\n  margin-top: 0;\n  margin-bottom: 5px;\n}\n.media-list {\n  padding-left: 0;\n  list-style: none;\n}\n.list-group {\n  margin-bottom: 20px;\n  padding-left: 0;\n}\n.list-group-item {\n  position: relative;\n  display: block;\n  padding: 10px 15px;\n  margin-bottom: -1px;\n  background-color: #fff;\n  border: 1px solid #ddd;\n}\n.list-group-item:first-child {\n  border-top-right-radius: 4px;\n  border-top-left-radius: 4px;\n}\n.list-group-item:last-child {\n  margin-bottom: 0;\n  border-bottom-right-radius: 4px;\n  border-bottom-left-radius: 4px;\n}\na.list-group-item,\nbutton.list-group-item {\n  color: #555;\n}\na.list-group-item .list-group-item-heading,\nbutton.list-group-item .list-group-item-heading {\n  color: #333;\n}\na.list-group-item:hover,\nbutton.list-group-item:hover,\na.list-group-item:focus,\nbutton.list-group-item:focus {\n  text-decoration: none;\n  color: #555;\n  background-color: #f5f5f5;\n}\nbutton.list-group-item {\n  width: 100%;\n  text-align: left;\n}\n.list-group-item.disabled,\n.list-group-item.disabled:hover,\n.list-group-item.disabled:focus {\n  background-color: #eeeeee;\n  color: #777777;\n  cursor: not-allowed;\n}\n.list-group-item.disabled .list-group-item-heading,\n.list-group-item.disabled:hover .list-group-item-heading,\n.list-group-item.disabled:focus .list-group-item-heading {\n  color: inherit;\n}\n.list-group-item.disabled .list-group-item-text,\n.list-group-item.disabled:hover .list-group-item-text,\n.list-group-item.disabled:focus .list-group-item-text {\n  color: #777777;\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n  z-index: 2;\n  color: #fff;\n  background-color: #337ab7;\n  border-color: #337ab7;\n}\n.list-group-item.active .list-group-item-heading,\n.list-group-item.active:hover .list-group-item-heading,\n.list-group-item.active:focus .list-group-item-heading,\n.list-group-item.active .list-group-item-heading > small,\n.list-group-item.active:hover .list-group-item-heading > small,\n.list-group-item.active:focus .list-group-item-heading > small,\n.list-group-item.active .list-group-item-heading > .small,\n.list-group-item.active:hover .list-group-item-heading > .small,\n.list-group-item.active:focus .list-group-item-heading > .small {\n  color: inherit;\n}\n.list-group-item.active .list-group-item-text,\n.list-group-item.active:hover .list-group-item-text,\n.list-group-item.active:focus .list-group-item-text {\n  color: #c7ddef;\n}\n.list-group-item-success {\n  color: #3c763d;\n  background-color: #dff0d8;\n}\na.list-group-item-success,\nbutton.list-group-item-success {\n  color: #3c763d;\n}\na.list-group-item-success .list-group-item-heading,\nbutton.list-group-item-success .list-group-item-heading {\n  color: inherit;\n}\na.list-group-item-success:hover,\nbutton.list-group-item-success:hover,\na.list-group-item-success:focus,\nbutton.list-group-item-success:focus {\n  color: #3c763d;\n  background-color: #d0e9c6;\n}\na.list-group-item-success.active,\nbutton.list-group-item-success.active,\na.list-group-item-success.active:hover,\nbutton.list-group-item-success.active:hover,\na.list-group-item-success.active:focus,\nbutton.list-group-item-success.active:focus {\n  color: #fff;\n  background-color: #3c763d;\n  border-color: #3c763d;\n}\n.list-group-item-info {\n  color: #31708f;\n  background-color: #d9edf7;\n}\na.list-group-item-info,\nbutton.list-group-item-info {\n  color: #31708f;\n}\na.list-group-item-info .list-group-item-heading,\nbutton.list-group-item-info .list-group-item-heading {\n  color: inherit;\n}\na.list-group-item-info:hover,\nbutton.list-group-item-info:hover,\na.list-group-item-info:focus,\nbutton.list-group-item-info:focus {\n  color: #31708f;\n  background-color: #c4e3f3;\n}\na.list-group-item-info.active,\nbutton.list-group-item-info.active,\na.list-group-item-info.active:hover,\nbutton.list-group-item-info.active:hover,\na.list-group-item-info.active:focus,\nbutton.list-group-item-info.active:focus {\n  color: #fff;\n  background-color: #31708f;\n  border-color: #31708f;\n}\n.list-group-item-warning {\n  color: #8a6d3b;\n  background-color: #fcf8e3;\n}\na.list-group-item-warning,\nbutton.list-group-item-warning {\n  color: #8a6d3b;\n}\na.list-group-item-warning .list-group-item-heading,\nbutton.list-group-item-warning .list-group-item-heading {\n  color: inherit;\n}\na.list-group-item-warning:hover,\nbutton.list-group-item-warning:hover,\na.list-group-item-warning:focus,\nbutton.list-group-item-warning:focus {\n  color: #8a6d3b;\n  background-color: #faf2cc;\n}\na.list-group-item-warning.active,\nbutton.list-group-item-warning.active,\na.list-group-item-warning.active:hover,\nbutton.list-group-item-warning.active:hover,\na.list-group-item-warning.active:focus,\nbutton.list-group-item-warning.active:focus {\n  color: #fff;\n  background-color: #8a6d3b;\n  border-color: #8a6d3b;\n}\n.list-group-item-danger {\n  color: #a94442;\n  background-color: #f2dede;\n}\na.list-group-item-danger,\nbutton.list-group-item-danger {\n  color: #a94442;\n}\na.list-group-item-danger .list-group-item-heading,\nbutton.list-group-item-danger .list-group-item-heading {\n  color: inherit;\n}\na.list-group-item-danger:hover,\nbutton.list-group-item-danger:hover,\na.list-group-item-danger:focus,\nbutton.list-group-item-danger:focus {\n  color: #a94442;\n  background-color: #ebcccc;\n}\na.list-group-item-danger.active,\nbutton.list-group-item-danger.active,\na.list-group-item-danger.active:hover,\nbutton.list-group-item-danger.active:hover,\na.list-group-item-danger.active:focus,\nbutton.list-group-item-danger.active:focus {\n  color: #fff;\n  background-color: #a94442;\n  border-color: #a94442;\n}\n.list-group-item-heading {\n  margin-top: 0;\n  margin-bottom: 5px;\n}\n.list-group-item-text {\n  margin-bottom: 0;\n  line-height: 1.3;\n}\n.panel {\n  margin-bottom: 20px;\n  background-color: #fff;\n  border: 1px solid transparent;\n  border-radius: 4px;\n  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);\n  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);\n}\n.panel-body {\n  padding: 15px;\n}\n.panel-heading {\n  padding: 10px 15px;\n  border-bottom: 1px solid transparent;\n  border-top-right-radius: 3px;\n  border-top-left-radius: 3px;\n}\n.panel-heading > .dropdown .dropdown-toggle {\n  color: inherit;\n}\n.panel-title {\n  margin-top: 0;\n  margin-bottom: 0;\n  font-size: 16px;\n  color: inherit;\n}\n.panel-title > a,\n.panel-title > small,\n.panel-title > .small,\n.panel-title > small > a,\n.panel-title > .small > a {\n  color: inherit;\n}\n.panel-footer {\n  padding: 10px 15px;\n  background-color: #f5f5f5;\n  border-top: 1px solid #ddd;\n  border-bottom-right-radius: 3px;\n  border-bottom-left-radius: 3px;\n}\n.panel > .list-group,\n.panel > .panel-collapse > .list-group {\n  margin-bottom: 0;\n}\n.panel > .list-group .list-group-item,\n.panel > .panel-collapse > .list-group .list-group-item {\n  border-width: 1px 0;\n  border-radius: 0;\n}\n.panel > .list-group:first-child .list-group-item:first-child,\n.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {\n  border-top: 0;\n  border-top-right-radius: 3px;\n  border-top-left-radius: 3px;\n}\n.panel > .list-group:last-child .list-group-item:last-child,\n.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {\n  border-bottom: 0;\n  border-bottom-right-radius: 3px;\n  border-bottom-left-radius: 3px;\n}\n.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {\n  border-top-right-radius: 0;\n  border-top-left-radius: 0;\n}\n.panel-heading + .list-group .list-group-item:first-child {\n  border-top-width: 0;\n}\n.list-group + .panel-footer {\n  border-top-width: 0;\n}\n.panel > .table,\n.panel > .table-responsive > .table,\n.panel > .panel-collapse > .table {\n  margin-bottom: 0;\n}\n.panel > .table caption,\n.panel > .table-responsive > .table caption,\n.panel > .panel-collapse > .table caption {\n  padding-left: 15px;\n  padding-right: 15px;\n}\n.panel > .table:first-child,\n.panel > .table-responsive:first-child > .table:first-child {\n  border-top-right-radius: 3px;\n  border-top-left-radius: 3px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {\n  border-top-left-radius: 3px;\n  border-top-right-radius: 3px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,\n.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {\n  border-top-left-radius: 3px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,\n.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {\n  border-top-right-radius: 3px;\n}\n.panel > .table:last-child,\n.panel > .table-responsive:last-child > .table:last-child {\n  border-bottom-right-radius: 3px;\n  border-bottom-left-radius: 3px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {\n  border-bottom-left-radius: 3px;\n  border-bottom-right-radius: 3px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,\n.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {\n  border-bottom-left-radius: 3px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,\n.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {\n  border-bottom-right-radius: 3px;\n}\n.panel > .panel-body + .table,\n.panel > .panel-body + .table-responsive,\n.panel > .table + .panel-body,\n.panel > .table-responsive + .panel-body {\n  border-top: 1px solid #ddd;\n}\n.panel > .table > tbody:first-child > tr:first-child th,\n.panel > .table > tbody:first-child > tr:first-child td {\n  border-top: 0;\n}\n.panel > .table-bordered,\n.panel > .table-responsive > .table-bordered {\n  border: 0;\n}\n.panel > .table-bordered > thead > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,\n.panel > .table-bordered > tbody > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,\n.panel > .table-bordered > tfoot > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,\n.panel > .table-bordered > thead > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,\n.panel > .table-bordered > tbody > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,\n.panel > .table-bordered > tfoot > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {\n  border-left: 0;\n}\n.panel > .table-bordered > thead > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,\n.panel > .table-bordered > tbody > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,\n.panel > .table-bordered > tfoot > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,\n.panel > .table-bordered > thead > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,\n.panel > .table-bordered > tbody > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,\n.panel > .table-bordered > tfoot > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {\n  border-right: 0;\n}\n.panel > .table-bordered > thead > tr:first-child > td,\n.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,\n.panel > .table-bordered > tbody > tr:first-child > td,\n.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,\n.panel > .table-bordered > thead > tr:first-child > th,\n.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,\n.panel > .table-bordered > tbody > tr:first-child > th,\n.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {\n  border-bottom: 0;\n}\n.panel > .table-bordered > tbody > tr:last-child > td,\n.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,\n.panel > .table-bordered > tfoot > tr:last-child > td,\n.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,\n.panel > .table-bordered > tbody > tr:last-child > th,\n.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,\n.panel > .table-bordered > tfoot > tr:last-child > th,\n.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {\n  border-bottom: 0;\n}\n.panel > .table-responsive {\n  border: 0;\n  margin-bottom: 0;\n}\n.panel-group {\n  margin-bottom: 20px;\n}\n.panel-group .panel {\n  margin-bottom: 0;\n  border-radius: 4px;\n}\n.panel-group .panel + .panel {\n  margin-top: 5px;\n}\n.panel-group .panel-heading {\n  border-bottom: 0;\n}\n.panel-group .panel-heading + .panel-collapse > .panel-body,\n.panel-group .panel-heading + .panel-collapse > .list-group {\n  border-top: 1px solid #ddd;\n}\n.panel-group .panel-footer {\n  border-top: 0;\n}\n.panel-group .panel-footer + .panel-collapse .panel-body {\n  border-bottom: 1px solid #ddd;\n}\n.panel-default {\n  border-color: #ddd;\n}\n.panel-default > .panel-heading {\n  color: #333333;\n  background-color: #f5f5f5;\n  border-color: #ddd;\n}\n.panel-default > .panel-heading + .panel-collapse > .panel-body {\n  border-top-color: #ddd;\n}\n.panel-default > .panel-heading .badge {\n  color: #f5f5f5;\n  background-color: #333333;\n}\n.panel-default > .panel-footer + .panel-collapse > .panel-body {\n  border-bottom-color: #ddd;\n}\n.panel-primary {\n  border-color: #337ab7;\n}\n.panel-primary > .panel-heading {\n  color: #fff;\n  background-color: #337ab7;\n  border-color: #337ab7;\n}\n.panel-primary > .panel-heading + .panel-collapse > .panel-body {\n  border-top-color: #337ab7;\n}\n.panel-primary > .panel-heading .badge {\n  color: #337ab7;\n  background-color: #fff;\n}\n.panel-primary > .panel-footer + .panel-collapse > .panel-body {\n  border-bottom-color: #337ab7;\n}\n.panel-success {\n  border-color: #d6e9c6;\n}\n.panel-success > .panel-heading {\n  color: #3c763d;\n  background-color: #dff0d8;\n  border-color: #d6e9c6;\n}\n.panel-success > .panel-heading + .panel-collapse > .panel-body {\n  border-top-color: #d6e9c6;\n}\n.panel-success > .panel-heading .badge {\n  color: #dff0d8;\n  background-color: #3c763d;\n}\n.panel-success > .panel-footer + .panel-collapse > .panel-body {\n  border-bottom-color: #d6e9c6;\n}\n.panel-info {\n  border-color: #bce8f1;\n}\n.panel-info > .panel-heading {\n  color: #31708f;\n  background-color: #d9edf7;\n  border-color: #bce8f1;\n}\n.panel-info > .panel-heading + .panel-collapse > .panel-body {\n  border-top-color: #bce8f1;\n}\n.panel-info > .panel-heading .badge {\n  color: #d9edf7;\n  background-color: #31708f;\n}\n.panel-info > .panel-footer + .panel-collapse > .panel-body {\n  border-bottom-color: #bce8f1;\n}\n.panel-warning {\n  border-color: #faebcc;\n}\n.panel-warning > .panel-heading {\n  color: #8a6d3b;\n  background-color: #fcf8e3;\n  border-color: #faebcc;\n}\n.panel-warning > .panel-heading + .panel-collapse > .panel-body {\n  border-top-color: #faebcc;\n}\n.panel-warning > .panel-heading .badge {\n  color: #fcf8e3;\n  background-color: #8a6d3b;\n}\n.panel-warning > .panel-footer + .panel-collapse > .panel-body {\n  border-bottom-color: #faebcc;\n}\n.panel-danger {\n  border-color: #ebccd1;\n}\n.panel-danger > .panel-heading {\n  color: #a94442;\n  background-color: #f2dede;\n  border-color: #ebccd1;\n}\n.panel-danger > .panel-heading + .panel-collapse > .panel-body {\n  border-top-color: #ebccd1;\n}\n.panel-danger > .panel-heading .badge {\n  color: #f2dede;\n  background-color: #a94442;\n}\n.panel-danger > .panel-footer + .panel-collapse > .panel-body {\n  border-bottom-color: #ebccd1;\n}\n.embed-responsive {\n  position: relative;\n  display: block;\n  height: 0;\n  padding: 0;\n  overflow: hidden;\n}\n.embed-responsive .embed-responsive-item,\n.embed-responsive iframe,\n.embed-responsive embed,\n.embed-responsive object,\n.embed-responsive video {\n  position: absolute;\n  top: 0;\n  left: 0;\n  bottom: 0;\n  height: 100%;\n  width: 100%;\n  border: 0;\n}\n.embed-responsive-16by9 {\n  padding-bottom: 56.25%;\n}\n.embed-responsive-4by3 {\n  padding-bottom: 75%;\n}\n.well {\n  min-height: 20px;\n  padding: 19px;\n  margin-bottom: 20px;\n  background-color: #f5f5f5;\n  border: 1px solid #e3e3e3;\n  border-radius: 4px;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);\n  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);\n}\n.well blockquote {\n  border-color: #ddd;\n  border-color: rgba(0, 0, 0, 0.15);\n}\n.well-lg {\n  padding: 24px;\n  border-radius: 6px;\n}\n.well-sm {\n  padding: 9px;\n  border-radius: 3px;\n}\n.close {\n  float: right;\n  font-size: 21px;\n  font-weight: bold;\n  line-height: 1;\n  color: #000;\n  text-shadow: 0 1px 0 #fff;\n  opacity: 0.2;\n  filter: alpha(opacity=20);\n}\n.close:hover,\n.close:focus {\n  color: #000;\n  text-decoration: none;\n  cursor: pointer;\n  opacity: 0.5;\n  filter: alpha(opacity=50);\n}\nbutton.close {\n  padding: 0;\n  cursor: pointer;\n  background: transparent;\n  border: 0;\n  -webkit-appearance: none;\n}\n.modal-open {\n  overflow: hidden;\n}\n.modal {\n  display: none;\n  overflow: hidden;\n  position: fixed;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  z-index: 1050;\n  -webkit-overflow-scrolling: touch;\n  outline: 0;\n}\n.modal.fade .modal-dialog {\n  -webkit-transform: translate(0, -25%);\n  -ms-transform: translate(0, -25%);\n  -o-transform: translate(0, -25%);\n  transform: translate(0, -25%);\n  -webkit-transition: -webkit-transform 0.3s ease-out;\n  -moz-transition: -moz-transform 0.3s ease-out;\n  -o-transition: -o-transform 0.3s ease-out;\n  transition: transform 0.3s ease-out;\n}\n.modal.in .modal-dialog {\n  -webkit-transform: translate(0, 0);\n  -ms-transform: translate(0, 0);\n  -o-transform: translate(0, 0);\n  transform: translate(0, 0);\n}\n.modal-open .modal {\n  overflow-x: hidden;\n  overflow-y: auto;\n}\n.modal-dialog {\n  position: relative;\n  width: auto;\n  margin: 10px;\n}\n.modal-content {\n  position: relative;\n  background-color: #fff;\n  border: 1px solid #999;\n  border: 1px solid rgba(0, 0, 0, 0.2);\n  border-radius: 6px;\n  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\n  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\n  background-clip: padding-box;\n  outline: 0;\n}\n.modal-backdrop {\n  position: fixed;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  z-index: 1040;\n  background-color: #000;\n}\n.modal-backdrop.fade {\n  opacity: 0;\n  filter: alpha(opacity=0);\n}\n.modal-backdrop.in {\n  opacity: 0.5;\n  filter: alpha(opacity=50);\n}\n.modal-header {\n  padding: 15px;\n  border-bottom: 1px solid #e5e5e5;\n}\n.modal-header .close {\n  margin-top: -2px;\n}\n.modal-title {\n  margin: 0;\n  line-height: 1.42857143;\n}\n.modal-body {\n  position: relative;\n  padding: 15px;\n}\n.modal-footer {\n  padding: 15px;\n  text-align: right;\n  border-top: 1px solid #e5e5e5;\n}\n.modal-footer .btn + .btn {\n  margin-left: 5px;\n  margin-bottom: 0;\n}\n.modal-footer .btn-group .btn + .btn {\n  margin-left: -1px;\n}\n.modal-footer .btn-block + .btn-block {\n  margin-left: 0;\n}\n.modal-scrollbar-measure {\n  position: absolute;\n  top: -9999px;\n  width: 50px;\n  height: 50px;\n  overflow: scroll;\n}\n@media (min-width: 768px) {\n  .modal-dialog {\n    width: 600px;\n    margin: 30px auto;\n  }\n  .modal-content {\n    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);\n    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);\n  }\n  .modal-sm {\n    width: 300px;\n  }\n}\n@media (min-width: 992px) {\n  .modal-lg {\n    width: 900px;\n  }\n}\n.tooltip {\n  position: absolute;\n  z-index: 1070;\n  display: block;\n  font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n  font-style: normal;\n  font-weight: normal;\n  letter-spacing: normal;\n  line-break: auto;\n  line-height: 1.42857143;\n  text-align: left;\n  text-align: start;\n  text-decoration: none;\n  text-shadow: none;\n  text-transform: none;\n  white-space: normal;\n  word-break: normal;\n  word-spacing: normal;\n  word-wrap: normal;\n  font-size: 12px;\n  opacity: 0;\n  filter: alpha(opacity=0);\n}\n.tooltip.in {\n  opacity: 0.9;\n  filter: alpha(opacity=90);\n}\n.tooltip.top {\n  margin-top: -3px;\n  padding: 5px 0;\n}\n.tooltip.right {\n  margin-left: 3px;\n  padding: 0 5px;\n}\n.tooltip.bottom {\n  margin-top: 3px;\n  padding: 5px 0;\n}\n.tooltip.left {\n  margin-left: -3px;\n  padding: 0 5px;\n}\n.tooltip-inner {\n  max-width: 200px;\n  padding: 3px 8px;\n  color: #fff;\n  text-align: center;\n  background-color: #000;\n  border-radius: 4px;\n}\n.tooltip-arrow {\n  position: absolute;\n  width: 0;\n  height: 0;\n  border-color: transparent;\n  border-style: solid;\n}\n.tooltip.top .tooltip-arrow {\n  bottom: 0;\n  left: 50%;\n  margin-left: -5px;\n  border-width: 5px 5px 0;\n  border-top-color: #000;\n}\n.tooltip.top-left .tooltip-arrow {\n  bottom: 0;\n  right: 5px;\n  margin-bottom: -5px;\n  border-width: 5px 5px 0;\n  border-top-color: #000;\n}\n.tooltip.top-right .tooltip-arrow {\n  bottom: 0;\n  left: 5px;\n  margin-bottom: -5px;\n  border-width: 5px 5px 0;\n  border-top-color: #000;\n}\n.tooltip.right .tooltip-arrow {\n  top: 50%;\n  left: 0;\n  margin-top: -5px;\n  border-width: 5px 5px 5px 0;\n  border-right-color: #000;\n}\n.tooltip.left .tooltip-arrow {\n  top: 50%;\n  right: 0;\n  margin-top: -5px;\n  border-width: 5px 0 5px 5px;\n  border-left-color: #000;\n}\n.tooltip.bottom .tooltip-arrow {\n  top: 0;\n  left: 50%;\n  margin-left: -5px;\n  border-width: 0 5px 5px;\n  border-bottom-color: #000;\n}\n.tooltip.bottom-left .tooltip-arrow {\n  top: 0;\n  right: 5px;\n  margin-top: -5px;\n  border-width: 0 5px 5px;\n  border-bottom-color: #000;\n}\n.tooltip.bottom-right .tooltip-arrow {\n  top: 0;\n  left: 5px;\n  margin-top: -5px;\n  border-width: 0 5px 5px;\n  border-bottom-color: #000;\n}\n.popover {\n  position: absolute;\n  top: 0;\n  left: 0;\n  z-index: 1060;\n  display: none;\n  max-width: 276px;\n  padding: 1px;\n  font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n  font-style: normal;\n  font-weight: normal;\n  letter-spacing: normal;\n  line-break: auto;\n  line-height: 1.42857143;\n  text-align: left;\n  text-align: start;\n  text-decoration: none;\n  text-shadow: none;\n  text-transform: none;\n  white-space: normal;\n  word-break: normal;\n  word-spacing: normal;\n  word-wrap: normal;\n  font-size: 14px;\n  background-color: #fff;\n  background-clip: padding-box;\n  border: 1px solid #ccc;\n  border: 1px solid rgba(0, 0, 0, 0.2);\n  border-radius: 6px;\n  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);\n  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);\n}\n.popover.top {\n  margin-top: -10px;\n}\n.popover.right {\n  margin-left: 10px;\n}\n.popover.bottom {\n  margin-top: 10px;\n}\n.popover.left {\n  margin-left: -10px;\n}\n.popover-title {\n  margin: 0;\n  padding: 8px 14px;\n  font-size: 14px;\n  background-color: #f7f7f7;\n  border-bottom: 1px solid #ebebeb;\n  border-radius: 5px 5px 0 0;\n}\n.popover-content {\n  padding: 9px 14px;\n}\n.popover > .arrow,\n.popover > .arrow:after {\n  position: absolute;\n  display: block;\n  width: 0;\n  height: 0;\n  border-color: transparent;\n  border-style: solid;\n}\n.popover > .arrow {\n  border-width: 11px;\n}\n.popover > .arrow:after {\n  border-width: 10px;\n  content: \"\";\n}\n.popover.top > .arrow {\n  left: 50%;\n  margin-left: -11px;\n  border-bottom-width: 0;\n  border-top-color: #999999;\n  border-top-color: rgba(0, 0, 0, 0.25);\n  bottom: -11px;\n}\n.popover.top > .arrow:after {\n  content: \" \";\n  bottom: 1px;\n  margin-left: -10px;\n  border-bottom-width: 0;\n  border-top-color: #fff;\n}\n.popover.right > .arrow {\n  top: 50%;\n  left: -11px;\n  margin-top: -11px;\n  border-left-width: 0;\n  border-right-color: #999999;\n  border-right-color: rgba(0, 0, 0, 0.25);\n}\n.popover.right > .arrow:after {\n  content: \" \";\n  left: 1px;\n  bottom: -10px;\n  border-left-width: 0;\n  border-right-color: #fff;\n}\n.popover.bottom > .arrow {\n  left: 50%;\n  margin-left: -11px;\n  border-top-width: 0;\n  border-bottom-color: #999999;\n  border-bottom-color: rgba(0, 0, 0, 0.25);\n  top: -11px;\n}\n.popover.bottom > .arrow:after {\n  content: \" \";\n  top: 1px;\n  margin-left: -10px;\n  border-top-width: 0;\n  border-bottom-color: #fff;\n}\n.popover.left > .arrow {\n  top: 50%;\n  right: -11px;\n  margin-top: -11px;\n  border-right-width: 0;\n  border-left-color: #999999;\n  border-left-color: rgba(0, 0, 0, 0.25);\n}\n.popover.left > .arrow:after {\n  content: \" \";\n  right: 1px;\n  border-right-width: 0;\n  border-left-color: #fff;\n  bottom: -10px;\n}\n.carousel {\n  position: relative;\n}\n.carousel-inner {\n  position: relative;\n  overflow: hidden;\n  width: 100%;\n}\n.carousel-inner > .item {\n  display: none;\n  position: relative;\n  -webkit-transition: 0.6s ease-in-out left;\n  -o-transition: 0.6s ease-in-out left;\n  transition: 0.6s ease-in-out left;\n}\n.carousel-inner > .item > img,\n.carousel-inner > .item > a > img {\n  line-height: 1;\n}\n@media all and (transform-3d), (-webkit-transform-3d) {\n  .carousel-inner > .item {\n    -webkit-transition: -webkit-transform 0.6s ease-in-out;\n    -moz-transition: -moz-transform 0.6s ease-in-out;\n    -o-transition: -o-transform 0.6s ease-in-out;\n    transition: transform 0.6s ease-in-out;\n    -webkit-backface-visibility: hidden;\n    -moz-backface-visibility: hidden;\n    backface-visibility: hidden;\n    -webkit-perspective: 1000px;\n    -moz-perspective: 1000px;\n    perspective: 1000px;\n  }\n  .carousel-inner > .item.next,\n  .carousel-inner > .item.active.right {\n    -webkit-transform: translate3d(100%, 0, 0);\n    transform: translate3d(100%, 0, 0);\n    left: 0;\n  }\n  .carousel-inner > .item.prev,\n  .carousel-inner > .item.active.left {\n    -webkit-transform: translate3d(-100%, 0, 0);\n    transform: translate3d(-100%, 0, 0);\n    left: 0;\n  }\n  .carousel-inner > .item.next.left,\n  .carousel-inner > .item.prev.right,\n  .carousel-inner > .item.active {\n    -webkit-transform: translate3d(0, 0, 0);\n    transform: translate3d(0, 0, 0);\n    left: 0;\n  }\n}\n.carousel-inner > .active,\n.carousel-inner > .next,\n.carousel-inner > .prev {\n  display: block;\n}\n.carousel-inner > .active {\n  left: 0;\n}\n.carousel-inner > .next,\n.carousel-inner > .prev {\n  position: absolute;\n  top: 0;\n  width: 100%;\n}\n.carousel-inner > .next {\n  left: 100%;\n}\n.carousel-inner > .prev {\n  left: -100%;\n}\n.carousel-inner > .next.left,\n.carousel-inner > .prev.right {\n  left: 0;\n}\n.carousel-inner > .active.left {\n  left: -100%;\n}\n.carousel-inner > .active.right {\n  left: 100%;\n}\n.carousel-control {\n  position: absolute;\n  top: 0;\n  left: 0;\n  bottom: 0;\n  width: 15%;\n  opacity: 0.5;\n  filter: alpha(opacity=50);\n  font-size: 20px;\n  color: #fff;\n  text-align: center;\n  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);\n  background-color: rgba(0, 0, 0, 0);\n}\n.carousel-control.left {\n  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n  background-repeat: repeat-x;\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);\n}\n.carousel-control.right {\n  left: auto;\n  right: 0;\n  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n  background-repeat: repeat-x;\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);\n}\n.carousel-control:hover,\n.carousel-control:focus {\n  outline: 0;\n  color: #fff;\n  text-decoration: none;\n  opacity: 0.9;\n  filter: alpha(opacity=90);\n}\n.carousel-control .icon-prev,\n.carousel-control .icon-next,\n.carousel-control .glyphicon-chevron-left,\n.carousel-control .glyphicon-chevron-right {\n  position: absolute;\n  top: 50%;\n  margin-top: -10px;\n  z-index: 5;\n  display: inline-block;\n}\n.carousel-control .icon-prev,\n.carousel-control .glyphicon-chevron-left {\n  left: 50%;\n  margin-left: -10px;\n}\n.carousel-control .icon-next,\n.carousel-control .glyphicon-chevron-right {\n  right: 50%;\n  margin-right: -10px;\n}\n.carousel-control .icon-prev,\n.carousel-control .icon-next {\n  width: 20px;\n  height: 20px;\n  line-height: 1;\n  font-family: serif;\n}\n.carousel-control .icon-prev:before {\n  content: '\\2039';\n}\n.carousel-control .icon-next:before {\n  content: '\\203a';\n}\n.carousel-indicators {\n  position: absolute;\n  bottom: 10px;\n  left: 50%;\n  z-index: 15;\n  width: 60%;\n  margin-left: -30%;\n  padding-left: 0;\n  list-style: none;\n  text-align: center;\n}\n.carousel-indicators li {\n  display: inline-block;\n  width: 10px;\n  height: 10px;\n  margin: 1px;\n  text-indent: -999px;\n  border: 1px solid #fff;\n  border-radius: 10px;\n  cursor: pointer;\n  background-color: #000 \\9;\n  background-color: rgba(0, 0, 0, 0);\n}\n.carousel-indicators .active {\n  margin: 0;\n  width: 12px;\n  height: 12px;\n  background-color: #fff;\n}\n.carousel-caption {\n  position: absolute;\n  left: 15%;\n  right: 15%;\n  bottom: 20px;\n  z-index: 10;\n  padding-top: 20px;\n  padding-bottom: 20px;\n  color: #fff;\n  text-align: center;\n  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);\n}\n.carousel-caption .btn {\n  text-shadow: none;\n}\n@media screen and (min-width: 768px) {\n  .carousel-control .glyphicon-chevron-left,\n  .carousel-control .glyphicon-chevron-right,\n  .carousel-control .icon-prev,\n  .carousel-control .icon-next {\n    width: 30px;\n    height: 30px;\n    margin-top: -10px;\n    font-size: 30px;\n  }\n  .carousel-control .glyphicon-chevron-left,\n  .carousel-control .icon-prev {\n    margin-left: -10px;\n  }\n  .carousel-control .glyphicon-chevron-right,\n  .carousel-control .icon-next {\n    margin-right: -10px;\n  }\n  .carousel-caption {\n    left: 20%;\n    right: 20%;\n    padding-bottom: 30px;\n  }\n  .carousel-indicators {\n    bottom: 20px;\n  }\n}\n.clearfix:before,\n.clearfix:after,\n.dl-horizontal dd:before,\n.dl-horizontal dd:after,\n.container:before,\n.container:after,\n.container-fluid:before,\n.container-fluid:after,\n.row:before,\n.row:after,\n.form-horizontal .form-group:before,\n.form-horizontal .form-group:after,\n.btn-toolbar:before,\n.btn-toolbar:after,\n.btn-group-vertical > .btn-group:before,\n.btn-group-vertical > .btn-group:after,\n.nav:before,\n.nav:after,\n.navbar:before,\n.navbar:after,\n.navbar-header:before,\n.navbar-header:after,\n.navbar-collapse:before,\n.navbar-collapse:after,\n.pager:before,\n.pager:after,\n.panel-body:before,\n.panel-body:after,\n.modal-header:before,\n.modal-header:after,\n.modal-footer:before,\n.modal-footer:after {\n  content: \" \";\n  display: table;\n}\n.clearfix:after,\n.dl-horizontal dd:after,\n.container:after,\n.container-fluid:after,\n.row:after,\n.form-horizontal .form-group:after,\n.btn-toolbar:after,\n.btn-group-vertical > .btn-group:after,\n.nav:after,\n.navbar:after,\n.navbar-header:after,\n.navbar-collapse:after,\n.pager:after,\n.panel-body:after,\n.modal-header:after,\n.modal-footer:after {\n  clear: both;\n}\n.center-block {\n  display: block;\n  margin-left: auto;\n  margin-right: auto;\n}\n.pull-right {\n  float: right !important;\n}\n.pull-left {\n  float: left !important;\n}\n.hide {\n  display: none !important;\n}\n.show {\n  display: block !important;\n}\n.invisible {\n  visibility: hidden;\n}\n.text-hide {\n  font: 0/0 a;\n  color: transparent;\n  text-shadow: none;\n  background-color: transparent;\n  border: 0;\n}\n.hidden {\n  display: none !important;\n}\n.affix {\n  position: fixed;\n}\n@-ms-viewport {\n  width: device-width;\n}\n.visible-xs,\n.visible-sm,\n.visible-md,\n.visible-lg {\n  display: none !important;\n}\n.visible-xs-block,\n.visible-xs-inline,\n.visible-xs-inline-block,\n.visible-sm-block,\n.visible-sm-inline,\n.visible-sm-inline-block,\n.visible-md-block,\n.visible-md-inline,\n.visible-md-inline-block,\n.visible-lg-block,\n.visible-lg-inline,\n.visible-lg-inline-block {\n  display: none !important;\n}\n@media (max-width: 767px) {\n  .visible-xs {\n    display: block !important;\n  }\n  table.visible-xs {\n    display: table !important;\n  }\n  tr.visible-xs {\n    display: table-row !important;\n  }\n  th.visible-xs,\n  td.visible-xs {\n    display: table-cell !important;\n  }\n}\n@media (max-width: 767px) {\n  .visible-xs-block {\n    display: block !important;\n  }\n}\n@media (max-width: 767px) {\n  .visible-xs-inline {\n    display: inline !important;\n  }\n}\n@media (max-width: 767px) {\n  .visible-xs-inline-block {\n    display: inline-block !important;\n  }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n  .visible-sm {\n    display: block !important;\n  }\n  table.visible-sm {\n    display: table !important;\n  }\n  tr.visible-sm {\n    display: table-row !important;\n  }\n  th.visible-sm,\n  td.visible-sm {\n    display: table-cell !important;\n  }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n  .visible-sm-block {\n    display: block !important;\n  }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n  .visible-sm-inline {\n    display: inline !important;\n  }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n  .visible-sm-inline-block {\n    display: inline-block !important;\n  }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n  .visible-md {\n    display: block !important;\n  }\n  table.visible-md {\n    display: table !important;\n  }\n  tr.visible-md {\n    display: table-row !important;\n  }\n  th.visible-md,\n  td.visible-md {\n    display: table-cell !important;\n  }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n  .visible-md-block {\n    display: block !important;\n  }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n  .visible-md-inline {\n    display: inline !important;\n  }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n  .visible-md-inline-block {\n    display: inline-block !important;\n  }\n}\n@media (min-width: 1200px) {\n  .visible-lg {\n    display: block !important;\n  }\n  table.visible-lg {\n    display: table !important;\n  }\n  tr.visible-lg {\n    display: table-row !important;\n  }\n  th.visible-lg,\n  td.visible-lg {\n    display: table-cell !important;\n  }\n}\n@media (min-width: 1200px) {\n  .visible-lg-block {\n    display: block !important;\n  }\n}\n@media (min-width: 1200px) {\n  .visible-lg-inline {\n    display: inline !important;\n  }\n}\n@media (min-width: 1200px) {\n  .visible-lg-inline-block {\n    display: inline-block !important;\n  }\n}\n@media (max-width: 767px) {\n  .hidden-xs {\n    display: none !important;\n  }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n  .hidden-sm {\n    display: none !important;\n  }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n  .hidden-md {\n    display: none !important;\n  }\n}\n@media (min-width: 1200px) {\n  .hidden-lg {\n    display: none !important;\n  }\n}\n.visible-print {\n  display: none !important;\n}\n@media print {\n  .visible-print {\n    display: block !important;\n  }\n  table.visible-print {\n    display: table !important;\n  }\n  tr.visible-print {\n    display: table-row !important;\n  }\n  th.visible-print,\n  td.visible-print {\n    display: table-cell !important;\n  }\n}\n.visible-print-block {\n  display: none !important;\n}\n@media print {\n  .visible-print-block {\n    display: block !important;\n  }\n}\n.visible-print-inline {\n  display: none !important;\n}\n@media print {\n  .visible-print-inline {\n    display: inline !important;\n  }\n}\n.visible-print-inline-block {\n  display: none !important;\n}\n@media print {\n  .visible-print-inline-block {\n    display: inline-block !important;\n  }\n}\n@media print {\n  .hidden-print {\n    display: none !important;\n  }\n}\n/*# sourceMappingURL=bootstrap.css.map */","/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */\n\n//\n// 1. Set default font family to sans-serif.\n// 2. Prevent iOS and IE text size adjust after device orientation change,\n//    without disabling user zoom.\n//\n\nhtml {\n  font-family: sans-serif; // 1\n  -ms-text-size-adjust: 100%; // 2\n  -webkit-text-size-adjust: 100%; // 2\n}\n\n//\n// Remove default margin.\n//\n\nbody {\n  margin: 0;\n}\n\n// HTML5 display definitions\n// ==========================================================================\n\n//\n// Correct `block` display not defined for any HTML5 element in IE 8/9.\n// Correct `block` display not defined for `details` or `summary` in IE 10/11\n// and Firefox.\n// Correct `block` display not defined for `main` in IE 11.\n//\n\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nmenu,\nnav,\nsection,\nsummary {\n  display: block;\n}\n\n//\n// 1. Correct `inline-block` display not defined in IE 8/9.\n// 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.\n//\n\naudio,\ncanvas,\nprogress,\nvideo {\n  display: inline-block; // 1\n  vertical-align: baseline; // 2\n}\n\n//\n// Prevent modern browsers from displaying `audio` without controls.\n// Remove excess height in iOS 5 devices.\n//\n\naudio:not([controls]) {\n  display: none;\n  height: 0;\n}\n\n//\n// Address `[hidden]` styling not present in IE 8/9/10.\n// Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.\n//\n\n[hidden],\ntemplate {\n  display: none;\n}\n\n// Links\n// ==========================================================================\n\n//\n// Remove the gray background color from active links in IE 10.\n//\n\na {\n  background-color: transparent;\n}\n\n//\n// Improve readability of focused elements when they are also in an\n// active/hover state.\n//\n\na:active,\na:hover {\n  outline: 0;\n}\n\n// Text-level semantics\n// ==========================================================================\n\n//\n// Address styling not present in IE 8/9/10/11, Safari, and Chrome.\n//\n\nabbr[title] {\n  border-bottom: 1px dotted;\n}\n\n//\n// Address style set to `bolder` in Firefox 4+, Safari, and Chrome.\n//\n\nb,\nstrong {\n  font-weight: bold;\n}\n\n//\n// Address styling not present in Safari and Chrome.\n//\n\ndfn {\n  font-style: italic;\n}\n\n//\n// Address variable `h1` font-size and margin within `section` and `article`\n// contexts in Firefox 4+, Safari, and Chrome.\n//\n\nh1 {\n  font-size: 2em;\n  margin: 0.67em 0;\n}\n\n//\n// Address styling not present in IE 8/9.\n//\n\nmark {\n  background: #ff0;\n  color: #000;\n}\n\n//\n// Address inconsistent and variable font size in all browsers.\n//\n\nsmall {\n  font-size: 80%;\n}\n\n//\n// Prevent `sub` and `sup` affecting `line-height` in all browsers.\n//\n\nsub,\nsup {\n  font-size: 75%;\n  line-height: 0;\n  position: relative;\n  vertical-align: baseline;\n}\n\nsup {\n  top: -0.5em;\n}\n\nsub {\n  bottom: -0.25em;\n}\n\n// Embedded content\n// ==========================================================================\n\n//\n// Remove border when inside `a` element in IE 8/9/10.\n//\n\nimg {\n  border: 0;\n}\n\n//\n// Correct overflow not hidden in IE 9/10/11.\n//\n\nsvg:not(:root) {\n  overflow: hidden;\n}\n\n// Grouping content\n// ==========================================================================\n\n//\n// Address margin not present in IE 8/9 and Safari.\n//\n\nfigure {\n  margin: 1em 40px;\n}\n\n//\n// Address differences between Firefox and other browsers.\n//\n\nhr {\n  box-sizing: content-box;\n  height: 0;\n}\n\n//\n// Contain overflow in all browsers.\n//\n\npre {\n  overflow: auto;\n}\n\n//\n// Address odd `em`-unit font size rendering in all browsers.\n//\n\ncode,\nkbd,\npre,\nsamp {\n  font-family: monospace, monospace;\n  font-size: 1em;\n}\n\n// Forms\n// ==========================================================================\n\n//\n// Known limitation: by default, Chrome and Safari on OS X allow very limited\n// styling of `select`, unless a `border` property is set.\n//\n\n//\n// 1. Correct color not being inherited.\n//    Known issue: affects color of disabled elements.\n// 2. Correct font properties not being inherited.\n// 3. Address margins set differently in Firefox 4+, Safari, and Chrome.\n//\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n  color: inherit; // 1\n  font: inherit; // 2\n  margin: 0; // 3\n}\n\n//\n// Address `overflow` set to `hidden` in IE 8/9/10/11.\n//\n\nbutton {\n  overflow: visible;\n}\n\n//\n// Address inconsistent `text-transform` inheritance for `button` and `select`.\n// All other form control elements do not inherit `text-transform` values.\n// Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.\n// Correct `select` style inheritance in Firefox.\n//\n\nbutton,\nselect {\n  text-transform: none;\n}\n\n//\n// 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`\n//    and `video` controls.\n// 2. Correct inability to style clickable `input` types in iOS.\n// 3. Improve usability and consistency of cursor style between image-type\n//    `input` and others.\n//\n\nbutton,\nhtml input[type=\"button\"], // 1\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n  -webkit-appearance: button; // 2\n  cursor: pointer; // 3\n}\n\n//\n// Re-set default cursor for disabled elements.\n//\n\nbutton[disabled],\nhtml input[disabled] {\n  cursor: default;\n}\n\n//\n// Remove inner padding and border in Firefox 4+.\n//\n\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner {\n  border: 0;\n  padding: 0;\n}\n\n//\n// Address Firefox 4+ setting `line-height` on `input` using `!important` in\n// the UA stylesheet.\n//\n\ninput {\n  line-height: normal;\n}\n\n//\n// It's recommended that you don't attempt to style these elements.\n// Firefox's implementation doesn't respect box-sizing, padding, or width.\n//\n// 1. Address box sizing set to `content-box` in IE 8/9/10.\n// 2. Remove excess padding in IE 8/9/10.\n//\n\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n  box-sizing: border-box; // 1\n  padding: 0; // 2\n}\n\n//\n// Fix the cursor style for Chrome's increment/decrement buttons. For certain\n// `font-size` values of the `input`, it causes the cursor style of the\n// decrement button to change from `default` to `text`.\n//\n\ninput[type=\"number\"]::-webkit-inner-spin-button,\ninput[type=\"number\"]::-webkit-outer-spin-button {\n  height: auto;\n}\n\n//\n// 1. Address `appearance` set to `searchfield` in Safari and Chrome.\n// 2. Address `box-sizing` set to `border-box` in Safari and Chrome.\n//\n\ninput[type=\"search\"] {\n  -webkit-appearance: textfield; // 1\n  box-sizing: content-box; //2\n}\n\n//\n// Remove inner padding and search cancel button in Safari and Chrome on OS X.\n// Safari (but not Chrome) clips the cancel button when the search input has\n// padding (and `textfield` appearance).\n//\n\ninput[type=\"search\"]::-webkit-search-cancel-button,\ninput[type=\"search\"]::-webkit-search-decoration {\n  -webkit-appearance: none;\n}\n\n//\n// Define consistent border, margin, and padding.\n//\n\nfieldset {\n  border: 1px solid #c0c0c0;\n  margin: 0 2px;\n  padding: 0.35em 0.625em 0.75em;\n}\n\n//\n// 1. Correct `color` not being inherited in IE 8/9/10/11.\n// 2. Remove padding so people aren't caught out if they zero out fieldsets.\n//\n\nlegend {\n  border: 0; // 1\n  padding: 0; // 2\n}\n\n//\n// Remove default vertical scrollbar in IE 8/9/10/11.\n//\n\ntextarea {\n  overflow: auto;\n}\n\n//\n// Don't inherit the `font-weight` (applied by a rule above).\n// NOTE: the default cannot safely be changed in Chrome and Safari on OS X.\n//\n\noptgroup {\n  font-weight: bold;\n}\n\n// Tables\n// ==========================================================================\n\n//\n// Remove most spacing between table cells.\n//\n\ntable {\n  border-collapse: collapse;\n  border-spacing: 0;\n}\n\ntd,\nth {\n  padding: 0;\n}\n","/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */\n\n// ==========================================================================\n// Print styles.\n// Inlined to avoid the additional HTTP request: h5bp.com/r\n// ==========================================================================\n\n@media print {\n    *,\n    *:before,\n    *:after {\n        background: transparent !important;\n        color: #000 !important; // Black prints faster: h5bp.com/s\n        box-shadow: none !important;\n        text-shadow: none !important;\n    }\n\n    a,\n    a:visited {\n        text-decoration: underline;\n    }\n\n    a[href]:after {\n        content: \" (\" attr(href) \")\";\n    }\n\n    abbr[title]:after {\n        content: \" (\" attr(title) \")\";\n    }\n\n    // Don't show links that are fragment identifiers,\n    // or use the `javascript:` pseudo protocol\n    a[href^=\"#\"]:after,\n    a[href^=\"javascript:\"]:after {\n        content: \"\";\n    }\n\n    pre,\n    blockquote {\n        border: 1px solid #999;\n        page-break-inside: avoid;\n    }\n\n    thead {\n        display: table-header-group; // h5bp.com/t\n    }\n\n    tr,\n    img {\n        page-break-inside: avoid;\n    }\n\n    img {\n        max-width: 100% !important;\n    }\n\n    p,\n    h2,\n    h3 {\n        orphans: 3;\n        widows: 3;\n    }\n\n    h2,\n    h3 {\n        page-break-after: avoid;\n    }\n\n    // Bootstrap specific changes start\n\n    // Bootstrap components\n    .navbar {\n        display: none;\n    }\n    .btn,\n    .dropup > .btn {\n        > .caret {\n            border-top-color: #000 !important;\n        }\n    }\n    .label {\n        border: 1px solid #000;\n    }\n\n    .table {\n        border-collapse: collapse !important;\n\n        td,\n        th {\n            background-color: #fff !important;\n        }\n    }\n    .table-bordered {\n        th,\n        td {\n            border: 1px solid #ddd !important;\n        }\n    }\n\n    // Bootstrap specific changes end\n}\n","//\n// Glyphicons for Bootstrap\n//\n// Since icons are fonts, they can be placed anywhere text is placed and are\n// thus automatically sized to match the surrounding child. To use, create an\n// inline element with the appropriate classes, like so:\n//\n// <a href=\"#\"><span class=\"glyphicon glyphicon-star\"></span> Star</a>\n\n// Import the fonts\n@font-face {\n  font-family: 'Glyphicons Halflings';\n  src: url('@{icon-font-path}@{icon-font-name}.eot');\n  src: url('@{icon-font-path}@{icon-font-name}.eot?#iefix') format('embedded-opentype'),\n       url('@{icon-font-path}@{icon-font-name}.woff2') format('woff2'),\n       url('@{icon-font-path}@{icon-font-name}.woff') format('woff'),\n       url('@{icon-font-path}@{icon-font-name}.ttf') format('truetype'),\n       url('@{icon-font-path}@{icon-font-name}.svg#@{icon-font-svg-id}') format('svg');\n}\n\n// Catchall baseclass\n.glyphicon {\n  position: relative;\n  top: 1px;\n  display: inline-block;\n  font-family: 'Glyphicons Halflings';\n  font-style: normal;\n  font-weight: normal;\n  line-height: 1;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n// Individual icons\n.glyphicon-asterisk               { &:before { content: \"\\002a\"; } }\n.glyphicon-plus                   { &:before { content: \"\\002b\"; } }\n.glyphicon-euro,\n.glyphicon-eur                    { &:before { content: \"\\20ac\"; } }\n.glyphicon-minus                  { &:before { content: \"\\2212\"; } }\n.glyphicon-cloud                  { &:before { content: \"\\2601\"; } }\n.glyphicon-envelope               { &:before { content: \"\\2709\"; } }\n.glyphicon-pencil                 { &:before { content: \"\\270f\"; } }\n.glyphicon-glass                  { &:before { content: \"\\e001\"; } }\n.glyphicon-music                  { &:before { content: \"\\e002\"; } }\n.glyphicon-search                 { &:before { content: \"\\e003\"; } }\n.glyphicon-heart                  { &:before { content: \"\\e005\"; } }\n.glyphicon-star                   { &:before { content: \"\\e006\"; } }\n.glyphicon-star-empty             { &:before { content: \"\\e007\"; } }\n.glyphicon-user                   { &:before { content: \"\\e008\"; } }\n.glyphicon-film                   { &:before { content: \"\\e009\"; } }\n.glyphicon-th-large               { &:before { content: \"\\e010\"; } }\n.glyphicon-th                     { &:before { content: \"\\e011\"; } }\n.glyphicon-th-list                { &:before { content: \"\\e012\"; } }\n.glyphicon-ok                     { &:before { content: \"\\e013\"; } }\n.glyphicon-remove                 { &:before { content: \"\\e014\"; } }\n.glyphicon-zoom-in                { &:before { content: \"\\e015\"; } }\n.glyphicon-zoom-out               { &:before { content: \"\\e016\"; } }\n.glyphicon-off                    { &:before { content: \"\\e017\"; } }\n.glyphicon-signal                 { &:before { content: \"\\e018\"; } }\n.glyphicon-cog                    { &:before { content: \"\\e019\"; } }\n.glyphicon-trash                  { &:before { content: \"\\e020\"; } }\n.glyphicon-home                   { &:before { content: \"\\e021\"; } }\n.glyphicon-file                   { &:before { content: \"\\e022\"; } }\n.glyphicon-time                   { &:before { content: \"\\e023\"; } }\n.glyphicon-road                   { &:before { content: \"\\e024\"; } }\n.glyphicon-download-alt           { &:before { content: \"\\e025\"; } }\n.glyphicon-download               { &:before { content: \"\\e026\"; } }\n.glyphicon-upload                 { &:before { content: \"\\e027\"; } }\n.glyphicon-inbox                  { &:before { content: \"\\e028\"; } }\n.glyphicon-play-circle            { &:before { content: \"\\e029\"; } }\n.glyphicon-repeat                 { &:before { content: \"\\e030\"; } }\n.glyphicon-refresh                { &:before { content: \"\\e031\"; } }\n.glyphicon-list-alt               { &:before { content: \"\\e032\"; } }\n.glyphicon-lock                   { &:before { content: \"\\e033\"; } }\n.glyphicon-flag                   { &:before { content: \"\\e034\"; } }\n.glyphicon-headphones             { &:before { content: \"\\e035\"; } }\n.glyphicon-volume-off             { &:before { content: \"\\e036\"; } }\n.glyphicon-volume-down            { &:before { content: \"\\e037\"; } }\n.glyphicon-volume-up              { &:before { content: \"\\e038\"; } }\n.glyphicon-qrcode                 { &:before { content: \"\\e039\"; } }\n.glyphicon-barcode                { &:before { content: \"\\e040\"; } }\n.glyphicon-tag                    { &:before { content: \"\\e041\"; } }\n.glyphicon-tags                   { &:before { content: \"\\e042\"; } }\n.glyphicon-book                   { &:before { content: \"\\e043\"; } }\n.glyphicon-bookmark               { &:before { content: \"\\e044\"; } }\n.glyphicon-print                  { &:before { content: \"\\e045\"; } }\n.glyphicon-camera                 { &:before { content: \"\\e046\"; } }\n.glyphicon-font                   { &:before { content: \"\\e047\"; } }\n.glyphicon-bold                   { &:before { content: \"\\e048\"; } }\n.glyphicon-italic                 { &:before { content: \"\\e049\"; } }\n.glyphicon-text-height            { &:before { content: \"\\e050\"; } }\n.glyphicon-text-width             { &:before { content: \"\\e051\"; } }\n.glyphicon-align-left             { &:before { content: \"\\e052\"; } }\n.glyphicon-align-center           { &:before { content: \"\\e053\"; } }\n.glyphicon-align-right            { &:before { content: \"\\e054\"; } }\n.glyphicon-align-justify          { &:before { content: \"\\e055\"; } }\n.glyphicon-list                   { &:before { content: \"\\e056\"; } }\n.glyphicon-indent-left            { &:before { content: \"\\e057\"; } }\n.glyphicon-indent-right           { &:before { content: \"\\e058\"; } }\n.glyphicon-facetime-video         { &:before { content: \"\\e059\"; } }\n.glyphicon-picture                { &:before { content: \"\\e060\"; } }\n.glyphicon-map-marker             { &:before { content: \"\\e062\"; } }\n.glyphicon-adjust                 { &:before { content: \"\\e063\"; } }\n.glyphicon-tint                   { &:before { content: \"\\e064\"; } }\n.glyphicon-edit                   { &:before { content: \"\\e065\"; } }\n.glyphicon-share                  { &:before { content: \"\\e066\"; } }\n.glyphicon-check                  { &:before { content: \"\\e067\"; } }\n.glyphicon-move                   { &:before { content: \"\\e068\"; } }\n.glyphicon-step-backward          { &:before { content: \"\\e069\"; } }\n.glyphicon-fast-backward          { &:before { content: \"\\e070\"; } }\n.glyphicon-backward               { &:before { content: \"\\e071\"; } }\n.glyphicon-play                   { &:before { content: \"\\e072\"; } }\n.glyphicon-pause                  { &:before { content: \"\\e073\"; } }\n.glyphicon-stop                   { &:before { content: \"\\e074\"; } }\n.glyphicon-forward                { &:before { content: \"\\e075\"; } }\n.glyphicon-fast-forward           { &:before { content: \"\\e076\"; } }\n.glyphicon-step-forward           { &:before { content: \"\\e077\"; } }\n.glyphicon-eject                  { &:before { content: \"\\e078\"; } }\n.glyphicon-chevron-left           { &:before { content: \"\\e079\"; } }\n.glyphicon-chevron-right          { &:before { content: \"\\e080\"; } }\n.glyphicon-plus-sign              { &:before { content: \"\\e081\"; } }\n.glyphicon-minus-sign             { &:before { content: \"\\e082\"; } }\n.glyphicon-remove-sign            { &:before { content: \"\\e083\"; } }\n.glyphicon-ok-sign                { &:before { content: \"\\e084\"; } }\n.glyphicon-question-sign          { &:before { content: \"\\e085\"; } }\n.glyphicon-info-sign              { &:before { content: \"\\e086\"; } }\n.glyphicon-screenshot             { &:before { content: \"\\e087\"; } }\n.glyphicon-remove-circle          { &:before { content: \"\\e088\"; } }\n.glyphicon-ok-circle              { &:before { content: \"\\e089\"; } }\n.glyphicon-ban-circle             { &:before { content: \"\\e090\"; } }\n.glyphicon-arrow-left             { &:before { content: \"\\e091\"; } }\n.glyphicon-arrow-right            { &:before { content: \"\\e092\"; } }\n.glyphicon-arrow-up               { &:before { content: \"\\e093\"; } }\n.glyphicon-arrow-down             { &:before { content: \"\\e094\"; } }\n.glyphicon-share-alt              { &:before { content: \"\\e095\"; } }\n.glyphicon-resize-full            { &:before { content: \"\\e096\"; } }\n.glyphicon-resize-small           { &:before { content: \"\\e097\"; } }\n.glyphicon-exclamation-sign       { &:before { content: \"\\e101\"; } }\n.glyphicon-gift                   { &:before { content: \"\\e102\"; } }\n.glyphicon-leaf                   { &:before { content: \"\\e103\"; } }\n.glyphicon-fire                   { &:before { content: \"\\e104\"; } }\n.glyphicon-eye-open               { &:before { content: \"\\e105\"; } }\n.glyphicon-eye-close              { &:before { content: \"\\e106\"; } }\n.glyphicon-warning-sign           { &:before { content: \"\\e107\"; } }\n.glyphicon-plane                  { &:before { content: \"\\e108\"; } }\n.glyphicon-calendar               { &:before { content: \"\\e109\"; } }\n.glyphicon-random                 { &:before { content: \"\\e110\"; } }\n.glyphicon-comment                { &:before { content: \"\\e111\"; } }\n.glyphicon-magnet                 { &:before { content: \"\\e112\"; } }\n.glyphicon-chevron-up             { &:before { content: \"\\e113\"; } }\n.glyphicon-chevron-down           { &:before { content: \"\\e114\"; } }\n.glyphicon-retweet                { &:before { content: \"\\e115\"; } }\n.glyphicon-shopping-cart          { &:before { content: \"\\e116\"; } }\n.glyphicon-folder-close           { &:before { content: \"\\e117\"; } }\n.glyphicon-folder-open            { &:before { content: \"\\e118\"; } }\n.glyphicon-resize-vertical        { &:before { content: \"\\e119\"; } }\n.glyphicon-resize-horizontal      { &:before { content: \"\\e120\"; } }\n.glyphicon-hdd                    { &:before { content: \"\\e121\"; } }\n.glyphicon-bullhorn               { &:before { content: \"\\e122\"; } }\n.glyphicon-bell                   { &:before { content: \"\\e123\"; } }\n.glyphicon-certificate            { &:before { content: \"\\e124\"; } }\n.glyphicon-thumbs-up              { &:before { content: \"\\e125\"; } }\n.glyphicon-thumbs-down            { &:before { content: \"\\e126\"; } }\n.glyphicon-hand-right             { &:before { content: \"\\e127\"; } }\n.glyphicon-hand-left              { &:before { content: \"\\e128\"; } }\n.glyphicon-hand-up                { &:before { content: \"\\e129\"; } }\n.glyphicon-hand-down              { &:before { content: \"\\e130\"; } }\n.glyphicon-circle-arrow-right     { &:before { content: \"\\e131\"; } }\n.glyphicon-circle-arrow-left      { &:before { content: \"\\e132\"; } }\n.glyphicon-circle-arrow-up        { &:before { content: \"\\e133\"; } }\n.glyphicon-circle-arrow-down      { &:before { content: \"\\e134\"; } }\n.glyphicon-globe                  { &:before { content: \"\\e135\"; } }\n.glyphicon-wrench                 { &:before { content: \"\\e136\"; } }\n.glyphicon-tasks                  { &:before { content: \"\\e137\"; } }\n.glyphicon-filter                 { &:before { content: \"\\e138\"; } }\n.glyphicon-briefcase              { &:before { content: \"\\e139\"; } }\n.glyphicon-fullscreen             { &:before { content: \"\\e140\"; } }\n.glyphicon-dashboard              { &:before { content: \"\\e141\"; } }\n.glyphicon-paperclip              { &:before { content: \"\\e142\"; } }\n.glyphicon-heart-empty            { &:before { content: \"\\e143\"; } }\n.glyphicon-link                   { &:before { content: \"\\e144\"; } }\n.glyphicon-phone                  { &:before { content: \"\\e145\"; } }\n.glyphicon-pushpin                { &:before { content: \"\\e146\"; } }\n.glyphicon-usd                    { &:before { content: \"\\e148\"; } }\n.glyphicon-gbp                    { &:before { content: \"\\e149\"; } }\n.glyphicon-sort                   { &:before { content: \"\\e150\"; } }\n.glyphicon-sort-by-alphabet       { &:before { content: \"\\e151\"; } }\n.glyphicon-sort-by-alphabet-alt   { &:before { content: \"\\e152\"; } }\n.glyphicon-sort-by-order          { &:before { content: \"\\e153\"; } }\n.glyphicon-sort-by-order-alt      { &:before { content: \"\\e154\"; } }\n.glyphicon-sort-by-attributes     { &:before { content: \"\\e155\"; } }\n.glyphicon-sort-by-attributes-alt { &:before { content: \"\\e156\"; } }\n.glyphicon-unchecked              { &:before { content: \"\\e157\"; } }\n.glyphicon-expand                 { &:before { content: \"\\e158\"; } }\n.glyphicon-collapse-down          { &:before { content: \"\\e159\"; } }\n.glyphicon-collapse-up            { &:before { content: \"\\e160\"; } }\n.glyphicon-log-in                 { &:before { content: \"\\e161\"; } }\n.glyphicon-flash                  { &:before { content: \"\\e162\"; } }\n.glyphicon-log-out                { &:before { content: \"\\e163\"; } }\n.glyphicon-new-window             { &:before { content: \"\\e164\"; } }\n.glyphicon-record                 { &:before { content: \"\\e165\"; } }\n.glyphicon-save                   { &:before { content: \"\\e166\"; } }\n.glyphicon-open                   { &:before { content: \"\\e167\"; } }\n.glyphicon-saved                  { &:before { content: \"\\e168\"; } }\n.glyphicon-import                 { &:before { content: \"\\e169\"; } }\n.glyphicon-export                 { &:before { content: \"\\e170\"; } }\n.glyphicon-send                   { &:before { content: \"\\e171\"; } }\n.glyphicon-floppy-disk            { &:before { content: \"\\e172\"; } }\n.glyphicon-floppy-saved           { &:before { content: \"\\e173\"; } }\n.glyphicon-floppy-remove          { &:before { content: \"\\e174\"; } }\n.glyphicon-floppy-save            { &:before { content: \"\\e175\"; } }\n.glyphicon-floppy-open            { &:before { content: \"\\e176\"; } }\n.glyphicon-credit-card            { &:before { content: \"\\e177\"; } }\n.glyphicon-transfer               { &:before { content: \"\\e178\"; } }\n.glyphicon-cutlery                { &:before { content: \"\\e179\"; } }\n.glyphicon-header                 { &:before { content: \"\\e180\"; } }\n.glyphicon-compressed             { &:before { content: \"\\e181\"; } }\n.glyphicon-earphone               { &:before { content: \"\\e182\"; } }\n.glyphicon-phone-alt              { &:before { content: \"\\e183\"; } }\n.glyphicon-tower                  { &:before { content: \"\\e184\"; } }\n.glyphicon-stats                  { &:before { content: \"\\e185\"; } }\n.glyphicon-sd-video               { &:before { content: \"\\e186\"; } }\n.glyphicon-hd-video               { &:before { content: \"\\e187\"; } }\n.glyphicon-subtitles              { &:before { content: \"\\e188\"; } }\n.glyphicon-sound-stereo           { &:before { content: \"\\e189\"; } }\n.glyphicon-sound-dolby            { &:before { content: \"\\e190\"; } }\n.glyphicon-sound-5-1              { &:before { content: \"\\e191\"; } }\n.glyphicon-sound-6-1              { &:before { content: \"\\e192\"; } }\n.glyphicon-sound-7-1              { &:before { content: \"\\e193\"; } }\n.glyphicon-copyright-mark         { &:before { content: \"\\e194\"; } }\n.glyphicon-registration-mark      { &:before { content: \"\\e195\"; } }\n.glyphicon-cloud-download         { &:before { content: \"\\e197\"; } }\n.glyphicon-cloud-upload           { &:before { content: \"\\e198\"; } }\n.glyphicon-tree-conifer           { &:before { content: \"\\e199\"; } }\n.glyphicon-tree-deciduous         { &:before { content: \"\\e200\"; } }\n.glyphicon-cd                     { &:before { content: \"\\e201\"; } }\n.glyphicon-save-file              { &:before { content: \"\\e202\"; } }\n.glyphicon-open-file              { &:before { content: \"\\e203\"; } }\n.glyphicon-level-up               { &:before { content: \"\\e204\"; } }\n.glyphicon-copy                   { &:before { content: \"\\e205\"; } }\n.glyphicon-paste                  { &:before { content: \"\\e206\"; } }\n// The following 2 Glyphicons are omitted for the time being because\n// they currently use Unicode codepoints that are outside the\n// Basic Multilingual Plane (BMP). Older buggy versions of WebKit can't handle\n// non-BMP codepoints in CSS string escapes, and thus can't display these two icons.\n// Notably, the bug affects some older versions of the Android Browser.\n// More info: https://github.com/twbs/bootstrap/issues/10106\n// .glyphicon-door                   { &:before { content: \"\\1f6aa\"; } }\n// .glyphicon-key                    { &:before { content: \"\\1f511\"; } }\n.glyphicon-alert                  { &:before { content: \"\\e209\"; } }\n.glyphicon-equalizer              { &:before { content: \"\\e210\"; } }\n.glyphicon-king                   { &:before { content: \"\\e211\"; } }\n.glyphicon-queen                  { &:before { content: \"\\e212\"; } }\n.glyphicon-pawn                   { &:before { content: \"\\e213\"; } }\n.glyphicon-bishop                 { &:before { content: \"\\e214\"; } }\n.glyphicon-knight                 { &:before { content: \"\\e215\"; } }\n.glyphicon-baby-formula           { &:before { content: \"\\e216\"; } }\n.glyphicon-tent                   { &:before { content: \"\\26fa\"; } }\n.glyphicon-blackboard             { &:before { content: \"\\e218\"; } }\n.glyphicon-bed                    { &:before { content: \"\\e219\"; } }\n.glyphicon-apple                  { &:before { content: \"\\f8ff\"; } }\n.glyphicon-erase                  { &:before { content: \"\\e221\"; } }\n.glyphicon-hourglass              { &:before { content: \"\\231b\"; } }\n.glyphicon-lamp                   { &:before { content: \"\\e223\"; } }\n.glyphicon-duplicate              { &:before { content: \"\\e224\"; } }\n.glyphicon-piggy-bank             { &:before { content: \"\\e225\"; } }\n.glyphicon-scissors               { &:before { content: \"\\e226\"; } }\n.glyphicon-bitcoin                { &:before { content: \"\\e227\"; } }\n.glyphicon-btc                    { &:before { content: \"\\e227\"; } }\n.glyphicon-xbt                    { &:before { content: \"\\e227\"; } }\n.glyphicon-yen                    { &:before { content: \"\\00a5\"; } }\n.glyphicon-jpy                    { &:before { content: \"\\00a5\"; } }\n.glyphicon-ruble                  { &:before { content: \"\\20bd\"; } }\n.glyphicon-rub                    { &:before { content: \"\\20bd\"; } }\n.glyphicon-scale                  { &:before { content: \"\\e230\"; } }\n.glyphicon-ice-lolly              { &:before { content: \"\\e231\"; } }\n.glyphicon-ice-lolly-tasted       { &:before { content: \"\\e232\"; } }\n.glyphicon-education              { &:before { content: \"\\e233\"; } }\n.glyphicon-option-horizontal      { &:before { content: \"\\e234\"; } }\n.glyphicon-option-vertical        { &:before { content: \"\\e235\"; } }\n.glyphicon-menu-hamburger         { &:before { content: \"\\e236\"; } }\n.glyphicon-modal-window           { &:before { content: \"\\e237\"; } }\n.glyphicon-oil                    { &:before { content: \"\\e238\"; } }\n.glyphicon-grain                  { &:before { content: \"\\e239\"; } }\n.glyphicon-sunglasses             { &:before { content: \"\\e240\"; } }\n.glyphicon-text-size              { &:before { content: \"\\e241\"; } }\n.glyphicon-text-color             { &:before { content: \"\\e242\"; } }\n.glyphicon-text-background        { &:before { content: \"\\e243\"; } }\n.glyphicon-object-align-top       { &:before { content: \"\\e244\"; } }\n.glyphicon-object-align-bottom    { &:before { content: \"\\e245\"; } }\n.glyphicon-object-align-horizontal{ &:before { content: \"\\e246\"; } }\n.glyphicon-object-align-left      { &:before { content: \"\\e247\"; } }\n.glyphicon-object-align-vertical  { &:before { content: \"\\e248\"; } }\n.glyphicon-object-align-right     { &:before { content: \"\\e249\"; } }\n.glyphicon-triangle-right         { &:before { content: \"\\e250\"; } }\n.glyphicon-triangle-left          { &:before { content: \"\\e251\"; } }\n.glyphicon-triangle-bottom        { &:before { content: \"\\e252\"; } }\n.glyphicon-triangle-top           { &:before { content: \"\\e253\"; } }\n.glyphicon-console                { &:before { content: \"\\e254\"; } }\n.glyphicon-superscript            { &:before { content: \"\\e255\"; } }\n.glyphicon-subscript              { &:before { content: \"\\e256\"; } }\n.glyphicon-menu-left              { &:before { content: \"\\e257\"; } }\n.glyphicon-menu-right             { &:before { content: \"\\e258\"; } }\n.glyphicon-menu-down              { &:before { content: \"\\e259\"; } }\n.glyphicon-menu-up                { &:before { content: \"\\e260\"; } }\n","//\n// Scaffolding\n// --------------------------------------------------\n\n\n// Reset the box-sizing\n//\n// Heads up! This reset may cause conflicts with some third-party widgets.\n// For recommendations on resolving such conflicts, see\n// http://getbootstrap.com/getting-started/#third-box-sizing\n* {\n  .box-sizing(border-box);\n}\n*:before,\n*:after {\n  .box-sizing(border-box);\n}\n\n\n// Body reset\n\nhtml {\n  font-size: 10px;\n  -webkit-tap-highlight-color: rgba(0,0,0,0);\n}\n\nbody {\n  font-family: @font-family-base;\n  font-size: @font-size-base;\n  line-height: @line-height-base;\n  color: @text-color;\n  background-color: @body-bg;\n}\n\n// Reset fonts for relevant elements\ninput,\nbutton,\nselect,\ntextarea {\n  font-family: inherit;\n  font-size: inherit;\n  line-height: inherit;\n}\n\n\n// Links\n\na {\n  color: @link-color;\n  text-decoration: none;\n\n  &:hover,\n  &:focus {\n    color: @link-hover-color;\n    text-decoration: @link-hover-decoration;\n  }\n\n  &:focus {\n    .tab-focus();\n  }\n}\n\n\n// Figures\n//\n// We reset this here because previously Normalize had no `figure` margins. This\n// ensures we don't break anyone's use of the element.\n\nfigure {\n  margin: 0;\n}\n\n\n// Images\n\nimg {\n  vertical-align: middle;\n}\n\n// Responsive images (ensure images don't scale beyond their parents)\n.img-responsive {\n  .img-responsive();\n}\n\n// Rounded corners\n.img-rounded {\n  border-radius: @border-radius-large;\n}\n\n// Image thumbnails\n//\n// Heads up! This is mixin-ed into thumbnails.less for `.thumbnail`.\n.img-thumbnail {\n  padding: @thumbnail-padding;\n  line-height: @line-height-base;\n  background-color: @thumbnail-bg;\n  border: 1px solid @thumbnail-border;\n  border-radius: @thumbnail-border-radius;\n  .transition(all .2s ease-in-out);\n\n  // Keep them at most 100% wide\n  .img-responsive(inline-block);\n}\n\n// Perfect circle\n.img-circle {\n  border-radius: 50%; // set radius in percents\n}\n\n\n// Horizontal rules\n\nhr {\n  margin-top:    @line-height-computed;\n  margin-bottom: @line-height-computed;\n  border: 0;\n  border-top: 1px solid @hr-border;\n}\n\n\n// Only display content to screen readers\n//\n// See: http://a11yproject.com/posts/how-to-hide-content/\n\n.sr-only {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  margin: -1px;\n  padding: 0;\n  overflow: hidden;\n  clip: rect(0,0,0,0);\n  border: 0;\n}\n\n// Use in conjunction with .sr-only to only display content when it's focused.\n// Useful for \"Skip to main content\" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1\n// Credit: HTML5 Boilerplate\n\n.sr-only-focusable {\n  &:active,\n  &:focus {\n    position: static;\n    width: auto;\n    height: auto;\n    margin: 0;\n    overflow: visible;\n    clip: auto;\n  }\n}\n\n\n// iOS \"clickable elements\" fix for role=\"button\"\n//\n// Fixes \"clickability\" issue (and more generally, the firing of events such as focus as well)\n// for traditionally non-focusable elements with role=\"button\"\n// see https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile\n\n[role=\"button\"] {\n  cursor: pointer;\n}\n","// Vendor Prefixes\n//\n// All vendor mixins are deprecated as of v3.2.0 due to the introduction of\n// Autoprefixer in our Gruntfile. They have been removed in v4.\n\n// - Animations\n// - Backface visibility\n// - Box shadow\n// - Box sizing\n// - Content columns\n// - Hyphens\n// - Placeholder text\n// - Transformations\n// - Transitions\n// - User Select\n\n\n// Animations\n.animation(@animation) {\n  -webkit-animation: @animation;\n       -o-animation: @animation;\n          animation: @animation;\n}\n.animation-name(@name) {\n  -webkit-animation-name: @name;\n          animation-name: @name;\n}\n.animation-duration(@duration) {\n  -webkit-animation-duration: @duration;\n          animation-duration: @duration;\n}\n.animation-timing-function(@timing-function) {\n  -webkit-animation-timing-function: @timing-function;\n          animation-timing-function: @timing-function;\n}\n.animation-delay(@delay) {\n  -webkit-animation-delay: @delay;\n          animation-delay: @delay;\n}\n.animation-iteration-count(@iteration-count) {\n  -webkit-animation-iteration-count: @iteration-count;\n          animation-iteration-count: @iteration-count;\n}\n.animation-direction(@direction) {\n  -webkit-animation-direction: @direction;\n          animation-direction: @direction;\n}\n.animation-fill-mode(@fill-mode) {\n  -webkit-animation-fill-mode: @fill-mode;\n          animation-fill-mode: @fill-mode;\n}\n\n// Backface visibility\n// Prevent browsers from flickering when using CSS 3D transforms.\n// Default value is `visible`, but can be changed to `hidden`\n\n.backface-visibility(@visibility) {\n  -webkit-backface-visibility: @visibility;\n     -moz-backface-visibility: @visibility;\n          backface-visibility: @visibility;\n}\n\n// Drop shadows\n//\n// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's\n// supported browsers that have box shadow capabilities now support it.\n\n.box-shadow(@shadow) {\n  -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n          box-shadow: @shadow;\n}\n\n// Box sizing\n.box-sizing(@boxmodel) {\n  -webkit-box-sizing: @boxmodel;\n     -moz-box-sizing: @boxmodel;\n          box-sizing: @boxmodel;\n}\n\n// CSS3 Content Columns\n.content-columns(@column-count; @column-gap: @grid-gutter-width) {\n  -webkit-column-count: @column-count;\n     -moz-column-count: @column-count;\n          column-count: @column-count;\n  -webkit-column-gap: @column-gap;\n     -moz-column-gap: @column-gap;\n          column-gap: @column-gap;\n}\n\n// Optional hyphenation\n.hyphens(@mode: auto) {\n  word-wrap: break-word;\n  -webkit-hyphens: @mode;\n     -moz-hyphens: @mode;\n      -ms-hyphens: @mode; // IE10+\n       -o-hyphens: @mode;\n          hyphens: @mode;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n  // Firefox\n  &::-moz-placeholder {\n    color: @color;\n    opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526\n  }\n  &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+\n  &::-webkit-input-placeholder  { color: @color; } // Safari and Chrome\n}\n\n// Transformations\n.scale(@ratio) {\n  -webkit-transform: scale(@ratio);\n      -ms-transform: scale(@ratio); // IE9 only\n       -o-transform: scale(@ratio);\n          transform: scale(@ratio);\n}\n.scale(@ratioX; @ratioY) {\n  -webkit-transform: scale(@ratioX, @ratioY);\n      -ms-transform: scale(@ratioX, @ratioY); // IE9 only\n       -o-transform: scale(@ratioX, @ratioY);\n          transform: scale(@ratioX, @ratioY);\n}\n.scaleX(@ratio) {\n  -webkit-transform: scaleX(@ratio);\n      -ms-transform: scaleX(@ratio); // IE9 only\n       -o-transform: scaleX(@ratio);\n          transform: scaleX(@ratio);\n}\n.scaleY(@ratio) {\n  -webkit-transform: scaleY(@ratio);\n      -ms-transform: scaleY(@ratio); // IE9 only\n       -o-transform: scaleY(@ratio);\n          transform: scaleY(@ratio);\n}\n.skew(@x; @y) {\n  -webkit-transform: skewX(@x) skewY(@y);\n      -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+\n       -o-transform: skewX(@x) skewY(@y);\n          transform: skewX(@x) skewY(@y);\n}\n.translate(@x; @y) {\n  -webkit-transform: translate(@x, @y);\n      -ms-transform: translate(@x, @y); // IE9 only\n       -o-transform: translate(@x, @y);\n          transform: translate(@x, @y);\n}\n.translate3d(@x; @y; @z) {\n  -webkit-transform: translate3d(@x, @y, @z);\n          transform: translate3d(@x, @y, @z);\n}\n.rotate(@degrees) {\n  -webkit-transform: rotate(@degrees);\n      -ms-transform: rotate(@degrees); // IE9 only\n       -o-transform: rotate(@degrees);\n          transform: rotate(@degrees);\n}\n.rotateX(@degrees) {\n  -webkit-transform: rotateX(@degrees);\n      -ms-transform: rotateX(@degrees); // IE9 only\n       -o-transform: rotateX(@degrees);\n          transform: rotateX(@degrees);\n}\n.rotateY(@degrees) {\n  -webkit-transform: rotateY(@degrees);\n      -ms-transform: rotateY(@degrees); // IE9 only\n       -o-transform: rotateY(@degrees);\n          transform: rotateY(@degrees);\n}\n.perspective(@perspective) {\n  -webkit-perspective: @perspective;\n     -moz-perspective: @perspective;\n          perspective: @perspective;\n}\n.perspective-origin(@perspective) {\n  -webkit-perspective-origin: @perspective;\n     -moz-perspective-origin: @perspective;\n          perspective-origin: @perspective;\n}\n.transform-origin(@origin) {\n  -webkit-transform-origin: @origin;\n     -moz-transform-origin: @origin;\n      -ms-transform-origin: @origin; // IE9 only\n          transform-origin: @origin;\n}\n\n\n// Transitions\n\n.transition(@transition) {\n  -webkit-transition: @transition;\n       -o-transition: @transition;\n          transition: @transition;\n}\n.transition-property(@transition-property) {\n  -webkit-transition-property: @transition-property;\n          transition-property: @transition-property;\n}\n.transition-delay(@transition-delay) {\n  -webkit-transition-delay: @transition-delay;\n          transition-delay: @transition-delay;\n}\n.transition-duration(@transition-duration) {\n  -webkit-transition-duration: @transition-duration;\n          transition-duration: @transition-duration;\n}\n.transition-timing-function(@timing-function) {\n  -webkit-transition-timing-function: @timing-function;\n          transition-timing-function: @timing-function;\n}\n.transition-transform(@transition) {\n  -webkit-transition: -webkit-transform @transition;\n     -moz-transition: -moz-transform @transition;\n       -o-transition: -o-transform @transition;\n          transition: transform @transition;\n}\n\n\n// User select\n// For selecting text on the page\n\n.user-select(@select) {\n  -webkit-user-select: @select;\n     -moz-user-select: @select;\n      -ms-user-select: @select; // IE10+\n          user-select: @select;\n}\n","// WebKit-style focus\n\n.tab-focus() {\n  // Default\n  outline: thin dotted;\n  // WebKit\n  outline: 5px auto -webkit-focus-ring-color;\n  outline-offset: -2px;\n}\n","// Image Mixins\n// - Responsive image\n// - Retina image\n\n\n// Responsive image\n//\n// Keep images from scaling beyond the width of their parents.\n.img-responsive(@display: block) {\n  display: @display;\n  max-width: 100%; // Part 1: Set a maximum relative to the parent\n  height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching\n}\n\n\n// Retina image\n//\n// Short retina mixin for setting background-image and -size. Note that the\n// spelling of `min--moz-device-pixel-ratio` is intentional.\n.img-retina(@file-1x; @file-2x; @width-1x; @height-1x) {\n  background-image: url(\"@{file-1x}\");\n\n  @media\n  only screen and (-webkit-min-device-pixel-ratio: 2),\n  only screen and (   min--moz-device-pixel-ratio: 2),\n  only screen and (     -o-min-device-pixel-ratio: 2/1),\n  only screen and (        min-device-pixel-ratio: 2),\n  only screen and (                min-resolution: 192dpi),\n  only screen and (                min-resolution: 2dppx) {\n    background-image: url(\"@{file-2x}\");\n    background-size: @width-1x @height-1x;\n  }\n}\n","//\n// Typography\n// --------------------------------------------------\n\n\n// Headings\n// -------------------------\n\nh1, h2, h3, h4, h5, h6,\n.h1, .h2, .h3, .h4, .h5, .h6 {\n  font-family: @headings-font-family;\n  font-weight: @headings-font-weight;\n  line-height: @headings-line-height;\n  color: @headings-color;\n\n  small,\n  .small {\n    font-weight: normal;\n    line-height: 1;\n    color: @headings-small-color;\n  }\n}\n\nh1, .h1,\nh2, .h2,\nh3, .h3 {\n  margin-top: @line-height-computed;\n  margin-bottom: (@line-height-computed / 2);\n\n  small,\n  .small {\n    font-size: 65%;\n  }\n}\nh4, .h4,\nh5, .h5,\nh6, .h6 {\n  margin-top: (@line-height-computed / 2);\n  margin-bottom: (@line-height-computed / 2);\n\n  small,\n  .small {\n    font-size: 75%;\n  }\n}\n\nh1, .h1 { font-size: @font-size-h1; }\nh2, .h2 { font-size: @font-size-h2; }\nh3, .h3 { font-size: @font-size-h3; }\nh4, .h4 { font-size: @font-size-h4; }\nh5, .h5 { font-size: @font-size-h5; }\nh6, .h6 { font-size: @font-size-h6; }\n\n\n// Body text\n// -------------------------\n\np {\n  margin: 0 0 (@line-height-computed / 2);\n}\n\n.lead {\n  margin-bottom: @line-height-computed;\n  font-size: floor((@font-size-base * 1.15));\n  font-weight: 300;\n  line-height: 1.4;\n\n  @media (min-width: @screen-sm-min) {\n    font-size: (@font-size-base * 1.5);\n  }\n}\n\n\n// Emphasis & misc\n// -------------------------\n\n// Ex: (12px small font / 14px base font) * 100% = about 85%\nsmall,\n.small {\n  font-size: floor((100% * @font-size-small / @font-size-base));\n}\n\nmark,\n.mark {\n  background-color: @state-warning-bg;\n  padding: .2em;\n}\n\n// Alignment\n.text-left           { text-align: left; }\n.text-right          { text-align: right; }\n.text-center         { text-align: center; }\n.text-justify        { text-align: justify; }\n.text-nowrap         { white-space: nowrap; }\n\n// Transformation\n.text-lowercase      { text-transform: lowercase; }\n.text-uppercase      { text-transform: uppercase; }\n.text-capitalize     { text-transform: capitalize; }\n\n// Contextual colors\n.text-muted {\n  color: @text-muted;\n}\n.text-primary {\n  .text-emphasis-variant(@brand-primary);\n}\n.text-success {\n  .text-emphasis-variant(@state-success-text);\n}\n.text-info {\n  .text-emphasis-variant(@state-info-text);\n}\n.text-warning {\n  .text-emphasis-variant(@state-warning-text);\n}\n.text-danger {\n  .text-emphasis-variant(@state-danger-text);\n}\n\n// Contextual backgrounds\n// For now we'll leave these alongside the text classes until v4 when we can\n// safely shift things around (per SemVer rules).\n.bg-primary {\n  // Given the contrast here, this is the only class to have its color inverted\n  // automatically.\n  color: #fff;\n  .bg-variant(@brand-primary);\n}\n.bg-success {\n  .bg-variant(@state-success-bg);\n}\n.bg-info {\n  .bg-variant(@state-info-bg);\n}\n.bg-warning {\n  .bg-variant(@state-warning-bg);\n}\n.bg-danger {\n  .bg-variant(@state-danger-bg);\n}\n\n\n// Page header\n// -------------------------\n\n.page-header {\n  padding-bottom: ((@line-height-computed / 2) - 1);\n  margin: (@line-height-computed * 2) 0 @line-height-computed;\n  border-bottom: 1px solid @page-header-border-color;\n}\n\n\n// Lists\n// -------------------------\n\n// Unordered and Ordered lists\nul,\nol {\n  margin-top: 0;\n  margin-bottom: (@line-height-computed / 2);\n  ul,\n  ol {\n    margin-bottom: 0;\n  }\n}\n\n// List options\n\n// Unstyled keeps list items block level, just removes default browser padding and list-style\n.list-unstyled {\n  padding-left: 0;\n  list-style: none;\n}\n\n// Inline turns list items into inline-block\n.list-inline {\n  .list-unstyled();\n  margin-left: -5px;\n\n  > li {\n    display: inline-block;\n    padding-left: 5px;\n    padding-right: 5px;\n  }\n}\n\n// Description Lists\ndl {\n  margin-top: 0; // Remove browser default\n  margin-bottom: @line-height-computed;\n}\ndt,\ndd {\n  line-height: @line-height-base;\n}\ndt {\n  font-weight: bold;\n}\ndd {\n  margin-left: 0; // Undo browser default\n}\n\n// Horizontal description lists\n//\n// Defaults to being stacked without any of the below styles applied, until the\n// grid breakpoint is reached (default of ~768px).\n\n.dl-horizontal {\n  dd {\n    &:extend(.clearfix all); // Clear the floated `dt` if an empty `dd` is present\n  }\n\n  @media (min-width: @dl-horizontal-breakpoint) {\n    dt {\n      float: left;\n      width: (@dl-horizontal-offset - 20);\n      clear: left;\n      text-align: right;\n      .text-overflow();\n    }\n    dd {\n      margin-left: @dl-horizontal-offset;\n    }\n  }\n}\n\n\n// Misc\n// -------------------------\n\n// Abbreviations and acronyms\nabbr[title],\n// Add data-* attribute to help out our tooltip plugin, per https://github.com/twbs/bootstrap/issues/5257\nabbr[data-original-title] {\n  cursor: help;\n  border-bottom: 1px dotted @abbr-border-color;\n}\n.initialism {\n  font-size: 90%;\n  .text-uppercase();\n}\n\n// Blockquotes\nblockquote {\n  padding: (@line-height-computed / 2) @line-height-computed;\n  margin: 0 0 @line-height-computed;\n  font-size: @blockquote-font-size;\n  border-left: 5px solid @blockquote-border-color;\n\n  p,\n  ul,\n  ol {\n    &:last-child {\n      margin-bottom: 0;\n    }\n  }\n\n  // Note: Deprecated small and .small as of v3.1.0\n  // Context: https://github.com/twbs/bootstrap/issues/11660\n  footer,\n  small,\n  .small {\n    display: block;\n    font-size: 80%; // back to default font-size\n    line-height: @line-height-base;\n    color: @blockquote-small-color;\n\n    &:before {\n      content: '\\2014 \\00A0'; // em dash, nbsp\n    }\n  }\n}\n\n// Opposite alignment of blockquote\n//\n// Heads up: `blockquote.pull-right` has been deprecated as of v3.1.0.\n.blockquote-reverse,\nblockquote.pull-right {\n  padding-right: 15px;\n  padding-left: 0;\n  border-right: 5px solid @blockquote-border-color;\n  border-left: 0;\n  text-align: right;\n\n  // Account for citation\n  footer,\n  small,\n  .small {\n    &:before { content: ''; }\n    &:after {\n      content: '\\00A0 \\2014'; // nbsp, em dash\n    }\n  }\n}\n\n// Addresses\naddress {\n  margin-bottom: @line-height-computed;\n  font-style: normal;\n  line-height: @line-height-base;\n}\n","// Typography\n\n.text-emphasis-variant(@color) {\n  color: @color;\n  a&:hover,\n  a&:focus {\n    color: darken(@color, 10%);\n  }\n}\n","// Contextual backgrounds\n\n.bg-variant(@color) {\n  background-color: @color;\n  a&:hover,\n  a&:focus {\n    background-color: darken(@color, 10%);\n  }\n}\n","// Text overflow\n// Requires inline-block or block for proper styling\n\n.text-overflow() {\n  overflow: hidden;\n  text-overflow: ellipsis;\n  white-space: nowrap;\n}\n","//\n// Code (inline and block)\n// --------------------------------------------------\n\n\n// Inline and block code styles\ncode,\nkbd,\npre,\nsamp {\n  font-family: @font-family-monospace;\n}\n\n// Inline code\ncode {\n  padding: 2px 4px;\n  font-size: 90%;\n  color: @code-color;\n  background-color: @code-bg;\n  border-radius: @border-radius-base;\n}\n\n// User input typically entered via keyboard\nkbd {\n  padding: 2px 4px;\n  font-size: 90%;\n  color: @kbd-color;\n  background-color: @kbd-bg;\n  border-radius: @border-radius-small;\n  box-shadow: inset 0 -1px 0 rgba(0,0,0,.25);\n\n  kbd {\n    padding: 0;\n    font-size: 100%;\n    font-weight: bold;\n    box-shadow: none;\n  }\n}\n\n// Blocks of code\npre {\n  display: block;\n  padding: ((@line-height-computed - 1) / 2);\n  margin: 0 0 (@line-height-computed / 2);\n  font-size: (@font-size-base - 1); // 14px to 13px\n  line-height: @line-height-base;\n  word-break: break-all;\n  word-wrap: break-word;\n  color: @pre-color;\n  background-color: @pre-bg;\n  border: 1px solid @pre-border-color;\n  border-radius: @border-radius-base;\n\n  // Account for some code outputs that place code tags in pre tags\n  code {\n    padding: 0;\n    font-size: inherit;\n    color: inherit;\n    white-space: pre-wrap;\n    background-color: transparent;\n    border-radius: 0;\n  }\n}\n\n// Enable scrollable blocks of code\n.pre-scrollable {\n  max-height: @pre-scrollable-max-height;\n  overflow-y: scroll;\n}\n","//\n// Grid system\n// --------------------------------------------------\n\n\n// Container widths\n//\n// Set the container width, and override it for fixed navbars in media queries.\n\n.container {\n  .container-fixed();\n\n  @media (min-width: @screen-sm-min) {\n    width: @container-sm;\n  }\n  @media (min-width: @screen-md-min) {\n    width: @container-md;\n  }\n  @media (min-width: @screen-lg-min) {\n    width: @container-lg;\n  }\n}\n\n\n// Fluid container\n//\n// Utilizes the mixin meant for fixed width containers, but without any defined\n// width for fluid, full width layouts.\n\n.container-fluid {\n  .container-fixed();\n}\n\n\n// Row\n//\n// Rows contain and clear the floats of your columns.\n\n.row {\n  .make-row();\n}\n\n\n// Columns\n//\n// Common styles for small and large grid columns\n\n.make-grid-columns();\n\n\n// Extra small grid\n//\n// Columns, offsets, pushes, and pulls for extra small devices like\n// smartphones.\n\n.make-grid(xs);\n\n\n// Small grid\n//\n// Columns, offsets, pushes, and pulls for the small device range, from phones\n// to tablets.\n\n@media (min-width: @screen-sm-min) {\n  .make-grid(sm);\n}\n\n\n// Medium grid\n//\n// Columns, offsets, pushes, and pulls for the desktop device range.\n\n@media (min-width: @screen-md-min) {\n  .make-grid(md);\n}\n\n\n// Large grid\n//\n// Columns, offsets, pushes, and pulls for the large desktop device range.\n\n@media (min-width: @screen-lg-min) {\n  .make-grid(lg);\n}\n","// Grid system\n//\n// Generate semantic grid columns with these mixins.\n\n// Centered container element\n.container-fixed(@gutter: @grid-gutter-width) {\n  margin-right: auto;\n  margin-left: auto;\n  padding-left:  floor((@gutter / 2));\n  padding-right: ceil((@gutter / 2));\n  &:extend(.clearfix all);\n}\n\n// Creates a wrapper for a series of columns\n.make-row(@gutter: @grid-gutter-width) {\n  margin-left:  ceil((@gutter / -2));\n  margin-right: floor((@gutter / -2));\n  &:extend(.clearfix all);\n}\n\n// Generate the extra small columns\n.make-xs-column(@columns; @gutter: @grid-gutter-width) {\n  position: relative;\n  float: left;\n  width: percentage((@columns / @grid-columns));\n  min-height: 1px;\n  padding-left:  (@gutter / 2);\n  padding-right: (@gutter / 2);\n}\n.make-xs-column-offset(@columns) {\n  margin-left: percentage((@columns / @grid-columns));\n}\n.make-xs-column-push(@columns) {\n  left: percentage((@columns / @grid-columns));\n}\n.make-xs-column-pull(@columns) {\n  right: percentage((@columns / @grid-columns));\n}\n\n// Generate the small columns\n.make-sm-column(@columns; @gutter: @grid-gutter-width) {\n  position: relative;\n  min-height: 1px;\n  padding-left:  (@gutter / 2);\n  padding-right: (@gutter / 2);\n\n  @media (min-width: @screen-sm-min) {\n    float: left;\n    width: percentage((@columns / @grid-columns));\n  }\n}\n.make-sm-column-offset(@columns) {\n  @media (min-width: @screen-sm-min) {\n    margin-left: percentage((@columns / @grid-columns));\n  }\n}\n.make-sm-column-push(@columns) {\n  @media (min-width: @screen-sm-min) {\n    left: percentage((@columns / @grid-columns));\n  }\n}\n.make-sm-column-pull(@columns) {\n  @media (min-width: @screen-sm-min) {\n    right: percentage((@columns / @grid-columns));\n  }\n}\n\n// Generate the medium columns\n.make-md-column(@columns; @gutter: @grid-gutter-width) {\n  position: relative;\n  min-height: 1px;\n  padding-left:  (@gutter / 2);\n  padding-right: (@gutter / 2);\n\n  @media (min-width: @screen-md-min) {\n    float: left;\n    width: percentage((@columns / @grid-columns));\n  }\n}\n.make-md-column-offset(@columns) {\n  @media (min-width: @screen-md-min) {\n    margin-left: percentage((@columns / @grid-columns));\n  }\n}\n.make-md-column-push(@columns) {\n  @media (min-width: @screen-md-min) {\n    left: percentage((@columns / @grid-columns));\n  }\n}\n.make-md-column-pull(@columns) {\n  @media (min-width: @screen-md-min) {\n    right: percentage((@columns / @grid-columns));\n  }\n}\n\n// Generate the large columns\n.make-lg-column(@columns; @gutter: @grid-gutter-width) {\n  position: relative;\n  min-height: 1px;\n  padding-left:  (@gutter / 2);\n  padding-right: (@gutter / 2);\n\n  @media (min-width: @screen-lg-min) {\n    float: left;\n    width: percentage((@columns / @grid-columns));\n  }\n}\n.make-lg-column-offset(@columns) {\n  @media (min-width: @screen-lg-min) {\n    margin-left: percentage((@columns / @grid-columns));\n  }\n}\n.make-lg-column-push(@columns) {\n  @media (min-width: @screen-lg-min) {\n    left: percentage((@columns / @grid-columns));\n  }\n}\n.make-lg-column-pull(@columns) {\n  @media (min-width: @screen-lg-min) {\n    right: percentage((@columns / @grid-columns));\n  }\n}\n","// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `@grid-columns`.\n\n.make-grid-columns() {\n  // Common styles for all sizes of grid columns, widths 1-12\n  .col(@index) { // initial\n    @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n    .col((@index + 1), @item);\n  }\n  .col(@index, @list) when (@index =< @grid-columns) { // general; \"=<\" isn't a typo\n    @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n    .col((@index + 1), ~\"@{list}, @{item}\");\n  }\n  .col(@index, @list) when (@index > @grid-columns) { // terminal\n    @{list} {\n      position: relative;\n      // Prevent columns from collapsing when empty\n      min-height: 1px;\n      // Inner gutter via padding\n      padding-left:  ceil((@grid-gutter-width / 2));\n      padding-right: floor((@grid-gutter-width / 2));\n    }\n  }\n  .col(1); // kickstart it\n}\n\n.float-grid-columns(@class) {\n  .col(@index) { // initial\n    @item: ~\".col-@{class}-@{index}\";\n    .col((@index + 1), @item);\n  }\n  .col(@index, @list) when (@index =< @grid-columns) { // general\n    @item: ~\".col-@{class}-@{index}\";\n    .col((@index + 1), ~\"@{list}, @{item}\");\n  }\n  .col(@index, @list) when (@index > @grid-columns) { // terminal\n    @{list} {\n      float: left;\n    }\n  }\n  .col(1); // kickstart it\n}\n\n.calc-grid-column(@index, @class, @type) when (@type = width) and (@index > 0) {\n  .col-@{class}-@{index} {\n    width: percentage((@index / @grid-columns));\n  }\n}\n.calc-grid-column(@index, @class, @type) when (@type = push) and (@index > 0) {\n  .col-@{class}-push-@{index} {\n    left: percentage((@index / @grid-columns));\n  }\n}\n.calc-grid-column(@index, @class, @type) when (@type = push) and (@index = 0) {\n  .col-@{class}-push-0 {\n    left: auto;\n  }\n}\n.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index > 0) {\n  .col-@{class}-pull-@{index} {\n    right: percentage((@index / @grid-columns));\n  }\n}\n.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index = 0) {\n  .col-@{class}-pull-0 {\n    right: auto;\n  }\n}\n.calc-grid-column(@index, @class, @type) when (@type = offset) {\n  .col-@{class}-offset-@{index} {\n    margin-left: percentage((@index / @grid-columns));\n  }\n}\n\n// Basic looping in LESS\n.loop-grid-columns(@index, @class, @type) when (@index >= 0) {\n  .calc-grid-column(@index, @class, @type);\n  // next iteration\n  .loop-grid-columns((@index - 1), @class, @type);\n}\n\n// Create grid for specific class\n.make-grid(@class) {\n  .float-grid-columns(@class);\n  .loop-grid-columns(@grid-columns, @class, width);\n  .loop-grid-columns(@grid-columns, @class, pull);\n  .loop-grid-columns(@grid-columns, @class, push);\n  .loop-grid-columns(@grid-columns, @class, offset);\n}\n","//\n// Tables\n// --------------------------------------------------\n\n\ntable {\n  background-color: @table-bg;\n}\ncaption {\n  padding-top: @table-cell-padding;\n  padding-bottom: @table-cell-padding;\n  color: @text-muted;\n  text-align: left;\n}\nth {\n  text-align: left;\n}\n\n\n// Baseline styles\n\n.table {\n  width: 100%;\n  max-width: 100%;\n  margin-bottom: @line-height-computed;\n  // Cells\n  > thead,\n  > tbody,\n  > tfoot {\n    > tr {\n      > th,\n      > td {\n        padding: @table-cell-padding;\n        line-height: @line-height-base;\n        vertical-align: top;\n        border-top: 1px solid @table-border-color;\n      }\n    }\n  }\n  // Bottom align for column headings\n  > thead > tr > th {\n    vertical-align: bottom;\n    border-bottom: 2px solid @table-border-color;\n  }\n  // Remove top border from thead by default\n  > caption + thead,\n  > colgroup + thead,\n  > thead:first-child {\n    > tr:first-child {\n      > th,\n      > td {\n        border-top: 0;\n      }\n    }\n  }\n  // Account for multiple tbody instances\n  > tbody + tbody {\n    border-top: 2px solid @table-border-color;\n  }\n\n  // Nesting\n  .table {\n    background-color: @body-bg;\n  }\n}\n\n\n// Condensed table w/ half padding\n\n.table-condensed {\n  > thead,\n  > tbody,\n  > tfoot {\n    > tr {\n      > th,\n      > td {\n        padding: @table-condensed-cell-padding;\n      }\n    }\n  }\n}\n\n\n// Bordered version\n//\n// Add borders all around the table and between all the columns.\n\n.table-bordered {\n  border: 1px solid @table-border-color;\n  > thead,\n  > tbody,\n  > tfoot {\n    > tr {\n      > th,\n      > td {\n        border: 1px solid @table-border-color;\n      }\n    }\n  }\n  > thead > tr {\n    > th,\n    > td {\n      border-bottom-width: 2px;\n    }\n  }\n}\n\n\n// Zebra-striping\n//\n// Default zebra-stripe styles (alternating gray and transparent backgrounds)\n\n.table-striped {\n  > tbody > tr:nth-of-type(odd) {\n    background-color: @table-bg-accent;\n  }\n}\n\n\n// Hover effect\n//\n// Placed here since it has to come after the potential zebra striping\n\n.table-hover {\n  > tbody > tr:hover {\n    background-color: @table-bg-hover;\n  }\n}\n\n\n// Table cell sizing\n//\n// Reset default table behavior\n\ntable col[class*=\"col-\"] {\n  position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)\n  float: none;\n  display: table-column;\n}\ntable {\n  td,\n  th {\n    &[class*=\"col-\"] {\n      position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)\n      float: none;\n      display: table-cell;\n    }\n  }\n}\n\n\n// Table backgrounds\n//\n// Exact selectors below required to override `.table-striped` and prevent\n// inheritance to nested tables.\n\n// Generate the contextual variants\n.table-row-variant(active; @table-bg-active);\n.table-row-variant(success; @state-success-bg);\n.table-row-variant(info; @state-info-bg);\n.table-row-variant(warning; @state-warning-bg);\n.table-row-variant(danger; @state-danger-bg);\n\n\n// Responsive tables\n//\n// Wrap your tables in `.table-responsive` and we'll make them mobile friendly\n// by enabling horizontal scrolling. Only applies <768px. Everything above that\n// will display normally.\n\n.table-responsive {\n  overflow-x: auto;\n  min-height: 0.01%; // Workaround for IE9 bug (see https://github.com/twbs/bootstrap/issues/14837)\n\n  @media screen and (max-width: @screen-xs-max) {\n    width: 100%;\n    margin-bottom: (@line-height-computed * 0.75);\n    overflow-y: hidden;\n    -ms-overflow-style: -ms-autohiding-scrollbar;\n    border: 1px solid @table-border-color;\n\n    // Tighten up spacing\n    > .table {\n      margin-bottom: 0;\n\n      // Ensure the content doesn't wrap\n      > thead,\n      > tbody,\n      > tfoot {\n        > tr {\n          > th,\n          > td {\n            white-space: nowrap;\n          }\n        }\n      }\n    }\n\n    // Special overrides for the bordered tables\n    > .table-bordered {\n      border: 0;\n\n      // Nuke the appropriate borders so that the parent can handle them\n      > thead,\n      > tbody,\n      > tfoot {\n        > tr {\n          > th:first-child,\n          > td:first-child {\n            border-left: 0;\n          }\n          > th:last-child,\n          > td:last-child {\n            border-right: 0;\n          }\n        }\n      }\n\n      // Only nuke the last row's bottom-border in `tbody` and `tfoot` since\n      // chances are there will be only one `tr` in a `thead` and that would\n      // remove the border altogether.\n      > tbody,\n      > tfoot {\n        > tr:last-child {\n          > th,\n          > td {\n            border-bottom: 0;\n          }\n        }\n      }\n\n    }\n  }\n}\n","// Tables\n\n.table-row-variant(@state; @background) {\n  // Exact selectors below required to override `.table-striped` and prevent\n  // inheritance to nested tables.\n  .table > thead > tr,\n  .table > tbody > tr,\n  .table > tfoot > tr {\n    > td.@{state},\n    > th.@{state},\n    &.@{state} > td,\n    &.@{state} > th {\n      background-color: @background;\n    }\n  }\n\n  // Hover states for `.table-hover`\n  // Note: this is not available for cells or rows within `thead` or `tfoot`.\n  .table-hover > tbody > tr {\n    > td.@{state}:hover,\n    > th.@{state}:hover,\n    &.@{state}:hover > td,\n    &:hover > .@{state},\n    &.@{state}:hover > th {\n      background-color: darken(@background, 5%);\n    }\n  }\n}\n","//\n// Forms\n// --------------------------------------------------\n\n\n// Normalize non-controls\n//\n// Restyle and baseline non-control form elements.\n\nfieldset {\n  padding: 0;\n  margin: 0;\n  border: 0;\n  // Chrome and Firefox set a `min-width: min-content;` on fieldsets,\n  // so we reset that to ensure it behaves more like a standard block element.\n  // See https://github.com/twbs/bootstrap/issues/12359.\n  min-width: 0;\n}\n\nlegend {\n  display: block;\n  width: 100%;\n  padding: 0;\n  margin-bottom: @line-height-computed;\n  font-size: (@font-size-base * 1.5);\n  line-height: inherit;\n  color: @legend-color;\n  border: 0;\n  border-bottom: 1px solid @legend-border-color;\n}\n\nlabel {\n  display: inline-block;\n  max-width: 100%; // Force IE8 to wrap long content (see https://github.com/twbs/bootstrap/issues/13141)\n  margin-bottom: 5px;\n  font-weight: bold;\n}\n\n\n// Normalize form controls\n//\n// While most of our form styles require extra classes, some basic normalization\n// is required to ensure optimum display with or without those classes to better\n// address browser inconsistencies.\n\n// Override content-box in Normalize (* isn't specific enough)\ninput[type=\"search\"] {\n  .box-sizing(border-box);\n}\n\n// Position radios and checkboxes better\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n  margin: 4px 0 0;\n  margin-top: 1px \\9; // IE8-9\n  line-height: normal;\n}\n\ninput[type=\"file\"] {\n  display: block;\n}\n\n// Make range inputs behave like textual form controls\ninput[type=\"range\"] {\n  display: block;\n  width: 100%;\n}\n\n// Make multiple select elements height not fixed\nselect[multiple],\nselect[size] {\n  height: auto;\n}\n\n// Focus for file, radio, and checkbox\ninput[type=\"file\"]:focus,\ninput[type=\"radio\"]:focus,\ninput[type=\"checkbox\"]:focus {\n  .tab-focus();\n}\n\n// Adjust output element\noutput {\n  display: block;\n  padding-top: (@padding-base-vertical + 1);\n  font-size: @font-size-base;\n  line-height: @line-height-base;\n  color: @input-color;\n}\n\n\n// Common form controls\n//\n// Shared size and type resets for form controls. Apply `.form-control` to any\n// of the following form controls:\n//\n// select\n// textarea\n// input[type=\"text\"]\n// input[type=\"password\"]\n// input[type=\"datetime\"]\n// input[type=\"datetime-local\"]\n// input[type=\"date\"]\n// input[type=\"month\"]\n// input[type=\"time\"]\n// input[type=\"week\"]\n// input[type=\"number\"]\n// input[type=\"email\"]\n// input[type=\"url\"]\n// input[type=\"search\"]\n// input[type=\"tel\"]\n// input[type=\"color\"]\n\n.form-control {\n  display: block;\n  width: 100%;\n  height: @input-height-base; // Make inputs at least the height of their button counterpart (base line-height + padding + border)\n  padding: @padding-base-vertical @padding-base-horizontal;\n  font-size: @font-size-base;\n  line-height: @line-height-base;\n  color: @input-color;\n  background-color: @input-bg;\n  background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n  border: 1px solid @input-border;\n  border-radius: @input-border-radius; // Note: This has no effect on <select>s in some browsers, due to the limited stylability of <select>s in CSS.\n  .box-shadow(inset 0 1px 1px rgba(0,0,0,.075));\n  .transition(~\"border-color ease-in-out .15s, box-shadow ease-in-out .15s\");\n\n  // Customize the `:focus` state to imitate native WebKit styles.\n  .form-control-focus();\n\n  // Placeholder\n  .placeholder();\n\n  // Unstyle the caret on `<select>`s in IE10+.\n  &::-ms-expand {\n    border: 0;\n    background-color: transparent;\n  }\n\n  // Disabled and read-only inputs\n  //\n  // HTML5 says that controls under a fieldset > legend:first-child won't be\n  // disabled if the fieldset is disabled. Due to implementation difficulty, we\n  // don't honor that edge case; we style them as disabled anyway.\n  &[disabled],\n  &[readonly],\n  fieldset[disabled] & {\n    background-color: @input-bg-disabled;\n    opacity: 1; // iOS fix for unreadable disabled content; see https://github.com/twbs/bootstrap/issues/11655\n  }\n\n  &[disabled],\n  fieldset[disabled] & {\n    cursor: @cursor-disabled;\n  }\n\n  // Reset height for `textarea`s\n  textarea& {\n    height: auto;\n  }\n}\n\n\n// Search inputs in iOS\n//\n// This overrides the extra rounded corners on search inputs in iOS so that our\n// `.form-control` class can properly style them. Note that this cannot simply\n// be added to `.form-control` as it's not specific enough. For details, see\n// https://github.com/twbs/bootstrap/issues/11586.\n\ninput[type=\"search\"] {\n  -webkit-appearance: none;\n}\n\n\n// Special styles for iOS temporal inputs\n//\n// In Mobile Safari, setting `display: block` on temporal inputs causes the\n// text within the input to become vertically misaligned. As a workaround, we\n// set a pixel line-height that matches the given height of the input, but only\n// for Safari. See https://bugs.webkit.org/show_bug.cgi?id=139848\n//\n// Note that as of 8.3, iOS doesn't support `datetime` or `week`.\n\n@media screen and (-webkit-min-device-pixel-ratio: 0) {\n  input[type=\"date\"],\n  input[type=\"time\"],\n  input[type=\"datetime-local\"],\n  input[type=\"month\"] {\n    &.form-control {\n      line-height: @input-height-base;\n    }\n\n    &.input-sm,\n    .input-group-sm & {\n      line-height: @input-height-small;\n    }\n\n    &.input-lg,\n    .input-group-lg & {\n      line-height: @input-height-large;\n    }\n  }\n}\n\n\n// Form groups\n//\n// Designed to help with the organization and spacing of vertical forms. For\n// horizontal forms, use the predefined grid classes.\n\n.form-group {\n  margin-bottom: @form-group-margin-bottom;\n}\n\n\n// Checkboxes and radios\n//\n// Indent the labels to position radios/checkboxes as hanging controls.\n\n.radio,\n.checkbox {\n  position: relative;\n  display: block;\n  margin-top: 10px;\n  margin-bottom: 10px;\n\n  label {\n    min-height: @line-height-computed; // Ensure the input doesn't jump when there is no text\n    padding-left: 20px;\n    margin-bottom: 0;\n    font-weight: normal;\n    cursor: pointer;\n  }\n}\n.radio input[type=\"radio\"],\n.radio-inline input[type=\"radio\"],\n.checkbox input[type=\"checkbox\"],\n.checkbox-inline input[type=\"checkbox\"] {\n  position: absolute;\n  margin-left: -20px;\n  margin-top: 4px \\9;\n}\n\n.radio + .radio,\n.checkbox + .checkbox {\n  margin-top: -5px; // Move up sibling radios or checkboxes for tighter spacing\n}\n\n// Radios and checkboxes on same line\n.radio-inline,\n.checkbox-inline {\n  position: relative;\n  display: inline-block;\n  padding-left: 20px;\n  margin-bottom: 0;\n  vertical-align: middle;\n  font-weight: normal;\n  cursor: pointer;\n}\n.radio-inline + .radio-inline,\n.checkbox-inline + .checkbox-inline {\n  margin-top: 0;\n  margin-left: 10px; // space out consecutive inline controls\n}\n\n// Apply same disabled cursor tweak as for inputs\n// Some special care is needed because <label>s don't inherit their parent's `cursor`.\n//\n// Note: Neither radios nor checkboxes can be readonly.\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n  &[disabled],\n  &.disabled,\n  fieldset[disabled] & {\n    cursor: @cursor-disabled;\n  }\n}\n// These classes are used directly on <label>s\n.radio-inline,\n.checkbox-inline {\n  &.disabled,\n  fieldset[disabled] & {\n    cursor: @cursor-disabled;\n  }\n}\n// These classes are used on elements with <label> descendants\n.radio,\n.checkbox {\n  &.disabled,\n  fieldset[disabled] & {\n    label {\n      cursor: @cursor-disabled;\n    }\n  }\n}\n\n\n// Static form control text\n//\n// Apply class to a `p` element to make any string of text align with labels in\n// a horizontal form layout.\n\n.form-control-static {\n  // Size it appropriately next to real form controls\n  padding-top: (@padding-base-vertical + 1);\n  padding-bottom: (@padding-base-vertical + 1);\n  // Remove default margin from `p`\n  margin-bottom: 0;\n  min-height: (@line-height-computed + @font-size-base);\n\n  &.input-lg,\n  &.input-sm {\n    padding-left: 0;\n    padding-right: 0;\n  }\n}\n\n\n// Form control sizing\n//\n// Build on `.form-control` with modifier classes to decrease or increase the\n// height and font-size of form controls.\n//\n// The `.form-group-* form-control` variations are sadly duplicated to avoid the\n// issue documented in https://github.com/twbs/bootstrap/issues/15074.\n\n.input-sm {\n  .input-size(@input-height-small; @padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @input-border-radius-small);\n}\n.form-group-sm {\n  .form-control {\n    height: @input-height-small;\n    padding: @padding-small-vertical @padding-small-horizontal;\n    font-size: @font-size-small;\n    line-height: @line-height-small;\n    border-radius: @input-border-radius-small;\n  }\n  select.form-control {\n    height: @input-height-small;\n    line-height: @input-height-small;\n  }\n  textarea.form-control,\n  select[multiple].form-control {\n    height: auto;\n  }\n  .form-control-static {\n    height: @input-height-small;\n    min-height: (@line-height-computed + @font-size-small);\n    padding: (@padding-small-vertical + 1) @padding-small-horizontal;\n    font-size: @font-size-small;\n    line-height: @line-height-small;\n  }\n}\n\n.input-lg {\n  .input-size(@input-height-large; @padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @input-border-radius-large);\n}\n.form-group-lg {\n  .form-control {\n    height: @input-height-large;\n    padding: @padding-large-vertical @padding-large-horizontal;\n    font-size: @font-size-large;\n    line-height: @line-height-large;\n    border-radius: @input-border-radius-large;\n  }\n  select.form-control {\n    height: @input-height-large;\n    line-height: @input-height-large;\n  }\n  textarea.form-control,\n  select[multiple].form-control {\n    height: auto;\n  }\n  .form-control-static {\n    height: @input-height-large;\n    min-height: (@line-height-computed + @font-size-large);\n    padding: (@padding-large-vertical + 1) @padding-large-horizontal;\n    font-size: @font-size-large;\n    line-height: @line-height-large;\n  }\n}\n\n\n// Form control feedback states\n//\n// Apply contextual and semantic states to individual form controls.\n\n.has-feedback {\n  // Enable absolute positioning\n  position: relative;\n\n  // Ensure icons don't overlap text\n  .form-control {\n    padding-right: (@input-height-base * 1.25);\n  }\n}\n// Feedback icon (requires .glyphicon classes)\n.form-control-feedback {\n  position: absolute;\n  top: 0;\n  right: 0;\n  z-index: 2; // Ensure icon is above input groups\n  display: block;\n  width: @input-height-base;\n  height: @input-height-base;\n  line-height: @input-height-base;\n  text-align: center;\n  pointer-events: none;\n}\n.input-lg + .form-control-feedback,\n.input-group-lg + .form-control-feedback,\n.form-group-lg .form-control + .form-control-feedback {\n  width: @input-height-large;\n  height: @input-height-large;\n  line-height: @input-height-large;\n}\n.input-sm + .form-control-feedback,\n.input-group-sm + .form-control-feedback,\n.form-group-sm .form-control + .form-control-feedback {\n  width: @input-height-small;\n  height: @input-height-small;\n  line-height: @input-height-small;\n}\n\n// Feedback states\n.has-success {\n  .form-control-validation(@state-success-text; @state-success-text; @state-success-bg);\n}\n.has-warning {\n  .form-control-validation(@state-warning-text; @state-warning-text; @state-warning-bg);\n}\n.has-error {\n  .form-control-validation(@state-danger-text; @state-danger-text; @state-danger-bg);\n}\n\n// Reposition feedback icon if input has visible label above\n.has-feedback label {\n\n  & ~ .form-control-feedback {\n    top: (@line-height-computed + 5); // Height of the `label` and its margin\n  }\n  &.sr-only ~ .form-control-feedback {\n    top: 0;\n  }\n}\n\n\n// Help text\n//\n// Apply to any element you wish to create light text for placement immediately\n// below a form control. Use for general help, formatting, or instructional text.\n\n.help-block {\n  display: block; // account for any element using help-block\n  margin-top: 5px;\n  margin-bottom: 10px;\n  color: lighten(@text-color, 25%); // lighten the text some for contrast\n}\n\n\n// Inline forms\n//\n// Make forms appear inline(-block) by adding the `.form-inline` class. Inline\n// forms begin stacked on extra small (mobile) devices and then go inline when\n// viewports reach <768px.\n//\n// Requires wrapping inputs and labels with `.form-group` for proper display of\n// default HTML form controls and our custom form controls (e.g., input groups).\n//\n// Heads up! This is mixin-ed into `.navbar-form` in navbars.less.\n\n.form-inline {\n\n  // Kick in the inline\n  @media (min-width: @screen-sm-min) {\n    // Inline-block all the things for \"inline\"\n    .form-group {\n      display: inline-block;\n      margin-bottom: 0;\n      vertical-align: middle;\n    }\n\n    // In navbar-form, allow folks to *not* use `.form-group`\n    .form-control {\n      display: inline-block;\n      width: auto; // Prevent labels from stacking above inputs in `.form-group`\n      vertical-align: middle;\n    }\n\n    // Make static controls behave like regular ones\n    .form-control-static {\n      display: inline-block;\n    }\n\n    .input-group {\n      display: inline-table;\n      vertical-align: middle;\n\n      .input-group-addon,\n      .input-group-btn,\n      .form-control {\n        width: auto;\n      }\n    }\n\n    // Input groups need that 100% width though\n    .input-group > .form-control {\n      width: 100%;\n    }\n\n    .control-label {\n      margin-bottom: 0;\n      vertical-align: middle;\n    }\n\n    // Remove default margin on radios/checkboxes that were used for stacking, and\n    // then undo the floating of radios and checkboxes to match.\n    .radio,\n    .checkbox {\n      display: inline-block;\n      margin-top: 0;\n      margin-bottom: 0;\n      vertical-align: middle;\n\n      label {\n        padding-left: 0;\n      }\n    }\n    .radio input[type=\"radio\"],\n    .checkbox input[type=\"checkbox\"] {\n      position: relative;\n      margin-left: 0;\n    }\n\n    // Re-override the feedback icon.\n    .has-feedback .form-control-feedback {\n      top: 0;\n    }\n  }\n}\n\n\n// Horizontal forms\n//\n// Horizontal forms are built on grid classes and allow you to create forms with\n// labels on the left and inputs on the right.\n\n.form-horizontal {\n\n  // Consistent vertical alignment of radios and checkboxes\n  //\n  // Labels also get some reset styles, but that is scoped to a media query below.\n  .radio,\n  .checkbox,\n  .radio-inline,\n  .checkbox-inline {\n    margin-top: 0;\n    margin-bottom: 0;\n    padding-top: (@padding-base-vertical + 1); // Default padding plus a border\n  }\n  // Account for padding we're adding to ensure the alignment and of help text\n  // and other content below items\n  .radio,\n  .checkbox {\n    min-height: (@line-height-computed + (@padding-base-vertical + 1));\n  }\n\n  // Make form groups behave like rows\n  .form-group {\n    .make-row();\n  }\n\n  // Reset spacing and right align labels, but scope to media queries so that\n  // labels on narrow viewports stack the same as a default form example.\n  @media (min-width: @screen-sm-min) {\n    .control-label {\n      text-align: right;\n      margin-bottom: 0;\n      padding-top: (@padding-base-vertical + 1); // Default padding plus a border\n    }\n  }\n\n  // Validation states\n  //\n  // Reposition the icon because it's now within a grid column and columns have\n  // `position: relative;` on them. Also accounts for the grid gutter padding.\n  .has-feedback .form-control-feedback {\n    right: floor((@grid-gutter-width / 2));\n  }\n\n  // Form group sizes\n  //\n  // Quick utility class for applying `.input-lg` and `.input-sm` styles to the\n  // inputs and labels within a `.form-group`.\n  .form-group-lg {\n    @media (min-width: @screen-sm-min) {\n      .control-label {\n        padding-top: (@padding-large-vertical + 1);\n        font-size: @font-size-large;\n      }\n    }\n  }\n  .form-group-sm {\n    @media (min-width: @screen-sm-min) {\n      .control-label {\n        padding-top: (@padding-small-vertical + 1);\n        font-size: @font-size-small;\n      }\n    }\n  }\n}\n","// Form validation states\n//\n// Used in forms.less to generate the form validation CSS for warnings, errors,\n// and successes.\n\n.form-control-validation(@text-color: #555; @border-color: #ccc; @background-color: #f5f5f5) {\n  // Color the label and help text\n  .help-block,\n  .control-label,\n  .radio,\n  .checkbox,\n  .radio-inline,\n  .checkbox-inline,\n  &.radio label,\n  &.checkbox label,\n  &.radio-inline label,\n  &.checkbox-inline label  {\n    color: @text-color;\n  }\n  // Set the border and box shadow on specific inputs to match\n  .form-control {\n    border-color: @border-color;\n    .box-shadow(inset 0 1px 1px rgba(0,0,0,.075)); // Redeclare so transitions work\n    &:focus {\n      border-color: darken(@border-color, 10%);\n      @shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px lighten(@border-color, 20%);\n      .box-shadow(@shadow);\n    }\n  }\n  // Set validation states also for addons\n  .input-group-addon {\n    color: @text-color;\n    border-color: @border-color;\n    background-color: @background-color;\n  }\n  // Optional feedback icon\n  .form-control-feedback {\n    color: @text-color;\n  }\n}\n\n\n// Form control focus state\n//\n// Generate a customized focus state and for any input with the specified color,\n// which defaults to the `@input-border-focus` variable.\n//\n// We highly encourage you to not customize the default value, but instead use\n// this to tweak colors on an as-needed basis. This aesthetic change is based on\n// WebKit's default styles, but applicable to a wider range of browsers. Its\n// usability and accessibility should be taken into account with any change.\n//\n// Example usage: change the default blue border and shadow to white for better\n// contrast against a dark gray background.\n.form-control-focus(@color: @input-border-focus) {\n  @color-rgba: rgba(red(@color), green(@color), blue(@color), .6);\n  &:focus {\n    border-color: @color;\n    outline: 0;\n    .box-shadow(~\"inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px @{color-rgba}\");\n  }\n}\n\n// Form control sizing\n//\n// Relative text size, padding, and border-radii changes for form controls. For\n// horizontal sizing, wrap controls in the predefined grid classes. `<select>`\n// element gets special love because it's special, and that's a fact!\n.input-size(@input-height; @padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n  height: @input-height;\n  padding: @padding-vertical @padding-horizontal;\n  font-size: @font-size;\n  line-height: @line-height;\n  border-radius: @border-radius;\n\n  select& {\n    height: @input-height;\n    line-height: @input-height;\n  }\n\n  textarea&,\n  select[multiple]& {\n    height: auto;\n  }\n}\n","//\n// Buttons\n// --------------------------------------------------\n\n\n// Base styles\n// --------------------------------------------------\n\n.btn {\n  display: inline-block;\n  margin-bottom: 0; // For input.btn\n  font-weight: @btn-font-weight;\n  text-align: center;\n  vertical-align: middle;\n  touch-action: manipulation;\n  cursor: pointer;\n  background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n  border: 1px solid transparent;\n  white-space: nowrap;\n  .button-size(@padding-base-vertical; @padding-base-horizontal; @font-size-base; @line-height-base; @btn-border-radius-base);\n  .user-select(none);\n\n  &,\n  &:active,\n  &.active {\n    &:focus,\n    &.focus {\n      .tab-focus();\n    }\n  }\n\n  &:hover,\n  &:focus,\n  &.focus {\n    color: @btn-default-color;\n    text-decoration: none;\n  }\n\n  &:active,\n  &.active {\n    outline: 0;\n    background-image: none;\n    .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n  }\n\n  &.disabled,\n  &[disabled],\n  fieldset[disabled] & {\n    cursor: @cursor-disabled;\n    .opacity(.65);\n    .box-shadow(none);\n  }\n\n  a& {\n    &.disabled,\n    fieldset[disabled] & {\n      pointer-events: none; // Future-proof disabling of clicks on `<a>` elements\n    }\n  }\n}\n\n\n// Alternate buttons\n// --------------------------------------------------\n\n.btn-default {\n  .button-variant(@btn-default-color; @btn-default-bg; @btn-default-border);\n}\n.btn-primary {\n  .button-variant(@btn-primary-color; @btn-primary-bg; @btn-primary-border);\n}\n// Success appears as green\n.btn-success {\n  .button-variant(@btn-success-color; @btn-success-bg; @btn-success-border);\n}\n// Info appears as blue-green\n.btn-info {\n  .button-variant(@btn-info-color; @btn-info-bg; @btn-info-border);\n}\n// Warning appears as orange\n.btn-warning {\n  .button-variant(@btn-warning-color; @btn-warning-bg; @btn-warning-border);\n}\n// Danger and error appear as red\n.btn-danger {\n  .button-variant(@btn-danger-color; @btn-danger-bg; @btn-danger-border);\n}\n\n\n// Link buttons\n// -------------------------\n\n// Make a button look and behave like a link\n.btn-link {\n  color: @link-color;\n  font-weight: normal;\n  border-radius: 0;\n\n  &,\n  &:active,\n  &.active,\n  &[disabled],\n  fieldset[disabled] & {\n    background-color: transparent;\n    .box-shadow(none);\n  }\n  &,\n  &:hover,\n  &:focus,\n  &:active {\n    border-color: transparent;\n  }\n  &:hover,\n  &:focus {\n    color: @link-hover-color;\n    text-decoration: @link-hover-decoration;\n    background-color: transparent;\n  }\n  &[disabled],\n  fieldset[disabled] & {\n    &:hover,\n    &:focus {\n      color: @btn-link-disabled-color;\n      text-decoration: none;\n    }\n  }\n}\n\n\n// Button Sizes\n// --------------------------------------------------\n\n.btn-lg {\n  // line-height: ensure even-numbered height of button next to large input\n  .button-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @btn-border-radius-large);\n}\n.btn-sm {\n  // line-height: ensure proper height of button next to small input\n  .button-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @btn-border-radius-small);\n}\n.btn-xs {\n  .button-size(@padding-xs-vertical; @padding-xs-horizontal; @font-size-small; @line-height-small; @btn-border-radius-small);\n}\n\n\n// Block button\n// --------------------------------------------------\n\n.btn-block {\n  display: block;\n  width: 100%;\n}\n\n// Vertically space out multiple block buttons\n.btn-block + .btn-block {\n  margin-top: 5px;\n}\n\n// Specificity overrides\ninput[type=\"submit\"],\ninput[type=\"reset\"],\ninput[type=\"button\"] {\n  &.btn-block {\n    width: 100%;\n  }\n}\n","// Button variants\n//\n// Easily pump out default styles, as well as :hover, :focus, :active,\n// and disabled options for all buttons\n\n.button-variant(@color; @background; @border) {\n  color: @color;\n  background-color: @background;\n  border-color: @border;\n\n  &:focus,\n  &.focus {\n    color: @color;\n    background-color: darken(@background, 10%);\n        border-color: darken(@border, 25%);\n  }\n  &:hover {\n    color: @color;\n    background-color: darken(@background, 10%);\n        border-color: darken(@border, 12%);\n  }\n  &:active,\n  &.active,\n  .open > .dropdown-toggle& {\n    color: @color;\n    background-color: darken(@background, 10%);\n        border-color: darken(@border, 12%);\n\n    &:hover,\n    &:focus,\n    &.focus {\n      color: @color;\n      background-color: darken(@background, 17%);\n          border-color: darken(@border, 25%);\n    }\n  }\n  &:active,\n  &.active,\n  .open > .dropdown-toggle& {\n    background-image: none;\n  }\n  &.disabled,\n  &[disabled],\n  fieldset[disabled] & {\n    &:hover,\n    &:focus,\n    &.focus {\n      background-color: @background;\n          border-color: @border;\n    }\n  }\n\n  .badge {\n    color: @background;\n    background-color: @color;\n  }\n}\n\n// Button sizes\n.button-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n  padding: @padding-vertical @padding-horizontal;\n  font-size: @font-size;\n  line-height: @line-height;\n  border-radius: @border-radius;\n}\n","// Opacity\n\n.opacity(@opacity) {\n  opacity: @opacity;\n  // IE8 filter\n  @opacity-ie: (@opacity * 100);\n  filter: ~\"alpha(opacity=@{opacity-ie})\";\n}\n","//\n// Component animations\n// --------------------------------------------------\n\n// Heads up!\n//\n// We don't use the `.opacity()` mixin here since it causes a bug with text\n// fields in IE7-8. Source: https://github.com/twbs/bootstrap/pull/3552.\n\n.fade {\n  opacity: 0;\n  .transition(opacity .15s linear);\n  &.in {\n    opacity: 1;\n  }\n}\n\n.collapse {\n  display: none;\n\n  &.in      { display: block; }\n  tr&.in    { display: table-row; }\n  tbody&.in { display: table-row-group; }\n}\n\n.collapsing {\n  position: relative;\n  height: 0;\n  overflow: hidden;\n  .transition-property(~\"height, visibility\");\n  .transition-duration(.35s);\n  .transition-timing-function(ease);\n}\n","//\n// Dropdown menus\n// --------------------------------------------------\n\n\n// Dropdown arrow/caret\n.caret {\n  display: inline-block;\n  width: 0;\n  height: 0;\n  margin-left: 2px;\n  vertical-align: middle;\n  border-top:   @caret-width-base dashed;\n  border-top:   @caret-width-base solid ~\"\\9\"; // IE8\n  border-right: @caret-width-base solid transparent;\n  border-left:  @caret-width-base solid transparent;\n}\n\n// The dropdown wrapper (div)\n.dropup,\n.dropdown {\n  position: relative;\n}\n\n// Prevent the focus on the dropdown toggle when closing dropdowns\n.dropdown-toggle:focus {\n  outline: 0;\n}\n\n// The dropdown menu (ul)\n.dropdown-menu {\n  position: absolute;\n  top: 100%;\n  left: 0;\n  z-index: @zindex-dropdown;\n  display: none; // none by default, but block on \"open\" of the menu\n  float: left;\n  min-width: 160px;\n  padding: 5px 0;\n  margin: 2px 0 0; // override default ul\n  list-style: none;\n  font-size: @font-size-base;\n  text-align: left; // Ensures proper alignment if parent has it changed (e.g., modal footer)\n  background-color: @dropdown-bg;\n  border: 1px solid @dropdown-fallback-border; // IE8 fallback\n  border: 1px solid @dropdown-border;\n  border-radius: @border-radius-base;\n  .box-shadow(0 6px 12px rgba(0,0,0,.175));\n  background-clip: padding-box;\n\n  // Aligns the dropdown menu to right\n  //\n  // Deprecated as of 3.1.0 in favor of `.dropdown-menu-[dir]`\n  &.pull-right {\n    right: 0;\n    left: auto;\n  }\n\n  // Dividers (basically an hr) within the dropdown\n  .divider {\n    .nav-divider(@dropdown-divider-bg);\n  }\n\n  // Links within the dropdown menu\n  > li > a {\n    display: block;\n    padding: 3px 20px;\n    clear: both;\n    font-weight: normal;\n    line-height: @line-height-base;\n    color: @dropdown-link-color;\n    white-space: nowrap; // prevent links from randomly breaking onto new lines\n  }\n}\n\n// Hover/Focus state\n.dropdown-menu > li > a {\n  &:hover,\n  &:focus {\n    text-decoration: none;\n    color: @dropdown-link-hover-color;\n    background-color: @dropdown-link-hover-bg;\n  }\n}\n\n// Active state\n.dropdown-menu > .active > a {\n  &,\n  &:hover,\n  &:focus {\n    color: @dropdown-link-active-color;\n    text-decoration: none;\n    outline: 0;\n    background-color: @dropdown-link-active-bg;\n  }\n}\n\n// Disabled state\n//\n// Gray out text and ensure the hover/focus state remains gray\n\n.dropdown-menu > .disabled > a {\n  &,\n  &:hover,\n  &:focus {\n    color: @dropdown-link-disabled-color;\n  }\n\n  // Nuke hover/focus effects\n  &:hover,\n  &:focus {\n    text-decoration: none;\n    background-color: transparent;\n    background-image: none; // Remove CSS gradient\n    .reset-filter();\n    cursor: @cursor-disabled;\n  }\n}\n\n// Open state for the dropdown\n.open {\n  // Show the menu\n  > .dropdown-menu {\n    display: block;\n  }\n\n  // Remove the outline when :focus is triggered\n  > a {\n    outline: 0;\n  }\n}\n\n// Menu positioning\n//\n// Add extra class to `.dropdown-menu` to flip the alignment of the dropdown\n// menu with the parent.\n.dropdown-menu-right {\n  left: auto; // Reset the default from `.dropdown-menu`\n  right: 0;\n}\n// With v3, we enabled auto-flipping if you have a dropdown within a right\n// aligned nav component. To enable the undoing of that, we provide an override\n// to restore the default dropdown menu alignment.\n//\n// This is only for left-aligning a dropdown menu within a `.navbar-right` or\n// `.pull-right` nav component.\n.dropdown-menu-left {\n  left: 0;\n  right: auto;\n}\n\n// Dropdown section headers\n.dropdown-header {\n  display: block;\n  padding: 3px 20px;\n  font-size: @font-size-small;\n  line-height: @line-height-base;\n  color: @dropdown-header-color;\n  white-space: nowrap; // as with > li > a\n}\n\n// Backdrop to catch body clicks on mobile, etc.\n.dropdown-backdrop {\n  position: fixed;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  top: 0;\n  z-index: (@zindex-dropdown - 10);\n}\n\n// Right aligned dropdowns\n.pull-right > .dropdown-menu {\n  right: 0;\n  left: auto;\n}\n\n// Allow for dropdowns to go bottom up (aka, dropup-menu)\n//\n// Just add .dropup after the standard .dropdown class and you're set, bro.\n// TODO: abstract this so that the navbar fixed styles are not placed here?\n\n.dropup,\n.navbar-fixed-bottom .dropdown {\n  // Reverse the caret\n  .caret {\n    border-top: 0;\n    border-bottom: @caret-width-base dashed;\n    border-bottom: @caret-width-base solid ~\"\\9\"; // IE8\n    content: \"\";\n  }\n  // Different positioning for bottom up menu\n  .dropdown-menu {\n    top: auto;\n    bottom: 100%;\n    margin-bottom: 2px;\n  }\n}\n\n\n// Component alignment\n//\n// Reiterate per navbar.less and the modified component alignment there.\n\n@media (min-width: @grid-float-breakpoint) {\n  .navbar-right {\n    .dropdown-menu {\n      .dropdown-menu-right();\n    }\n    // Necessary for overrides of the default right aligned menu.\n    // Will remove come v4 in all likelihood.\n    .dropdown-menu-left {\n      .dropdown-menu-left();\n    }\n  }\n}\n","// Horizontal dividers\n//\n// Dividers (basically an hr) within dropdowns and nav lists\n\n.nav-divider(@color: #e5e5e5) {\n  height: 1px;\n  margin: ((@line-height-computed / 2) - 1) 0;\n  overflow: hidden;\n  background-color: @color;\n}\n","// Reset filters for IE\n//\n// When you need to remove a gradient background, do not forget to use this to reset\n// the IE filter for IE9 and below.\n\n.reset-filter() {\n  filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(enabled = false)\"));\n}\n","//\n// Button groups\n// --------------------------------------------------\n\n// Make the div behave like a button\n.btn-group,\n.btn-group-vertical {\n  position: relative;\n  display: inline-block;\n  vertical-align: middle; // match .btn alignment given font-size hack above\n  > .btn {\n    position: relative;\n    float: left;\n    // Bring the \"active\" button to the front\n    &:hover,\n    &:focus,\n    &:active,\n    &.active {\n      z-index: 2;\n    }\n  }\n}\n\n// Prevent double borders when buttons are next to each other\n.btn-group {\n  .btn + .btn,\n  .btn + .btn-group,\n  .btn-group + .btn,\n  .btn-group + .btn-group {\n    margin-left: -1px;\n  }\n}\n\n// Optional: Group multiple button groups together for a toolbar\n.btn-toolbar {\n  margin-left: -5px; // Offset the first child's margin\n  &:extend(.clearfix all);\n\n  .btn,\n  .btn-group,\n  .input-group {\n    float: left;\n  }\n  > .btn,\n  > .btn-group,\n  > .input-group {\n    margin-left: 5px;\n  }\n}\n\n.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {\n  border-radius: 0;\n}\n\n// Set corners individual because sometimes a single button can be in a .btn-group and we need :first-child and :last-child to both match\n.btn-group > .btn:first-child {\n  margin-left: 0;\n  &:not(:last-child):not(.dropdown-toggle) {\n    .border-right-radius(0);\n  }\n}\n// Need .dropdown-toggle since :last-child doesn't apply given a .dropdown-menu immediately after it\n.btn-group > .btn:last-child:not(:first-child),\n.btn-group > .dropdown-toggle:not(:first-child) {\n  .border-left-radius(0);\n}\n\n// Custom edits for including btn-groups within btn-groups (useful for including dropdown buttons within a btn-group)\n.btn-group > .btn-group {\n  float: left;\n}\n.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {\n  border-radius: 0;\n}\n.btn-group > .btn-group:first-child:not(:last-child) {\n  > .btn:last-child,\n  > .dropdown-toggle {\n    .border-right-radius(0);\n  }\n}\n.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {\n  .border-left-radius(0);\n}\n\n// On active and open, don't show outline\n.btn-group .dropdown-toggle:active,\n.btn-group.open .dropdown-toggle {\n  outline: 0;\n}\n\n\n// Sizing\n//\n// Remix the default button sizing classes into new ones for easier manipulation.\n\n.btn-group-xs > .btn { &:extend(.btn-xs); }\n.btn-group-sm > .btn { &:extend(.btn-sm); }\n.btn-group-lg > .btn { &:extend(.btn-lg); }\n\n\n// Split button dropdowns\n// ----------------------\n\n// Give the line between buttons some depth\n.btn-group > .btn + .dropdown-toggle {\n  padding-left: 8px;\n  padding-right: 8px;\n}\n.btn-group > .btn-lg + .dropdown-toggle {\n  padding-left: 12px;\n  padding-right: 12px;\n}\n\n// The clickable button for toggling the menu\n// Remove the gradient and set the same inset shadow as the :active state\n.btn-group.open .dropdown-toggle {\n  .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n\n  // Show no shadow for `.btn-link` since it has no other button styles.\n  &.btn-link {\n    .box-shadow(none);\n  }\n}\n\n\n// Reposition the caret\n.btn .caret {\n  margin-left: 0;\n}\n// Carets in other button sizes\n.btn-lg .caret {\n  border-width: @caret-width-large @caret-width-large 0;\n  border-bottom-width: 0;\n}\n// Upside down carets for .dropup\n.dropup .btn-lg .caret {\n  border-width: 0 @caret-width-large @caret-width-large;\n}\n\n\n// Vertical button groups\n// ----------------------\n\n.btn-group-vertical {\n  > .btn,\n  > .btn-group,\n  > .btn-group > .btn {\n    display: block;\n    float: none;\n    width: 100%;\n    max-width: 100%;\n  }\n\n  // Clear floats so dropdown menus can be properly placed\n  > .btn-group {\n    &:extend(.clearfix all);\n    > .btn {\n      float: none;\n    }\n  }\n\n  > .btn + .btn,\n  > .btn + .btn-group,\n  > .btn-group + .btn,\n  > .btn-group + .btn-group {\n    margin-top: -1px;\n    margin-left: 0;\n  }\n}\n\n.btn-group-vertical > .btn {\n  &:not(:first-child):not(:last-child) {\n    border-radius: 0;\n  }\n  &:first-child:not(:last-child) {\n    .border-top-radius(@btn-border-radius-base);\n    .border-bottom-radius(0);\n  }\n  &:last-child:not(:first-child) {\n    .border-top-radius(0);\n    .border-bottom-radius(@btn-border-radius-base);\n  }\n}\n.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {\n  border-radius: 0;\n}\n.btn-group-vertical > .btn-group:first-child:not(:last-child) {\n  > .btn:last-child,\n  > .dropdown-toggle {\n    .border-bottom-radius(0);\n  }\n}\n.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {\n  .border-top-radius(0);\n}\n\n\n// Justified button groups\n// ----------------------\n\n.btn-group-justified {\n  display: table;\n  width: 100%;\n  table-layout: fixed;\n  border-collapse: separate;\n  > .btn,\n  > .btn-group {\n    float: none;\n    display: table-cell;\n    width: 1%;\n  }\n  > .btn-group .btn {\n    width: 100%;\n  }\n\n  > .btn-group .dropdown-menu {\n    left: auto;\n  }\n}\n\n\n// Checkbox and radio options\n//\n// In order to support the browser's form validation feedback, powered by the\n// `required` attribute, we have to \"hide\" the inputs via `clip`. We cannot use\n// `display: none;` or `visibility: hidden;` as that also hides the popover.\n// Simply visually hiding the inputs via `opacity` would leave them clickable in\n// certain cases which is prevented by using `clip` and `pointer-events`.\n// This way, we ensure a DOM element is visible to position the popover from.\n//\n// See https://github.com/twbs/bootstrap/pull/12794 and\n// https://github.com/twbs/bootstrap/pull/14559 for more information.\n\n[data-toggle=\"buttons\"] {\n  > .btn,\n  > .btn-group > .btn {\n    input[type=\"radio\"],\n    input[type=\"checkbox\"] {\n      position: absolute;\n      clip: rect(0,0,0,0);\n      pointer-events: none;\n    }\n  }\n}\n","// Single side border-radius\n\n.border-top-radius(@radius) {\n  border-top-right-radius: @radius;\n   border-top-left-radius: @radius;\n}\n.border-right-radius(@radius) {\n  border-bottom-right-radius: @radius;\n     border-top-right-radius: @radius;\n}\n.border-bottom-radius(@radius) {\n  border-bottom-right-radius: @radius;\n   border-bottom-left-radius: @radius;\n}\n.border-left-radius(@radius) {\n  border-bottom-left-radius: @radius;\n     border-top-left-radius: @radius;\n}\n","//\n// Input groups\n// --------------------------------------------------\n\n// Base styles\n// -------------------------\n.input-group {\n  position: relative; // For dropdowns\n  display: table;\n  border-collapse: separate; // prevent input groups from inheriting border styles from table cells when placed within a table\n\n  // Undo padding and float of grid classes\n  &[class*=\"col-\"] {\n    float: none;\n    padding-left: 0;\n    padding-right: 0;\n  }\n\n  .form-control {\n    // Ensure that the input is always above the *appended* addon button for\n    // proper border colors.\n    position: relative;\n    z-index: 2;\n\n    // IE9 fubars the placeholder attribute in text inputs and the arrows on\n    // select elements in input groups. To fix it, we float the input. Details:\n    // https://github.com/twbs/bootstrap/issues/11561#issuecomment-28936855\n    float: left;\n\n    width: 100%;\n    margin-bottom: 0;\n    \n    &:focus {\n      z-index: 3;\n    }\n  }\n}\n\n// Sizing options\n//\n// Remix the default form control sizing classes into new ones for easier\n// manipulation.\n\n.input-group-lg > .form-control,\n.input-group-lg > .input-group-addon,\n.input-group-lg > .input-group-btn > .btn {\n  .input-lg();\n}\n.input-group-sm > .form-control,\n.input-group-sm > .input-group-addon,\n.input-group-sm > .input-group-btn > .btn {\n  .input-sm();\n}\n\n\n// Display as table-cell\n// -------------------------\n.input-group-addon,\n.input-group-btn,\n.input-group .form-control {\n  display: table-cell;\n\n  &:not(:first-child):not(:last-child) {\n    border-radius: 0;\n  }\n}\n// Addon and addon wrapper for buttons\n.input-group-addon,\n.input-group-btn {\n  width: 1%;\n  white-space: nowrap;\n  vertical-align: middle; // Match the inputs\n}\n\n// Text input groups\n// -------------------------\n.input-group-addon {\n  padding: @padding-base-vertical @padding-base-horizontal;\n  font-size: @font-size-base;\n  font-weight: normal;\n  line-height: 1;\n  color: @input-color;\n  text-align: center;\n  background-color: @input-group-addon-bg;\n  border: 1px solid @input-group-addon-border-color;\n  border-radius: @input-border-radius;\n\n  // Sizing\n  &.input-sm {\n    padding: @padding-small-vertical @padding-small-horizontal;\n    font-size: @font-size-small;\n    border-radius: @input-border-radius-small;\n  }\n  &.input-lg {\n    padding: @padding-large-vertical @padding-large-horizontal;\n    font-size: @font-size-large;\n    border-radius: @input-border-radius-large;\n  }\n\n  // Nuke default margins from checkboxes and radios to vertically center within.\n  input[type=\"radio\"],\n  input[type=\"checkbox\"] {\n    margin-top: 0;\n  }\n}\n\n// Reset rounded corners\n.input-group .form-control:first-child,\n.input-group-addon:first-child,\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group > .btn,\n.input-group-btn:first-child > .dropdown-toggle,\n.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {\n  .border-right-radius(0);\n}\n.input-group-addon:first-child {\n  border-right: 0;\n}\n.input-group .form-control:last-child,\n.input-group-addon:last-child,\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group > .btn,\n.input-group-btn:last-child > .dropdown-toggle,\n.input-group-btn:first-child > .btn:not(:first-child),\n.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {\n  .border-left-radius(0);\n}\n.input-group-addon:last-child {\n  border-left: 0;\n}\n\n// Button input groups\n// -------------------------\n.input-group-btn {\n  position: relative;\n  // Jankily prevent input button groups from wrapping with `white-space` and\n  // `font-size` in combination with `inline-block` on buttons.\n  font-size: 0;\n  white-space: nowrap;\n\n  // Negative margin for spacing, position for bringing hovered/focused/actived\n  // element above the siblings.\n  > .btn {\n    position: relative;\n    + .btn {\n      margin-left: -1px;\n    }\n    // Bring the \"active\" button to the front\n    &:hover,\n    &:focus,\n    &:active {\n      z-index: 2;\n    }\n  }\n\n  // Negative margin to only have a 1px border between the two\n  &:first-child {\n    > .btn,\n    > .btn-group {\n      margin-right: -1px;\n    }\n  }\n  &:last-child {\n    > .btn,\n    > .btn-group {\n      z-index: 2;\n      margin-left: -1px;\n    }\n  }\n}\n","//\n// Navs\n// --------------------------------------------------\n\n\n// Base class\n// --------------------------------------------------\n\n.nav {\n  margin-bottom: 0;\n  padding-left: 0; // Override default ul/ol\n  list-style: none;\n  &:extend(.clearfix all);\n\n  > li {\n    position: relative;\n    display: block;\n\n    > a {\n      position: relative;\n      display: block;\n      padding: @nav-link-padding;\n      &:hover,\n      &:focus {\n        text-decoration: none;\n        background-color: @nav-link-hover-bg;\n      }\n    }\n\n    // Disabled state sets text to gray and nukes hover/tab effects\n    &.disabled > a {\n      color: @nav-disabled-link-color;\n\n      &:hover,\n      &:focus {\n        color: @nav-disabled-link-hover-color;\n        text-decoration: none;\n        background-color: transparent;\n        cursor: @cursor-disabled;\n      }\n    }\n  }\n\n  // Open dropdowns\n  .open > a {\n    &,\n    &:hover,\n    &:focus {\n      background-color: @nav-link-hover-bg;\n      border-color: @link-color;\n    }\n  }\n\n  // Nav dividers (deprecated with v3.0.1)\n  //\n  // This should have been removed in v3 with the dropping of `.nav-list`, but\n  // we missed it. We don't currently support this anywhere, but in the interest\n  // of maintaining backward compatibility in case you use it, it's deprecated.\n  .nav-divider {\n    .nav-divider();\n  }\n\n  // Prevent IE8 from misplacing imgs\n  //\n  // See https://github.com/h5bp/html5-boilerplate/issues/984#issuecomment-3985989\n  > li > a > img {\n    max-width: none;\n  }\n}\n\n\n// Tabs\n// -------------------------\n\n// Give the tabs something to sit on\n.nav-tabs {\n  border-bottom: 1px solid @nav-tabs-border-color;\n  > li {\n    float: left;\n    // Make the list-items overlay the bottom border\n    margin-bottom: -1px;\n\n    // Actual tabs (as links)\n    > a {\n      margin-right: 2px;\n      line-height: @line-height-base;\n      border: 1px solid transparent;\n      border-radius: @border-radius-base @border-radius-base 0 0;\n      &:hover {\n        border-color: @nav-tabs-link-hover-border-color @nav-tabs-link-hover-border-color @nav-tabs-border-color;\n      }\n    }\n\n    // Active state, and its :hover to override normal :hover\n    &.active > a {\n      &,\n      &:hover,\n      &:focus {\n        color: @nav-tabs-active-link-hover-color;\n        background-color: @nav-tabs-active-link-hover-bg;\n        border: 1px solid @nav-tabs-active-link-hover-border-color;\n        border-bottom-color: transparent;\n        cursor: default;\n      }\n    }\n  }\n  // pulling this in mainly for less shorthand\n  &.nav-justified {\n    .nav-justified();\n    .nav-tabs-justified();\n  }\n}\n\n\n// Pills\n// -------------------------\n.nav-pills {\n  > li {\n    float: left;\n\n    // Links rendered as pills\n    > a {\n      border-radius: @nav-pills-border-radius;\n    }\n    + li {\n      margin-left: 2px;\n    }\n\n    // Active state\n    &.active > a {\n      &,\n      &:hover,\n      &:focus {\n        color: @nav-pills-active-link-hover-color;\n        background-color: @nav-pills-active-link-hover-bg;\n      }\n    }\n  }\n}\n\n\n// Stacked pills\n.nav-stacked {\n  > li {\n    float: none;\n    + li {\n      margin-top: 2px;\n      margin-left: 0; // no need for this gap between nav items\n    }\n  }\n}\n\n\n// Nav variations\n// --------------------------------------------------\n\n// Justified nav links\n// -------------------------\n\n.nav-justified {\n  width: 100%;\n\n  > li {\n    float: none;\n    > a {\n      text-align: center;\n      margin-bottom: 5px;\n    }\n  }\n\n  > .dropdown .dropdown-menu {\n    top: auto;\n    left: auto;\n  }\n\n  @media (min-width: @screen-sm-min) {\n    > li {\n      display: table-cell;\n      width: 1%;\n      > a {\n        margin-bottom: 0;\n      }\n    }\n  }\n}\n\n// Move borders to anchors instead of bottom of list\n//\n// Mixin for adding on top the shared `.nav-justified` styles for our tabs\n.nav-tabs-justified {\n  border-bottom: 0;\n\n  > li > a {\n    // Override margin from .nav-tabs\n    margin-right: 0;\n    border-radius: @border-radius-base;\n  }\n\n  > .active > a,\n  > .active > a:hover,\n  > .active > a:focus {\n    border: 1px solid @nav-tabs-justified-link-border-color;\n  }\n\n  @media (min-width: @screen-sm-min) {\n    > li > a {\n      border-bottom: 1px solid @nav-tabs-justified-link-border-color;\n      border-radius: @border-radius-base @border-radius-base 0 0;\n    }\n    > .active > a,\n    > .active > a:hover,\n    > .active > a:focus {\n      border-bottom-color: @nav-tabs-justified-active-link-border-color;\n    }\n  }\n}\n\n\n// Tabbable tabs\n// -------------------------\n\n// Hide tabbable panes to start, show them when `.active`\n.tab-content {\n  > .tab-pane {\n    display: none;\n  }\n  > .active {\n    display: block;\n  }\n}\n\n\n// Dropdowns\n// -------------------------\n\n// Specific dropdowns\n.nav-tabs .dropdown-menu {\n  // make dropdown border overlap tab border\n  margin-top: -1px;\n  // Remove the top rounded corners here since there is a hard edge above the menu\n  .border-top-radius(0);\n}\n","//\n// Navbars\n// --------------------------------------------------\n\n\n// Wrapper and base class\n//\n// Provide a static navbar from which we expand to create full-width, fixed, and\n// other navbar variations.\n\n.navbar {\n  position: relative;\n  min-height: @navbar-height; // Ensure a navbar always shows (e.g., without a .navbar-brand in collapsed mode)\n  margin-bottom: @navbar-margin-bottom;\n  border: 1px solid transparent;\n\n  // Prevent floats from breaking the navbar\n  &:extend(.clearfix all);\n\n  @media (min-width: @grid-float-breakpoint) {\n    border-radius: @navbar-border-radius;\n  }\n}\n\n\n// Navbar heading\n//\n// Groups `.navbar-brand` and `.navbar-toggle` into a single component for easy\n// styling of responsive aspects.\n\n.navbar-header {\n  &:extend(.clearfix all);\n\n  @media (min-width: @grid-float-breakpoint) {\n    float: left;\n  }\n}\n\n\n// Navbar collapse (body)\n//\n// Group your navbar content into this for easy collapsing and expanding across\n// various device sizes. By default, this content is collapsed when <768px, but\n// will expand past that for a horizontal display.\n//\n// To start (on mobile devices) the navbar links, forms, and buttons are stacked\n// vertically and include a `max-height` to overflow in case you have too much\n// content for the user's viewport.\n\n.navbar-collapse {\n  overflow-x: visible;\n  padding-right: @navbar-padding-horizontal;\n  padding-left:  @navbar-padding-horizontal;\n  border-top: 1px solid transparent;\n  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);\n  &:extend(.clearfix all);\n  -webkit-overflow-scrolling: touch;\n\n  &.in {\n    overflow-y: auto;\n  }\n\n  @media (min-width: @grid-float-breakpoint) {\n    width: auto;\n    border-top: 0;\n    box-shadow: none;\n\n    &.collapse {\n      display: block !important;\n      height: auto !important;\n      padding-bottom: 0; // Override default setting\n      overflow: visible !important;\n    }\n\n    &.in {\n      overflow-y: visible;\n    }\n\n    // Undo the collapse side padding for navbars with containers to ensure\n    // alignment of right-aligned contents.\n    .navbar-fixed-top &,\n    .navbar-static-top &,\n    .navbar-fixed-bottom & {\n      padding-left: 0;\n      padding-right: 0;\n    }\n  }\n}\n\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n  .navbar-collapse {\n    max-height: @navbar-collapse-max-height;\n\n    @media (max-device-width: @screen-xs-min) and (orientation: landscape) {\n      max-height: 200px;\n    }\n  }\n}\n\n\n// Both navbar header and collapse\n//\n// When a container is present, change the behavior of the header and collapse.\n\n.container,\n.container-fluid {\n  > .navbar-header,\n  > .navbar-collapse {\n    margin-right: -@navbar-padding-horizontal;\n    margin-left:  -@navbar-padding-horizontal;\n\n    @media (min-width: @grid-float-breakpoint) {\n      margin-right: 0;\n      margin-left:  0;\n    }\n  }\n}\n\n\n//\n// Navbar alignment options\n//\n// Display the navbar across the entirety of the page or fixed it to the top or\n// bottom of the page.\n\n// Static top (unfixed, but 100% wide) navbar\n.navbar-static-top {\n  z-index: @zindex-navbar;\n  border-width: 0 0 1px;\n\n  @media (min-width: @grid-float-breakpoint) {\n    border-radius: 0;\n  }\n}\n\n// Fix the top/bottom navbars when screen real estate supports it\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n  position: fixed;\n  right: 0;\n  left: 0;\n  z-index: @zindex-navbar-fixed;\n\n  // Undo the rounded corners\n  @media (min-width: @grid-float-breakpoint) {\n    border-radius: 0;\n  }\n}\n.navbar-fixed-top {\n  top: 0;\n  border-width: 0 0 1px;\n}\n.navbar-fixed-bottom {\n  bottom: 0;\n  margin-bottom: 0; // override .navbar defaults\n  border-width: 1px 0 0;\n}\n\n\n// Brand/project name\n\n.navbar-brand {\n  float: left;\n  padding: @navbar-padding-vertical @navbar-padding-horizontal;\n  font-size: @font-size-large;\n  line-height: @line-height-computed;\n  height: @navbar-height;\n\n  &:hover,\n  &:focus {\n    text-decoration: none;\n  }\n\n  > img {\n    display: block;\n  }\n\n  @media (min-width: @grid-float-breakpoint) {\n    .navbar > .container &,\n    .navbar > .container-fluid & {\n      margin-left: -@navbar-padding-horizontal;\n    }\n  }\n}\n\n\n// Navbar toggle\n//\n// Custom button for toggling the `.navbar-collapse`, powered by the collapse\n// JavaScript plugin.\n\n.navbar-toggle {\n  position: relative;\n  float: right;\n  margin-right: @navbar-padding-horizontal;\n  padding: 9px 10px;\n  .navbar-vertical-align(34px);\n  background-color: transparent;\n  background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n  border: 1px solid transparent;\n  border-radius: @border-radius-base;\n\n  // We remove the `outline` here, but later compensate by attaching `:hover`\n  // styles to `:focus`.\n  &:focus {\n    outline: 0;\n  }\n\n  // Bars\n  .icon-bar {\n    display: block;\n    width: 22px;\n    height: 2px;\n    border-radius: 1px;\n  }\n  .icon-bar + .icon-bar {\n    margin-top: 4px;\n  }\n\n  @media (min-width: @grid-float-breakpoint) {\n    display: none;\n  }\n}\n\n\n// Navbar nav links\n//\n// Builds on top of the `.nav` components with its own modifier class to make\n// the nav the full height of the horizontal nav (above 768px).\n\n.navbar-nav {\n  margin: (@navbar-padding-vertical / 2) -@navbar-padding-horizontal;\n\n  > li > a {\n    padding-top:    10px;\n    padding-bottom: 10px;\n    line-height: @line-height-computed;\n  }\n\n  @media (max-width: @grid-float-breakpoint-max) {\n    // Dropdowns get custom display when collapsed\n    .open .dropdown-menu {\n      position: static;\n      float: none;\n      width: auto;\n      margin-top: 0;\n      background-color: transparent;\n      border: 0;\n      box-shadow: none;\n      > li > a,\n      .dropdown-header {\n        padding: 5px 15px 5px 25px;\n      }\n      > li > a {\n        line-height: @line-height-computed;\n        &:hover,\n        &:focus {\n          background-image: none;\n        }\n      }\n    }\n  }\n\n  // Uncollapse the nav\n  @media (min-width: @grid-float-breakpoint) {\n    float: left;\n    margin: 0;\n\n    > li {\n      float: left;\n      > a {\n        padding-top:    @navbar-padding-vertical;\n        padding-bottom: @navbar-padding-vertical;\n      }\n    }\n  }\n}\n\n\n// Navbar form\n//\n// Extension of the `.form-inline` with some extra flavor for optimum display in\n// our navbars.\n\n.navbar-form {\n  margin-left: -@navbar-padding-horizontal;\n  margin-right: -@navbar-padding-horizontal;\n  padding: 10px @navbar-padding-horizontal;\n  border-top: 1px solid transparent;\n  border-bottom: 1px solid transparent;\n  @shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);\n  .box-shadow(@shadow);\n\n  // Mixin behavior for optimum display\n  .form-inline();\n\n  .form-group {\n    @media (max-width: @grid-float-breakpoint-max) {\n      margin-bottom: 5px;\n\n      &:last-child {\n        margin-bottom: 0;\n      }\n    }\n  }\n\n  // Vertically center in expanded, horizontal navbar\n  .navbar-vertical-align(@input-height-base);\n\n  // Undo 100% width for pull classes\n  @media (min-width: @grid-float-breakpoint) {\n    width: auto;\n    border: 0;\n    margin-left: 0;\n    margin-right: 0;\n    padding-top: 0;\n    padding-bottom: 0;\n    .box-shadow(none);\n  }\n}\n\n\n// Dropdown menus\n\n// Menu position and menu carets\n.navbar-nav > li > .dropdown-menu {\n  margin-top: 0;\n  .border-top-radius(0);\n}\n// Menu position and menu caret support for dropups via extra dropup class\n.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {\n  margin-bottom: 0;\n  .border-top-radius(@navbar-border-radius);\n  .border-bottom-radius(0);\n}\n\n\n// Buttons in navbars\n//\n// Vertically center a button within a navbar (when *not* in a form).\n\n.navbar-btn {\n  .navbar-vertical-align(@input-height-base);\n\n  &.btn-sm {\n    .navbar-vertical-align(@input-height-small);\n  }\n  &.btn-xs {\n    .navbar-vertical-align(22);\n  }\n}\n\n\n// Text in navbars\n//\n// Add a class to make any element properly align itself vertically within the navbars.\n\n.navbar-text {\n  .navbar-vertical-align(@line-height-computed);\n\n  @media (min-width: @grid-float-breakpoint) {\n    float: left;\n    margin-left: @navbar-padding-horizontal;\n    margin-right: @navbar-padding-horizontal;\n  }\n}\n\n\n// Component alignment\n//\n// Repurpose the pull utilities as their own navbar utilities to avoid specificity\n// issues with parents and chaining. Only do this when the navbar is uncollapsed\n// though so that navbar contents properly stack and align in mobile.\n//\n// Declared after the navbar components to ensure more specificity on the margins.\n\n@media (min-width: @grid-float-breakpoint) {\n  .navbar-left  { .pull-left(); }\n  .navbar-right {\n    .pull-right();\n    margin-right: -@navbar-padding-horizontal;\n\n    ~ .navbar-right {\n      margin-right: 0;\n    }\n  }\n}\n\n\n// Alternate navbars\n// --------------------------------------------------\n\n// Default navbar\n.navbar-default {\n  background-color: @navbar-default-bg;\n  border-color: @navbar-default-border;\n\n  .navbar-brand {\n    color: @navbar-default-brand-color;\n    &:hover,\n    &:focus {\n      color: @navbar-default-brand-hover-color;\n      background-color: @navbar-default-brand-hover-bg;\n    }\n  }\n\n  .navbar-text {\n    color: @navbar-default-color;\n  }\n\n  .navbar-nav {\n    > li > a {\n      color: @navbar-default-link-color;\n\n      &:hover,\n      &:focus {\n        color: @navbar-default-link-hover-color;\n        background-color: @navbar-default-link-hover-bg;\n      }\n    }\n    > .active > a {\n      &,\n      &:hover,\n      &:focus {\n        color: @navbar-default-link-active-color;\n        background-color: @navbar-default-link-active-bg;\n      }\n    }\n    > .disabled > a {\n      &,\n      &:hover,\n      &:focus {\n        color: @navbar-default-link-disabled-color;\n        background-color: @navbar-default-link-disabled-bg;\n      }\n    }\n  }\n\n  .navbar-toggle {\n    border-color: @navbar-default-toggle-border-color;\n    &:hover,\n    &:focus {\n      background-color: @navbar-default-toggle-hover-bg;\n    }\n    .icon-bar {\n      background-color: @navbar-default-toggle-icon-bar-bg;\n    }\n  }\n\n  .navbar-collapse,\n  .navbar-form {\n    border-color: @navbar-default-border;\n  }\n\n  // Dropdown menu items\n  .navbar-nav {\n    // Remove background color from open dropdown\n    > .open > a {\n      &,\n      &:hover,\n      &:focus {\n        background-color: @navbar-default-link-active-bg;\n        color: @navbar-default-link-active-color;\n      }\n    }\n\n    @media (max-width: @grid-float-breakpoint-max) {\n      // Dropdowns get custom display when collapsed\n      .open .dropdown-menu {\n        > li > a {\n          color: @navbar-default-link-color;\n          &:hover,\n          &:focus {\n            color: @navbar-default-link-hover-color;\n            background-color: @navbar-default-link-hover-bg;\n          }\n        }\n        > .active > a {\n          &,\n          &:hover,\n          &:focus {\n            color: @navbar-default-link-active-color;\n            background-color: @navbar-default-link-active-bg;\n          }\n        }\n        > .disabled > a {\n          &,\n          &:hover,\n          &:focus {\n            color: @navbar-default-link-disabled-color;\n            background-color: @navbar-default-link-disabled-bg;\n          }\n        }\n      }\n    }\n  }\n\n\n  // Links in navbars\n  //\n  // Add a class to ensure links outside the navbar nav are colored correctly.\n\n  .navbar-link {\n    color: @navbar-default-link-color;\n    &:hover {\n      color: @navbar-default-link-hover-color;\n    }\n  }\n\n  .btn-link {\n    color: @navbar-default-link-color;\n    &:hover,\n    &:focus {\n      color: @navbar-default-link-hover-color;\n    }\n    &[disabled],\n    fieldset[disabled] & {\n      &:hover,\n      &:focus {\n        color: @navbar-default-link-disabled-color;\n      }\n    }\n  }\n}\n\n// Inverse navbar\n\n.navbar-inverse {\n  background-color: @navbar-inverse-bg;\n  border-color: @navbar-inverse-border;\n\n  .navbar-brand {\n    color: @navbar-inverse-brand-color;\n    &:hover,\n    &:focus {\n      color: @navbar-inverse-brand-hover-color;\n      background-color: @navbar-inverse-brand-hover-bg;\n    }\n  }\n\n  .navbar-text {\n    color: @navbar-inverse-color;\n  }\n\n  .navbar-nav {\n    > li > a {\n      color: @navbar-inverse-link-color;\n\n      &:hover,\n      &:focus {\n        color: @navbar-inverse-link-hover-color;\n        background-color: @navbar-inverse-link-hover-bg;\n      }\n    }\n    > .active > a {\n      &,\n      &:hover,\n      &:focus {\n        color: @navbar-inverse-link-active-color;\n        background-color: @navbar-inverse-link-active-bg;\n      }\n    }\n    > .disabled > a {\n      &,\n      &:hover,\n      &:focus {\n        color: @navbar-inverse-link-disabled-color;\n        background-color: @navbar-inverse-link-disabled-bg;\n      }\n    }\n  }\n\n  // Darken the responsive nav toggle\n  .navbar-toggle {\n    border-color: @navbar-inverse-toggle-border-color;\n    &:hover,\n    &:focus {\n      background-color: @navbar-inverse-toggle-hover-bg;\n    }\n    .icon-bar {\n      background-color: @navbar-inverse-toggle-icon-bar-bg;\n    }\n  }\n\n  .navbar-collapse,\n  .navbar-form {\n    border-color: darken(@navbar-inverse-bg, 7%);\n  }\n\n  // Dropdowns\n  .navbar-nav {\n    > .open > a {\n      &,\n      &:hover,\n      &:focus {\n        background-color: @navbar-inverse-link-active-bg;\n        color: @navbar-inverse-link-active-color;\n      }\n    }\n\n    @media (max-width: @grid-float-breakpoint-max) {\n      // Dropdowns get custom display\n      .open .dropdown-menu {\n        > .dropdown-header {\n          border-color: @navbar-inverse-border;\n        }\n        .divider {\n          background-color: @navbar-inverse-border;\n        }\n        > li > a {\n          color: @navbar-inverse-link-color;\n          &:hover,\n          &:focus {\n            color: @navbar-inverse-link-hover-color;\n            background-color: @navbar-inverse-link-hover-bg;\n          }\n        }\n        > .active > a {\n          &,\n          &:hover,\n          &:focus {\n            color: @navbar-inverse-link-active-color;\n            background-color: @navbar-inverse-link-active-bg;\n          }\n        }\n        > .disabled > a {\n          &,\n          &:hover,\n          &:focus {\n            color: @navbar-inverse-link-disabled-color;\n            background-color: @navbar-inverse-link-disabled-bg;\n          }\n        }\n      }\n    }\n  }\n\n  .navbar-link {\n    color: @navbar-inverse-link-color;\n    &:hover {\n      color: @navbar-inverse-link-hover-color;\n    }\n  }\n\n  .btn-link {\n    color: @navbar-inverse-link-color;\n    &:hover,\n    &:focus {\n      color: @navbar-inverse-link-hover-color;\n    }\n    &[disabled],\n    fieldset[disabled] & {\n      &:hover,\n      &:focus {\n        color: @navbar-inverse-link-disabled-color;\n      }\n    }\n  }\n}\n","// Navbar vertical align\n//\n// Vertically center elements in the navbar.\n// Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin.\n\n.navbar-vertical-align(@element-height) {\n  margin-top: ((@navbar-height - @element-height) / 2);\n  margin-bottom: ((@navbar-height - @element-height) / 2);\n}\n","//\n// Utility classes\n// --------------------------------------------------\n\n\n// Floats\n// -------------------------\n\n.clearfix {\n  .clearfix();\n}\n.center-block {\n  .center-block();\n}\n.pull-right {\n  float: right !important;\n}\n.pull-left {\n  float: left !important;\n}\n\n\n// Toggling content\n// -------------------------\n\n// Note: Deprecated .hide in favor of .hidden or .sr-only (as appropriate) in v3.0.1\n.hide {\n  display: none !important;\n}\n.show {\n  display: block !important;\n}\n.invisible {\n  visibility: hidden;\n}\n.text-hide {\n  .text-hide();\n}\n\n\n// Hide from screenreaders and browsers\n//\n// Credit: HTML5 Boilerplate\n\n.hidden {\n  display: none !important;\n}\n\n\n// For Affix plugin\n// -------------------------\n\n.affix {\n  position: fixed;\n}\n","//\n// Breadcrumbs\n// --------------------------------------------------\n\n\n.breadcrumb {\n  padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal;\n  margin-bottom: @line-height-computed;\n  list-style: none;\n  background-color: @breadcrumb-bg;\n  border-radius: @border-radius-base;\n\n  > li {\n    display: inline-block;\n\n    + li:before {\n      content: \"@{breadcrumb-separator}\\00a0\"; // Unicode space added since inline-block means non-collapsing white-space\n      padding: 0 5px;\n      color: @breadcrumb-color;\n    }\n  }\n\n  > .active {\n    color: @breadcrumb-active-color;\n  }\n}\n","//\n// Pagination (multiple pages)\n// --------------------------------------------------\n.pagination {\n  display: inline-block;\n  padding-left: 0;\n  margin: @line-height-computed 0;\n  border-radius: @border-radius-base;\n\n  > li {\n    display: inline; // Remove list-style and block-level defaults\n    > a,\n    > span {\n      position: relative;\n      float: left; // Collapse white-space\n      padding: @padding-base-vertical @padding-base-horizontal;\n      line-height: @line-height-base;\n      text-decoration: none;\n      color: @pagination-color;\n      background-color: @pagination-bg;\n      border: 1px solid @pagination-border;\n      margin-left: -1px;\n    }\n    &:first-child {\n      > a,\n      > span {\n        margin-left: 0;\n        .border-left-radius(@border-radius-base);\n      }\n    }\n    &:last-child {\n      > a,\n      > span {\n        .border-right-radius(@border-radius-base);\n      }\n    }\n  }\n\n  > li > a,\n  > li > span {\n    &:hover,\n    &:focus {\n      z-index: 2;\n      color: @pagination-hover-color;\n      background-color: @pagination-hover-bg;\n      border-color: @pagination-hover-border;\n    }\n  }\n\n  > .active > a,\n  > .active > span {\n    &,\n    &:hover,\n    &:focus {\n      z-index: 3;\n      color: @pagination-active-color;\n      background-color: @pagination-active-bg;\n      border-color: @pagination-active-border;\n      cursor: default;\n    }\n  }\n\n  > .disabled {\n    > span,\n    > span:hover,\n    > span:focus,\n    > a,\n    > a:hover,\n    > a:focus {\n      color: @pagination-disabled-color;\n      background-color: @pagination-disabled-bg;\n      border-color: @pagination-disabled-border;\n      cursor: @cursor-disabled;\n    }\n  }\n}\n\n// Sizing\n// --------------------------------------------------\n\n// Large\n.pagination-lg {\n  .pagination-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @border-radius-large);\n}\n\n// Small\n.pagination-sm {\n  .pagination-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @border-radius-small);\n}\n","// Pagination\n\n.pagination-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n  > li {\n    > a,\n    > span {\n      padding: @padding-vertical @padding-horizontal;\n      font-size: @font-size;\n      line-height: @line-height;\n    }\n    &:first-child {\n      > a,\n      > span {\n        .border-left-radius(@border-radius);\n      }\n    }\n    &:last-child {\n      > a,\n      > span {\n        .border-right-radius(@border-radius);\n      }\n    }\n  }\n}\n","//\n// Pager pagination\n// --------------------------------------------------\n\n\n.pager {\n  padding-left: 0;\n  margin: @line-height-computed 0;\n  list-style: none;\n  text-align: center;\n  &:extend(.clearfix all);\n  li {\n    display: inline;\n    > a,\n    > span {\n      display: inline-block;\n      padding: 5px 14px;\n      background-color: @pager-bg;\n      border: 1px solid @pager-border;\n      border-radius: @pager-border-radius;\n    }\n\n    > a:hover,\n    > a:focus {\n      text-decoration: none;\n      background-color: @pager-hover-bg;\n    }\n  }\n\n  .next {\n    > a,\n    > span {\n      float: right;\n    }\n  }\n\n  .previous {\n    > a,\n    > span {\n      float: left;\n    }\n  }\n\n  .disabled {\n    > a,\n    > a:hover,\n    > a:focus,\n    > span {\n      color: @pager-disabled-color;\n      background-color: @pager-bg;\n      cursor: @cursor-disabled;\n    }\n  }\n}\n","//\n// Labels\n// --------------------------------------------------\n\n.label {\n  display: inline;\n  padding: .2em .6em .3em;\n  font-size: 75%;\n  font-weight: bold;\n  line-height: 1;\n  color: @label-color;\n  text-align: center;\n  white-space: nowrap;\n  vertical-align: baseline;\n  border-radius: .25em;\n\n  // Add hover effects, but only for links\n  a& {\n    &:hover,\n    &:focus {\n      color: @label-link-hover-color;\n      text-decoration: none;\n      cursor: pointer;\n    }\n  }\n\n  // Empty labels collapse automatically (not available in IE8)\n  &:empty {\n    display: none;\n  }\n\n  // Quick fix for labels in buttons\n  .btn & {\n    position: relative;\n    top: -1px;\n  }\n}\n\n// Colors\n// Contextual variations (linked labels get darker on :hover)\n\n.label-default {\n  .label-variant(@label-default-bg);\n}\n\n.label-primary {\n  .label-variant(@label-primary-bg);\n}\n\n.label-success {\n  .label-variant(@label-success-bg);\n}\n\n.label-info {\n  .label-variant(@label-info-bg);\n}\n\n.label-warning {\n  .label-variant(@label-warning-bg);\n}\n\n.label-danger {\n  .label-variant(@label-danger-bg);\n}\n","// Labels\n\n.label-variant(@color) {\n  background-color: @color;\n\n  &[href] {\n    &:hover,\n    &:focus {\n      background-color: darken(@color, 10%);\n    }\n  }\n}\n","//\n// Badges\n// --------------------------------------------------\n\n\n// Base class\n.badge {\n  display: inline-block;\n  min-width: 10px;\n  padding: 3px 7px;\n  font-size: @font-size-small;\n  font-weight: @badge-font-weight;\n  color: @badge-color;\n  line-height: @badge-line-height;\n  vertical-align: middle;\n  white-space: nowrap;\n  text-align: center;\n  background-color: @badge-bg;\n  border-radius: @badge-border-radius;\n\n  // Empty badges collapse automatically (not available in IE8)\n  &:empty {\n    display: none;\n  }\n\n  // Quick fix for badges in buttons\n  .btn & {\n    position: relative;\n    top: -1px;\n  }\n\n  .btn-xs &,\n  .btn-group-xs > .btn & {\n    top: 0;\n    padding: 1px 5px;\n  }\n\n  // Hover state, but only for links\n  a& {\n    &:hover,\n    &:focus {\n      color: @badge-link-hover-color;\n      text-decoration: none;\n      cursor: pointer;\n    }\n  }\n\n  // Account for badges in navs\n  .list-group-item.active > &,\n  .nav-pills > .active > a > & {\n    color: @badge-active-color;\n    background-color: @badge-active-bg;\n  }\n\n  .list-group-item > & {\n    float: right;\n  }\n\n  .list-group-item > & + & {\n    margin-right: 5px;\n  }\n\n  .nav-pills > li > a > & {\n    margin-left: 3px;\n  }\n}\n","//\n// Jumbotron\n// --------------------------------------------------\n\n\n.jumbotron {\n  padding-top:    @jumbotron-padding;\n  padding-bottom: @jumbotron-padding;\n  margin-bottom: @jumbotron-padding;\n  color: @jumbotron-color;\n  background-color: @jumbotron-bg;\n\n  h1,\n  .h1 {\n    color: @jumbotron-heading-color;\n  }\n\n  p {\n    margin-bottom: (@jumbotron-padding / 2);\n    font-size: @jumbotron-font-size;\n    font-weight: 200;\n  }\n\n  > hr {\n    border-top-color: darken(@jumbotron-bg, 10%);\n  }\n\n  .container &,\n  .container-fluid & {\n    border-radius: @border-radius-large; // Only round corners at higher resolutions if contained in a container\n    padding-left:  (@grid-gutter-width / 2);\n    padding-right: (@grid-gutter-width / 2);\n  }\n\n  .container {\n    max-width: 100%;\n  }\n\n  @media screen and (min-width: @screen-sm-min) {\n    padding-top:    (@jumbotron-padding * 1.6);\n    padding-bottom: (@jumbotron-padding * 1.6);\n\n    .container &,\n    .container-fluid & {\n      padding-left:  (@jumbotron-padding * 2);\n      padding-right: (@jumbotron-padding * 2);\n    }\n\n    h1,\n    .h1 {\n      font-size: @jumbotron-heading-font-size;\n    }\n  }\n}\n","//\n// Thumbnails\n// --------------------------------------------------\n\n\n// Mixin and adjust the regular image class\n.thumbnail {\n  display: block;\n  padding: @thumbnail-padding;\n  margin-bottom: @line-height-computed;\n  line-height: @line-height-base;\n  background-color: @thumbnail-bg;\n  border: 1px solid @thumbnail-border;\n  border-radius: @thumbnail-border-radius;\n  .transition(border .2s ease-in-out);\n\n  > img,\n  a > img {\n    &:extend(.img-responsive);\n    margin-left: auto;\n    margin-right: auto;\n  }\n\n  // Add a hover state for linked versions only\n  a&:hover,\n  a&:focus,\n  a&.active {\n    border-color: @link-color;\n  }\n\n  // Image captions\n  .caption {\n    padding: @thumbnail-caption-padding;\n    color: @thumbnail-caption-color;\n  }\n}\n","//\n// Alerts\n// --------------------------------------------------\n\n\n// Base styles\n// -------------------------\n\n.alert {\n  padding: @alert-padding;\n  margin-bottom: @line-height-computed;\n  border: 1px solid transparent;\n  border-radius: @alert-border-radius;\n\n  // Headings for larger alerts\n  h4 {\n    margin-top: 0;\n    // Specified for the h4 to prevent conflicts of changing @headings-color\n    color: inherit;\n  }\n\n  // Provide class for links that match alerts\n  .alert-link {\n    font-weight: @alert-link-font-weight;\n  }\n\n  // Improve alignment and spacing of inner content\n  > p,\n  > ul {\n    margin-bottom: 0;\n  }\n\n  > p + p {\n    margin-top: 5px;\n  }\n}\n\n// Dismissible alerts\n//\n// Expand the right padding and account for the close button's positioning.\n\n.alert-dismissable, // The misspelled .alert-dismissable was deprecated in 3.2.0.\n.alert-dismissible {\n  padding-right: (@alert-padding + 20);\n\n  // Adjust close link position\n  .close {\n    position: relative;\n    top: -2px;\n    right: -21px;\n    color: inherit;\n  }\n}\n\n// Alternate styles\n//\n// Generate contextual modifier classes for colorizing the alert.\n\n.alert-success {\n  .alert-variant(@alert-success-bg; @alert-success-border; @alert-success-text);\n}\n\n.alert-info {\n  .alert-variant(@alert-info-bg; @alert-info-border; @alert-info-text);\n}\n\n.alert-warning {\n  .alert-variant(@alert-warning-bg; @alert-warning-border; @alert-warning-text);\n}\n\n.alert-danger {\n  .alert-variant(@alert-danger-bg; @alert-danger-border; @alert-danger-text);\n}\n","// Alerts\n\n.alert-variant(@background; @border; @text-color) {\n  background-color: @background;\n  border-color: @border;\n  color: @text-color;\n\n  hr {\n    border-top-color: darken(@border, 5%);\n  }\n  .alert-link {\n    color: darken(@text-color, 10%);\n  }\n}\n","//\n// Progress bars\n// --------------------------------------------------\n\n\n// Bar animations\n// -------------------------\n\n// WebKit\n@-webkit-keyframes progress-bar-stripes {\n  from  { background-position: 40px 0; }\n  to    { background-position: 0 0; }\n}\n\n// Spec and IE10+\n@keyframes progress-bar-stripes {\n  from  { background-position: 40px 0; }\n  to    { background-position: 0 0; }\n}\n\n\n// Bar itself\n// -------------------------\n\n// Outer container\n.progress {\n  overflow: hidden;\n  height: @line-height-computed;\n  margin-bottom: @line-height-computed;\n  background-color: @progress-bg;\n  border-radius: @progress-border-radius;\n  .box-shadow(inset 0 1px 2px rgba(0,0,0,.1));\n}\n\n// Bar of progress\n.progress-bar {\n  float: left;\n  width: 0%;\n  height: 100%;\n  font-size: @font-size-small;\n  line-height: @line-height-computed;\n  color: @progress-bar-color;\n  text-align: center;\n  background-color: @progress-bar-bg;\n  .box-shadow(inset 0 -1px 0 rgba(0,0,0,.15));\n  .transition(width .6s ease);\n}\n\n// Striped bars\n//\n// `.progress-striped .progress-bar` is deprecated as of v3.2.0 in favor of the\n// `.progress-bar-striped` class, which you just add to an existing\n// `.progress-bar`.\n.progress-striped .progress-bar,\n.progress-bar-striped {\n  #gradient > .striped();\n  background-size: 40px 40px;\n}\n\n// Call animation for the active one\n//\n// `.progress.active .progress-bar` is deprecated as of v3.2.0 in favor of the\n// `.progress-bar.active` approach.\n.progress.active .progress-bar,\n.progress-bar.active {\n  .animation(progress-bar-stripes 2s linear infinite);\n}\n\n\n// Variations\n// -------------------------\n\n.progress-bar-success {\n  .progress-bar-variant(@progress-bar-success-bg);\n}\n\n.progress-bar-info {\n  .progress-bar-variant(@progress-bar-info-bg);\n}\n\n.progress-bar-warning {\n  .progress-bar-variant(@progress-bar-warning-bg);\n}\n\n.progress-bar-danger {\n  .progress-bar-variant(@progress-bar-danger-bg);\n}\n","// Gradients\n\n#gradient {\n\n  // Horizontal gradient, from left to right\n  //\n  // Creates two color stops, start and end, by specifying a color and position for each color stop.\n  // Color stops are not available in IE9 and below.\n  .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n    background-image: -webkit-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n    background-image: -o-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Opera 12\n    background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n    background-repeat: repeat-x;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down\n  }\n\n  // Vertical gradient, from top to bottom\n  //\n  // Creates two color stops, start and end, by specifying a color and position for each color stop.\n  // Color stops are not available in IE9 and below.\n  .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n    background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent);  // Safari 5.1-6, Chrome 10+\n    background-image: -o-linear-gradient(top, @start-color @start-percent, @end-color @end-percent);  // Opera 12\n    background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n    background-repeat: repeat-x;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down\n  }\n\n  .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {\n    background-repeat: repeat-x;\n    background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+\n    background-image: -o-linear-gradient(@deg, @start-color, @end-color); // Opera 12\n    background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n  }\n  .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n    background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n    background-image: -o-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n    background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);\n    background-repeat: no-repeat;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n  }\n  .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n    background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n    background-image: -o-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n    background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n    background-repeat: no-repeat;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n  }\n  .radial(@inner-color: #555; @outer-color: #333) {\n    background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);\n    background-image: radial-gradient(circle, @inner-color, @outer-color);\n    background-repeat: no-repeat;\n  }\n  .striped(@color: rgba(255,255,255,.15); @angle: 45deg) {\n    background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n    background-image: -o-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n    background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n  }\n}\n","// Progress bars\n\n.progress-bar-variant(@color) {\n  background-color: @color;\n\n  // Deprecated parent class requirement as of v3.2.0\n  .progress-striped & {\n    #gradient > .striped();\n  }\n}\n",".media {\n  // Proper spacing between instances of .media\n  margin-top: 15px;\n\n  &:first-child {\n    margin-top: 0;\n  }\n}\n\n.media,\n.media-body {\n  zoom: 1;\n  overflow: hidden;\n}\n\n.media-body {\n  width: 10000px;\n}\n\n.media-object {\n  display: block;\n\n  // Fix collapse in webkit from max-width: 100% and display: table-cell.\n  &.img-thumbnail {\n    max-width: none;\n  }\n}\n\n.media-right,\n.media > .pull-right {\n  padding-left: 10px;\n}\n\n.media-left,\n.media > .pull-left {\n  padding-right: 10px;\n}\n\n.media-left,\n.media-right,\n.media-body {\n  display: table-cell;\n  vertical-align: top;\n}\n\n.media-middle {\n  vertical-align: middle;\n}\n\n.media-bottom {\n  vertical-align: bottom;\n}\n\n// Reset margins on headings for tighter default spacing\n.media-heading {\n  margin-top: 0;\n  margin-bottom: 5px;\n}\n\n// Media list variation\n//\n// Undo default ul/ol styles\n.media-list {\n  padding-left: 0;\n  list-style: none;\n}\n","//\n// List groups\n// --------------------------------------------------\n\n\n// Base class\n//\n// Easily usable on <ul>, <ol>, or <div>.\n\n.list-group {\n  // No need to set list-style: none; since .list-group-item is block level\n  margin-bottom: 20px;\n  padding-left: 0; // reset padding because ul and ol\n}\n\n\n// Individual list items\n//\n// Use on `li`s or `div`s within the `.list-group` parent.\n\n.list-group-item {\n  position: relative;\n  display: block;\n  padding: 10px 15px;\n  // Place the border on the list items and negative margin up for better styling\n  margin-bottom: -1px;\n  background-color: @list-group-bg;\n  border: 1px solid @list-group-border;\n\n  // Round the first and last items\n  &:first-child {\n    .border-top-radius(@list-group-border-radius);\n  }\n  &:last-child {\n    margin-bottom: 0;\n    .border-bottom-radius(@list-group-border-radius);\n  }\n}\n\n\n// Interactive list items\n//\n// Use anchor or button elements instead of `li`s or `div`s to create interactive items.\n// Includes an extra `.active` modifier class for showing selected items.\n\na.list-group-item,\nbutton.list-group-item {\n  color: @list-group-link-color;\n\n  .list-group-item-heading {\n    color: @list-group-link-heading-color;\n  }\n\n  // Hover state\n  &:hover,\n  &:focus {\n    text-decoration: none;\n    color: @list-group-link-hover-color;\n    background-color: @list-group-hover-bg;\n  }\n}\n\nbutton.list-group-item {\n  width: 100%;\n  text-align: left;\n}\n\n.list-group-item {\n  // Disabled state\n  &.disabled,\n  &.disabled:hover,\n  &.disabled:focus {\n    background-color: @list-group-disabled-bg;\n    color: @list-group-disabled-color;\n    cursor: @cursor-disabled;\n\n    // Force color to inherit for custom content\n    .list-group-item-heading {\n      color: inherit;\n    }\n    .list-group-item-text {\n      color: @list-group-disabled-text-color;\n    }\n  }\n\n  // Active class on item itself, not parent\n  &.active,\n  &.active:hover,\n  &.active:focus {\n    z-index: 2; // Place active items above their siblings for proper border styling\n    color: @list-group-active-color;\n    background-color: @list-group-active-bg;\n    border-color: @list-group-active-border;\n\n    // Force color to inherit for custom content\n    .list-group-item-heading,\n    .list-group-item-heading > small,\n    .list-group-item-heading > .small {\n      color: inherit;\n    }\n    .list-group-item-text {\n      color: @list-group-active-text-color;\n    }\n  }\n}\n\n\n// Contextual variants\n//\n// Add modifier classes to change text and background color on individual items.\n// Organizationally, this must come after the `:hover` states.\n\n.list-group-item-variant(success; @state-success-bg; @state-success-text);\n.list-group-item-variant(info; @state-info-bg; @state-info-text);\n.list-group-item-variant(warning; @state-warning-bg; @state-warning-text);\n.list-group-item-variant(danger; @state-danger-bg; @state-danger-text);\n\n\n// Custom content options\n//\n// Extra classes for creating well-formatted content within `.list-group-item`s.\n\n.list-group-item-heading {\n  margin-top: 0;\n  margin-bottom: 5px;\n}\n.list-group-item-text {\n  margin-bottom: 0;\n  line-height: 1.3;\n}\n","// List Groups\n\n.list-group-item-variant(@state; @background; @color) {\n  .list-group-item-@{state} {\n    color: @color;\n    background-color: @background;\n\n    a&,\n    button& {\n      color: @color;\n\n      .list-group-item-heading {\n        color: inherit;\n      }\n\n      &:hover,\n      &:focus {\n        color: @color;\n        background-color: darken(@background, 5%);\n      }\n      &.active,\n      &.active:hover,\n      &.active:focus {\n        color: #fff;\n        background-color: @color;\n        border-color: @color;\n      }\n    }\n  }\n}\n","//\n// Panels\n// --------------------------------------------------\n\n\n// Base class\n.panel {\n  margin-bottom: @line-height-computed;\n  background-color: @panel-bg;\n  border: 1px solid transparent;\n  border-radius: @panel-border-radius;\n  .box-shadow(0 1px 1px rgba(0,0,0,.05));\n}\n\n// Panel contents\n.panel-body {\n  padding: @panel-body-padding;\n  &:extend(.clearfix all);\n}\n\n// Optional heading\n.panel-heading {\n  padding: @panel-heading-padding;\n  border-bottom: 1px solid transparent;\n  .border-top-radius((@panel-border-radius - 1));\n\n  > .dropdown .dropdown-toggle {\n    color: inherit;\n  }\n}\n\n// Within heading, strip any `h*` tag of its default margins for spacing.\n.panel-title {\n  margin-top: 0;\n  margin-bottom: 0;\n  font-size: ceil((@font-size-base * 1.125));\n  color: inherit;\n\n  > a,\n  > small,\n  > .small,\n  > small > a,\n  > .small > a {\n    color: inherit;\n  }\n}\n\n// Optional footer (stays gray in every modifier class)\n.panel-footer {\n  padding: @panel-footer-padding;\n  background-color: @panel-footer-bg;\n  border-top: 1px solid @panel-inner-border;\n  .border-bottom-radius((@panel-border-radius - 1));\n}\n\n\n// List groups in panels\n//\n// By default, space out list group content from panel headings to account for\n// any kind of custom content between the two.\n\n.panel {\n  > .list-group,\n  > .panel-collapse > .list-group {\n    margin-bottom: 0;\n\n    .list-group-item {\n      border-width: 1px 0;\n      border-radius: 0;\n    }\n\n    // Add border top radius for first one\n    &:first-child {\n      .list-group-item:first-child {\n        border-top: 0;\n        .border-top-radius((@panel-border-radius - 1));\n      }\n    }\n\n    // Add border bottom radius for last one\n    &:last-child {\n      .list-group-item:last-child {\n        border-bottom: 0;\n        .border-bottom-radius((@panel-border-radius - 1));\n      }\n    }\n  }\n  > .panel-heading + .panel-collapse > .list-group {\n    .list-group-item:first-child {\n      .border-top-radius(0);\n    }\n  }\n}\n// Collapse space between when there's no additional content.\n.panel-heading + .list-group {\n  .list-group-item:first-child {\n    border-top-width: 0;\n  }\n}\n.list-group + .panel-footer {\n  border-top-width: 0;\n}\n\n// Tables in panels\n//\n// Place a non-bordered `.table` within a panel (not within a `.panel-body`) and\n// watch it go full width.\n\n.panel {\n  > .table,\n  > .table-responsive > .table,\n  > .panel-collapse > .table {\n    margin-bottom: 0;\n\n    caption {\n      padding-left: @panel-body-padding;\n      padding-right: @panel-body-padding;\n    }\n  }\n  // Add border top radius for first one\n  > .table:first-child,\n  > .table-responsive:first-child > .table:first-child {\n    .border-top-radius((@panel-border-radius - 1));\n\n    > thead:first-child,\n    > tbody:first-child {\n      > tr:first-child {\n        border-top-left-radius: (@panel-border-radius - 1);\n        border-top-right-radius: (@panel-border-radius - 1);\n\n        td:first-child,\n        th:first-child {\n          border-top-left-radius: (@panel-border-radius - 1);\n        }\n        td:last-child,\n        th:last-child {\n          border-top-right-radius: (@panel-border-radius - 1);\n        }\n      }\n    }\n  }\n  // Add border bottom radius for last one\n  > .table:last-child,\n  > .table-responsive:last-child > .table:last-child {\n    .border-bottom-radius((@panel-border-radius - 1));\n\n    > tbody:last-child,\n    > tfoot:last-child {\n      > tr:last-child {\n        border-bottom-left-radius: (@panel-border-radius - 1);\n        border-bottom-right-radius: (@panel-border-radius - 1);\n\n        td:first-child,\n        th:first-child {\n          border-bottom-left-radius: (@panel-border-radius - 1);\n        }\n        td:last-child,\n        th:last-child {\n          border-bottom-right-radius: (@panel-border-radius - 1);\n        }\n      }\n    }\n  }\n  > .panel-body + .table,\n  > .panel-body + .table-responsive,\n  > .table + .panel-body,\n  > .table-responsive + .panel-body {\n    border-top: 1px solid @table-border-color;\n  }\n  > .table > tbody:first-child > tr:first-child th,\n  > .table > tbody:first-child > tr:first-child td {\n    border-top: 0;\n  }\n  > .table-bordered,\n  > .table-responsive > .table-bordered {\n    border: 0;\n    > thead,\n    > tbody,\n    > tfoot {\n      > tr {\n        > th:first-child,\n        > td:first-child {\n          border-left: 0;\n        }\n        > th:last-child,\n        > td:last-child {\n          border-right: 0;\n        }\n      }\n    }\n    > thead,\n    > tbody {\n      > tr:first-child {\n        > td,\n        > th {\n          border-bottom: 0;\n        }\n      }\n    }\n    > tbody,\n    > tfoot {\n      > tr:last-child {\n        > td,\n        > th {\n          border-bottom: 0;\n        }\n      }\n    }\n  }\n  > .table-responsive {\n    border: 0;\n    margin-bottom: 0;\n  }\n}\n\n\n// Collapsable panels (aka, accordion)\n//\n// Wrap a series of panels in `.panel-group` to turn them into an accordion with\n// the help of our collapse JavaScript plugin.\n\n.panel-group {\n  margin-bottom: @line-height-computed;\n\n  // Tighten up margin so it's only between panels\n  .panel {\n    margin-bottom: 0;\n    border-radius: @panel-border-radius;\n\n    + .panel {\n      margin-top: 5px;\n    }\n  }\n\n  .panel-heading {\n    border-bottom: 0;\n\n    + .panel-collapse > .panel-body,\n    + .panel-collapse > .list-group {\n      border-top: 1px solid @panel-inner-border;\n    }\n  }\n\n  .panel-footer {\n    border-top: 0;\n    + .panel-collapse .panel-body {\n      border-bottom: 1px solid @panel-inner-border;\n    }\n  }\n}\n\n\n// Contextual variations\n.panel-default {\n  .panel-variant(@panel-default-border; @panel-default-text; @panel-default-heading-bg; @panel-default-border);\n}\n.panel-primary {\n  .panel-variant(@panel-primary-border; @panel-primary-text; @panel-primary-heading-bg; @panel-primary-border);\n}\n.panel-success {\n  .panel-variant(@panel-success-border; @panel-success-text; @panel-success-heading-bg; @panel-success-border);\n}\n.panel-info {\n  .panel-variant(@panel-info-border; @panel-info-text; @panel-info-heading-bg; @panel-info-border);\n}\n.panel-warning {\n  .panel-variant(@panel-warning-border; @panel-warning-text; @panel-warning-heading-bg; @panel-warning-border);\n}\n.panel-danger {\n  .panel-variant(@panel-danger-border; @panel-danger-text; @panel-danger-heading-bg; @panel-danger-border);\n}\n","// Panels\n\n.panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) {\n  border-color: @border;\n\n  & > .panel-heading {\n    color: @heading-text-color;\n    background-color: @heading-bg-color;\n    border-color: @heading-border;\n\n    + .panel-collapse > .panel-body {\n      border-top-color: @border;\n    }\n    .badge {\n      color: @heading-bg-color;\n      background-color: @heading-text-color;\n    }\n  }\n  & > .panel-footer {\n    + .panel-collapse > .panel-body {\n      border-bottom-color: @border;\n    }\n  }\n}\n","// Embeds responsive\n//\n// Credit: Nicolas Gallagher and SUIT CSS.\n\n.embed-responsive {\n  position: relative;\n  display: block;\n  height: 0;\n  padding: 0;\n  overflow: hidden;\n\n  .embed-responsive-item,\n  iframe,\n  embed,\n  object,\n  video {\n    position: absolute;\n    top: 0;\n    left: 0;\n    bottom: 0;\n    height: 100%;\n    width: 100%;\n    border: 0;\n  }\n}\n\n// Modifier class for 16:9 aspect ratio\n.embed-responsive-16by9 {\n  padding-bottom: 56.25%;\n}\n\n// Modifier class for 4:3 aspect ratio\n.embed-responsive-4by3 {\n  padding-bottom: 75%;\n}\n","//\n// Wells\n// --------------------------------------------------\n\n\n// Base class\n.well {\n  min-height: 20px;\n  padding: 19px;\n  margin-bottom: 20px;\n  background-color: @well-bg;\n  border: 1px solid @well-border;\n  border-radius: @border-radius-base;\n  .box-shadow(inset 0 1px 1px rgba(0,0,0,.05));\n  blockquote {\n    border-color: #ddd;\n    border-color: rgba(0,0,0,.15);\n  }\n}\n\n// Sizes\n.well-lg {\n  padding: 24px;\n  border-radius: @border-radius-large;\n}\n.well-sm {\n  padding: 9px;\n  border-radius: @border-radius-small;\n}\n","//\n// Close icons\n// --------------------------------------------------\n\n\n.close {\n  float: right;\n  font-size: (@font-size-base * 1.5);\n  font-weight: @close-font-weight;\n  line-height: 1;\n  color: @close-color;\n  text-shadow: @close-text-shadow;\n  .opacity(.2);\n\n  &:hover,\n  &:focus {\n    color: @close-color;\n    text-decoration: none;\n    cursor: pointer;\n    .opacity(.5);\n  }\n\n  // Additional properties for button version\n  // iOS requires the button element instead of an anchor tag.\n  // If you want the anchor version, it requires `href=\"#\"`.\n  // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile\n  button& {\n    padding: 0;\n    cursor: pointer;\n    background: transparent;\n    border: 0;\n    -webkit-appearance: none;\n  }\n}\n","//\n// Modals\n// --------------------------------------------------\n\n// .modal-open      - body class for killing the scroll\n// .modal           - container to scroll within\n// .modal-dialog    - positioning shell for the actual modal\n// .modal-content   - actual modal w/ bg and corners and shit\n\n// Kill the scroll on the body\n.modal-open {\n  overflow: hidden;\n}\n\n// Container that the modal scrolls within\n.modal {\n  display: none;\n  overflow: hidden;\n  position: fixed;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  z-index: @zindex-modal;\n  -webkit-overflow-scrolling: touch;\n\n  // Prevent Chrome on Windows from adding a focus outline. For details, see\n  // https://github.com/twbs/bootstrap/pull/10951.\n  outline: 0;\n\n  // When fading in the modal, animate it to slide down\n  &.fade .modal-dialog {\n    .translate(0, -25%);\n    .transition-transform(~\"0.3s ease-out\");\n  }\n  &.in .modal-dialog { .translate(0, 0) }\n}\n.modal-open .modal {\n  overflow-x: hidden;\n  overflow-y: auto;\n}\n\n// Shell div to position the modal with bottom padding\n.modal-dialog {\n  position: relative;\n  width: auto;\n  margin: 10px;\n}\n\n// Actual modal\n.modal-content {\n  position: relative;\n  background-color: @modal-content-bg;\n  border: 1px solid @modal-content-fallback-border-color; //old browsers fallback (ie8 etc)\n  border: 1px solid @modal-content-border-color;\n  border-radius: @border-radius-large;\n  .box-shadow(0 3px 9px rgba(0,0,0,.5));\n  background-clip: padding-box;\n  // Remove focus outline from opened modal\n  outline: 0;\n}\n\n// Modal background\n.modal-backdrop {\n  position: fixed;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  z-index: @zindex-modal-background;\n  background-color: @modal-backdrop-bg;\n  // Fade for backdrop\n  &.fade { .opacity(0); }\n  &.in { .opacity(@modal-backdrop-opacity); }\n}\n\n// Modal header\n// Top section of the modal w/ title and dismiss\n.modal-header {\n  padding: @modal-title-padding;\n  border-bottom: 1px solid @modal-header-border-color;\n  &:extend(.clearfix all);\n}\n// Close icon\n.modal-header .close {\n  margin-top: -2px;\n}\n\n// Title text within header\n.modal-title {\n  margin: 0;\n  line-height: @modal-title-line-height;\n}\n\n// Modal body\n// Where all modal content resides (sibling of .modal-header and .modal-footer)\n.modal-body {\n  position: relative;\n  padding: @modal-inner-padding;\n}\n\n// Footer (for actions)\n.modal-footer {\n  padding: @modal-inner-padding;\n  text-align: right; // right align buttons\n  border-top: 1px solid @modal-footer-border-color;\n  &:extend(.clearfix all); // clear it in case folks use .pull-* classes on buttons\n\n  // Properly space out buttons\n  .btn + .btn {\n    margin-left: 5px;\n    margin-bottom: 0; // account for input[type=\"submit\"] which gets the bottom margin like all other inputs\n  }\n  // but override that for button groups\n  .btn-group .btn + .btn {\n    margin-left: -1px;\n  }\n  // and override it for block buttons as well\n  .btn-block + .btn-block {\n    margin-left: 0;\n  }\n}\n\n// Measure scrollbar width for padding body during modal show/hide\n.modal-scrollbar-measure {\n  position: absolute;\n  top: -9999px;\n  width: 50px;\n  height: 50px;\n  overflow: scroll;\n}\n\n// Scale up the modal\n@media (min-width: @screen-sm-min) {\n  // Automatically set modal's width for larger viewports\n  .modal-dialog {\n    width: @modal-md;\n    margin: 30px auto;\n  }\n  .modal-content {\n    .box-shadow(0 5px 15px rgba(0,0,0,.5));\n  }\n\n  // Modal sizes\n  .modal-sm { width: @modal-sm; }\n}\n\n@media (min-width: @screen-md-min) {\n  .modal-lg { width: @modal-lg; }\n}\n","//\n// Tooltips\n// --------------------------------------------------\n\n\n// Base class\n.tooltip {\n  position: absolute;\n  z-index: @zindex-tooltip;\n  display: block;\n  // Our parent element can be arbitrary since tooltips are by default inserted as a sibling of their target element.\n  // So reset our font and text properties to avoid inheriting weird values.\n  .reset-text();\n  font-size: @font-size-small;\n\n  .opacity(0);\n\n  &.in     { .opacity(@tooltip-opacity); }\n  &.top    { margin-top:  -3px; padding: @tooltip-arrow-width 0; }\n  &.right  { margin-left:  3px; padding: 0 @tooltip-arrow-width; }\n  &.bottom { margin-top:   3px; padding: @tooltip-arrow-width 0; }\n  &.left   { margin-left: -3px; padding: 0 @tooltip-arrow-width; }\n}\n\n// Wrapper for the tooltip content\n.tooltip-inner {\n  max-width: @tooltip-max-width;\n  padding: 3px 8px;\n  color: @tooltip-color;\n  text-align: center;\n  background-color: @tooltip-bg;\n  border-radius: @border-radius-base;\n}\n\n// Arrows\n.tooltip-arrow {\n  position: absolute;\n  width: 0;\n  height: 0;\n  border-color: transparent;\n  border-style: solid;\n}\n// Note: Deprecated .top-left, .top-right, .bottom-left, and .bottom-right as of v3.3.1\n.tooltip {\n  &.top .tooltip-arrow {\n    bottom: 0;\n    left: 50%;\n    margin-left: -@tooltip-arrow-width;\n    border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n    border-top-color: @tooltip-arrow-color;\n  }\n  &.top-left .tooltip-arrow {\n    bottom: 0;\n    right: @tooltip-arrow-width;\n    margin-bottom: -@tooltip-arrow-width;\n    border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n    border-top-color: @tooltip-arrow-color;\n  }\n  &.top-right .tooltip-arrow {\n    bottom: 0;\n    left: @tooltip-arrow-width;\n    margin-bottom: -@tooltip-arrow-width;\n    border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n    border-top-color: @tooltip-arrow-color;\n  }\n  &.right .tooltip-arrow {\n    top: 50%;\n    left: 0;\n    margin-top: -@tooltip-arrow-width;\n    border-width: @tooltip-arrow-width @tooltip-arrow-width @tooltip-arrow-width 0;\n    border-right-color: @tooltip-arrow-color;\n  }\n  &.left .tooltip-arrow {\n    top: 50%;\n    right: 0;\n    margin-top: -@tooltip-arrow-width;\n    border-width: @tooltip-arrow-width 0 @tooltip-arrow-width @tooltip-arrow-width;\n    border-left-color: @tooltip-arrow-color;\n  }\n  &.bottom .tooltip-arrow {\n    top: 0;\n    left: 50%;\n    margin-left: -@tooltip-arrow-width;\n    border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n    border-bottom-color: @tooltip-arrow-color;\n  }\n  &.bottom-left .tooltip-arrow {\n    top: 0;\n    right: @tooltip-arrow-width;\n    margin-top: -@tooltip-arrow-width;\n    border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n    border-bottom-color: @tooltip-arrow-color;\n  }\n  &.bottom-right .tooltip-arrow {\n    top: 0;\n    left: @tooltip-arrow-width;\n    margin-top: -@tooltip-arrow-width;\n    border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n    border-bottom-color: @tooltip-arrow-color;\n  }\n}\n",".reset-text() {\n  font-family: @font-family-base;\n  // We deliberately do NOT reset font-size.\n  font-style: normal;\n  font-weight: normal;\n  letter-spacing: normal;\n  line-break: auto;\n  line-height: @line-height-base;\n  text-align: left; // Fallback for where `start` is not supported\n  text-align: start;\n  text-decoration: none;\n  text-shadow: none;\n  text-transform: none;\n  white-space: normal;\n  word-break: normal;\n  word-spacing: normal;\n  word-wrap: normal;\n}\n","//\n// Popovers\n// --------------------------------------------------\n\n\n.popover {\n  position: absolute;\n  top: 0;\n  left: 0;\n  z-index: @zindex-popover;\n  display: none;\n  max-width: @popover-max-width;\n  padding: 1px;\n  // Our parent element can be arbitrary since popovers are by default inserted as a sibling of their target element.\n  // So reset our font and text properties to avoid inheriting weird values.\n  .reset-text();\n  font-size: @font-size-base;\n\n  background-color: @popover-bg;\n  background-clip: padding-box;\n  border: 1px solid @popover-fallback-border-color;\n  border: 1px solid @popover-border-color;\n  border-radius: @border-radius-large;\n  .box-shadow(0 5px 10px rgba(0,0,0,.2));\n\n  // Offset the popover to account for the popover arrow\n  &.top     { margin-top: -@popover-arrow-width; }\n  &.right   { margin-left: @popover-arrow-width; }\n  &.bottom  { margin-top: @popover-arrow-width; }\n  &.left    { margin-left: -@popover-arrow-width; }\n}\n\n.popover-title {\n  margin: 0; // reset heading margin\n  padding: 8px 14px;\n  font-size: @font-size-base;\n  background-color: @popover-title-bg;\n  border-bottom: 1px solid darken(@popover-title-bg, 5%);\n  border-radius: (@border-radius-large - 1) (@border-radius-large - 1) 0 0;\n}\n\n.popover-content {\n  padding: 9px 14px;\n}\n\n// Arrows\n//\n// .arrow is outer, .arrow:after is inner\n\n.popover > .arrow {\n  &,\n  &:after {\n    position: absolute;\n    display: block;\n    width: 0;\n    height: 0;\n    border-color: transparent;\n    border-style: solid;\n  }\n}\n.popover > .arrow {\n  border-width: @popover-arrow-outer-width;\n}\n.popover > .arrow:after {\n  border-width: @popover-arrow-width;\n  content: \"\";\n}\n\n.popover {\n  &.top > .arrow {\n    left: 50%;\n    margin-left: -@popover-arrow-outer-width;\n    border-bottom-width: 0;\n    border-top-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n    border-top-color: @popover-arrow-outer-color;\n    bottom: -@popover-arrow-outer-width;\n    &:after {\n      content: \" \";\n      bottom: 1px;\n      margin-left: -@popover-arrow-width;\n      border-bottom-width: 0;\n      border-top-color: @popover-arrow-color;\n    }\n  }\n  &.right > .arrow {\n    top: 50%;\n    left: -@popover-arrow-outer-width;\n    margin-top: -@popover-arrow-outer-width;\n    border-left-width: 0;\n    border-right-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n    border-right-color: @popover-arrow-outer-color;\n    &:after {\n      content: \" \";\n      left: 1px;\n      bottom: -@popover-arrow-width;\n      border-left-width: 0;\n      border-right-color: @popover-arrow-color;\n    }\n  }\n  &.bottom > .arrow {\n    left: 50%;\n    margin-left: -@popover-arrow-outer-width;\n    border-top-width: 0;\n    border-bottom-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n    border-bottom-color: @popover-arrow-outer-color;\n    top: -@popover-arrow-outer-width;\n    &:after {\n      content: \" \";\n      top: 1px;\n      margin-left: -@popover-arrow-width;\n      border-top-width: 0;\n      border-bottom-color: @popover-arrow-color;\n    }\n  }\n\n  &.left > .arrow {\n    top: 50%;\n    right: -@popover-arrow-outer-width;\n    margin-top: -@popover-arrow-outer-width;\n    border-right-width: 0;\n    border-left-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n    border-left-color: @popover-arrow-outer-color;\n    &:after {\n      content: \" \";\n      right: 1px;\n      border-right-width: 0;\n      border-left-color: @popover-arrow-color;\n      bottom: -@popover-arrow-width;\n    }\n  }\n}\n","//\n// Carousel\n// --------------------------------------------------\n\n\n// Wrapper for the slide container and indicators\n.carousel {\n  position: relative;\n}\n\n.carousel-inner {\n  position: relative;\n  overflow: hidden;\n  width: 100%;\n\n  > .item {\n    display: none;\n    position: relative;\n    .transition(.6s ease-in-out left);\n\n    // Account for jankitude on images\n    > img,\n    > a > img {\n      &:extend(.img-responsive);\n      line-height: 1;\n    }\n\n    // WebKit CSS3 transforms for supported devices\n    @media all and (transform-3d), (-webkit-transform-3d) {\n      .transition-transform(~'0.6s ease-in-out');\n      .backface-visibility(~'hidden');\n      .perspective(1000px);\n\n      &.next,\n      &.active.right {\n        .translate3d(100%, 0, 0);\n        left: 0;\n      }\n      &.prev,\n      &.active.left {\n        .translate3d(-100%, 0, 0);\n        left: 0;\n      }\n      &.next.left,\n      &.prev.right,\n      &.active {\n        .translate3d(0, 0, 0);\n        left: 0;\n      }\n    }\n  }\n\n  > .active,\n  > .next,\n  > .prev {\n    display: block;\n  }\n\n  > .active {\n    left: 0;\n  }\n\n  > .next,\n  > .prev {\n    position: absolute;\n    top: 0;\n    width: 100%;\n  }\n\n  > .next {\n    left: 100%;\n  }\n  > .prev {\n    left: -100%;\n  }\n  > .next.left,\n  > .prev.right {\n    left: 0;\n  }\n\n  > .active.left {\n    left: -100%;\n  }\n  > .active.right {\n    left: 100%;\n  }\n\n}\n\n// Left/right controls for nav\n// ---------------------------\n\n.carousel-control {\n  position: absolute;\n  top: 0;\n  left: 0;\n  bottom: 0;\n  width: @carousel-control-width;\n  .opacity(@carousel-control-opacity);\n  font-size: @carousel-control-font-size;\n  color: @carousel-control-color;\n  text-align: center;\n  text-shadow: @carousel-text-shadow;\n  background-color: rgba(0, 0, 0, 0); // Fix IE9 click-thru bug\n  // We can't have this transition here because WebKit cancels the carousel\n  // animation if you trip this while in the middle of another animation.\n\n  // Set gradients for backgrounds\n  &.left {\n    #gradient > .horizontal(@start-color: rgba(0,0,0,.5); @end-color: rgba(0,0,0,.0001));\n  }\n  &.right {\n    left: auto;\n    right: 0;\n    #gradient > .horizontal(@start-color: rgba(0,0,0,.0001); @end-color: rgba(0,0,0,.5));\n  }\n\n  // Hover/focus state\n  &:hover,\n  &:focus {\n    outline: 0;\n    color: @carousel-control-color;\n    text-decoration: none;\n    .opacity(.9);\n  }\n\n  // Toggles\n  .icon-prev,\n  .icon-next,\n  .glyphicon-chevron-left,\n  .glyphicon-chevron-right {\n    position: absolute;\n    top: 50%;\n    margin-top: -10px;\n    z-index: 5;\n    display: inline-block;\n  }\n  .icon-prev,\n  .glyphicon-chevron-left {\n    left: 50%;\n    margin-left: -10px;\n  }\n  .icon-next,\n  .glyphicon-chevron-right {\n    right: 50%;\n    margin-right: -10px;\n  }\n  .icon-prev,\n  .icon-next {\n    width:  20px;\n    height: 20px;\n    line-height: 1;\n    font-family: serif;\n  }\n\n\n  .icon-prev {\n    &:before {\n      content: '\\2039';// SINGLE LEFT-POINTING ANGLE QUOTATION MARK (U+2039)\n    }\n  }\n  .icon-next {\n    &:before {\n      content: '\\203a';// SINGLE RIGHT-POINTING ANGLE QUOTATION MARK (U+203A)\n    }\n  }\n}\n\n// Optional indicator pips\n//\n// Add an unordered list with the following class and add a list item for each\n// slide your carousel holds.\n\n.carousel-indicators {\n  position: absolute;\n  bottom: 10px;\n  left: 50%;\n  z-index: 15;\n  width: 60%;\n  margin-left: -30%;\n  padding-left: 0;\n  list-style: none;\n  text-align: center;\n\n  li {\n    display: inline-block;\n    width:  10px;\n    height: 10px;\n    margin: 1px;\n    text-indent: -999px;\n    border: 1px solid @carousel-indicator-border-color;\n    border-radius: 10px;\n    cursor: pointer;\n\n    // IE8-9 hack for event handling\n    //\n    // Internet Explorer 8-9 does not support clicks on elements without a set\n    // `background-color`. We cannot use `filter` since that's not viewed as a\n    // background color by the browser. Thus, a hack is needed.\n    // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Internet_Explorer\n    //\n    // For IE8, we set solid black as it doesn't support `rgba()`. For IE9, we\n    // set alpha transparency for the best results possible.\n    background-color: #000 \\9; // IE8\n    background-color: rgba(0,0,0,0); // IE9\n  }\n  .active {\n    margin: 0;\n    width:  12px;\n    height: 12px;\n    background-color: @carousel-indicator-active-bg;\n  }\n}\n\n// Optional captions\n// -----------------------------\n// Hidden by default for smaller viewports\n.carousel-caption {\n  position: absolute;\n  left: 15%;\n  right: 15%;\n  bottom: 20px;\n  z-index: 10;\n  padding-top: 20px;\n  padding-bottom: 20px;\n  color: @carousel-caption-color;\n  text-align: center;\n  text-shadow: @carousel-text-shadow;\n  & .btn {\n    text-shadow: none; // No shadow for button elements in carousel-caption\n  }\n}\n\n\n// Scale up controls for tablets and up\n@media screen and (min-width: @screen-sm-min) {\n\n  // Scale up the controls a smidge\n  .carousel-control {\n    .glyphicon-chevron-left,\n    .glyphicon-chevron-right,\n    .icon-prev,\n    .icon-next {\n      width: (@carousel-control-font-size * 1.5);\n      height: (@carousel-control-font-size * 1.5);\n      margin-top: (@carousel-control-font-size / -2);\n      font-size: (@carousel-control-font-size * 1.5);\n    }\n    .glyphicon-chevron-left,\n    .icon-prev {\n      margin-left: (@carousel-control-font-size / -2);\n    }\n    .glyphicon-chevron-right,\n    .icon-next {\n      margin-right: (@carousel-control-font-size / -2);\n    }\n  }\n\n  // Show and left align the captions\n  .carousel-caption {\n    left: 20%;\n    right: 20%;\n    padding-bottom: 30px;\n  }\n\n  // Move up the indicators\n  .carousel-indicators {\n    bottom: 20px;\n  }\n}\n","// Clearfix\n//\n// For modern browsers\n// 1. The space content is one way to avoid an Opera bug when the\n//    contenteditable attribute is included anywhere else in the document.\n//    Otherwise it causes space to appear at the top and bottom of elements\n//    that are clearfixed.\n// 2. The use of `table` rather than `block` is only necessary if using\n//    `:before` to contain the top-margins of child elements.\n//\n// Source: http://nicolasgallagher.com/micro-clearfix-hack/\n\n.clearfix() {\n  &:before,\n  &:after {\n    content: \" \"; // 1\n    display: table; // 2\n  }\n  &:after {\n    clear: both;\n  }\n}\n","// Center-align a block level element\n\n.center-block() {\n  display: block;\n  margin-left: auto;\n  margin-right: auto;\n}\n","// CSS image replacement\n//\n// Heads up! v3 launched with only `.hide-text()`, but per our pattern for\n// mixins being reused as classes with the same name, this doesn't hold up. As\n// of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`.\n//\n// Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757\n\n// Deprecated as of v3.0.1 (has been removed in v4)\n.hide-text() {\n  font: ~\"0/0\" a;\n  color: transparent;\n  text-shadow: none;\n  background-color: transparent;\n  border: 0;\n}\n\n// New mixin to use as of v3.0.1\n.text-hide() {\n  .hide-text();\n}\n","//\n// Responsive: Utility classes\n// --------------------------------------------------\n\n\n// IE10 in Windows (Phone) 8\n//\n// Support for responsive views via media queries is kind of borked in IE10, for\n// Surface/desktop in split view and for Windows Phone 8. This particular fix\n// must be accompanied by a snippet of JavaScript to sniff the user agent and\n// apply some conditional CSS to *only* the Surface/desktop Windows 8. Look at\n// our Getting Started page for more information on this bug.\n//\n// For more information, see the following:\n//\n// Issue: https://github.com/twbs/bootstrap/issues/10497\n// Docs: http://getbootstrap.com/getting-started/#support-ie10-width\n// Source: http://timkadlec.com/2013/01/windows-phone-8-and-device-width/\n// Source: http://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/\n\n@-ms-viewport {\n  width: device-width;\n}\n\n\n// Visibility utilities\n// Note: Deprecated .visible-xs, .visible-sm, .visible-md, and .visible-lg as of v3.2.0\n.visible-xs,\n.visible-sm,\n.visible-md,\n.visible-lg {\n  .responsive-invisibility();\n}\n\n.visible-xs-block,\n.visible-xs-inline,\n.visible-xs-inline-block,\n.visible-sm-block,\n.visible-sm-inline,\n.visible-sm-inline-block,\n.visible-md-block,\n.visible-md-inline,\n.visible-md-inline-block,\n.visible-lg-block,\n.visible-lg-inline,\n.visible-lg-inline-block {\n  display: none !important;\n}\n\n.visible-xs {\n  @media (max-width: @screen-xs-max) {\n    .responsive-visibility();\n  }\n}\n.visible-xs-block {\n  @media (max-width: @screen-xs-max) {\n    display: block !important;\n  }\n}\n.visible-xs-inline {\n  @media (max-width: @screen-xs-max) {\n    display: inline !important;\n  }\n}\n.visible-xs-inline-block {\n  @media (max-width: @screen-xs-max) {\n    display: inline-block !important;\n  }\n}\n\n.visible-sm {\n  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n    .responsive-visibility();\n  }\n}\n.visible-sm-block {\n  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n    display: block !important;\n  }\n}\n.visible-sm-inline {\n  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n    display: inline !important;\n  }\n}\n.visible-sm-inline-block {\n  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n    display: inline-block !important;\n  }\n}\n\n.visible-md {\n  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n    .responsive-visibility();\n  }\n}\n.visible-md-block {\n  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n    display: block !important;\n  }\n}\n.visible-md-inline {\n  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n    display: inline !important;\n  }\n}\n.visible-md-inline-block {\n  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n    display: inline-block !important;\n  }\n}\n\n.visible-lg {\n  @media (min-width: @screen-lg-min) {\n    .responsive-visibility();\n  }\n}\n.visible-lg-block {\n  @media (min-width: @screen-lg-min) {\n    display: block !important;\n  }\n}\n.visible-lg-inline {\n  @media (min-width: @screen-lg-min) {\n    display: inline !important;\n  }\n}\n.visible-lg-inline-block {\n  @media (min-width: @screen-lg-min) {\n    display: inline-block !important;\n  }\n}\n\n.hidden-xs {\n  @media (max-width: @screen-xs-max) {\n    .responsive-invisibility();\n  }\n}\n.hidden-sm {\n  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n    .responsive-invisibility();\n  }\n}\n.hidden-md {\n  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n    .responsive-invisibility();\n  }\n}\n.hidden-lg {\n  @media (min-width: @screen-lg-min) {\n    .responsive-invisibility();\n  }\n}\n\n\n// Print utilities\n//\n// Media queries are placed on the inside to be mixin-friendly.\n\n// Note: Deprecated .visible-print as of v3.2.0\n.visible-print {\n  .responsive-invisibility();\n\n  @media print {\n    .responsive-visibility();\n  }\n}\n.visible-print-block {\n  display: none !important;\n\n  @media print {\n    display: block !important;\n  }\n}\n.visible-print-inline {\n  display: none !important;\n\n  @media print {\n    display: inline !important;\n  }\n}\n.visible-print-inline-block {\n  display: none !important;\n\n  @media print {\n    display: inline-block !important;\n  }\n}\n\n.hidden-print {\n  @media print {\n    .responsive-invisibility();\n  }\n}\n","// Responsive utilities\n\n//\n// More easily include all the states for responsive-utilities.less.\n.responsive-visibility() {\n  display: block !important;\n  table&  { display: table !important; }\n  tr&     { display: table-row !important; }\n  th&,\n  td&     { display: table-cell !important; }\n}\n\n.responsive-invisibility() {\n  display: none !important;\n}\n"]}
\ No newline at end of file
diff --git a/src/main/webapp/vendors/bootstrap/dist/css/bootstrap.min.css b/src/main/webapp/vendors/bootstrap/dist/css/bootstrap.min.css
deleted file mode 100644
index 4cf729e4342a51d8b300e8d43f2f78b0a6faf403..0000000000000000000000000000000000000000
--- a/src/main/webapp/vendors/bootstrap/dist/css/bootstrap.min.css
+++ /dev/null
@@ -1,6 +0,0 @@
-/*!
- * Bootstrap v3.3.6 (http://getbootstrap.com)
- * Copyright 2011-2015 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:focus,a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:focus,a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;margin-left:-5px;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=checkbox]:focus,input[type=radio]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{background-color:transparent;border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:4px\9;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#337ab7;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#080808}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{padding-right:15px;padding-left:15px;border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{margin-right:auto;margin-left:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-right:15px;padding-left:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;filter:alpha(opacity=0);opacity:0;line-break:auto}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);line-break:auto}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:rgba(0,0,0,0);filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;font-family:serif;line-height:1}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000\9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:" "}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}}
-/*# sourceMappingURL=bootstrap.min.css.map */
\ No newline at end of file
diff --git a/src/main/webapp/vendors/bootstrap/dist/css/bootstrap.min.css.map b/src/main/webapp/vendors/bootstrap/dist/css/bootstrap.min.css.map
deleted file mode 100644
index 5f49bb37443c13fec81f2089d0d5559bc5a407e4..0000000000000000000000000000000000000000
--- a/src/main/webapp/vendors/bootstrap/dist/css/bootstrap.min.css.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"sources":["less/normalize.less","less/print.less","bootstrap.css","dist/css/bootstrap.css","less/glyphicons.less","less/scaffolding.less","less/mixins/vendor-prefixes.less","less/mixins/tab-focus.less","less/mixins/image.less","less/type.less","less/mixins/text-emphasis.less","less/mixins/background-variant.less","less/mixins/text-overflow.less","less/code.less","less/grid.less","less/mixins/grid.less","less/mixins/grid-framework.less","less/tables.less","less/mixins/table-row.less","less/forms.less","less/mixins/forms.less","less/buttons.less","less/mixins/buttons.less","less/mixins/opacity.less","less/component-animations.less","less/dropdowns.less","less/mixins/nav-divider.less","less/mixins/reset-filter.less","less/button-groups.less","less/mixins/border-radius.less","less/input-groups.less","less/navs.less","less/navbar.less","less/mixins/nav-vertical-align.less","less/utilities.less","less/breadcrumbs.less","less/pagination.less","less/mixins/pagination.less","less/pager.less","less/labels.less","less/mixins/labels.less","less/badges.less","less/jumbotron.less","less/thumbnails.less","less/alerts.less","less/mixins/alerts.less","less/progress-bars.less","less/mixins/gradients.less","less/mixins/progress-bar.less","less/media.less","less/list-group.less","less/mixins/list-group.less","less/panels.less","less/mixins/panels.less","less/responsive-embed.less","less/wells.less","less/close.less","less/modals.less","less/tooltip.less","less/mixins/reset-text.less","less/popovers.less","less/carousel.less","less/mixins/clearfix.less","less/mixins/center-block.less","less/mixins/hide-text.less","less/responsive-utilities.less","less/mixins/responsive-visibility.less"],"names":[],"mappings":"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DG,edkkDH,MAAA,aclkDG,edqkDH,MAAA,acrkDG,edwkDH,MAAA,IcxkDG,ed2kDH,MAAA,ac3kDG,ed8kDH,MAAA,ac9kDG,edilDH,MAAA,IcjlDG,edolDH,MAAA,ac/kDG,edklDH,MAAA,YcjmDG,edomDH,MAAA,KcpmDG,gBdumDH,KAAA,KcvmDG,gBd0mDH,KAAA,ac1mDG,gBd6mDH,KAAA,ac7mDG,edgnDH,KAAA,IchnDG,edmnDH,KAAA,acnnDG,edsnDH,KAAA,actnDG,edynDH,KAAA,IcznDG,ed4nDH,KAAA,ac5nDG,ed+nDH,KAAA,ac/nDG,edkoDH,KAAA,IcloDG,edqoDH,KAAA,achoDG,edmoDH,KAAA,YcpnDG,edunDH,KAAA,KcvnDG,kBd0nDH,YAAA,Kc1nDG,kBd6nDH,YAAA,ac7nDG,kBdgoDH,YAAA,achoDG,iBdmoDH,YAAA,IcnoDG,iBdsoDH,YAAA,actoDG,iBdyoDH,YAAA,aczoDG,iBd4oDH,YAAA,Ic5oDG,iBd+oDH,YAAA,ac/oDG,iBdkpDH,YAAA,aclpDG,iBdqpDH,YAAA,IcrpDG,iBdwpDH,YAAA,acxpDG,iBd2pDH,YAAA,Yc7rDG,iBACE,YAAA,EAOJ,yBACE,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,Ud2rDD,MAAA,Kc3rDC,Wd8rDD,MAAA,Kc9rDC,WdisDD,MAAA,acjsDC,WdosDD,MAAA,acpsDC,UdusDD,MAAA,IcvsDC,Ud0sDD,MAAA,ac1sDC,Ud6sDD,MAAA,ac7sDC,UdgtDD,MAAA,IchtDC,UdmtDD,MAAA,acntDC,UdstDD,MAAA,acttDC,UdytDD,MAAA,IcztDC,Ud4tDD,MAAA,ac7sDC,UdgtDD,MAAA,YchtDC,gBdmtDD,MAAA,KcntDC,gBdstDD,MAAA,acttDC,gBdytDD,MAAA,acztDC,ed4tDD,MAAA,Ic5tDC,ed+tDD,MAAA,ac/tDC,edkuDD,MAAA,acluDC,edquDD,MAAA,IcruDC,edwuDD,MAAA,acxuDC,ed2uDD,MAAA,ac3uDC,ed8uDD,MAAA,Ic9uDC,edivDD,MAAA,ac5uDC,ed+uDD,MAAA,Yc9vDC,ediwDD,MAAA,KcjwDC,gBdowDD,KAAA,KcpwDC,gBduwDD,KAAA,acvwDC,gBd0wDD,KAAA,ac1wDC,ed6wDD,KAAA,Ic7wDC,edgxDD,KAAA,achxDC,edmxDD,KAAA,acnxDC,edsxDD,KAAA,IctxDC,edyxDD,KAAA,aczxDC,ed4xDD,KAAA,ac5xDC,ed+xDD,KAAA,Ic/xDC,edkyDD,KAAA,ac7xDC,edgyDD,KAAA,YcjxDC,edoxDD,KAAA,KcpxDC,kBduxDD,YAAA,KcvxDC,kBd0xDD,YAAA,ac1xDC,kBd6xDD,YAAA,ac7xDC,iBdgyDD,YAAA,IchyDC,iBdmyDD,YAAA,acnyDC,iBdsyDD,YAAA,actyDC,iBdyyDD,YAAA,IczyDC,iBd4yDD,YAAA,ac5yDC,iBd+yDD,YAAA,ac/yDC,iBdkzDD,YAAA,IclzDC,iBdqzDD,YAAA,acrzDC,iBdwzDD,YAAA,YY/yDD,iBE3CE,YAAA,GAQF,yBACE,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,Udy1DD,MAAA,Kcz1DC,Wd41DD,MAAA,Kc51DC,Wd+1DD,MAAA,ac/1DC,Wdk2DD,MAAA,acl2DC,Udq2DD,MAAA,Icr2DC,Udw2DD,MAAA,acx2DC,Ud22DD,MAAA,ac32DC,Ud82DD,MAAA,Ic92DC,Udi3DD,MAAA,acj3DC,Udo3DD,MAAA,acp3DC,Udu3DD,MAAA,Icv3DC,Ud03DD,MAAA,ac32DC,Ud82DD,MAAA,Yc92DC,gBdi3DD,MAAA,Kcj3DC,gBdo3DD,MAAA,acp3DC,gBdu3DD,MAAA,acv3DC,ed03DD,MAAA,Ic13DC,ed63DD,MAAA,ac73DC,edg4DD,MAAA,ach4DC,edm4DD,MAAA,Icn4DC,eds4DD,MAAA,act4DC,edy4DD,MAAA,acz4DC,ed44DD,MAAA,Ic54DC,ed+4DD,MAAA,ac14DC,ed64DD,MAAA,Yc55DC,ed+5DD,MAAA,Kc/5DC,gBdk6DD,KAAA,Kcl6DC,gBdq6DD,KAAA,acr6DC,gBdw6DD,KAAA,acx6DC,ed26DD,KAAA,Ic36DC,ed86DD,KAAA,ac96DC,edi7DD,KAAA,acj7DC,edo7DD,KAAA,Icp7DC,edu7DD,KAAA,acv7DC,ed07DD,KAAA,ac17DC,ed67DD,KAAA,Ic77DC,edg8DD,KAAA,ac37DC,ed87DD,KAAA,Yc/6DC,edk7DD,KAAA,Kcl7DC,kBdq7DD,YAAA,Kcr7DC,kBdw7DD,YAAA,acx7DC,kBd27DD,YAAA,ac37DC,iBd87DD,YAAA,Ic97DC,iBdi8DD,YAAA,acj8DC,iBdo8DD,YAAA,acp8DC,iBdu8DD,YAAA,Icv8DC,iBd08DD,YAAA,ac18DC,iBd68DD,YAAA,ac78DC,iBdg9DD,YAAA,Ich9DC,iBdm9DD,YAAA,acn9DC,iBds9DD,YAAA,YY18DD,iBE9CE,YAAA,GAQF,0BACE,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,Udu/DD,MAAA,Kcv/DC,Wd0/DD,MAAA,Kc1/DC,Wd6/DD,MAAA,ac7/DC,WdggED,MAAA,achgEC,UdmgED,MAAA,IcngEC,UdsgED,MAAA,actgEC,UdygED,MAAA,aczgEC,Ud4gED,MAAA,Ic5gEC,Ud+gED,MAAA,ac/gEC,UdkhED,MAAA,aclhEC,UdqhED,MAAA,IcrhEC,UdwhED,MAAA,aczgEC,Ud4gED,MAAA,Yc5gEC,gBd+gED,MAAA,Kc/gEC,gBdkhED,MAAA,aclhEC,gBdqhED,MAAA,acrhEC,edwhED,MAAA,IcxhEC,ed2hED,MAAA,ac3hEC,ed8hED,MAAA,ac9hEC,ediiED,MAAA,IcjiEC,edoiED,MAAA,acpiEC,eduiED,MAAA,acviEC,ed0iED,MAAA,Ic1iEC,ed6iED,MAAA,acxiEC,ed2iED,MAAA,Yc1jEC,ed6jED,MAAA,Kc7jEC,gBdgkED,KAAA,KchkEC,gBdmkED,KAAA,acnkEC,gBdskED,KAAA,actkEC,edykED,KAAA,IczkEC,ed4kED,KAAA,ac5kEC,ed+kED,KAAA,ac/kEC,edklED,KAAA,IcllEC,edqlED,KAAA,acrlEC,edwlED,KAAA,acxlEC,ed2lED,KAAA,Ic3lEC,ed8lED,KAAA,aczlEC,ed4lED,KAAA,Yc7kEC,e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pC,cAGA,ejB8DA,wBACQ,OAAA,YJ65FT,OAAA,kBmB56FG,mBAAA,KlBw7FM,WAAY,KkBt7FhB,QAAA,IASN,eC3DE,yBACA,eAAA,KpBo+FD,aoBj+FC,MAAA,KnB6+FA,iBAAkB,KmB3+FhB,aAAA,KpBq+FH,mBoBn+FO,mBAEN,MAAA,KACE,iBAAA,QACA,aAAA,QpBo+FH,mBoBj+FC,MAAA,KnB6+FA,iBAAkB,QAClB,aAAc,QmBz+FR,oBADJ,oBpBo+FH,mCoBj+FG,MAAA,KnB6+FF,iBAAkB,QAClB,aAAc,QmBz+FN,0BnB++FV,0BAHA,0BmB7+FM,0BnB++FN,0BAHA,0BDFC,yCoB3+FK,yCnB++FN,yCmB1+FE,MAAA,KnBk/FA,iBAAkB,QAClB,aAAc,QmB3+FZ,oBpBm+FH,oBoBn+FG,mCnBg/FF,iBAAkB,KmB5+FV,4BnBi/FV,4BAHA,4BDHC,6BCOD,6BAHA,6BkB99FA,sCClBM,sCnBi/FN,sCmB3+FI,iBAAA,KACA,aAAA,KDcJ,oBC9DE,MAAA,KACA,iBAAA,KpB6hGD,aoB1hGC,MAAA,KnBsiGA,iBAAkB,QmBpiGhB,aAAA,QpB8hGH,mBoB5hGO,mBAEN,MAAA,KACE,iBAAA,QACA,aAAA,QpB6hGH,mBoB1hGC,MAAA,KnBsiGA,iBAAkB,QAClB,aAAc,QmBliGR,oBADJ,oBpB6hGH,mCoB1hGG,MAAA,KnBsiGF,iBAAkB,QAClB,aAAc,QmBliGN,0BnBwiGV,0BAHA,0BmBtiGM,0BnBwiGN,0BAHA,0BDFC,yCoBpiGK,yCnBwiGN,yCmBniGE,MAAA,KnB2iGA,iBAAkB,QAClB,aAAc,QmBpiGZ,oBpB4hGH,oBoB5hGG,mCnByiGF,iBAAkB,KmBriGV,4BnB0iGV,4BAHA,4BDHC,6BCOD,6BAHA,6BkBphGA,sCCrBM,sCnB0iGN,sCmBpiGI,iBAAA,QACA,aAAA,QDkBJ,oBClEE,MAAA,QACA,iBAAA,KpBslGD,aoBnlGC,MAAA,KnB+lGA,iBAAkB,QmB7lGhB,aAAA,QpBulGH,mBoBrlGO,mBAEN,MAAA,KACE,iBAAA,QACA,aAAA,QpBslGH,mBoBnlGC,MAAA,KnB+lGA,iBAAkB,QAClB,aAAc,QmB3lGR,oBADJ,oBpBslGH,mCoBnlGG,MAAA,KnB+lGF,iBAAkB,QAClB,aAAc,QmB3lGN,0BnBimGV,0BAHA,0BmB/lGM,0BnBimGN,0BAHA,0BDFC,yCoB7lGK,yCnBimGN,yCmB5lGE,MAAA,KnBomGA,iBAAkB,QAClB,aAAc,QmB7lGZ,oBpBqlGH,oBoBrlGG,mCnBkmGF,iBAAkB,KmB9lGV,4BnBmmGV,4BAHA,4BDHC,6BCOD,6BAHA,6BkBzkGA,sCCzBM,sCnBmmGN,sCmB7lGI,iBAAA,QACA,aAAA,QDsBJ,oBCtEE,MAAA,QACA,iBAAA,KpB+oGD,UoB5oGC,MAAA,KnBwpGA,iBAAkB,QmBtpGhB,aAAA,QpBgpGH,gBoB9oGO,gBAEN,MAAA,KACE,iBAAA,QACA,aAAA,QpB+oGH,gBoB5oGC,MAAA,KnBwpGA,iBAAkB,QAClB,aAAc,QmBppGR,iBADJ,iBpB+oGH,gCoB5oGG,MAAA,KnBwpGF,iBAAkB,QAClB,aAAc,QmBppGN,uBnB0pGV,uBAHA,uBmBxpGM,uBnB0pGN,uBAHA,uBDFC,sCoBtpGK,sCnB0pGN,sCmBrpGE,MAAA,KnB6pGA,iBAAkB,QAClB,aAAc,QmBtpGZ,iBpB8oGH,iBoB9oGG,gCnB2pGF,iBAAkB,KmBvpGV,yBnB4pGV,yBAHA,yBDHC,0BCOD,0BAHA,0BkB9nGA,mCC7BM,mCnB4pGN,mCmBtpGI,iBAAA,QACA,aAAA,QD0BJ,iBC1EE,MAAA,QACA,iBAAA,KpBwsGD,aoBrsGC,MAAA,KnBitGA,iBAAkB,QmB/sGhB,aAAA,QpBysGH,mBoBvsGO,mBAEN,MAAA,KACE,iBAAA,QACA,aAAA,QpBwsGH,mBoBrsGC,MAAA,KnBitGA,iBAAkB,QAClB,aAAc,QmB7sGR,oBADJ,oBpBwsGH,mCoBrsGG,MAAA,KnBitGF,iBAAkB,QAClB,aAAc,QmB7sGN,0BnBmtGV,0BAHA,0BmBjtGM,0BnBmtGN,0BAHA,0BDFC,yCoB/sGK,yCnBmtGN,yCmB9sGE,MAAA,KnBstGA,iBAAkB,QAClB,aAAc,QmB/sGZ,oBpBusGH,oBoBvsGG,mCnBotGF,iBAAkB,KmBhtGV,4BnBqtGV,4BAHA,4BDHC,6BCOD,6BAHA,6BkBnrGA,sCCjCM,sCnBqtGN,sCmB/sGI,iBAAA,QACA,aAAA,QD8BJ,oBC9EE,MAAA,QACA,iBAAA,KpBiwGD,YoB9vGC,MAAA,KnB0wGA,iBAAkB,QmBxwGhB,aAAA,QpBkwGH,kBoBhwGO,kBAEN,MAAA,KACE,iBAAA,QACA,aAAA,QpBiwGH,kBoB9vGC,MAAA,KnB0wGA,iBAAkB,QAClB,aAAc,QmBtwGR,mBADJ,mBpBiwGH,kCoB9vGG,MAAA,KnB0wGF,iBAAkB,QAClB,aAAc,QmBtwGN,yBnB4wGV,yBAHA,yBmB1wGM,yBnB4wGN,yBAHA,yBDFC,wCoBxwGK,wCnB4wGN,wCmBvwGE,MAAA,KnB+wGA,iBAAkB,QAClB,aAAc,QmBxwGZ,mBpBgwGH,mBoBhwGG,kCnB6wGF,iBAAkB,KmBzwGV,2BnB8wGV,2BAHA,2BDHC,4BCOD,4BAHA,4BkBxuGA,qCCrCM,qCnB8wGN,qCmBxwGI,iBAAA,QACA,aAAA,QDuCJ,mBACE,MAAA,QACA,iBAAA,KnBkuGD,UmB/tGC,YAAA,IlB2uGA,MAAO,QACP,cAAe,EAEjB,UG5wGE,iBemCE,iBflCM,oBJqwGT,6BmBhuGC,iBAAA,YlB4uGA,mBAAoB,KACZ,WAAY,KkBzuGlB,UAEF,iBAAA,gBnBguGD,gBmB9tGG,aAAA,YnBouGH,gBmBluGG,gBAIA,MAAA,QlB0uGF,gBAAiB,UACjB,iBAAkB,YDNnB,0BmBnuGK,0BAUN,mCATM,mClB8uGJ,MAAO,KmB7yGP,gBAAA,KAGA,mBADA,QpBsyGD,QAAA,KAAA,KmB5tGC,UAAW,KlBwuGX,YAAa,UmBpzGb,cAAA,IAGA,mBADA,QpB6yGD,QAAA,IAAA,KmB/tGC,UAAW,KlB2uGX,YAAa,ImB3zGb,cAAA,IAGA,mBADA,QpBozGD,QAAA,IAAA,ImB9tGC,UAAW,KACX,YAAA,IACA,cAAA,IAIF,WACE,QAAA,MnB8tGD,MAAA,KCYD,sBACE,WAAY,IqB53GZ,6BADF,4BtBq3GC,6BIhsGC,MAAA,KAEQ,MJosGT,QAAA,EsBx3GC,mBAAA,QAAA,KAAA,OACE,cAAA,QAAA,KAAA,OtB03GH,WAAA,QAAA,KAAA,OsBr3GC,StBw3GD,QAAA,EsBt3Ga,UtBy3Gb,QAAA,KsBx3Ga,atB23Gb,QAAA,MsB13Ga,etB63Gb,QAAA,UsBz3GC,kBACA,QAAA,gBlBwKA,YACQ,SAAA,SAAA,OAAA,EAOR,SAAA,OACQ,mCAAA,KAAA,8BAAA,KAGR,2BAAA,KACQ,4BAAA,KAAA,uBAAA,KJ8sGT,oBAAA,KuBx5GC,4BAA6B,OAAQ,WACrC,uBAAA,OAAA,WACA,oBAAA,OAAA,WAEA,OACA,QAAA,aACA,MAAA,EACA,OAAA,EACA,YAAA,IACA,eAAA,OvB05GD,WAAA,IAAA,OuBt5GC,WAAY,IAAI,QtBq6GhB,aAAc,IAAI,MAAM,YsBn6GxB,YAAA,IAAA,MAAA,YAKA,UADF,QvBu5GC,SAAA,SuBj5GC,uBACA,QAAA,EAEA,eACA,SAAA,SACA,IAAA,KACA,KAAA,EACA,QAAA,KACA,QAAA,KACA,MAAA,KACA,UAAA,MACA,QAAA,IAAA,EACA,OAAA,IAAA,EAAA,EACA,UAAA,KACA,WAAA,KACA,WAAA,KnBsBA,iBAAA,KACQ,wBAAA,YmBrBR,gBAAA,YtBk6GA,OsBl6GA,IAAA,MAAA,KvBq5GD,OAAA,IAAA,MAAA,gBuBh5GC,cAAA,IACE,mBAAA,EAAA,IAAA,KAAA,iBACA,WAAA,EAAA,IAAA,KAAA,iBAzBJ,0BCzBE,MAAA,EACA,KAAA,KAEA,wBxBu8GD,OAAA,IuBj7GC,OAAQ,IAAI,EAmCV,SAAA,OACA,iBAAA,QAEA,oBACA,QAAA,MACA,QAAA,IAAA,KACA,MAAA,KvBi5GH,YAAA,IuB34GC,YAAA,WtB25GA,MAAO,KsBz5GL,YAAA,OvB+4GH,0BuB74GG,0BAMF,MAAA,QtBu5GA,gBAAiB,KACjB,iBAAkB,QsBp5GhB,yBAEA,+BADA,+BvB04GH,MAAA,KuBh4GC,gBAAA,KtBg5GA,iBAAkB,QAClB,QAAS,EDZV,2BuB93GC,iCAAA,iCAEE,MAAA,KEzGF,iCF2GE,iCAEA,gBAAA,KvBg4GH,OAAA,YuB33GC,iBAAkB,YAGhB,iBAAA,KvB23GH,OAAA,0DuBt3GG,qBvBy3GH,QAAA,MuBh3GC,QACA,QAAA,EAQF,qBACE,MAAA,EACA,KAAA,KAIF,oBACE,MAAA,KACA,KAAA,EAEA,iBACA,QAAA,MACA,QAAA,IAAA,KvB22GD,UAAA,KuBv2GC,YAAa,WACb,MAAA,KACA,YAAA,OAEA,mBACA,SAAA,MACA,IAAA,EvBy2GD,MAAA,EuBr2GC,OAAQ,EACR,KAAA,EACA,QAAA,IAQF,2BtB+2GE,MAAO,EsB32GL,KAAA,KAEA,eACA,sCvB+1GH,QAAA,GuBt2GC,WAAY,EtBs3GZ,cAAe,IAAI,OsB32GjB,cAAA,IAAA,QAEA,uBvB+1GH,8CuB10GC,IAAK,KAXL,OAAA,KApEA,cAAA,IvB85GC,yBuB11GD,6BA1DA,MAAA,EACA,KAAA,KvBw5GD,kC0BviHG,MAAO,KzBujHP,KAAM,GyBnjHR,W1ByiHD,oB0B7iHC,SAAU,SzB6jHV,QAAS,ayBvjHP,eAAA,OAGA,yB1ByiHH,gBCgBC,SAAU,SACV,MAAO,KyBhjHT,gC1ByiHC,gCCYD,+BAFA,+ByBnjHA,uBANM,uBzB0jHN,sBAFA,sBAQE,QAAS,EyBrjHP,qB1B0iHH,2B0BriHD,2BACE,iC1BuiHD,YAAA,KCgBD,aACE,YAAa,KDZd,kB0B7iHD,wBAAA,0BzB8jHE,MAAO,KDZR,kB0BliHD,wBACE,0B1BoiHD,YAAA,I0B/hHC,yE1BkiHD,cAAA,E2BnlHC,4BACG,YAAA,EDsDL,mEzBgjHE,wBAAyB,E0B/lHzB,2BAAA,E3BolHD,6C0B/hHD,8CACE,uBAAA,E1BiiHD,0BAAA,E0B9hHC,sB1BiiHD,MAAA,KCgBD,8D0BlnHE,cAAA,E3BumHD,mE0B9hHD,oECjEE,wBAAA,EACG,2BAAA,EDqEL,oEzB6iHE,uBAAwB,EyB3iHxB,0BAAA,EAiBF,mCACE,iCACA,QAAA,EAEF,iCACE,cAAA,IACA,aAAA,IAKF,oCtB/CE,cAAA,KACQ,aAAA,KsBkDR,iCtBnDA,mBAAA,MAAA,EAAA,IAAA,IAAA,iBACQ,WAAA,MAAA,EAAA,IAAA,IAAA,iBsByDV,0CACE,mBAAA,K1B0gHD,WAAA,K0BtgHC,YACA,YAAA,EAGF,eACE,aAAA,IAAA,IAAA,E1BwgHD,oBAAA,ECgBD,uBACE,aAAc,EAAE,IAAI,IyB7gHlB,yBACA,+BACA,oC1BkgHH,QAAA,M0BzgHC,MAAO,KAcH,MAAA,K1B8/GL,UAAA,KCgBD,oCACE,MAAO,KyBvgHL,8BACA,oC1B4/GH,oC0Bv/GC,0CACE,WAAA,K1By/GH,YAAA,E2BlqHC,4DACC,cAAA,EAQA,sD3B+pHF,uBAAA,I0Bz/GC,wBAAA,IC/KA,2BAAA,EACC,0BAAA,EAQA,sD3BqqHF,uBAAA,E0B1/GC,wBAAyB,EACzB,2BAAA,I1B4/GD,0BAAA,ICgBD,uE0BzrHE,cAAA,E3B8qHD,4E0Bz/GD,6EC7LE,2BAAA,EACC,0BAAA,EDoMH,6EACE,uBAAA,EACA,wBAAA,EAEA,qB1Bu/GD,QAAA,M0B3/GC,MAAO,KzB2gHP,aAAc,MyBpgHZ,gBAAA,SAEA,0B1Bw/GH,gC0BjgHC,QAAS,WAYP,MAAA,K1Bw/GH,MAAA,G0Bp/GG,qC1Bu/GH,MAAA,KCgBD,+CACE,KAAM,KyBh/GF,gDAFA,6C1By+GL,2D0Bx+GK,wDEzOJ,SAAU,SACV,KAAA,cACA,eAAA,K5BotHD,a4BhtHC,SAAA,SACE,QAAA,MACA,gBAAA,S5BmtHH,0B4B3tHC,MAAO,KAeL,cAAA,EACA,aAAA,EAOA,2BACA,SAAA,S5B0sHH,QAAA,E4BxsHG,MAAA,KACE,MAAA,K5B0sHL,cAAA,ECgBD,iCACE,QAAS,EiBtrHT,8BACA,mCACA,sCACA,OAAA,KlB2qHD,QAAA,KAAA,KkBzqHC,UAAA,KjByrHA,YAAa,UACb,cAAe,IiBxrHb,oClB6qHH,yCkB1qHC,4CjB0rHA,OAAQ,KACR,YAAa,KDTd,8C4BltHD,mDAAA,sD3B6tHA,sCACA,2CiB5rHI,8CjBisHF,OAAQ,KiB7sHR,8BACA,mCACA,sCACA,OAAA,KlBksHD,QAAA,IAAA,KkBhsHC,UAAA,KjBgtHA,YAAa,IACb,cAAe,IiB/sHb,oClBosHH,yCkBjsHC,4CjBitHA,OAAQ,KACR,YAAa,KDTd,8C4BhuHD,mDAAA,sD3B2uHA,sCACA,2CiBntHI,8CjBwtHF,OAAQ,K2B5uHR,2B5BguHD,mB4BhuHC,iB3BivHA,QAAS,W2B5uHX,8D5BguHC,sD4BhuHD,oDAEE,cAAA,EAEA,mB5BkuHD,iB4B7tHC,MAAO,GACP,YAAA,OACA,eAAA,OAEA,mBACA,QAAA,IAAA,KACA,UAAA,KACA,YAAA,IACA,YAAA,EACA,MAAA,K5B+tHD,WAAA,O4B5tHC,iBAAA,KACE,OAAA,IAAA,MAAA,KACA,cAAA,I5B+tHH,4B4B5tHC,QAAA,IAAA,KACE,UAAA,KACA,cAAA,I5B+tHH,4B4BlvHC,QAAS,KAAK,K3BkwHd,UAAW,K2BxuHT,cAAA,IAKJ,wCAAA,qC3BwuHE,WAAY,EAEd,uCACA,+BACA,kC0Bh1HE,6CACG,8CC4GL,6D5BwtHC,wE4BvtHC,wBAAA,E5B0tHD,2BAAA,ECgBD,+BACE,aAAc,EAEhB,sCACA,8B2BnuHA,+D5BytHC,oDCWD,iC0Br1HE,4CACG,6CCiHH,uBAAA,E5B2tHD,0BAAA,E4BrtHC,8BAGA,YAAA,E5ButHD,iB4B3tHC,SAAU,SAUR,UAAA,E5BotHH,YAAA,O4BltHK,sB5BqtHL,SAAA,SCgBD,2BACE,YAAa,K2B3tHb,6BAAA,4B5B+sHD,4B4B5sHK,QAAA,EAGJ,kCAAA,wCAGI,aAAA,K5B+sHL,iC6B72HD,uCACE,QAAA,EACA,YAAA,K7Bg3HD,K6Bl3HC,aAAc,EAOZ,cAAA,EACA,WAAA,KARJ,QAWM,SAAA,SACA,QAAA,M7B+2HL,U6B72HK,SAAA,S5B63HJ,QAAS,M4B33HH,QAAA,KAAA,KAMJ,gB7B02HH,gB6Bz2HK,gBAAA,K7B42HL,iBAAA,KCgBD,mB4Bx3HQ,MAAA,KAGA,yBADA,yB7B62HP,MAAA,K6Br2HG,gBAAA,K5Bq3HF,OAAQ,YACR,iBAAkB,Y4Bl3Hd,aAzCN,mB7Bg5HC,mBwBn5HC,iBAAA,KACA,aAAA,QAEA,kBxBs5HD,OAAA,I6Bt5HC,OAAQ,IAAI,EA0DV,SAAA,O7B+1HH,iBAAA,Q6Br1HC,c7Bw1HD,UAAA,K6Bt1HG,UAEA,cAAA,IAAA,MAAA,KALJ,aASM,MAAA,KACA,cAAA,KAEA,e7Bu1HL,aAAA,I6Bt1HK,YAAA,WACE,OAAA,IAAA,MAAA,Y7Bw1HP,cAAA,IAAA,IAAA,EAAA,ECgBD,qBACE,aAAc,KAAK,KAAK,K4B/1HlB,sBAEA,4BADA,4BAEA,MAAA,K7Bo1HP,OAAA,Q6B/0HC,iBAAA,KAqDA,OAAA,IAAA,MAAA,KA8BA,oBAAA,YAnFA,wBAwDE,MAAA,K7B8xHH,cAAA,E6B5xHK,2BACA,MAAA,KA3DJ,6BAgEE,cAAA,IACA,WAAA,OAYJ,iDA0DE,IAAK,KAjED,KAAA,K7B6xHH,yB6B5tHD,2BA9DM,QAAA,W7B6xHL,MAAA,G6Bt2HD,6BAuFE,cAAA,GAvFF,6B5B23HA,aAAc,EACd,cAAe,IDZhB,kC6BzuHD,wCA3BA,wCATM,OAAA,IAAA,MAAA,K7BkxHH,yB6B9uHD,6B5B8vHE,cAAe,IAAI,MAAM,KACzB,cAAe,IAAI,IAAI,EAAE,EDZ1B,kC6Bj3HD,wC7Bk3HD,wC6Bh3HG,oBAAA,MAIE,c7Bk3HL,MAAA,K6B/2HK,gB7Bk3HL,cAAA,ICgBD,iBACE,YAAa,I4B13HP,uBAQR,6B7Bu2HC,6B6Br2HG,MAAA,K7Bw2HH,iBAAA,Q6Bt2HK,gBACA,MAAA,KAYN,mBACE,WAAA,I7B+1HD,YAAA,E6B51HG,e7B+1HH,MAAA,K6B71HK,kBACA,MAAA,KAPN,oBAYI,cAAA,IACA,WAAA,OAYJ,wCA0DE,IAAK,KAjED,KAAA,K7B81HH,yB6B7xHD,kBA9DM,QAAA,W7B81HL,MAAA,G6Br1HD,oBACA,cAAA,GAIE,oBACA,cAAA,EANJ,yB5B62HE,aAAc,EACd,cAAe,IDZhB,8B6B7yHD,oCA3BA,oCATM,OAAA,IAAA,MAAA,K7Bs1HH,yB6BlzHD,yB5Bk0HE,cAAe,IAAI,MAAM,KACzB,cAAe,IAAI,IAAI,EAAE,EDZ1B,8B6B30HD,oC7B40HD,oC6B10HG,oBAAA,MAGA,uB7B60HH,QAAA,K6Bl0HC,qBF3OA,QAAA,M3BkjID,yB8B3iIC,WAAY,KACZ,uBAAA,EACA,wBAAA,EAEA,Q9B6iID,SAAA,S8BriIC,WAAY,KA8nBZ,cAAe,KAhoBb,OAAA,IAAA,MAAA,Y9B4iIH,yB8B5hIC,QAgnBE,cAAe,K9Bi7GlB,yB8BphIC,eACA,MAAA,MAGA,iBACA,cAAA,KAAA,aAAA,KAEA,WAAA,Q9BqhID,2BAAA,M8BnhIC,WAAA,IAAA,MAAA,YACE,mBAAA,MAAA,EAAA,IAAA,EAAA,qB9BqhIH,WAAA,MAAA,EAAA,IAAA,EAAA,qB8B57GD,oBArlBI,WAAA,KAEA,yBAAA,iB9BqhID,MAAA,K8BnhIC,WAAA,EACE,mBAAA,KACA,WAAA,KAEA,0B9BqhIH,QAAA,gB8BlhIC,OAAA,eACE,eAAA,E9BohIH,SAAA,kBCkBD,oBACE,WAAY,QDZf,sC8BlhIK,mC9BihIH,oC8B5gIC,cAAe,E7B+hIf,aAAc,G6Bp+GlB,sCAnjBE,mC7B4hIA,WAAY,MDdX,4D8BtgID,sC9BugID,mCCkBG,WAAY,O6B9gId,kCANE,gC9BygIH,4B8B1gIG,0BAuiBF,aAAc,M7Bs/Gd,YAAa,MAEf,yBDZC,kC8B9gIK,gC9B6gIH,4B8B9gIG,0BAcF,aAAc,EAChB,YAAA,GAMF,mBA8gBE,QAAS,KAhhBP,aAAA,EAAA,EAAA,I9BqgIH,yB8BhgIC,mB7BkhIE,cAAe,G6B7gIjB,qBADA,kB9BmgID,SAAA,M8B5/HC,MAAO,EAggBP,KAAM,E7B+gHN,QAAS,KDdR,yB8BhgID,qB9BigID,kB8BhgIC,cAAA,GAGF,kBACE,IAAA,EACA,aAAA,EAAA,EAAA,I9BogID,qB8B7/HC,OAAQ,EACR,cAAA,EACA,aAAA,IAAA,EAAA,EAEA,cACA,MAAA,K9B+/HD,OAAA,K8B7/HC,QAAA,KAAA,K7B+gIA,UAAW,K6B7gIT,YAAA,KAIA,oBAbJ,oB9B2gIC,gBAAA,K8B1/HG,kB7B6gIF,QAAS,MDdR,yBACF,iC8Bn/HC,uCACA,YAAA,OAGA,eC9LA,SAAA,SACA,MAAA,MD+LA,QAAA,IAAA,KACA,WAAA,IACA,aAAA,KACA,cAAA,I9Bs/HD,iBAAA,Y8Bl/HC,iBAAA,KACE,OAAA,IAAA,MAAA,Y9Bo/HH,cAAA,I8B/+HG,qBACA,QAAA,EAEA,yB9Bk/HH,QAAA,M8BxgIC,MAAO,KAyBL,OAAA,I9Bk/HH,cAAA,I8BvjHD,mCAvbI,WAAA,I9Bm/HH,yB8Bz+HC,eACA,QAAA,MAGE,YACA,OAAA,MAAA,M9B4+HH,iB8B/8HC,YAAA,KA2YA,eAAgB,KAjaZ,YAAA,KAEA,yBACA,iCACA,SAAA,OACA,MAAA,KACA,MAAA,KAAA,WAAA,E9By+HH,iBAAA,Y8B9kHC,OAAQ,E7BimHR,mBAAoB,K6Bz/HhB,WAAA,KAGA,kDAqZN,sC9BqlHC,QAAA,IAAA,KAAA,IAAA,KCmBD,sC6B1/HQ,YAAA,KAmBR,4C9By9HD,4C8B1lHG,iBAAkB,M9B+lHnB,yB8B/lHD,YAtYI,MAAA,K9Bw+HH,OAAA,E8Bt+HK,eACA,MAAA,K9B0+HP,iB8B99HG,YAAa,KACf,eAAA,MAGA,aACA,QAAA,KAAA,K1B9NA,WAAA,IACQ,aAAA,M2B/DR,cAAA,IACA,YAAA,M/B+vID,WAAA,IAAA,MAAA,YiBzuHC,cAAe,IAAI,MAAM,YAwEzB,mBAAoB,MAAM,EAAE,IAAI,EAAE,qBAAyB,EAAE,IAAI,EAAE,qBAtI/D,WAAA,MAAA,EAAA,IAAA,EAAA,qBAAA,EAAA,IAAA,EAAA,qBAEA,yBjB2yHH,yBiBvqHC,QAAS,aA/HP,cAAA,EACA,eAAA,OjB0yHH,2BiB5qHC,QAAS,aAxHP,MAAA,KjBuyHH,eAAA,OiBnyHG,kCACA,QAAA,aAmHJ,0BhBssHE,QAAS,aACT,eAAgB,OgB/yHd,wCjBgyHH,6CiBxrHD,2CjB2rHC,MAAA,KiB/xHG,wCACA,MAAA,KAmGJ,4BhBktHE,cAAe,EgB9yHb,eAAA,OAGA,uBADA,oBjBgyHH,QAAA,aiBtsHC,WAAY,EhBytHZ,cAAe,EgB/yHX,eAAA,OAsFN,6BAAA,0BAjFI,aAAA,EAiFJ,4CjB+sHC,sCiB1xHG,SAAA,SjB6xHH,YAAA,E8BtgID,kDAmWE,IAAK,GAvWH,yBACE,yB9BihIL,cAAA,I8B//HD,oCAoVE,cAAe,GA1Vf,yBACA,aACA,MAAA,KACA,YAAA,E1BzPF,eAAA,EACQ,aAAA,EJswIP,YAAA,EACF,OAAA,E8BtgIG,mBAAoB,KACtB,WAAA,M9B0gID,8B8BtgIC,WAAY,EACZ,uBAAA,EHzUA,wBAAA,EAQA,mDACC,cAAA,E3B40IF,uBAAA,I8BlgIC,wBAAyB,IChVzB,2BAAA,EACA,0BAAA,EDkVA,YCnVA,WAAA,IACA,cAAA,IDqVA,mBCtVA,WAAA,KACA,cAAA,KD+VF,mBChWE,WAAA,KACA,cAAA,KDuWF,aAsSE,WAAY,KA1SV,cAAA,KAEA,yB9BkgID,aACF,MAAA,K8Br+HG,aAAc,KAhBhB,YAAA,MACA,yBE5WA,aF8WE,MAAA,eAFF,cAKI,MAAA,gB9B0/HH,aAAA,M8Bh/HD,4BACA,aAAA,GADF,gBAKI,iBAAA,Q9Bm/HH,aAAA,QCmBD,8B6BngIM,MAAA,KARN,oC9B6/HC,oC8B/+HG,MAAA,Q9Bk/HH,iBAAA,Y8B7+HK,6B9Bg/HL,MAAA,KCmBD,iC6B//HQ,MAAA,KAKF,uC9B4+HL,uCCmBC,MAAO,KACP,iBAAkB,Y6B5/HZ,sCAIF,4C9B0+HL,4CCmBC,MAAO,KACP,iBAAkB,Q6B1/HZ,wCAxCR,8C9BohIC,8C8Bt+HG,MAAA,K9By+HH,iBAAA,YCmBD,+B6Bz/HM,aAAA,KAGA,qCApDN,qC9B8hIC,iBAAA,KCmBD,yC6Bv/HI,iBAAA,KAOE,iCAAA,6B7Bq/HJ,aAAc,Q6Bj/HR,oCAiCN,0C9Bk8HD,0C8B9xHC,MAAO,KA7LC,iBAAA,QACA,yB7Bi/HR,sD6B/+HU,MAAA,KAKF,4D9B49HP,4DCmBC,MAAO,KACP,iBAAkB,Y6B5+HV,2DAIF,iE9B09HP,iECmBC,MAAO,KACP,iBAAkB,Q6B1+HV,6D9B69HX,mEADE,mE8B7jIC,MAAO,KA8GP,iBAAA,aAEE,6B9Bo9HL,MAAA,K8B/8HG,mC9Bk9HH,MAAA,KCmBD,0B6Bl+HM,MAAA,KAIA,gCAAA,gC7Bm+HJ,MAAO,K6Bz9HT,0CARQ,0CASN,mD9B08HD,mD8Bz8HC,MAAA,KAFF,gBAKI,iBAAA,K9B68HH,aAAA,QCmBD,8B6B79HM,MAAA,QARN,oC9Bu9HC,oC8Bz8HG,MAAA,K9B48HH,iBAAA,Y8Bv8HK,6B9B08HL,MAAA,QCmBD,iC6Bz9HQ,MAAA,QAKF,uC9Bs8HL,uCCmBC,MAAO,KACP,iBAAkB,Y6Bt9HZ,sCAIF,4C9Bo8HL,4CCmBC,MAAO,KACP,iBAAkB,Q6Bp9HZ,wCAxCR,8C9B8+HC,8C8B/7HG,MAAA,K9Bk8HH,iBAAA,YCmBD,+B6Bl9HM,aAAA,KAGA,qCArDN,qC9Bw/HC,iBAAA,KCmBD,yC6Bh9HI,iBAAA,KAME,iCAAA,6B7B+8HJ,aAAc,Q6B38HR,oCAuCN,0C9Bs5HD,0C8B93HC,MAAO,KAvDC,iBAAA,QAuDV,yBApDU,kE9By7HP,aAAA,Q8Bt7HO,0D9By7HP,iBAAA,QCmBD,sD6Bz8HU,MAAA,QAKF,4D9Bs7HP,4DCmBC,MAAO,KACP,iBAAkB,Y6Bt8HV,2DAIF,iE9Bo7HP,iECmBC,MAAO,KACP,iBAAkB,Q6Bp8HV,6D9Bu7HX,mEADE,mE8B7hIC,MAAO,KA+GP,iBAAA,aAEE,6B9Bm7HL,MAAA,Q8B96HG,mC9Bi7HH,MAAA,KCmBD,0B6Bj8HM,MAAA,QAIA,gCAAA,gC7Bk8HJ,MAAO,KgC1kJT,0CH0oBQ,0CGzoBN,mDjC2jJD,mDiC1jJC,MAAA,KAEA,YACA,QAAA,IAAA,KjC8jJD,cAAA,KiCnkJC,WAAY,KAQV,iBAAA,QjC8jJH,cAAA,IiC3jJK,eACA,QAAA,ajC+jJL,yBiC3kJC,QAAS,EAAE,IAkBT,MAAA,KjC4jJH,QAAA,SkC/kJC,oBACA,MAAA,KAEA,YlCklJD,QAAA,akCtlJC,aAAc,EAOZ,OAAA,KAAA,ElCklJH,cAAA,ICmBD,eiClmJM,QAAA,OAEA,iBACA,oBACA,SAAA,SACA,MAAA,KACA,QAAA,IAAA,KACA,YAAA,KACA,YAAA,WlCmlJL,MAAA,QkCjlJG,gBAAA,KjComJF,iBAAkB,KiCjmJZ,OAAA,IAAA,MAAA,KPVH,6B3B8lJJ,gCkChlJG,YAAA,EjCmmJF,uBAAwB,I0B1nJxB,0BAAA,I3B4mJD,4BkC3kJG,+BjC8lJF,wBAAyB,IACzB,2BAA4B,IiC3lJxB,uBAFA,uBAGA,0BAFA,0BlCilJL,QAAA,EkCzkJG,MAAA,QjC4lJF,iBAAkB,KAClB,aAAc,KAEhB,sBiC1lJM,4BAFA,4BjC6lJN,yBiC1lJM,+BAFA,+BAGA,QAAA,ElC8kJL,MAAA,KkCroJC,OAAQ,QjCwpJR,iBAAkB,QAClB,aAAc,QiCtlJV,wBAEA,8BADA,8BjCulJN,2BiCzlJM,iCjC0lJN,iCDZC,MAAA,KkClkJC,OAAQ,YjCqlJR,iBAAkB,KkChqJd,aAAA,KAEA,oBnCipJL,uBmC/oJG,QAAA,KAAA,KlCkqJF,UAAW,K0B7pJX,YAAA,U3B+oJD,gCmC9oJG,mClCiqJF,uBAAwB,I0B1qJxB,0BAAA,I3B4pJD,+BkC7kJD,kCjCgmJE,wBAAyB,IkChrJrB,2BAAA,IAEA,oBnCiqJL,uBmC/pJG,QAAA,IAAA,KlCkrJF,UAAW,K0B7qJX,YAAA,I3B+pJD,gCmC9pJG,mClCirJF,uBAAwB,I0B1rJxB,0BAAA,I3B4qJD,+BoC9qJD,kCACE,wBAAA,IACA,2BAAA,IAEA,OpCgrJD,aAAA,EoCprJC,OAAQ,KAAK,EAOX,WAAA,OpCgrJH,WAAA,KCmBD,UmChsJM,QAAA,OAEA,YACA,eACA,QAAA,apCirJL,QAAA,IAAA,KoC/rJC,iBAAkB,KnCktJlB,OAAQ,IAAI,MAAM,KmC/rJd,cAAA,KAnBN,kBpCosJC,kBCmBC,gBAAiB,KmC5rJb,iBAAA,KA3BN,eAAA,kBAkCM,MAAA,MAlCN,mBAAA,sBnCguJE,MAAO,KmCrrJH,mBAEA,yBADA,yBpCwqJL,sBqCrtJC,MAAO,KACP,OAAA,YACA,iBAAA,KAEA,OACA,QAAA,OACA,QAAA,KAAA,KAAA,KACA,UAAA,IACA,YAAA,IACA,YAAA,EACA,MAAA,KrCutJD,WAAA,OqCntJG,YAAA,OpCsuJF,eAAgB,SoCpuJZ,cAAA,MrCutJL,cqCrtJK,cAKJ,MAAA,KACE,gBAAA,KrCktJH,OAAA,QqC7sJG,aACA,QAAA,KAOJ,YCtCE,SAAA,StCkvJD,IAAA,KCmBD,eqChwJM,iBAAA,KALJ,2BD0CF,2BrC+sJC,iBAAA,QCmBD,eqCvwJM,iBAAA,QALJ,2BD8CF,2BrCktJC,iBAAA,QCmBD,eqC9wJM,iBAAA,QALJ,2BDkDF,2BrCqtJC,iBAAA,QCmBD,YqCrxJM,iBAAA,QALJ,wBDsDF,wBrCwtJC,iBAAA,QCmBD,eqC5xJM,iBAAA,QALJ,2BD0DF,2BrC2tJC,iBAAA,QCmBD,cqCnyJM,iBAAA,QCDJ,0BADF,0BAEE,iBAAA,QAEA,OACA,QAAA,aACA,UAAA,KACA,QAAA,IAAA,IACA,UAAA,KACA,YAAA,IACA,YAAA,EACA,MAAA,KACA,WAAA,OvCwxJD,YAAA,OuCrxJC,eAAA,OACE,iBAAA,KvCuxJH,cAAA,KuClxJG,aACA,QAAA,KAGF,YtCqyJA,SAAU,SsCnyJR,IAAA,KAMA,0BvC+wJH,eCmBC,IAAK,EsChyJD,QAAA,IAAA,IvCmxJL,cuCjxJK,cAKJ,MAAA,KtC+xJA,gBAAiB,KsC7xJf,OAAA,QvC+wJH,+BuC3wJC,4BACE,MAAA,QvC6wJH,iBAAA,KuCzwJG,wBvC4wJH,MAAA,MuCxwJG,+BvC2wJH,aAAA,IwCp0JC,uBACA,YAAA,IAEA,WACA,YAAA,KxCu0JD,eAAA,KwC50JC,cAAe,KvC+1Jf,MAAO,QuCt1JL,iBAAA,KAIA,eAbJ,cAcI,MAAA,QxCu0JH,awCr1JC,cAAe,KAmBb,UAAA,KxCq0JH,YAAA,ICmBD,cuCn1JI,iBAAA,QAEA,sBxCo0JH,4BwC91JC,cAAe,KA8Bb,aAAA,KxCm0JH,cAAA,IwChzJD,sBAfI,UAAA,KxCo0JD,oCwCj0JC,WvCo1JA,YAAa,KuCl1JX,eAAA,KxCo0JH,sBwC1zJD,4BvC60JE,cAAe,KuCj1Jb,aAAA,KC5CJ,ezC+2JD,cyC92JC,UAAA,MAGA,WACA,QAAA,MACA,QAAA,IACA,cAAA,KrCiLA,YAAA,WACK,iBAAA,KACG,OAAA,IAAA,MAAA,KJisJT,cAAA,IyC33JC,mBAAoB,OAAO,IAAI,YxC84J1B,cAAe,OAAO,IAAI,YwCj4J7B,WAAA,OAAA,IAAA,YAKF,iBzC82JD,eCmBC,aAAc,KACd,YAAa,KwC13JX,mBA1BJ,kBzCq4JC,kByC12JG,aAAA,QCzBJ,oBACE,QAAA,IACA,MAAA,KAEA,O1Cy4JD,QAAA,K0C74JC,cAAe,KAQb,OAAA,IAAA,MAAA,YAEA,cAAA,IAVJ,UAeI,WAAA,E1Cq4JH,MAAA,QCmBD,mByCl5JI,YAAA,IArBJ,SAyBI,U1Ck4JH,cAAA,ECmBD,WyC34JE,WAAA,IAFF,mBAAA,mBAMI,cAAA,KAEA,0BACA,0B1C43JH,SAAA,S0Cp3JC,IAAK,KCvDL,MAAA,MACA,MAAA,Q3C+6JD,e0Cz3JC,MAAO,QClDL,iBAAA,Q3C86JH,aAAA,Q2C36JG,kB3C86JH,iBAAA,Q2Ct7JC,2BACA,MAAA,Q3C07JD,Y0Ch4JC,MAAO,QCtDL,iBAAA,Q3Cy7JH,aAAA,Q2Ct7JG,e3Cy7JH,iBAAA,Q2Cj8JC,wBACA,MAAA,Q3Cq8JD,e0Cv4JC,MAAO,QC1DL,iBAAA,Q3Co8JH,aAAA,Q2Cj8JG,kB3Co8JH,iBAAA,Q2C58JC,2BACA,MAAA,Q3Cg9JD,c0C94JC,MAAO,QC9DL,iBAAA,Q3C+8JH,aAAA,Q2C58JG,iB3C+8JH,iBAAA,Q4Ch9JC,0BAAQ,MAAA,QACR,wCAAQ,K5Cs9JP,oBAAA,KAAA,E4Cl9JD,GACA,oBAAA,EAAA,GACA,mCAAQ,K5Cw9JP,oBAAA,KAAA,E4C19JD,GACA,oBAAA,EAAA,GACA,gCAAQ,K5Cw9JP,oBAAA,KAAA,E4Ch9JD,GACA,oBAAA,EAAA,GAGA,UACA,OAAA,KxCsCA,cAAA,KACQ,SAAA,OJ86JT,iBAAA,Q4Ch9JC,cAAe,IACf,mBAAA,MAAA,EAAA,IAAA,IAAA,eACA,WAAA,MAAA,EAAA,IAAA,IAAA,eAEA,cACA,MAAA,KACA,MAAA,EACA,OAAA,KACA,UAAA,KxCyBA,YAAA,KACQ,MAAA,KAyHR,WAAA,OACK,iBAAA,QACG,mBAAA,MAAA,EAAA,KAAA,EAAA,gBJk0JT,WAAA,MAAA,EAAA,KAAA,EAAA,gB4C78JC,mBAAoB,MAAM,IAAI,K3Cw+JzB,cAAe,MAAM,IAAI,K4Cv+J5B,WAAA,MAAA,IAAA,KDEF,sBCAE,gCDAF,iBAAA,yK5Ci9JD,iBAAA,oK4C18JC,iBAAiB,iK3Cs+JjB,wBAAyB,KAAK,KGlhK9B,gBAAA,KAAA,KJ4/JD,qBI1/JS,+BwCmDR,kBAAmB,qBAAqB,GAAG,OAAO,SErElD,aAAA,qBAAA,GAAA,OAAA,S9C+gKD,UAAA,qBAAA,GAAA,OAAA,S6C59JG,sBACA,iBAAA,Q7Cg+JH,wC4C38JC,iBAAkB,yKEzElB,iBAAA,oK9CuhKD,iBAAA,iK6Cp+JG,mBACA,iBAAA,Q7Cw+JH,qC4C/8JC,iBAAkB,yKE7ElB,iBAAA,oK9C+hKD,iBAAA,iK6C5+JG,sBACA,iBAAA,Q7Cg/JH,wC4Cn9JC,iBAAkB,yKEjFlB,iBAAA,oK9CuiKD,iBAAA,iK6Cp/JG,qBACA,iBAAA,Q7Cw/JH,uC+C/iKC,iBAAkB,yKAElB,iBAAA,oK/CgjKD,iBAAA,iK+C7iKG,O/CgjKH,WAAA,KC4BD,mB8CtkKE,WAAA,E/C+iKD,O+C3iKD,YACE,SAAA,O/C6iKD,KAAA,E+CziKC,Y/C4iKD,MAAA,Q+CxiKG,c/C2iKH,QAAA,MC4BD,4B8CjkKE,UAAA,KAGF,aAAA,mBAEE,aAAA,KAGF,YAAA,kB9CkkKE,cAAe,K8C3jKjB,YAHE,Y/CuiKD,a+CniKC,QAAA,W/CsiKD,eAAA,I+CliKC,c/CqiKD,eAAA,O+ChiKC,cACA,eAAA,OAMF,eACE,WAAA,EACA,cAAA,ICvDF,YAEE,aAAA,EACA,WAAA,KAQF,YACE,aAAA,EACA,cAAA,KAGA,iBACA,SAAA,SACA,QAAA,MhDglKD,QAAA,KAAA,KgD7kKC,cAAA,KrB3BA,iBAAA,KACC,OAAA,IAAA,MAAA,KqB6BD,6BACE,uBAAA,IrBvBF,wBAAA,I3BymKD,4BgDvkKC,cAAe,E/CmmKf,2BAA4B,I+CjmK5B,0BAAA,IAFF,kBAAA,uBAKI,MAAA,KAIF,2CAAA,gD/CmmKA,MAAO,K+C/lKL,wBAFA,wBhD4kKH,6BgD3kKG,6BAKF,MAAO,KACP,gBAAA,KACA,iBAAA,QAKA,uB/C+lKA,MAAO,KACP,WAAY,K+C5lKV,0BhDskKH,gCgDrkKG,gCALF,MAAA,K/CsmKA,OAAQ,YACR,iBAAkB,KDxBnB,mDgD/kKC,yDAAA,yD/C4mKA,MAAO,QDxBR,gDgDnkKC,sDAAA,sD/CgmKA,MAAO,K+C5lKL,wBAEA,8BADA,8BhDskKH,QAAA,EgD3kKC,MAAA,K/CumKA,iBAAkB,QAClB,aAAc,QAEhB,iDDpBC,wDCuBD,uDADA,uD+C5mKE,8DAYI,6D/C+lKN,uD+C3mKE,8D/C8mKF,6DAKE,MAAO,QDxBR,8CiD7qKG,oDADF,oDAEE,MAAA,QAEA,yBhD0sKF,MAAO,QgDxsKH,iBAAA,QAFF,0BAAA,+BAKI,MAAA,QAGF,mDAAA,wDhD2sKJ,MAAO,QDtBR,gCiDnrKO,gCAGF,qCAFE,qChD8sKN,MAAO,QACP,iBAAkB,QAEpB,iCgD1sKQ,uCAFA,uChD6sKR,sCDtBC,4CiDtrKO,4CArBN,MAAA,KACE,iBAAA,QACA,aAAA,QAEA,sBhDuuKF,MAAO,QgDruKH,iBAAA,QAFF,uBAAA,4BAKI,MAAA,QAGF,gDAAA,qDhDwuKJ,MAAO,QDtBR,6BiDhtKO,6BAGF,kCAFE,kChD2uKN,MAAO,QACP,iBAAkB,QAEpB,8BgDvuKQ,oCAFA,oChD0uKR,mCDtBC,yCiDntKO,yCArBN,MAAA,KACE,iBAAA,QACA,aAAA,QAEA,yBhDowKF,MAAO,QgDlwKH,iBAAA,QAFF,0BAAA,+BAKI,MAAA,QAGF,mDAAA,wDhDqwKJ,MAAO,QDtBR,gCiD7uKO,gCAGF,qCAFE,qChDwwKN,MAAO,QACP,iBAAkB,QAEpB,iCgDpwKQ,uCAFA,uChDuwKR,sCDtBC,4CiDhvKO,4CArBN,MAAA,KACE,iBAAA,QACA,aAAA,QAEA,wBhDiyKF,MAAO,QgD/xKH,iBAAA,QAFF,yBAAA,8BAKI,MAAA,QAGF,kDAAA,uDhDkyKJ,MAAO,QDtBR,+BiD1wKO,+BAGF,oCAFE,oChDqyKN,MAAO,QACP,iBAAkB,QAEpB,gCgDjyKQ,sCAFA,sChDoyKR,qCDtBC,2CiD7wKO,2CDkGN,MAAO,KACP,iBAAA,QACA,aAAA,QAEF,yBACE,WAAA,EACA,cAAA,IE1HF,sBACE,cAAA,EACA,YAAA,IAEA,O9C0DA,cAAA,KACQ,iBAAA,KJgvKT,OAAA,IAAA,MAAA,YkDtyKC,cAAe,IACf,mBAAA,EAAA,IAAA,IAAA,gBlDwyKD,WAAA,EAAA,IAAA,IAAA,gBkDlyKC,YACA,QAAA,KvBnBC,e3B0zKF,QAAA,KAAA,KkDzyKC,cAAe,IAAI,MAAM,YAMvB,uBAAA,IlDsyKH,wBAAA,IkDhyKC,0CACA,MAAA,QAEA,alDmyKD,WAAA,EkDvyKC,cAAe,EjDm0Kf,UAAW,KACX,MAAO,QDtBR,oBkD7xKC,sBjDqzKF,eiD3zKI,mBAKJ,qBAEE,MAAA,QvBvCA,cACC,QAAA,KAAA,K3By0KF,iBAAA,QkDxxKC,WAAY,IAAI,MAAM,KjDozKtB,2BAA4B,IiDjzK1B,0BAAA,IAHJ,mBAAA,mCAMM,cAAA,ElD2xKL,oCkDtxKG,oDjDkzKF,aAAc,IAAI,EiDhzKZ,cAAA,EvBtEL,4D3Bg2KF,4EkDpxKG,WAAA,EjDgzKF,uBAAwB,IiD9yKlB,wBAAA,IvBtEL,0D3B81KF,0EkD7yKC,cAAe,EvB1Df,2BAAA,IACC,0BAAA,IuB0FH,+EAEI,uBAAA,ElDixKH,wBAAA,EkD7wKC,wDlDgxKD,iBAAA,EC4BD,0BACE,iBAAkB,EiDryKpB,8BlD6wKC,ckD7wKD,gCjD0yKE,cAAe,EiD1yKjB,sCAQM,sBlD2wKL,wCC4BC,cAAe,K0Bx5Kf,aAAA,KuByGF,wDlDwxKC,0BC4BC,uBAAwB,IACxB,wBAAyB,IiDrzK3B,yFAoBQ,yFlD2wKP,2DkD5wKO,2DjDwyKN,uBAAwB,IACxB,wBAAyB,IAK3B,wGiDj0KA,wGjD+zKA,wGDtBC,wGCuBD,0EiDh0KA,0EjD8zKA,0EiDtyKU,0EjD8yKR,uBAAwB,IAK1B,uGiD30KA,uGjDy0KA,uGDtBC,uGCuBD,yEiD10KA,yEjDw0KA,yEiD5yKU,yEvB7HR,wBAAA,IuBiGF,sDlDwzKC,yBC4BC,2BAA4B,IAC5B,0BAA2B,IiD3yKrB,qFA1CR,qFAyCQ,wDlDsxKP,wDC4BC,2BAA4B,IAC5B,0BAA2B,IAG7B,oGDtBC,oGCwBD,oGiDj2KA,oGjD81KA,uEiDhzKU,uEjDkzKV,uEiDh2KA,uEjDs2KE,0BAA2B,IAG7B,mGDtBC,mGCwBD,mGiD32KA,mGjDw2KA,sEiDtzKU,sEjDwzKV,sEiD12KA,sEjDg3KE,2BAA4B,IiDrzK1B,0BlD8xKH,qCkDz1KD,0BAAA,qCA+DI,WAAA,IAAA,MAAA,KA/DJ,kDAAA,kDAmEI,WAAA,EAnEJ,uBAAA,yCjD83KE,OAAQ,EiDpzKA,+CjDwzKV,+CiDl4KA,+CjDo4KA,+CAEA,+CANA,+CDjBC,iECoBD,iEiDn4KA,iEjDq4KA,iEAEA,iEANA,iEAWE,YAAa,EiD9zKL,8CjDk0KV,8CiDh5KA,8CjDk5KA,8CAEA,8CANA,8CDjBC,gECoBD,gEiDj5KA,gEjDm5KA,gEAEA,gEANA,gEAWE,aAAc,EAIhB,+CiD95KA,+CjD45KA,+CiDr0KU,+CjDw0KV,iEiD/5KA,iEjD65KA,iEDtBC,iEC6BC,cAAe,EAEjB,8CiDt0KU,8CjDw0KV,8CiDx6KA,8CjDu6KA,gEDtBC,gECwBD,gEiDn0KI,gEACA,cAAA,EAUJ,yBACE,cAAA,ElDsyKD,OAAA,EkDlyKG,aACA,cAAA,KANJ,oBASM,cAAA,ElDqyKL,cAAA,IkDhyKG,2BlDmyKH,WAAA,IC4BD,4BiD3zKM,cAAA,EAKF,wDAvBJ,wDlDwzKC,WAAA,IAAA,MAAA,KkD/xKK,2BlDkyKL,WAAA,EmDrhLC,uDnDwhLD,cAAA,IAAA,MAAA,KmDrhLG,eACA,aAAA,KnDyhLH,8BmD3hLC,MAAA,KAMI,iBAAA,QnDwhLL,aAAA,KmDrhLK,0DACA,iBAAA,KAGJ,qCAEI,MAAA,QnDshLL,iBAAA,KmDviLC,yDnD0iLD,oBAAA,KmDviLG,eACA,aAAA,QnD2iLH,8BmD7iLC,MAAA,KAMI,iBAAA,QnD0iLL,aAAA,QmDviLK,0DACA,iBAAA,QAGJ,qCAEI,MAAA,QnDwiLL,iBAAA,KmDzjLC,yDnD4jLD,oBAAA,QmDzjLG,eACA,aAAA,QnD6jLH,8BmD/jLC,MAAA,QAMI,iBAAA,QnD4jLL,aAAA,QmDzjLK,0DACA,iBAAA,QAGJ,qCAEI,MAAA,QnD0jLL,iBAAA,QmD3kLC,yDnD8kLD,oBAAA,QmD3kLG,YACA,aAAA,QnD+kLH,2BmDjlLC,MAAA,QAMI,iBAAA,QnD8kLL,aAAA,QmD3kLK,uDACA,iBAAA,QAGJ,kCAEI,MAAA,QnD4kLL,iBAAA,QmD7lLC,sDnDgmLD,oBAAA,QmD7lLG,eACA,aAAA,QnDimLH,8BmDnmLC,MAAA,QAMI,iBAAA,QnDgmLL,aAAA,QmD7lLK,0DACA,iBAAA,QAGJ,qCAEI,MAAA,QnD8lLL,iBAAA,QmD/mLC,yDnDknLD,oBAAA,QmD/mLG,cACA,aAAA,QnDmnLH,6BmDrnLC,MAAA,QAMI,iBAAA,QnDknLL,aAAA,QmD/mLK,yDACA,iBAAA,QAGJ,oCAEI,MAAA,QnDgnLL,iBAAA,QoD/nLC,wDACA,oBAAA,QAEA,kBACA,SAAA,SpDkoLD,QAAA,MoDvoLC,OAAQ,EnDmqLR,QAAS,EACT,SAAU,OAEZ,yCmDzpLI,wBADA,yBAEA,yBACA,wBACA,SAAA,SACA,IAAA,EACA,OAAA,EpDkoLH,KAAA,EoD7nLC,MAAO,KACP,OAAA,KpD+nLD,OAAA,EoD1nLC,wBpD6nLD,eAAA,OqDvpLC,uBACA,eAAA,IAEA,MACA,WAAA,KACA,QAAA,KjDwDA,cAAA,KACQ,iBAAA,QJmmLT,OAAA,IAAA,MAAA,QqDlqLC,cAAe,IASb,mBAAA,MAAA,EAAA,IAAA,IAAA,gBACA,WAAA,MAAA,EAAA,IAAA,IAAA,gBAKJ,iBACE,aAAA,KACA,aAAA,gBAEF,SACE,QAAA,KACA,cAAA,ICtBF,SACE,QAAA,IACA,cAAA,IAEA,OACA,MAAA,MACA,UAAA,KjCRA,YAAA,IAGA,YAAA,ErBwrLD,MAAA,KsDhrLC,YAAA,EAAA,IAAA,EAAA,KrD4sLA,OAAQ,kBqD1sLN,QAAA,GjCbF,aiCeE,ajCZF,MAAA,KrBgsLD,gBAAA,KsD5qLC,OAAA,QACE,OAAA,kBACA,QAAA,GAEA,aACA,mBAAA,KtD8qLH,QAAA,EuDnsLC,OAAQ,QACR,WAAA,IvDqsLD,OAAA,EuDhsLC,YACA,SAAA,OAEA,OACA,SAAA,MACA,IAAA,EACA,MAAA,EACA,OAAA,EACA,KAAA,EAIA,QAAA,KvDgsLD,QAAA,KuD7rLC,SAAA,OnD+GA,2BAAA,MACI,QAAA,EAEI,0BAkER,mBAAA,kBAAA,IAAA,SAEK,cAAA,aAAA,IAAA,SACG,WAAA,UAAA,IAAA,SJghLT,kBAAA,kBuDnsLC,cAAA,kBnD2GA,aAAA,kBACI,UAAA,kBAEI,wBJ2lLT,kBAAA,euDvsLK,cAAe,eACnB,aAAA,eACA,UAAA,eAIF,mBACE,WAAA,OACA,WAAA,KvDwsLD,cuDnsLC,SAAU,SACV,MAAA,KACA,OAAA,KAEA,eACA,SAAA,SnDaA,iBAAA,KACQ,wBAAA,YmDZR,gBAAA,YtD+tLA,OsD/tLA,IAAA,MAAA,KAEA,OAAA,IAAA,MAAA,evDqsLD,cAAA,IuDjsLC,QAAS,EACT,mBAAA,EAAA,IAAA,IAAA,eACA,WAAA,EAAA,IAAA,IAAA,eAEA,gBACA,SAAA,MACA,IAAA,EACA,MAAA,EvDmsLD,OAAA,EuDjsLC,KAAA,ElCrEA,QAAA,KAGA,iBAAA,KkCmEA,qBlCtEA,OAAA,iBAGA,QAAA,EkCwEF,mBACE,OAAA,kBACA,QAAA,GAIF,cACE,QAAA,KvDmsLD,cAAA,IAAA,MAAA,QuD9rLC,qBACA,WAAA,KAKF,aACE,OAAA,EACA,YAAA,WAIF,YACE,SAAA,SACA,QAAA,KvD6rLD,cuD/rLC,QAAS,KAQP,WAAA,MACA,WAAA,IAAA,MAAA,QATJ,wBAaI,cAAA,EvDyrLH,YAAA,IuDrrLG,mCvDwrLH,YAAA,KuDlrLC,oCACA,YAAA,EAEA,yBACA,SAAA,SvDqrLD,IAAA,QuDnqLC,MAAO,KAZP,OAAA,KACE,SAAA,OvDmrLD,yBuDhrLD,cnDvEA,MAAA,MACQ,OAAA,KAAA,KmD2ER,eAAY,mBAAA,EAAA,IAAA,KAAA,evDkrLX,WAAA,EAAA,IAAA,KAAA,euD5qLD,UAFA,MAAA,OvDorLD,yBwDl0LC,UACA,MAAA,OCNA,SAEA,SAAA,SACA,QAAA,KACA,QAAA,MACA,YAAA,iBAAA,UAAA,MAAA,WACA,UAAA,KACA,WAAA,OACA,YAAA,IACA,YAAA,WACA,WAAA,KACA,WAAA,MACA,gBAAA,KACA,YAAA,KACA,eAAA,KACA,eAAA,ODHA,WAAA,OnCVA,aAAA,OAGA,UAAA,OrBy1LD,YAAA,OwD90LC,OAAA,iBnCdA,QAAA,ErBg2LD,WAAA,KwDj1LY,YAAmB,OAAA,kBxDq1L/B,QAAA,GwDp1LY,aAAmB,QAAA,IAAA,ExDw1L/B,WAAA,KwDv1LY,eAAmB,QAAA,EAAA,IxD21L/B,YAAA,IwD11LY,gBAAmB,QAAA,IAAA,ExD81L/B,WAAA,IwDz1LC,cACA,QAAA,EAAA,IACA,YAAA,KAEA,eACA,UAAA,MxD41LD,QAAA,IAAA,IwDx1LC,MAAO,KACP,WAAA,OACA,iBAAA,KACA,cAAA,IAEA,exD01LD,SAAA,SwDt1LC,MAAA,EACE,OAAA,EACA,aAAA,YACA,aAAA,MAEA,4BxDw1LH,OAAA,EwDt1LC,KAAA,IACE,YAAA,KACA,aAAA,IAAA,IAAA,EACA,iBAAA,KAEA,iCxDw1LH,MAAA,IwDt1LC,OAAA,EACE,cAAA,KACA,aAAA,IAAA,IAAA,EACA,iBAAA,KAEA,kCxDw1LH,OAAA,EwDt1LC,KAAA,IACE,cAAA,KACA,aAAA,IAAA,IAAA,EACA,iBAAA,KAEA,8BxDw1LH,IAAA,IwDt1LC,KAAA,EACE,WAAA,KACA,aAAA,IAAA,IAAA,IAAA,EACA,mBAAA,KAEA,6BxDw1LH,IAAA,IwDt1LC,MAAA,EACE,WAAA,KACA,aAAA,IAAA,EAAA,IAAA,IACA,kBAAA,KAEA,+BxDw1LH,IAAA,EwDt1LC,KAAA,IACE,YAAA,KACA,aAAA,EAAA,IAAA,IACA,oBAAA,KAEA,oCxDw1LH,IAAA,EwDt1LC,MAAA,IACE,WAAA,KACA,aAAA,EAAA,IAAA,IACA,oBAAA,KAEA,qCxDw1LH,IAAA,E0Dr7LC,KAAM,IACN,WAAA,KACA,aAAA,EAAA,IAAA,IACA,oBAAA,KAEA,SACA,SAAA,SACA,IAAA,EDXA,KAAA,EAEA,QAAA,KACA,QAAA,KACA,UAAA,MACA,QAAA,IACA,YAAA,iBAAA,UAAA,MAAA,WACA,UAAA,KACA,WAAA,OACA,YAAA,IACA,YAAA,WACA,WAAA,KACA,WAAA,MACA,gBAAA,KACA,YAAA,KACA,eAAA,KCAA,eAAA,OAEA,WAAA,OACA,aAAA,OAAA,UAAA,OACA,YAAA,OACA,iBAAA,KACA,wBAAA,YtD8CA,gBAAA,YACQ,OAAA,IAAA,MAAA,KJq5LT,OAAA,IAAA,MAAA,e0Dh8LC,cAAA,IAAY,mBAAA,EAAA,IAAA,KAAA,e1Dm8Lb,WAAA,EAAA,IAAA,KAAA,e0Dl8La,WAAA,KACZ,aAAY,WAAA,MACZ,eAAY,YAAA,KAGd,gBACE,WAAA,KAEA,cACA,YAAA,MAEA,e1Dw8LD,QAAA,IAAA,K0Dr8LC,OAAQ,EACR,UAAA,K1Du8LD,iBAAA,Q0D/7LC,cAAA,IAAA,MAAA,QzD49LA,cAAe,IAAI,IAAI,EAAE,EyDz9LvB,iBACA,QAAA,IAAA,KAEA,gBACA,sB1Di8LH,SAAA,S0D97LC,QAAS,MACT,MAAA,E1Dg8LD,OAAA,E0D97LC,aAAc,YACd,aAAA,M1Di8LD,gB0D57LC,aAAA,KAEE,sBACA,QAAA,GACA,aAAA,KAEA,oB1D87LH,OAAA,M0D77LG,KAAA,IACE,YAAA,MACA,iBAAA,KACA,iBAAA,gBACA,oBAAA,E1Dg8LL,0B0D57LC,OAAA,IACE,YAAA,MACA,QAAA,IACA,iBAAA,KACA,oBAAA,EAEA,sB1D87LH,IAAA,I0D77LG,KAAA,MACE,WAAA,MACA,mBAAA,KACA,mBAAA,gBACA,kBAAA,E1Dg8LL,4B0D57LC,OAAA,MACE,KAAA,IACA,QAAA,IACA,mBAAA,KACA,kBAAA,EAEA,uB1D87LH,IAAA,M0D77LG,KAAA,IACE,YAAA,MACA,iBAAA,EACA,oBAAA,KACA,oBAAA,gB1Dg8LL,6B0D37LC,IAAA,IACE,YAAA,MACA,QAAA,IACA,iBAAA,EACA,oBAAA,KAEA,qB1D67LH,IAAA,I0D57LG,MAAA,MACE,WAAA,MACA,mBAAA,EACA,kBAAA,KACA,kBAAA,gB1D+7LL,2B2DvjMC,MAAO,IACP,OAAA,M3DyjMD,QAAA,I2DtjMC,mBAAoB,EACpB,kBAAA,KAEA,U3DwjMD,SAAA,S2DrjMG,gBACA,SAAA,SvD6KF,MAAA,KACK,SAAA,OJ64LN,sB2DlkMC,SAAU,S1D+lMV,QAAS,K0DjlML,mBAAA,IAAA,YAAA,K3DwjML,cAAA,IAAA,YAAA,K2D9hMC,WAAA,IAAA,YAAA,KvDmKK,4BAFL,0BAGQ,YAAA,EA3JA,qDA+GR,sBAEQ,mBAAA,kBAAA,IAAA,YJi7LP,cAAA,aAAA,IAAA,Y2D5jMG,WAAA,UAAA,IAAA,YvDmHJ,4BAAA,OACQ,oBAAA,OuDjHF,oBAAA,O3D+jML,YAAA,OI/8LD,mCHy+LA,2BGx+LQ,KAAA,EuD5GF,kBAAA,sB3DgkML,UAAA,sBC2BD,kCADA,2BG/+LA,KAAA,EACQ,kBAAA,uBuDtGF,UAAA,uBArCN,6B3DumMD,gC2DvmMC,iC1DkoME,KAAM,E0DrlMN,kBAAA,mB3D+jMH,UAAA,oBAGA,wB2D/mMD,sBAAA,sBAsDI,QAAA,MAEA,wB3D6jMH,KAAA,E2DzjMG,sB3D4jMH,sB2DxnMC,SAAU,SA+DR,IAAA,E3D4jMH,MAAA,KC0BD,sB0DllMI,KAAA,KAnEJ,sBAuEI,KAAA,MAvEJ,2BA0EI,4B3D2jMH,KAAA,E2DljMC,6BACA,KAAA,MAEA,8BACA,KAAA,KtC3FA,kBsC6FA,SAAA,SACA,IAAA,EACA,OAAA,EACA,KAAA,EACA,MAAA,I3DsjMD,UAAA,K2DjjMC,MAAA,KdnGE,WAAA,OACA,YAAA,EAAA,IAAA,IAAA,eACA,iBAAA,cAAA,OAAA,kBACA,QAAA,G7CwpMH,uB2DrjMC,iBAAA,sEACE,iBAAA,iEACA,iBAAA,uFdxGA,iBAAA,kEACA,OAAA,+GACA,kBAAA,SACA,wBACA,MAAA,E7CgqMH,KAAA,K2DvjMC,iBAAA,sE1DmlMA,iBAAiB,iE0DjlMf,iBAAA,uFACA,iBAAA,kEACA,OAAA,+GtCvHF,kBAAA,SsCyFF,wB3DylMC,wBC4BC,MAAO,KACP,gBAAiB,KACjB,OAAQ,kB0DhlMN,QAAA,EACA,QAAA,G3D2jMH,0C2DnmMD,2CA2CI,6BADA,6B1DqlMF,SAAU,S0DhlMR,IAAA,IACA,QAAA,E3DwjMH,QAAA,a2DxmMC,WAAY,MAqDV,0CADA,6B3DyjMH,KAAA,I2D7mMC,YAAa,MA0DX,2CADA,6BAEA,MAAA,IACA,aAAA,MAME,6BADF,6B3DsjMH,MAAA,K2DjjMG,OAAA,KACE,YAAA,M3DmjML,YAAA,E2DxiMC,oCACA,QAAA,QAEA,oCACA,QAAA,QAEA,qBACA,SAAA,SACA,OAAA,K3D2iMD,KAAA,I2DpjMC,QAAS,GAYP,MAAA,IACA,aAAA,EACA,YAAA,KACA,WAAA,OACA,WAAA,KAEA,wBACA,QAAA,aAWA,MAAA,KACA,OAAA,K3DiiMH,OAAA,I2DhkMC,YAAa,OAkCX,OAAA,QACA,iBAAA,OACA,iBAAA,cACA,OAAA,IAAA,MAAA,K3DiiMH,cAAA,K2DzhMC,6BACA,MAAA,KACA,OAAA,KACA,OAAA,EACA,iBAAA,KAEA,kBACA,SAAA,SACA,MAAA,IACA,OAAA,K3D4hMD,KAAA,I2D3hMC,QAAA,GACE,YAAA,K3D6hMH,eAAA,K2Dp/LC,MAAO,KAhCP,WAAA,O1DijMA,YAAa,EAAE,IAAI,IAAI,eAEzB,uB0D9iMM,YAAA,KAEA,oCACA,0C3DshMH,2C2D9hMD,6BAAA,6BAYI,MAAA,K3DshMH,OAAA,K2DliMD,WAAA,M1D8jME,UAAW,KDxBZ,0C2DjhMD,6BACE,YAAA,MAEA,2C3DmhMD,6B2D/gMD,aAAA,M3DkhMC,kBACF,MAAA,I4DhxMC,KAAA,I3D4yME,eAAgB,KAElB,qBACE,OAAQ,MAkBZ,qCADA,sCADA,mBADA,oBAXA,gBADA,iBAOA,uBADA,wBADA,iBADA,kBADA,wBADA,yBASA,mCADA,oC2DvzME,oBAAA,qBAAA,oBAAA,qB3D8zMF,WADA,YAOA,uBADA,wBADA,qBADA,sBADA,cADA,e2Dl0MI,a3Dw0MJ,cDvBC,kB4DhzMG,mB3DwzMJ,WADA,YAwBE,QAAS,MACT,QAAS,IASX,qCADA,mBANA,gBAGA,uBADA,iBADA,wBAIA,mCDhBC,oB6Dl1MC,oB5Dq2MF,W+B/1MA,uBhCu0MC,qB4D/zMG,cChBF,aACA,kB5Dk2MF,W+Bx1ME,MAAO,KhC40MR,cgCz0MC,QAAS,MACT,aAAA,KhC20MD,YAAA,KgCl0MC,YhCq0MD,MAAA,gBgCl0MC,WhCq0MD,MAAA,egCl0MC,MhCq0MD,QAAA,e8D51MC,MACA,QAAA,gBAEA,WACA,WAAA,O9B8BF,WACE,KAAA,EAAA,EAAA,EhCm0MD,MAAA,YgC5zMC,YAAa,KACb,iBAAA,YhC8zMD,OAAA,E+D91MC,Q/Di2MD,QAAA,eC4BD,OACE,SAAU,M+Dt4MV,chE+2MD,MAAA,aC+BD,YADA,YADA,YADA,YAIE,QAAS,e+Dv5MT,kBhEy4MC,mBgEx4MD,yBhEo4MD,kB+Dr1MD,mBA6IA,yB9D+tMA,kBACA,mB8Dp3ME,yB9Dg3MF,kBACA,mBACA,yB+D15MY,QAAA,eACV,yBAAU,YhE64MT,QAAA,gBC4BD,iB+Dv6MU,QAAA,gBhEg5MX,c+D/1MG,QAAS,oB/Dm2MV,c+Dr2MC,c/Ds2MH,QAAA,sB+Dj2MG,yB/Dq2MD,kBACF,QAAA,iB+Dj2MG,yB/Dq2MD,mBACF,QAAA,kBgEn6MC,yBhEu6MC,yBgEt6MD,QAAA,wBACA,+CAAU,YhE26MT,QAAA,gBC4BD,iB+Dr8MU,QAAA,gBhE86MX,c+Dx2MG,QAAS,oB/D42MV,c+D92MC,c/D+2MH,QAAA,sB+D12MG,+C/D82MD,kBACF,QAAA,iB+D12MG,+C/D82MD,mBACF,QAAA,kBgEj8MC,+ChEq8MC,yBgEp8MD,QAAA,wBACA,gDAAU,YhEy8MT,QAAA,gBC4BD,iB+Dn+MU,QAAA,gBhE48MX,c+Dj3MG,QAAS,oB/Dq3MV,c+Dv3MC,c/Dw3MH,QAAA,sB+Dn3MG,gD/Du3MD,kBACF,QAAA,iB+Dn3MG,gD/Du3MD,mBACF,QAAA,kBgE/9MC,gDhEm+MC,yBgEl+MD,QAAA,wBACA,0BAAU,YhEu+MT,QAAA,gBC4BD,iB+DjgNU,QAAA,gBhE0+MX,c+D13MG,QAAS,oB/D83MV,c+Dh4MC,c/Di4MH,QAAA,sB+D53MG,0B/Dg4MD,kBACF,QAAA,iB+D53MG,0B/Dg4MD,mBACF,QAAA,kBgEr/MC,0BhEy/MC,yBACF,QAAA,wBgE1/MC,yBhE8/MC,WACF,QAAA,gBgE//MC,+ChEmgNC,WACF,QAAA,gBgEpgNC,gDhEwgNC,WACF,QAAA,gBAGA,0B+Dn3MC,WA4BE,QAAS,gBC5LX,eAAU,QAAA,eACV,aAAU,ehE4hNT,QAAA,gBC4BD,oB+DtjNU,QAAA,gBhE+hNX,iB+Dj4MG,QAAS,oBAMX,iB/D83MD,iB+Dz2MG,QAAS,sB/D82MZ,qB+Dl4MC,QAAS,e/Dq4MV,a+D/3MC,qBAcE,QAAS,iB/Ds3MZ,sB+Dn4MC,QAAS,e/Ds4MV,a+Dh4MC,sBAOE,QAAS,kB/D83MZ,4B+D/3MC,QAAS,eCpLT,ahEujNC,4BACF,QAAA,wBC6BD,aACE,cACE,QAAS"}
\ No newline at end of file
diff --git a/src/main/webapp/vendors/bootstrap/less/.csscomb.json b/src/main/webapp/vendors/bootstrap/less/.csscomb.json
new file mode 100644
index 0000000000000000000000000000000000000000..40695a4782fe696dca905eeb42b92c64e54df0f8
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/.csscomb.json
@@ -0,0 +1,304 @@
+{
+  "always-semicolon": true,
+  "block-indent": 2,
+  "color-case": "lower",
+  "color-shorthand": true,
+  "element-case": "lower",
+  "eof-newline": true,
+  "leading-zero": false,
+  "remove-empty-rulesets": true,
+  "space-after-colon": 1,
+  "space-after-combinator": 1,
+  "space-before-selector-delimiter": 0,
+  "space-between-declarations": "\n",
+  "space-after-opening-brace": "\n",
+  "space-before-closing-brace": "\n",
+  "space-before-colon": 0,
+  "space-before-combinator": 1,
+  "space-before-opening-brace": 1,
+  "strip-spaces": true,
+  "unitless-zero": true,
+  "vendor-prefix-align": true,
+  "sort-order": [
+    [
+      "position",
+      "top",
+      "right",
+      "bottom",
+      "left",
+      "z-index",
+      "display",
+      "float",
+      "width",
+      "min-width",
+      "max-width",
+      "height",
+      "min-height",
+      "max-height",
+      "-webkit-box-sizing",
+      "-moz-box-sizing",
+      "box-sizing",
+      "-webkit-appearance",
+      "padding",
+      "padding-top",
+      "padding-right",
+      "padding-bottom",
+      "padding-left",
+      "margin",
+      "margin-top",
+      "margin-right",
+      "margin-bottom",
+      "margin-left",
+      "overflow",
+      "overflow-x",
+      "overflow-y",
+      "-webkit-overflow-scrolling",
+      "-ms-overflow-x",
+      "-ms-overflow-y",
+      "-ms-overflow-style",
+      "clip",
+      "clear",
+      "font",
+      "font-family",
+      "font-size",
+      "font-style",
+      "font-weight",
+      "font-variant",
+      "font-size-adjust",
+      "font-stretch",
+      "font-effect",
+      "font-emphasize",
+      "font-emphasize-position",
+      "font-emphasize-style",
+      "font-smooth",
+      "-webkit-hyphens",
+      "-moz-hyphens",
+      "hyphens",
+      "line-height",
+      "color",
+      "text-align",
+      "-webkit-text-align-last",
+      "-moz-text-align-last",
+      "-ms-text-align-last",
+      "text-align-last",
+      "text-emphasis",
+      "text-emphasis-color",
+      "text-emphasis-style",
+      "text-emphasis-position",
+      "text-decoration",
+      "text-indent",
+      "text-justify",
+      "text-outline",
+      "-ms-text-overflow",
+      "text-overflow",
+      "text-overflow-ellipsis",
+      "text-overflow-mode",
+      "text-shadow",
+      "text-transform",
+      "text-wrap",
+      "-webkit-text-size-adjust",
+      "-ms-text-size-adjust",
+      "letter-spacing",
+      "-ms-word-break",
+      "word-break",
+      "word-spacing",
+      "-ms-word-wrap",
+      "word-wrap",
+      "-moz-tab-size",
+      "-o-tab-size",
+      "tab-size",
+      "white-space",
+      "vertical-align",
+      "list-style",
+      "list-style-position",
+      "list-style-type",
+      "list-style-image",
+      "pointer-events",
+      "-ms-touch-action",
+      "touch-action",
+      "cursor",
+      "visibility",
+      "zoom",
+      "flex-direction",
+      "flex-order",
+      "flex-pack",
+      "flex-align",
+      "table-layout",
+      "empty-cells",
+      "caption-side",
+      "border-spacing",
+      "border-collapse",
+      "content",
+      "quotes",
+      "counter-reset",
+      "counter-increment",
+      "resize",
+      "-webkit-user-select",
+      "-moz-user-select",
+      "-ms-user-select",
+      "-o-user-select",
+      "user-select",
+      "nav-index",
+      "nav-up",
+      "nav-right",
+      "nav-down",
+      "nav-left",
+      "background",
+      "background-color",
+      "background-image",
+      "-ms-filter:\\'progid:DXImageTransform.Microsoft.gradient",
+      "filter:progid:DXImageTransform.Microsoft.gradient",
+      "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader",
+      "filter",
+      "background-repeat",
+      "background-attachment",
+      "background-position",
+      "background-position-x",
+      "background-position-y",
+      "-webkit-background-clip",
+      "-moz-background-clip",
+      "background-clip",
+      "background-origin",
+      "-webkit-background-size",
+      "-moz-background-size",
+      "-o-background-size",
+      "background-size",
+      "border",
+      "border-color",
+      "border-style",
+      "border-width",
+      "border-top",
+      "border-top-color",
+      "border-top-style",
+      "border-top-width",
+      "border-right",
+      "border-right-color",
+      "border-right-style",
+      "border-right-width",
+      "border-bottom",
+      "border-bottom-color",
+      "border-bottom-style",
+      "border-bottom-width",
+      "border-left",
+      "border-left-color",
+      "border-left-style",
+      "border-left-width",
+      "border-radius",
+      "border-top-left-radius",
+      "border-top-right-radius",
+      "border-bottom-right-radius",
+      "border-bottom-left-radius",
+      "-webkit-border-image",
+      "-moz-border-image",
+      "-o-border-image",
+      "border-image",
+      "-webkit-border-image-source",
+      "-moz-border-image-source",
+      "-o-border-image-source",
+      "border-image-source",
+      "-webkit-border-image-slice",
+      "-moz-border-image-slice",
+      "-o-border-image-slice",
+      "border-image-slice",
+      "-webkit-border-image-width",
+      "-moz-border-image-width",
+      "-o-border-image-width",
+      "border-image-width",
+      "-webkit-border-image-outset",
+      "-moz-border-image-outset",
+      "-o-border-image-outset",
+      "border-image-outset",
+      "-webkit-border-image-repeat",
+      "-moz-border-image-repeat",
+      "-o-border-image-repeat",
+      "border-image-repeat",
+      "outline",
+      "outline-width",
+      "outline-style",
+      "outline-color",
+      "outline-offset",
+      "-webkit-box-shadow",
+      "-moz-box-shadow",
+      "box-shadow",
+      "filter:progid:DXImageTransform.Microsoft.Alpha(Opacity",
+      "-ms-filter:\\'progid:DXImageTransform.Microsoft.Alpha",
+      "opacity",
+      "-ms-interpolation-mode",
+      "-webkit-transition",
+      "-moz-transition",
+      "-ms-transition",
+      "-o-transition",
+      "transition",
+      "-webkit-transition-delay",
+      "-moz-transition-delay",
+      "-ms-transition-delay",
+      "-o-transition-delay",
+      "transition-delay",
+      "-webkit-transition-timing-function",
+      "-moz-transition-timing-function",
+      "-ms-transition-timing-function",
+      "-o-transition-timing-function",
+      "transition-timing-function",
+      "-webkit-transition-duration",
+      "-moz-transition-duration",
+      "-ms-transition-duration",
+      "-o-transition-duration",
+      "transition-duration",
+      "-webkit-transition-property",
+      "-moz-transition-property",
+      "-ms-transition-property",
+      "-o-transition-property",
+      "transition-property",
+      "-webkit-transform",
+      "-moz-transform",
+      "-ms-transform",
+      "-o-transform",
+      "transform",
+      "-webkit-transform-origin",
+      "-moz-transform-origin",
+      "-ms-transform-origin",
+      "-o-transform-origin",
+      "transform-origin",
+      "-webkit-animation",
+      "-moz-animation",
+      "-ms-animation",
+      "-o-animation",
+      "animation",
+      "-webkit-animation-name",
+      "-moz-animation-name",
+      "-ms-animation-name",
+      "-o-animation-name",
+      "animation-name",
+      "-webkit-animation-duration",
+      "-moz-animation-duration",
+      "-ms-animation-duration",
+      "-o-animation-duration",
+      "animation-duration",
+      "-webkit-animation-play-state",
+      "-moz-animation-play-state",
+      "-ms-animation-play-state",
+      "-o-animation-play-state",
+      "animation-play-state",
+      "-webkit-animation-timing-function",
+      "-moz-animation-timing-function",
+      "-ms-animation-timing-function",
+      "-o-animation-timing-function",
+      "animation-timing-function",
+      "-webkit-animation-delay",
+      "-moz-animation-delay",
+      "-ms-animation-delay",
+      "-o-animation-delay",
+      "animation-delay",
+      "-webkit-animation-iteration-count",
+      "-moz-animation-iteration-count",
+      "-ms-animation-iteration-count",
+      "-o-animation-iteration-count",
+      "animation-iteration-count",
+      "-webkit-animation-direction",
+      "-moz-animation-direction",
+      "-ms-animation-direction",
+      "-o-animation-direction",
+      "animation-direction"
+    ]
+  ]
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/.csslintrc b/src/main/webapp/vendors/bootstrap/less/.csslintrc
new file mode 100644
index 0000000000000000000000000000000000000000..005b86236c7fd8df9be6d8f06371ed0ce22e2840
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/.csslintrc
@@ -0,0 +1,19 @@
+{
+  "adjoining-classes": false,
+  "box-sizing": false,
+  "box-model": false,
+  "compatible-vendor-prefixes": false,
+  "floats": false,
+  "font-sizes": false,
+  "gradients": false,
+  "important": false,
+  "known-properties": false,
+  "outline-none": false,
+  "qualified-headings": false,
+  "regex-selectors": false,
+  "shorthand": false,
+  "text-indent": false,
+  "unique-headings": false,
+  "universal-selector": false,
+  "unqualified-attributes": false
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/alerts.less b/src/main/webapp/vendors/bootstrap/less/alerts.less
new file mode 100644
index 0000000000000000000000000000000000000000..c4199db927e795b6d7d35a39d475ef3087e2dfec
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/alerts.less
@@ -0,0 +1,73 @@
+//
+// Alerts
+// --------------------------------------------------
+
+
+// Base styles
+// -------------------------
+
+.alert {
+  padding: @alert-padding;
+  margin-bottom: @line-height-computed;
+  border: 1px solid transparent;
+  border-radius: @alert-border-radius;
+
+  // Headings for larger alerts
+  h4 {
+    margin-top: 0;
+    // Specified for the h4 to prevent conflicts of changing @headings-color
+    color: inherit;
+  }
+
+  // Provide class for links that match alerts
+  .alert-link {
+    font-weight: @alert-link-font-weight;
+  }
+
+  // Improve alignment and spacing of inner content
+  > p,
+  > ul {
+    margin-bottom: 0;
+  }
+
+  > p + p {
+    margin-top: 5px;
+  }
+}
+
+// Dismissible alerts
+//
+// Expand the right padding and account for the close button's positioning.
+
+.alert-dismissable, // The misspelled .alert-dismissable was deprecated in 3.2.0.
+.alert-dismissible {
+  padding-right: (@alert-padding + 20);
+
+  // Adjust close link position
+  .close {
+    position: relative;
+    top: -2px;
+    right: -21px;
+    color: inherit;
+  }
+}
+
+// Alternate styles
+//
+// Generate contextual modifier classes for colorizing the alert.
+
+.alert-success {
+  .alert-variant(@alert-success-bg; @alert-success-border; @alert-success-text);
+}
+
+.alert-info {
+  .alert-variant(@alert-info-bg; @alert-info-border; @alert-info-text);
+}
+
+.alert-warning {
+  .alert-variant(@alert-warning-bg; @alert-warning-border; @alert-warning-text);
+}
+
+.alert-danger {
+  .alert-variant(@alert-danger-bg; @alert-danger-border; @alert-danger-text);
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/badges.less b/src/main/webapp/vendors/bootstrap/less/badges.less
new file mode 100644
index 0000000000000000000000000000000000000000..6ee16dca413ea6d846ed8dbaf07cf0d7d9724bc9
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/badges.less
@@ -0,0 +1,66 @@
+//
+// Badges
+// --------------------------------------------------
+
+
+// Base class
+.badge {
+  display: inline-block;
+  min-width: 10px;
+  padding: 3px 7px;
+  font-size: @font-size-small;
+  font-weight: @badge-font-weight;
+  color: @badge-color;
+  line-height: @badge-line-height;
+  vertical-align: middle;
+  white-space: nowrap;
+  text-align: center;
+  background-color: @badge-bg;
+  border-radius: @badge-border-radius;
+
+  // Empty badges collapse automatically (not available in IE8)
+  &:empty {
+    display: none;
+  }
+
+  // Quick fix for badges in buttons
+  .btn & {
+    position: relative;
+    top: -1px;
+  }
+
+  .btn-xs &,
+  .btn-group-xs > .btn & {
+    top: 0;
+    padding: 1px 5px;
+  }
+
+  // Hover state, but only for links
+  a& {
+    &:hover,
+    &:focus {
+      color: @badge-link-hover-color;
+      text-decoration: none;
+      cursor: pointer;
+    }
+  }
+
+  // Account for badges in navs
+  .list-group-item.active > &,
+  .nav-pills > .active > a > & {
+    color: @badge-active-color;
+    background-color: @badge-active-bg;
+  }
+
+  .list-group-item > & {
+    float: right;
+  }
+
+  .list-group-item > & + & {
+    margin-right: 5px;
+  }
+
+  .nav-pills > li > a > & {
+    margin-left: 3px;
+  }
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/bootstrap.less b/src/main/webapp/vendors/bootstrap/less/bootstrap.less
new file mode 100644
index 0000000000000000000000000000000000000000..1c0477805fa93fef01ccb5d6ed0ef3bce3bd84df
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/bootstrap.less
@@ -0,0 +1,56 @@
+/*!
+ * Bootstrap v3.3.6 (http://getbootstrap.com)
+ * Copyright 2011-2015 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ */
+
+// Core variables and mixins
+@import "variables.less";
+@import "mixins.less";
+
+// Reset and dependencies
+@import "normalize.less";
+@import "print.less";
+@import "glyphicons.less";
+
+// Core CSS
+@import "scaffolding.less";
+@import "type.less";
+@import "code.less";
+@import "grid.less";
+@import "tables.less";
+@import "forms.less";
+@import "buttons.less";
+
+// Components
+@import "component-animations.less";
+@import "dropdowns.less";
+@import "button-groups.less";
+@import "input-groups.less";
+@import "navs.less";
+@import "navbar.less";
+@import "breadcrumbs.less";
+@import "pagination.less";
+@import "pager.less";
+@import "labels.less";
+@import "badges.less";
+@import "jumbotron.less";
+@import "thumbnails.less";
+@import "alerts.less";
+@import "progress-bars.less";
+@import "media.less";
+@import "list-group.less";
+@import "panels.less";
+@import "responsive-embed.less";
+@import "wells.less";
+@import "close.less";
+
+// Components w/ JavaScript
+@import "modals.less";
+@import "tooltip.less";
+@import "popovers.less";
+@import "carousel.less";
+
+// Utility classes
+@import "utilities.less";
+@import "responsive-utilities.less";
diff --git a/src/main/webapp/vendors/bootstrap/less/breadcrumbs.less b/src/main/webapp/vendors/bootstrap/less/breadcrumbs.less
new file mode 100644
index 0000000000000000000000000000000000000000..cb01d503fbe5f7615e53c989bbee20c07c86e7ef
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/breadcrumbs.less
@@ -0,0 +1,26 @@
+//
+// Breadcrumbs
+// --------------------------------------------------
+
+
+.breadcrumb {
+  padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal;
+  margin-bottom: @line-height-computed;
+  list-style: none;
+  background-color: @breadcrumb-bg;
+  border-radius: @border-radius-base;
+
+  > li {
+    display: inline-block;
+
+    + li:before {
+      content: "@{breadcrumb-separator}\00a0"; // Unicode space added since inline-block means non-collapsing white-space
+      padding: 0 5px;
+      color: @breadcrumb-color;
+    }
+  }
+
+  > .active {
+    color: @breadcrumb-active-color;
+  }
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/button-groups.less b/src/main/webapp/vendors/bootstrap/less/button-groups.less
new file mode 100644
index 0000000000000000000000000000000000000000..293245a6503a02498dc2eab8765612fe3414d1bf
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/button-groups.less
@@ -0,0 +1,244 @@
+//
+// Button groups
+// --------------------------------------------------
+
+// Make the div behave like a button
+.btn-group,
+.btn-group-vertical {
+  position: relative;
+  display: inline-block;
+  vertical-align: middle; // match .btn alignment given font-size hack above
+  > .btn {
+    position: relative;
+    float: left;
+    // Bring the "active" button to the front
+    &:hover,
+    &:focus,
+    &:active,
+    &.active {
+      z-index: 2;
+    }
+  }
+}
+
+// Prevent double borders when buttons are next to each other
+.btn-group {
+  .btn + .btn,
+  .btn + .btn-group,
+  .btn-group + .btn,
+  .btn-group + .btn-group {
+    margin-left: -1px;
+  }
+}
+
+// Optional: Group multiple button groups together for a toolbar
+.btn-toolbar {
+  margin-left: -5px; // Offset the first child's margin
+  &:extend(.clearfix all);
+
+  .btn,
+  .btn-group,
+  .input-group {
+    float: left;
+  }
+  > .btn,
+  > .btn-group,
+  > .input-group {
+    margin-left: 5px;
+  }
+}
+
+.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
+  border-radius: 0;
+}
+
+// Set corners individual because sometimes a single button can be in a .btn-group and we need :first-child and :last-child to both match
+.btn-group > .btn:first-child {
+  margin-left: 0;
+  &:not(:last-child):not(.dropdown-toggle) {
+    .border-right-radius(0);
+  }
+}
+// Need .dropdown-toggle since :last-child doesn't apply given a .dropdown-menu immediately after it
+.btn-group > .btn:last-child:not(:first-child),
+.btn-group > .dropdown-toggle:not(:first-child) {
+  .border-left-radius(0);
+}
+
+// Custom edits for including btn-groups within btn-groups (useful for including dropdown buttons within a btn-group)
+.btn-group > .btn-group {
+  float: left;
+}
+.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
+  border-radius: 0;
+}
+.btn-group > .btn-group:first-child:not(:last-child) {
+  > .btn:last-child,
+  > .dropdown-toggle {
+    .border-right-radius(0);
+  }
+}
+.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
+  .border-left-radius(0);
+}
+
+// On active and open, don't show outline
+.btn-group .dropdown-toggle:active,
+.btn-group.open .dropdown-toggle {
+  outline: 0;
+}
+
+
+// Sizing
+//
+// Remix the default button sizing classes into new ones for easier manipulation.
+
+.btn-group-xs > .btn { &:extend(.btn-xs); }
+.btn-group-sm > .btn { &:extend(.btn-sm); }
+.btn-group-lg > .btn { &:extend(.btn-lg); }
+
+
+// Split button dropdowns
+// ----------------------
+
+// Give the line between buttons some depth
+.btn-group > .btn + .dropdown-toggle {
+  padding-left: 8px;
+  padding-right: 8px;
+}
+.btn-group > .btn-lg + .dropdown-toggle {
+  padding-left: 12px;
+  padding-right: 12px;
+}
+
+// The clickable button for toggling the menu
+// Remove the gradient and set the same inset shadow as the :active state
+.btn-group.open .dropdown-toggle {
+  .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));
+
+  // Show no shadow for `.btn-link` since it has no other button styles.
+  &.btn-link {
+    .box-shadow(none);
+  }
+}
+
+
+// Reposition the caret
+.btn .caret {
+  margin-left: 0;
+}
+// Carets in other button sizes
+.btn-lg .caret {
+  border-width: @caret-width-large @caret-width-large 0;
+  border-bottom-width: 0;
+}
+// Upside down carets for .dropup
+.dropup .btn-lg .caret {
+  border-width: 0 @caret-width-large @caret-width-large;
+}
+
+
+// Vertical button groups
+// ----------------------
+
+.btn-group-vertical {
+  > .btn,
+  > .btn-group,
+  > .btn-group > .btn {
+    display: block;
+    float: none;
+    width: 100%;
+    max-width: 100%;
+  }
+
+  // Clear floats so dropdown menus can be properly placed
+  > .btn-group {
+    &:extend(.clearfix all);
+    > .btn {
+      float: none;
+    }
+  }
+
+  > .btn + .btn,
+  > .btn + .btn-group,
+  > .btn-group + .btn,
+  > .btn-group + .btn-group {
+    margin-top: -1px;
+    margin-left: 0;
+  }
+}
+
+.btn-group-vertical > .btn {
+  &:not(:first-child):not(:last-child) {
+    border-radius: 0;
+  }
+  &:first-child:not(:last-child) {
+    .border-top-radius(@btn-border-radius-base);
+    .border-bottom-radius(0);
+  }
+  &:last-child:not(:first-child) {
+    .border-top-radius(0);
+    .border-bottom-radius(@btn-border-radius-base);
+  }
+}
+.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
+  border-radius: 0;
+}
+.btn-group-vertical > .btn-group:first-child:not(:last-child) {
+  > .btn:last-child,
+  > .dropdown-toggle {
+    .border-bottom-radius(0);
+  }
+}
+.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
+  .border-top-radius(0);
+}
+
+
+// Justified button groups
+// ----------------------
+
+.btn-group-justified {
+  display: table;
+  width: 100%;
+  table-layout: fixed;
+  border-collapse: separate;
+  > .btn,
+  > .btn-group {
+    float: none;
+    display: table-cell;
+    width: 1%;
+  }
+  > .btn-group .btn {
+    width: 100%;
+  }
+
+  > .btn-group .dropdown-menu {
+    left: auto;
+  }
+}
+
+
+// Checkbox and radio options
+//
+// In order to support the browser's form validation feedback, powered by the
+// `required` attribute, we have to "hide" the inputs via `clip`. We cannot use
+// `display: none;` or `visibility: hidden;` as that also hides the popover.
+// Simply visually hiding the inputs via `opacity` would leave them clickable in
+// certain cases which is prevented by using `clip` and `pointer-events`.
+// This way, we ensure a DOM element is visible to position the popover from.
+//
+// See https://github.com/twbs/bootstrap/pull/12794 and
+// https://github.com/twbs/bootstrap/pull/14559 for more information.
+
+[data-toggle="buttons"] {
+  > .btn,
+  > .btn-group > .btn {
+    input[type="radio"],
+    input[type="checkbox"] {
+      position: absolute;
+      clip: rect(0,0,0,0);
+      pointer-events: none;
+    }
+  }
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/buttons.less b/src/main/webapp/vendors/bootstrap/less/buttons.less
new file mode 100644
index 0000000000000000000000000000000000000000..9cbb8f416faf2b53a56c358558a9c954ba28ab87
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/buttons.less
@@ -0,0 +1,166 @@
+//
+// Buttons
+// --------------------------------------------------
+
+
+// Base styles
+// --------------------------------------------------
+
+.btn {
+  display: inline-block;
+  margin-bottom: 0; // For input.btn
+  font-weight: @btn-font-weight;
+  text-align: center;
+  vertical-align: middle;
+  touch-action: manipulation;
+  cursor: pointer;
+  background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214
+  border: 1px solid transparent;
+  white-space: nowrap;
+  .button-size(@padding-base-vertical; @padding-base-horizontal; @font-size-base; @line-height-base; @btn-border-radius-base);
+  .user-select(none);
+
+  &,
+  &:active,
+  &.active {
+    &:focus,
+    &.focus {
+      .tab-focus();
+    }
+  }
+
+  &:hover,
+  &:focus,
+  &.focus {
+    color: @btn-default-color;
+    text-decoration: none;
+  }
+
+  &:active,
+  &.active {
+    outline: 0;
+    background-image: none;
+    .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));
+  }
+
+  &.disabled,
+  &[disabled],
+  fieldset[disabled] & {
+    cursor: @cursor-disabled;
+    .opacity(.65);
+    .box-shadow(none);
+  }
+
+  a& {
+    &.disabled,
+    fieldset[disabled] & {
+      pointer-events: none; // Future-proof disabling of clicks on `<a>` elements
+    }
+  }
+}
+
+
+// Alternate buttons
+// --------------------------------------------------
+
+.btn-default {
+  .button-variant(@btn-default-color; @btn-default-bg; @btn-default-border);
+}
+.btn-primary {
+  .button-variant(@btn-primary-color; @btn-primary-bg; @btn-primary-border);
+}
+// Success appears as green
+.btn-success {
+  .button-variant(@btn-success-color; @btn-success-bg; @btn-success-border);
+}
+// Info appears as blue-green
+.btn-info {
+  .button-variant(@btn-info-color; @btn-info-bg; @btn-info-border);
+}
+// Warning appears as orange
+.btn-warning {
+  .button-variant(@btn-warning-color; @btn-warning-bg; @btn-warning-border);
+}
+// Danger and error appear as red
+.btn-danger {
+  .button-variant(@btn-danger-color; @btn-danger-bg; @btn-danger-border);
+}
+
+
+// Link buttons
+// -------------------------
+
+// Make a button look and behave like a link
+.btn-link {
+  color: @link-color;
+  font-weight: normal;
+  border-radius: 0;
+
+  &,
+  &:active,
+  &.active,
+  &[disabled],
+  fieldset[disabled] & {
+    background-color: transparent;
+    .box-shadow(none);
+  }
+  &,
+  &:hover,
+  &:focus,
+  &:active {
+    border-color: transparent;
+  }
+  &:hover,
+  &:focus {
+    color: @link-hover-color;
+    text-decoration: @link-hover-decoration;
+    background-color: transparent;
+  }
+  &[disabled],
+  fieldset[disabled] & {
+    &:hover,
+    &:focus {
+      color: @btn-link-disabled-color;
+      text-decoration: none;
+    }
+  }
+}
+
+
+// Button Sizes
+// --------------------------------------------------
+
+.btn-lg {
+  // line-height: ensure even-numbered height of button next to large input
+  .button-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @btn-border-radius-large);
+}
+.btn-sm {
+  // line-height: ensure proper height of button next to small input
+  .button-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @btn-border-radius-small);
+}
+.btn-xs {
+  .button-size(@padding-xs-vertical; @padding-xs-horizontal; @font-size-small; @line-height-small; @btn-border-radius-small);
+}
+
+
+// Block button
+// --------------------------------------------------
+
+.btn-block {
+  display: block;
+  width: 100%;
+}
+
+// Vertically space out multiple block buttons
+.btn-block + .btn-block {
+  margin-top: 5px;
+}
+
+// Specificity overrides
+input[type="submit"],
+input[type="reset"],
+input[type="button"] {
+  &.btn-block {
+    width: 100%;
+  }
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/carousel.less b/src/main/webapp/vendors/bootstrap/less/carousel.less
new file mode 100644
index 0000000000000000000000000000000000000000..252011e9e250811e000f2067d88d04ba34d6e80c
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/carousel.less
@@ -0,0 +1,270 @@
+//
+// Carousel
+// --------------------------------------------------
+
+
+// Wrapper for the slide container and indicators
+.carousel {
+  position: relative;
+}
+
+.carousel-inner {
+  position: relative;
+  overflow: hidden;
+  width: 100%;
+
+  > .item {
+    display: none;
+    position: relative;
+    .transition(.6s ease-in-out left);
+
+    // Account for jankitude on images
+    > img,
+    > a > img {
+      &:extend(.img-responsive);
+      line-height: 1;
+    }
+
+    // WebKit CSS3 transforms for supported devices
+    @media all and (transform-3d), (-webkit-transform-3d) {
+      .transition-transform(~'0.6s ease-in-out');
+      .backface-visibility(~'hidden');
+      .perspective(1000px);
+
+      &.next,
+      &.active.right {
+        .translate3d(100%, 0, 0);
+        left: 0;
+      }
+      &.prev,
+      &.active.left {
+        .translate3d(-100%, 0, 0);
+        left: 0;
+      }
+      &.next.left,
+      &.prev.right,
+      &.active {
+        .translate3d(0, 0, 0);
+        left: 0;
+      }
+    }
+  }
+
+  > .active,
+  > .next,
+  > .prev {
+    display: block;
+  }
+
+  > .active {
+    left: 0;
+  }
+
+  > .next,
+  > .prev {
+    position: absolute;
+    top: 0;
+    width: 100%;
+  }
+
+  > .next {
+    left: 100%;
+  }
+  > .prev {
+    left: -100%;
+  }
+  > .next.left,
+  > .prev.right {
+    left: 0;
+  }
+
+  > .active.left {
+    left: -100%;
+  }
+  > .active.right {
+    left: 100%;
+  }
+
+}
+
+// Left/right controls for nav
+// ---------------------------
+
+.carousel-control {
+  position: absolute;
+  top: 0;
+  left: 0;
+  bottom: 0;
+  width: @carousel-control-width;
+  .opacity(@carousel-control-opacity);
+  font-size: @carousel-control-font-size;
+  color: @carousel-control-color;
+  text-align: center;
+  text-shadow: @carousel-text-shadow;
+  background-color: rgba(0, 0, 0, 0); // Fix IE9 click-thru bug
+  // We can't have this transition here because WebKit cancels the carousel
+  // animation if you trip this while in the middle of another animation.
+
+  // Set gradients for backgrounds
+  &.left {
+    #gradient > .horizontal(@start-color: rgba(0,0,0,.5); @end-color: rgba(0,0,0,.0001));
+  }
+  &.right {
+    left: auto;
+    right: 0;
+    #gradient > .horizontal(@start-color: rgba(0,0,0,.0001); @end-color: rgba(0,0,0,.5));
+  }
+
+  // Hover/focus state
+  &:hover,
+  &:focus {
+    outline: 0;
+    color: @carousel-control-color;
+    text-decoration: none;
+    .opacity(.9);
+  }
+
+  // Toggles
+  .icon-prev,
+  .icon-next,
+  .glyphicon-chevron-left,
+  .glyphicon-chevron-right {
+    position: absolute;
+    top: 50%;
+    margin-top: -10px;
+    z-index: 5;
+    display: inline-block;
+  }
+  .icon-prev,
+  .glyphicon-chevron-left {
+    left: 50%;
+    margin-left: -10px;
+  }
+  .icon-next,
+  .glyphicon-chevron-right {
+    right: 50%;
+    margin-right: -10px;
+  }
+  .icon-prev,
+  .icon-next {
+    width:  20px;
+    height: 20px;
+    line-height: 1;
+    font-family: serif;
+  }
+
+
+  .icon-prev {
+    &:before {
+      content: '\2039';// SINGLE LEFT-POINTING ANGLE QUOTATION MARK (U+2039)
+    }
+  }
+  .icon-next {
+    &:before {
+      content: '\203a';// SINGLE RIGHT-POINTING ANGLE QUOTATION MARK (U+203A)
+    }
+  }
+}
+
+// Optional indicator pips
+//
+// Add an unordered list with the following class and add a list item for each
+// slide your carousel holds.
+
+.carousel-indicators {
+  position: absolute;
+  bottom: 10px;
+  left: 50%;
+  z-index: 15;
+  width: 60%;
+  margin-left: -30%;
+  padding-left: 0;
+  list-style: none;
+  text-align: center;
+
+  li {
+    display: inline-block;
+    width:  10px;
+    height: 10px;
+    margin: 1px;
+    text-indent: -999px;
+    border: 1px solid @carousel-indicator-border-color;
+    border-radius: 10px;
+    cursor: pointer;
+
+    // IE8-9 hack for event handling
+    //
+    // Internet Explorer 8-9 does not support clicks on elements without a set
+    // `background-color`. We cannot use `filter` since that's not viewed as a
+    // background color by the browser. Thus, a hack is needed.
+    // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Internet_Explorer
+    //
+    // For IE8, we set solid black as it doesn't support `rgba()`. For IE9, we
+    // set alpha transparency for the best results possible.
+    background-color: #000 \9; // IE8
+    background-color: rgba(0,0,0,0); // IE9
+  }
+  .active {
+    margin: 0;
+    width:  12px;
+    height: 12px;
+    background-color: @carousel-indicator-active-bg;
+  }
+}
+
+// Optional captions
+// -----------------------------
+// Hidden by default for smaller viewports
+.carousel-caption {
+  position: absolute;
+  left: 15%;
+  right: 15%;
+  bottom: 20px;
+  z-index: 10;
+  padding-top: 20px;
+  padding-bottom: 20px;
+  color: @carousel-caption-color;
+  text-align: center;
+  text-shadow: @carousel-text-shadow;
+  & .btn {
+    text-shadow: none; // No shadow for button elements in carousel-caption
+  }
+}
+
+
+// Scale up controls for tablets and up
+@media screen and (min-width: @screen-sm-min) {
+
+  // Scale up the controls a smidge
+  .carousel-control {
+    .glyphicon-chevron-left,
+    .glyphicon-chevron-right,
+    .icon-prev,
+    .icon-next {
+      width: (@carousel-control-font-size * 1.5);
+      height: (@carousel-control-font-size * 1.5);
+      margin-top: (@carousel-control-font-size / -2);
+      font-size: (@carousel-control-font-size * 1.5);
+    }
+    .glyphicon-chevron-left,
+    .icon-prev {
+      margin-left: (@carousel-control-font-size / -2);
+    }
+    .glyphicon-chevron-right,
+    .icon-next {
+      margin-right: (@carousel-control-font-size / -2);
+    }
+  }
+
+  // Show and left align the captions
+  .carousel-caption {
+    left: 20%;
+    right: 20%;
+    padding-bottom: 30px;
+  }
+
+  // Move up the indicators
+  .carousel-indicators {
+    bottom: 20px;
+  }
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/close.less b/src/main/webapp/vendors/bootstrap/less/close.less
new file mode 100644
index 0000000000000000000000000000000000000000..6d5bfe087aed3342270b1de9d70d034c474a3779
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/close.less
@@ -0,0 +1,34 @@
+//
+// Close icons
+// --------------------------------------------------
+
+
+.close {
+  float: right;
+  font-size: (@font-size-base * 1.5);
+  font-weight: @close-font-weight;
+  line-height: 1;
+  color: @close-color;
+  text-shadow: @close-text-shadow;
+  .opacity(.2);
+
+  &:hover,
+  &:focus {
+    color: @close-color;
+    text-decoration: none;
+    cursor: pointer;
+    .opacity(.5);
+  }
+
+  // Additional properties for button version
+  // iOS requires the button element instead of an anchor tag.
+  // If you want the anchor version, it requires `href="#"`.
+  // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile
+  button& {
+    padding: 0;
+    cursor: pointer;
+    background: transparent;
+    border: 0;
+    -webkit-appearance: none;
+  }
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/code.less b/src/main/webapp/vendors/bootstrap/less/code.less
new file mode 100644
index 0000000000000000000000000000000000000000..a08b4d48c4c8715dac93a5422f0d340ae9cc6bff
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/code.less
@@ -0,0 +1,69 @@
+//
+// Code (inline and block)
+// --------------------------------------------------
+
+
+// Inline and block code styles
+code,
+kbd,
+pre,
+samp {
+  font-family: @font-family-monospace;
+}
+
+// Inline code
+code {
+  padding: 2px 4px;
+  font-size: 90%;
+  color: @code-color;
+  background-color: @code-bg;
+  border-radius: @border-radius-base;
+}
+
+// User input typically entered via keyboard
+kbd {
+  padding: 2px 4px;
+  font-size: 90%;
+  color: @kbd-color;
+  background-color: @kbd-bg;
+  border-radius: @border-radius-small;
+  box-shadow: inset 0 -1px 0 rgba(0,0,0,.25);
+
+  kbd {
+    padding: 0;
+    font-size: 100%;
+    font-weight: bold;
+    box-shadow: none;
+  }
+}
+
+// Blocks of code
+pre {
+  display: block;
+  padding: ((@line-height-computed - 1) / 2);
+  margin: 0 0 (@line-height-computed / 2);
+  font-size: (@font-size-base - 1); // 14px to 13px
+  line-height: @line-height-base;
+  word-break: break-all;
+  word-wrap: break-word;
+  color: @pre-color;
+  background-color: @pre-bg;
+  border: 1px solid @pre-border-color;
+  border-radius: @border-radius-base;
+
+  // Account for some code outputs that place code tags in pre tags
+  code {
+    padding: 0;
+    font-size: inherit;
+    color: inherit;
+    white-space: pre-wrap;
+    background-color: transparent;
+    border-radius: 0;
+  }
+}
+
+// Enable scrollable blocks of code
+.pre-scrollable {
+  max-height: @pre-scrollable-max-height;
+  overflow-y: scroll;
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/component-animations.less b/src/main/webapp/vendors/bootstrap/less/component-animations.less
new file mode 100644
index 0000000000000000000000000000000000000000..0bcee910ac5f2c249cd6280d1e69fd03d178b24e
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/component-animations.less
@@ -0,0 +1,33 @@
+//
+// Component animations
+// --------------------------------------------------
+
+// Heads up!
+//
+// We don't use the `.opacity()` mixin here since it causes a bug with text
+// fields in IE7-8. Source: https://github.com/twbs/bootstrap/pull/3552.
+
+.fade {
+  opacity: 0;
+  .transition(opacity .15s linear);
+  &.in {
+    opacity: 1;
+  }
+}
+
+.collapse {
+  display: none;
+
+  &.in      { display: block; }
+  tr&.in    { display: table-row; }
+  tbody&.in { display: table-row-group; }
+}
+
+.collapsing {
+  position: relative;
+  height: 0;
+  overflow: hidden;
+  .transition-property(~"height, visibility");
+  .transition-duration(.35s);
+  .transition-timing-function(ease);
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/dropdowns.less b/src/main/webapp/vendors/bootstrap/less/dropdowns.less
new file mode 100644
index 0000000000000000000000000000000000000000..f6876c1a9b2a8d7fb3574d090248f4762139c0c2
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/dropdowns.less
@@ -0,0 +1,216 @@
+//
+// Dropdown menus
+// --------------------------------------------------
+
+
+// Dropdown arrow/caret
+.caret {
+  display: inline-block;
+  width: 0;
+  height: 0;
+  margin-left: 2px;
+  vertical-align: middle;
+  border-top:   @caret-width-base dashed;
+  border-top:   @caret-width-base solid ~"\9"; // IE8
+  border-right: @caret-width-base solid transparent;
+  border-left:  @caret-width-base solid transparent;
+}
+
+// The dropdown wrapper (div)
+.dropup,
+.dropdown {
+  position: relative;
+}
+
+// Prevent the focus on the dropdown toggle when closing dropdowns
+.dropdown-toggle:focus {
+  outline: 0;
+}
+
+// The dropdown menu (ul)
+.dropdown-menu {
+  position: absolute;
+  top: 100%;
+  left: 0;
+  z-index: @zindex-dropdown;
+  display: none; // none by default, but block on "open" of the menu
+  float: left;
+  min-width: 160px;
+  padding: 5px 0;
+  margin: 2px 0 0; // override default ul
+  list-style: none;
+  font-size: @font-size-base;
+  text-align: left; // Ensures proper alignment if parent has it changed (e.g., modal footer)
+  background-color: @dropdown-bg;
+  border: 1px solid @dropdown-fallback-border; // IE8 fallback
+  border: 1px solid @dropdown-border;
+  border-radius: @border-radius-base;
+  .box-shadow(0 6px 12px rgba(0,0,0,.175));
+  background-clip: padding-box;
+
+  // Aligns the dropdown menu to right
+  //
+  // Deprecated as of 3.1.0 in favor of `.dropdown-menu-[dir]`
+  &.pull-right {
+    right: 0;
+    left: auto;
+  }
+
+  // Dividers (basically an hr) within the dropdown
+  .divider {
+    .nav-divider(@dropdown-divider-bg);
+  }
+
+  // Links within the dropdown menu
+  > li > a {
+    display: block;
+    padding: 3px 20px;
+    clear: both;
+    font-weight: normal;
+    line-height: @line-height-base;
+    color: @dropdown-link-color;
+    white-space: nowrap; // prevent links from randomly breaking onto new lines
+  }
+}
+
+// Hover/Focus state
+.dropdown-menu > li > a {
+  &:hover,
+  &:focus {
+    text-decoration: none;
+    color: @dropdown-link-hover-color;
+    background-color: @dropdown-link-hover-bg;
+  }
+}
+
+// Active state
+.dropdown-menu > .active > a {
+  &,
+  &:hover,
+  &:focus {
+    color: @dropdown-link-active-color;
+    text-decoration: none;
+    outline: 0;
+    background-color: @dropdown-link-active-bg;
+  }
+}
+
+// Disabled state
+//
+// Gray out text and ensure the hover/focus state remains gray
+
+.dropdown-menu > .disabled > a {
+  &,
+  &:hover,
+  &:focus {
+    color: @dropdown-link-disabled-color;
+  }
+
+  // Nuke hover/focus effects
+  &:hover,
+  &:focus {
+    text-decoration: none;
+    background-color: transparent;
+    background-image: none; // Remove CSS gradient
+    .reset-filter();
+    cursor: @cursor-disabled;
+  }
+}
+
+// Open state for the dropdown
+.open {
+  // Show the menu
+  > .dropdown-menu {
+    display: block;
+  }
+
+  // Remove the outline when :focus is triggered
+  > a {
+    outline: 0;
+  }
+}
+
+// Menu positioning
+//
+// Add extra class to `.dropdown-menu` to flip the alignment of the dropdown
+// menu with the parent.
+.dropdown-menu-right {
+  left: auto; // Reset the default from `.dropdown-menu`
+  right: 0;
+}
+// With v3, we enabled auto-flipping if you have a dropdown within a right
+// aligned nav component. To enable the undoing of that, we provide an override
+// to restore the default dropdown menu alignment.
+//
+// This is only for left-aligning a dropdown menu within a `.navbar-right` or
+// `.pull-right` nav component.
+.dropdown-menu-left {
+  left: 0;
+  right: auto;
+}
+
+// Dropdown section headers
+.dropdown-header {
+  display: block;
+  padding: 3px 20px;
+  font-size: @font-size-small;
+  line-height: @line-height-base;
+  color: @dropdown-header-color;
+  white-space: nowrap; // as with > li > a
+}
+
+// Backdrop to catch body clicks on mobile, etc.
+.dropdown-backdrop {
+  position: fixed;
+  left: 0;
+  right: 0;
+  bottom: 0;
+  top: 0;
+  z-index: (@zindex-dropdown - 10);
+}
+
+// Right aligned dropdowns
+.pull-right > .dropdown-menu {
+  right: 0;
+  left: auto;
+}
+
+// Allow for dropdowns to go bottom up (aka, dropup-menu)
+//
+// Just add .dropup after the standard .dropdown class and you're set, bro.
+// TODO: abstract this so that the navbar fixed styles are not placed here?
+
+.dropup,
+.navbar-fixed-bottom .dropdown {
+  // Reverse the caret
+  .caret {
+    border-top: 0;
+    border-bottom: @caret-width-base dashed;
+    border-bottom: @caret-width-base solid ~"\9"; // IE8
+    content: "";
+  }
+  // Different positioning for bottom up menu
+  .dropdown-menu {
+    top: auto;
+    bottom: 100%;
+    margin-bottom: 2px;
+  }
+}
+
+
+// Component alignment
+//
+// Reiterate per navbar.less and the modified component alignment there.
+
+@media (min-width: @grid-float-breakpoint) {
+  .navbar-right {
+    .dropdown-menu {
+      .dropdown-menu-right();
+    }
+    // Necessary for overrides of the default right aligned menu.
+    // Will remove come v4 in all likelihood.
+    .dropdown-menu-left {
+      .dropdown-menu-left();
+    }
+  }
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/forms.less b/src/main/webapp/vendors/bootstrap/less/forms.less
new file mode 100644
index 0000000000000000000000000000000000000000..e8b071a138ea294d2ff35ad0e8a92903a21ea190
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/forms.less
@@ -0,0 +1,613 @@
+//
+// Forms
+// --------------------------------------------------
+
+
+// Normalize non-controls
+//
+// Restyle and baseline non-control form elements.
+
+fieldset {
+  padding: 0;
+  margin: 0;
+  border: 0;
+  // Chrome and Firefox set a `min-width: min-content;` on fieldsets,
+  // so we reset that to ensure it behaves more like a standard block element.
+  // See https://github.com/twbs/bootstrap/issues/12359.
+  min-width: 0;
+}
+
+legend {
+  display: block;
+  width: 100%;
+  padding: 0;
+  margin-bottom: @line-height-computed;
+  font-size: (@font-size-base * 1.5);
+  line-height: inherit;
+  color: @legend-color;
+  border: 0;
+  border-bottom: 1px solid @legend-border-color;
+}
+
+label {
+  display: inline-block;
+  max-width: 100%; // Force IE8 to wrap long content (see https://github.com/twbs/bootstrap/issues/13141)
+  margin-bottom: 5px;
+  font-weight: bold;
+}
+
+
+// Normalize form controls
+//
+// While most of our form styles require extra classes, some basic normalization
+// is required to ensure optimum display with or without those classes to better
+// address browser inconsistencies.
+
+// Override content-box in Normalize (* isn't specific enough)
+input[type="search"] {
+  .box-sizing(border-box);
+}
+
+// Position radios and checkboxes better
+input[type="radio"],
+input[type="checkbox"] {
+  margin: 4px 0 0;
+  margin-top: 1px \9; // IE8-9
+  line-height: normal;
+}
+
+input[type="file"] {
+  display: block;
+}
+
+// Make range inputs behave like textual form controls
+input[type="range"] {
+  display: block;
+  width: 100%;
+}
+
+// Make multiple select elements height not fixed
+select[multiple],
+select[size] {
+  height: auto;
+}
+
+// Focus for file, radio, and checkbox
+input[type="file"]:focus,
+input[type="radio"]:focus,
+input[type="checkbox"]:focus {
+  .tab-focus();
+}
+
+// Adjust output element
+output {
+  display: block;
+  padding-top: (@padding-base-vertical + 1);
+  font-size: @font-size-base;
+  line-height: @line-height-base;
+  color: @input-color;
+}
+
+
+// Common form controls
+//
+// Shared size and type resets for form controls. Apply `.form-control` to any
+// of the following form controls:
+//
+// select
+// textarea
+// input[type="text"]
+// input[type="password"]
+// input[type="datetime"]
+// input[type="datetime-local"]
+// input[type="date"]
+// input[type="month"]
+// input[type="time"]
+// input[type="week"]
+// input[type="number"]
+// input[type="email"]
+// input[type="url"]
+// input[type="search"]
+// input[type="tel"]
+// input[type="color"]
+
+.form-control {
+  display: block;
+  width: 100%;
+  height: @input-height-base; // Make inputs at least the height of their button counterpart (base line-height + padding + border)
+  padding: @padding-base-vertical @padding-base-horizontal;
+  font-size: @font-size-base;
+  line-height: @line-height-base;
+  color: @input-color;
+  background-color: @input-bg;
+  background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214
+  border: 1px solid @input-border;
+  border-radius: @input-border-radius; // Note: This has no effect on <select>s in some browsers, due to the limited stylability of <select>s in CSS.
+  .box-shadow(inset 0 1px 1px rgba(0,0,0,.075));
+  .transition(~"border-color ease-in-out .15s, box-shadow ease-in-out .15s");
+
+  // Customize the `:focus` state to imitate native WebKit styles.
+  .form-control-focus();
+
+  // Placeholder
+  .placeholder();
+
+  // Unstyle the caret on `<select>`s in IE10+.
+  &::-ms-expand {
+    border: 0;
+    background-color: transparent;
+  }
+
+  // Disabled and read-only inputs
+  //
+  // HTML5 says that controls under a fieldset > legend:first-child won't be
+  // disabled if the fieldset is disabled. Due to implementation difficulty, we
+  // don't honor that edge case; we style them as disabled anyway.
+  &[disabled],
+  &[readonly],
+  fieldset[disabled] & {
+    background-color: @input-bg-disabled;
+    opacity: 1; // iOS fix for unreadable disabled content; see https://github.com/twbs/bootstrap/issues/11655
+  }
+
+  &[disabled],
+  fieldset[disabled] & {
+    cursor: @cursor-disabled;
+  }
+
+  // Reset height for `textarea`s
+  textarea& {
+    height: auto;
+  }
+}
+
+
+// Search inputs in iOS
+//
+// This overrides the extra rounded corners on search inputs in iOS so that our
+// `.form-control` class can properly style them. Note that this cannot simply
+// be added to `.form-control` as it's not specific enough. For details, see
+// https://github.com/twbs/bootstrap/issues/11586.
+
+input[type="search"] {
+  -webkit-appearance: none;
+}
+
+
+// Special styles for iOS temporal inputs
+//
+// In Mobile Safari, setting `display: block` on temporal inputs causes the
+// text within the input to become vertically misaligned. As a workaround, we
+// set a pixel line-height that matches the given height of the input, but only
+// for Safari. See https://bugs.webkit.org/show_bug.cgi?id=139848
+//
+// Note that as of 8.3, iOS doesn't support `datetime` or `week`.
+
+@media screen and (-webkit-min-device-pixel-ratio: 0) {
+  input[type="date"],
+  input[type="time"],
+  input[type="datetime-local"],
+  input[type="month"] {
+    &.form-control {
+      line-height: @input-height-base;
+    }
+
+    &.input-sm,
+    .input-group-sm & {
+      line-height: @input-height-small;
+    }
+
+    &.input-lg,
+    .input-group-lg & {
+      line-height: @input-height-large;
+    }
+  }
+}
+
+
+// Form groups
+//
+// Designed to help with the organization and spacing of vertical forms. For
+// horizontal forms, use the predefined grid classes.
+
+.form-group {
+  margin-bottom: @form-group-margin-bottom;
+}
+
+
+// Checkboxes and radios
+//
+// Indent the labels to position radios/checkboxes as hanging controls.
+
+.radio,
+.checkbox {
+  position: relative;
+  display: block;
+  margin-top: 10px;
+  margin-bottom: 10px;
+
+  label {
+    min-height: @line-height-computed; // Ensure the input doesn't jump when there is no text
+    padding-left: 20px;
+    margin-bottom: 0;
+    font-weight: normal;
+    cursor: pointer;
+  }
+}
+.radio input[type="radio"],
+.radio-inline input[type="radio"],
+.checkbox input[type="checkbox"],
+.checkbox-inline input[type="checkbox"] {
+  position: absolute;
+  margin-left: -20px;
+  margin-top: 4px \9;
+}
+
+.radio + .radio,
+.checkbox + .checkbox {
+  margin-top: -5px; // Move up sibling radios or checkboxes for tighter spacing
+}
+
+// Radios and checkboxes on same line
+.radio-inline,
+.checkbox-inline {
+  position: relative;
+  display: inline-block;
+  padding-left: 20px;
+  margin-bottom: 0;
+  vertical-align: middle;
+  font-weight: normal;
+  cursor: pointer;
+}
+.radio-inline + .radio-inline,
+.checkbox-inline + .checkbox-inline {
+  margin-top: 0;
+  margin-left: 10px; // space out consecutive inline controls
+}
+
+// Apply same disabled cursor tweak as for inputs
+// Some special care is needed because <label>s don't inherit their parent's `cursor`.
+//
+// Note: Neither radios nor checkboxes can be readonly.
+input[type="radio"],
+input[type="checkbox"] {
+  &[disabled],
+  &.disabled,
+  fieldset[disabled] & {
+    cursor: @cursor-disabled;
+  }
+}
+// These classes are used directly on <label>s
+.radio-inline,
+.checkbox-inline {
+  &.disabled,
+  fieldset[disabled] & {
+    cursor: @cursor-disabled;
+  }
+}
+// These classes are used on elements with <label> descendants
+.radio,
+.checkbox {
+  &.disabled,
+  fieldset[disabled] & {
+    label {
+      cursor: @cursor-disabled;
+    }
+  }
+}
+
+
+// Static form control text
+//
+// Apply class to a `p` element to make any string of text align with labels in
+// a horizontal form layout.
+
+.form-control-static {
+  // Size it appropriately next to real form controls
+  padding-top: (@padding-base-vertical + 1);
+  padding-bottom: (@padding-base-vertical + 1);
+  // Remove default margin from `p`
+  margin-bottom: 0;
+  min-height: (@line-height-computed + @font-size-base);
+
+  &.input-lg,
+  &.input-sm {
+    padding-left: 0;
+    padding-right: 0;
+  }
+}
+
+
+// Form control sizing
+//
+// Build on `.form-control` with modifier classes to decrease or increase the
+// height and font-size of form controls.
+//
+// The `.form-group-* form-control` variations are sadly duplicated to avoid the
+// issue documented in https://github.com/twbs/bootstrap/issues/15074.
+
+.input-sm {
+  .input-size(@input-height-small; @padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @input-border-radius-small);
+}
+.form-group-sm {
+  .form-control {
+    height: @input-height-small;
+    padding: @padding-small-vertical @padding-small-horizontal;
+    font-size: @font-size-small;
+    line-height: @line-height-small;
+    border-radius: @input-border-radius-small;
+  }
+  select.form-control {
+    height: @input-height-small;
+    line-height: @input-height-small;
+  }
+  textarea.form-control,
+  select[multiple].form-control {
+    height: auto;
+  }
+  .form-control-static {
+    height: @input-height-small;
+    min-height: (@line-height-computed + @font-size-small);
+    padding: (@padding-small-vertical + 1) @padding-small-horizontal;
+    font-size: @font-size-small;
+    line-height: @line-height-small;
+  }
+}
+
+.input-lg {
+  .input-size(@input-height-large; @padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @input-border-radius-large);
+}
+.form-group-lg {
+  .form-control {
+    height: @input-height-large;
+    padding: @padding-large-vertical @padding-large-horizontal;
+    font-size: @font-size-large;
+    line-height: @line-height-large;
+    border-radius: @input-border-radius-large;
+  }
+  select.form-control {
+    height: @input-height-large;
+    line-height: @input-height-large;
+  }
+  textarea.form-control,
+  select[multiple].form-control {
+    height: auto;
+  }
+  .form-control-static {
+    height: @input-height-large;
+    min-height: (@line-height-computed + @font-size-large);
+    padding: (@padding-large-vertical + 1) @padding-large-horizontal;
+    font-size: @font-size-large;
+    line-height: @line-height-large;
+  }
+}
+
+
+// Form control feedback states
+//
+// Apply contextual and semantic states to individual form controls.
+
+.has-feedback {
+  // Enable absolute positioning
+  position: relative;
+
+  // Ensure icons don't overlap text
+  .form-control {
+    padding-right: (@input-height-base * 1.25);
+  }
+}
+// Feedback icon (requires .glyphicon classes)
+.form-control-feedback {
+  position: absolute;
+  top: 0;
+  right: 0;
+  z-index: 2; // Ensure icon is above input groups
+  display: block;
+  width: @input-height-base;
+  height: @input-height-base;
+  line-height: @input-height-base;
+  text-align: center;
+  pointer-events: none;
+}
+.input-lg + .form-control-feedback,
+.input-group-lg + .form-control-feedback,
+.form-group-lg .form-control + .form-control-feedback {
+  width: @input-height-large;
+  height: @input-height-large;
+  line-height: @input-height-large;
+}
+.input-sm + .form-control-feedback,
+.input-group-sm + .form-control-feedback,
+.form-group-sm .form-control + .form-control-feedback {
+  width: @input-height-small;
+  height: @input-height-small;
+  line-height: @input-height-small;
+}
+
+// Feedback states
+.has-success {
+  .form-control-validation(@state-success-text; @state-success-text; @state-success-bg);
+}
+.has-warning {
+  .form-control-validation(@state-warning-text; @state-warning-text; @state-warning-bg);
+}
+.has-error {
+  .form-control-validation(@state-danger-text; @state-danger-text; @state-danger-bg);
+}
+
+// Reposition feedback icon if input has visible label above
+.has-feedback label {
+
+  & ~ .form-control-feedback {
+    top: (@line-height-computed + 5); // Height of the `label` and its margin
+  }
+  &.sr-only ~ .form-control-feedback {
+    top: 0;
+  }
+}
+
+
+// Help text
+//
+// Apply to any element you wish to create light text for placement immediately
+// below a form control. Use for general help, formatting, or instructional text.
+
+.help-block {
+  display: block; // account for any element using help-block
+  margin-top: 5px;
+  margin-bottom: 10px;
+  color: lighten(@text-color, 25%); // lighten the text some for contrast
+}
+
+
+// Inline forms
+//
+// Make forms appear inline(-block) by adding the `.form-inline` class. Inline
+// forms begin stacked on extra small (mobile) devices and then go inline when
+// viewports reach <768px.
+//
+// Requires wrapping inputs and labels with `.form-group` for proper display of
+// default HTML form controls and our custom form controls (e.g., input groups).
+//
+// Heads up! This is mixin-ed into `.navbar-form` in navbars.less.
+
+.form-inline {
+
+  // Kick in the inline
+  @media (min-width: @screen-sm-min) {
+    // Inline-block all the things for "inline"
+    .form-group {
+      display: inline-block;
+      margin-bottom: 0;
+      vertical-align: middle;
+    }
+
+    // In navbar-form, allow folks to *not* use `.form-group`
+    .form-control {
+      display: inline-block;
+      width: auto; // Prevent labels from stacking above inputs in `.form-group`
+      vertical-align: middle;
+    }
+
+    // Make static controls behave like regular ones
+    .form-control-static {
+      display: inline-block;
+    }
+
+    .input-group {
+      display: inline-table;
+      vertical-align: middle;
+
+      .input-group-addon,
+      .input-group-btn,
+      .form-control {
+        width: auto;
+      }
+    }
+
+    // Input groups need that 100% width though
+    .input-group > .form-control {
+      width: 100%;
+    }
+
+    .control-label {
+      margin-bottom: 0;
+      vertical-align: middle;
+    }
+
+    // Remove default margin on radios/checkboxes that were used for stacking, and
+    // then undo the floating of radios and checkboxes to match.
+    .radio,
+    .checkbox {
+      display: inline-block;
+      margin-top: 0;
+      margin-bottom: 0;
+      vertical-align: middle;
+
+      label {
+        padding-left: 0;
+      }
+    }
+    .radio input[type="radio"],
+    .checkbox input[type="checkbox"] {
+      position: relative;
+      margin-left: 0;
+    }
+
+    // Re-override the feedback icon.
+    .has-feedback .form-control-feedback {
+      top: 0;
+    }
+  }
+}
+
+
+// Horizontal forms
+//
+// Horizontal forms are built on grid classes and allow you to create forms with
+// labels on the left and inputs on the right.
+
+.form-horizontal {
+
+  // Consistent vertical alignment of radios and checkboxes
+  //
+  // Labels also get some reset styles, but that is scoped to a media query below.
+  .radio,
+  .checkbox,
+  .radio-inline,
+  .checkbox-inline {
+    margin-top: 0;
+    margin-bottom: 0;
+    padding-top: (@padding-base-vertical + 1); // Default padding plus a border
+  }
+  // Account for padding we're adding to ensure the alignment and of help text
+  // and other content below items
+  .radio,
+  .checkbox {
+    min-height: (@line-height-computed + (@padding-base-vertical + 1));
+  }
+
+  // Make form groups behave like rows
+  .form-group {
+    .make-row();
+  }
+
+  // Reset spacing and right align labels, but scope to media queries so that
+  // labels on narrow viewports stack the same as a default form example.
+  @media (min-width: @screen-sm-min) {
+    .control-label {
+      text-align: right;
+      margin-bottom: 0;
+      padding-top: (@padding-base-vertical + 1); // Default padding plus a border
+    }
+  }
+
+  // Validation states
+  //
+  // Reposition the icon because it's now within a grid column and columns have
+  // `position: relative;` on them. Also accounts for the grid gutter padding.
+  .has-feedback .form-control-feedback {
+    right: floor((@grid-gutter-width / 2));
+  }
+
+  // Form group sizes
+  //
+  // Quick utility class for applying `.input-lg` and `.input-sm` styles to the
+  // inputs and labels within a `.form-group`.
+  .form-group-lg {
+    @media (min-width: @screen-sm-min) {
+      .control-label {
+        padding-top: (@padding-large-vertical + 1);
+        font-size: @font-size-large;
+      }
+    }
+  }
+  .form-group-sm {
+    @media (min-width: @screen-sm-min) {
+      .control-label {
+        padding-top: (@padding-small-vertical + 1);
+        font-size: @font-size-small;
+      }
+    }
+  }
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/glyphicons.less b/src/main/webapp/vendors/bootstrap/less/glyphicons.less
new file mode 100644
index 0000000000000000000000000000000000000000..7bc5852d2c07fa416d11001a136a759199628ab3
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/glyphicons.less
@@ -0,0 +1,305 @@
+//
+// Glyphicons for Bootstrap
+//
+// Since icons are fonts, they can be placed anywhere text is placed and are
+// thus automatically sized to match the surrounding child. To use, create an
+// inline element with the appropriate classes, like so:
+//
+// <a href="#"><span class="glyphicon glyphicon-star"></span> Star</a>
+
+// Import the fonts
+@font-face {
+  font-family: 'Glyphicons Halflings';
+  src: url('@{icon-font-path}@{icon-font-name}.eot');
+  src: url('@{icon-font-path}@{icon-font-name}.eot?#iefix') format('embedded-opentype'),
+       url('@{icon-font-path}@{icon-font-name}.woff2') format('woff2'),
+       url('@{icon-font-path}@{icon-font-name}.woff') format('woff'),
+       url('@{icon-font-path}@{icon-font-name}.ttf') format('truetype'),
+       url('@{icon-font-path}@{icon-font-name}.svg#@{icon-font-svg-id}') format('svg');
+}
+
+// Catchall baseclass
+.glyphicon {
+  position: relative;
+  top: 1px;
+  display: inline-block;
+  font-family: 'Glyphicons Halflings';
+  font-style: normal;
+  font-weight: normal;
+  line-height: 1;
+  -webkit-font-smoothing: antialiased;
+  -moz-osx-font-smoothing: grayscale;
+}
+
+// Individual icons
+.glyphicon-asterisk               { &:before { content: "\002a"; } }
+.glyphicon-plus                   { &:before { content: "\002b"; } }
+.glyphicon-euro,
+.glyphicon-eur                    { &:before { content: "\20ac"; } }
+.glyphicon-minus                  { &:before { content: "\2212"; } }
+.glyphicon-cloud                  { &:before { content: "\2601"; } }
+.glyphicon-envelope               { &:before { content: "\2709"; } }
+.glyphicon-pencil                 { &:before { content: "\270f"; } }
+.glyphicon-glass                  { &:before { content: "\e001"; } }
+.glyphicon-music                  { &:before { content: "\e002"; } }
+.glyphicon-search                 { &:before { content: "\e003"; } }
+.glyphicon-heart                  { &:before { content: "\e005"; } }
+.glyphicon-star                   { &:before { content: "\e006"; } }
+.glyphicon-star-empty             { &:before { content: "\e007"; } }
+.glyphicon-user                   { &:before { content: "\e008"; } }
+.glyphicon-film                   { &:before { content: "\e009"; } }
+.glyphicon-th-large               { &:before { content: "\e010"; } }
+.glyphicon-th                     { &:before { content: "\e011"; } }
+.glyphicon-th-list                { &:before { content: "\e012"; } }
+.glyphicon-ok                     { &:before { content: "\e013"; } }
+.glyphicon-remove                 { &:before { content: "\e014"; } }
+.glyphicon-zoom-in                { &:before { content: "\e015"; } }
+.glyphicon-zoom-out               { &:before { content: "\e016"; } }
+.glyphicon-off                    { &:before { content: "\e017"; } }
+.glyphicon-signal                 { &:before { content: "\e018"; } }
+.glyphicon-cog                    { &:before { content: "\e019"; } }
+.glyphicon-trash                  { &:before { content: "\e020"; } }
+.glyphicon-home                   { &:before { content: "\e021"; } }
+.glyphicon-file                   { &:before { content: "\e022"; } }
+.glyphicon-time                   { &:before { content: "\e023"; } }
+.glyphicon-road                   { &:before { content: "\e024"; } }
+.glyphicon-download-alt           { &:before { content: "\e025"; } }
+.glyphicon-download               { &:before { content: "\e026"; } }
+.glyphicon-upload                 { &:before { content: "\e027"; } }
+.glyphicon-inbox                  { &:before { content: "\e028"; } }
+.glyphicon-play-circle            { &:before { content: "\e029"; } }
+.glyphicon-repeat                 { &:before { content: "\e030"; } }
+.glyphicon-refresh                { &:before { content: "\e031"; } }
+.glyphicon-list-alt               { &:before { content: "\e032"; } }
+.glyphicon-lock                   { &:before { content: "\e033"; } }
+.glyphicon-flag                   { &:before { content: "\e034"; } }
+.glyphicon-headphones             { &:before { content: "\e035"; } }
+.glyphicon-volume-off             { &:before { content: "\e036"; } }
+.glyphicon-volume-down            { &:before { content: "\e037"; } }
+.glyphicon-volume-up              { &:before { content: "\e038"; } }
+.glyphicon-qrcode                 { &:before { content: "\e039"; } }
+.glyphicon-barcode                { &:before { content: "\e040"; } }
+.glyphicon-tag                    { &:before { content: "\e041"; } }
+.glyphicon-tags                   { &:before { content: "\e042"; } }
+.glyphicon-book                   { &:before { content: "\e043"; } }
+.glyphicon-bookmark               { &:before { content: "\e044"; } }
+.glyphicon-print                  { &:before { content: "\e045"; } }
+.glyphicon-camera                 { &:before { content: "\e046"; } }
+.glyphicon-font                   { &:before { content: "\e047"; } }
+.glyphicon-bold                   { &:before { content: "\e048"; } }
+.glyphicon-italic                 { &:before { content: "\e049"; } }
+.glyphicon-text-height            { &:before { content: "\e050"; } }
+.glyphicon-text-width             { &:before { content: "\e051"; } }
+.glyphicon-align-left             { &:before { content: "\e052"; } }
+.glyphicon-align-center           { &:before { content: "\e053"; } }
+.glyphicon-align-right            { &:before { content: "\e054"; } }
+.glyphicon-align-justify          { &:before { content: "\e055"; } }
+.glyphicon-list                   { &:before { content: "\e056"; } }
+.glyphicon-indent-left            { &:before { content: "\e057"; } }
+.glyphicon-indent-right           { &:before { content: "\e058"; } }
+.glyphicon-facetime-video         { &:before { content: "\e059"; } }
+.glyphicon-picture                { &:before { content: "\e060"; } }
+.glyphicon-map-marker             { &:before { content: "\e062"; } }
+.glyphicon-adjust                 { &:before { content: "\e063"; } }
+.glyphicon-tint                   { &:before { content: "\e064"; } }
+.glyphicon-edit                   { &:before { content: "\e065"; } }
+.glyphicon-share                  { &:before { content: "\e066"; } }
+.glyphicon-check                  { &:before { content: "\e067"; } }
+.glyphicon-move                   { &:before { content: "\e068"; } }
+.glyphicon-step-backward          { &:before { content: "\e069"; } }
+.glyphicon-fast-backward          { &:before { content: "\e070"; } }
+.glyphicon-backward               { &:before { content: "\e071"; } }
+.glyphicon-play                   { &:before { content: "\e072"; } }
+.glyphicon-pause                  { &:before { content: "\e073"; } }
+.glyphicon-stop                   { &:before { content: "\e074"; } }
+.glyphicon-forward                { &:before { content: "\e075"; } }
+.glyphicon-fast-forward           { &:before { content: "\e076"; } }
+.glyphicon-step-forward           { &:before { content: "\e077"; } }
+.glyphicon-eject                  { &:before { content: "\e078"; } }
+.glyphicon-chevron-left           { &:before { content: "\e079"; } }
+.glyphicon-chevron-right          { &:before { content: "\e080"; } }
+.glyphicon-plus-sign              { &:before { content: "\e081"; } }
+.glyphicon-minus-sign             { &:before { content: "\e082"; } }
+.glyphicon-remove-sign            { &:before { content: "\e083"; } }
+.glyphicon-ok-sign                { &:before { content: "\e084"; } }
+.glyphicon-question-sign          { &:before { content: "\e085"; } }
+.glyphicon-info-sign              { &:before { content: "\e086"; } }
+.glyphicon-screenshot             { &:before { content: "\e087"; } }
+.glyphicon-remove-circle          { &:before { content: "\e088"; } }
+.glyphicon-ok-circle              { &:before { content: "\e089"; } }
+.glyphicon-ban-circle             { &:before { content: "\e090"; } }
+.glyphicon-arrow-left             { &:before { content: "\e091"; } }
+.glyphicon-arrow-right            { &:before { content: "\e092"; } }
+.glyphicon-arrow-up               { &:before { content: "\e093"; } }
+.glyphicon-arrow-down             { &:before { content: "\e094"; } }
+.glyphicon-share-alt              { &:before { content: "\e095"; } }
+.glyphicon-resize-full            { &:before { content: "\e096"; } }
+.glyphicon-resize-small           { &:before { content: "\e097"; } }
+.glyphicon-exclamation-sign       { &:before { content: "\e101"; } }
+.glyphicon-gift                   { &:before { content: "\e102"; } }
+.glyphicon-leaf                   { &:before { content: "\e103"; } }
+.glyphicon-fire                   { &:before { content: "\e104"; } }
+.glyphicon-eye-open               { &:before { content: "\e105"; } }
+.glyphicon-eye-close              { &:before { content: "\e106"; } }
+.glyphicon-warning-sign           { &:before { content: "\e107"; } }
+.glyphicon-plane                  { &:before { content: "\e108"; } }
+.glyphicon-calendar               { &:before { content: "\e109"; } }
+.glyphicon-random                 { &:before { content: "\e110"; } }
+.glyphicon-comment                { &:before { content: "\e111"; } }
+.glyphicon-magnet                 { &:before { content: "\e112"; } }
+.glyphicon-chevron-up             { &:before { content: "\e113"; } }
+.glyphicon-chevron-down           { &:before { content: "\e114"; } }
+.glyphicon-retweet                { &:before { content: "\e115"; } }
+.glyphicon-shopping-cart          { &:before { content: "\e116"; } }
+.glyphicon-folder-close           { &:before { content: "\e117"; } }
+.glyphicon-folder-open            { &:before { content: "\e118"; } }
+.glyphicon-resize-vertical        { &:before { content: "\e119"; } }
+.glyphicon-resize-horizontal      { &:before { content: "\e120"; } }
+.glyphicon-hdd                    { &:before { content: "\e121"; } }
+.glyphicon-bullhorn               { &:before { content: "\e122"; } }
+.glyphicon-bell                   { &:before { content: "\e123"; } }
+.glyphicon-certificate            { &:before { content: "\e124"; } }
+.glyphicon-thumbs-up              { &:before { content: "\e125"; } }
+.glyphicon-thumbs-down            { &:before { content: "\e126"; } }
+.glyphicon-hand-right             { &:before { content: "\e127"; } }
+.glyphicon-hand-left              { &:before { content: "\e128"; } }
+.glyphicon-hand-up                { &:before { content: "\e129"; } }
+.glyphicon-hand-down              { &:before { content: "\e130"; } }
+.glyphicon-circle-arrow-right     { &:before { content: "\e131"; } }
+.glyphicon-circle-arrow-left      { &:before { content: "\e132"; } }
+.glyphicon-circle-arrow-up        { &:before { content: "\e133"; } }
+.glyphicon-circle-arrow-down      { &:before { content: "\e134"; } }
+.glyphicon-globe                  { &:before { content: "\e135"; } }
+.glyphicon-wrench                 { &:before { content: "\e136"; } }
+.glyphicon-tasks                  { &:before { content: "\e137"; } }
+.glyphicon-filter                 { &:before { content: "\e138"; } }
+.glyphicon-briefcase              { &:before { content: "\e139"; } }
+.glyphicon-fullscreen             { &:before { content: "\e140"; } }
+.glyphicon-dashboard              { &:before { content: "\e141"; } }
+.glyphicon-paperclip              { &:before { content: "\e142"; } }
+.glyphicon-heart-empty            { &:before { content: "\e143"; } }
+.glyphicon-link                   { &:before { content: "\e144"; } }
+.glyphicon-phone                  { &:before { content: "\e145"; } }
+.glyphicon-pushpin                { &:before { content: "\e146"; } }
+.glyphicon-usd                    { &:before { content: "\e148"; } }
+.glyphicon-gbp                    { &:before { content: "\e149"; } }
+.glyphicon-sort                   { &:before { content: "\e150"; } }
+.glyphicon-sort-by-alphabet       { &:before { content: "\e151"; } }
+.glyphicon-sort-by-alphabet-alt   { &:before { content: "\e152"; } }
+.glyphicon-sort-by-order          { &:before { content: "\e153"; } }
+.glyphicon-sort-by-order-alt      { &:before { content: "\e154"; } }
+.glyphicon-sort-by-attributes     { &:before { content: "\e155"; } }
+.glyphicon-sort-by-attributes-alt { &:before { content: "\e156"; } }
+.glyphicon-unchecked              { &:before { content: "\e157"; } }
+.glyphicon-expand                 { &:before { content: "\e158"; } }
+.glyphicon-collapse-down          { &:before { content: "\e159"; } }
+.glyphicon-collapse-up            { &:before { content: "\e160"; } }
+.glyphicon-log-in                 { &:before { content: "\e161"; } }
+.glyphicon-flash                  { &:before { content: "\e162"; } }
+.glyphicon-log-out                { &:before { content: "\e163"; } }
+.glyphicon-new-window             { &:before { content: "\e164"; } }
+.glyphicon-record                 { &:before { content: "\e165"; } }
+.glyphicon-save                   { &:before { content: "\e166"; } }
+.glyphicon-open                   { &:before { content: "\e167"; } }
+.glyphicon-saved                  { &:before { content: "\e168"; } }
+.glyphicon-import                 { &:before { content: "\e169"; } }
+.glyphicon-export                 { &:before { content: "\e170"; } }
+.glyphicon-send                   { &:before { content: "\e171"; } }
+.glyphicon-floppy-disk            { &:before { content: "\e172"; } }
+.glyphicon-floppy-saved           { &:before { content: "\e173"; } }
+.glyphicon-floppy-remove          { &:before { content: "\e174"; } }
+.glyphicon-floppy-save            { &:before { content: "\e175"; } }
+.glyphicon-floppy-open            { &:before { content: "\e176"; } }
+.glyphicon-credit-card            { &:before { content: "\e177"; } }
+.glyphicon-transfer               { &:before { content: "\e178"; } }
+.glyphicon-cutlery                { &:before { content: "\e179"; } }
+.glyphicon-header                 { &:before { content: "\e180"; } }
+.glyphicon-compressed             { &:before { content: "\e181"; } }
+.glyphicon-earphone               { &:before { content: "\e182"; } }
+.glyphicon-phone-alt              { &:before { content: "\e183"; } }
+.glyphicon-tower                  { &:before { content: "\e184"; } }
+.glyphicon-stats                  { &:before { content: "\e185"; } }
+.glyphicon-sd-video               { &:before { content: "\e186"; } }
+.glyphicon-hd-video               { &:before { content: "\e187"; } }
+.glyphicon-subtitles              { &:before { content: "\e188"; } }
+.glyphicon-sound-stereo           { &:before { content: "\e189"; } }
+.glyphicon-sound-dolby            { &:before { content: "\e190"; } }
+.glyphicon-sound-5-1              { &:before { content: "\e191"; } }
+.glyphicon-sound-6-1              { &:before { content: "\e192"; } }
+.glyphicon-sound-7-1              { &:before { content: "\e193"; } }
+.glyphicon-copyright-mark         { &:before { content: "\e194"; } }
+.glyphicon-registration-mark      { &:before { content: "\e195"; } }
+.glyphicon-cloud-download         { &:before { content: "\e197"; } }
+.glyphicon-cloud-upload           { &:before { content: "\e198"; } }
+.glyphicon-tree-conifer           { &:before { content: "\e199"; } }
+.glyphicon-tree-deciduous         { &:before { content: "\e200"; } }
+.glyphicon-cd                     { &:before { content: "\e201"; } }
+.glyphicon-save-file              { &:before { content: "\e202"; } }
+.glyphicon-open-file              { &:before { content: "\e203"; } }
+.glyphicon-level-up               { &:before { content: "\e204"; } }
+.glyphicon-copy                   { &:before { content: "\e205"; } }
+.glyphicon-paste                  { &:before { content: "\e206"; } }
+// The following 2 Glyphicons are omitted for the time being because
+// they currently use Unicode codepoints that are outside the
+// Basic Multilingual Plane (BMP). Older buggy versions of WebKit can't handle
+// non-BMP codepoints in CSS string escapes, and thus can't display these two icons.
+// Notably, the bug affects some older versions of the Android Browser.
+// More info: https://github.com/twbs/bootstrap/issues/10106
+// .glyphicon-door                   { &:before { content: "\1f6aa"; } }
+// .glyphicon-key                    { &:before { content: "\1f511"; } }
+.glyphicon-alert                  { &:before { content: "\e209"; } }
+.glyphicon-equalizer              { &:before { content: "\e210"; } }
+.glyphicon-king                   { &:before { content: "\e211"; } }
+.glyphicon-queen                  { &:before { content: "\e212"; } }
+.glyphicon-pawn                   { &:before { content: "\e213"; } }
+.glyphicon-bishop                 { &:before { content: "\e214"; } }
+.glyphicon-knight                 { &:before { content: "\e215"; } }
+.glyphicon-baby-formula           { &:before { content: "\e216"; } }
+.glyphicon-tent                   { &:before { content: "\26fa"; } }
+.glyphicon-blackboard             { &:before { content: "\e218"; } }
+.glyphicon-bed                    { &:before { content: "\e219"; } }
+.glyphicon-apple                  { &:before { content: "\f8ff"; } }
+.glyphicon-erase                  { &:before { content: "\e221"; } }
+.glyphicon-hourglass              { &:before { content: "\231b"; } }
+.glyphicon-lamp                   { &:before { content: "\e223"; } }
+.glyphicon-duplicate              { &:before { content: "\e224"; } }
+.glyphicon-piggy-bank             { &:before { content: "\e225"; } }
+.glyphicon-scissors               { &:before { content: "\e226"; } }
+.glyphicon-bitcoin                { &:before { content: "\e227"; } }
+.glyphicon-btc                    { &:before { content: "\e227"; } }
+.glyphicon-xbt                    { &:before { content: "\e227"; } }
+.glyphicon-yen                    { &:before { content: "\00a5"; } }
+.glyphicon-jpy                    { &:before { content: "\00a5"; } }
+.glyphicon-ruble                  { &:before { content: "\20bd"; } }
+.glyphicon-rub                    { &:before { content: "\20bd"; } }
+.glyphicon-scale                  { &:before { content: "\e230"; } }
+.glyphicon-ice-lolly              { &:before { content: "\e231"; } }
+.glyphicon-ice-lolly-tasted       { &:before { content: "\e232"; } }
+.glyphicon-education              { &:before { content: "\e233"; } }
+.glyphicon-option-horizontal      { &:before { content: "\e234"; } }
+.glyphicon-option-vertical        { &:before { content: "\e235"; } }
+.glyphicon-menu-hamburger         { &:before { content: "\e236"; } }
+.glyphicon-modal-window           { &:before { content: "\e237"; } }
+.glyphicon-oil                    { &:before { content: "\e238"; } }
+.glyphicon-grain                  { &:before { content: "\e239"; } }
+.glyphicon-sunglasses             { &:before { content: "\e240"; } }
+.glyphicon-text-size              { &:before { content: "\e241"; } }
+.glyphicon-text-color             { &:before { content: "\e242"; } }
+.glyphicon-text-background        { &:before { content: "\e243"; } }
+.glyphicon-object-align-top       { &:before { content: "\e244"; } }
+.glyphicon-object-align-bottom    { &:before { content: "\e245"; } }
+.glyphicon-object-align-horizontal{ &:before { content: "\e246"; } }
+.glyphicon-object-align-left      { &:before { content: "\e247"; } }
+.glyphicon-object-align-vertical  { &:before { content: "\e248"; } }
+.glyphicon-object-align-right     { &:before { content: "\e249"; } }
+.glyphicon-triangle-right         { &:before { content: "\e250"; } }
+.glyphicon-triangle-left          { &:before { content: "\e251"; } }
+.glyphicon-triangle-bottom        { &:before { content: "\e252"; } }
+.glyphicon-triangle-top           { &:before { content: "\e253"; } }
+.glyphicon-console                { &:before { content: "\e254"; } }
+.glyphicon-superscript            { &:before { content: "\e255"; } }
+.glyphicon-subscript              { &:before { content: "\e256"; } }
+.glyphicon-menu-left              { &:before { content: "\e257"; } }
+.glyphicon-menu-right             { &:before { content: "\e258"; } }
+.glyphicon-menu-down              { &:before { content: "\e259"; } }
+.glyphicon-menu-up                { &:before { content: "\e260"; } }
diff --git a/src/main/webapp/vendors/bootstrap/less/grid.less b/src/main/webapp/vendors/bootstrap/less/grid.less
new file mode 100644
index 0000000000000000000000000000000000000000..e100655b70e38480e2029a7c945e5984d15c9784
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/grid.less
@@ -0,0 +1,84 @@
+//
+// Grid system
+// --------------------------------------------------
+
+
+// Container widths
+//
+// Set the container width, and override it for fixed navbars in media queries.
+
+.container {
+  .container-fixed();
+
+  @media (min-width: @screen-sm-min) {
+    width: @container-sm;
+  }
+  @media (min-width: @screen-md-min) {
+    width: @container-md;
+  }
+  @media (min-width: @screen-lg-min) {
+    width: @container-lg;
+  }
+}
+
+
+// Fluid container
+//
+// Utilizes the mixin meant for fixed width containers, but without any defined
+// width for fluid, full width layouts.
+
+.container-fluid {
+  .container-fixed();
+}
+
+
+// Row
+//
+// Rows contain and clear the floats of your columns.
+
+.row {
+  .make-row();
+}
+
+
+// Columns
+//
+// Common styles for small and large grid columns
+
+.make-grid-columns();
+
+
+// Extra small grid
+//
+// Columns, offsets, pushes, and pulls for extra small devices like
+// smartphones.
+
+.make-grid(xs);
+
+
+// Small grid
+//
+// Columns, offsets, pushes, and pulls for the small device range, from phones
+// to tablets.
+
+@media (min-width: @screen-sm-min) {
+  .make-grid(sm);
+}
+
+
+// Medium grid
+//
+// Columns, offsets, pushes, and pulls for the desktop device range.
+
+@media (min-width: @screen-md-min) {
+  .make-grid(md);
+}
+
+
+// Large grid
+//
+// Columns, offsets, pushes, and pulls for the large desktop device range.
+
+@media (min-width: @screen-lg-min) {
+  .make-grid(lg);
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/input-groups.less b/src/main/webapp/vendors/bootstrap/less/input-groups.less
new file mode 100644
index 0000000000000000000000000000000000000000..5f73eec40ca9511f86bb390e046e21560dd702e6
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/input-groups.less
@@ -0,0 +1,171 @@
+//
+// Input groups
+// --------------------------------------------------
+
+// Base styles
+// -------------------------
+.input-group {
+  position: relative; // For dropdowns
+  display: table;
+  border-collapse: separate; // prevent input groups from inheriting border styles from table cells when placed within a table
+
+  // Undo padding and float of grid classes
+  &[class*="col-"] {
+    float: none;
+    padding-left: 0;
+    padding-right: 0;
+  }
+
+  .form-control {
+    // Ensure that the input is always above the *appended* addon button for
+    // proper border colors.
+    position: relative;
+    z-index: 2;
+
+    // IE9 fubars the placeholder attribute in text inputs and the arrows on
+    // select elements in input groups. To fix it, we float the input. Details:
+    // https://github.com/twbs/bootstrap/issues/11561#issuecomment-28936855
+    float: left;
+
+    width: 100%;
+    margin-bottom: 0;
+    
+    &:focus {
+      z-index: 3;
+    }
+  }
+}
+
+// Sizing options
+//
+// Remix the default form control sizing classes into new ones for easier
+// manipulation.
+
+.input-group-lg > .form-control,
+.input-group-lg > .input-group-addon,
+.input-group-lg > .input-group-btn > .btn {
+  .input-lg();
+}
+.input-group-sm > .form-control,
+.input-group-sm > .input-group-addon,
+.input-group-sm > .input-group-btn > .btn {
+  .input-sm();
+}
+
+
+// Display as table-cell
+// -------------------------
+.input-group-addon,
+.input-group-btn,
+.input-group .form-control {
+  display: table-cell;
+
+  &:not(:first-child):not(:last-child) {
+    border-radius: 0;
+  }
+}
+// Addon and addon wrapper for buttons
+.input-group-addon,
+.input-group-btn {
+  width: 1%;
+  white-space: nowrap;
+  vertical-align: middle; // Match the inputs
+}
+
+// Text input groups
+// -------------------------
+.input-group-addon {
+  padding: @padding-base-vertical @padding-base-horizontal;
+  font-size: @font-size-base;
+  font-weight: normal;
+  line-height: 1;
+  color: @input-color;
+  text-align: center;
+  background-color: @input-group-addon-bg;
+  border: 1px solid @input-group-addon-border-color;
+  border-radius: @input-border-radius;
+
+  // Sizing
+  &.input-sm {
+    padding: @padding-small-vertical @padding-small-horizontal;
+    font-size: @font-size-small;
+    border-radius: @input-border-radius-small;
+  }
+  &.input-lg {
+    padding: @padding-large-vertical @padding-large-horizontal;
+    font-size: @font-size-large;
+    border-radius: @input-border-radius-large;
+  }
+
+  // Nuke default margins from checkboxes and radios to vertically center within.
+  input[type="radio"],
+  input[type="checkbox"] {
+    margin-top: 0;
+  }
+}
+
+// Reset rounded corners
+.input-group .form-control:first-child,
+.input-group-addon:first-child,
+.input-group-btn:first-child > .btn,
+.input-group-btn:first-child > .btn-group > .btn,
+.input-group-btn:first-child > .dropdown-toggle,
+.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
+.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
+  .border-right-radius(0);
+}
+.input-group-addon:first-child {
+  border-right: 0;
+}
+.input-group .form-control:last-child,
+.input-group-addon:last-child,
+.input-group-btn:last-child > .btn,
+.input-group-btn:last-child > .btn-group > .btn,
+.input-group-btn:last-child > .dropdown-toggle,
+.input-group-btn:first-child > .btn:not(:first-child),
+.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
+  .border-left-radius(0);
+}
+.input-group-addon:last-child {
+  border-left: 0;
+}
+
+// Button input groups
+// -------------------------
+.input-group-btn {
+  position: relative;
+  // Jankily prevent input button groups from wrapping with `white-space` and
+  // `font-size` in combination with `inline-block` on buttons.
+  font-size: 0;
+  white-space: nowrap;
+
+  // Negative margin for spacing, position for bringing hovered/focused/actived
+  // element above the siblings.
+  > .btn {
+    position: relative;
+    + .btn {
+      margin-left: -1px;
+    }
+    // Bring the "active" button to the front
+    &:hover,
+    &:focus,
+    &:active {
+      z-index: 2;
+    }
+  }
+
+  // Negative margin to only have a 1px border between the two
+  &:first-child {
+    > .btn,
+    > .btn-group {
+      margin-right: -1px;
+    }
+  }
+  &:last-child {
+    > .btn,
+    > .btn-group {
+      z-index: 2;
+      margin-left: -1px;
+    }
+  }
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/jumbotron.less b/src/main/webapp/vendors/bootstrap/less/jumbotron.less
new file mode 100644
index 0000000000000000000000000000000000000000..1d9b515b3861970b64adbcf07b17453257829997
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/jumbotron.less
@@ -0,0 +1,54 @@
+//
+// Jumbotron
+// --------------------------------------------------
+
+
+.jumbotron {
+  padding-top:    @jumbotron-padding;
+  padding-bottom: @jumbotron-padding;
+  margin-bottom: @jumbotron-padding;
+  color: @jumbotron-color;
+  background-color: @jumbotron-bg;
+
+  h1,
+  .h1 {
+    color: @jumbotron-heading-color;
+  }
+
+  p {
+    margin-bottom: (@jumbotron-padding / 2);
+    font-size: @jumbotron-font-size;
+    font-weight: 200;
+  }
+
+  > hr {
+    border-top-color: darken(@jumbotron-bg, 10%);
+  }
+
+  .container &,
+  .container-fluid & {
+    border-radius: @border-radius-large; // Only round corners at higher resolutions if contained in a container
+    padding-left:  (@grid-gutter-width / 2);
+    padding-right: (@grid-gutter-width / 2);
+  }
+
+  .container {
+    max-width: 100%;
+  }
+
+  @media screen and (min-width: @screen-sm-min) {
+    padding-top:    (@jumbotron-padding * 1.6);
+    padding-bottom: (@jumbotron-padding * 1.6);
+
+    .container &,
+    .container-fluid & {
+      padding-left:  (@jumbotron-padding * 2);
+      padding-right: (@jumbotron-padding * 2);
+    }
+
+    h1,
+    .h1 {
+      font-size: @jumbotron-heading-font-size;
+    }
+  }
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/labels.less b/src/main/webapp/vendors/bootstrap/less/labels.less
new file mode 100644
index 0000000000000000000000000000000000000000..9a5a27006a51f4ac0d350cf11060aa548cd6ef6b
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/labels.less
@@ -0,0 +1,64 @@
+//
+// Labels
+// --------------------------------------------------
+
+.label {
+  display: inline;
+  padding: .2em .6em .3em;
+  font-size: 75%;
+  font-weight: bold;
+  line-height: 1;
+  color: @label-color;
+  text-align: center;
+  white-space: nowrap;
+  vertical-align: baseline;
+  border-radius: .25em;
+
+  // Add hover effects, but only for links
+  a& {
+    &:hover,
+    &:focus {
+      color: @label-link-hover-color;
+      text-decoration: none;
+      cursor: pointer;
+    }
+  }
+
+  // Empty labels collapse automatically (not available in IE8)
+  &:empty {
+    display: none;
+  }
+
+  // Quick fix for labels in buttons
+  .btn & {
+    position: relative;
+    top: -1px;
+  }
+}
+
+// Colors
+// Contextual variations (linked labels get darker on :hover)
+
+.label-default {
+  .label-variant(@label-default-bg);
+}
+
+.label-primary {
+  .label-variant(@label-primary-bg);
+}
+
+.label-success {
+  .label-variant(@label-success-bg);
+}
+
+.label-info {
+  .label-variant(@label-info-bg);
+}
+
+.label-warning {
+  .label-variant(@label-warning-bg);
+}
+
+.label-danger {
+  .label-variant(@label-danger-bg);
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/list-group.less b/src/main/webapp/vendors/bootstrap/less/list-group.less
new file mode 100644
index 0000000000000000000000000000000000000000..216b91230ab6fa786b0a8d53bc2e60004baec147
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/list-group.less
@@ -0,0 +1,130 @@
+//
+// List groups
+// --------------------------------------------------
+
+
+// Base class
+//
+// Easily usable on <ul>, <ol>, or <div>.
+
+.list-group {
+  // No need to set list-style: none; since .list-group-item is block level
+  margin-bottom: 20px;
+  padding-left: 0; // reset padding because ul and ol
+}
+
+
+// Individual list items
+//
+// Use on `li`s or `div`s within the `.list-group` parent.
+
+.list-group-item {
+  position: relative;
+  display: block;
+  padding: 10px 15px;
+  // Place the border on the list items and negative margin up for better styling
+  margin-bottom: -1px;
+  background-color: @list-group-bg;
+  border: 1px solid @list-group-border;
+
+  // Round the first and last items
+  &:first-child {
+    .border-top-radius(@list-group-border-radius);
+  }
+  &:last-child {
+    margin-bottom: 0;
+    .border-bottom-radius(@list-group-border-radius);
+  }
+}
+
+
+// Interactive list items
+//
+// Use anchor or button elements instead of `li`s or `div`s to create interactive items.
+// Includes an extra `.active` modifier class for showing selected items.
+
+a.list-group-item,
+button.list-group-item {
+  color: @list-group-link-color;
+
+  .list-group-item-heading {
+    color: @list-group-link-heading-color;
+  }
+
+  // Hover state
+  &:hover,
+  &:focus {
+    text-decoration: none;
+    color: @list-group-link-hover-color;
+    background-color: @list-group-hover-bg;
+  }
+}
+
+button.list-group-item {
+  width: 100%;
+  text-align: left;
+}
+
+.list-group-item {
+  // Disabled state
+  &.disabled,
+  &.disabled:hover,
+  &.disabled:focus {
+    background-color: @list-group-disabled-bg;
+    color: @list-group-disabled-color;
+    cursor: @cursor-disabled;
+
+    // Force color to inherit for custom content
+    .list-group-item-heading {
+      color: inherit;
+    }
+    .list-group-item-text {
+      color: @list-group-disabled-text-color;
+    }
+  }
+
+  // Active class on item itself, not parent
+  &.active,
+  &.active:hover,
+  &.active:focus {
+    z-index: 2; // Place active items above their siblings for proper border styling
+    color: @list-group-active-color;
+    background-color: @list-group-active-bg;
+    border-color: @list-group-active-border;
+
+    // Force color to inherit for custom content
+    .list-group-item-heading,
+    .list-group-item-heading > small,
+    .list-group-item-heading > .small {
+      color: inherit;
+    }
+    .list-group-item-text {
+      color: @list-group-active-text-color;
+    }
+  }
+}
+
+
+// Contextual variants
+//
+// Add modifier classes to change text and background color on individual items.
+// Organizationally, this must come after the `:hover` states.
+
+.list-group-item-variant(success; @state-success-bg; @state-success-text);
+.list-group-item-variant(info; @state-info-bg; @state-info-text);
+.list-group-item-variant(warning; @state-warning-bg; @state-warning-text);
+.list-group-item-variant(danger; @state-danger-bg; @state-danger-text);
+
+
+// Custom content options
+//
+// Extra classes for creating well-formatted content within `.list-group-item`s.
+
+.list-group-item-heading {
+  margin-top: 0;
+  margin-bottom: 5px;
+}
+.list-group-item-text {
+  margin-bottom: 0;
+  line-height: 1.3;
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/media.less b/src/main/webapp/vendors/bootstrap/less/media.less
new file mode 100644
index 0000000000000000000000000000000000000000..8c835e861edf28f7c3c49f18caf09d626565e11d
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/media.less
@@ -0,0 +1,66 @@
+.media {
+  // Proper spacing between instances of .media
+  margin-top: 15px;
+
+  &:first-child {
+    margin-top: 0;
+  }
+}
+
+.media,
+.media-body {
+  zoom: 1;
+  overflow: hidden;
+}
+
+.media-body {
+  width: 10000px;
+}
+
+.media-object {
+  display: block;
+
+  // Fix collapse in webkit from max-width: 100% and display: table-cell.
+  &.img-thumbnail {
+    max-width: none;
+  }
+}
+
+.media-right,
+.media > .pull-right {
+  padding-left: 10px;
+}
+
+.media-left,
+.media > .pull-left {
+  padding-right: 10px;
+}
+
+.media-left,
+.media-right,
+.media-body {
+  display: table-cell;
+  vertical-align: top;
+}
+
+.media-middle {
+  vertical-align: middle;
+}
+
+.media-bottom {
+  vertical-align: bottom;
+}
+
+// Reset margins on headings for tighter default spacing
+.media-heading {
+  margin-top: 0;
+  margin-bottom: 5px;
+}
+
+// Media list variation
+//
+// Undo default ul/ol styles
+.media-list {
+  padding-left: 0;
+  list-style: none;
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/mixins.less b/src/main/webapp/vendors/bootstrap/less/mixins.less
new file mode 100644
index 0000000000000000000000000000000000000000..e6f9fe684b7a3358a00c39b8909bbd9a7c65bdda
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/mixins.less
@@ -0,0 +1,40 @@
+// Mixins
+// --------------------------------------------------
+
+// Utilities
+@import "mixins/hide-text.less";
+@import "mixins/opacity.less";
+@import "mixins/image.less";
+@import "mixins/labels.less";
+@import "mixins/reset-filter.less";
+@import "mixins/resize.less";
+@import "mixins/responsive-visibility.less";
+@import "mixins/size.less";
+@import "mixins/tab-focus.less";
+@import "mixins/reset-text.less";
+@import "mixins/text-emphasis.less";
+@import "mixins/text-overflow.less";
+@import "mixins/vendor-prefixes.less";
+
+// Components
+@import "mixins/alerts.less";
+@import "mixins/buttons.less";
+@import "mixins/panels.less";
+@import "mixins/pagination.less";
+@import "mixins/list-group.less";
+@import "mixins/nav-divider.less";
+@import "mixins/forms.less";
+@import "mixins/progress-bar.less";
+@import "mixins/table-row.less";
+
+// Skins
+@import "mixins/background-variant.less";
+@import "mixins/border-radius.less";
+@import "mixins/gradients.less";
+
+// Layout
+@import "mixins/clearfix.less";
+@import "mixins/center-block.less";
+@import "mixins/nav-vertical-align.less";
+@import "mixins/grid-framework.less";
+@import "mixins/grid.less";
diff --git a/src/main/webapp/vendors/bootstrap/less/mixins/alerts.less b/src/main/webapp/vendors/bootstrap/less/mixins/alerts.less
new file mode 100644
index 0000000000000000000000000000000000000000..396196f438fd31e7757a0874ece4a99fe0cf9fd9
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/mixins/alerts.less
@@ -0,0 +1,14 @@
+// Alerts
+
+.alert-variant(@background; @border; @text-color) {
+  background-color: @background;
+  border-color: @border;
+  color: @text-color;
+
+  hr {
+    border-top-color: darken(@border, 5%);
+  }
+  .alert-link {
+    color: darken(@text-color, 10%);
+  }
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/mixins/background-variant.less b/src/main/webapp/vendors/bootstrap/less/mixins/background-variant.less
new file mode 100644
index 0000000000000000000000000000000000000000..a85c22b745302f42c8282c0f9b7dce8a2f1384d7
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/mixins/background-variant.less
@@ -0,0 +1,9 @@
+// Contextual backgrounds
+
+.bg-variant(@color) {
+  background-color: @color;
+  a&:hover,
+  a&:focus {
+    background-color: darken(@color, 10%);
+  }
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/mixins/border-radius.less b/src/main/webapp/vendors/bootstrap/less/mixins/border-radius.less
new file mode 100644
index 0000000000000000000000000000000000000000..ca05dbf457000d122a3b8afcc3847e44cffea421
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/mixins/border-radius.less
@@ -0,0 +1,18 @@
+// Single side border-radius
+
+.border-top-radius(@radius) {
+  border-top-right-radius: @radius;
+   border-top-left-radius: @radius;
+}
+.border-right-radius(@radius) {
+  border-bottom-right-radius: @radius;
+     border-top-right-radius: @radius;
+}
+.border-bottom-radius(@radius) {
+  border-bottom-right-radius: @radius;
+   border-bottom-left-radius: @radius;
+}
+.border-left-radius(@radius) {
+  border-bottom-left-radius: @radius;
+     border-top-left-radius: @radius;
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/mixins/buttons.less b/src/main/webapp/vendors/bootstrap/less/mixins/buttons.less
new file mode 100644
index 0000000000000000000000000000000000000000..b294d8c210e07ad3e1293863c3ab0c8a45c960c7
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/mixins/buttons.less
@@ -0,0 +1,65 @@
+// Button variants
+//
+// Easily pump out default styles, as well as :hover, :focus, :active,
+// and disabled options for all buttons
+
+.button-variant(@color; @background; @border) {
+  color: @color;
+  background-color: @background;
+  border-color: @border;
+
+  &:focus,
+  &.focus {
+    color: @color;
+    background-color: darken(@background, 10%);
+        border-color: darken(@border, 25%);
+  }
+  &:hover {
+    color: @color;
+    background-color: darken(@background, 10%);
+        border-color: darken(@border, 12%);
+  }
+  &:active,
+  &.active,
+  .open > .dropdown-toggle& {
+    color: @color;
+    background-color: darken(@background, 10%);
+        border-color: darken(@border, 12%);
+
+    &:hover,
+    &:focus,
+    &.focus {
+      color: @color;
+      background-color: darken(@background, 17%);
+          border-color: darken(@border, 25%);
+    }
+  }
+  &:active,
+  &.active,
+  .open > .dropdown-toggle& {
+    background-image: none;
+  }
+  &.disabled,
+  &[disabled],
+  fieldset[disabled] & {
+    &:hover,
+    &:focus,
+    &.focus {
+      background-color: @background;
+          border-color: @border;
+    }
+  }
+
+  .badge {
+    color: @background;
+    background-color: @color;
+  }
+}
+
+// Button sizes
+.button-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {
+  padding: @padding-vertical @padding-horizontal;
+  font-size: @font-size;
+  line-height: @line-height;
+  border-radius: @border-radius;
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/mixins/center-block.less b/src/main/webapp/vendors/bootstrap/less/mixins/center-block.less
new file mode 100644
index 0000000000000000000000000000000000000000..d18d6de9ed6a7af49415277cb72e57b7dbd42d0f
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/mixins/center-block.less
@@ -0,0 +1,7 @@
+// Center-align a block level element
+
+.center-block() {
+  display: block;
+  margin-left: auto;
+  margin-right: auto;
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/mixins/clearfix.less b/src/main/webapp/vendors/bootstrap/less/mixins/clearfix.less
new file mode 100644
index 0000000000000000000000000000000000000000..3f7a3820c1cf7756322917982646352e77119f46
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/mixins/clearfix.less
@@ -0,0 +1,22 @@
+// Clearfix
+//
+// For modern browsers
+// 1. The space content is one way to avoid an Opera bug when the
+//    contenteditable attribute is included anywhere else in the document.
+//    Otherwise it causes space to appear at the top and bottom of elements
+//    that are clearfixed.
+// 2. The use of `table` rather than `block` is only necessary if using
+//    `:before` to contain the top-margins of child elements.
+//
+// Source: http://nicolasgallagher.com/micro-clearfix-hack/
+
+.clearfix() {
+  &:before,
+  &:after {
+    content: " "; // 1
+    display: table; // 2
+  }
+  &:after {
+    clear: both;
+  }
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/mixins/forms.less b/src/main/webapp/vendors/bootstrap/less/mixins/forms.less
new file mode 100644
index 0000000000000000000000000000000000000000..6f55ed967082caf4ef515f88c9d591f95036a470
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/mixins/forms.less
@@ -0,0 +1,85 @@
+// Form validation states
+//
+// Used in forms.less to generate the form validation CSS for warnings, errors,
+// and successes.
+
+.form-control-validation(@text-color: #555; @border-color: #ccc; @background-color: #f5f5f5) {
+  // Color the label and help text
+  .help-block,
+  .control-label,
+  .radio,
+  .checkbox,
+  .radio-inline,
+  .checkbox-inline,
+  &.radio label,
+  &.checkbox label,
+  &.radio-inline label,
+  &.checkbox-inline label  {
+    color: @text-color;
+  }
+  // Set the border and box shadow on specific inputs to match
+  .form-control {
+    border-color: @border-color;
+    .box-shadow(inset 0 1px 1px rgba(0,0,0,.075)); // Redeclare so transitions work
+    &:focus {
+      border-color: darken(@border-color, 10%);
+      @shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px lighten(@border-color, 20%);
+      .box-shadow(@shadow);
+    }
+  }
+  // Set validation states also for addons
+  .input-group-addon {
+    color: @text-color;
+    border-color: @border-color;
+    background-color: @background-color;
+  }
+  // Optional feedback icon
+  .form-control-feedback {
+    color: @text-color;
+  }
+}
+
+
+// Form control focus state
+//
+// Generate a customized focus state and for any input with the specified color,
+// which defaults to the `@input-border-focus` variable.
+//
+// We highly encourage you to not customize the default value, but instead use
+// this to tweak colors on an as-needed basis. This aesthetic change is based on
+// WebKit's default styles, but applicable to a wider range of browsers. Its
+// usability and accessibility should be taken into account with any change.
+//
+// Example usage: change the default blue border and shadow to white for better
+// contrast against a dark gray background.
+.form-control-focus(@color: @input-border-focus) {
+  @color-rgba: rgba(red(@color), green(@color), blue(@color), .6);
+  &:focus {
+    border-color: @color;
+    outline: 0;
+    .box-shadow(~"inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px @{color-rgba}");
+  }
+}
+
+// Form control sizing
+//
+// Relative text size, padding, and border-radii changes for form controls. For
+// horizontal sizing, wrap controls in the predefined grid classes. `<select>`
+// element gets special love because it's special, and that's a fact!
+.input-size(@input-height; @padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {
+  height: @input-height;
+  padding: @padding-vertical @padding-horizontal;
+  font-size: @font-size;
+  line-height: @line-height;
+  border-radius: @border-radius;
+
+  select& {
+    height: @input-height;
+    line-height: @input-height;
+  }
+
+  textarea&,
+  select[multiple]& {
+    height: auto;
+  }
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/mixins/gradients.less b/src/main/webapp/vendors/bootstrap/less/mixins/gradients.less
new file mode 100644
index 0000000000000000000000000000000000000000..0b88a89cc56a63effe45558845122b077de03979
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/mixins/gradients.less
@@ -0,0 +1,59 @@
+// Gradients
+
+#gradient {
+
+  // Horizontal gradient, from left to right
+  //
+  // Creates two color stops, start and end, by specifying a color and position for each color stop.
+  // Color stops are not available in IE9 and below.
+  .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {
+    background-image: -webkit-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+
+    background-image: -o-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Opera 12
+    background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+
+    background-repeat: repeat-x;
+    filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)",argb(@start-color),argb(@end-color))); // IE9 and down
+  }
+
+  // Vertical gradient, from top to bottom
+  //
+  // Creates two color stops, start and end, by specifying a color and position for each color stop.
+  // Color stops are not available in IE9 and below.
+  .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {
+    background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent);  // Safari 5.1-6, Chrome 10+
+    background-image: -o-linear-gradient(top, @start-color @start-percent, @end-color @end-percent);  // Opera 12
+    background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+
+    background-repeat: repeat-x;
+    filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb(@start-color),argb(@end-color))); // IE9 and down
+  }
+
+  .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {
+    background-repeat: repeat-x;
+    background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+
+    background-image: -o-linear-gradient(@deg, @start-color, @end-color); // Opera 12
+    background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+
+  }
+  .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {
+    background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);
+    background-image: -o-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);
+    background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);
+    background-repeat: no-repeat;
+    filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback
+  }
+  .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {
+    background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);
+    background-image: -o-linear-gradient(@start-color, @mid-color @color-stop, @end-color);
+    background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);
+    background-repeat: no-repeat;
+    filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback
+  }
+  .radial(@inner-color: #555; @outer-color: #333) {
+    background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);
+    background-image: radial-gradient(circle, @inner-color, @outer-color);
+    background-repeat: no-repeat;
+  }
+  .striped(@color: rgba(255,255,255,.15); @angle: 45deg) {
+    background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);
+    background-image: -o-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);
+    background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);
+  }
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/mixins/grid-framework.less b/src/main/webapp/vendors/bootstrap/less/mixins/grid-framework.less
new file mode 100644
index 0000000000000000000000000000000000000000..8c23eed24e60e5fca7d991d2de47019892530323
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/mixins/grid-framework.less
@@ -0,0 +1,91 @@
+// Framework grid generation
+//
+// Used only by Bootstrap to generate the correct number of grid classes given
+// any value of `@grid-columns`.
+
+.make-grid-columns() {
+  // Common styles for all sizes of grid columns, widths 1-12
+  .col(@index) { // initial
+    @item: ~".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}";
+    .col((@index + 1), @item);
+  }
+  .col(@index, @list) when (@index =< @grid-columns) { // general; "=<" isn't a typo
+    @item: ~".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}";
+    .col((@index + 1), ~"@{list}, @{item}");
+  }
+  .col(@index, @list) when (@index > @grid-columns) { // terminal
+    @{list} {
+      position: relative;
+      // Prevent columns from collapsing when empty
+      min-height: 1px;
+      // Inner gutter via padding
+      padding-left:  ceil((@grid-gutter-width / 2));
+      padding-right: floor((@grid-gutter-width / 2));
+    }
+  }
+  .col(1); // kickstart it
+}
+
+.float-grid-columns(@class) {
+  .col(@index) { // initial
+    @item: ~".col-@{class}-@{index}";
+    .col((@index + 1), @item);
+  }
+  .col(@index, @list) when (@index =< @grid-columns) { // general
+    @item: ~".col-@{class}-@{index}";
+    .col((@index + 1), ~"@{list}, @{item}");
+  }
+  .col(@index, @list) when (@index > @grid-columns) { // terminal
+    @{list} {
+      float: left;
+    }
+  }
+  .col(1); // kickstart it
+}
+
+.calc-grid-column(@index, @class, @type) when (@type = width) and (@index > 0) {
+  .col-@{class}-@{index} {
+    width: percentage((@index / @grid-columns));
+  }
+}
+.calc-grid-column(@index, @class, @type) when (@type = push) and (@index > 0) {
+  .col-@{class}-push-@{index} {
+    left: percentage((@index / @grid-columns));
+  }
+}
+.calc-grid-column(@index, @class, @type) when (@type = push) and (@index = 0) {
+  .col-@{class}-push-0 {
+    left: auto;
+  }
+}
+.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index > 0) {
+  .col-@{class}-pull-@{index} {
+    right: percentage((@index / @grid-columns));
+  }
+}
+.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index = 0) {
+  .col-@{class}-pull-0 {
+    right: auto;
+  }
+}
+.calc-grid-column(@index, @class, @type) when (@type = offset) {
+  .col-@{class}-offset-@{index} {
+    margin-left: percentage((@index / @grid-columns));
+  }
+}
+
+// Basic looping in LESS
+.loop-grid-columns(@index, @class, @type) when (@index >= 0) {
+  .calc-grid-column(@index, @class, @type);
+  // next iteration
+  .loop-grid-columns((@index - 1), @class, @type);
+}
+
+// Create grid for specific class
+.make-grid(@class) {
+  .float-grid-columns(@class);
+  .loop-grid-columns(@grid-columns, @class, width);
+  .loop-grid-columns(@grid-columns, @class, pull);
+  .loop-grid-columns(@grid-columns, @class, push);
+  .loop-grid-columns(@grid-columns, @class, offset);
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/mixins/grid.less b/src/main/webapp/vendors/bootstrap/less/mixins/grid.less
new file mode 100644
index 0000000000000000000000000000000000000000..df496d0b3c1a96f60ad996870bba4fd2cf388d33
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/mixins/grid.less
@@ -0,0 +1,122 @@
+// Grid system
+//
+// Generate semantic grid columns with these mixins.
+
+// Centered container element
+.container-fixed(@gutter: @grid-gutter-width) {
+  margin-right: auto;
+  margin-left: auto;
+  padding-left:  floor((@gutter / 2));
+  padding-right: ceil((@gutter / 2));
+  &:extend(.clearfix all);
+}
+
+// Creates a wrapper for a series of columns
+.make-row(@gutter: @grid-gutter-width) {
+  margin-left:  ceil((@gutter / -2));
+  margin-right: floor((@gutter / -2));
+  &:extend(.clearfix all);
+}
+
+// Generate the extra small columns
+.make-xs-column(@columns; @gutter: @grid-gutter-width) {
+  position: relative;
+  float: left;
+  width: percentage((@columns / @grid-columns));
+  min-height: 1px;
+  padding-left:  (@gutter / 2);
+  padding-right: (@gutter / 2);
+}
+.make-xs-column-offset(@columns) {
+  margin-left: percentage((@columns / @grid-columns));
+}
+.make-xs-column-push(@columns) {
+  left: percentage((@columns / @grid-columns));
+}
+.make-xs-column-pull(@columns) {
+  right: percentage((@columns / @grid-columns));
+}
+
+// Generate the small columns
+.make-sm-column(@columns; @gutter: @grid-gutter-width) {
+  position: relative;
+  min-height: 1px;
+  padding-left:  (@gutter / 2);
+  padding-right: (@gutter / 2);
+
+  @media (min-width: @screen-sm-min) {
+    float: left;
+    width: percentage((@columns / @grid-columns));
+  }
+}
+.make-sm-column-offset(@columns) {
+  @media (min-width: @screen-sm-min) {
+    margin-left: percentage((@columns / @grid-columns));
+  }
+}
+.make-sm-column-push(@columns) {
+  @media (min-width: @screen-sm-min) {
+    left: percentage((@columns / @grid-columns));
+  }
+}
+.make-sm-column-pull(@columns) {
+  @media (min-width: @screen-sm-min) {
+    right: percentage((@columns / @grid-columns));
+  }
+}
+
+// Generate the medium columns
+.make-md-column(@columns; @gutter: @grid-gutter-width) {
+  position: relative;
+  min-height: 1px;
+  padding-left:  (@gutter / 2);
+  padding-right: (@gutter / 2);
+
+  @media (min-width: @screen-md-min) {
+    float: left;
+    width: percentage((@columns / @grid-columns));
+  }
+}
+.make-md-column-offset(@columns) {
+  @media (min-width: @screen-md-min) {
+    margin-left: percentage((@columns / @grid-columns));
+  }
+}
+.make-md-column-push(@columns) {
+  @media (min-width: @screen-md-min) {
+    left: percentage((@columns / @grid-columns));
+  }
+}
+.make-md-column-pull(@columns) {
+  @media (min-width: @screen-md-min) {
+    right: percentage((@columns / @grid-columns));
+  }
+}
+
+// Generate the large columns
+.make-lg-column(@columns; @gutter: @grid-gutter-width) {
+  position: relative;
+  min-height: 1px;
+  padding-left:  (@gutter / 2);
+  padding-right: (@gutter / 2);
+
+  @media (min-width: @screen-lg-min) {
+    float: left;
+    width: percentage((@columns / @grid-columns));
+  }
+}
+.make-lg-column-offset(@columns) {
+  @media (min-width: @screen-lg-min) {
+    margin-left: percentage((@columns / @grid-columns));
+  }
+}
+.make-lg-column-push(@columns) {
+  @media (min-width: @screen-lg-min) {
+    left: percentage((@columns / @grid-columns));
+  }
+}
+.make-lg-column-pull(@columns) {
+  @media (min-width: @screen-lg-min) {
+    right: percentage((@columns / @grid-columns));
+  }
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/mixins/hide-text.less b/src/main/webapp/vendors/bootstrap/less/mixins/hide-text.less
new file mode 100644
index 0000000000000000000000000000000000000000..2bb84a3b444fc158cd24ef77789c624d989fa8ed
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/mixins/hide-text.less
@@ -0,0 +1,21 @@
+// CSS image replacement
+//
+// Heads up! v3 launched with only `.hide-text()`, but per our pattern for
+// mixins being reused as classes with the same name, this doesn't hold up. As
+// of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`.
+//
+// Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757
+
+// Deprecated as of v3.0.1 (has been removed in v4)
+.hide-text() {
+  font: ~"0/0" a;
+  color: transparent;
+  text-shadow: none;
+  background-color: transparent;
+  border: 0;
+}
+
+// New mixin to use as of v3.0.1
+.text-hide() {
+  .hide-text();
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/mixins/image.less b/src/main/webapp/vendors/bootstrap/less/mixins/image.less
new file mode 100644
index 0000000000000000000000000000000000000000..f233cb3e199f21ac194212e10ebb1e12feb0682b
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/mixins/image.less
@@ -0,0 +1,33 @@
+// Image Mixins
+// - Responsive image
+// - Retina image
+
+
+// Responsive image
+//
+// Keep images from scaling beyond the width of their parents.
+.img-responsive(@display: block) {
+  display: @display;
+  max-width: 100%; // Part 1: Set a maximum relative to the parent
+  height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching
+}
+
+
+// Retina image
+//
+// Short retina mixin for setting background-image and -size. Note that the
+// spelling of `min--moz-device-pixel-ratio` is intentional.
+.img-retina(@file-1x; @file-2x; @width-1x; @height-1x) {
+  background-image: url("@{file-1x}");
+
+  @media
+  only screen and (-webkit-min-device-pixel-ratio: 2),
+  only screen and (   min--moz-device-pixel-ratio: 2),
+  only screen and (     -o-min-device-pixel-ratio: 2/1),
+  only screen and (        min-device-pixel-ratio: 2),
+  only screen and (                min-resolution: 192dpi),
+  only screen and (                min-resolution: 2dppx) {
+    background-image: url("@{file-2x}");
+    background-size: @width-1x @height-1x;
+  }
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/mixins/labels.less b/src/main/webapp/vendors/bootstrap/less/mixins/labels.less
new file mode 100644
index 0000000000000000000000000000000000000000..9f7a67ee3d08a03ad10277d703805d315cd43d54
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/mixins/labels.less
@@ -0,0 +1,12 @@
+// Labels
+
+.label-variant(@color) {
+  background-color: @color;
+
+  &[href] {
+    &:hover,
+    &:focus {
+      background-color: darken(@color, 10%);
+    }
+  }
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/mixins/list-group.less b/src/main/webapp/vendors/bootstrap/less/mixins/list-group.less
new file mode 100644
index 0000000000000000000000000000000000000000..03aa19069d954a3db712462f17d073eca6a9498f
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/mixins/list-group.less
@@ -0,0 +1,30 @@
+// List Groups
+
+.list-group-item-variant(@state; @background; @color) {
+  .list-group-item-@{state} {
+    color: @color;
+    background-color: @background;
+
+    a&,
+    button& {
+      color: @color;
+
+      .list-group-item-heading {
+        color: inherit;
+      }
+
+      &:hover,
+      &:focus {
+        color: @color;
+        background-color: darken(@background, 5%);
+      }
+      &.active,
+      &.active:hover,
+      &.active:focus {
+        color: #fff;
+        background-color: @color;
+        border-color: @color;
+      }
+    }
+  }
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/mixins/nav-divider.less b/src/main/webapp/vendors/bootstrap/less/mixins/nav-divider.less
new file mode 100644
index 0000000000000000000000000000000000000000..feb1e9ed0dad8d0db00ebb93b175591a88abf707
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/mixins/nav-divider.less
@@ -0,0 +1,10 @@
+// Horizontal dividers
+//
+// Dividers (basically an hr) within dropdowns and nav lists
+
+.nav-divider(@color: #e5e5e5) {
+  height: 1px;
+  margin: ((@line-height-computed / 2) - 1) 0;
+  overflow: hidden;
+  background-color: @color;
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/mixins/nav-vertical-align.less b/src/main/webapp/vendors/bootstrap/less/mixins/nav-vertical-align.less
new file mode 100644
index 0000000000000000000000000000000000000000..d458c78613e6dc082141783ef45d56a5a7d601c3
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/mixins/nav-vertical-align.less
@@ -0,0 +1,9 @@
+// Navbar vertical align
+//
+// Vertically center elements in the navbar.
+// Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin.
+
+.navbar-vertical-align(@element-height) {
+  margin-top: ((@navbar-height - @element-height) / 2);
+  margin-bottom: ((@navbar-height - @element-height) / 2);
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/mixins/opacity.less b/src/main/webapp/vendors/bootstrap/less/mixins/opacity.less
new file mode 100644
index 0000000000000000000000000000000000000000..33ed25ce6763de7f8ae195628c1eb168379d8435
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/mixins/opacity.less
@@ -0,0 +1,8 @@
+// Opacity
+
+.opacity(@opacity) {
+  opacity: @opacity;
+  // IE8 filter
+  @opacity-ie: (@opacity * 100);
+  filter: ~"alpha(opacity=@{opacity-ie})";
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/mixins/pagination.less b/src/main/webapp/vendors/bootstrap/less/mixins/pagination.less
new file mode 100644
index 0000000000000000000000000000000000000000..618804f2dee3e87612261f10dc934e618d4af0b2
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/mixins/pagination.less
@@ -0,0 +1,24 @@
+// Pagination
+
+.pagination-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {
+  > li {
+    > a,
+    > span {
+      padding: @padding-vertical @padding-horizontal;
+      font-size: @font-size;
+      line-height: @line-height;
+    }
+    &:first-child {
+      > a,
+      > span {
+        .border-left-radius(@border-radius);
+      }
+    }
+    &:last-child {
+      > a,
+      > span {
+        .border-right-radius(@border-radius);
+      }
+    }
+  }
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/mixins/panels.less b/src/main/webapp/vendors/bootstrap/less/mixins/panels.less
new file mode 100644
index 0000000000000000000000000000000000000000..49ee10d4ad39de45e0983d01cbbc50949a1dac2e
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/mixins/panels.less
@@ -0,0 +1,24 @@
+// Panels
+
+.panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) {
+  border-color: @border;
+
+  & > .panel-heading {
+    color: @heading-text-color;
+    background-color: @heading-bg-color;
+    border-color: @heading-border;
+
+    + .panel-collapse > .panel-body {
+      border-top-color: @border;
+    }
+    .badge {
+      color: @heading-bg-color;
+      background-color: @heading-text-color;
+    }
+  }
+  & > .panel-footer {
+    + .panel-collapse > .panel-body {
+      border-bottom-color: @border;
+    }
+  }
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/mixins/progress-bar.less b/src/main/webapp/vendors/bootstrap/less/mixins/progress-bar.less
new file mode 100644
index 0000000000000000000000000000000000000000..f07996a34dbc19a1acc1c024a2410eb2b1b25271
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/mixins/progress-bar.less
@@ -0,0 +1,10 @@
+// Progress bars
+
+.progress-bar-variant(@color) {
+  background-color: @color;
+
+  // Deprecated parent class requirement as of v3.2.0
+  .progress-striped & {
+    #gradient > .striped();
+  }
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/mixins/reset-filter.less b/src/main/webapp/vendors/bootstrap/less/mixins/reset-filter.less
new file mode 100644
index 0000000000000000000000000000000000000000..68cdb5e18602af3ab8e3ddba57a06045ef1c65bb
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/mixins/reset-filter.less
@@ -0,0 +1,8 @@
+// Reset filters for IE
+//
+// When you need to remove a gradient background, do not forget to use this to reset
+// the IE filter for IE9 and below.
+
+.reset-filter() {
+  filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)"));
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/mixins/reset-text.less b/src/main/webapp/vendors/bootstrap/less/mixins/reset-text.less
new file mode 100644
index 0000000000000000000000000000000000000000..58dd4d19b4d1f6c6731ae2dadd512eb62d9e7e81
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/mixins/reset-text.less
@@ -0,0 +1,18 @@
+.reset-text() {
+  font-family: @font-family-base;
+  // We deliberately do NOT reset font-size.
+  font-style: normal;
+  font-weight: normal;
+  letter-spacing: normal;
+  line-break: auto;
+  line-height: @line-height-base;
+  text-align: left; // Fallback for where `start` is not supported
+  text-align: start;
+  text-decoration: none;
+  text-shadow: none;
+  text-transform: none;
+  white-space: normal;
+  word-break: normal;
+  word-spacing: normal;
+  word-wrap: normal;
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/mixins/resize.less b/src/main/webapp/vendors/bootstrap/less/mixins/resize.less
new file mode 100644
index 0000000000000000000000000000000000000000..3acd3afdbacbb7f642e04f7ff434c18107faad69
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/mixins/resize.less
@@ -0,0 +1,6 @@
+// Resize anything
+
+.resizable(@direction) {
+  resize: @direction; // Options: horizontal, vertical, both
+  overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible`
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/mixins/responsive-visibility.less b/src/main/webapp/vendors/bootstrap/less/mixins/responsive-visibility.less
new file mode 100644
index 0000000000000000000000000000000000000000..ecf1e979fd25c27674d75e1ec6089ee53549dea5
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/mixins/responsive-visibility.less
@@ -0,0 +1,15 @@
+// Responsive utilities
+
+//
+// More easily include all the states for responsive-utilities.less.
+.responsive-visibility() {
+  display: block !important;
+  table&  { display: table !important; }
+  tr&     { display: table-row !important; }
+  th&,
+  td&     { display: table-cell !important; }
+}
+
+.responsive-invisibility() {
+  display: none !important;
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/mixins/size.less b/src/main/webapp/vendors/bootstrap/less/mixins/size.less
new file mode 100644
index 0000000000000000000000000000000000000000..a8be65089606863ad878173e951b62fb387daf52
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/mixins/size.less
@@ -0,0 +1,10 @@
+// Sizing shortcuts
+
+.size(@width; @height) {
+  width: @width;
+  height: @height;
+}
+
+.square(@size) {
+  .size(@size; @size);
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/mixins/tab-focus.less b/src/main/webapp/vendors/bootstrap/less/mixins/tab-focus.less
new file mode 100644
index 0000000000000000000000000000000000000000..1f1f05ab054412684539a94423c097d6cdadd8ba
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/mixins/tab-focus.less
@@ -0,0 +1,9 @@
+// WebKit-style focus
+
+.tab-focus() {
+  // Default
+  outline: thin dotted;
+  // WebKit
+  outline: 5px auto -webkit-focus-ring-color;
+  outline-offset: -2px;
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/mixins/table-row.less b/src/main/webapp/vendors/bootstrap/less/mixins/table-row.less
new file mode 100644
index 0000000000000000000000000000000000000000..0f287f1a8bdf51607e91d0c8aa6a5be51d6df36e
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/mixins/table-row.less
@@ -0,0 +1,28 @@
+// Tables
+
+.table-row-variant(@state; @background) {
+  // Exact selectors below required to override `.table-striped` and prevent
+  // inheritance to nested tables.
+  .table > thead > tr,
+  .table > tbody > tr,
+  .table > tfoot > tr {
+    > td.@{state},
+    > th.@{state},
+    &.@{state} > td,
+    &.@{state} > th {
+      background-color: @background;
+    }
+  }
+
+  // Hover states for `.table-hover`
+  // Note: this is not available for cells or rows within `thead` or `tfoot`.
+  .table-hover > tbody > tr {
+    > td.@{state}:hover,
+    > th.@{state}:hover,
+    &.@{state}:hover > td,
+    &:hover > .@{state},
+    &.@{state}:hover > th {
+      background-color: darken(@background, 5%);
+    }
+  }
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/mixins/text-emphasis.less b/src/main/webapp/vendors/bootstrap/less/mixins/text-emphasis.less
new file mode 100644
index 0000000000000000000000000000000000000000..9e8a77a6985f01eb51fb5eea7e809349c52cb804
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/mixins/text-emphasis.less
@@ -0,0 +1,9 @@
+// Typography
+
+.text-emphasis-variant(@color) {
+  color: @color;
+  a&:hover,
+  a&:focus {
+    color: darken(@color, 10%);
+  }
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/mixins/text-overflow.less b/src/main/webapp/vendors/bootstrap/less/mixins/text-overflow.less
new file mode 100644
index 0000000000000000000000000000000000000000..c11ad2fb7471dd29ae781f1aefdfb8bb5e4a7d6c
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/mixins/text-overflow.less
@@ -0,0 +1,8 @@
+// Text overflow
+// Requires inline-block or block for proper styling
+
+.text-overflow() {
+  overflow: hidden;
+  text-overflow: ellipsis;
+  white-space: nowrap;
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/mixins/vendor-prefixes.less b/src/main/webapp/vendors/bootstrap/less/mixins/vendor-prefixes.less
new file mode 100644
index 0000000000000000000000000000000000000000..2b5e74b99ed685f4d5e780a9694b9903a59f257b
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/mixins/vendor-prefixes.less
@@ -0,0 +1,227 @@
+// Vendor Prefixes
+//
+// All vendor mixins are deprecated as of v3.2.0 due to the introduction of
+// Autoprefixer in our Gruntfile. They have been removed in v4.
+
+// - Animations
+// - Backface visibility
+// - Box shadow
+// - Box sizing
+// - Content columns
+// - Hyphens
+// - Placeholder text
+// - Transformations
+// - Transitions
+// - User Select
+
+
+// Animations
+.animation(@animation) {
+  -webkit-animation: @animation;
+       -o-animation: @animation;
+          animation: @animation;
+}
+.animation-name(@name) {
+  -webkit-animation-name: @name;
+          animation-name: @name;
+}
+.animation-duration(@duration) {
+  -webkit-animation-duration: @duration;
+          animation-duration: @duration;
+}
+.animation-timing-function(@timing-function) {
+  -webkit-animation-timing-function: @timing-function;
+          animation-timing-function: @timing-function;
+}
+.animation-delay(@delay) {
+  -webkit-animation-delay: @delay;
+          animation-delay: @delay;
+}
+.animation-iteration-count(@iteration-count) {
+  -webkit-animation-iteration-count: @iteration-count;
+          animation-iteration-count: @iteration-count;
+}
+.animation-direction(@direction) {
+  -webkit-animation-direction: @direction;
+          animation-direction: @direction;
+}
+.animation-fill-mode(@fill-mode) {
+  -webkit-animation-fill-mode: @fill-mode;
+          animation-fill-mode: @fill-mode;
+}
+
+// Backface visibility
+// Prevent browsers from flickering when using CSS 3D transforms.
+// Default value is `visible`, but can be changed to `hidden`
+
+.backface-visibility(@visibility) {
+  -webkit-backface-visibility: @visibility;
+     -moz-backface-visibility: @visibility;
+          backface-visibility: @visibility;
+}
+
+// Drop shadows
+//
+// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's
+// supported browsers that have box shadow capabilities now support it.
+
+.box-shadow(@shadow) {
+  -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1
+          box-shadow: @shadow;
+}
+
+// Box sizing
+.box-sizing(@boxmodel) {
+  -webkit-box-sizing: @boxmodel;
+     -moz-box-sizing: @boxmodel;
+          box-sizing: @boxmodel;
+}
+
+// CSS3 Content Columns
+.content-columns(@column-count; @column-gap: @grid-gutter-width) {
+  -webkit-column-count: @column-count;
+     -moz-column-count: @column-count;
+          column-count: @column-count;
+  -webkit-column-gap: @column-gap;
+     -moz-column-gap: @column-gap;
+          column-gap: @column-gap;
+}
+
+// Optional hyphenation
+.hyphens(@mode: auto) {
+  word-wrap: break-word;
+  -webkit-hyphens: @mode;
+     -moz-hyphens: @mode;
+      -ms-hyphens: @mode; // IE10+
+       -o-hyphens: @mode;
+          hyphens: @mode;
+}
+
+// Placeholder text
+.placeholder(@color: @input-color-placeholder) {
+  // Firefox
+  &::-moz-placeholder {
+    color: @color;
+    opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526
+  }
+  &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+
+  &::-webkit-input-placeholder  { color: @color; } // Safari and Chrome
+}
+
+// Transformations
+.scale(@ratio) {
+  -webkit-transform: scale(@ratio);
+      -ms-transform: scale(@ratio); // IE9 only
+       -o-transform: scale(@ratio);
+          transform: scale(@ratio);
+}
+.scale(@ratioX; @ratioY) {
+  -webkit-transform: scale(@ratioX, @ratioY);
+      -ms-transform: scale(@ratioX, @ratioY); // IE9 only
+       -o-transform: scale(@ratioX, @ratioY);
+          transform: scale(@ratioX, @ratioY);
+}
+.scaleX(@ratio) {
+  -webkit-transform: scaleX(@ratio);
+      -ms-transform: scaleX(@ratio); // IE9 only
+       -o-transform: scaleX(@ratio);
+          transform: scaleX(@ratio);
+}
+.scaleY(@ratio) {
+  -webkit-transform: scaleY(@ratio);
+      -ms-transform: scaleY(@ratio); // IE9 only
+       -o-transform: scaleY(@ratio);
+          transform: scaleY(@ratio);
+}
+.skew(@x; @y) {
+  -webkit-transform: skewX(@x) skewY(@y);
+      -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+
+       -o-transform: skewX(@x) skewY(@y);
+          transform: skewX(@x) skewY(@y);
+}
+.translate(@x; @y) {
+  -webkit-transform: translate(@x, @y);
+      -ms-transform: translate(@x, @y); // IE9 only
+       -o-transform: translate(@x, @y);
+          transform: translate(@x, @y);
+}
+.translate3d(@x; @y; @z) {
+  -webkit-transform: translate3d(@x, @y, @z);
+          transform: translate3d(@x, @y, @z);
+}
+.rotate(@degrees) {
+  -webkit-transform: rotate(@degrees);
+      -ms-transform: rotate(@degrees); // IE9 only
+       -o-transform: rotate(@degrees);
+          transform: rotate(@degrees);
+}
+.rotateX(@degrees) {
+  -webkit-transform: rotateX(@degrees);
+      -ms-transform: rotateX(@degrees); // IE9 only
+       -o-transform: rotateX(@degrees);
+          transform: rotateX(@degrees);
+}
+.rotateY(@degrees) {
+  -webkit-transform: rotateY(@degrees);
+      -ms-transform: rotateY(@degrees); // IE9 only
+       -o-transform: rotateY(@degrees);
+          transform: rotateY(@degrees);
+}
+.perspective(@perspective) {
+  -webkit-perspective: @perspective;
+     -moz-perspective: @perspective;
+          perspective: @perspective;
+}
+.perspective-origin(@perspective) {
+  -webkit-perspective-origin: @perspective;
+     -moz-perspective-origin: @perspective;
+          perspective-origin: @perspective;
+}
+.transform-origin(@origin) {
+  -webkit-transform-origin: @origin;
+     -moz-transform-origin: @origin;
+      -ms-transform-origin: @origin; // IE9 only
+          transform-origin: @origin;
+}
+
+
+// Transitions
+
+.transition(@transition) {
+  -webkit-transition: @transition;
+       -o-transition: @transition;
+          transition: @transition;
+}
+.transition-property(@transition-property) {
+  -webkit-transition-property: @transition-property;
+          transition-property: @transition-property;
+}
+.transition-delay(@transition-delay) {
+  -webkit-transition-delay: @transition-delay;
+          transition-delay: @transition-delay;
+}
+.transition-duration(@transition-duration) {
+  -webkit-transition-duration: @transition-duration;
+          transition-duration: @transition-duration;
+}
+.transition-timing-function(@timing-function) {
+  -webkit-transition-timing-function: @timing-function;
+          transition-timing-function: @timing-function;
+}
+.transition-transform(@transition) {
+  -webkit-transition: -webkit-transform @transition;
+     -moz-transition: -moz-transform @transition;
+       -o-transition: -o-transform @transition;
+          transition: transform @transition;
+}
+
+
+// User select
+// For selecting text on the page
+
+.user-select(@select) {
+  -webkit-user-select: @select;
+     -moz-user-select: @select;
+      -ms-user-select: @select; // IE10+
+          user-select: @select;
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/modals.less b/src/main/webapp/vendors/bootstrap/less/modals.less
new file mode 100644
index 0000000000000000000000000000000000000000..767ce36ba3763df166963a2e7e330c19f3b708b3
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/modals.less
@@ -0,0 +1,150 @@
+//
+// Modals
+// --------------------------------------------------
+
+// .modal-open      - body class for killing the scroll
+// .modal           - container to scroll within
+// .modal-dialog    - positioning shell for the actual modal
+// .modal-content   - actual modal w/ bg and corners and shit
+
+// Kill the scroll on the body
+.modal-open {
+  overflow: hidden;
+}
+
+// Container that the modal scrolls within
+.modal {
+  display: none;
+  overflow: hidden;
+  position: fixed;
+  top: 0;
+  right: 0;
+  bottom: 0;
+  left: 0;
+  z-index: @zindex-modal;
+  -webkit-overflow-scrolling: touch;
+
+  // Prevent Chrome on Windows from adding a focus outline. For details, see
+  // https://github.com/twbs/bootstrap/pull/10951.
+  outline: 0;
+
+  // When fading in the modal, animate it to slide down
+  &.fade .modal-dialog {
+    .translate(0, -25%);
+    .transition-transform(~"0.3s ease-out");
+  }
+  &.in .modal-dialog { .translate(0, 0) }
+}
+.modal-open .modal {
+  overflow-x: hidden;
+  overflow-y: auto;
+}
+
+// Shell div to position the modal with bottom padding
+.modal-dialog {
+  position: relative;
+  width: auto;
+  margin: 10px;
+}
+
+// Actual modal
+.modal-content {
+  position: relative;
+  background-color: @modal-content-bg;
+  border: 1px solid @modal-content-fallback-border-color; //old browsers fallback (ie8 etc)
+  border: 1px solid @modal-content-border-color;
+  border-radius: @border-radius-large;
+  .box-shadow(0 3px 9px rgba(0,0,0,.5));
+  background-clip: padding-box;
+  // Remove focus outline from opened modal
+  outline: 0;
+}
+
+// Modal background
+.modal-backdrop {
+  position: fixed;
+  top: 0;
+  right: 0;
+  bottom: 0;
+  left: 0;
+  z-index: @zindex-modal-background;
+  background-color: @modal-backdrop-bg;
+  // Fade for backdrop
+  &.fade { .opacity(0); }
+  &.in { .opacity(@modal-backdrop-opacity); }
+}
+
+// Modal header
+// Top section of the modal w/ title and dismiss
+.modal-header {
+  padding: @modal-title-padding;
+  border-bottom: 1px solid @modal-header-border-color;
+  &:extend(.clearfix all);
+}
+// Close icon
+.modal-header .close {
+  margin-top: -2px;
+}
+
+// Title text within header
+.modal-title {
+  margin: 0;
+  line-height: @modal-title-line-height;
+}
+
+// Modal body
+// Where all modal content resides (sibling of .modal-header and .modal-footer)
+.modal-body {
+  position: relative;
+  padding: @modal-inner-padding;
+}
+
+// Footer (for actions)
+.modal-footer {
+  padding: @modal-inner-padding;
+  text-align: right; // right align buttons
+  border-top: 1px solid @modal-footer-border-color;
+  &:extend(.clearfix all); // clear it in case folks use .pull-* classes on buttons
+
+  // Properly space out buttons
+  .btn + .btn {
+    margin-left: 5px;
+    margin-bottom: 0; // account for input[type="submit"] which gets the bottom margin like all other inputs
+  }
+  // but override that for button groups
+  .btn-group .btn + .btn {
+    margin-left: -1px;
+  }
+  // and override it for block buttons as well
+  .btn-block + .btn-block {
+    margin-left: 0;
+  }
+}
+
+// Measure scrollbar width for padding body during modal show/hide
+.modal-scrollbar-measure {
+  position: absolute;
+  top: -9999px;
+  width: 50px;
+  height: 50px;
+  overflow: scroll;
+}
+
+// Scale up the modal
+@media (min-width: @screen-sm-min) {
+  // Automatically set modal's width for larger viewports
+  .modal-dialog {
+    width: @modal-md;
+    margin: 30px auto;
+  }
+  .modal-content {
+    .box-shadow(0 5px 15px rgba(0,0,0,.5));
+  }
+
+  // Modal sizes
+  .modal-sm { width: @modal-sm; }
+}
+
+@media (min-width: @screen-md-min) {
+  .modal-lg { width: @modal-lg; }
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/navbar.less b/src/main/webapp/vendors/bootstrap/less/navbar.less
new file mode 100644
index 0000000000000000000000000000000000000000..6d751bb9ce0adfe6aac21bc69fbb9aa43880eae0
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/navbar.less
@@ -0,0 +1,660 @@
+//
+// Navbars
+// --------------------------------------------------
+
+
+// Wrapper and base class
+//
+// Provide a static navbar from which we expand to create full-width, fixed, and
+// other navbar variations.
+
+.navbar {
+  position: relative;
+  min-height: @navbar-height; // Ensure a navbar always shows (e.g., without a .navbar-brand in collapsed mode)
+  margin-bottom: @navbar-margin-bottom;
+  border: 1px solid transparent;
+
+  // Prevent floats from breaking the navbar
+  &:extend(.clearfix all);
+
+  @media (min-width: @grid-float-breakpoint) {
+    border-radius: @navbar-border-radius;
+  }
+}
+
+
+// Navbar heading
+//
+// Groups `.navbar-brand` and `.navbar-toggle` into a single component for easy
+// styling of responsive aspects.
+
+.navbar-header {
+  &:extend(.clearfix all);
+
+  @media (min-width: @grid-float-breakpoint) {
+    float: left;
+  }
+}
+
+
+// Navbar collapse (body)
+//
+// Group your navbar content into this for easy collapsing and expanding across
+// various device sizes. By default, this content is collapsed when <768px, but
+// will expand past that for a horizontal display.
+//
+// To start (on mobile devices) the navbar links, forms, and buttons are stacked
+// vertically and include a `max-height` to overflow in case you have too much
+// content for the user's viewport.
+
+.navbar-collapse {
+  overflow-x: visible;
+  padding-right: @navbar-padding-horizontal;
+  padding-left:  @navbar-padding-horizontal;
+  border-top: 1px solid transparent;
+  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
+  &:extend(.clearfix all);
+  -webkit-overflow-scrolling: touch;
+
+  &.in {
+    overflow-y: auto;
+  }
+
+  @media (min-width: @grid-float-breakpoint) {
+    width: auto;
+    border-top: 0;
+    box-shadow: none;
+
+    &.collapse {
+      display: block !important;
+      height: auto !important;
+      padding-bottom: 0; // Override default setting
+      overflow: visible !important;
+    }
+
+    &.in {
+      overflow-y: visible;
+    }
+
+    // Undo the collapse side padding for navbars with containers to ensure
+    // alignment of right-aligned contents.
+    .navbar-fixed-top &,
+    .navbar-static-top &,
+    .navbar-fixed-bottom & {
+      padding-left: 0;
+      padding-right: 0;
+    }
+  }
+}
+
+.navbar-fixed-top,
+.navbar-fixed-bottom {
+  .navbar-collapse {
+    max-height: @navbar-collapse-max-height;
+
+    @media (max-device-width: @screen-xs-min) and (orientation: landscape) {
+      max-height: 200px;
+    }
+  }
+}
+
+
+// Both navbar header and collapse
+//
+// When a container is present, change the behavior of the header and collapse.
+
+.container,
+.container-fluid {
+  > .navbar-header,
+  > .navbar-collapse {
+    margin-right: -@navbar-padding-horizontal;
+    margin-left:  -@navbar-padding-horizontal;
+
+    @media (min-width: @grid-float-breakpoint) {
+      margin-right: 0;
+      margin-left:  0;
+    }
+  }
+}
+
+
+//
+// Navbar alignment options
+//
+// Display the navbar across the entirety of the page or fixed it to the top or
+// bottom of the page.
+
+// Static top (unfixed, but 100% wide) navbar
+.navbar-static-top {
+  z-index: @zindex-navbar;
+  border-width: 0 0 1px;
+
+  @media (min-width: @grid-float-breakpoint) {
+    border-radius: 0;
+  }
+}
+
+// Fix the top/bottom navbars when screen real estate supports it
+.navbar-fixed-top,
+.navbar-fixed-bottom {
+  position: fixed;
+  right: 0;
+  left: 0;
+  z-index: @zindex-navbar-fixed;
+
+  // Undo the rounded corners
+  @media (min-width: @grid-float-breakpoint) {
+    border-radius: 0;
+  }
+}
+.navbar-fixed-top {
+  top: 0;
+  border-width: 0 0 1px;
+}
+.navbar-fixed-bottom {
+  bottom: 0;
+  margin-bottom: 0; // override .navbar defaults
+  border-width: 1px 0 0;
+}
+
+
+// Brand/project name
+
+.navbar-brand {
+  float: left;
+  padding: @navbar-padding-vertical @navbar-padding-horizontal;
+  font-size: @font-size-large;
+  line-height: @line-height-computed;
+  height: @navbar-height;
+
+  &:hover,
+  &:focus {
+    text-decoration: none;
+  }
+
+  > img {
+    display: block;
+  }
+
+  @media (min-width: @grid-float-breakpoint) {
+    .navbar > .container &,
+    .navbar > .container-fluid & {
+      margin-left: -@navbar-padding-horizontal;
+    }
+  }
+}
+
+
+// Navbar toggle
+//
+// Custom button for toggling the `.navbar-collapse`, powered by the collapse
+// JavaScript plugin.
+
+.navbar-toggle {
+  position: relative;
+  float: right;
+  margin-right: @navbar-padding-horizontal;
+  padding: 9px 10px;
+  .navbar-vertical-align(34px);
+  background-color: transparent;
+  background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214
+  border: 1px solid transparent;
+  border-radius: @border-radius-base;
+
+  // We remove the `outline` here, but later compensate by attaching `:hover`
+  // styles to `:focus`.
+  &:focus {
+    outline: 0;
+  }
+
+  // Bars
+  .icon-bar {
+    display: block;
+    width: 22px;
+    height: 2px;
+    border-radius: 1px;
+  }
+  .icon-bar + .icon-bar {
+    margin-top: 4px;
+  }
+
+  @media (min-width: @grid-float-breakpoint) {
+    display: none;
+  }
+}
+
+
+// Navbar nav links
+//
+// Builds on top of the `.nav` components with its own modifier class to make
+// the nav the full height of the horizontal nav (above 768px).
+
+.navbar-nav {
+  margin: (@navbar-padding-vertical / 2) -@navbar-padding-horizontal;
+
+  > li > a {
+    padding-top:    10px;
+    padding-bottom: 10px;
+    line-height: @line-height-computed;
+  }
+
+  @media (max-width: @grid-float-breakpoint-max) {
+    // Dropdowns get custom display when collapsed
+    .open .dropdown-menu {
+      position: static;
+      float: none;
+      width: auto;
+      margin-top: 0;
+      background-color: transparent;
+      border: 0;
+      box-shadow: none;
+      > li > a,
+      .dropdown-header {
+        padding: 5px 15px 5px 25px;
+      }
+      > li > a {
+        line-height: @line-height-computed;
+        &:hover,
+        &:focus {
+          background-image: none;
+        }
+      }
+    }
+  }
+
+  // Uncollapse the nav
+  @media (min-width: @grid-float-breakpoint) {
+    float: left;
+    margin: 0;
+
+    > li {
+      float: left;
+      > a {
+        padding-top:    @navbar-padding-vertical;
+        padding-bottom: @navbar-padding-vertical;
+      }
+    }
+  }
+}
+
+
+// Navbar form
+//
+// Extension of the `.form-inline` with some extra flavor for optimum display in
+// our navbars.
+
+.navbar-form {
+  margin-left: -@navbar-padding-horizontal;
+  margin-right: -@navbar-padding-horizontal;
+  padding: 10px @navbar-padding-horizontal;
+  border-top: 1px solid transparent;
+  border-bottom: 1px solid transparent;
+  @shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);
+  .box-shadow(@shadow);
+
+  // Mixin behavior for optimum display
+  .form-inline();
+
+  .form-group {
+    @media (max-width: @grid-float-breakpoint-max) {
+      margin-bottom: 5px;
+
+      &:last-child {
+        margin-bottom: 0;
+      }
+    }
+  }
+
+  // Vertically center in expanded, horizontal navbar
+  .navbar-vertical-align(@input-height-base);
+
+  // Undo 100% width for pull classes
+  @media (min-width: @grid-float-breakpoint) {
+    width: auto;
+    border: 0;
+    margin-left: 0;
+    margin-right: 0;
+    padding-top: 0;
+    padding-bottom: 0;
+    .box-shadow(none);
+  }
+}
+
+
+// Dropdown menus
+
+// Menu position and menu carets
+.navbar-nav > li > .dropdown-menu {
+  margin-top: 0;
+  .border-top-radius(0);
+}
+// Menu position and menu caret support for dropups via extra dropup class
+.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
+  margin-bottom: 0;
+  .border-top-radius(@navbar-border-radius);
+  .border-bottom-radius(0);
+}
+
+
+// Buttons in navbars
+//
+// Vertically center a button within a navbar (when *not* in a form).
+
+.navbar-btn {
+  .navbar-vertical-align(@input-height-base);
+
+  &.btn-sm {
+    .navbar-vertical-align(@input-height-small);
+  }
+  &.btn-xs {
+    .navbar-vertical-align(22);
+  }
+}
+
+
+// Text in navbars
+//
+// Add a class to make any element properly align itself vertically within the navbars.
+
+.navbar-text {
+  .navbar-vertical-align(@line-height-computed);
+
+  @media (min-width: @grid-float-breakpoint) {
+    float: left;
+    margin-left: @navbar-padding-horizontal;
+    margin-right: @navbar-padding-horizontal;
+  }
+}
+
+
+// Component alignment
+//
+// Repurpose the pull utilities as their own navbar utilities to avoid specificity
+// issues with parents and chaining. Only do this when the navbar is uncollapsed
+// though so that navbar contents properly stack and align in mobile.
+//
+// Declared after the navbar components to ensure more specificity on the margins.
+
+@media (min-width: @grid-float-breakpoint) {
+  .navbar-left  { .pull-left(); }
+  .navbar-right {
+    .pull-right();
+    margin-right: -@navbar-padding-horizontal;
+
+    ~ .navbar-right {
+      margin-right: 0;
+    }
+  }
+}
+
+
+// Alternate navbars
+// --------------------------------------------------
+
+// Default navbar
+.navbar-default {
+  background-color: @navbar-default-bg;
+  border-color: @navbar-default-border;
+
+  .navbar-brand {
+    color: @navbar-default-brand-color;
+    &:hover,
+    &:focus {
+      color: @navbar-default-brand-hover-color;
+      background-color: @navbar-default-brand-hover-bg;
+    }
+  }
+
+  .navbar-text {
+    color: @navbar-default-color;
+  }
+
+  .navbar-nav {
+    > li > a {
+      color: @navbar-default-link-color;
+
+      &:hover,
+      &:focus {
+        color: @navbar-default-link-hover-color;
+        background-color: @navbar-default-link-hover-bg;
+      }
+    }
+    > .active > a {
+      &,
+      &:hover,
+      &:focus {
+        color: @navbar-default-link-active-color;
+        background-color: @navbar-default-link-active-bg;
+      }
+    }
+    > .disabled > a {
+      &,
+      &:hover,
+      &:focus {
+        color: @navbar-default-link-disabled-color;
+        background-color: @navbar-default-link-disabled-bg;
+      }
+    }
+  }
+
+  .navbar-toggle {
+    border-color: @navbar-default-toggle-border-color;
+    &:hover,
+    &:focus {
+      background-color: @navbar-default-toggle-hover-bg;
+    }
+    .icon-bar {
+      background-color: @navbar-default-toggle-icon-bar-bg;
+    }
+  }
+
+  .navbar-collapse,
+  .navbar-form {
+    border-color: @navbar-default-border;
+  }
+
+  // Dropdown menu items
+  .navbar-nav {
+    // Remove background color from open dropdown
+    > .open > a {
+      &,
+      &:hover,
+      &:focus {
+        background-color: @navbar-default-link-active-bg;
+        color: @navbar-default-link-active-color;
+      }
+    }
+
+    @media (max-width: @grid-float-breakpoint-max) {
+      // Dropdowns get custom display when collapsed
+      .open .dropdown-menu {
+        > li > a {
+          color: @navbar-default-link-color;
+          &:hover,
+          &:focus {
+            color: @navbar-default-link-hover-color;
+            background-color: @navbar-default-link-hover-bg;
+          }
+        }
+        > .active > a {
+          &,
+          &:hover,
+          &:focus {
+            color: @navbar-default-link-active-color;
+            background-color: @navbar-default-link-active-bg;
+          }
+        }
+        > .disabled > a {
+          &,
+          &:hover,
+          &:focus {
+            color: @navbar-default-link-disabled-color;
+            background-color: @navbar-default-link-disabled-bg;
+          }
+        }
+      }
+    }
+  }
+
+
+  // Links in navbars
+  //
+  // Add a class to ensure links outside the navbar nav are colored correctly.
+
+  .navbar-link {
+    color: @navbar-default-link-color;
+    &:hover {
+      color: @navbar-default-link-hover-color;
+    }
+  }
+
+  .btn-link {
+    color: @navbar-default-link-color;
+    &:hover,
+    &:focus {
+      color: @navbar-default-link-hover-color;
+    }
+    &[disabled],
+    fieldset[disabled] & {
+      &:hover,
+      &:focus {
+        color: @navbar-default-link-disabled-color;
+      }
+    }
+  }
+}
+
+// Inverse navbar
+
+.navbar-inverse {
+  background-color: @navbar-inverse-bg;
+  border-color: @navbar-inverse-border;
+
+  .navbar-brand {
+    color: @navbar-inverse-brand-color;
+    &:hover,
+    &:focus {
+      color: @navbar-inverse-brand-hover-color;
+      background-color: @navbar-inverse-brand-hover-bg;
+    }
+  }
+
+  .navbar-text {
+    color: @navbar-inverse-color;
+  }
+
+  .navbar-nav {
+    > li > a {
+      color: @navbar-inverse-link-color;
+
+      &:hover,
+      &:focus {
+        color: @navbar-inverse-link-hover-color;
+        background-color: @navbar-inverse-link-hover-bg;
+      }
+    }
+    > .active > a {
+      &,
+      &:hover,
+      &:focus {
+        color: @navbar-inverse-link-active-color;
+        background-color: @navbar-inverse-link-active-bg;
+      }
+    }
+    > .disabled > a {
+      &,
+      &:hover,
+      &:focus {
+        color: @navbar-inverse-link-disabled-color;
+        background-color: @navbar-inverse-link-disabled-bg;
+      }
+    }
+  }
+
+  // Darken the responsive nav toggle
+  .navbar-toggle {
+    border-color: @navbar-inverse-toggle-border-color;
+    &:hover,
+    &:focus {
+      background-color: @navbar-inverse-toggle-hover-bg;
+    }
+    .icon-bar {
+      background-color: @navbar-inverse-toggle-icon-bar-bg;
+    }
+  }
+
+  .navbar-collapse,
+  .navbar-form {
+    border-color: darken(@navbar-inverse-bg, 7%);
+  }
+
+  // Dropdowns
+  .navbar-nav {
+    > .open > a {
+      &,
+      &:hover,
+      &:focus {
+        background-color: @navbar-inverse-link-active-bg;
+        color: @navbar-inverse-link-active-color;
+      }
+    }
+
+    @media (max-width: @grid-float-breakpoint-max) {
+      // Dropdowns get custom display
+      .open .dropdown-menu {
+        > .dropdown-header {
+          border-color: @navbar-inverse-border;
+        }
+        .divider {
+          background-color: @navbar-inverse-border;
+        }
+        > li > a {
+          color: @navbar-inverse-link-color;
+          &:hover,
+          &:focus {
+            color: @navbar-inverse-link-hover-color;
+            background-color: @navbar-inverse-link-hover-bg;
+          }
+        }
+        > .active > a {
+          &,
+          &:hover,
+          &:focus {
+            color: @navbar-inverse-link-active-color;
+            background-color: @navbar-inverse-link-active-bg;
+          }
+        }
+        > .disabled > a {
+          &,
+          &:hover,
+          &:focus {
+            color: @navbar-inverse-link-disabled-color;
+            background-color: @navbar-inverse-link-disabled-bg;
+          }
+        }
+      }
+    }
+  }
+
+  .navbar-link {
+    color: @navbar-inverse-link-color;
+    &:hover {
+      color: @navbar-inverse-link-hover-color;
+    }
+  }
+
+  .btn-link {
+    color: @navbar-inverse-link-color;
+    &:hover,
+    &:focus {
+      color: @navbar-inverse-link-hover-color;
+    }
+    &[disabled],
+    fieldset[disabled] & {
+      &:hover,
+      &:focus {
+        color: @navbar-inverse-link-disabled-color;
+      }
+    }
+  }
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/navs.less b/src/main/webapp/vendors/bootstrap/less/navs.less
new file mode 100644
index 0000000000000000000000000000000000000000..a3d11b136211f3ee4a4d3beeb19c5ffba203b15b
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/navs.less
@@ -0,0 +1,242 @@
+//
+// Navs
+// --------------------------------------------------
+
+
+// Base class
+// --------------------------------------------------
+
+.nav {
+  margin-bottom: 0;
+  padding-left: 0; // Override default ul/ol
+  list-style: none;
+  &:extend(.clearfix all);
+
+  > li {
+    position: relative;
+    display: block;
+
+    > a {
+      position: relative;
+      display: block;
+      padding: @nav-link-padding;
+      &:hover,
+      &:focus {
+        text-decoration: none;
+        background-color: @nav-link-hover-bg;
+      }
+    }
+
+    // Disabled state sets text to gray and nukes hover/tab effects
+    &.disabled > a {
+      color: @nav-disabled-link-color;
+
+      &:hover,
+      &:focus {
+        color: @nav-disabled-link-hover-color;
+        text-decoration: none;
+        background-color: transparent;
+        cursor: @cursor-disabled;
+      }
+    }
+  }
+
+  // Open dropdowns
+  .open > a {
+    &,
+    &:hover,
+    &:focus {
+      background-color: @nav-link-hover-bg;
+      border-color: @link-color;
+    }
+  }
+
+  // Nav dividers (deprecated with v3.0.1)
+  //
+  // This should have been removed in v3 with the dropping of `.nav-list`, but
+  // we missed it. We don't currently support this anywhere, but in the interest
+  // of maintaining backward compatibility in case you use it, it's deprecated.
+  .nav-divider {
+    .nav-divider();
+  }
+
+  // Prevent IE8 from misplacing imgs
+  //
+  // See https://github.com/h5bp/html5-boilerplate/issues/984#issuecomment-3985989
+  > li > a > img {
+    max-width: none;
+  }
+}
+
+
+// Tabs
+// -------------------------
+
+// Give the tabs something to sit on
+.nav-tabs {
+  border-bottom: 1px solid @nav-tabs-border-color;
+  > li {
+    float: left;
+    // Make the list-items overlay the bottom border
+    margin-bottom: -1px;
+
+    // Actual tabs (as links)
+    > a {
+      margin-right: 2px;
+      line-height: @line-height-base;
+      border: 1px solid transparent;
+      border-radius: @border-radius-base @border-radius-base 0 0;
+      &:hover {
+        border-color: @nav-tabs-link-hover-border-color @nav-tabs-link-hover-border-color @nav-tabs-border-color;
+      }
+    }
+
+    // Active state, and its :hover to override normal :hover
+    &.active > a {
+      &,
+      &:hover,
+      &:focus {
+        color: @nav-tabs-active-link-hover-color;
+        background-color: @nav-tabs-active-link-hover-bg;
+        border: 1px solid @nav-tabs-active-link-hover-border-color;
+        border-bottom-color: transparent;
+        cursor: default;
+      }
+    }
+  }
+  // pulling this in mainly for less shorthand
+  &.nav-justified {
+    .nav-justified();
+    .nav-tabs-justified();
+  }
+}
+
+
+// Pills
+// -------------------------
+.nav-pills {
+  > li {
+    float: left;
+
+    // Links rendered as pills
+    > a {
+      border-radius: @nav-pills-border-radius;
+    }
+    + li {
+      margin-left: 2px;
+    }
+
+    // Active state
+    &.active > a {
+      &,
+      &:hover,
+      &:focus {
+        color: @nav-pills-active-link-hover-color;
+        background-color: @nav-pills-active-link-hover-bg;
+      }
+    }
+  }
+}
+
+
+// Stacked pills
+.nav-stacked {
+  > li {
+    float: none;
+    + li {
+      margin-top: 2px;
+      margin-left: 0; // no need for this gap between nav items
+    }
+  }
+}
+
+
+// Nav variations
+// --------------------------------------------------
+
+// Justified nav links
+// -------------------------
+
+.nav-justified {
+  width: 100%;
+
+  > li {
+    float: none;
+    > a {
+      text-align: center;
+      margin-bottom: 5px;
+    }
+  }
+
+  > .dropdown .dropdown-menu {
+    top: auto;
+    left: auto;
+  }
+
+  @media (min-width: @screen-sm-min) {
+    > li {
+      display: table-cell;
+      width: 1%;
+      > a {
+        margin-bottom: 0;
+      }
+    }
+  }
+}
+
+// Move borders to anchors instead of bottom of list
+//
+// Mixin for adding on top the shared `.nav-justified` styles for our tabs
+.nav-tabs-justified {
+  border-bottom: 0;
+
+  > li > a {
+    // Override margin from .nav-tabs
+    margin-right: 0;
+    border-radius: @border-radius-base;
+  }
+
+  > .active > a,
+  > .active > a:hover,
+  > .active > a:focus {
+    border: 1px solid @nav-tabs-justified-link-border-color;
+  }
+
+  @media (min-width: @screen-sm-min) {
+    > li > a {
+      border-bottom: 1px solid @nav-tabs-justified-link-border-color;
+      border-radius: @border-radius-base @border-radius-base 0 0;
+    }
+    > .active > a,
+    > .active > a:hover,
+    > .active > a:focus {
+      border-bottom-color: @nav-tabs-justified-active-link-border-color;
+    }
+  }
+}
+
+
+// Tabbable tabs
+// -------------------------
+
+// Hide tabbable panes to start, show them when `.active`
+.tab-content {
+  > .tab-pane {
+    display: none;
+  }
+  > .active {
+    display: block;
+  }
+}
+
+
+// Dropdowns
+// -------------------------
+
+// Specific dropdowns
+.nav-tabs .dropdown-menu {
+  // make dropdown border overlap tab border
+  margin-top: -1px;
+  // Remove the top rounded corners here since there is a hard edge above the menu
+  .border-top-radius(0);
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/normalize.less b/src/main/webapp/vendors/bootstrap/less/normalize.less
new file mode 100644
index 0000000000000000000000000000000000000000..9dddf73ad2924561afa704701655f2cbc011d7df
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/normalize.less
@@ -0,0 +1,424 @@
+/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
+
+//
+// 1. Set default font family to sans-serif.
+// 2. Prevent iOS and IE text size adjust after device orientation change,
+//    without disabling user zoom.
+//
+
+html {
+  font-family: sans-serif; // 1
+  -ms-text-size-adjust: 100%; // 2
+  -webkit-text-size-adjust: 100%; // 2
+}
+
+//
+// Remove default margin.
+//
+
+body {
+  margin: 0;
+}
+
+// HTML5 display definitions
+// ==========================================================================
+
+//
+// Correct `block` display not defined for any HTML5 element in IE 8/9.
+// Correct `block` display not defined for `details` or `summary` in IE 10/11
+// and Firefox.
+// Correct `block` display not defined for `main` in IE 11.
+//
+
+article,
+aside,
+details,
+figcaption,
+figure,
+footer,
+header,
+hgroup,
+main,
+menu,
+nav,
+section,
+summary {
+  display: block;
+}
+
+//
+// 1. Correct `inline-block` display not defined in IE 8/9.
+// 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
+//
+
+audio,
+canvas,
+progress,
+video {
+  display: inline-block; // 1
+  vertical-align: baseline; // 2
+}
+
+//
+// Prevent modern browsers from displaying `audio` without controls.
+// Remove excess height in iOS 5 devices.
+//
+
+audio:not([controls]) {
+  display: none;
+  height: 0;
+}
+
+//
+// Address `[hidden]` styling not present in IE 8/9/10.
+// Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
+//
+
+[hidden],
+template {
+  display: none;
+}
+
+// Links
+// ==========================================================================
+
+//
+// Remove the gray background color from active links in IE 10.
+//
+
+a {
+  background-color: transparent;
+}
+
+//
+// Improve readability of focused elements when they are also in an
+// active/hover state.
+//
+
+a:active,
+a:hover {
+  outline: 0;
+}
+
+// Text-level semantics
+// ==========================================================================
+
+//
+// Address styling not present in IE 8/9/10/11, Safari, and Chrome.
+//
+
+abbr[title] {
+  border-bottom: 1px dotted;
+}
+
+//
+// Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
+//
+
+b,
+strong {
+  font-weight: bold;
+}
+
+//
+// Address styling not present in Safari and Chrome.
+//
+
+dfn {
+  font-style: italic;
+}
+
+//
+// Address variable `h1` font-size and margin within `section` and `article`
+// contexts in Firefox 4+, Safari, and Chrome.
+//
+
+h1 {
+  font-size: 2em;
+  margin: 0.67em 0;
+}
+
+//
+// Address styling not present in IE 8/9.
+//
+
+mark {
+  background: #ff0;
+  color: #000;
+}
+
+//
+// Address inconsistent and variable font size in all browsers.
+//
+
+small {
+  font-size: 80%;
+}
+
+//
+// Prevent `sub` and `sup` affecting `line-height` in all browsers.
+//
+
+sub,
+sup {
+  font-size: 75%;
+  line-height: 0;
+  position: relative;
+  vertical-align: baseline;
+}
+
+sup {
+  top: -0.5em;
+}
+
+sub {
+  bottom: -0.25em;
+}
+
+// Embedded content
+// ==========================================================================
+
+//
+// Remove border when inside `a` element in IE 8/9/10.
+//
+
+img {
+  border: 0;
+}
+
+//
+// Correct overflow not hidden in IE 9/10/11.
+//
+
+svg:not(:root) {
+  overflow: hidden;
+}
+
+// Grouping content
+// ==========================================================================
+
+//
+// Address margin not present in IE 8/9 and Safari.
+//
+
+figure {
+  margin: 1em 40px;
+}
+
+//
+// Address differences between Firefox and other browsers.
+//
+
+hr {
+  box-sizing: content-box;
+  height: 0;
+}
+
+//
+// Contain overflow in all browsers.
+//
+
+pre {
+  overflow: auto;
+}
+
+//
+// Address odd `em`-unit font size rendering in all browsers.
+//
+
+code,
+kbd,
+pre,
+samp {
+  font-family: monospace, monospace;
+  font-size: 1em;
+}
+
+// Forms
+// ==========================================================================
+
+//
+// Known limitation: by default, Chrome and Safari on OS X allow very limited
+// styling of `select`, unless a `border` property is set.
+//
+
+//
+// 1. Correct color not being inherited.
+//    Known issue: affects color of disabled elements.
+// 2. Correct font properties not being inherited.
+// 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
+//
+
+button,
+input,
+optgroup,
+select,
+textarea {
+  color: inherit; // 1
+  font: inherit; // 2
+  margin: 0; // 3
+}
+
+//
+// Address `overflow` set to `hidden` in IE 8/9/10/11.
+//
+
+button {
+  overflow: visible;
+}
+
+//
+// Address inconsistent `text-transform` inheritance for `button` and `select`.
+// All other form control elements do not inherit `text-transform` values.
+// Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
+// Correct `select` style inheritance in Firefox.
+//
+
+button,
+select {
+  text-transform: none;
+}
+
+//
+// 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
+//    and `video` controls.
+// 2. Correct inability to style clickable `input` types in iOS.
+// 3. Improve usability and consistency of cursor style between image-type
+//    `input` and others.
+//
+
+button,
+html input[type="button"], // 1
+input[type="reset"],
+input[type="submit"] {
+  -webkit-appearance: button; // 2
+  cursor: pointer; // 3
+}
+
+//
+// Re-set default cursor for disabled elements.
+//
+
+button[disabled],
+html input[disabled] {
+  cursor: default;
+}
+
+//
+// Remove inner padding and border in Firefox 4+.
+//
+
+button::-moz-focus-inner,
+input::-moz-focus-inner {
+  border: 0;
+  padding: 0;
+}
+
+//
+// Address Firefox 4+ setting `line-height` on `input` using `!important` in
+// the UA stylesheet.
+//
+
+input {
+  line-height: normal;
+}
+
+//
+// It's recommended that you don't attempt to style these elements.
+// Firefox's implementation doesn't respect box-sizing, padding, or width.
+//
+// 1. Address box sizing set to `content-box` in IE 8/9/10.
+// 2. Remove excess padding in IE 8/9/10.
+//
+
+input[type="checkbox"],
+input[type="radio"] {
+  box-sizing: border-box; // 1
+  padding: 0; // 2
+}
+
+//
+// Fix the cursor style for Chrome's increment/decrement buttons. For certain
+// `font-size` values of the `input`, it causes the cursor style of the
+// decrement button to change from `default` to `text`.
+//
+
+input[type="number"]::-webkit-inner-spin-button,
+input[type="number"]::-webkit-outer-spin-button {
+  height: auto;
+}
+
+//
+// 1. Address `appearance` set to `searchfield` in Safari and Chrome.
+// 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
+//
+
+input[type="search"] {
+  -webkit-appearance: textfield; // 1
+  box-sizing: content-box; //2
+}
+
+//
+// Remove inner padding and search cancel button in Safari and Chrome on OS X.
+// Safari (but not Chrome) clips the cancel button when the search input has
+// padding (and `textfield` appearance).
+//
+
+input[type="search"]::-webkit-search-cancel-button,
+input[type="search"]::-webkit-search-decoration {
+  -webkit-appearance: none;
+}
+
+//
+// Define consistent border, margin, and padding.
+//
+
+fieldset {
+  border: 1px solid #c0c0c0;
+  margin: 0 2px;
+  padding: 0.35em 0.625em 0.75em;
+}
+
+//
+// 1. Correct `color` not being inherited in IE 8/9/10/11.
+// 2. Remove padding so people aren't caught out if they zero out fieldsets.
+//
+
+legend {
+  border: 0; // 1
+  padding: 0; // 2
+}
+
+//
+// Remove default vertical scrollbar in IE 8/9/10/11.
+//
+
+textarea {
+  overflow: auto;
+}
+
+//
+// Don't inherit the `font-weight` (applied by a rule above).
+// NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
+//
+
+optgroup {
+  font-weight: bold;
+}
+
+// Tables
+// ==========================================================================
+
+//
+// Remove most spacing between table cells.
+//
+
+table {
+  border-collapse: collapse;
+  border-spacing: 0;
+}
+
+td,
+th {
+  padding: 0;
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/pager.less b/src/main/webapp/vendors/bootstrap/less/pager.less
new file mode 100644
index 0000000000000000000000000000000000000000..41abaaadc5dc605c75de869dab943599ef31fbbd
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/pager.less
@@ -0,0 +1,54 @@
+//
+// Pager pagination
+// --------------------------------------------------
+
+
+.pager {
+  padding-left: 0;
+  margin: @line-height-computed 0;
+  list-style: none;
+  text-align: center;
+  &:extend(.clearfix all);
+  li {
+    display: inline;
+    > a,
+    > span {
+      display: inline-block;
+      padding: 5px 14px;
+      background-color: @pager-bg;
+      border: 1px solid @pager-border;
+      border-radius: @pager-border-radius;
+    }
+
+    > a:hover,
+    > a:focus {
+      text-decoration: none;
+      background-color: @pager-hover-bg;
+    }
+  }
+
+  .next {
+    > a,
+    > span {
+      float: right;
+    }
+  }
+
+  .previous {
+    > a,
+    > span {
+      float: left;
+    }
+  }
+
+  .disabled {
+    > a,
+    > a:hover,
+    > a:focus,
+    > span {
+      color: @pager-disabled-color;
+      background-color: @pager-bg;
+      cursor: @cursor-disabled;
+    }
+  }
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/pagination.less b/src/main/webapp/vendors/bootstrap/less/pagination.less
new file mode 100644
index 0000000000000000000000000000000000000000..31f77aae4ed7bff3bfaac4f3acf393cfb24ad149
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/pagination.less
@@ -0,0 +1,89 @@
+//
+// Pagination (multiple pages)
+// --------------------------------------------------
+.pagination {
+  display: inline-block;
+  padding-left: 0;
+  margin: @line-height-computed 0;
+  border-radius: @border-radius-base;
+
+  > li {
+    display: inline; // Remove list-style and block-level defaults
+    > a,
+    > span {
+      position: relative;
+      float: left; // Collapse white-space
+      padding: @padding-base-vertical @padding-base-horizontal;
+      line-height: @line-height-base;
+      text-decoration: none;
+      color: @pagination-color;
+      background-color: @pagination-bg;
+      border: 1px solid @pagination-border;
+      margin-left: -1px;
+    }
+    &:first-child {
+      > a,
+      > span {
+        margin-left: 0;
+        .border-left-radius(@border-radius-base);
+      }
+    }
+    &:last-child {
+      > a,
+      > span {
+        .border-right-radius(@border-radius-base);
+      }
+    }
+  }
+
+  > li > a,
+  > li > span {
+    &:hover,
+    &:focus {
+      z-index: 2;
+      color: @pagination-hover-color;
+      background-color: @pagination-hover-bg;
+      border-color: @pagination-hover-border;
+    }
+  }
+
+  > .active > a,
+  > .active > span {
+    &,
+    &:hover,
+    &:focus {
+      z-index: 3;
+      color: @pagination-active-color;
+      background-color: @pagination-active-bg;
+      border-color: @pagination-active-border;
+      cursor: default;
+    }
+  }
+
+  > .disabled {
+    > span,
+    > span:hover,
+    > span:focus,
+    > a,
+    > a:hover,
+    > a:focus {
+      color: @pagination-disabled-color;
+      background-color: @pagination-disabled-bg;
+      border-color: @pagination-disabled-border;
+      cursor: @cursor-disabled;
+    }
+  }
+}
+
+// Sizing
+// --------------------------------------------------
+
+// Large
+.pagination-lg {
+  .pagination-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @border-radius-large);
+}
+
+// Small
+.pagination-sm {
+  .pagination-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @border-radius-small);
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/panels.less b/src/main/webapp/vendors/bootstrap/less/panels.less
new file mode 100644
index 0000000000000000000000000000000000000000..425eb5e642c15df5279493e542ad29b9195b7f93
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/panels.less
@@ -0,0 +1,271 @@
+//
+// Panels
+// --------------------------------------------------
+
+
+// Base class
+.panel {
+  margin-bottom: @line-height-computed;
+  background-color: @panel-bg;
+  border: 1px solid transparent;
+  border-radius: @panel-border-radius;
+  .box-shadow(0 1px 1px rgba(0,0,0,.05));
+}
+
+// Panel contents
+.panel-body {
+  padding: @panel-body-padding;
+  &:extend(.clearfix all);
+}
+
+// Optional heading
+.panel-heading {
+  padding: @panel-heading-padding;
+  border-bottom: 1px solid transparent;
+  .border-top-radius((@panel-border-radius - 1));
+
+  > .dropdown .dropdown-toggle {
+    color: inherit;
+  }
+}
+
+// Within heading, strip any `h*` tag of its default margins for spacing.
+.panel-title {
+  margin-top: 0;
+  margin-bottom: 0;
+  font-size: ceil((@font-size-base * 1.125));
+  color: inherit;
+
+  > a,
+  > small,
+  > .small,
+  > small > a,
+  > .small > a {
+    color: inherit;
+  }
+}
+
+// Optional footer (stays gray in every modifier class)
+.panel-footer {
+  padding: @panel-footer-padding;
+  background-color: @panel-footer-bg;
+  border-top: 1px solid @panel-inner-border;
+  .border-bottom-radius((@panel-border-radius - 1));
+}
+
+
+// List groups in panels
+//
+// By default, space out list group content from panel headings to account for
+// any kind of custom content between the two.
+
+.panel {
+  > .list-group,
+  > .panel-collapse > .list-group {
+    margin-bottom: 0;
+
+    .list-group-item {
+      border-width: 1px 0;
+      border-radius: 0;
+    }
+
+    // Add border top radius for first one
+    &:first-child {
+      .list-group-item:first-child {
+        border-top: 0;
+        .border-top-radius((@panel-border-radius - 1));
+      }
+    }
+
+    // Add border bottom radius for last one
+    &:last-child {
+      .list-group-item:last-child {
+        border-bottom: 0;
+        .border-bottom-radius((@panel-border-radius - 1));
+      }
+    }
+  }
+  > .panel-heading + .panel-collapse > .list-group {
+    .list-group-item:first-child {
+      .border-top-radius(0);
+    }
+  }
+}
+// Collapse space between when there's no additional content.
+.panel-heading + .list-group {
+  .list-group-item:first-child {
+    border-top-width: 0;
+  }
+}
+.list-group + .panel-footer {
+  border-top-width: 0;
+}
+
+// Tables in panels
+//
+// Place a non-bordered `.table` within a panel (not within a `.panel-body`) and
+// watch it go full width.
+
+.panel {
+  > .table,
+  > .table-responsive > .table,
+  > .panel-collapse > .table {
+    margin-bottom: 0;
+
+    caption {
+      padding-left: @panel-body-padding;
+      padding-right: @panel-body-padding;
+    }
+  }
+  // Add border top radius for first one
+  > .table:first-child,
+  > .table-responsive:first-child > .table:first-child {
+    .border-top-radius((@panel-border-radius - 1));
+
+    > thead:first-child,
+    > tbody:first-child {
+      > tr:first-child {
+        border-top-left-radius: (@panel-border-radius - 1);
+        border-top-right-radius: (@panel-border-radius - 1);
+
+        td:first-child,
+        th:first-child {
+          border-top-left-radius: (@panel-border-radius - 1);
+        }
+        td:last-child,
+        th:last-child {
+          border-top-right-radius: (@panel-border-radius - 1);
+        }
+      }
+    }
+  }
+  // Add border bottom radius for last one
+  > .table:last-child,
+  > .table-responsive:last-child > .table:last-child {
+    .border-bottom-radius((@panel-border-radius - 1));
+
+    > tbody:last-child,
+    > tfoot:last-child {
+      > tr:last-child {
+        border-bottom-left-radius: (@panel-border-radius - 1);
+        border-bottom-right-radius: (@panel-border-radius - 1);
+
+        td:first-child,
+        th:first-child {
+          border-bottom-left-radius: (@panel-border-radius - 1);
+        }
+        td:last-child,
+        th:last-child {
+          border-bottom-right-radius: (@panel-border-radius - 1);
+        }
+      }
+    }
+  }
+  > .panel-body + .table,
+  > .panel-body + .table-responsive,
+  > .table + .panel-body,
+  > .table-responsive + .panel-body {
+    border-top: 1px solid @table-border-color;
+  }
+  > .table > tbody:first-child > tr:first-child th,
+  > .table > tbody:first-child > tr:first-child td {
+    border-top: 0;
+  }
+  > .table-bordered,
+  > .table-responsive > .table-bordered {
+    border: 0;
+    > thead,
+    > tbody,
+    > tfoot {
+      > tr {
+        > th:first-child,
+        > td:first-child {
+          border-left: 0;
+        }
+        > th:last-child,
+        > td:last-child {
+          border-right: 0;
+        }
+      }
+    }
+    > thead,
+    > tbody {
+      > tr:first-child {
+        > td,
+        > th {
+          border-bottom: 0;
+        }
+      }
+    }
+    > tbody,
+    > tfoot {
+      > tr:last-child {
+        > td,
+        > th {
+          border-bottom: 0;
+        }
+      }
+    }
+  }
+  > .table-responsive {
+    border: 0;
+    margin-bottom: 0;
+  }
+}
+
+
+// Collapsable panels (aka, accordion)
+//
+// Wrap a series of panels in `.panel-group` to turn them into an accordion with
+// the help of our collapse JavaScript plugin.
+
+.panel-group {
+  margin-bottom: @line-height-computed;
+
+  // Tighten up margin so it's only between panels
+  .panel {
+    margin-bottom: 0;
+    border-radius: @panel-border-radius;
+
+    + .panel {
+      margin-top: 5px;
+    }
+  }
+
+  .panel-heading {
+    border-bottom: 0;
+
+    + .panel-collapse > .panel-body,
+    + .panel-collapse > .list-group {
+      border-top: 1px solid @panel-inner-border;
+    }
+  }
+
+  .panel-footer {
+    border-top: 0;
+    + .panel-collapse .panel-body {
+      border-bottom: 1px solid @panel-inner-border;
+    }
+  }
+}
+
+
+// Contextual variations
+.panel-default {
+  .panel-variant(@panel-default-border; @panel-default-text; @panel-default-heading-bg; @panel-default-border);
+}
+.panel-primary {
+  .panel-variant(@panel-primary-border; @panel-primary-text; @panel-primary-heading-bg; @panel-primary-border);
+}
+.panel-success {
+  .panel-variant(@panel-success-border; @panel-success-text; @panel-success-heading-bg; @panel-success-border);
+}
+.panel-info {
+  .panel-variant(@panel-info-border; @panel-info-text; @panel-info-heading-bg; @panel-info-border);
+}
+.panel-warning {
+  .panel-variant(@panel-warning-border; @panel-warning-text; @panel-warning-heading-bg; @panel-warning-border);
+}
+.panel-danger {
+  .panel-variant(@panel-danger-border; @panel-danger-text; @panel-danger-heading-bg; @panel-danger-border);
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/popovers.less b/src/main/webapp/vendors/bootstrap/less/popovers.less
new file mode 100644
index 0000000000000000000000000000000000000000..3a62a6455ac11c91fc20d63db2f49b9a7d872c15
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/popovers.less
@@ -0,0 +1,131 @@
+//
+// Popovers
+// --------------------------------------------------
+
+
+.popover {
+  position: absolute;
+  top: 0;
+  left: 0;
+  z-index: @zindex-popover;
+  display: none;
+  max-width: @popover-max-width;
+  padding: 1px;
+  // Our parent element can be arbitrary since popovers are by default inserted as a sibling of their target element.
+  // So reset our font and text properties to avoid inheriting weird values.
+  .reset-text();
+  font-size: @font-size-base;
+
+  background-color: @popover-bg;
+  background-clip: padding-box;
+  border: 1px solid @popover-fallback-border-color;
+  border: 1px solid @popover-border-color;
+  border-radius: @border-radius-large;
+  .box-shadow(0 5px 10px rgba(0,0,0,.2));
+
+  // Offset the popover to account for the popover arrow
+  &.top     { margin-top: -@popover-arrow-width; }
+  &.right   { margin-left: @popover-arrow-width; }
+  &.bottom  { margin-top: @popover-arrow-width; }
+  &.left    { margin-left: -@popover-arrow-width; }
+}
+
+.popover-title {
+  margin: 0; // reset heading margin
+  padding: 8px 14px;
+  font-size: @font-size-base;
+  background-color: @popover-title-bg;
+  border-bottom: 1px solid darken(@popover-title-bg, 5%);
+  border-radius: (@border-radius-large - 1) (@border-radius-large - 1) 0 0;
+}
+
+.popover-content {
+  padding: 9px 14px;
+}
+
+// Arrows
+//
+// .arrow is outer, .arrow:after is inner
+
+.popover > .arrow {
+  &,
+  &:after {
+    position: absolute;
+    display: block;
+    width: 0;
+    height: 0;
+    border-color: transparent;
+    border-style: solid;
+  }
+}
+.popover > .arrow {
+  border-width: @popover-arrow-outer-width;
+}
+.popover > .arrow:after {
+  border-width: @popover-arrow-width;
+  content: "";
+}
+
+.popover {
+  &.top > .arrow {
+    left: 50%;
+    margin-left: -@popover-arrow-outer-width;
+    border-bottom-width: 0;
+    border-top-color: @popover-arrow-outer-fallback-color; // IE8 fallback
+    border-top-color: @popover-arrow-outer-color;
+    bottom: -@popover-arrow-outer-width;
+    &:after {
+      content: " ";
+      bottom: 1px;
+      margin-left: -@popover-arrow-width;
+      border-bottom-width: 0;
+      border-top-color: @popover-arrow-color;
+    }
+  }
+  &.right > .arrow {
+    top: 50%;
+    left: -@popover-arrow-outer-width;
+    margin-top: -@popover-arrow-outer-width;
+    border-left-width: 0;
+    border-right-color: @popover-arrow-outer-fallback-color; // IE8 fallback
+    border-right-color: @popover-arrow-outer-color;
+    &:after {
+      content: " ";
+      left: 1px;
+      bottom: -@popover-arrow-width;
+      border-left-width: 0;
+      border-right-color: @popover-arrow-color;
+    }
+  }
+  &.bottom > .arrow {
+    left: 50%;
+    margin-left: -@popover-arrow-outer-width;
+    border-top-width: 0;
+    border-bottom-color: @popover-arrow-outer-fallback-color; // IE8 fallback
+    border-bottom-color: @popover-arrow-outer-color;
+    top: -@popover-arrow-outer-width;
+    &:after {
+      content: " ";
+      top: 1px;
+      margin-left: -@popover-arrow-width;
+      border-top-width: 0;
+      border-bottom-color: @popover-arrow-color;
+    }
+  }
+
+  &.left > .arrow {
+    top: 50%;
+    right: -@popover-arrow-outer-width;
+    margin-top: -@popover-arrow-outer-width;
+    border-right-width: 0;
+    border-left-color: @popover-arrow-outer-fallback-color; // IE8 fallback
+    border-left-color: @popover-arrow-outer-color;
+    &:after {
+      content: " ";
+      right: 1px;
+      border-right-width: 0;
+      border-left-color: @popover-arrow-color;
+      bottom: -@popover-arrow-width;
+    }
+  }
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/print.less b/src/main/webapp/vendors/bootstrap/less/print.less
new file mode 100644
index 0000000000000000000000000000000000000000..66e54ab489ea278cab3ac847d59449b9bcea9020
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/print.less
@@ -0,0 +1,101 @@
+/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
+
+// ==========================================================================
+// Print styles.
+// Inlined to avoid the additional HTTP request: h5bp.com/r
+// ==========================================================================
+
+@media print {
+    *,
+    *:before,
+    *:after {
+        background: transparent !important;
+        color: #000 !important; // Black prints faster: h5bp.com/s
+        box-shadow: none !important;
+        text-shadow: none !important;
+    }
+
+    a,
+    a:visited {
+        text-decoration: underline;
+    }
+
+    a[href]:after {
+        content: " (" attr(href) ")";
+    }
+
+    abbr[title]:after {
+        content: " (" attr(title) ")";
+    }
+
+    // Don't show links that are fragment identifiers,
+    // or use the `javascript:` pseudo protocol
+    a[href^="#"]:after,
+    a[href^="javascript:"]:after {
+        content: "";
+    }
+
+    pre,
+    blockquote {
+        border: 1px solid #999;
+        page-break-inside: avoid;
+    }
+
+    thead {
+        display: table-header-group; // h5bp.com/t
+    }
+
+    tr,
+    img {
+        page-break-inside: avoid;
+    }
+
+    img {
+        max-width: 100% !important;
+    }
+
+    p,
+    h2,
+    h3 {
+        orphans: 3;
+        widows: 3;
+    }
+
+    h2,
+    h3 {
+        page-break-after: avoid;
+    }
+
+    // Bootstrap specific changes start
+
+    // Bootstrap components
+    .navbar {
+        display: none;
+    }
+    .btn,
+    .dropup > .btn {
+        > .caret {
+            border-top-color: #000 !important;
+        }
+    }
+    .label {
+        border: 1px solid #000;
+    }
+
+    .table {
+        border-collapse: collapse !important;
+
+        td,
+        th {
+            background-color: #fff !important;
+        }
+    }
+    .table-bordered {
+        th,
+        td {
+            border: 1px solid #ddd !important;
+        }
+    }
+
+    // Bootstrap specific changes end
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/progress-bars.less b/src/main/webapp/vendors/bootstrap/less/progress-bars.less
new file mode 100644
index 0000000000000000000000000000000000000000..8868a1feef0f3a7a4b0fabe7548435bfeb481df2
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/progress-bars.less
@@ -0,0 +1,87 @@
+//
+// Progress bars
+// --------------------------------------------------
+
+
+// Bar animations
+// -------------------------
+
+// WebKit
+@-webkit-keyframes progress-bar-stripes {
+  from  { background-position: 40px 0; }
+  to    { background-position: 0 0; }
+}
+
+// Spec and IE10+
+@keyframes progress-bar-stripes {
+  from  { background-position: 40px 0; }
+  to    { background-position: 0 0; }
+}
+
+
+// Bar itself
+// -------------------------
+
+// Outer container
+.progress {
+  overflow: hidden;
+  height: @line-height-computed;
+  margin-bottom: @line-height-computed;
+  background-color: @progress-bg;
+  border-radius: @progress-border-radius;
+  .box-shadow(inset 0 1px 2px rgba(0,0,0,.1));
+}
+
+// Bar of progress
+.progress-bar {
+  float: left;
+  width: 0%;
+  height: 100%;
+  font-size: @font-size-small;
+  line-height: @line-height-computed;
+  color: @progress-bar-color;
+  text-align: center;
+  background-color: @progress-bar-bg;
+  .box-shadow(inset 0 -1px 0 rgba(0,0,0,.15));
+  .transition(width .6s ease);
+}
+
+// Striped bars
+//
+// `.progress-striped .progress-bar` is deprecated as of v3.2.0 in favor of the
+// `.progress-bar-striped` class, which you just add to an existing
+// `.progress-bar`.
+.progress-striped .progress-bar,
+.progress-bar-striped {
+  #gradient > .striped();
+  background-size: 40px 40px;
+}
+
+// Call animation for the active one
+//
+// `.progress.active .progress-bar` is deprecated as of v3.2.0 in favor of the
+// `.progress-bar.active` approach.
+.progress.active .progress-bar,
+.progress-bar.active {
+  .animation(progress-bar-stripes 2s linear infinite);
+}
+
+
+// Variations
+// -------------------------
+
+.progress-bar-success {
+  .progress-bar-variant(@progress-bar-success-bg);
+}
+
+.progress-bar-info {
+  .progress-bar-variant(@progress-bar-info-bg);
+}
+
+.progress-bar-warning {
+  .progress-bar-variant(@progress-bar-warning-bg);
+}
+
+.progress-bar-danger {
+  .progress-bar-variant(@progress-bar-danger-bg);
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/responsive-embed.less b/src/main/webapp/vendors/bootstrap/less/responsive-embed.less
new file mode 100644
index 0000000000000000000000000000000000000000..080a5118fe9ab2af331e6b1444fff4be840ecc03
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/responsive-embed.less
@@ -0,0 +1,35 @@
+// Embeds responsive
+//
+// Credit: Nicolas Gallagher and SUIT CSS.
+
+.embed-responsive {
+  position: relative;
+  display: block;
+  height: 0;
+  padding: 0;
+  overflow: hidden;
+
+  .embed-responsive-item,
+  iframe,
+  embed,
+  object,
+  video {
+    position: absolute;
+    top: 0;
+    left: 0;
+    bottom: 0;
+    height: 100%;
+    width: 100%;
+    border: 0;
+  }
+}
+
+// Modifier class for 16:9 aspect ratio
+.embed-responsive-16by9 {
+  padding-bottom: 56.25%;
+}
+
+// Modifier class for 4:3 aspect ratio
+.embed-responsive-4by3 {
+  padding-bottom: 75%;
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/responsive-utilities.less b/src/main/webapp/vendors/bootstrap/less/responsive-utilities.less
new file mode 100644
index 0000000000000000000000000000000000000000..b1db31d7bfc19a757d02fd773db765c4273549a1
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/responsive-utilities.less
@@ -0,0 +1,194 @@
+//
+// Responsive: Utility classes
+// --------------------------------------------------
+
+
+// IE10 in Windows (Phone) 8
+//
+// Support for responsive views via media queries is kind of borked in IE10, for
+// Surface/desktop in split view and for Windows Phone 8. This particular fix
+// must be accompanied by a snippet of JavaScript to sniff the user agent and
+// apply some conditional CSS to *only* the Surface/desktop Windows 8. Look at
+// our Getting Started page for more information on this bug.
+//
+// For more information, see the following:
+//
+// Issue: https://github.com/twbs/bootstrap/issues/10497
+// Docs: http://getbootstrap.com/getting-started/#support-ie10-width
+// Source: http://timkadlec.com/2013/01/windows-phone-8-and-device-width/
+// Source: http://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/
+
+@-ms-viewport {
+  width: device-width;
+}
+
+
+// Visibility utilities
+// Note: Deprecated .visible-xs, .visible-sm, .visible-md, and .visible-lg as of v3.2.0
+.visible-xs,
+.visible-sm,
+.visible-md,
+.visible-lg {
+  .responsive-invisibility();
+}
+
+.visible-xs-block,
+.visible-xs-inline,
+.visible-xs-inline-block,
+.visible-sm-block,
+.visible-sm-inline,
+.visible-sm-inline-block,
+.visible-md-block,
+.visible-md-inline,
+.visible-md-inline-block,
+.visible-lg-block,
+.visible-lg-inline,
+.visible-lg-inline-block {
+  display: none !important;
+}
+
+.visible-xs {
+  @media (max-width: @screen-xs-max) {
+    .responsive-visibility();
+  }
+}
+.visible-xs-block {
+  @media (max-width: @screen-xs-max) {
+    display: block !important;
+  }
+}
+.visible-xs-inline {
+  @media (max-width: @screen-xs-max) {
+    display: inline !important;
+  }
+}
+.visible-xs-inline-block {
+  @media (max-width: @screen-xs-max) {
+    display: inline-block !important;
+  }
+}
+
+.visible-sm {
+  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {
+    .responsive-visibility();
+  }
+}
+.visible-sm-block {
+  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {
+    display: block !important;
+  }
+}
+.visible-sm-inline {
+  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {
+    display: inline !important;
+  }
+}
+.visible-sm-inline-block {
+  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {
+    display: inline-block !important;
+  }
+}
+
+.visible-md {
+  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {
+    .responsive-visibility();
+  }
+}
+.visible-md-block {
+  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {
+    display: block !important;
+  }
+}
+.visible-md-inline {
+  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {
+    display: inline !important;
+  }
+}
+.visible-md-inline-block {
+  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {
+    display: inline-block !important;
+  }
+}
+
+.visible-lg {
+  @media (min-width: @screen-lg-min) {
+    .responsive-visibility();
+  }
+}
+.visible-lg-block {
+  @media (min-width: @screen-lg-min) {
+    display: block !important;
+  }
+}
+.visible-lg-inline {
+  @media (min-width: @screen-lg-min) {
+    display: inline !important;
+  }
+}
+.visible-lg-inline-block {
+  @media (min-width: @screen-lg-min) {
+    display: inline-block !important;
+  }
+}
+
+.hidden-xs {
+  @media (max-width: @screen-xs-max) {
+    .responsive-invisibility();
+  }
+}
+.hidden-sm {
+  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {
+    .responsive-invisibility();
+  }
+}
+.hidden-md {
+  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {
+    .responsive-invisibility();
+  }
+}
+.hidden-lg {
+  @media (min-width: @screen-lg-min) {
+    .responsive-invisibility();
+  }
+}
+
+
+// Print utilities
+//
+// Media queries are placed on the inside to be mixin-friendly.
+
+// Note: Deprecated .visible-print as of v3.2.0
+.visible-print {
+  .responsive-invisibility();
+
+  @media print {
+    .responsive-visibility();
+  }
+}
+.visible-print-block {
+  display: none !important;
+
+  @media print {
+    display: block !important;
+  }
+}
+.visible-print-inline {
+  display: none !important;
+
+  @media print {
+    display: inline !important;
+  }
+}
+.visible-print-inline-block {
+  display: none !important;
+
+  @media print {
+    display: inline-block !important;
+  }
+}
+
+.hidden-print {
+  @media print {
+    .responsive-invisibility();
+  }
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/scaffolding.less b/src/main/webapp/vendors/bootstrap/less/scaffolding.less
new file mode 100644
index 0000000000000000000000000000000000000000..1929bfc5cfa686a66b6f21c20b66e31d1d708e67
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/scaffolding.less
@@ -0,0 +1,161 @@
+//
+// Scaffolding
+// --------------------------------------------------
+
+
+// Reset the box-sizing
+//
+// Heads up! This reset may cause conflicts with some third-party widgets.
+// For recommendations on resolving such conflicts, see
+// http://getbootstrap.com/getting-started/#third-box-sizing
+* {
+  .box-sizing(border-box);
+}
+*:before,
+*:after {
+  .box-sizing(border-box);
+}
+
+
+// Body reset
+
+html {
+  font-size: 10px;
+  -webkit-tap-highlight-color: rgba(0,0,0,0);
+}
+
+body {
+  font-family: @font-family-base;
+  font-size: @font-size-base;
+  line-height: @line-height-base;
+  color: @text-color;
+  background-color: @body-bg;
+}
+
+// Reset fonts for relevant elements
+input,
+button,
+select,
+textarea {
+  font-family: inherit;
+  font-size: inherit;
+  line-height: inherit;
+}
+
+
+// Links
+
+a {
+  color: @link-color;
+  text-decoration: none;
+
+  &:hover,
+  &:focus {
+    color: @link-hover-color;
+    text-decoration: @link-hover-decoration;
+  }
+
+  &:focus {
+    .tab-focus();
+  }
+}
+
+
+// Figures
+//
+// We reset this here because previously Normalize had no `figure` margins. This
+// ensures we don't break anyone's use of the element.
+
+figure {
+  margin: 0;
+}
+
+
+// Images
+
+img {
+  vertical-align: middle;
+}
+
+// Responsive images (ensure images don't scale beyond their parents)
+.img-responsive {
+  .img-responsive();
+}
+
+// Rounded corners
+.img-rounded {
+  border-radius: @border-radius-large;
+}
+
+// Image thumbnails
+//
+// Heads up! This is mixin-ed into thumbnails.less for `.thumbnail`.
+.img-thumbnail {
+  padding: @thumbnail-padding;
+  line-height: @line-height-base;
+  background-color: @thumbnail-bg;
+  border: 1px solid @thumbnail-border;
+  border-radius: @thumbnail-border-radius;
+  .transition(all .2s ease-in-out);
+
+  // Keep them at most 100% wide
+  .img-responsive(inline-block);
+}
+
+// Perfect circle
+.img-circle {
+  border-radius: 50%; // set radius in percents
+}
+
+
+// Horizontal rules
+
+hr {
+  margin-top:    @line-height-computed;
+  margin-bottom: @line-height-computed;
+  border: 0;
+  border-top: 1px solid @hr-border;
+}
+
+
+// Only display content to screen readers
+//
+// See: http://a11yproject.com/posts/how-to-hide-content/
+
+.sr-only {
+  position: absolute;
+  width: 1px;
+  height: 1px;
+  margin: -1px;
+  padding: 0;
+  overflow: hidden;
+  clip: rect(0,0,0,0);
+  border: 0;
+}
+
+// Use in conjunction with .sr-only to only display content when it's focused.
+// Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
+// Credit: HTML5 Boilerplate
+
+.sr-only-focusable {
+  &:active,
+  &:focus {
+    position: static;
+    width: auto;
+    height: auto;
+    margin: 0;
+    overflow: visible;
+    clip: auto;
+  }
+}
+
+
+// iOS "clickable elements" fix for role="button"
+//
+// Fixes "clickability" issue (and more generally, the firing of events such as focus as well)
+// for traditionally non-focusable elements with role="button"
+// see https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile
+
+[role="button"] {
+  cursor: pointer;
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/tables.less b/src/main/webapp/vendors/bootstrap/less/tables.less
new file mode 100644
index 0000000000000000000000000000000000000000..2242c036868d7358ad684313ccab2e4d4704ee94
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/tables.less
@@ -0,0 +1,234 @@
+//
+// Tables
+// --------------------------------------------------
+
+
+table {
+  background-color: @table-bg;
+}
+caption {
+  padding-top: @table-cell-padding;
+  padding-bottom: @table-cell-padding;
+  color: @text-muted;
+  text-align: left;
+}
+th {
+  text-align: left;
+}
+
+
+// Baseline styles
+
+.table {
+  width: 100%;
+  max-width: 100%;
+  margin-bottom: @line-height-computed;
+  // Cells
+  > thead,
+  > tbody,
+  > tfoot {
+    > tr {
+      > th,
+      > td {
+        padding: @table-cell-padding;
+        line-height: @line-height-base;
+        vertical-align: top;
+        border-top: 1px solid @table-border-color;
+      }
+    }
+  }
+  // Bottom align for column headings
+  > thead > tr > th {
+    vertical-align: bottom;
+    border-bottom: 2px solid @table-border-color;
+  }
+  // Remove top border from thead by default
+  > caption + thead,
+  > colgroup + thead,
+  > thead:first-child {
+    > tr:first-child {
+      > th,
+      > td {
+        border-top: 0;
+      }
+    }
+  }
+  // Account for multiple tbody instances
+  > tbody + tbody {
+    border-top: 2px solid @table-border-color;
+  }
+
+  // Nesting
+  .table {
+    background-color: @body-bg;
+  }
+}
+
+
+// Condensed table w/ half padding
+
+.table-condensed {
+  > thead,
+  > tbody,
+  > tfoot {
+    > tr {
+      > th,
+      > td {
+        padding: @table-condensed-cell-padding;
+      }
+    }
+  }
+}
+
+
+// Bordered version
+//
+// Add borders all around the table and between all the columns.
+
+.table-bordered {
+  border: 1px solid @table-border-color;
+  > thead,
+  > tbody,
+  > tfoot {
+    > tr {
+      > th,
+      > td {
+        border: 1px solid @table-border-color;
+      }
+    }
+  }
+  > thead > tr {
+    > th,
+    > td {
+      border-bottom-width: 2px;
+    }
+  }
+}
+
+
+// Zebra-striping
+//
+// Default zebra-stripe styles (alternating gray and transparent backgrounds)
+
+.table-striped {
+  > tbody > tr:nth-of-type(odd) {
+    background-color: @table-bg-accent;
+  }
+}
+
+
+// Hover effect
+//
+// Placed here since it has to come after the potential zebra striping
+
+.table-hover {
+  > tbody > tr:hover {
+    background-color: @table-bg-hover;
+  }
+}
+
+
+// Table cell sizing
+//
+// Reset default table behavior
+
+table col[class*="col-"] {
+  position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)
+  float: none;
+  display: table-column;
+}
+table {
+  td,
+  th {
+    &[class*="col-"] {
+      position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)
+      float: none;
+      display: table-cell;
+    }
+  }
+}
+
+
+// Table backgrounds
+//
+// Exact selectors below required to override `.table-striped` and prevent
+// inheritance to nested tables.
+
+// Generate the contextual variants
+.table-row-variant(active; @table-bg-active);
+.table-row-variant(success; @state-success-bg);
+.table-row-variant(info; @state-info-bg);
+.table-row-variant(warning; @state-warning-bg);
+.table-row-variant(danger; @state-danger-bg);
+
+
+// Responsive tables
+//
+// Wrap your tables in `.table-responsive` and we'll make them mobile friendly
+// by enabling horizontal scrolling. Only applies <768px. Everything above that
+// will display normally.
+
+.table-responsive {
+  overflow-x: auto;
+  min-height: 0.01%; // Workaround for IE9 bug (see https://github.com/twbs/bootstrap/issues/14837)
+
+  @media screen and (max-width: @screen-xs-max) {
+    width: 100%;
+    margin-bottom: (@line-height-computed * 0.75);
+    overflow-y: hidden;
+    -ms-overflow-style: -ms-autohiding-scrollbar;
+    border: 1px solid @table-border-color;
+
+    // Tighten up spacing
+    > .table {
+      margin-bottom: 0;
+
+      // Ensure the content doesn't wrap
+      > thead,
+      > tbody,
+      > tfoot {
+        > tr {
+          > th,
+          > td {
+            white-space: nowrap;
+          }
+        }
+      }
+    }
+
+    // Special overrides for the bordered tables
+    > .table-bordered {
+      border: 0;
+
+      // Nuke the appropriate borders so that the parent can handle them
+      > thead,
+      > tbody,
+      > tfoot {
+        > tr {
+          > th:first-child,
+          > td:first-child {
+            border-left: 0;
+          }
+          > th:last-child,
+          > td:last-child {
+            border-right: 0;
+          }
+        }
+      }
+
+      // Only nuke the last row's bottom-border in `tbody` and `tfoot` since
+      // chances are there will be only one `tr` in a `thead` and that would
+      // remove the border altogether.
+      > tbody,
+      > tfoot {
+        > tr:last-child {
+          > th,
+          > td {
+            border-bottom: 0;
+          }
+        }
+      }
+
+    }
+  }
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/theme.less b/src/main/webapp/vendors/bootstrap/less/theme.less
new file mode 100644
index 0000000000000000000000000000000000000000..8f51d913dc9db0990c2f24ce0d0305f9ec9478ba
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/theme.less
@@ -0,0 +1,291 @@
+/*!
+ * Bootstrap v3.3.6 (http://getbootstrap.com)
+ * Copyright 2011-2015 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ */
+
+//
+// Load core variables and mixins
+// --------------------------------------------------
+
+@import "variables.less";
+@import "mixins.less";
+
+
+//
+// Buttons
+// --------------------------------------------------
+
+// Common styles
+.btn-default,
+.btn-primary,
+.btn-success,
+.btn-info,
+.btn-warning,
+.btn-danger {
+  text-shadow: 0 -1px 0 rgba(0,0,0,.2);
+  @shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 1px rgba(0,0,0,.075);
+  .box-shadow(@shadow);
+
+  // Reset the shadow
+  &:active,
+  &.active {
+    .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));
+  }
+
+  &.disabled,
+  &[disabled],
+  fieldset[disabled] & {
+    .box-shadow(none);
+  }
+
+  .badge {
+    text-shadow: none;
+  }
+}
+
+// Mixin for generating new styles
+.btn-styles(@btn-color: #555) {
+  #gradient > .vertical(@start-color: @btn-color; @end-color: darken(@btn-color, 12%));
+  .reset-filter(); // Disable gradients for IE9 because filter bleeds through rounded corners; see https://github.com/twbs/bootstrap/issues/10620
+  background-repeat: repeat-x;
+  border-color: darken(@btn-color, 14%);
+
+  &:hover,
+  &:focus  {
+    background-color: darken(@btn-color, 12%);
+    background-position: 0 -15px;
+  }
+
+  &:active,
+  &.active {
+    background-color: darken(@btn-color, 12%);
+    border-color: darken(@btn-color, 14%);
+  }
+
+  &.disabled,
+  &[disabled],
+  fieldset[disabled] & {
+    &,
+    &:hover,
+    &:focus,
+    &.focus,
+    &:active,
+    &.active {
+      background-color: darken(@btn-color, 12%);
+      background-image: none;
+    }
+  }
+}
+
+// Common styles
+.btn {
+  // Remove the gradient for the pressed/active state
+  &:active,
+  &.active {
+    background-image: none;
+  }
+}
+
+// Apply the mixin to the buttons
+.btn-default { .btn-styles(@btn-default-bg); text-shadow: 0 1px 0 #fff; border-color: #ccc; }
+.btn-primary { .btn-styles(@btn-primary-bg); }
+.btn-success { .btn-styles(@btn-success-bg); }
+.btn-info    { .btn-styles(@btn-info-bg); }
+.btn-warning { .btn-styles(@btn-warning-bg); }
+.btn-danger  { .btn-styles(@btn-danger-bg); }
+
+
+//
+// Images
+// --------------------------------------------------
+
+.thumbnail,
+.img-thumbnail {
+  .box-shadow(0 1px 2px rgba(0,0,0,.075));
+}
+
+
+//
+// Dropdowns
+// --------------------------------------------------
+
+.dropdown-menu > li > a:hover,
+.dropdown-menu > li > a:focus {
+  #gradient > .vertical(@start-color: @dropdown-link-hover-bg; @end-color: darken(@dropdown-link-hover-bg, 5%));
+  background-color: darken(@dropdown-link-hover-bg, 5%);
+}
+.dropdown-menu > .active > a,
+.dropdown-menu > .active > a:hover,
+.dropdown-menu > .active > a:focus {
+  #gradient > .vertical(@start-color: @dropdown-link-active-bg; @end-color: darken(@dropdown-link-active-bg, 5%));
+  background-color: darken(@dropdown-link-active-bg, 5%);
+}
+
+
+//
+// Navbar
+// --------------------------------------------------
+
+// Default navbar
+.navbar-default {
+  #gradient > .vertical(@start-color: lighten(@navbar-default-bg, 10%); @end-color: @navbar-default-bg);
+  .reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered
+  border-radius: @navbar-border-radius;
+  @shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 5px rgba(0,0,0,.075);
+  .box-shadow(@shadow);
+
+  .navbar-nav > .open > a,
+  .navbar-nav > .active > a {
+    #gradient > .vertical(@start-color: darken(@navbar-default-link-active-bg, 5%); @end-color: darken(@navbar-default-link-active-bg, 2%));
+    .box-shadow(inset 0 3px 9px rgba(0,0,0,.075));
+  }
+}
+.navbar-brand,
+.navbar-nav > li > a {
+  text-shadow: 0 1px 0 rgba(255,255,255,.25);
+}
+
+// Inverted navbar
+.navbar-inverse {
+  #gradient > .vertical(@start-color: lighten(@navbar-inverse-bg, 10%); @end-color: @navbar-inverse-bg);
+  .reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered; see https://github.com/twbs/bootstrap/issues/10257
+  border-radius: @navbar-border-radius;
+  .navbar-nav > .open > a,
+  .navbar-nav > .active > a {
+    #gradient > .vertical(@start-color: @navbar-inverse-link-active-bg; @end-color: lighten(@navbar-inverse-link-active-bg, 2.5%));
+    .box-shadow(inset 0 3px 9px rgba(0,0,0,.25));
+  }
+
+  .navbar-brand,
+  .navbar-nav > li > a {
+    text-shadow: 0 -1px 0 rgba(0,0,0,.25);
+  }
+}
+
+// Undo rounded corners in static and fixed navbars
+.navbar-static-top,
+.navbar-fixed-top,
+.navbar-fixed-bottom {
+  border-radius: 0;
+}
+
+// Fix active state of dropdown items in collapsed mode
+@media (max-width: @grid-float-breakpoint-max) {
+  .navbar .navbar-nav .open .dropdown-menu > .active > a {
+    &,
+    &:hover,
+    &:focus {
+      color: #fff;
+      #gradient > .vertical(@start-color: @dropdown-link-active-bg; @end-color: darken(@dropdown-link-active-bg, 5%));
+    }
+  }
+}
+
+
+//
+// Alerts
+// --------------------------------------------------
+
+// Common styles
+.alert {
+  text-shadow: 0 1px 0 rgba(255,255,255,.2);
+  @shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 1px 2px rgba(0,0,0,.05);
+  .box-shadow(@shadow);
+}
+
+// Mixin for generating new styles
+.alert-styles(@color) {
+  #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 7.5%));
+  border-color: darken(@color, 15%);
+}
+
+// Apply the mixin to the alerts
+.alert-success    { .alert-styles(@alert-success-bg); }
+.alert-info       { .alert-styles(@alert-info-bg); }
+.alert-warning    { .alert-styles(@alert-warning-bg); }
+.alert-danger     { .alert-styles(@alert-danger-bg); }
+
+
+//
+// Progress bars
+// --------------------------------------------------
+
+// Give the progress background some depth
+.progress {
+  #gradient > .vertical(@start-color: darken(@progress-bg, 4%); @end-color: @progress-bg)
+}
+
+// Mixin for generating new styles
+.progress-bar-styles(@color) {
+  #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 10%));
+}
+
+// Apply the mixin to the progress bars
+.progress-bar            { .progress-bar-styles(@progress-bar-bg); }
+.progress-bar-success    { .progress-bar-styles(@progress-bar-success-bg); }
+.progress-bar-info       { .progress-bar-styles(@progress-bar-info-bg); }
+.progress-bar-warning    { .progress-bar-styles(@progress-bar-warning-bg); }
+.progress-bar-danger     { .progress-bar-styles(@progress-bar-danger-bg); }
+
+// Reset the striped class because our mixins don't do multiple gradients and
+// the above custom styles override the new `.progress-bar-striped` in v3.2.0.
+.progress-bar-striped {
+  #gradient > .striped();
+}
+
+
+//
+// List groups
+// --------------------------------------------------
+
+.list-group {
+  border-radius: @border-radius-base;
+  .box-shadow(0 1px 2px rgba(0,0,0,.075));
+}
+.list-group-item.active,
+.list-group-item.active:hover,
+.list-group-item.active:focus {
+  text-shadow: 0 -1px 0 darken(@list-group-active-bg, 10%);
+  #gradient > .vertical(@start-color: @list-group-active-bg; @end-color: darken(@list-group-active-bg, 7.5%));
+  border-color: darken(@list-group-active-border, 7.5%);
+
+  .badge {
+    text-shadow: none;
+  }
+}
+
+
+//
+// Panels
+// --------------------------------------------------
+
+// Common styles
+.panel {
+  .box-shadow(0 1px 2px rgba(0,0,0,.05));
+}
+
+// Mixin for generating new styles
+.panel-heading-styles(@color) {
+  #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 5%));
+}
+
+// Apply the mixin to the panel headings only
+.panel-default > .panel-heading   { .panel-heading-styles(@panel-default-heading-bg); }
+.panel-primary > .panel-heading   { .panel-heading-styles(@panel-primary-heading-bg); }
+.panel-success > .panel-heading   { .panel-heading-styles(@panel-success-heading-bg); }
+.panel-info > .panel-heading      { .panel-heading-styles(@panel-info-heading-bg); }
+.panel-warning > .panel-heading   { .panel-heading-styles(@panel-warning-heading-bg); }
+.panel-danger > .panel-heading    { .panel-heading-styles(@panel-danger-heading-bg); }
+
+
+//
+// Wells
+// --------------------------------------------------
+
+.well {
+  #gradient > .vertical(@start-color: darken(@well-bg, 5%); @end-color: @well-bg);
+  border-color: darken(@well-bg, 10%);
+  @shadow: inset 0 1px 3px rgba(0,0,0,.05), 0 1px 0 rgba(255,255,255,.1);
+  .box-shadow(@shadow);
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/thumbnails.less b/src/main/webapp/vendors/bootstrap/less/thumbnails.less
new file mode 100644
index 0000000000000000000000000000000000000000..0713e67d0068e9553c5e21bb6024122029cce520
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/thumbnails.less
@@ -0,0 +1,36 @@
+//
+// Thumbnails
+// --------------------------------------------------
+
+
+// Mixin and adjust the regular image class
+.thumbnail {
+  display: block;
+  padding: @thumbnail-padding;
+  margin-bottom: @line-height-computed;
+  line-height: @line-height-base;
+  background-color: @thumbnail-bg;
+  border: 1px solid @thumbnail-border;
+  border-radius: @thumbnail-border-radius;
+  .transition(border .2s ease-in-out);
+
+  > img,
+  a > img {
+    &:extend(.img-responsive);
+    margin-left: auto;
+    margin-right: auto;
+  }
+
+  // Add a hover state for linked versions only
+  a&:hover,
+  a&:focus,
+  a&.active {
+    border-color: @link-color;
+  }
+
+  // Image captions
+  .caption {
+    padding: @thumbnail-caption-padding;
+    color: @thumbnail-caption-color;
+  }
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/tooltip.less b/src/main/webapp/vendors/bootstrap/less/tooltip.less
new file mode 100644
index 0000000000000000000000000000000000000000..b48d63e07ad880200cafb5c110acfc14e76ea7cf
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/tooltip.less
@@ -0,0 +1,101 @@
+//
+// Tooltips
+// --------------------------------------------------
+
+
+// Base class
+.tooltip {
+  position: absolute;
+  z-index: @zindex-tooltip;
+  display: block;
+  // Our parent element can be arbitrary since tooltips are by default inserted as a sibling of their target element.
+  // So reset our font and text properties to avoid inheriting weird values.
+  .reset-text();
+  font-size: @font-size-small;
+
+  .opacity(0);
+
+  &.in     { .opacity(@tooltip-opacity); }
+  &.top    { margin-top:  -3px; padding: @tooltip-arrow-width 0; }
+  &.right  { margin-left:  3px; padding: 0 @tooltip-arrow-width; }
+  &.bottom { margin-top:   3px; padding: @tooltip-arrow-width 0; }
+  &.left   { margin-left: -3px; padding: 0 @tooltip-arrow-width; }
+}
+
+// Wrapper for the tooltip content
+.tooltip-inner {
+  max-width: @tooltip-max-width;
+  padding: 3px 8px;
+  color: @tooltip-color;
+  text-align: center;
+  background-color: @tooltip-bg;
+  border-radius: @border-radius-base;
+}
+
+// Arrows
+.tooltip-arrow {
+  position: absolute;
+  width: 0;
+  height: 0;
+  border-color: transparent;
+  border-style: solid;
+}
+// Note: Deprecated .top-left, .top-right, .bottom-left, and .bottom-right as of v3.3.1
+.tooltip {
+  &.top .tooltip-arrow {
+    bottom: 0;
+    left: 50%;
+    margin-left: -@tooltip-arrow-width;
+    border-width: @tooltip-arrow-width @tooltip-arrow-width 0;
+    border-top-color: @tooltip-arrow-color;
+  }
+  &.top-left .tooltip-arrow {
+    bottom: 0;
+    right: @tooltip-arrow-width;
+    margin-bottom: -@tooltip-arrow-width;
+    border-width: @tooltip-arrow-width @tooltip-arrow-width 0;
+    border-top-color: @tooltip-arrow-color;
+  }
+  &.top-right .tooltip-arrow {
+    bottom: 0;
+    left: @tooltip-arrow-width;
+    margin-bottom: -@tooltip-arrow-width;
+    border-width: @tooltip-arrow-width @tooltip-arrow-width 0;
+    border-top-color: @tooltip-arrow-color;
+  }
+  &.right .tooltip-arrow {
+    top: 50%;
+    left: 0;
+    margin-top: -@tooltip-arrow-width;
+    border-width: @tooltip-arrow-width @tooltip-arrow-width @tooltip-arrow-width 0;
+    border-right-color: @tooltip-arrow-color;
+  }
+  &.left .tooltip-arrow {
+    top: 50%;
+    right: 0;
+    margin-top: -@tooltip-arrow-width;
+    border-width: @tooltip-arrow-width 0 @tooltip-arrow-width @tooltip-arrow-width;
+    border-left-color: @tooltip-arrow-color;
+  }
+  &.bottom .tooltip-arrow {
+    top: 0;
+    left: 50%;
+    margin-left: -@tooltip-arrow-width;
+    border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;
+    border-bottom-color: @tooltip-arrow-color;
+  }
+  &.bottom-left .tooltip-arrow {
+    top: 0;
+    right: @tooltip-arrow-width;
+    margin-top: -@tooltip-arrow-width;
+    border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;
+    border-bottom-color: @tooltip-arrow-color;
+  }
+  &.bottom-right .tooltip-arrow {
+    top: 0;
+    left: @tooltip-arrow-width;
+    margin-top: -@tooltip-arrow-width;
+    border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;
+    border-bottom-color: @tooltip-arrow-color;
+  }
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/type.less b/src/main/webapp/vendors/bootstrap/less/type.less
new file mode 100644
index 0000000000000000000000000000000000000000..0d4fee48486eaaa946e42f0335af6789fcf2a8d8
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/type.less
@@ -0,0 +1,302 @@
+//
+// Typography
+// --------------------------------------------------
+
+
+// Headings
+// -------------------------
+
+h1, h2, h3, h4, h5, h6,
+.h1, .h2, .h3, .h4, .h5, .h6 {
+  font-family: @headings-font-family;
+  font-weight: @headings-font-weight;
+  line-height: @headings-line-height;
+  color: @headings-color;
+
+  small,
+  .small {
+    font-weight: normal;
+    line-height: 1;
+    color: @headings-small-color;
+  }
+}
+
+h1, .h1,
+h2, .h2,
+h3, .h3 {
+  margin-top: @line-height-computed;
+  margin-bottom: (@line-height-computed / 2);
+
+  small,
+  .small {
+    font-size: 65%;
+  }
+}
+h4, .h4,
+h5, .h5,
+h6, .h6 {
+  margin-top: (@line-height-computed / 2);
+  margin-bottom: (@line-height-computed / 2);
+
+  small,
+  .small {
+    font-size: 75%;
+  }
+}
+
+h1, .h1 { font-size: @font-size-h1; }
+h2, .h2 { font-size: @font-size-h2; }
+h3, .h3 { font-size: @font-size-h3; }
+h4, .h4 { font-size: @font-size-h4; }
+h5, .h5 { font-size: @font-size-h5; }
+h6, .h6 { font-size: @font-size-h6; }
+
+
+// Body text
+// -------------------------
+
+p {
+  margin: 0 0 (@line-height-computed / 2);
+}
+
+.lead {
+  margin-bottom: @line-height-computed;
+  font-size: floor((@font-size-base * 1.15));
+  font-weight: 300;
+  line-height: 1.4;
+
+  @media (min-width: @screen-sm-min) {
+    font-size: (@font-size-base * 1.5);
+  }
+}
+
+
+// Emphasis & misc
+// -------------------------
+
+// Ex: (12px small font / 14px base font) * 100% = about 85%
+small,
+.small {
+  font-size: floor((100% * @font-size-small / @font-size-base));
+}
+
+mark,
+.mark {
+  background-color: @state-warning-bg;
+  padding: .2em;
+}
+
+// Alignment
+.text-left           { text-align: left; }
+.text-right          { text-align: right; }
+.text-center         { text-align: center; }
+.text-justify        { text-align: justify; }
+.text-nowrap         { white-space: nowrap; }
+
+// Transformation
+.text-lowercase      { text-transform: lowercase; }
+.text-uppercase      { text-transform: uppercase; }
+.text-capitalize     { text-transform: capitalize; }
+
+// Contextual colors
+.text-muted {
+  color: @text-muted;
+}
+.text-primary {
+  .text-emphasis-variant(@brand-primary);
+}
+.text-success {
+  .text-emphasis-variant(@state-success-text);
+}
+.text-info {
+  .text-emphasis-variant(@state-info-text);
+}
+.text-warning {
+  .text-emphasis-variant(@state-warning-text);
+}
+.text-danger {
+  .text-emphasis-variant(@state-danger-text);
+}
+
+// Contextual backgrounds
+// For now we'll leave these alongside the text classes until v4 when we can
+// safely shift things around (per SemVer rules).
+.bg-primary {
+  // Given the contrast here, this is the only class to have its color inverted
+  // automatically.
+  color: #fff;
+  .bg-variant(@brand-primary);
+}
+.bg-success {
+  .bg-variant(@state-success-bg);
+}
+.bg-info {
+  .bg-variant(@state-info-bg);
+}
+.bg-warning {
+  .bg-variant(@state-warning-bg);
+}
+.bg-danger {
+  .bg-variant(@state-danger-bg);
+}
+
+
+// Page header
+// -------------------------
+
+.page-header {
+  padding-bottom: ((@line-height-computed / 2) - 1);
+  margin: (@line-height-computed * 2) 0 @line-height-computed;
+  border-bottom: 1px solid @page-header-border-color;
+}
+
+
+// Lists
+// -------------------------
+
+// Unordered and Ordered lists
+ul,
+ol {
+  margin-top: 0;
+  margin-bottom: (@line-height-computed / 2);
+  ul,
+  ol {
+    margin-bottom: 0;
+  }
+}
+
+// List options
+
+// Unstyled keeps list items block level, just removes default browser padding and list-style
+.list-unstyled {
+  padding-left: 0;
+  list-style: none;
+}
+
+// Inline turns list items into inline-block
+.list-inline {
+  .list-unstyled();
+  margin-left: -5px;
+
+  > li {
+    display: inline-block;
+    padding-left: 5px;
+    padding-right: 5px;
+  }
+}
+
+// Description Lists
+dl {
+  margin-top: 0; // Remove browser default
+  margin-bottom: @line-height-computed;
+}
+dt,
+dd {
+  line-height: @line-height-base;
+}
+dt {
+  font-weight: bold;
+}
+dd {
+  margin-left: 0; // Undo browser default
+}
+
+// Horizontal description lists
+//
+// Defaults to being stacked without any of the below styles applied, until the
+// grid breakpoint is reached (default of ~768px).
+
+.dl-horizontal {
+  dd {
+    &:extend(.clearfix all); // Clear the floated `dt` if an empty `dd` is present
+  }
+
+  @media (min-width: @dl-horizontal-breakpoint) {
+    dt {
+      float: left;
+      width: (@dl-horizontal-offset - 20);
+      clear: left;
+      text-align: right;
+      .text-overflow();
+    }
+    dd {
+      margin-left: @dl-horizontal-offset;
+    }
+  }
+}
+
+
+// Misc
+// -------------------------
+
+// Abbreviations and acronyms
+abbr[title],
+// Add data-* attribute to help out our tooltip plugin, per https://github.com/twbs/bootstrap/issues/5257
+abbr[data-original-title] {
+  cursor: help;
+  border-bottom: 1px dotted @abbr-border-color;
+}
+.initialism {
+  font-size: 90%;
+  .text-uppercase();
+}
+
+// Blockquotes
+blockquote {
+  padding: (@line-height-computed / 2) @line-height-computed;
+  margin: 0 0 @line-height-computed;
+  font-size: @blockquote-font-size;
+  border-left: 5px solid @blockquote-border-color;
+
+  p,
+  ul,
+  ol {
+    &:last-child {
+      margin-bottom: 0;
+    }
+  }
+
+  // Note: Deprecated small and .small as of v3.1.0
+  // Context: https://github.com/twbs/bootstrap/issues/11660
+  footer,
+  small,
+  .small {
+    display: block;
+    font-size: 80%; // back to default font-size
+    line-height: @line-height-base;
+    color: @blockquote-small-color;
+
+    &:before {
+      content: '\2014 \00A0'; // em dash, nbsp
+    }
+  }
+}
+
+// Opposite alignment of blockquote
+//
+// Heads up: `blockquote.pull-right` has been deprecated as of v3.1.0.
+.blockquote-reverse,
+blockquote.pull-right {
+  padding-right: 15px;
+  padding-left: 0;
+  border-right: 5px solid @blockquote-border-color;
+  border-left: 0;
+  text-align: right;
+
+  // Account for citation
+  footer,
+  small,
+  .small {
+    &:before { content: ''; }
+    &:after {
+      content: '\00A0 \2014'; // nbsp, em dash
+    }
+  }
+}
+
+// Addresses
+address {
+  margin-bottom: @line-height-computed;
+  font-style: normal;
+  line-height: @line-height-base;
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/utilities.less b/src/main/webapp/vendors/bootstrap/less/utilities.less
new file mode 100644
index 0000000000000000000000000000000000000000..7a8ca27a8ff54db1c439812d4b295d9a1c4f6f76
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/utilities.less
@@ -0,0 +1,55 @@
+//
+// Utility classes
+// --------------------------------------------------
+
+
+// Floats
+// -------------------------
+
+.clearfix {
+  .clearfix();
+}
+.center-block {
+  .center-block();
+}
+.pull-right {
+  float: right !important;
+}
+.pull-left {
+  float: left !important;
+}
+
+
+// Toggling content
+// -------------------------
+
+// Note: Deprecated .hide in favor of .hidden or .sr-only (as appropriate) in v3.0.1
+.hide {
+  display: none !important;
+}
+.show {
+  display: block !important;
+}
+.invisible {
+  visibility: hidden;
+}
+.text-hide {
+  .text-hide();
+}
+
+
+// Hide from screenreaders and browsers
+//
+// Credit: HTML5 Boilerplate
+
+.hidden {
+  display: none !important;
+}
+
+
+// For Affix plugin
+// -------------------------
+
+.affix {
+  position: fixed;
+}
diff --git a/src/main/webapp/vendors/bootstrap/less/variables.less b/src/main/webapp/vendors/bootstrap/less/variables.less
new file mode 100644
index 0000000000000000000000000000000000000000..b057ef5bf907b8373a9308553c1924f8a3668881
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/variables.less
@@ -0,0 +1,869 @@
+//
+// Variables
+// --------------------------------------------------
+
+
+//== Colors
+//
+//## Gray and brand colors for use across Bootstrap.
+
+@gray-base:              #000;
+@gray-darker:            lighten(@gray-base, 13.5%); // #222
+@gray-dark:              lighten(@gray-base, 20%);   // #333
+@gray:                   lighten(@gray-base, 33.5%); // #555
+@gray-light:             lighten(@gray-base, 46.7%); // #777
+@gray-lighter:           lighten(@gray-base, 93.5%); // #eee
+
+@brand-primary:         darken(#428bca, 6.5%); // #337ab7
+@brand-success:         #5cb85c;
+@brand-info:            #5bc0de;
+@brand-warning:         #f0ad4e;
+@brand-danger:          #d9534f;
+
+
+//== Scaffolding
+//
+//## Settings for some of the most global styles.
+
+//** Background color for `<body>`.
+@body-bg:               #fff;
+//** Global text color on `<body>`.
+@text-color:            @gray-dark;
+
+//** Global textual link color.
+@link-color:            @brand-primary;
+//** Link hover color set via `darken()` function.
+@link-hover-color:      darken(@link-color, 15%);
+//** Link hover decoration.
+@link-hover-decoration: underline;
+
+
+//== Typography
+//
+//## Font, line-height, and color for body text, headings, and more.
+
+@font-family-sans-serif:  "Helvetica Neue", Helvetica, Arial, sans-serif;
+@font-family-serif:       Georgia, "Times New Roman", Times, serif;
+//** Default monospace fonts for `<code>`, `<kbd>`, and `<pre>`.
+@font-family-monospace:   Menlo, Monaco, Consolas, "Courier New", monospace;
+@font-family-base:        @font-family-sans-serif;
+
+@font-size-base:          14px;
+@font-size-large:         ceil((@font-size-base * 1.25)); // ~18px
+@font-size-small:         ceil((@font-size-base * 0.85)); // ~12px
+
+@font-size-h1:            floor((@font-size-base * 2.6)); // ~36px
+@font-size-h2:            floor((@font-size-base * 2.15)); // ~30px
+@font-size-h3:            ceil((@font-size-base * 1.7)); // ~24px
+@font-size-h4:            ceil((@font-size-base * 1.25)); // ~18px
+@font-size-h5:            @font-size-base;
+@font-size-h6:            ceil((@font-size-base * 0.85)); // ~12px
+
+//** Unit-less `line-height` for use in components like buttons.
+@line-height-base:        1.428571429; // 20/14
+//** Computed "line-height" (`font-size` * `line-height`) for use with `margin`, `padding`, etc.
+@line-height-computed:    floor((@font-size-base * @line-height-base)); // ~20px
+
+//** By default, this inherits from the `<body>`.
+@headings-font-family:    inherit;
+@headings-font-weight:    500;
+@headings-line-height:    1.1;
+@headings-color:          inherit;
+
+
+//== Iconography
+//
+//## Specify custom location and filename of the included Glyphicons icon font. Useful for those including Bootstrap via Bower.
+
+//** Load fonts from this directory.
+@icon-font-path:          "../fonts/";
+//** File name for all font files.
+@icon-font-name:          "glyphicons-halflings-regular";
+//** Element ID within SVG icon file.
+@icon-font-svg-id:        "glyphicons_halflingsregular";
+
+
+//== Components
+//
+//## Define common padding and border radius sizes and more. Values based on 14px text and 1.428 line-height (~20px to start).
+
+@padding-base-vertical:     6px;
+@padding-base-horizontal:   12px;
+
+@padding-large-vertical:    10px;
+@padding-large-horizontal:  16px;
+
+@padding-small-vertical:    5px;
+@padding-small-horizontal:  10px;
+
+@padding-xs-vertical:       1px;
+@padding-xs-horizontal:     5px;
+
+@line-height-large:         1.3333333; // extra decimals for Win 8.1 Chrome
+@line-height-small:         1.5;
+
+@border-radius-base:        4px;
+@border-radius-large:       6px;
+@border-radius-small:       3px;
+
+//** Global color for active items (e.g., navs or dropdowns).
+@component-active-color:    #fff;
+//** Global background color for active items (e.g., navs or dropdowns).
+@component-active-bg:       @brand-primary;
+
+//** Width of the `border` for generating carets that indicator dropdowns.
+@caret-width-base:          4px;
+//** Carets increase slightly in size for larger components.
+@caret-width-large:         5px;
+
+
+//== Tables
+//
+//## Customizes the `.table` component with basic values, each used across all table variations.
+
+//** Padding for `<th>`s and `<td>`s.
+@table-cell-padding:            8px;
+//** Padding for cells in `.table-condensed`.
+@table-condensed-cell-padding:  5px;
+
+//** Default background color used for all tables.
+@table-bg:                      transparent;
+//** Background color used for `.table-striped`.
+@table-bg-accent:               #f9f9f9;
+//** Background color used for `.table-hover`.
+@table-bg-hover:                #f5f5f5;
+@table-bg-active:               @table-bg-hover;
+
+//** Border color for table and cell borders.
+@table-border-color:            #ddd;
+
+
+//== Buttons
+//
+//## For each of Bootstrap's buttons, define text, background and border color.
+
+@btn-font-weight:                normal;
+
+@btn-default-color:              #333;
+@btn-default-bg:                 #fff;
+@btn-default-border:             #ccc;
+
+@btn-primary-color:              #fff;
+@btn-primary-bg:                 @brand-primary;
+@btn-primary-border:             darken(@btn-primary-bg, 5%);
+
+@btn-success-color:              #fff;
+@btn-success-bg:                 @brand-success;
+@btn-success-border:             darken(@btn-success-bg, 5%);
+
+@btn-info-color:                 #fff;
+@btn-info-bg:                    @brand-info;
+@btn-info-border:                darken(@btn-info-bg, 5%);
+
+@btn-warning-color:              #fff;
+@btn-warning-bg:                 @brand-warning;
+@btn-warning-border:             darken(@btn-warning-bg, 5%);
+
+@btn-danger-color:               #fff;
+@btn-danger-bg:                  @brand-danger;
+@btn-danger-border:              darken(@btn-danger-bg, 5%);
+
+@btn-link-disabled-color:        @gray-light;
+
+// Allows for customizing button radius independently from global border radius
+@btn-border-radius-base:         @border-radius-base;
+@btn-border-radius-large:        @border-radius-large;
+@btn-border-radius-small:        @border-radius-small;
+
+
+//== Forms
+//
+//##
+
+//** `<input>` background color
+@input-bg:                       #fff;
+//** `<input disabled>` background color
+@input-bg-disabled:              @gray-lighter;
+
+//** Text color for `<input>`s
+@input-color:                    @gray;
+//** `<input>` border color
+@input-border:                   #ccc;
+
+// TODO: Rename `@input-border-radius` to `@input-border-radius-base` in v4
+//** Default `.form-control` border radius
+// This has no effect on `<select>`s in some browsers, due to the limited stylability of `<select>`s in CSS.
+@input-border-radius:            @border-radius-base;
+//** Large `.form-control` border radius
+@input-border-radius-large:      @border-radius-large;
+//** Small `.form-control` border radius
+@input-border-radius-small:      @border-radius-small;
+
+//** Border color for inputs on focus
+@input-border-focus:             #66afe9;
+
+//** Placeholder text color
+@input-color-placeholder:        #999;
+
+//** Default `.form-control` height
+@input-height-base:              (@line-height-computed + (@padding-base-vertical * 2) + 2);
+//** Large `.form-control` height
+@input-height-large:             (ceil(@font-size-large * @line-height-large) + (@padding-large-vertical * 2) + 2);
+//** Small `.form-control` height
+@input-height-small:             (floor(@font-size-small * @line-height-small) + (@padding-small-vertical * 2) + 2);
+
+//** `.form-group` margin
+@form-group-margin-bottom:       15px;
+
+@legend-color:                   @gray-dark;
+@legend-border-color:            #e5e5e5;
+
+//** Background color for textual input addons
+@input-group-addon-bg:           @gray-lighter;
+//** Border color for textual input addons
+@input-group-addon-border-color: @input-border;
+
+//** Disabled cursor for form controls and buttons.
+@cursor-disabled:                not-allowed;
+
+
+//== Dropdowns
+//
+//## Dropdown menu container and contents.
+
+//** Background for the dropdown menu.
+@dropdown-bg:                    #fff;
+//** Dropdown menu `border-color`.
+@dropdown-border:                rgba(0,0,0,.15);
+//** Dropdown menu `border-color` **for IE8**.
+@dropdown-fallback-border:       #ccc;
+//** Divider color for between dropdown items.
+@dropdown-divider-bg:            #e5e5e5;
+
+//** Dropdown link text color.
+@dropdown-link-color:            @gray-dark;
+//** Hover color for dropdown links.
+@dropdown-link-hover-color:      darken(@gray-dark, 5%);
+//** Hover background for dropdown links.
+@dropdown-link-hover-bg:         #f5f5f5;
+
+//** Active dropdown menu item text color.
+@dropdown-link-active-color:     @component-active-color;
+//** Active dropdown menu item background color.
+@dropdown-link-active-bg:        @component-active-bg;
+
+//** Disabled dropdown menu item background color.
+@dropdown-link-disabled-color:   @gray-light;
+
+//** Text color for headers within dropdown menus.
+@dropdown-header-color:          @gray-light;
+
+//** Deprecated `@dropdown-caret-color` as of v3.1.0
+@dropdown-caret-color:           #000;
+
+
+//-- Z-index master list
+//
+// Warning: Avoid customizing these values. They're used for a bird's eye view
+// of components dependent on the z-axis and are designed to all work together.
+//
+// Note: These variables are not generated into the Customizer.
+
+@zindex-navbar:            1000;
+@zindex-dropdown:          1000;
+@zindex-popover:           1060;
+@zindex-tooltip:           1070;
+@zindex-navbar-fixed:      1030;
+@zindex-modal-background:  1040;
+@zindex-modal:             1050;
+
+
+//== Media queries breakpoints
+//
+//## Define the breakpoints at which your layout will change, adapting to different screen sizes.
+
+// Extra small screen / phone
+//** Deprecated `@screen-xs` as of v3.0.1
+@screen-xs:                  480px;
+//** Deprecated `@screen-xs-min` as of v3.2.0
+@screen-xs-min:              @screen-xs;
+//** Deprecated `@screen-phone` as of v3.0.1
+@screen-phone:               @screen-xs-min;
+
+// Small screen / tablet
+//** Deprecated `@screen-sm` as of v3.0.1
+@screen-sm:                  768px;
+@screen-sm-min:              @screen-sm;
+//** Deprecated `@screen-tablet` as of v3.0.1
+@screen-tablet:              @screen-sm-min;
+
+// Medium screen / desktop
+//** Deprecated `@screen-md` as of v3.0.1
+@screen-md:                  992px;
+@screen-md-min:              @screen-md;
+//** Deprecated `@screen-desktop` as of v3.0.1
+@screen-desktop:             @screen-md-min;
+
+// Large screen / wide desktop
+//** Deprecated `@screen-lg` as of v3.0.1
+@screen-lg:                  1200px;
+@screen-lg-min:              @screen-lg;
+//** Deprecated `@screen-lg-desktop` as of v3.0.1
+@screen-lg-desktop:          @screen-lg-min;
+
+// So media queries don't overlap when required, provide a maximum
+@screen-xs-max:              (@screen-sm-min - 1);
+@screen-sm-max:              (@screen-md-min - 1);
+@screen-md-max:              (@screen-lg-min - 1);
+
+
+//== Grid system
+//
+//## Define your custom responsive grid.
+
+//** Number of columns in the grid.
+@grid-columns:              12;
+//** Padding between columns. Gets divided in half for the left and right.
+@grid-gutter-width:         30px;
+// Navbar collapse
+//** Point at which the navbar becomes uncollapsed.
+@grid-float-breakpoint:     @screen-sm-min;
+//** Point at which the navbar begins collapsing.
+@grid-float-breakpoint-max: (@grid-float-breakpoint - 1);
+
+
+//== Container sizes
+//
+//## Define the maximum width of `.container` for different screen sizes.
+
+// Small screen / tablet
+@container-tablet:             (720px + @grid-gutter-width);
+//** For `@screen-sm-min` and up.
+@container-sm:                 @container-tablet;
+
+// Medium screen / desktop
+@container-desktop:            (940px + @grid-gutter-width);
+//** For `@screen-md-min` and up.
+@container-md:                 @container-desktop;
+
+// Large screen / wide desktop
+@container-large-desktop:      (1140px + @grid-gutter-width);
+//** For `@screen-lg-min` and up.
+@container-lg:                 @container-large-desktop;
+
+
+//== Navbar
+//
+//##
+
+// Basics of a navbar
+@navbar-height:                    50px;
+@navbar-margin-bottom:             @line-height-computed;
+@navbar-border-radius:             @border-radius-base;
+@navbar-padding-horizontal:        floor((@grid-gutter-width / 2));
+@navbar-padding-vertical:          ((@navbar-height - @line-height-computed) / 2);
+@navbar-collapse-max-height:       340px;
+
+@navbar-default-color:             #777;
+@navbar-default-bg:                #f8f8f8;
+@navbar-default-border:            darken(@navbar-default-bg, 6.5%);
+
+// Navbar links
+@navbar-default-link-color:                #777;
+@navbar-default-link-hover-color:          #333;
+@navbar-default-link-hover-bg:             transparent;
+@navbar-default-link-active-color:         #555;
+@navbar-default-link-active-bg:            darken(@navbar-default-bg, 6.5%);
+@navbar-default-link-disabled-color:       #ccc;
+@navbar-default-link-disabled-bg:          transparent;
+
+// Navbar brand label
+@navbar-default-brand-color:               @navbar-default-link-color;
+@navbar-default-brand-hover-color:         darken(@navbar-default-brand-color, 10%);
+@navbar-default-brand-hover-bg:            transparent;
+
+// Navbar toggle
+@navbar-default-toggle-hover-bg:           #ddd;
+@navbar-default-toggle-icon-bar-bg:        #888;
+@navbar-default-toggle-border-color:       #ddd;
+
+
+//=== Inverted navbar
+// Reset inverted navbar basics
+@navbar-inverse-color:                      lighten(@gray-light, 15%);
+@navbar-inverse-bg:                         #222;
+@navbar-inverse-border:                     darken(@navbar-inverse-bg, 10%);
+
+// Inverted navbar links
+@navbar-inverse-link-color:                 lighten(@gray-light, 15%);
+@navbar-inverse-link-hover-color:           #fff;
+@navbar-inverse-link-hover-bg:              transparent;
+@navbar-inverse-link-active-color:          @navbar-inverse-link-hover-color;
+@navbar-inverse-link-active-bg:             darken(@navbar-inverse-bg, 10%);
+@navbar-inverse-link-disabled-color:        #444;
+@navbar-inverse-link-disabled-bg:           transparent;
+
+// Inverted navbar brand label
+@navbar-inverse-brand-color:                @navbar-inverse-link-color;
+@navbar-inverse-brand-hover-color:          #fff;
+@navbar-inverse-brand-hover-bg:             transparent;
+
+// Inverted navbar toggle
+@navbar-inverse-toggle-hover-bg:            #333;
+@navbar-inverse-toggle-icon-bar-bg:         #fff;
+@navbar-inverse-toggle-border-color:        #333;
+
+
+//== Navs
+//
+//##
+
+//=== Shared nav styles
+@nav-link-padding:                          10px 15px;
+@nav-link-hover-bg:                         @gray-lighter;
+
+@nav-disabled-link-color:                   @gray-light;
+@nav-disabled-link-hover-color:             @gray-light;
+
+//== Tabs
+@nav-tabs-border-color:                     #ddd;
+
+@nav-tabs-link-hover-border-color:          @gray-lighter;
+
+@nav-tabs-active-link-hover-bg:             @body-bg;
+@nav-tabs-active-link-hover-color:          @gray;
+@nav-tabs-active-link-hover-border-color:   #ddd;
+
+@nav-tabs-justified-link-border-color:            #ddd;
+@nav-tabs-justified-active-link-border-color:     @body-bg;
+
+//== Pills
+@nav-pills-border-radius:                   @border-radius-base;
+@nav-pills-active-link-hover-bg:            @component-active-bg;
+@nav-pills-active-link-hover-color:         @component-active-color;
+
+
+//== Pagination
+//
+//##
+
+@pagination-color:                     @link-color;
+@pagination-bg:                        #fff;
+@pagination-border:                    #ddd;
+
+@pagination-hover-color:               @link-hover-color;
+@pagination-hover-bg:                  @gray-lighter;
+@pagination-hover-border:              #ddd;
+
+@pagination-active-color:              #fff;
+@pagination-active-bg:                 @brand-primary;
+@pagination-active-border:             @brand-primary;
+
+@pagination-disabled-color:            @gray-light;
+@pagination-disabled-bg:               #fff;
+@pagination-disabled-border:           #ddd;
+
+
+//== Pager
+//
+//##
+
+@pager-bg:                             @pagination-bg;
+@pager-border:                         @pagination-border;
+@pager-border-radius:                  15px;
+
+@pager-hover-bg:                       @pagination-hover-bg;
+
+@pager-active-bg:                      @pagination-active-bg;
+@pager-active-color:                   @pagination-active-color;
+
+@pager-disabled-color:                 @pagination-disabled-color;
+
+
+//== Jumbotron
+//
+//##
+
+@jumbotron-padding:              30px;
+@jumbotron-color:                inherit;
+@jumbotron-bg:                   @gray-lighter;
+@jumbotron-heading-color:        inherit;
+@jumbotron-font-size:            ceil((@font-size-base * 1.5));
+@jumbotron-heading-font-size:    ceil((@font-size-base * 4.5));
+
+
+//== Form states and alerts
+//
+//## Define colors for form feedback states and, by default, alerts.
+
+@state-success-text:             #3c763d;
+@state-success-bg:               #dff0d8;
+@state-success-border:           darken(spin(@state-success-bg, -10), 5%);
+
+@state-info-text:                #31708f;
+@state-info-bg:                  #d9edf7;
+@state-info-border:              darken(spin(@state-info-bg, -10), 7%);
+
+@state-warning-text:             #8a6d3b;
+@state-warning-bg:               #fcf8e3;
+@state-warning-border:           darken(spin(@state-warning-bg, -10), 5%);
+
+@state-danger-text:              #a94442;
+@state-danger-bg:                #f2dede;
+@state-danger-border:            darken(spin(@state-danger-bg, -10), 5%);
+
+
+//== Tooltips
+//
+//##
+
+//** Tooltip max width
+@tooltip-max-width:           200px;
+//** Tooltip text color
+@tooltip-color:               #fff;
+//** Tooltip background color
+@tooltip-bg:                  #000;
+@tooltip-opacity:             .9;
+
+//** Tooltip arrow width
+@tooltip-arrow-width:         5px;
+//** Tooltip arrow color
+@tooltip-arrow-color:         @tooltip-bg;
+
+
+//== Popovers
+//
+//##
+
+//** Popover body background color
+@popover-bg:                          #fff;
+//** Popover maximum width
+@popover-max-width:                   276px;
+//** Popover border color
+@popover-border-color:                rgba(0,0,0,.2);
+//** Popover fallback border color
+@popover-fallback-border-color:       #ccc;
+
+//** Popover title background color
+@popover-title-bg:                    darken(@popover-bg, 3%);
+
+//** Popover arrow width
+@popover-arrow-width:                 10px;
+//** Popover arrow color
+@popover-arrow-color:                 @popover-bg;
+
+//** Popover outer arrow width
+@popover-arrow-outer-width:           (@popover-arrow-width + 1);
+//** Popover outer arrow color
+@popover-arrow-outer-color:           fadein(@popover-border-color, 5%);
+//** Popover outer arrow fallback color
+@popover-arrow-outer-fallback-color:  darken(@popover-fallback-border-color, 20%);
+
+
+//== Labels
+//
+//##
+
+//** Default label background color
+@label-default-bg:            @gray-light;
+//** Primary label background color
+@label-primary-bg:            @brand-primary;
+//** Success label background color
+@label-success-bg:            @brand-success;
+//** Info label background color
+@label-info-bg:               @brand-info;
+//** Warning label background color
+@label-warning-bg:            @brand-warning;
+//** Danger label background color
+@label-danger-bg:             @brand-danger;
+
+//** Default label text color
+@label-color:                 #fff;
+//** Default text color of a linked label
+@label-link-hover-color:      #fff;
+
+
+//== Modals
+//
+//##
+
+//** Padding applied to the modal body
+@modal-inner-padding:         15px;
+
+//** Padding applied to the modal title
+@modal-title-padding:         15px;
+//** Modal title line-height
+@modal-title-line-height:     @line-height-base;
+
+//** Background color of modal content area
+@modal-content-bg:                             #fff;
+//** Modal content border color
+@modal-content-border-color:                   rgba(0,0,0,.2);
+//** Modal content border color **for IE8**
+@modal-content-fallback-border-color:          #999;
+
+//** Modal backdrop background color
+@modal-backdrop-bg:           #000;
+//** Modal backdrop opacity
+@modal-backdrop-opacity:      .5;
+//** Modal header border color
+@modal-header-border-color:   #e5e5e5;
+//** Modal footer border color
+@modal-footer-border-color:   @modal-header-border-color;
+
+@modal-lg:                    900px;
+@modal-md:                    600px;
+@modal-sm:                    300px;
+
+
+//== Alerts
+//
+//## Define alert colors, border radius, and padding.
+
+@alert-padding:               15px;
+@alert-border-radius:         @border-radius-base;
+@alert-link-font-weight:      bold;
+
+@alert-success-bg:            @state-success-bg;
+@alert-success-text:          @state-success-text;
+@alert-success-border:        @state-success-border;
+
+@alert-info-bg:               @state-info-bg;
+@alert-info-text:             @state-info-text;
+@alert-info-border:           @state-info-border;
+
+@alert-warning-bg:            @state-warning-bg;
+@alert-warning-text:          @state-warning-text;
+@alert-warning-border:        @state-warning-border;
+
+@alert-danger-bg:             @state-danger-bg;
+@alert-danger-text:           @state-danger-text;
+@alert-danger-border:         @state-danger-border;
+
+
+//== Progress bars
+//
+//##
+
+//** Background color of the whole progress component
+@progress-bg:                 #f5f5f5;
+//** Progress bar text color
+@progress-bar-color:          #fff;
+//** Variable for setting rounded corners on progress bar.
+@progress-border-radius:      @border-radius-base;
+
+//** Default progress bar color
+@progress-bar-bg:             @brand-primary;
+//** Success progress bar color
+@progress-bar-success-bg:     @brand-success;
+//** Warning progress bar color
+@progress-bar-warning-bg:     @brand-warning;
+//** Danger progress bar color
+@progress-bar-danger-bg:      @brand-danger;
+//** Info progress bar color
+@progress-bar-info-bg:        @brand-info;
+
+
+//== List group
+//
+//##
+
+//** Background color on `.list-group-item`
+@list-group-bg:                 #fff;
+//** `.list-group-item` border color
+@list-group-border:             #ddd;
+//** List group border radius
+@list-group-border-radius:      @border-radius-base;
+
+//** Background color of single list items on hover
+@list-group-hover-bg:           #f5f5f5;
+//** Text color of active list items
+@list-group-active-color:       @component-active-color;
+//** Background color of active list items
+@list-group-active-bg:          @component-active-bg;
+//** Border color of active list elements
+@list-group-active-border:      @list-group-active-bg;
+//** Text color for content within active list items
+@list-group-active-text-color:  lighten(@list-group-active-bg, 40%);
+
+//** Text color of disabled list items
+@list-group-disabled-color:      @gray-light;
+//** Background color of disabled list items
+@list-group-disabled-bg:         @gray-lighter;
+//** Text color for content within disabled list items
+@list-group-disabled-text-color: @list-group-disabled-color;
+
+@list-group-link-color:         #555;
+@list-group-link-hover-color:   @list-group-link-color;
+@list-group-link-heading-color: #333;
+
+
+//== Panels
+//
+//##
+
+@panel-bg:                    #fff;
+@panel-body-padding:          15px;
+@panel-heading-padding:       10px 15px;
+@panel-footer-padding:        @panel-heading-padding;
+@panel-border-radius:         @border-radius-base;
+
+//** Border color for elements within panels
+@panel-inner-border:          #ddd;
+@panel-footer-bg:             #f5f5f5;
+
+@panel-default-text:          @gray-dark;
+@panel-default-border:        #ddd;
+@panel-default-heading-bg:    #f5f5f5;
+
+@panel-primary-text:          #fff;
+@panel-primary-border:        @brand-primary;
+@panel-primary-heading-bg:    @brand-primary;
+
+@panel-success-text:          @state-success-text;
+@panel-success-border:        @state-success-border;
+@panel-success-heading-bg:    @state-success-bg;
+
+@panel-info-text:             @state-info-text;
+@panel-info-border:           @state-info-border;
+@panel-info-heading-bg:       @state-info-bg;
+
+@panel-warning-text:          @state-warning-text;
+@panel-warning-border:        @state-warning-border;
+@panel-warning-heading-bg:    @state-warning-bg;
+
+@panel-danger-text:           @state-danger-text;
+@panel-danger-border:         @state-danger-border;
+@panel-danger-heading-bg:     @state-danger-bg;
+
+
+//== Thumbnails
+//
+//##
+
+//** Padding around the thumbnail image
+@thumbnail-padding:           4px;
+//** Thumbnail background color
+@thumbnail-bg:                @body-bg;
+//** Thumbnail border color
+@thumbnail-border:            #ddd;
+//** Thumbnail border radius
+@thumbnail-border-radius:     @border-radius-base;
+
+//** Custom text color for thumbnail captions
+@thumbnail-caption-color:     @text-color;
+//** Padding around the thumbnail caption
+@thumbnail-caption-padding:   9px;
+
+
+//== Wells
+//
+//##
+
+@well-bg:                     #f5f5f5;
+@well-border:                 darken(@well-bg, 7%);
+
+
+//== Badges
+//
+//##
+
+@badge-color:                 #fff;
+//** Linked badge text color on hover
+@badge-link-hover-color:      #fff;
+@badge-bg:                    @gray-light;
+
+//** Badge text color in active nav link
+@badge-active-color:          @link-color;
+//** Badge background color in active nav link
+@badge-active-bg:             #fff;
+
+@badge-font-weight:           bold;
+@badge-line-height:           1;
+@badge-border-radius:         10px;
+
+
+//== Breadcrumbs
+//
+//##
+
+@breadcrumb-padding-vertical:   8px;
+@breadcrumb-padding-horizontal: 15px;
+//** Breadcrumb background color
+@breadcrumb-bg:                 #f5f5f5;
+//** Breadcrumb text color
+@breadcrumb-color:              #ccc;
+//** Text color of current page in the breadcrumb
+@breadcrumb-active-color:       @gray-light;
+//** Textual separator for between breadcrumb elements
+@breadcrumb-separator:          "/";
+
+
+//== Carousel
+//
+//##
+
+@carousel-text-shadow:                        0 1px 2px rgba(0,0,0,.6);
+
+@carousel-control-color:                      #fff;
+@carousel-control-width:                      15%;
+@carousel-control-opacity:                    .5;
+@carousel-control-font-size:                  20px;
+
+@carousel-indicator-active-bg:                #fff;
+@carousel-indicator-border-color:             #fff;
+
+@carousel-caption-color:                      #fff;
+
+
+//== Close
+//
+//##
+
+@close-font-weight:           bold;
+@close-color:                 #000;
+@close-text-shadow:           0 1px 0 #fff;
+
+
+//== Code
+//
+//##
+
+@code-color:                  #c7254e;
+@code-bg:                     #f9f2f4;
+
+@kbd-color:                   #fff;
+@kbd-bg:                      #333;
+
+@pre-bg:                      #f5f5f5;
+@pre-color:                   @gray-dark;
+@pre-border-color:            #ccc;
+@pre-scrollable-max-height:   340px;
+
+
+//== Type
+//
+//##
+
+//** Horizontal offset for forms and lists.
+@component-offset-horizontal: 180px;
+//** Text muted color
+@text-muted:                  @gray-light;
+//** Abbreviations and acronyms border color
+@abbr-border-color:           @gray-light;
+//** Headings small color
+@headings-small-color:        @gray-light;
+//** Blockquote small color
+@blockquote-small-color:      @gray-light;
+//** Blockquote font size
+@blockquote-font-size:        (@font-size-base * 1.25);
+//** Blockquote border color
+@blockquote-border-color:     @gray-lighter;
+//** Page header border color
+@page-header-border-color:    @gray-lighter;
+//** Width of horizontal description list titles
+@dl-horizontal-offset:        @component-offset-horizontal;
+//** Point at which .dl-horizontal becomes horizontal
+@dl-horizontal-breakpoint:    @grid-float-breakpoint;
+//** Horizontal line color.
+@hr-border:                   @gray-lighter;
diff --git a/src/main/webapp/vendors/bootstrap/less/wells.less b/src/main/webapp/vendors/bootstrap/less/wells.less
new file mode 100644
index 0000000000000000000000000000000000000000..15d072b0cd0e31d6bd40fad5aa1cb8fb1fbdefd9
--- /dev/null
+++ b/src/main/webapp/vendors/bootstrap/less/wells.less
@@ -0,0 +1,29 @@
+//
+// Wells
+// --------------------------------------------------
+
+
+// Base class
+.well {
+  min-height: 20px;
+  padding: 19px;
+  margin-bottom: 20px;
+  background-color: @well-bg;
+  border: 1px solid @well-border;
+  border-radius: @border-radius-base;
+  .box-shadow(inset 0 1px 1px rgba(0,0,0,.05));
+  blockquote {
+    border-color: #ddd;
+    border-color: rgba(0,0,0,.15);
+  }
+}
+
+// Sizes
+.well-lg {
+  padding: 24px;
+  border-radius: @border-radius-large;
+}
+.well-sm {
+  padding: 9px;
+  border-radius: @border-radius-small;
+}