diff --git a/Makefile b/Makefile index 048a09682..8b04d9a73 100644 --- a/Makefile +++ b/Makefile @@ -28,7 +28,7 @@ build: bundle exec lessc --compress ${SITE_LESS} > ${SITE_CSS} cp -r ${FA_ROOT_DIRECTORY}/* ../ mv README.md-nobuild ../README.md - cd assets && mv font-awesome font-awesome-4.6.2 && zip -r9 font-awesome-4.6.2.zip font-awesome-4.6.2 && mv font-awesome-4.6.2 font-awesome + cd assets && mv font-awesome font-awesome-4.6.3 && zip -r9 font-awesome-4.6.3.zip font-awesome-4.6.3 && mv font-awesome-4.6.3 font-awesome find .. -type f ! -perm 644 -exec chmod 644 {} \; diff --git a/accessibility/index.html b/accessibility/index.html index 4de1f1c29..3a54230d4 100644 --- a/accessibility/index.html +++ b/accessibility/index.html @@ -38,7 +38,7 @@ })(); - + - - -

- Icons are symbols that can convey a ton of information and really help people comprehend directions, signs, and interfaces. Its important that we create and use them so that they can reach the largest amount of people possible. -

- -

- When creating web sites and apps, that means making sure our icons play well with assistive tech when users are navigating apps and sites. -

- - - - - -
- +
+
+
+

+ Icons are symbols that can convey a ton of information and really help people comprehend directions, signs, and interfaces. Its important that we create and use them so that they can reach the largest amount of people possible. +

+
+
+
+

About Icon Fonts & Accessibility

- Modern versions of assistive technology, like screen readers, will read CSS generated content (how Font Awesome icons are rendered), as well as specific Unicode characters. When trying our default markup for rendering icons, assisistive technology may have the following problems. + Modern versions of assistive technology, like screen readers, will read CSS generated content (how Font Awesome icons are rendered), as well as specific Unicode characters. When reading our default markup for rendering icons, assisistive technology may have the following problems.

    @@ -258,16 +212,52 @@
-
- -

- When using icons in your UI, there are ways to help assistive technology either ignore or better understand Font Awesome. -

+
+
+
-

Icons used for pure decoration or visual styling

-

- If you're using an icon to add some extra decoration or branding, it does not need to be announced to users as they are navigating your site or app aurally. Additionally, if you're using an icon to visually re-emphasize or add styling to content already present in your HTML, it does not need to be repeated to an assistive technology-using user. You can make sure this is not read by adding the aria-hidden="true" to your Font Awesome markup. -

+ + +
+
+
+

+ + Use Font Awesome CDN's auto accessibility +

+ +

Font Awesome CDN helps you automate accessibility support more easily so your icons work for the most people possible. You only need turn on a setting, use our simple syntax, and any icons you use will have all of the best practices and manual techniques below applied automatically.

+
+ + +
+ +
+ + +
+ or +
+ +
+ +

+ + Manually make your icons accessible +

+ +

When using icons in your UI, there are manual techniques and ways to help assistive technology either ignore or better understand Font Awesome.

+ +

Icons used for pure decoration or visual styling

+

If you're using an icon to add some extra decoration or branding, it does not need to be announced to users as they are navigating your site or app aurally. Additionally, if you're using an icon to visually re-emphasize or add styling to content already present in your HTML, it does not need to be repeated to an assistive technology-using user. You can make sure this is not read by adding the aria-hidden="true" to your Font Awesome markup.

<i class="fa fa-fighter-jet" aria-hidden="true"></i>
@@ -290,12 +280,12 @@
 an icon being used in front of link text
   
-

Icons with semantic or interactive purpose

+

Icons with semantic or interactive purpose

If you're using an icon to convey meaning (rather than only as a decorative element), ensure that this meaning is also conveyed to assistive technologies. This goes for content you're abbreviating via icons as well as interactive controls (buttons, form elements, toggles, etc.). There are a few techniques to accomplish this:

-

If an icon is not an interactive element

+

If an icon is not an interactive element

The simplest way to provide a text alternative is to use the aria-hidden="true" attribute on the icon and to include the text with an additional element, such as a <span>, with appropriate CSS to visually hide the element while keeping it accessible to assistive technologies. In addition, you can add a title attribute on the icon to provide a tooltip for sighted mouse users.

@@ -331,7 +321,7 @@ an icon being used to denote time remaining
-

If an icon represents an interactive element

+

If an icon represents an interactive element

In the case of focusable interactive elements, there are various options to include an alternative text or label to the element, without the need for any visually hidden <span> or similar. For instance, simply adding the title attribute to the interactive element itself will be sufficient to provide an accessible alternative name for the element, as well as providing the mouse tooltip.

@@ -358,30 +348,22 @@ an icon being used as a delete button's symbol
- -
- -
-
- -
+
+ +
+ -
+

- While the scenarios and techniques above help avoid some serious issues and confusion, they are not exhaustive. There are many complex contexts and use cases when it comes to accessibility, such as users with low vision who need a high color contrast ratio to see UI. There are some great tools and resources to learn from and work on these issues out there. Here are a few reads we recommend. + While the scenarios and techniques here help avoid some serious issues and confusion, they are not exhaustive. There are many complex contexts and use cases when it comes to accessibility, such as users with low vision who need a high color contrast ratio to see UI. There are some great tools and resources to learn from and work on these issues out there. Here are a few reads we recommend.

+ @@ -415,7 +397,7 @@
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/assets/css/site.css b/assets/css/site.css index 613ca98f6..b60e79002 100644 --- a/assets/css/site.css +++ b/assets/css/site.css @@ -2,4 +2,4 @@ * Bootstrap v3.3.5 (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:0.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:0.35em 0.625em 0.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('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:"\2a"}.glyphicon-plus:before{content:"\2b"}.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:proxima-nova,"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:#21b384;text-decoration:none}a:hover,a:focus{color:#198764;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{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;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:museo-slab,Georgia,"Times New Roman",Times,serif;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:#b3b3b3}.text-primary{color:#337ab7}a.text-primary:hover,a.text-primary:focus{color:#286090}.text-success{color:#1d9d74}a.text-success:hover,a.text-success:focus{color:#157254}.text-info{color:#007dbc}a.text-info:hover,a.text-info:focus{color:#005b89}.text-warning{color:#8a6d3b}a.text-warning:hover,a.text-warning:focus{color:#66512c}.text-danger{color:#d9534f}a.text-danger:hover,a.text-danger:focus{color:#c9302c}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:hover,a.bg-primary:focus{background-color:#286090}.bg-success{background-color:#f1f9f7}a.bg-success:hover,a.bg-success:focus{background-color:#ceeae1}.bg-info{background-color:#f0f9ff}a.bg-info:hover,a.bg-info:focus{background-color:#bde5ff}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover,a.bg-warning:focus{background-color:#f7ecb5}.bg-danger{background-color:#fbeeed}a.bg-danger:hover,a.bg-danger:focus{background-color:#f2c5c3}.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:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;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 #eee;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{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:#b3b3b3;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;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:#f1f9f7}.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:#e0f1ec}.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:#f0f9ff}.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:#d7efff}.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:#fbeeed}.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:#f7d9d8}.table-responsive{overflow-x:auto;min-height:0.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 #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{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:4px;-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: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:#1d9d74}.has-success .form-control{border-color:#1d9d74;-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:#157254;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #44dcab;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #44dcab}.has-success .input-group-addon{color:#1d9d74;border-color:#1d9d74;background-color:#f1f9f7}.has-success .form-control-feedback{color:#1d9d74}.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:#d9534f}.has-error .form-control{border-color:#d9534f;-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:#c9302c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #eba5a3;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #eba5a3}.has-error .input-group-addon{color:#d9534f;border-color:#d9534f;background-color:#fbeeed}.has-error .form-control-feedback{color:#d9534f}.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{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:14.333333px;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:4px;-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:#333;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:#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,.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:#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,.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:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#1d9d74;border-color:#198764}.btn-success:focus,.btn-success.focus{color:#fff;background-color:#157254;border-color:#051c15}.btn-success:hover{color:#fff;background-color:#157254;border-color:#0f543e}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#157254;border-color:#0f543e}.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:#0f543e;border-color:#051c15}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{background-image:none}.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:#1d9d74;border-color:#198764}.btn-success .badge{color:#1d9d74;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,.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:#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,.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:#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,.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:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#21b384;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:#198764;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-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:4px;-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:#1d9d74}.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:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-bottom-left-radius:4px;border-top-right-radius:0;border-top-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-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-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:#21b384}.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;background-color:#fff;border:1px solid #ddd;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: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:#1d9d74}.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: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-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:40px;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{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:10px 15px;font-size:18px;line-height:20px;height:40px}.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:3px;margin-bottom:3px;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: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:10px;padding-bottom:10px}}.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:3px;margin-bottom:3px}@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:4px;border-top-left-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:3px;margin-bottom:3px}.navbar-btn.btn-sm{margin-top:5px;margin-bottom:5px}.navbar-btn.btn-xs{margin-top:9px;margin-bottom:9px}.navbar-text{margin-top:10px;margin-bottom:10px}@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:#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{background-color:#e7e7e7;color:#555}@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:#1d9d74;border-color:#1b926c}.navbar-inverse .navbar-brand{color:#fff}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#8eceba}.navbar-inverse .navbar-nav>li>a{color:#b0ddce}.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:#1b926c}.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:#c7e7dc}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#fff}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#177f5e}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{background-color:#1b926c;color:#fff}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#1b926c}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#1b926c}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#b0ddce}.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:#1b926c}.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:#b0ddce}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#b0ddce}.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{content:"/\00a0";padding:0 5px;color:#ccc}.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;line-height:1.42857143;text-decoration:none;color:#21b384;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:4px;border-top-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{z-index:2;color:#198764;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:#337ab7;border-color:#337ab7;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:6px;border-top-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-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-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.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:#1d9d74}.label-success[href]:hover,.label-success[href]:focus{background-color:#157254}.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:#21b384;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:#fff;background-color:#1d9d74}.jumbotron h1,.jumbotron .h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#157254}.container .jumbotron,.container-fluid .jumbotron{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-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:#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-left:auto;margin-right:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#21b384}.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{background-color:#f1f9f7;border-color:#e0f1e9;color:#1d9d74}.alert-success hr{border-top-color:#ceeadc}.alert-success .alert-link{color:#157254}.alert-info{background-color:#f0f9ff;border-color:#ccf3ff;color:#007dbc}.alert-info hr{border-top-color:#b3edff}.alert-info .alert-link{color:#005b89}.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:#fbeeed;border-color:#f7d8dd;color:#d9534f}.alert-danger hr{border-top-color:#f2c3ca}.alert-danger .alert-link{color:#c9302c}@-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:4px;-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:#1d9d74}.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:4px;border-top-left-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{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:#1d9d74;border-color:#1d9d74}.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:#9aecd2}.list-group-item-success{color:#1d9d74;background-color:#f1f9f7}a.list-group-item-success,button.list-group-item-success{color:#1d9d74}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:#1d9d74;background-color:#e0f1ec}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:#1d9d74;border-color:#1d9d74}.list-group-item-info{color:#007dbc;background-color:#f0f9ff}a.list-group-item-info,button.list-group-item-info{color:#007dbc}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:#007dbc;background-color:#d7efff}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:#007dbc;border-color:#007dbc}.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:#d9534f;background-color:#fbeeed}a.list-group-item-danger,button.list-group-item-danger{color:#d9534f}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:#d9534f;background-color:#f7d9d8}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:#d9534f;border-color:#d9534f}.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,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:3px;border-top-left-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-right-radius:3px;border-top-left-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-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:3px;border-top-left-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-left-radius:3px;border-bottom-right-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{border:0;margin-bottom: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:#99bddb}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#99bddb}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#99bddb}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#99bddb}.panel-success{border-color:#8eceba}.panel-success>.panel-heading{color:#fff;background-color:#1d9d74;border-color:#8eceba}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#8eceba}.panel-success>.panel-heading .badge{color:#1d9d74;background-color:#fff}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#8eceba}.panel-info{border-color:#ade0ef}.panel-info>.panel-heading{color:#fff;background-color:#5bc0de;border-color:#ade0ef}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ade0ef}.panel-info>.panel-heading .badge{color:#5bc0de;background-color:#fff}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ade0ef}.panel-warning{border-color:#f8d6a7}.panel-warning>.panel-heading{color:#fff;background-color:#f0ad4e;border-color:#f8d6a7}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#f8d6a7}.panel-warning>.panel-heading .badge{color:#f0ad4e;background-color:#fff}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#f8d6a7}.panel-danger{border-color:#eca9a7}.panel-danger>.panel-heading{color:#fff;background-color:#d9534f;border-color:#eca9a7}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#eca9a7}.panel-danger>.panel-heading .badge{color:#d9534f;background-color:#fff}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#eca9a7}.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:4px;-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: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;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:6px;-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;min-height:16.42857143px}.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:proxima-nova,"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: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{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:proxima-nova,"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:6px;-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: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{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:30px;color:#157254;text-align:center;text-shadow:0 1px 0 rgba(255,255,255,0.25)}.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:#157254;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 0 rgba(255,255,255,0.25)}.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:-15px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-15px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-15px}.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-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-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}}.gg{display:table;width:100%;vertical-align:middle}.gg-col{display:table-cell;vertical-align:inherit}.gg{display:table;width:100%;vertical-align:middle}.gg-fixed{table-layout:fixed}.gg-col{display:table-cell;vertical-align:inherit}.gg-row{display:table-row}.gg-min-width{width:1%}.gg-top{vertical-align:top}.gg-middle{vertical-align:middle}.gg-bottom{vertical-align:bottom}.gg-padded{margin-left:-1rem;margin-right:-1rem}.gg-padded .gg{border-spacing:1rem 0}.gg-col-1,.gg-col-2,.gg-col-3,.gg-col-4,.gg-col-5,.gg-col-6,.gg-col-7,.gg-col-8,.gg-col-9,.gg-col-10,.gg-col-11,.gg-col-12{display:table-cell;vertical-align:inherit}.gg-col-1{width:8.33333333%}.gg-col-2{width:16.66666667%}.gg-col-3{width:25%}.gg-col-4{width:33.33333333%}.gg-col-5{width:41.66666667%}.gg-col-6{width:50%}.gg-col-7{width:58.33333333%}.gg-col-8{width:66.66666667%}.gg-col-9{width:75%}.gg-col-10{width:83.33333333%}.gg-col-11{width:91.66666667%}.gg-col-12{width:100%}.navbar{margin-bottom:0}.navbar-inverse{background-color:#1fa67a}.navbar-brand{font-family:museo-slab,Georgia,"Times New Roman",Times,serif;font-weight:300;font-size:20px}.navbar-brand .fas-flag-logo{padding-right:3px;vertical-align:baseline}.navbar-nav>li>a{padding:11px 10px 9px}.navbar-nav>li.dropdown-split-right>a{padding-left:7px}.navbar-nav>li.dropdown-split-left>a{padding-right:0}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#1b926c}.navbar-inverse .navbar-toggle{color:#fff;text-shadow:0 1px 0 rgba(0,0,0,0.15);padding:4px 10px;margin-top:5px;margin-bottom:5px}.navbar-inverse .navbar-toggle:hover{background-color:#f4faf8;border-color:#f4faf8;color:#1d9d74;text-shadow:0 -1px 0 #fff}.navbar-nav.navbar-right:last-child{margin-right:-10px}.navbar-org{background-color:#1b926c;border-color:#177e5d;padding:0}.navbar-org .ficon-logo-flag,.navbar-org .ficon-log-fort{vertical-align:baseline}.navbar-org .navbar-text{color:#a5d8c7;margin-top:12px;margin-right:30px}.navbar-org .navbar-nav{margin-right:-10px}.navbar-org .navbar-nav>li+li{margin-left:15px}.navbar-org .navbar-nav>li>a{color:#c7e7dc}.navbar-org .navbar-nav>li>a:hover,.navbar-org .navbar-nav>li>a:focus{color:#fff;background-color:transparent;border-bottom:solid 2px #e8f5f1}.navbar-org .navbar-nav>.active>a,.navbar-org .navbar-nav>.active>a:hover,.navbar-org .navbar-nav>.active>a:focus{color:#c7e7dc;background-color:transparent;border-radius:0;border-bottom:solid 2px #b0ddce}.navbar-org .navbar-nav>.disabled>a,.navbar-org .navbar-nav>.disabled>a:hover,.navbar-org .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-org .navbar-toggle{border-color:#c7e7dc}.navbar-org .navbar-toggle:hover,.navbar-org .navbar-toggle:focus{background-color:#fff}.navbar-org .navbar-toggle .icon-bar{background-color:#fff}.navbar-org .navbar-collapse,.navbar-org .navbar-form{border-color:#177f5e}.navbar-org .navbar-nav>.open>a,.navbar-org .navbar-nav>.open>a:hover,.navbar-org .navbar-nav>.open>a:focus{background-color:#1b926c;color:#fff}@media (max-width:767px){.navbar-org .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#1b926c}.navbar-org .navbar-nav .open .dropdown-menu .divider{background-color:#1b926c}.navbar-org .navbar-nav .open .dropdown-menu>li>a{color:#b0ddce}.navbar-org .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-org .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-org .navbar-nav .open .dropdown-menu>.active>a,.navbar-org .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-org .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#1b926c}.navbar-org .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-org .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-org .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-org .navbar-link{color:#b0ddce}.navbar-org .navbar-link:hover{color:#fff}.navbar-org .btn-link{color:#b0ddce}.navbar-org .btn-link:hover,.navbar-org .btn-link:focus{color:#fff}.navbar-org .btn-link[disabled]:hover,fieldset[disabled] .navbar-org .btn-link:hover,.navbar-org .btn-link[disabled]:focus,fieldset[disabled] .navbar-org .btn-link:focus{color:#444}.btn{box-shadow:inset 0 1px 0 rgba(255,255,255,0.2)}.btn-default{text-shadow:0 1px 0 #fff}.btn-primary,.btn-success,.btn-warning,.btn-danger,.btn-info{text-shadow:0 1px 0 rgba(0,0,0,0.2)}.jumbotron{background-color:#1fa67a;border-top:1px solid #34a782;border-bottom:1px solid #1b926c;margin-bottom:0;padding:50px 0 40px}.jumbotron,.jumbotron h1{color:#fff}.jumbotron h1{font-size:80px;letter-spacing:-2px;line-height:1;margin:0 0 15px}.jumbotron p{font-family:proxima-nova-sc,"Helvetica Neue",Helvetica,Arial,sans-serif;margin-top:15px;margin-bottom:15px;font-size:24px;line-height:1.3;font-weight:lighter}.jumbotron .list-group-item{border-color:#3fac89;background:transparent}.jumbotron .text-muted{color:#83c9b3}.jumbotron-ad h1,.jumbotron-carousel h1{text-shadow:4px 3px 0 #1d9d74,9px 8px 0 rgba(0,0,0,0.15)}.jumbotron-ad p,.jumbotron-carousel p{color:#c7e7dc;text-shadow:0 1px 0 rgba(0,0,0,0.15)}.jumbotron-icon{padding:30px 0 25px;background-color:#eee;color:#222;border-bottom-color:#d1d1d1;border-top-color:#f7f7f7}.jumbotron-icon,.jumbotron-icon h1{text-shadow:0 1px 0 #fff}.jumbotron-icon h1{color:#222;margin-top:22px}.jumbotron-icon h1 small{letter-spacing:normal;font-family:proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;margin-left:20px}.jumbotron-icon .info-icons{font-size:14px}.jumbotron-icon .info-details{float:left}.jumbotron-icon .info-details p{margin:25px 0;font-weight:bold}.jumbotron-icon .info-details .dl-horizontal dt{width:80px}.jumbotron-icon .info-details .dl-horizontal dd{margin-left:95px}.jumbotron-icon .fa-2{font-size:2em}.jumbotron-icon .fa-3{font-size:4em}.jumbotron-icon .fa-4{font-size:7em}.jumbotron-icon .fa-5{font-size:12em}.jumbotron-icon .fa-6{font-size:20em}.jumbotron-icon .fa-1,.jumbotron-icon .fa-2,.jumbotron-icon .fa-3,.jumbotron-icon .fa-4,.jumbotron-icon .fa-5,.jumbotron-icon .fa-6{margin-right:.07142857em}h1.info-class{font-size:30px}.well-transparent{background-color:transparent}.well-lg{padding:40px;font-size:21px}.well-lg h1{font-size:3em}.well-lg h2{font-size:2em}.well-lg h1,.well-lg h2{margin-top:0}.well-lg p{margin-bottom:30px}.label{padding:.3em .6em}.label-brand{background-color:#1d9d74}.label-brand[href]:hover,.label-brand[href]:focus{background-color:#157254}.label-dark{background-color:#333}.label-dark[href]:hover,.label-dark[href]:focus{background-color:#1a1a1a}h1 .label,h2 .label,h3 .label,h4 .label,h5 .label,h6 .label{font-family:proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif}.small-caps{font-family:proxima-nova-sc,"Helvetica Neue",Helvetica,Arial,sans-serif}.hr{position:relative;text-align:center;font-size:14px;z-index:1;min-height:20px}.hr:after{content:" ";position:absolute;top:50%;left:0;right:0;border-top:2px solid #eee;z-index:-1}.hr .hr-text{display:inline-block;background-color:#fff;padding:0 .5em}.alert-link{text-decoration:underline}.alert-default{background-color:transparent;border-color:#ebebeb;color:#333}.alert-default hr{border-top-color:#dedede}.alert-default .alert-link{color:#1a1a1a}.alert-well{background-color:#f5f5f5;border-color:#ddd;color:#333}.alert-well hr{border-top-color:#d0d0d0}.alert-well .alert-link{color:#1a1a1a}.alert-well-alt{background-color:#f5f5f5;border-color:#ddd;color:#737373}.alert-well-alt hr{border-top-color:#d0d0d0}.alert-well-alt .alert-link{color:#595959}.tooltip{font-size:14px}.tooltip-inner{padding:5px 10px}.panel{-webkit-box-shadow:none;box-shadow:none}.panel-heading{margin:-1px;border-bottom-width:0;padding:11px 15px}.panel-default .panel-heading{margin:0;border-bottom-width:1px;padding:10px 15px}@media (min-width:768px){.modal-md{width:450px}}section{margin-top:40px}#social-buttons{padding:22px 0 17px;text-align:center;background-color:#f5f5f5;border-top:1px solid #fff;border-bottom:1px solid #eee}#social-buttons ul.list-inline{margin-bottom:0}#subscribe{padding:22px 0 17px;text-align:center}label.error{color:#d9534f;margin-top:5px}#icon-carousel{margin-top:5px;font-size:220px;text-align:center;line-height:250px;text-shadow:0 2px 0 rgba(0,0,0,0.15)}.carousel-control{top:230px;width:30px;height:30px;border-width:0;font-size:30px;line-height:25px;left:114px}.carousel-control.right{left:auto;right:114px}.carousel-control.right,.carousel-control.left{background-image:none;filter:none}.jumbotron-carousel{padding-top:40px}.jumbotron-carousel .btn{margin-top:22px;font-family:museo-slab,Georgia,"Times New Roman",Times,serif;font-size:24px;padding:17px 30px;color:#fff;border-color:#c7e7dc;background-color:transparent;text-shadow:0 1px 0 rgba(0,0,0,0.15)}.jumbotron-carousel .btn:hover{background-color:#f4faf8;border-color:#f4faf8;color:#1d9d74;text-shadow:0 -1px 0 #fff}.jumbotron-carousel .shameless-self-promotion{margin-top:22px;font-size:14px;line-height:1.42857143;color:#a5d8c7;text-shadow:0 1px 0 rgba(0,0,0,0.15)}.jumbotron-carousel .shameless-self-promotion a{color:#d2ebe3;border-bottom:dotted 1px #8eceba}.jumbotron-carousel .shameless-self-promotion a:hover{color:#fff;text-decoration:none;border-bottom:solid 1px #fff}.jumbotron-carousel a{color:#bbe2d5}.jumbotron-carousel a:hover,.jumbotron-carousel a:focus,.jumbotron-carousel a:active{border-color:#157254;background:#157254;color:#fff}.stripe-ad{margin-bottom:22px}.stripe-ad .lead{padding-top:5px}#search{position:relative;font-size:18px;padding-top:40px;margin:-20px auto 0}#search label{position:absolute;left:17px;top:51px}#search #search-input,#search .hint{padding-left:43px;padding-right:43px;border-radius:23px}#search .hint{color:#aaa}#search #search-clear{text-decoration:none;position:absolute;right:18px;top:54px;color:#b3b3b3}#search #search-clear:hover{color:#8f8f8f}#search-results em{font-style:normal;text-decoration:underline}.fontawesome-icon-list{margin-top:22px}.fontawesome-icon-list .fa-hover a{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:block;color:#222;line-height:32px;height:32px;padding-left:10px;border-radius:4px}.fontawesome-icon-list .fa-hover a .fa{width:32px;font-size:14px;display:inline-block;text-align:right;margin-right:10px}.fontawesome-icon-list .fa-hover a:hover{background-color:#1d9d74;color:#fff;text-decoration:none}.fontawesome-icon-list .fa-hover a:hover .fa{font-size:28px;vertical-align:-6px}.fontawesome-icon-list .fa-hover a:hover .text-muted{color:#bbe2d5}.feature-list .col-md-4{margin-bottom:22px}.feature-list h4 .fa:before{vertical-align:-10%;font-size:28px;display:inline-block;width:1.07142857em;text-align:center;margin-right:5px}.rating{unicode-bidi:bidi-override;direction:rtl;font-size:30px}.rating span.star{font-family:FontAwesome;font-weight:normal;font-style:normal;display:inline-block}.rating span.star:hover{cursor:pointer}.rating span.star:before{content:"\f006";padding-right:5px;color:#777}.rating span.star:hover:before,.rating span.star:hover~span.star:before{content:"\f005";color:#e3cf7a}#footer{background-color:#1fa67a;border-top:1px solid #1b926c;color:#a5d8c7;text-shadow:0 1px 0 rgba(0,0,0,0.15);margin-top:60px}#footer a{color:#d2ebe3;border-bottom:dotted 1px #a5d8c7}#footer a:hover{color:#fff;text-decoration:none;border-bottom:solid 1px #fff}#footer .container{padding-top:50px;padding-bottom:55px}#footer .project{margin-top:10px}.padding-none{padding:0 !important}.padding{padding:10px !important}.padding-sm{padding:5px !important}.padding-lg{padding:22px !important}.padding-xl{padding:40px !important}.padding-top-none{padding-top:0 !important}.padding-top{padding-top:10px !important}.padding-top-sm{padding-top:5px !important}.padding-top-lg{padding-top:22px !important}.padding-top-xl{padding-top:40px !important}.padding-right-none{padding-right:0 !important}.padding-right{padding-right:10px !important}.padding-right-sm{padding-right:5px !important}.padding-right-lg{padding-right:22px !important}.padding-right-xl{padding-right:40px !important}.padding-bottom-none{padding-bottom:0 !important}.padding-bottom{padding-bottom:10px !important}.padding-bottom-sm{padding-bottom:5px !important}.padding-bottom-lg{padding-bottom:22px !important}.padding-bottom-xl{padding-bottom:40px !important}.padding-left-none{padding-left:0 !important}.padding-left{padding-left:10px !important}.padding-left-sm{padding-left:5px !important}.padding-left-lg{padding-left:22px !important}.padding-left-xl{padding-left:40px !important}.margin-none{margin:0 !important}.margin{margin:10px !important}.margin-sm{margin:5px !important}.margin-lg{margin:22px !important}.margin-xl{margin:40px !important}.margin-top-none{margin-top:0 !important}.margin-top{margin-top:10px !important}.margin-top-sm{margin-top:5px !important}.margin-top-lg{margin-top:22px !important}.margin-top-xl{margin-top:40px !important}.margin-right-none{margin-right:0 !important}.margin-right{margin-right:10px !important}.margin-right-sm{margin-right:5px !important}.margin-right-lg{margin-right:22px !important}.margin-right-xl{margin-right:40px !important}.margin-bottom-none{margin-bottom:0 !important}.margin-bottom{margin-bottom:10px !important}.margin-bottom-sm{margin-bottom:5px !important}.margin-bottom-lg{margin-bottom:22px !important}.margin-bottom-xl{margin-bottom:40px !important}.margin-left-none{margin-left:0 !important}.margin-left{margin-left:10px !important}.margin-left-sm{margin-left:5px !important}.margin-left-lg{margin-left:22px !important}.margin-left-xl{margin-left:40px !important}.border-left-none{border-left:none !important}.border-right-none{border-right:none !important}.border-bottom-none{border-bottom:none !important}.border-top-none{border-top:none !important}.text-sm{font-size:12px !important}.text-base{font-size:14px !important}.text-md{font-size:16px !important}.text-lg{font-size:18px !important}.display-block{display:block}.no-underline:hover{text-decoration:none}.clickable{cursor:pointer}.strong{font-weight:bold}.em{font-style:italic}.small{font-size:85%}.no-link{color:#333}.text-sans-serif{font-family:proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif}.text-ellipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-default{font-family:proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;font-weight:normal}.text-color-default{color:#333}.text-hilite{color:#21b384}.text-hilite:hover{color:#198764;text-decoration:underline}.text-strike{text-decoration:line-through}.text-upper{text-transform:uppercase}.text-lower{text-transform:lowercase}#no-search-results{display:none}.valign-baseline{vertical-align:baseline !important}.jumbotron,.navbar-inverse,.navbar-inverse .navbar-nav>li.active>a,.navbar-org,#footer,.content-underlay{position:relative}.jumbotron:after,.navbar-inverse:after,.navbar-inverse .navbar-nav>li.active>a:after,.navbar-org:after,#footer:after,.content-underlay:after{content:'';display:block;position:absolute;top:0;right:0;bottom:0;left:0;opacity:.15;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAMAAABHPGVmAAAABGdBTUEAALGPC/xhBQAAAaRQTFRFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMalYaAAAAIx0Uk5TlhaTG6WwoBqyCx6sopscnacgq5cfmR2UkZwhlY4li5IjIiYpjYmQJ4iPJIyHhooog4WBfoSCKyx9gCotf3wuMjEwezN6L3l4NnI1dXd0djc4NHNwOXFvO2o8bjptPWw+aD9mQGtEZWlnQUJDRmNiZEVfYWBLXVxIV0lHTk9KXlJWWFlVVFtNTFpTUVCkyaWwAAAfsklEQVQYGQXBg6JsWYIg0Bh7WlVdVjrz5bN17Ygbto5t2977p3utXhseb5cOkcQlMSvlwcK1KN+kXuZFtaw8UKWGHiFOjR+F43DFHF/nyis8PMwvzc7QdS2qjnykhpWRQjtpLDpQTFUQhrP972J3uIwc3/WaHJF73IT3EHONyQqnTVQIxOGvt7JaF3K5XOM7dyDI1VQv1c0xv3T0lzAQ86iJX3cdkg41x1QCweVIKUGI1bm1XhO1cR+L/oaFys6joNLUSBbURm9bwK9yySmu+6MqCJ24VqSu5NofdmOlOGCp1ci5Ob8EObh89le18MLgAWbH/9ZUCR47kyJmcIUArlxGN2Ugzj/bN6fR9qJeC61niRtk516BTEF7QdOmB60uSSfTQ0TwrYLTiq/CFPBE+2AKf2eiGYkrWyQy44z/1CRs35oHxM4U8tBPNVTAGu4X0dq/5tcZs2TlDO7VVRolsSLyzO9t/aNh2FVvlJJQfLpVr0/qY6o37q0Yo3PxdGKWsibL6V8HxMcYGUev9C5qlrp/cDR1Llr8F8r4oToXReV3Rt8KA32bZwZ/4+38bTq5nqTPOmBjNJ8QK8KWQK8uxdyoNFxrle3Snen1ioqasN3qh+JNVdbGiid0Sbl2/TKfJQ+/cQuOMKw4mtKRN9TBhR1RtF67xTGJGQ8DnuKCq9mhpJgLJWqg9VfSb49kr3W0+DWjGaSSw0vQaapjdCyJoHEQykmbfVGDR90u41jAHpbuNfywT+mt6XpgJFeH4i4U0xRxm6Zu/rHSQv/+9+sG4rSnLJ2zrm75c33ohrzas+eJeBA8D2DBSWPsVGOIq5AsfEzUuNWD52wCbXh2XQyZENdvxrWzzCQk04N7slLfLyj+QZfCsixMS05gcNQwxfJZlkBiPZgC7zhVCjMOtV4weO994s/mVikag3ZnelFcdKVUb2kWMoJ1075OTiv4Wq/wlvvAnMFCN6Ic7MIujcr8b/NDQpaGbX78QR/GUFaTeQIK3OGkm9yxClW8FZvGsXs1Tpcz5WtNSdlDZbV6nglu6YZIfXoucMX99Me+/mYqMBEm4X2YhzRrhMbdL2i7YhttHXwOqWSb55ITmIXscoZzj76Kfa8rrZ0Ay/vhUKErGPfKlBRSyJfcWIidwlfoKnAevyxpUGpikcWZqnz6nDvZIxjGULjGmV+E5QscXHwX4I6MYHYsbEJgxPY6I3Y865Wwfl00a6TQHNPNF2d3k1Ztql4EciNK8/SVIf1+7sxkj5RM23h3nipnfF4U3X62c7VIVQk/twKoDTVwWB+nvlfLCa1bj3J+V3gn6SRqj4EqWOtwjYebhAph8NjHX+Db9mq75Hofkv9fsnrmLc+Cxthn1njneZNPdgfO4hnRGppVsqT/tAn2le397e3fN9E9ovzlL9e5DhdsFPACnKb5gYEZ7zDbrH5EufdFxxs/yxqX+DlXmmMq1HrLKs/z5H/pKj3NLfzhuHCCqg8liB0+vNGn7Sf+tChHoxPOP4cu/362qAtC0kNra8dVyzLP4Mgpf/Y3yAOeb5IyqSMRCXy3+mN2v9Flta4Yn1vBXimEZV/V1I3fRlU8Ed0q0/LQaNn2DOJlB45M5X0aajILyO0k9FJZA2o5ie+V1VwDGdgFebF1vrlT4ry4zQcedHIKBXkeVhsvkxsT8jW97S073GTf22Wm2yBN2TRDVaEldhl15MfHpDOllhIavGPJ+OB5Yje71SlEkGVz/6VEBT+fV9lFh9Od2xxK+a5ry0lU3yjQtcRPiCDSF0smi6c9ZDqbZso6afHA8L3Apl0LJJ7whAq3tY6+ZwkxYArATbCsYfe8U+9KNLtlW98Mbacuu7NR6NhOFzOcQKsA55FD15JuR7xsCCmuI7IO7qlDjxlLRmy02bpLxfoBncftvmGHUu6SYDOK+srqYwklx5dIjqUroTweFRrmQZZGiE5Z2eK2iXy/rD8d/+l5kcylD0Yht2mrdNmqDdgKURofrZWefrnJsVQsWnL48VGOY+AhZTf3qJpc6qhxYWyCNHrLCMnqPBgMulqj5CjaGH4/VajHzFIOK18eaVcu0XC/Cp148YVasVmi4zO9rTMjKhSAZmVvZ3l7bBVVvuQI0rP6XTudT24ZBVosD5PrR8nFMVEKPIJ/3K0qvq3TlG7ZFqkfWccRrGr7t5nGZleYH69t+yLaBKwEj7LtTHZRJkiDN9Kdt0J6BlOZeZh71maSHj4FikgDqcRmsUOsy3ZJhqFehZjNYgrd8utMC3KjYCOTICBQ7MQUILu3aDdxeVFOCNpVUcIX76jEKN9nSWYQ2PNTN3vdC8Qydo/dEWRi6OqW1ZxTNcYrgpeb09MHTZ3njxofDbBQtb6SDnL99QtwslhXy8jqLD8STMoTsbYdTxWwqSXJVmTAp0rZComyl7i6QY6a0iOaVIeBh0Zga4TzYmHN4hYY3Yw2jrNMdLya+rhdUHXkyJnXVfW+qQqbKCq7P8jbs82yX+OrVvKc31RBNPv6WNUiq32h13InyQrUcnlty4rTA3Z6N2nkK6NR+E91Q9tCtg19amUtZFPlF+GzJHj3Ew5TnswP6sFQNo0NK9aPNB1nBpGGRALr1PiN10oUIWfvVgXc1Mgd9ehTEh2MqiwtF1rvq9WMhZAeGx9okMJrWfPEkGkbpAuM6zRXEjcr/DY111+hvsdjXEawhkkcy6n0/z3urraN3gBE1+q2epXs+WTbTVMz44yqw/YZKBq8C2uT74W6H5MlaNZN6ibfZ8W+UCpSoaVl51TVo414nslTf5d3RC23QXov+keW33UzjztU0XFwjWAPrjZOQ1JrePpttq2T2AA89Yh+sVGtqmvPzoOm9+Adb2M1qAP0WHIcSPwkVkM+/pIqwZcWoI69l0UOo8LB2g7t9Tv3Vi3fMNdkZOWthWeVAe17/l9qUvWn60ZQm62fZtZLuVx+hCVRthL+Muadnt9VW91Zog+XeQXDQvNayj+JWgMDO1FMA104HNr7p4YZTs65g+PmYTMPSOMgWw44DVJF2qYv5WXfMCjj3WDXPSTC4rFsuyYfT3Y7Sl2YZaNoveCawhtnnR9MrfXS7GgTxLHrQvfndBk8GyTdKDDRZcYQiv1iL0nQ1tXtbUFxQdDySZRaEXYN+BtDeFt48raTnC6v7lrJqqyqTCuptqGjxv1el2eOOi/XUl6HVeXfyDZfJYVzWUbBIgpC6g1gaxgSIwqLpsJoYfnCGOyVg+ElTZfY98e7Tqq+P/DVpOqcZcIpbR5vfDLd3d5slkyodpDL7nuWrYcvdCOVeeXLg8n73rhuW+NaKOS4UjXHaaiSoW9e2RcL9fMnGvJck56aF3WAWOs8XWFVh3VQKBbG9PisEjmoWyy+ydXEtkmvwFu1nSFzuicrZbJT/1HCg5w3+MwWFFwyjbH26I0Tc6NJ20OXqEZKkeWjb2ceG7s0HTZ8Z0mLpEZhM9tZV5kEsM1macd4p47U9p1ppbLDpX57NPLlo5D0Bls7cNTPNpOgaxuD3cd/M0Mh0qrBFyPyqZd9o4FpHjQZpzhq0NXN3MtayO1duT3th/CC3ZY5cXnH7JWsKY15pFX4i8DeLuJ7PeJ3VhXtvKnS88Lvihto5BF0I2Dw2QF05HazFyxddvOH95draC9Ykfxr7uYyLKO62Yq//rYbCFYJjwJ3F7GHQiuOjAtJjbvk9ZQ1oiOKQCplBUtFjgodM07PqXd2/i6uujasmXTUNkE2NoESofFpdQxYC1Cla/hR0KjrrPqldoN8RJnjYvcQ3nmFATeVQ8c3L10K3u9RoVb2RbBCuIpLOe4Kb/xFdsSbtidaxfTO1O/L3Sqgp1HSiTHIVpKZZUX6hvnMXVSBV7hamutlu/VMikQ//HUi9+FWkpfJ8p6uxmJV1Cr/cJ5btknmghJbOTG35fUVXlgpzeyEpleuvU4/3iED30sCQ94PfrhPHSflunakZn2HKhh6HizLefn3ksOyCze6BfSwav6BgHi7AQtekhN2VGL+b09tw8jI+oqMcNDZTTxdPSd/qOafWHjS+9rmka+VpmC1rKOyCZwI9R/exB3NpeX/2XdjwY2ZQ7NuvrhXthcFxmfKlB+d6PiFVTcLfCmFo/jYDgKnDvYGaCYl49g1vCOHEPslDZJ4S30oux6cYQgox+mbtaaQsK2SomOSjYu0cGl2d1hQDmvNMy35ofp5SAQlS1Jd3XjWY+S/TKg2dD652JYjItaMg3m35fMdsSu7u01d123Z/kmxGTJlesmqCFxXn6n8bpcFEsE8EhwV2Yf7yjRqjC3moDUzr7yJVjnkE/vLgjJsKTPh1rltI75F72/xirBylLxyJS573DJZ6ThJQSuTokUK33+ItnXPCkoBVaJb3+FDw8OurIrjm5qbXq21n3zfRP3IOJJ3asbzU9/FVElp2KRUY4mCA5894qXzDj4qmXPgknUbcQcHzZmbom2ybBmqNZfav7Yw7RWGjFoRy4V1EYK2pXmE1pKUpokwPVCspoACXvIHRbtHNe2mbrCFvIOB437CUsaxk/ejf/2/mN9WtqfGfEWWgzQimpaDGsZXQl03cXTg6rL3zIy8K7FQaMOg0BjcA1H039QE5dJSLFV27t0XaDn9YX9QixC4puw9PEUTtpMf28y6DA3ol/xVQborN+2YnKxgg+Pawk+n/7ZOG7SCkyba5D0n5/Jnnk/HkV2wRWwfwYt3YTuxkn1pzvJMBGxM04w/3taOPYu9ff2DJZ7fBZXuHoO8DUCXJjtdeuDW8kqoxduypFa7MXAm1yPiUkrD1WB4HPaeJ7kp1Y5naGEgOKioLDM/IA19kxzSPPWkue8f9MYb8zfKzFKrKHSMhcQGAoQFMUyk9WvyYG6sBtzvw4EUnmPr2ze3bDztQONFUg0lO1LL3g80L0KtpPP4nK+xIo7q4NMozilxiwQGY1zc5T50ilRjMju+A1/r7N0wofxC2H1uMD11+L4hZyeP5/9u6nIjX20amyz05d2B2ueHcW757vJ3xHlv/D4z0AW4w99+VSop2VnZUtFAURmUMn0r4ofoHg+3bKoaKQlOK7rBfRavPwf17Gem8/ysQynXTvuQ2JdobPfnokPR/l1z/2Wf5PdiIMRJoMDeJfKNwMiU6JoKdHGzs9Qm1U34BbEx5GwUuXvmj5/CWu4gPB0xFyko4BhGVFtbfF12WKx+Bv/9mPhc48MA5Ll6jE72OVON6vFlxoXr268rtmB6MtprC39GGm6UdYcMCK6P4j/9mBKuY+60Yrs/0W/dztduFSdN932r3ej6dqG+uao23pd4kbIEGjsQfjPzn39k/VI2D/cL46Gv49v/mb8CuwwKftmT7rIQrXhXDmusMzvYlHGqz1wDg3/+aP0r5/kAWAvXPm4O0TJ4FcLZYkXYtrkOHXFDxSklG01Mj+rV0nqdQs7rAptbGcUg3Vd32tfQfp0Bmu9V7Gs8aUUxT8FwUeTV/kPu/dLJVVOzlO+Rqc18lknhD4NFHjasnIOpVobONhqTVRHV6p4efQDB9jYBlXZ9XBxfaYStOVhYFKoZFoeJ5yU8/rRXSQEGbQYWwgTGKvy4v072XqWo2ryFSudx8Of3J4sBmo8gP3fDhoClaNnATI9erIzx6h0H0gbbBxOc1fQs2DpwmPgF0RTxW4WKC5KzpVLrSedYV6rQvmqYWXIdMhH0z/LM9GOTAi0wvbKJLQJ7p4b3gUuzh3dpwG0s2GKH89Rso4NXRMmkfMRZbuRQQK0gDAt9G6TfZ+3Bp0lylA3Vspcw8syxSV+3qwSh6RUNbjxNkbiv/wyU1Y/JC/aPOv/4OL8gjarztqbD3dNTO0E5GUuCGiRSbl810vV1qt2I/FIUjxn2UTqdp0RNw1YH4mGeSGUvva6ZLsuiKm/2m4Of2nkHUSjM89JYXpEAOM/XElkoJIZFWHPVCfwTJPIgiremFnfDDp+YXfd4EO+PpbNZPhnV07oypat/Iiu7L9uauJoksdSrwq7RynZ9VhjA8qvaOR+X0n5d/+XsfNyyxy/7/xxfIlXjiPxV0t1IFLzcK12n4iu21d+JGX0kR+heWRNCVY2hQ1ZyYR4OyNmpXXzatE1zb4gF0fvVfoNVF9Z3lPOPT5KcVEFhbLTs5KEdoORurGYcYp+9O0Sv4peGU6MQT3lGk38+LDqyKeLSfD/5x2b/LxvWLnbQMk0sLHkGgtdh5we1knMAr1tJ7Xmry7uVyvWfLHA9hZ0WTwSf3aINPZp7TrN8y5tMUmxNxhRCPHDfJmI+H4fJDtRwWKAtKZNGE3pyEjNZ61NmmcqWhQtYsmKZutGyrXAJQ7uXFrv8A8Na47oObg0/216aUz0AwZ3i5vnj9nOOfTuXedNP9FVUrpsH82+2mIq/GiFU4jH4qaFxyTaVTACM2fongb/ErQE1tyNvtKtDO9U+h4nZw0JOrTdysbvDiLnHacLBrC+FV3mYvf1nGNYqBDjJJOaZZdWwZZUX2jVWKp05ttKzRs6Q/wJpsitdOTGsGrdvSQ3e1cqt081eSdeVjVLN4wUV9KQqEbISaTopru4VW8qlRhPPp/R0qtGqPsDl/gYkYodqgicd1Y2IG/jXx1hyvZuSX2htu1KtZkDe1XVDgQjuRPebUB/IqJUWTXcq8KHvAKtn+G3DtgilAZfNJl+tHDE1uXSeTPmohUluVGFf5FWnTty8+GnrRi7X5S7qLgrow2x+ZN8WMr2GlJh5XrKQbtYomRw/Y+a9+fGWd8QkeFr4jz1C3dsO0mqO7lnZgo04WGVpcXY3HPApZXmfrC8qt8iT5g128NLAjfXQgMKvbcMbfTQax0Q0WtUV75+Wvu5ELodhF2+7SyjyoRjFj2gfJCmm9KokrA4J08dqVLeEUdiVIzEczC8tRDzbe27Wr67tB0zRuwokD6n+lo0vjhpo9nYFuKX5QuILNjFor7zZ5lGHzhp42l/Y3b+7UDSjZBuUTZpJPcxS8qs1P1eZo0ZMAa8tj/IXvBPkxzpZa7Lg/oN5NFkt5j2zwaIms84KiohaPnKE49NWzLTTvXi3szrbiY3EPHn4c6ciJsqnljA4xldB39K9sBcFzyBC5BKIVxFE6/rRaWrWi4ykIjZuEajL68gw85TWyFZ9ilbvzuNCJ5QaIZ6nCfstuZ8d97umloSvnJFffD8zk1mq3afkh4GkjzwYfE3BEuvR3oUmX1S4HyStriBxrobRijsIJvMBeJau9P1a3YWaVQI0hg6o10CTO+TRl28syU/dkYd81f7chuBI3aJNSpTfyaNTUu7mqwVMim5yJ4B91os3hndehiP2C1HMwJufLt+a3ut8CoUZ9W350oljULvbX1SyYPg2FSDHsF5+ld8buR1ceDmHLfRdZBgdQLzXE/E+iZsTK5GCT1xXiIpINMXmp5jvpTdoOcxVrzCizDkX9aJTlgAhHXEoU0h5oTedbdEWb3nVh9IeP/0AC616ro5MZjDBPgNmWaM//qe0Fmv0kloLPk28i3+7XO36Yp1kGdPm+denVt7D6RHxBmlUU36IabbxluBRFktte0s7lvWV2pk3Z2GYelWbIsGfvL9zhEM0zt7lM9lcyEb4Y5zqUdRtPrdboKeub9KhECkje3rrnXN1wVCFdi71VnuwqaNcuLEsR5cwsYtosVHauaXUSaCYzr7grb9p4cv3wXP4Ak/q/Z8v/dQlrpXiO1oNJ9e8zrQfcDIXM81pXQdHMkPSBZCpnSq1yb1+ZeylXsPw/cPD6xvHWsNgCXERB0rafOt6bt7t7IHU1g5Lf5fk8QXNrXio6/9vGq9oHxQeEF2qXVbSt10EPKi82YYRY9LXYw2QqV+oyUI6dSFUKZj1DnbzRXG3hkSYHPQjKaOorUsdBw8tW+XMbg7uG8zxd3cW4NQsF3Ug7uNGL5jc+gN6HpqWeRy6WSdsVnt65uWAiwNlWDL7JPgZjcPkhf+r4B57qpmc3gnOzozM5k/TVTwL2tIS418X5eUmciP66sabjF6EPJp+b4kejrZVkp+0cYVIhE96dcJX0GNdTZbtJI8goUVh67KZ39WB1lVZBD9uHL/Xucfio79U7DDi5BPvF0SK40gvEG4+d4vB82CnWk08ccuYr6V2ls8RQ4Ac7hzfFSpa5daMZG8let59pIBSPNHuRkyp2sTZewClY9f9jym9AU/QXpW4dZqU2e1cR8LwEYndfWM2hV5P1tlcbn8+mQRFUpDZ96CV/6hK9J90Z6ElMzdfEnzV5LUTWEXWrUsAiOumitThkuAxC+77LOlkhkJpM9/rcRJi7GMOCeOBU4cdBp4FuSxbKZ6DzNaz+YPanyUuY8yDsu0sNoh16K44T0j7dHZxCysOds1J8M3qwNJ6mB0AJRBz5lUgji8b5/NBEym7aHpw2prPunQRckfDRvSY8VerSzZllUEXrA4BUk6DTG85VVAJvK22afONWEBlMFtBjHsO1DHFDYb+291tslhzU1IQxbasB8vIAI9MzCAX9Wo5vOipHaHWRtcQR/lAWsoafPINiFNEIhyTG5toHS3i0rY1FC9P61VnR9bV0G3dbplbV65cxSwC+bZtkyA3y5dv6PxtuymlhAlsd6vdcTVsi9TrVXI28pG9nZwsQXcs/WIa750ilhUxMkNm2XXs2Y8O2v+o51qiXQ8Vv+zjD3XmZfrdRs4kwuVXSCXTbver95vmOschGSrUhBnvAB/VuF6Rxa7ptXi5OBx00hflKonHi5RaPdDpJSzF7StHdcpnrDbtt9J4lww5VeECPhLsMBGq9+m95ASpFaMLNkTcxxQwqfq8VYLjeg3jwnY16YZORWRfN1bPK7SnsEmGESNQCrr7yJDEko7el9cgSMIgTUqhxFt3o95UWZiaWg1btxpFKEvqLQBoiIKcFnC3zczCbIagrlzX7fLURO2v6X4GA587rPDetvOLyCqHc6Yww2YcbG8X1aRYVCfVMdzTzM2aRqSZtnI4Lv6zdUKusbp9gf7h19TUZD/AC6JpJCaqSwF0H2roiTO0P/mWtiH/4L/rbj58rYnl9Gsv9H1vXia6XCd7sY0jzjtrKBCrH2aRSnDDsGMMfYcY7UN78avbBbqwS1IYgbij4IPq450Ud02hBFAeYVIFf/Q1Bc72B2LXn16OdipfhaXc9mItqdhEK0WxXZOVXzK+wYRPSMb1jLU10wVa10gPbIc6Owau5zKkr1e2GzZdB/+2VjJWV0PTYMIR7eL7YXuu1CEWsrFsDECmWYZbCshJ1JP0jmqobSRAcgDMHfJkOzZD95dq7ZQpS30XAImJ6qzslN1f/o7aHOrsWCaBSPjBnndHrK7f8hIfdHVk47rpfezvqrfOIyQ4HoXG0/tMrcVcjHsZOvHXnZ/V5XPQgDgMHoS0MKBbeC+MyVguwzkjy1XeDkT23uwOoTSrqpdKs2Nf/whUpvNKXrZnt5v3//UA6dPJCgtxOyrtD50ZfGfOoaEcpxTWO0lvX0zEzV2+n1i+GESda1iAZRuLgKCFVfckTh+9xi3T5g46wshk+iKR1Tre9pOFuQ8w72Q8qdj4L9ul5ePuljWHFw8qz8YM80cOorQlBLLWg8UBcMnP7Ndq9/Ug4kYWr2JzlO7atGkwbyGhSZU4QdMxydoa00Ze1MaVE2JadrtSJwGsfbrl7F0Y2YT3GdwMi3anTMMtD10ldys0b8Oovu1Fqi+Qj2yAOJaPRZrVepMVCBGVimkM8x6KArsu/Pd+ReLvS9df2OoJPffNwNaUB7Mfq7Etv9h3eZWiPjlAOSpaOBzn5KbuRZ3ZzqLQE42wZz6S3dr53KAOZtD5Cd/eLvpktUmePrphRxe2WuUL+62ySxKiWNQxAJHT5xXOU0eVDl2fHyoj0dV1nQn0l1EEKDH9cOs8z2bCA4w/n7EcleleT7aJTcV6jCmO8CO57r7fU/NJ6c8NM9WwMI8zstNVEuThtf0UcFVHiLKslx6uBcnkOHy2zLC4i+XyXOA/ez91G/M+W6f01br6VRU+/qWTIr1b7HsuXNnq2sBkpmnsA6EjYtGV6zrI6yxKyk3Ddqpbu447FTtDN0zrTE3B8L54PhXyB9aqTr3C52OtchdowMax3Uo2Q5370vt0vtCzojBTRwM9/eO0UGQRO5YHq1Nb2s9BlEHNRQ/oRtPKu/CiYBecIle1FAvZ8NUYkDy28ZHoEi/R9ZOGgvmju1FqX/M5P49uDWoPfJP6Js3uDX06qdeqZPaqzYPv73ztSe1eScFg9kCE4cMd+4WoYgTDQqPgExPNYqmSPLiKPn+LlnDT2V16zFKVDCBpzx+htzmWVhSXNTDJB9UHcmbYVqE8UFXwObMJvifnjDL9WOGaWeRsW4UEh0hHNvbvJm3/IKzF1WmWwsJMxer4kvnzWxBGmzkfzjIb/NDxCbcLuC6bujbJ41O0dVqhlY73zQoEjqHnsEQekqKzejcmAHEiEkHz7zsgatb0kH3pmoPgEk0St2AmKYip3MFk9V5Nm7q47sj8T8mIOTjTRt2LLBDp9UVFdI7Pa+p1ozeChH3WIQcar05/j8d2FhZqz1Q3kYMGQiHbLV2i1HEfw6qprmjfyGk+MI9Z3sjM2H+lg2a+q6V79RBx4qZeQi8xXOWnMsfu2tqxyqUuecL3+5ijd0F3Ff+14xx3RJSreZz2JOvYVjeyWLyCdnAp5AKRPLu/FWi9PgLhsQ9ja3bphs0nCimW6GkXEz6XFfbeFMTZxczcBwg4aQz7qDTLsv1s0VzZV+089PVDpMBF7LutaT32frEKnZSzEG40dq62Huqh8NyDBIXJv8tOa31DuRLhk7Byn+j9MByMC7Jd5EtzvXCksA0etm6TbcaQX2RzojFLZpiFebI8qMVyxaddkrvkzv4Pt7iFz9PXmP4AAAAASUVORK5CYII=);background-image:none\9}.jumbotron .container,.navbar-inverse .container,.navbar-inverse .navbar-nav>li.active>a .container,.navbar-org .container,#footer .container,.content-underlay .container{position:relative;z-index:2}.jumbotron-icon:after{opacity:.1}#banner{color:#fff}#banner .message-container{display:table;width:auto;margin:0 auto;padding:15px 0}#banner .tagline,#banner .action{display:table-cell;vertical-align:middle}#banner .tagline{font-weight:200;font-size:16px;padding-right:20px}#banner.font-awesome-survey{background-color:#8e8f94;border-bottom:solid 1px #949599}#banner.font-awesome-survey .btn-primary{font-weight:bold;color:#e8e9ea;background-color:#68696e;border-color:#434346;border-bottom-width:2px;text-shadow:none;border-radius:4px}#banner.font-awesome-survey .btn-primary:hover,#banner.font-awesome-survey .btn-primary:focus,#banner.font-awesome-survey .btn-primary:active,#banner.font-awesome-survey .btn-primary.active,.open>#banner.font-awesome-survey .btn-primary.dropdown-toggle{color:#fff;background-color:#2a2a2c;border-color:#111112;border-bottom-color:#000}#banner.font-awesome-survey .btn-primary:active,#banner.font-awesome-survey .btn-primary.active,.open>#banner.font-awesome-survey .btn-primary.dropdown-toggle{background-image:none}#banner.font-awesome-survey .btn-primary.disabled,#banner.font-awesome-survey .btn-primary[disabled],fieldset[disabled] #banner.font-awesome-survey .btn-primary,#banner.font-awesome-survey .btn-primary.disabled:hover,#banner.font-awesome-survey .btn-primary[disabled]:hover,fieldset[disabled] #banner.font-awesome-survey .btn-primary:hover,#banner.font-awesome-survey .btn-primary.disabled:focus,#banner.font-awesome-survey .btn-primary[disabled]:focus,fieldset[disabled] #banner.font-awesome-survey .btn-primary:focus,#banner.font-awesome-survey .btn-primary.disabled:active,#banner.font-awesome-survey .btn-primary[disabled]:active,fieldset[disabled] #banner.font-awesome-survey .btn-primary:active,#banner.font-awesome-survey .btn-primary.disabled.active,#banner.font-awesome-survey .btn-primary[disabled].active,fieldset[disabled] #banner.font-awesome-survey .btn-primary.active{background-color:#68696e;border-color:#434346}#banner.black-tie{background-color:#2e2e2e;border-bottom:solid 1px #383838}#banner.black-tie .btn-primary{font-weight:bold;color:#e0e0e0;background-color:#212121;border-color:#141414;border-bottom-width:2px;text-shadow:none;border-radius:4px}#banner.black-tie .btn-primary:hover,#banner.black-tie .btn-primary:focus,#banner.black-tie .btn-primary:active,#banner.black-tie .btn-primary.active,.open>#banner.black-tie .btn-primary.dropdown-toggle{color:#fff;background-color:#141414;border-color:#000;border-bottom-color:#000}#banner.black-tie .btn-primary:active,#banner.black-tie .btn-primary.active,.open>#banner.black-tie .btn-primary.dropdown-toggle{background-image:none}#banner.black-tie .btn-primary.disabled,#banner.black-tie .btn-primary[disabled],fieldset[disabled] #banner.black-tie .btn-primary,#banner.black-tie .btn-primary.disabled:hover,#banner.black-tie .btn-primary[disabled]:hover,fieldset[disabled] #banner.black-tie .btn-primary:hover,#banner.black-tie .btn-primary.disabled:focus,#banner.black-tie .btn-primary[disabled]:focus,fieldset[disabled] #banner.black-tie .btn-primary:focus,#banner.black-tie .btn-primary.disabled:active,#banner.black-tie .btn-primary[disabled]:active,fieldset[disabled] #banner.black-tie .btn-primary:active,#banner.black-tie .btn-primary.disabled.active,#banner.black-tie .btn-primary[disabled].active,fieldset[disabled] #banner.black-tie .btn-primary.active{background-color:#212121;border-color:#141414}#banner.fort-awesome{background-color:#242735;border-bottom:solid 1px #050608}#banner.fort-awesome .btn-primary{font-weight:bold;color:#fff;background-color:#454753;border-color:#1a1c26;border-bottom-width:2px;text-shadow:none;border-radius:4px}#banner.fort-awesome .btn-primary:hover,#banner.fort-awesome .btn-primary:focus,#banner.fort-awesome .btn-primary:active,#banner.fort-awesome .btn-primary.active,.open>#banner.fort-awesome .btn-primary.dropdown-toggle{color:#fff;background-color:#424761;border-color:#010101;border-bottom-color:#000}#banner.fort-awesome .btn-primary:active,#banner.fort-awesome .btn-primary.active,.open>#banner.fort-awesome .btn-primary.dropdown-toggle{background-image:none}#banner.fort-awesome .btn-primary.disabled,#banner.fort-awesome .btn-primary[disabled],fieldset[disabled] #banner.fort-awesome .btn-primary,#banner.fort-awesome .btn-primary.disabled:hover,#banner.fort-awesome .btn-primary[disabled]:hover,fieldset[disabled] #banner.fort-awesome .btn-primary:hover,#banner.fort-awesome .btn-primary.disabled:focus,#banner.fort-awesome .btn-primary[disabled]:focus,fieldset[disabled] #banner.fort-awesome .btn-primary:focus,#banner.fort-awesome .btn-primary.disabled:active,#banner.fort-awesome .btn-primary[disabled]:active,fieldset[disabled] #banner.fort-awesome .btn-primary:active,#banner.fort-awesome .btn-primary.disabled.active,#banner.fort-awesome .btn-primary[disabled].active,fieldset[disabled] #banner.fort-awesome .btn-primary.active{background-color:#454753;border-color:#1a1c26}#fusionads{float:right;width:300px;margin-left:30px}#fusionads .fusion-img{float:left;padding-right:10px}#fusionads .fusion-poweredby{color:#777;margin-top:2px;font-size:12px;display:block}.vertical-ad #fusionads{float:none;width:130px;margin-left:0}.vertical-ad #fusionads .fusion-img{float:none;display:block;padding-right:0;padding-bottom:10px}div.bsap{margin-bottom:20px}div.bsap a{display:inline-block !important;border-bottom:inherit !important;margin:0 15px 20px !important}div.bsap a.adhere{background:inherit !important;border:1px solid #ccc !important}div.bsap a.adhere:hover{background:#198563 !important}.sumome-popup .sumome-popup-content .sumome-popup-form h2.sumome-popup-heading{font-family:proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;text-align:left !important}.algolia{margin-top:-20px;padding-top:49px}.algolia a{color:#333}.algolia a:hover{color:#198764}.algolia .fas-algolia{font-size:32px;vertical-align:middle}.v-get-started,.v-store{background:#f5f5f5}.v-get-started .get-started-cdn,.v-store .get-started-cdn{background:#fff}.v-get-started .jumbotron,.v-store .jumbotron{border-bottom:none}.v-get-started .get-started-cdn,.v-store .get-started-cdn{z-index:2;position:relative;border-radius:4px;padding:5px 40px 22px 40px}.v-get-started .hr .hr-text,.v-store .hr .hr-text{background:#f5f5f5;font-family:museo-slab,Georgia,"Times New Roman",Times,serif;font-size:27px}.content-underlay{margin-bottom:-180px;border-bottom:1px solid #1b926c;padding-bottom:100px;background-color:#1fa67a}.product{transition:box-shadow .25s ease-in-out,transform .25s ease-in-out;transform:scale(.99);z-index:2;position:relative;display:block;margin-top:40px;color:#333;text-decoration:none;background-color:#fff;border-radius:3px;padding:22px;-webkit-box-shadow:0 4px 2px 0 rgba(127,127,127,0.2);box-shadow:0 4px 2px 0 rgba(127,127,127,0.2)}.product:hover,.product:focus{transform:scale(1);-webkit-box-shadow:0 4px 2px 0 rgba(127,127,127,0.4);box-shadow:0 4px 2px 0 rgba(127,127,127,0.4);text-decoration:none;color:#333}.product:hover .product-sizes,.product:focus .product-sizes{opacity:0.75}.product img{max-width:100%}.product li{padding:5px}.product li.active{cursor:default;text-decoration:none}.product .swatch{display:inline-block;width:30px;height:30px}.product .swatch.swatch-kellygreen{background-color:#249265}.product .swatch.swatch-black{background-color:#151010}.product .swatch.swatch-navy{background-color:#2e2737}.product .swatch.swatch-silver{background-color:#d4d2d3}.product .swatch.swatch-asphalt{background-color:#535059}.product .swatch.swatch-royalblue{background-color:#2a4db3}.product-sizes{transition:opacity .25s ease-in-out;position:absolute;top:6px;right:6px;border-radius:4px;background-color:#fff;font-size:21px;line-height:21px;padding:5px 10px;color:#b3b3b3;opacity:0.25}.product-title{height:52px}.product-cta{display:block;margin-top:40px;color:#333;text-decoration:none;border-radius:4px;padding:22px}.cta-content{margin-bottom:22px}.cta-fine-print{margin-top:22px}@media (min-width:1200px){#icon-carousel{font-size:240px;line-height:275px;margin-top:22px}.carousel-control{top:255px;width:40px;height:40px;font-size:40px;line-height:40px;left:133px}.carousel-control.right{right:133px}.jumbotron-ad{padding:50px 0}.jumbotron-ad h1{margin-top:25px;font-size:90px}.jumbotron-ad p{font-size:28px;margin:35px 0 20px}.jumbotron-carousel{padding:50px 0}.jumbotron-carousel h1{font-size:100px}.jumbotron-carousel p{font-size:32px;margin:20px 0}.jumbotron-carousel .btn-large{font-size:30px;padding:21px 35px}.stripe-ad .lead{padding-top:0}.lead{font-size:26px;line-height:36px}.fort-awesome .action{width:18%}.hide-lg{display:none}}@media (min-width:992px) and (max-width:1199px){.hide-md{display:none}}@media (min-width:768px) and (max-width:991px){#icon-carousel{font-size:200px;line-height:230px}.carousel-control{top:210px;width:30px;height:30px;left:78px}.carousel-control.right{right:78px}.jumbotron-carousel{padding:50px 0}.jumbotron-carousel h1{font-size:65px}.jumbotron-carousel p{font-size:23px}.jumbotron-carousel .shameless-self-promotion{font-size:12px}.jumbotron-ad p{font-size:24px}.jumbotron-icon h1 small{display:block;margin-top:15px;margin-left:0;line-height:20px}.stripe-ad .lead{margin:0;padding-top:0;font-size:19px}.fort-awesome .action{width:33%}.hide-sm{display:none}.v-get-started .get-started-cdn{padding:5px 22px 22px 22px}}@media (min-width:768px){.signup-input{padding-right:0}.signup-input input{border-top-right-radius:0;border-bottom-right-radius:0;border-right-width:0}.signup-button{padding-left:0}.signup-button .btn{border-top-left-radius:0;border-bottom-left-radius:0}}@media (max-width:767px){#icon-carousel{font-size:180px;line-height:210px;width:280px;margin:30px auto 0}.carousel-control{top:40%;width:44px;height:44px;font-size:44px;line-height:44px;left:-7px}.carousel-control.right{right:-7px}.jumbotron-carousel h1{font-size:58px}.jumbotron-carousel p{font-size:24px}.jumbotron-carousel .btn-large{font-size:20px;padding:14px 26px}.jumbotron-carousel .shameless-self-promotion{font-size:12px}.jumbotron-ad h1{font-size:39px}.jumbotron-ad p{font-size:20px;margin-bottom:20px}.jumbotron-icon .fa-1,.jumbotron-icon .fa-2,.jumbotron-icon .fa-3,.jumbotron-icon .fa-4,.jumbotron-icon .fa-5,.jumbotron-icon .fa-6{margin-right:0}.jumbotron-icon .fa-6{font-size:16em}.jumbotron-icon h1 small{display:block;margin-top:15px;margin-left:0;line-height:20px}.stripe-ad .lead{margin-top:22px;padding:0}#fusionads{float:none;display:block;margin-left:0}#fusionads:before,#fusionads:after{content:" ";display:table}#fusionads:after{clear:both}#fusionads:before,#fusionads:after{content:" ";display:table}#fusionads:after{clear:both}.vertical-ad #fusionads{width:300px}.vertical-ad #fusionads .fusion-img{float:left;padding-right:10px}.fonticons{padding:15px 0}.fonticons .tagline,.fonticons .action{display:block}.fonticons .tagline{margin-bottom:10px}.hide-xs{display:none}.block-xs{display:block}.modal-footer .block-xs+.block-xs{margin-left:0;margin-top:10px}.navbar-org{text-align:center}.navbar-org .container{padding:0}.navbar-org .navbar-nav{margin:0}.navbar-org .navbar-nav>li+li{margin-left:0}.navbar-org .nav>li{float:left;width:50%}.signup-button .btn{white-space:normal}.v-get-started .get-started-cdn{padding:5px 22px 22px 22px}} + *//*! 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:0.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:0.35em 0.625em 0.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('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:"\2a"}.glyphicon-plus:before{content:"\2b"}.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:proxima-nova,"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:#21b384;text-decoration:none}a:hover,a:focus{color:#198764;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{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;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:museo-slab,Georgia,"Times New Roman",Times,serif;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:#b3b3b3}.text-primary{color:#337ab7}a.text-primary:hover,a.text-primary:focus{color:#286090}.text-success{color:#1d9d74}a.text-success:hover,a.text-success:focus{color:#157254}.text-info{color:#007dbc}a.text-info:hover,a.text-info:focus{color:#005b89}.text-warning{color:#8a6d3b}a.text-warning:hover,a.text-warning:focus{color:#66512c}.text-danger{color:#d9534f}a.text-danger:hover,a.text-danger:focus{color:#c9302c}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:hover,a.bg-primary:focus{background-color:#286090}.bg-success{background-color:#f1f9f7}a.bg-success:hover,a.bg-success:focus{background-color:#ceeae1}.bg-info{background-color:#f0f9ff}a.bg-info:hover,a.bg-info:focus{background-color:#bde5ff}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover,a.bg-warning:focus{background-color:#f7ecb5}.bg-danger{background-color:#fbeeed}a.bg-danger:hover,a.bg-danger:focus{background-color:#f2c5c3}.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:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;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 #eee;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{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:#b3b3b3;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;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:#f1f9f7}.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:#e0f1ec}.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:#f0f9ff}.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:#d7efff}.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:#fbeeed}.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:#f7d9d8}.table-responsive{overflow-x:auto;min-height:0.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 #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{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:4px;-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: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:#1d9d74}.has-success .form-control{border-color:#1d9d74;-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:#157254;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #44dcab;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #44dcab}.has-success .input-group-addon{color:#1d9d74;border-color:#1d9d74;background-color:#f1f9f7}.has-success .form-control-feedback{color:#1d9d74}.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:#d9534f}.has-error .form-control{border-color:#d9534f;-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:#c9302c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #eba5a3;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #eba5a3}.has-error .input-group-addon{color:#d9534f;border-color:#d9534f;background-color:#fbeeed}.has-error .form-control-feedback{color:#d9534f}.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{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:14.333333px;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:4px;-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:#333;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:#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,.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:#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,.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:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#1d9d74;border-color:#198764}.btn-success:focus,.btn-success.focus{color:#fff;background-color:#157254;border-color:#051c15}.btn-success:hover{color:#fff;background-color:#157254;border-color:#0f543e}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#157254;border-color:#0f543e}.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:#0f543e;border-color:#051c15}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{background-image:none}.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:#1d9d74;border-color:#198764}.btn-success .badge{color:#1d9d74;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,.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:#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,.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:#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,.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:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#21b384;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:#198764;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-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:4px;-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:#1d9d74}.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:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-bottom-left-radius:4px;border-top-right-radius:0;border-top-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-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-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:#21b384}.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;background-color:#fff;border:1px solid #ddd;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: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:#1d9d74}.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: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-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:40px;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{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:10px 15px;font-size:18px;line-height:20px;height:40px}.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:3px;margin-bottom:3px;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: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:10px;padding-bottom:10px}}.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:3px;margin-bottom:3px}@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:4px;border-top-left-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:3px;margin-bottom:3px}.navbar-btn.btn-sm{margin-top:5px;margin-bottom:5px}.navbar-btn.btn-xs{margin-top:9px;margin-bottom:9px}.navbar-text{margin-top:10px;margin-bottom:10px}@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:#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{background-color:#e7e7e7;color:#555}@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:#1d9d74;border-color:#1b926c}.navbar-inverse .navbar-brand{color:#fff}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#8eceba}.navbar-inverse .navbar-nav>li>a{color:#b0ddce}.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:#1b926c}.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:#c7e7dc}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#fff}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#177f5e}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{background-color:#1b926c;color:#fff}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#1b926c}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#1b926c}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#b0ddce}.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:#1b926c}.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:#b0ddce}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#b0ddce}.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{content:"/\00a0";padding:0 5px;color:#ccc}.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;line-height:1.42857143;text-decoration:none;color:#21b384;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:4px;border-top-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{z-index:2;color:#198764;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:#337ab7;border-color:#337ab7;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:6px;border-top-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-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-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.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:#1d9d74}.label-success[href]:hover,.label-success[href]:focus{background-color:#157254}.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:#21b384;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:#fff;background-color:#1d9d74}.jumbotron h1,.jumbotron .h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#157254}.container .jumbotron,.container-fluid .jumbotron{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-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:#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-left:auto;margin-right:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#21b384}.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{background-color:#f1f9f7;border-color:#e0f1e9;color:#1d9d74}.alert-success hr{border-top-color:#ceeadc}.alert-success .alert-link{color:#157254}.alert-info{background-color:#f0f9ff;border-color:#ccf3ff;color:#007dbc}.alert-info hr{border-top-color:#b3edff}.alert-info .alert-link{color:#005b89}.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:#fbeeed;border-color:#f7d8dd;color:#d9534f}.alert-danger hr{border-top-color:#f2c3ca}.alert-danger .alert-link{color:#c9302c}@-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:4px;-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:#1d9d74}.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:4px;border-top-left-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{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:#1d9d74;border-color:#1d9d74}.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:#9aecd2}.list-group-item-success{color:#1d9d74;background-color:#f1f9f7}a.list-group-item-success,button.list-group-item-success{color:#1d9d74}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:#1d9d74;background-color:#e0f1ec}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:#1d9d74;border-color:#1d9d74}.list-group-item-info{color:#007dbc;background-color:#f0f9ff}a.list-group-item-info,button.list-group-item-info{color:#007dbc}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:#007dbc;background-color:#d7efff}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:#007dbc;border-color:#007dbc}.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:#d9534f;background-color:#fbeeed}a.list-group-item-danger,button.list-group-item-danger{color:#d9534f}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:#d9534f;background-color:#f7d9d8}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:#d9534f;border-color:#d9534f}.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,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:3px;border-top-left-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-right-radius:3px;border-top-left-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-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:3px;border-top-left-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-left-radius:3px;border-bottom-right-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{border:0;margin-bottom: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:#99bddb}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#99bddb}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#99bddb}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#99bddb}.panel-success{border-color:#8eceba}.panel-success>.panel-heading{color:#fff;background-color:#1d9d74;border-color:#8eceba}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#8eceba}.panel-success>.panel-heading .badge{color:#1d9d74;background-color:#fff}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#8eceba}.panel-info{border-color:#ade0ef}.panel-info>.panel-heading{color:#fff;background-color:#5bc0de;border-color:#ade0ef}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ade0ef}.panel-info>.panel-heading .badge{color:#5bc0de;background-color:#fff}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ade0ef}.panel-warning{border-color:#f8d6a7}.panel-warning>.panel-heading{color:#fff;background-color:#f0ad4e;border-color:#f8d6a7}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#f8d6a7}.panel-warning>.panel-heading .badge{color:#f0ad4e;background-color:#fff}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#f8d6a7}.panel-danger{border-color:#eca9a7}.panel-danger>.panel-heading{color:#fff;background-color:#d9534f;border-color:#eca9a7}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#eca9a7}.panel-danger>.panel-heading .badge{color:#d9534f;background-color:#fff}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#eca9a7}.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:4px;-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: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;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:6px;-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;min-height:16.42857143px}.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:proxima-nova,"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: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{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:proxima-nova,"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:6px;-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: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{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:30px;color:#157254;text-align:center;text-shadow:0 1px 0 rgba(255,255,255,0.25)}.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:#157254;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 0 rgba(255,255,255,0.25)}.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:-15px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-15px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-15px}.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-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-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}}.gg{display:table;width:100%;vertical-align:middle}.gg-col{display:table-cell;vertical-align:inherit}.gg{display:table;width:100%;vertical-align:middle}.gg-fixed{table-layout:fixed}.gg-col{display:table-cell;vertical-align:inherit}.gg-row{display:table-row}.gg-min-width{width:1%}.gg-top{vertical-align:top}.gg-middle{vertical-align:middle}.gg-bottom{vertical-align:bottom}.gg-padded{margin-left:-1rem;margin-right:-1rem}.gg-padded .gg{border-spacing:1rem 0}.gg-col-1,.gg-col-2,.gg-col-3,.gg-col-4,.gg-col-5,.gg-col-6,.gg-col-7,.gg-col-8,.gg-col-9,.gg-col-10,.gg-col-11,.gg-col-12{display:table-cell;vertical-align:inherit}.gg-col-1{width:8.33333333%}.gg-col-2{width:16.66666667%}.gg-col-3{width:25%}.gg-col-4{width:33.33333333%}.gg-col-5{width:41.66666667%}.gg-col-6{width:50%}.gg-col-7{width:58.33333333%}.gg-col-8{width:66.66666667%}.gg-col-9{width:75%}.gg-col-10{width:83.33333333%}.gg-col-11{width:91.66666667%}.gg-col-12{width:100%}.navbar{margin-bottom:0}.navbar-inverse{background-color:#1fa67a}.navbar-brand{font-family:museo-slab,Georgia,"Times New Roman",Times,serif;font-weight:300;font-size:20px}.navbar-brand i{font-size:23px;padding-right:3px;line-height:.75}.navbar-nav>li>a{padding:11px 10px 9px}.navbar-nav>li.dropdown-split-right>a{padding-left:7px}.navbar-nav>li.dropdown-split-left>a{padding-right:0}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#1b926c}.navbar-inverse .navbar-toggle{color:#fff;text-shadow:0 1px 0 rgba(0,0,0,0.15);padding:4px 10px;margin-top:5px;margin-bottom:5px}.navbar-inverse .navbar-toggle:hover{background-color:#f4faf8;border-color:#f4faf8;color:#1d9d74;text-shadow:0 -1px 0 #fff}.navbar-nav.navbar-right:last-child{margin-right:-10px}.navbar-org{background-color:#1b926c;border-color:#177e5d;padding:0}.navbar-org .ficon-logo-flag,.navbar-org .ficon-log-fort{vertical-align:baseline}.navbar-org .navbar-text{color:#a5d8c7;margin-top:12px;margin-right:30px}.navbar-org .navbar-nav{margin-right:-10px}.navbar-org .navbar-nav>li+li{margin-left:15px}.navbar-org .navbar-nav>li>a{color:#c7e7dc}.navbar-org .navbar-nav>li>a:hover,.navbar-org .navbar-nav>li>a:focus{color:#fff;background-color:transparent;border-bottom:solid 2px #e8f5f1}.navbar-org .navbar-nav>.active>a,.navbar-org .navbar-nav>.active>a:hover,.navbar-org .navbar-nav>.active>a:focus{color:#c7e7dc;background-color:transparent;border-radius:0;border-bottom:solid 2px #b0ddce}.navbar-org .navbar-nav>.disabled>a,.navbar-org .navbar-nav>.disabled>a:hover,.navbar-org .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-org .navbar-toggle{border-color:#c7e7dc}.navbar-org .navbar-toggle:hover,.navbar-org .navbar-toggle:focus{background-color:#fff}.navbar-org .navbar-toggle .icon-bar{background-color:#fff}.navbar-org .navbar-collapse,.navbar-org .navbar-form{border-color:#177f5e}.navbar-org .navbar-nav>.open>a,.navbar-org .navbar-nav>.open>a:hover,.navbar-org .navbar-nav>.open>a:focus{background-color:#1b926c;color:#fff}@media (max-width:767px){.navbar-org .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#1b926c}.navbar-org .navbar-nav .open .dropdown-menu .divider{background-color:#1b926c}.navbar-org .navbar-nav .open .dropdown-menu>li>a{color:#b0ddce}.navbar-org .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-org .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-org .navbar-nav .open .dropdown-menu>.active>a,.navbar-org .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-org .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#1b926c}.navbar-org .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-org .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-org .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-org .navbar-link{color:#b0ddce}.navbar-org .navbar-link:hover{color:#fff}.navbar-org .btn-link{color:#b0ddce}.navbar-org .btn-link:hover,.navbar-org .btn-link:focus{color:#fff}.navbar-org .btn-link[disabled]:hover,fieldset[disabled] .navbar-org .btn-link:hover,.navbar-org .btn-link[disabled]:focus,fieldset[disabled] .navbar-org .btn-link:focus{color:#444}.btn{box-shadow:inset 0 1px 0 rgba(255,255,255,0.2)}.btn-default{text-shadow:0 1px 0 #fff}.btn-primary,.btn-success,.btn-warning,.btn-danger,.btn-info{text-shadow:0 1px 0 rgba(0,0,0,0.2)}.jumbotron{background-color:#1fa67a;border-top:1px solid #34a782;border-bottom:1px solid #1b926c;margin-bottom:0;padding:50px 0 40px}.jumbotron,.jumbotron h1{color:#fff}.jumbotron h1{font-size:80px;letter-spacing:-2px;line-height:1;margin:0 0 15px}.jumbotron p{font-family:proxima-nova-sc,"Helvetica Neue",Helvetica,Arial,sans-serif;margin-top:15px;margin-bottom:15px;font-size:24px;line-height:1.3;font-weight:lighter}.jumbotron .list-group-item{border-color:#3fac89;background:transparent}.jumbotron .text-muted{color:#83c9b3}.jumbotron-ad h1,.jumbotron-carousel h1{text-shadow:4px 3px 0 #1d9d74,9px 8px 0 rgba(0,0,0,0.15)}.jumbotron-ad p,.jumbotron-carousel p{color:#c7e7dc;text-shadow:0 1px 0 rgba(0,0,0,0.15)}.jumbotron-icon{padding:30px 0 25px;background-color:#eee;color:#222;border-bottom-color:#d1d1d1;border-top-color:#f7f7f7}.jumbotron-icon,.jumbotron-icon h1{text-shadow:0 1px 0 #fff}.jumbotron-icon h1{color:#222;margin-top:22px}.jumbotron-icon h1 small{letter-spacing:normal;font-family:proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;margin-left:20px}.jumbotron-icon .info-icons{font-size:14px}.jumbotron-icon .info-details{float:left}.jumbotron-icon .info-details p{margin:25px 0;font-weight:bold}.jumbotron-icon .info-details .dl-horizontal dt{width:80px}.jumbotron-icon .info-details .dl-horizontal dd{margin-left:95px}.jumbotron-icon .fa-2{font-size:2em}.jumbotron-icon .fa-3{font-size:4em}.jumbotron-icon .fa-4{font-size:7em}.jumbotron-icon .fa-5{font-size:12em}.jumbotron-icon .fa-6{font-size:20em}.jumbotron-icon .fa-1,.jumbotron-icon .fa-2,.jumbotron-icon .fa-3,.jumbotron-icon .fa-4,.jumbotron-icon .fa-5,.jumbotron-icon .fa-6{margin-right:.07142857em}h1.info-class{font-size:30px}.well-transparent{background-color:transparent}.well-lg{padding:40px;font-size:21px}.well-lg h1{font-size:3em}.well-lg h2{font-size:2em}.well-lg h1,.well-lg h2{margin-top:0}.well-lg p{margin-bottom:30px}.label{padding:.3em .6em}.label-brand{background-color:#1d9d74}.label-brand[href]:hover,.label-brand[href]:focus{background-color:#157254}.label-dark{background-color:#333}.label-dark[href]:hover,.label-dark[href]:focus{background-color:#1a1a1a}h1 .label,h2 .label,h3 .label,h4 .label,h5 .label,h6 .label{font-family:proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif}.small-caps{font-family:proxima-nova-sc,"Helvetica Neue",Helvetica,Arial,sans-serif}.hr{position:relative;text-align:center;font-size:14px;z-index:1;min-height:20px}.hr:after{content:" ";position:absolute;top:50%;left:0;right:0;border-top:2px solid #eee;z-index:-1}.hr .hr-text{display:inline-block;background-color:#fff;padding:0 .5em}.alert-link{text-decoration:underline}.alert-default{background-color:transparent;border-color:#ebebeb;color:#333}.alert-default hr{border-top-color:#dedede}.alert-default .alert-link{color:#1a1a1a}.alert-well{background-color:#f5f5f5;border-color:#ddd;color:#333}.alert-well hr{border-top-color:#d0d0d0}.alert-well .alert-link{color:#1a1a1a}.alert-well-alt{background-color:#f5f5f5;border-color:#ddd;color:#737373}.alert-well-alt hr{border-top-color:#d0d0d0}.alert-well-alt .alert-link{color:#595959}.tooltip{font-size:14px}.tooltip-inner{padding:5px 10px}.panel{-webkit-box-shadow:none;box-shadow:none}.panel-heading{margin:-1px;border-bottom-width:0;padding:11px 15px}.panel-default .panel-heading{margin:0;border-bottom-width:1px;padding:10px 15px}@media (min-width:768px){.modal-md{width:450px}}section{margin-top:40px}#social-buttons{padding:22px 0 17px;text-align:center;background-color:#f5f5f5;border-top:1px solid #fff;border-bottom:1px solid #eee}#social-buttons ul.list-inline{margin-bottom:0}#subscribe{padding:22px 0 17px;text-align:center}label.error{color:#d9534f;margin-top:5px}#icon-carousel{margin-top:5px;font-size:220px;text-align:center;line-height:250px;text-shadow:0 2px 0 rgba(0,0,0,0.15)}.carousel-control{top:230px;width:30px;height:30px;border-width:0;font-size:30px;line-height:25px;left:114px}.carousel-control.right{left:auto;right:114px}.carousel-control.right,.carousel-control.left{background-image:none;filter:none}.jumbotron-carousel{padding-top:40px}.jumbotron-carousel .btn{margin-top:22px;font-family:museo-slab,Georgia,"Times New Roman",Times,serif;font-size:24px;padding:17px 30px;color:#fff;border-color:#c7e7dc;background-color:transparent;text-shadow:0 1px 0 rgba(0,0,0,0.15)}.jumbotron-carousel .btn:hover{background-color:#f4faf8;border-color:#f4faf8;color:#1d9d74;text-shadow:0 -1px 0 #fff}.jumbotron-carousel .shameless-self-promotion{margin-top:22px;font-size:14px;line-height:1.42857143;color:#a5d8c7;text-shadow:0 1px 0 rgba(0,0,0,0.15)}.jumbotron-carousel .shameless-self-promotion a{color:#d2ebe3;border-bottom:dotted 1px #8eceba}.jumbotron-carousel .shameless-self-promotion a:hover{color:#fff;text-decoration:none;border-bottom:solid 1px #fff}.jumbotron-carousel a{color:#bbe2d5}.jumbotron-carousel a:hover,.jumbotron-carousel a:focus,.jumbotron-carousel a:active{border-color:#157254;background:#157254;color:#fff}.stripe-ad{margin-bottom:22px}.stripe-ad .lead{padding-top:5px}#search{position:relative;font-size:18px;padding-top:40px;margin:-20px auto 0}#search label{position:absolute;left:17px;top:51px}#search #search-input,#search .hint{padding-left:43px;padding-right:43px;border-radius:23px}#search .hint{color:#aaa}#search #search-clear{text-decoration:none;position:absolute;right:18px;top:54px;color:#b3b3b3}#search #search-clear:hover{color:#8f8f8f}#search-results em{font-style:normal;text-decoration:underline}.fontawesome-icon-list{margin-top:22px}.fontawesome-icon-list .fa-hover a{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:block;color:#222;line-height:32px;height:32px;padding-left:10px;border-radius:4px}.fontawesome-icon-list .fa-hover a .fa{width:32px;font-size:14px;display:inline-block;text-align:right;margin-right:10px}.fontawesome-icon-list .fa-hover a:hover{background-color:#1d9d74;color:#fff;text-decoration:none}.fontawesome-icon-list .fa-hover a:hover .fa{font-size:28px;vertical-align:-6px}.fontawesome-icon-list .fa-hover a:hover .text-muted{color:#bbe2d5}.feature-list .col-md-4{margin-bottom:22px}.feature-list h4 .fa:before{vertical-align:-10%;font-size:28px;display:inline-block;width:1.07142857em;text-align:center;margin-right:5px}.rating{unicode-bidi:bidi-override;direction:rtl;font-size:30px}.rating span.star{font-family:FontAwesome;font-weight:normal;font-style:normal;display:inline-block}.rating span.star:hover{cursor:pointer}.rating span.star:before{content:"\f006";padding-right:5px;color:#777}.rating span.star:hover:before,.rating span.star:hover~span.star:before{content:"\f005";color:#e3cf7a}#footer{background-color:#1fa67a;border-top:1px solid #1b926c;color:#a5d8c7;text-shadow:0 1px 0 rgba(0,0,0,0.15);margin-top:60px}#footer a{color:#d2ebe3;border-bottom:dotted 1px #a5d8c7}#footer a:hover{color:#fff;text-decoration:none;border-bottom:solid 1px #fff}#footer .container{padding-top:50px;padding-bottom:55px}#footer .project{margin-top:10px}.padding-none{padding:0 !important}.padding{padding:10px !important}.padding-sm{padding:5px !important}.padding-lg{padding:22px !important}.padding-xl{padding:40px !important}.padding-top-none{padding-top:0 !important}.padding-top{padding-top:10px !important}.padding-top-sm{padding-top:5px !important}.padding-top-lg{padding-top:22px !important}.padding-top-xl{padding-top:40px !important}.padding-right-none{padding-right:0 !important}.padding-right{padding-right:10px !important}.padding-right-sm{padding-right:5px !important}.padding-right-lg{padding-right:22px !important}.padding-right-xl{padding-right:40px !important}.padding-bottom-none{padding-bottom:0 !important}.padding-bottom{padding-bottom:10px !important}.padding-bottom-sm{padding-bottom:5px !important}.padding-bottom-lg{padding-bottom:22px !important}.padding-bottom-xl{padding-bottom:40px !important}.padding-left-none{padding-left:0 !important}.padding-left{padding-left:10px !important}.padding-left-sm{padding-left:5px !important}.padding-left-lg{padding-left:22px !important}.padding-left-xl{padding-left:40px !important}.margin-none{margin:0 !important}.margin{margin:10px !important}.margin-sm{margin:5px !important}.margin-lg{margin:22px !important}.margin-xl{margin:40px !important}.margin-top-none{margin-top:0 !important}.margin-top{margin-top:10px !important}.margin-top-sm{margin-top:5px !important}.margin-top-lg{margin-top:22px !important}.margin-top-xl{margin-top:40px !important}.margin-right-none{margin-right:0 !important}.margin-right{margin-right:10px !important}.margin-right-sm{margin-right:5px !important}.margin-right-lg{margin-right:22px !important}.margin-right-xl{margin-right:40px !important}.margin-bottom-none{margin-bottom:0 !important}.margin-bottom{margin-bottom:10px !important}.margin-bottom-sm{margin-bottom:5px !important}.margin-bottom-lg{margin-bottom:22px !important}.margin-bottom-xl{margin-bottom:40px !important}.margin-left-none{margin-left:0 !important}.margin-left{margin-left:10px !important}.margin-left-sm{margin-left:5px !important}.margin-left-lg{margin-left:22px !important}.margin-left-xl{margin-left:40px !important}.border-left-none{border-left:none !important}.border-right-none{border-right:none !important}.border-bottom-none{border-bottom:none !important}.border-top-none{border-top:none !important}.text-sm{font-size:12px !important}.text-base{font-size:14px !important}.text-md{font-size:16px !important}.text-lg{font-size:18px !important}.display-block{display:block}.no-underline:hover{text-decoration:none}.clickable{cursor:pointer}.strong{font-weight:bold}.em{font-style:italic}.small{font-size:85%}.no-link{color:#333}.text-sans-serif{font-family:proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif}.text-ellipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-default{font-family:proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;font-weight:normal}.text-color-default{color:#333}.text-hilite{color:#21b384}.text-hilite:hover{color:#198764;text-decoration:underline}.text-strike{text-decoration:line-through}.text-upper{text-transform:uppercase}.text-lower{text-transform:lowercase}#no-search-results{display:none}.valign-baseline{vertical-align:baseline !important}.jumbotron,.navbar-inverse,.navbar-inverse .navbar-nav>li.active>a,.navbar-org,#footer,.content-underlay{position:relative}.jumbotron:after,.navbar-inverse:after,.navbar-inverse .navbar-nav>li.active>a:after,.navbar-org:after,#footer:after,.content-underlay:after{content:'';display:block;position:absolute;top:0;right:0;bottom:0;left:0;opacity:.15;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAMAAABHPGVmAAAABGdBTUEAALGPC/xhBQAAAaRQTFRFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMalYaAAAAIx0Uk5TlhaTG6WwoBqyCx6sopscnacgq5cfmR2UkZwhlY4li5IjIiYpjYmQJ4iPJIyHhooog4WBfoSCKyx9gCotf3wuMjEwezN6L3l4NnI1dXd0djc4NHNwOXFvO2o8bjptPWw+aD9mQGtEZWlnQUJDRmNiZEVfYWBLXVxIV0lHTk9KXlJWWFlVVFtNTFpTUVCkyaWwAAAfsklEQVQYGQXBg6JsWYIg0Bh7WlVdVjrz5bN17Ygbto5t2977p3utXhseb5cOkcQlMSvlwcK1KN+kXuZFtaw8UKWGHiFOjR+F43DFHF/nyis8PMwvzc7QdS2qjnykhpWRQjtpLDpQTFUQhrP972J3uIwc3/WaHJF73IT3EHONyQqnTVQIxOGvt7JaF3K5XOM7dyDI1VQv1c0xv3T0lzAQ86iJX3cdkg41x1QCweVIKUGI1bm1XhO1cR+L/oaFys6joNLUSBbURm9bwK9yySmu+6MqCJ24VqSu5NofdmOlOGCp1ci5Ob8EObh89le18MLgAWbH/9ZUCR47kyJmcIUArlxGN2Ugzj/bN6fR9qJeC61niRtk516BTEF7QdOmB60uSSfTQ0TwrYLTiq/CFPBE+2AKf2eiGYkrWyQy44z/1CRs35oHxM4U8tBPNVTAGu4X0dq/5tcZs2TlDO7VVRolsSLyzO9t/aNh2FVvlJJQfLpVr0/qY6o37q0Yo3PxdGKWsibL6V8HxMcYGUev9C5qlrp/cDR1Llr8F8r4oToXReV3Rt8KA32bZwZ/4+38bTq5nqTPOmBjNJ8QK8KWQK8uxdyoNFxrle3Snen1ioqasN3qh+JNVdbGiid0Sbl2/TKfJQ+/cQuOMKw4mtKRN9TBhR1RtF67xTGJGQ8DnuKCq9mhpJgLJWqg9VfSb49kr3W0+DWjGaSSw0vQaapjdCyJoHEQykmbfVGDR90u41jAHpbuNfywT+mt6XpgJFeH4i4U0xRxm6Zu/rHSQv/+9+sG4rSnLJ2zrm75c33ohrzas+eJeBA8D2DBSWPsVGOIq5AsfEzUuNWD52wCbXh2XQyZENdvxrWzzCQk04N7slLfLyj+QZfCsixMS05gcNQwxfJZlkBiPZgC7zhVCjMOtV4weO994s/mVikag3ZnelFcdKVUb2kWMoJ1075OTiv4Wq/wlvvAnMFCN6Ic7MIujcr8b/NDQpaGbX78QR/GUFaTeQIK3OGkm9yxClW8FZvGsXs1Tpcz5WtNSdlDZbV6nglu6YZIfXoucMX99Me+/mYqMBEm4X2YhzRrhMbdL2i7YhttHXwOqWSb55ITmIXscoZzj76Kfa8rrZ0Ay/vhUKErGPfKlBRSyJfcWIidwlfoKnAevyxpUGpikcWZqnz6nDvZIxjGULjGmV+E5QscXHwX4I6MYHYsbEJgxPY6I3Y865Wwfl00a6TQHNPNF2d3k1Ztql4EciNK8/SVIf1+7sxkj5RM23h3nipnfF4U3X62c7VIVQk/twKoDTVwWB+nvlfLCa1bj3J+V3gn6SRqj4EqWOtwjYebhAph8NjHX+Db9mq75Hofkv9fsnrmLc+Cxthn1njneZNPdgfO4hnRGppVsqT/tAn2le397e3fN9E9ovzlL9e5DhdsFPACnKb5gYEZ7zDbrH5EufdFxxs/yxqX+DlXmmMq1HrLKs/z5H/pKj3NLfzhuHCCqg8liB0+vNGn7Sf+tChHoxPOP4cu/362qAtC0kNra8dVyzLP4Mgpf/Y3yAOeb5IyqSMRCXy3+mN2v9Flta4Yn1vBXimEZV/V1I3fRlU8Ed0q0/LQaNn2DOJlB45M5X0aajILyO0k9FJZA2o5ie+V1VwDGdgFebF1vrlT4ry4zQcedHIKBXkeVhsvkxsT8jW97S073GTf22Wm2yBN2TRDVaEldhl15MfHpDOllhIavGPJ+OB5Yje71SlEkGVz/6VEBT+fV9lFh9Od2xxK+a5ry0lU3yjQtcRPiCDSF0smi6c9ZDqbZso6afHA8L3Apl0LJJ7whAq3tY6+ZwkxYArATbCsYfe8U+9KNLtlW98Mbacuu7NR6NhOFzOcQKsA55FD15JuR7xsCCmuI7IO7qlDjxlLRmy02bpLxfoBncftvmGHUu6SYDOK+srqYwklx5dIjqUroTweFRrmQZZGiE5Z2eK2iXy/rD8d/+l5kcylD0Yht2mrdNmqDdgKURofrZWefrnJsVQsWnL48VGOY+AhZTf3qJpc6qhxYWyCNHrLCMnqPBgMulqj5CjaGH4/VajHzFIOK18eaVcu0XC/Cp148YVasVmi4zO9rTMjKhSAZmVvZ3l7bBVVvuQI0rP6XTudT24ZBVosD5PrR8nFMVEKPIJ/3K0qvq3TlG7ZFqkfWccRrGr7t5nGZleYH69t+yLaBKwEj7LtTHZRJkiDN9Kdt0J6BlOZeZh71maSHj4FikgDqcRmsUOsy3ZJhqFehZjNYgrd8utMC3KjYCOTICBQ7MQUILu3aDdxeVFOCNpVUcIX76jEKN9nSWYQ2PNTN3vdC8Qydo/dEWRi6OqW1ZxTNcYrgpeb09MHTZ3njxofDbBQtb6SDnL99QtwslhXy8jqLD8STMoTsbYdTxWwqSXJVmTAp0rZComyl7i6QY6a0iOaVIeBh0Zga4TzYmHN4hYY3Yw2jrNMdLya+rhdUHXkyJnXVfW+qQqbKCq7P8jbs82yX+OrVvKc31RBNPv6WNUiq32h13InyQrUcnlty4rTA3Z6N2nkK6NR+E91Q9tCtg19amUtZFPlF+GzJHj3Ew5TnswP6sFQNo0NK9aPNB1nBpGGRALr1PiN10oUIWfvVgXc1Mgd9ehTEh2MqiwtF1rvq9WMhZAeGx9okMJrWfPEkGkbpAuM6zRXEjcr/DY111+hvsdjXEawhkkcy6n0/z3urraN3gBE1+q2epXs+WTbTVMz44yqw/YZKBq8C2uT74W6H5MlaNZN6ibfZ8W+UCpSoaVl51TVo414nslTf5d3RC23QXov+keW33UzjztU0XFwjWAPrjZOQ1JrePpttq2T2AA89Yh+sVGtqmvPzoOm9+Adb2M1qAP0WHIcSPwkVkM+/pIqwZcWoI69l0UOo8LB2g7t9Tv3Vi3fMNdkZOWthWeVAe17/l9qUvWn60ZQm62fZtZLuVx+hCVRthL+Muadnt9VW91Zog+XeQXDQvNayj+JWgMDO1FMA104HNr7p4YZTs65g+PmYTMPSOMgWw44DVJF2qYv5WXfMCjj3WDXPSTC4rFsuyYfT3Y7Sl2YZaNoveCawhtnnR9MrfXS7GgTxLHrQvfndBk8GyTdKDDRZcYQiv1iL0nQ1tXtbUFxQdDySZRaEXYN+BtDeFt48raTnC6v7lrJqqyqTCuptqGjxv1el2eOOi/XUl6HVeXfyDZfJYVzWUbBIgpC6g1gaxgSIwqLpsJoYfnCGOyVg+ElTZfY98e7Tqq+P/DVpOqcZcIpbR5vfDLd3d5slkyodpDL7nuWrYcvdCOVeeXLg8n73rhuW+NaKOS4UjXHaaiSoW9e2RcL9fMnGvJck56aF3WAWOs8XWFVh3VQKBbG9PisEjmoWyy+ydXEtkmvwFu1nSFzuicrZbJT/1HCg5w3+MwWFFwyjbH26I0Tc6NJ20OXqEZKkeWjb2ceG7s0HTZ8Z0mLpEZhM9tZV5kEsM1macd4p47U9p1ppbLDpX57NPLlo5D0Bls7cNTPNpOgaxuD3cd/M0Mh0qrBFyPyqZd9o4FpHjQZpzhq0NXN3MtayO1duT3th/CC3ZY5cXnH7JWsKY15pFX4i8DeLuJ7PeJ3VhXtvKnS88Lvihto5BF0I2Dw2QF05HazFyxddvOH95draC9Ykfxr7uYyLKO62Yq//rYbCFYJjwJ3F7GHQiuOjAtJjbvk9ZQ1oiOKQCplBUtFjgodM07PqXd2/i6uujasmXTUNkE2NoESofFpdQxYC1Cla/hR0KjrrPqldoN8RJnjYvcQ3nmFATeVQ8c3L10K3u9RoVb2RbBCuIpLOe4Kb/xFdsSbtidaxfTO1O/L3Sqgp1HSiTHIVpKZZUX6hvnMXVSBV7hamutlu/VMikQ//HUi9+FWkpfJ8p6uxmJV1Cr/cJ5btknmghJbOTG35fUVXlgpzeyEpleuvU4/3iED30sCQ94PfrhPHSflunakZn2HKhh6HizLefn3ksOyCze6BfSwav6BgHi7AQtekhN2VGL+b09tw8jI+oqMcNDZTTxdPSd/qOafWHjS+9rmka+VpmC1rKOyCZwI9R/exB3NpeX/2XdjwY2ZQ7NuvrhXthcFxmfKlB+d6PiFVTcLfCmFo/jYDgKnDvYGaCYl49g1vCOHEPslDZJ4S30oux6cYQgox+mbtaaQsK2SomOSjYu0cGl2d1hQDmvNMy35ofp5SAQlS1Jd3XjWY+S/TKg2dD652JYjItaMg3m35fMdsSu7u01d123Z/kmxGTJlesmqCFxXn6n8bpcFEsE8EhwV2Yf7yjRqjC3moDUzr7yJVjnkE/vLgjJsKTPh1rltI75F72/xirBylLxyJS573DJZ6ThJQSuTokUK33+ItnXPCkoBVaJb3+FDw8OurIrjm5qbXq21n3zfRP3IOJJ3asbzU9/FVElp2KRUY4mCA5894qXzDj4qmXPgknUbcQcHzZmbom2ybBmqNZfav7Yw7RWGjFoRy4V1EYK2pXmE1pKUpokwPVCspoACXvIHRbtHNe2mbrCFvIOB437CUsaxk/ejf/2/mN9WtqfGfEWWgzQimpaDGsZXQl03cXTg6rL3zIy8K7FQaMOg0BjcA1H039QE5dJSLFV27t0XaDn9YX9QixC4puw9PEUTtpMf28y6DA3ol/xVQborN+2YnKxgg+Pawk+n/7ZOG7SCkyba5D0n5/Jnnk/HkV2wRWwfwYt3YTuxkn1pzvJMBGxM04w/3taOPYu9ff2DJZ7fBZXuHoO8DUCXJjtdeuDW8kqoxduypFa7MXAm1yPiUkrD1WB4HPaeJ7kp1Y5naGEgOKioLDM/IA19kxzSPPWkue8f9MYb8zfKzFKrKHSMhcQGAoQFMUyk9WvyYG6sBtzvw4EUnmPr2ze3bDztQONFUg0lO1LL3g80L0KtpPP4nK+xIo7q4NMozilxiwQGY1zc5T50ilRjMju+A1/r7N0wofxC2H1uMD11+L4hZyeP5/9u6nIjX20amyz05d2B2ueHcW757vJ3xHlv/D4z0AW4w99+VSop2VnZUtFAURmUMn0r4ofoHg+3bKoaKQlOK7rBfRavPwf17Gem8/ysQynXTvuQ2JdobPfnokPR/l1z/2Wf5PdiIMRJoMDeJfKNwMiU6JoKdHGzs9Qm1U34BbEx5GwUuXvmj5/CWu4gPB0xFyko4BhGVFtbfF12WKx+Bv/9mPhc48MA5Ll6jE72OVON6vFlxoXr268rtmB6MtprC39GGm6UdYcMCK6P4j/9mBKuY+60Yrs/0W/dztduFSdN932r3ej6dqG+uao23pd4kbIEGjsQfjPzn39k/VI2D/cL46Gv49v/mb8CuwwKftmT7rIQrXhXDmusMzvYlHGqz1wDg3/+aP0r5/kAWAvXPm4O0TJ4FcLZYkXYtrkOHXFDxSklG01Mj+rV0nqdQs7rAptbGcUg3Vd32tfQfp0Bmu9V7Gs8aUUxT8FwUeTV/kPu/dLJVVOzlO+Rqc18lknhD4NFHjasnIOpVobONhqTVRHV6p4efQDB9jYBlXZ9XBxfaYStOVhYFKoZFoeJ5yU8/rRXSQEGbQYWwgTGKvy4v072XqWo2ryFSudx8Of3J4sBmo8gP3fDhoClaNnATI9erIzx6h0H0gbbBxOc1fQs2DpwmPgF0RTxW4WKC5KzpVLrSedYV6rQvmqYWXIdMhH0z/LM9GOTAi0wvbKJLQJ7p4b3gUuzh3dpwG0s2GKH89Rso4NXRMmkfMRZbuRQQK0gDAt9G6TfZ+3Bp0lylA3Vspcw8syxSV+3qwSh6RUNbjxNkbiv/wyU1Y/JC/aPOv/4OL8gjarztqbD3dNTO0E5GUuCGiRSbl810vV1qt2I/FIUjxn2UTqdp0RNw1YH4mGeSGUvva6ZLsuiKm/2m4Of2nkHUSjM89JYXpEAOM/XElkoJIZFWHPVCfwTJPIgiremFnfDDp+YXfd4EO+PpbNZPhnV07oypat/Iiu7L9uauJoksdSrwq7RynZ9VhjA8qvaOR+X0n5d/+XsfNyyxy/7/xxfIlXjiPxV0t1IFLzcK12n4iu21d+JGX0kR+heWRNCVY2hQ1ZyYR4OyNmpXXzatE1zb4gF0fvVfoNVF9Z3lPOPT5KcVEFhbLTs5KEdoORurGYcYp+9O0Sv4peGU6MQT3lGk38+LDqyKeLSfD/5x2b/LxvWLnbQMk0sLHkGgtdh5we1knMAr1tJ7Xmry7uVyvWfLHA9hZ0WTwSf3aINPZp7TrN8y5tMUmxNxhRCPHDfJmI+H4fJDtRwWKAtKZNGE3pyEjNZ61NmmcqWhQtYsmKZutGyrXAJQ7uXFrv8A8Na47oObg0/216aUz0AwZ3i5vnj9nOOfTuXedNP9FVUrpsH82+2mIq/GiFU4jH4qaFxyTaVTACM2fongb/ErQE1tyNvtKtDO9U+h4nZw0JOrTdysbvDiLnHacLBrC+FV3mYvf1nGNYqBDjJJOaZZdWwZZUX2jVWKp05ttKzRs6Q/wJpsitdOTGsGrdvSQ3e1cqt081eSdeVjVLN4wUV9KQqEbISaTopru4VW8qlRhPPp/R0qtGqPsDl/gYkYodqgicd1Y2IG/jXx1hyvZuSX2htu1KtZkDe1XVDgQjuRPebUB/IqJUWTXcq8KHvAKtn+G3DtgilAZfNJl+tHDE1uXSeTPmohUluVGFf5FWnTty8+GnrRi7X5S7qLgrow2x+ZN8WMr2GlJh5XrKQbtYomRw/Y+a9+fGWd8QkeFr4jz1C3dsO0mqO7lnZgo04WGVpcXY3HPApZXmfrC8qt8iT5g128NLAjfXQgMKvbcMbfTQax0Q0WtUV75+Wvu5ELodhF2+7SyjyoRjFj2gfJCmm9KokrA4J08dqVLeEUdiVIzEczC8tRDzbe27Wr67tB0zRuwokD6n+lo0vjhpo9nYFuKX5QuILNjFor7zZ5lGHzhp42l/Y3b+7UDSjZBuUTZpJPcxS8qs1P1eZo0ZMAa8tj/IXvBPkxzpZa7Lg/oN5NFkt5j2zwaIms84KiohaPnKE49NWzLTTvXi3szrbiY3EPHn4c6ciJsqnljA4xldB39K9sBcFzyBC5BKIVxFE6/rRaWrWi4ykIjZuEajL68gw85TWyFZ9ilbvzuNCJ5QaIZ6nCfstuZ8d97umloSvnJFffD8zk1mq3afkh4GkjzwYfE3BEuvR3oUmX1S4HyStriBxrobRijsIJvMBeJau9P1a3YWaVQI0hg6o10CTO+TRl28syU/dkYd81f7chuBI3aJNSpTfyaNTUu7mqwVMim5yJ4B91os3hndehiP2C1HMwJufLt+a3ut8CoUZ9W350oljULvbX1SyYPg2FSDHsF5+ld8buR1ceDmHLfRdZBgdQLzXE/E+iZsTK5GCT1xXiIpINMXmp5jvpTdoOcxVrzCizDkX9aJTlgAhHXEoU0h5oTedbdEWb3nVh9IeP/0AC616ro5MZjDBPgNmWaM//qe0Fmv0kloLPk28i3+7XO36Yp1kGdPm+denVt7D6RHxBmlUU36IabbxluBRFktte0s7lvWV2pk3Z2GYelWbIsGfvL9zhEM0zt7lM9lcyEb4Y5zqUdRtPrdboKeub9KhECkje3rrnXN1wVCFdi71VnuwqaNcuLEsR5cwsYtosVHauaXUSaCYzr7grb9p4cv3wXP4Ak/q/Z8v/dQlrpXiO1oNJ9e8zrQfcDIXM81pXQdHMkPSBZCpnSq1yb1+ZeylXsPw/cPD6xvHWsNgCXERB0rafOt6bt7t7IHU1g5Lf5fk8QXNrXio6/9vGq9oHxQeEF2qXVbSt10EPKi82YYRY9LXYw2QqV+oyUI6dSFUKZj1DnbzRXG3hkSYHPQjKaOorUsdBw8tW+XMbg7uG8zxd3cW4NQsF3Ug7uNGL5jc+gN6HpqWeRy6WSdsVnt65uWAiwNlWDL7JPgZjcPkhf+r4B57qpmc3gnOzozM5k/TVTwL2tIS418X5eUmciP66sabjF6EPJp+b4kejrZVkp+0cYVIhE96dcJX0GNdTZbtJI8goUVh67KZ39WB1lVZBD9uHL/Xucfio79U7DDi5BPvF0SK40gvEG4+d4vB82CnWk08ccuYr6V2ls8RQ4Ac7hzfFSpa5daMZG8let59pIBSPNHuRkyp2sTZewClY9f9jym9AU/QXpW4dZqU2e1cR8LwEYndfWM2hV5P1tlcbn8+mQRFUpDZ96CV/6hK9J90Z6ElMzdfEnzV5LUTWEXWrUsAiOumitThkuAxC+77LOlkhkJpM9/rcRJi7GMOCeOBU4cdBp4FuSxbKZ6DzNaz+YPanyUuY8yDsu0sNoh16K44T0j7dHZxCysOds1J8M3qwNJ6mB0AJRBz5lUgji8b5/NBEym7aHpw2prPunQRckfDRvSY8VerSzZllUEXrA4BUk6DTG85VVAJvK22afONWEBlMFtBjHsO1DHFDYb+291tslhzU1IQxbasB8vIAI9MzCAX9Wo5vOipHaHWRtcQR/lAWsoafPINiFNEIhyTG5toHS3i0rY1FC9P61VnR9bV0G3dbplbV65cxSwC+bZtkyA3y5dv6PxtuymlhAlsd6vdcTVsi9TrVXI28pG9nZwsQXcs/WIa750ilhUxMkNm2XXs2Y8O2v+o51qiXQ8Vv+zjD3XmZfrdRs4kwuVXSCXTbver95vmOschGSrUhBnvAB/VuF6Rxa7ptXi5OBx00hflKonHi5RaPdDpJSzF7StHdcpnrDbtt9J4lww5VeECPhLsMBGq9+m95ASpFaMLNkTcxxQwqfq8VYLjeg3jwnY16YZORWRfN1bPK7SnsEmGESNQCrr7yJDEko7el9cgSMIgTUqhxFt3o95UWZiaWg1btxpFKEvqLQBoiIKcFnC3zczCbIagrlzX7fLURO2v6X4GA587rPDetvOLyCqHc6Yww2YcbG8X1aRYVCfVMdzTzM2aRqSZtnI4Lv6zdUKusbp9gf7h19TUZD/AC6JpJCaqSwF0H2roiTO0P/mWtiH/4L/rbj58rYnl9Gsv9H1vXia6XCd7sY0jzjtrKBCrH2aRSnDDsGMMfYcY7UN78avbBbqwS1IYgbij4IPq450Ud02hBFAeYVIFf/Q1Bc72B2LXn16OdipfhaXc9mItqdhEK0WxXZOVXzK+wYRPSMb1jLU10wVa10gPbIc6Owau5zKkr1e2GzZdB/+2VjJWV0PTYMIR7eL7YXuu1CEWsrFsDECmWYZbCshJ1JP0jmqobSRAcgDMHfJkOzZD95dq7ZQpS30XAImJ6qzslN1f/o7aHOrsWCaBSPjBnndHrK7f8hIfdHVk47rpfezvqrfOIyQ4HoXG0/tMrcVcjHsZOvHXnZ/V5XPQgDgMHoS0MKBbeC+MyVguwzkjy1XeDkT23uwOoTSrqpdKs2Nf/whUpvNKXrZnt5v3//UA6dPJCgtxOyrtD50ZfGfOoaEcpxTWO0lvX0zEzV2+n1i+GESda1iAZRuLgKCFVfckTh+9xi3T5g46wshk+iKR1Tre9pOFuQ8w72Q8qdj4L9ul5ePuljWHFw8qz8YM80cOorQlBLLWg8UBcMnP7Ndq9/Ug4kYWr2JzlO7atGkwbyGhSZU4QdMxydoa00Ze1MaVE2JadrtSJwGsfbrl7F0Y2YT3GdwMi3anTMMtD10ldys0b8Oovu1Fqi+Qj2yAOJaPRZrVepMVCBGVimkM8x6KArsu/Pd+ReLvS9df2OoJPffNwNaUB7Mfq7Etv9h3eZWiPjlAOSpaOBzn5KbuRZ3ZzqLQE42wZz6S3dr53KAOZtD5Cd/eLvpktUmePrphRxe2WuUL+62ySxKiWNQxAJHT5xXOU0eVDl2fHyoj0dV1nQn0l1EEKDH9cOs8z2bCA4w/n7EcleleT7aJTcV6jCmO8CO57r7fU/NJ6c8NM9WwMI8zstNVEuThtf0UcFVHiLKslx6uBcnkOHy2zLC4i+XyXOA/ez91G/M+W6f01br6VRU+/qWTIr1b7HsuXNnq2sBkpmnsA6EjYtGV6zrI6yxKyk3Ddqpbu447FTtDN0zrTE3B8L54PhXyB9aqTr3C52OtchdowMax3Uo2Q5370vt0vtCzojBTRwM9/eO0UGQRO5YHq1Nb2s9BlEHNRQ/oRtPKu/CiYBecIle1FAvZ8NUYkDy28ZHoEi/R9ZOGgvmju1FqX/M5P49uDWoPfJP6Js3uDX06qdeqZPaqzYPv73ztSe1eScFg9kCE4cMd+4WoYgTDQqPgExPNYqmSPLiKPn+LlnDT2V16zFKVDCBpzx+htzmWVhSXNTDJB9UHcmbYVqE8UFXwObMJvifnjDL9WOGaWeRsW4UEh0hHNvbvJm3/IKzF1WmWwsJMxer4kvnzWxBGmzkfzjIb/NDxCbcLuC6bujbJ41O0dVqhlY73zQoEjqHnsEQekqKzejcmAHEiEkHz7zsgatb0kH3pmoPgEk0St2AmKYip3MFk9V5Nm7q47sj8T8mIOTjTRt2LLBDp9UVFdI7Pa+p1ozeChH3WIQcar05/j8d2FhZqz1Q3kYMGQiHbLV2i1HEfw6qprmjfyGk+MI9Z3sjM2H+lg2a+q6V79RBx4qZeQi8xXOWnMsfu2tqxyqUuecL3+5ijd0F3Ff+14xx3RJSreZz2JOvYVjeyWLyCdnAp5AKRPLu/FWi9PgLhsQ9ja3bphs0nCimW6GkXEz6XFfbeFMTZxczcBwg4aQz7qDTLsv1s0VzZV+089PVDpMBF7LutaT32frEKnZSzEG40dq62Huqh8NyDBIXJv8tOa31DuRLhk7Byn+j9MByMC7Jd5EtzvXCksA0etm6TbcaQX2RzojFLZpiFebI8qMVyxaddkrvkzv4Pt7iFz9PXmP4AAAAASUVORK5CYII=);background-image:none\9}.jumbotron .container,.navbar-inverse .container,.navbar-inverse .navbar-nav>li.active>a .container,.navbar-org .container,#footer .container,.content-underlay .container{position:relative;z-index:2}.jumbotron-icon:after{opacity:.1}#banner{color:#fff}#banner .message-container{display:table;width:auto;margin:0 auto;padding:15px 0}#banner .tagline,#banner .action{display:table-cell;vertical-align:middle}#banner .tagline{font-weight:200;font-size:16px;padding-right:20px}#banner.font-awesome-survey{background-color:#8e8f94;border-bottom:solid 1px #949599}#banner.font-awesome-survey .btn-primary{font-weight:bold;color:#e8e9ea;background-color:#68696e;border-color:#434346;border-bottom-width:2px;text-shadow:none;border-radius:4px}#banner.font-awesome-survey .btn-primary:hover,#banner.font-awesome-survey .btn-primary:focus,#banner.font-awesome-survey .btn-primary:active,#banner.font-awesome-survey .btn-primary.active,.open>#banner.font-awesome-survey .btn-primary.dropdown-toggle{color:#fff;background-color:#2a2a2c;border-color:#111112;border-bottom-color:#000}#banner.font-awesome-survey .btn-primary:active,#banner.font-awesome-survey .btn-primary.active,.open>#banner.font-awesome-survey .btn-primary.dropdown-toggle{background-image:none}#banner.font-awesome-survey .btn-primary.disabled,#banner.font-awesome-survey .btn-primary[disabled],fieldset[disabled] #banner.font-awesome-survey .btn-primary,#banner.font-awesome-survey .btn-primary.disabled:hover,#banner.font-awesome-survey .btn-primary[disabled]:hover,fieldset[disabled] #banner.font-awesome-survey .btn-primary:hover,#banner.font-awesome-survey .btn-primary.disabled:focus,#banner.font-awesome-survey .btn-primary[disabled]:focus,fieldset[disabled] #banner.font-awesome-survey .btn-primary:focus,#banner.font-awesome-survey .btn-primary.disabled:active,#banner.font-awesome-survey .btn-primary[disabled]:active,fieldset[disabled] #banner.font-awesome-survey .btn-primary:active,#banner.font-awesome-survey .btn-primary.disabled.active,#banner.font-awesome-survey .btn-primary[disabled].active,fieldset[disabled] #banner.font-awesome-survey .btn-primary.active{background-color:#68696e;border-color:#434346}#banner.black-tie{background-color:#2e2e2e;border-bottom:solid 1px #383838}#banner.black-tie .btn-primary{font-weight:bold;color:#e0e0e0;background-color:#212121;border-color:#141414;border-bottom-width:2px;text-shadow:none;border-radius:4px}#banner.black-tie .btn-primary:hover,#banner.black-tie .btn-primary:focus,#banner.black-tie .btn-primary:active,#banner.black-tie .btn-primary.active,.open>#banner.black-tie .btn-primary.dropdown-toggle{color:#fff;background-color:#141414;border-color:#000;border-bottom-color:#000}#banner.black-tie .btn-primary:active,#banner.black-tie .btn-primary.active,.open>#banner.black-tie .btn-primary.dropdown-toggle{background-image:none}#banner.black-tie .btn-primary.disabled,#banner.black-tie .btn-primary[disabled],fieldset[disabled] #banner.black-tie .btn-primary,#banner.black-tie .btn-primary.disabled:hover,#banner.black-tie .btn-primary[disabled]:hover,fieldset[disabled] #banner.black-tie .btn-primary:hover,#banner.black-tie .btn-primary.disabled:focus,#banner.black-tie .btn-primary[disabled]:focus,fieldset[disabled] #banner.black-tie .btn-primary:focus,#banner.black-tie .btn-primary.disabled:active,#banner.black-tie .btn-primary[disabled]:active,fieldset[disabled] #banner.black-tie .btn-primary:active,#banner.black-tie .btn-primary.disabled.active,#banner.black-tie .btn-primary[disabled].active,fieldset[disabled] #banner.black-tie .btn-primary.active{background-color:#212121;border-color:#141414}#banner.fort-awesome{background-color:#242735;border-bottom:solid 1px #050608}#banner.fort-awesome .btn-primary{font-weight:bold;color:#fff;background-color:#454753;border-color:#1a1c26;border-bottom-width:2px;text-shadow:none;border-radius:4px}#banner.fort-awesome .btn-primary:hover,#banner.fort-awesome .btn-primary:focus,#banner.fort-awesome .btn-primary:active,#banner.fort-awesome .btn-primary.active,.open>#banner.fort-awesome .btn-primary.dropdown-toggle{color:#fff;background-color:#424761;border-color:#010101;border-bottom-color:#000}#banner.fort-awesome .btn-primary:active,#banner.fort-awesome .btn-primary.active,.open>#banner.fort-awesome .btn-primary.dropdown-toggle{background-image:none}#banner.fort-awesome .btn-primary.disabled,#banner.fort-awesome .btn-primary[disabled],fieldset[disabled] #banner.fort-awesome .btn-primary,#banner.fort-awesome .btn-primary.disabled:hover,#banner.fort-awesome .btn-primary[disabled]:hover,fieldset[disabled] #banner.fort-awesome .btn-primary:hover,#banner.fort-awesome .btn-primary.disabled:focus,#banner.fort-awesome .btn-primary[disabled]:focus,fieldset[disabled] #banner.fort-awesome .btn-primary:focus,#banner.fort-awesome .btn-primary.disabled:active,#banner.fort-awesome .btn-primary[disabled]:active,fieldset[disabled] #banner.fort-awesome .btn-primary:active,#banner.fort-awesome .btn-primary.disabled.active,#banner.fort-awesome .btn-primary[disabled].active,fieldset[disabled] #banner.fort-awesome .btn-primary.active{background-color:#454753;border-color:#1a1c26}#fusionads{float:right;width:300px;margin-left:30px}#fusionads .fusion-img{float:left;padding-right:10px}#fusionads .fusion-poweredby{color:#777;margin-top:2px;font-size:12px;display:block}.vertical-ad #fusionads{float:none;width:130px;margin-left:0}.vertical-ad #fusionads .fusion-img{float:none;display:block;padding-right:0;padding-bottom:10px}div.bsap{margin-bottom:20px}div.bsap a{display:inline-block !important;border-bottom:inherit !important;margin:0 15px 20px !important}div.bsap a.adhere{background:inherit !important;border:1px solid #ccc !important}div.bsap a.adhere:hover{background:#198563 !important}.sumome-popup .sumome-popup-content .sumome-popup-form h2.sumome-popup-heading{font-family:proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;text-align:left !important}.algolia{margin-top:-20px;padding-top:49px}.algolia a{color:#333}.algolia a:hover{color:#198764}.algolia .fas-algolia{font-size:32px;vertical-align:middle}.v-get-started,.v-store,.v-accessibility{background:#f5f5f5}.v-get-started .get-started-cdn{background:#fff}.v-get-started .jumbotron{border-bottom:none}.v-get-started .get-started-cdn{z-index:2;position:relative;border-radius:4px;padding:5px 40px 22px 40px}.v-get-started .hr .hr-text{background:#f5f5f5;font-family:museo-slab,Georgia,"Times New Roman",Times,serif;font-size:27px}.v-accessibility .accessibility-cdn{background:#fff;border-radius:4px;padding:22px}.v-accessibility .hr .hr-text{background:#f5f5f5;font-family:museo-slab,Georgia,"Times New Roman",Times,serif;font-size:27px}.content-underlay{margin-bottom:-180px;border-bottom:1px solid #1b926c;padding-bottom:100px;background-color:#1fa67a}.product{transition:box-shadow .25s ease-in-out,transform .25s ease-in-out;transform:scale(.99);z-index:2;position:relative;display:block;margin-top:40px;color:#333;text-decoration:none;background-color:#fff;border-radius:3px;padding:22px;-webkit-box-shadow:0 4px 2px 0 rgba(127,127,127,0.2);box-shadow:0 4px 2px 0 rgba(127,127,127,0.2)}.product:hover,.product:focus{transform:scale(1);-webkit-box-shadow:0 4px 2px 0 rgba(127,127,127,0.4);box-shadow:0 4px 2px 0 rgba(127,127,127,0.4);text-decoration:none;color:#333}.product:hover .product-sizes,.product:focus .product-sizes{opacity:0.75}.product img{max-width:100%}.product li{padding:5px}.product li.active{cursor:default;text-decoration:none}.product .swatch{display:inline-block;width:30px;height:30px}.product .swatch.swatch-kellygreen{background-color:#249265}.product .swatch.swatch-black{background-color:#151010}.product .swatch.swatch-navy{background-color:#2e2737}.product .swatch.swatch-silver{background-color:#d4d2d3}.product .swatch.swatch-asphalt{background-color:#535059}.product .swatch.swatch-royalblue{background-color:#2a4db3}.product-sizes{transition:opacity .25s ease-in-out;position:absolute;top:6px;right:6px;border-radius:4px;background-color:#fff;font-size:21px;line-height:21px;padding:5px 10px;color:#b3b3b3;opacity:0.25}.product-title{height:52px}.product-cta{display:block;margin-top:40px;color:#333;text-decoration:none;border-radius:4px;padding:22px}.cta-content{margin-bottom:22px}.cta-fine-print{margin-top:22px}@media (min-width:1200px){#icon-carousel{font-size:240px;line-height:275px;margin-top:22px}.carousel-control{top:255px;width:40px;height:40px;font-size:40px;line-height:40px;left:133px}.carousel-control.right{right:133px}.jumbotron-ad{padding:50px 0}.jumbotron-ad h1{margin-top:25px;font-size:90px}.jumbotron-ad p{font-size:28px;margin:35px 0 20px}.jumbotron-carousel{padding:50px 0}.jumbotron-carousel h1{font-size:100px}.jumbotron-carousel p{font-size:32px;margin:20px 0}.jumbotron-carousel .btn-large{font-size:30px;padding:21px 35px}.stripe-ad .lead{padding-top:0}.lead{font-size:26px;line-height:36px}.fort-awesome .action{width:18%}.hide-lg{display:none}}@media (min-width:992px) and (max-width:1199px){.hide-md{display:none}}@media (min-width:768px) and (max-width:991px){#icon-carousel{font-size:200px;line-height:230px}.carousel-control{top:210px;width:30px;height:30px;left:78px}.carousel-control.right{right:78px}.jumbotron-carousel{padding:50px 0}.jumbotron-carousel h1{font-size:65px}.jumbotron-carousel p{font-size:23px}.jumbotron-carousel .shameless-self-promotion{font-size:12px}.jumbotron-ad p{font-size:24px}.jumbotron-icon h1 small{display:block;margin-top:15px;margin-left:0;line-height:20px}.stripe-ad .lead{margin:0;padding-top:0;font-size:19px}.fort-awesome .action{width:33%}.hide-sm{display:none}.v-get-started .get-started-cdn{padding:5px 22px 22px 22px}}@media (min-width:768px){.signup-input{padding-right:0}.signup-input input{border-top-right-radius:0;border-bottom-right-radius:0;border-right-width:0}.signup-button{padding-left:0}.signup-button .btn{border-top-left-radius:0;border-bottom-left-radius:0}}@media (max-width:767px){#icon-carousel{font-size:180px;line-height:210px;width:280px;margin:30px auto 0}.carousel-control{top:40%;width:44px;height:44px;font-size:44px;line-height:44px;left:-7px}.carousel-control.right{right:-7px}.jumbotron-carousel h1{font-size:58px}.jumbotron-carousel p{font-size:24px}.jumbotron-carousel .btn-large{font-size:20px;padding:14px 26px}.jumbotron-carousel .shameless-self-promotion{font-size:12px}.jumbotron-ad h1{font-size:39px}.jumbotron-ad p{font-size:20px;margin-bottom:20px}.jumbotron-icon .fa-1,.jumbotron-icon .fa-2,.jumbotron-icon .fa-3,.jumbotron-icon .fa-4,.jumbotron-icon .fa-5,.jumbotron-icon .fa-6{margin-right:0}.jumbotron-icon .fa-6{font-size:16em}.jumbotron-icon h1 small{display:block;margin-top:15px;margin-left:0;line-height:20px}.stripe-ad .lead{margin-top:22px;padding:0}#fusionads{float:none;display:block;margin-left:0}#fusionads:before,#fusionads:after{content:" ";display:table}#fusionads:after{clear:both}#fusionads:before,#fusionads:after{content:" ";display:table}#fusionads:after{clear:both}.vertical-ad #fusionads{width:300px}.vertical-ad #fusionads .fusion-img{float:left;padding-right:10px}.fonticons{padding:15px 0}.fonticons .tagline,.fonticons .action{display:block}.fonticons .tagline{margin-bottom:10px}.hide-xs{display:none}.block-xs{display:block}.modal-footer .block-xs+.block-xs{margin-left:0;margin-top:10px}.navbar-org{text-align:center}.navbar-org .container{padding:0}.navbar-org .navbar-nav{margin:0}.navbar-org .navbar-nav>li+li{margin-left:0}.navbar-org .nav>li{float:left;width:50%}.signup-button .btn{white-space:normal}.v-get-started .get-started-cdn{padding:5px 22px 22px 22px}} diff --git a/assets/font-awesome-4.6.2.zip b/assets/font-awesome-4.6.2.zip deleted file mode 100644 index 45579d089..000000000 Binary files a/assets/font-awesome-4.6.2.zip and /dev/null differ diff --git a/assets/font-awesome-4.6.3.zip b/assets/font-awesome-4.6.3.zip new file mode 100644 index 000000000..14927a337 Binary files /dev/null and b/assets/font-awesome-4.6.3.zip differ diff --git a/assets/font-awesome/css/font-awesome.css b/assets/font-awesome/css/font-awesome.css index 3638b7f95..a0b879fa0 100644 --- a/assets/font-awesome/css/font-awesome.css +++ b/assets/font-awesome/css/font-awesome.css @@ -1,13 +1,13 @@ /*! - * Font Awesome 4.6.2 by @davegandy - http://fontawesome.io - @fontawesome + * Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) */ /* FONT PATH * -------------------------- */ @font-face { font-family: 'FontAwesome'; - src: url('../fonts/fontawesome-webfont.eot?v=4.6.2'); - src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.6.2') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.6.2') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.6.2') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.6.2') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.6.2#fontawesomeregular') format('svg'); + src: url('../fonts/fontawesome-webfont.eot?v=4.6.3'); + src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.6.3') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.6.3') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.6.3') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.6.3') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.6.3#fontawesomeregular') format('svg'); font-weight: normal; font-style: normal; } @@ -2170,6 +2170,14 @@ .fa-themeisle:before { content: "\f2b2"; } +.fa-google-plus-circle:before, +.fa-google-plus-official:before { + content: "\f2b3"; +} +.fa-fa:before, +.fa-font-awesome:before { + content: "\f2b4"; +} .sr-only { position: absolute; width: 1px; diff --git a/assets/font-awesome/css/font-awesome.min.css b/assets/font-awesome/css/font-awesome.min.css index 9c3cf7424..9b27f8ea8 100644 --- a/assets/font-awesome/css/font-awesome.min.css +++ b/assets/font-awesome/css/font-awesome.min.css @@ -1,4 +1,4 @@ /*! - * Font Awesome 4.6.2 by @davegandy - http://fontawesome.io - @fontawesome + * Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) - */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.6.2');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.6.2') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.6.2') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.6.2') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.6.2') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.6.2#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.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} + */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.6.3');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.6.3') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.6.3') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.6.3') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.6.3') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.6.3#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.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} diff --git a/assets/font-awesome/fonts/FontAwesome.otf b/assets/font-awesome/fonts/FontAwesome.otf index 5e1fc3aaf..d4de13e83 100644 Binary files a/assets/font-awesome/fonts/FontAwesome.otf and b/assets/font-awesome/fonts/FontAwesome.otf differ diff --git a/assets/font-awesome/fonts/fontawesome-webfont.eot b/assets/font-awesome/fonts/fontawesome-webfont.eot index 4faa48604..c7b00d2ba 100644 Binary files a/assets/font-awesome/fonts/fontawesome-webfont.eot and b/assets/font-awesome/fonts/fontawesome-webfont.eot differ diff --git a/assets/font-awesome/fonts/fontawesome-webfont.svg b/assets/font-awesome/fonts/fontawesome-webfont.svg index d32830cb9..8b66187fe 100644 --- a/assets/font-awesome/fonts/fontawesome-webfont.svg +++ b/assets/font-awesome/fonts/fontawesome-webfont.svg @@ -59,17 +59,17 @@ - + - + - - + + @@ -78,9 +78,9 @@ - - - + + + @@ -100,15 +100,15 @@ - - - + + + - - - + + + @@ -134,10 +134,10 @@ - + - + @@ -146,7 +146,7 @@ - + @@ -157,10 +157,10 @@ - + - + @@ -171,11 +171,11 @@ - - + + - + @@ -187,14 +187,14 @@ - + - + @@ -211,8 +211,8 @@ - - + + @@ -256,7 +256,7 @@ - + @@ -296,13 +296,13 @@ - - + + - - + + @@ -318,12 +318,12 @@ - + - + @@ -333,7 +333,7 @@ - + @@ -356,14 +356,14 @@ - - + + - + @@ -374,11 +374,11 @@ - + - - + + @@ -389,27 +389,27 @@ - + - + - + - + - + @@ -421,14 +421,14 @@ - + - + - + @@ -441,8 +441,8 @@ - - + + @@ -452,7 +452,7 @@ - + @@ -476,17 +476,17 @@ - - + + - + - + - + @@ -498,7 +498,7 @@ - + @@ -509,19 +509,19 @@ - + - + - + @@ -536,7 +536,7 @@ - + @@ -557,7 +557,7 @@ - + @@ -589,7 +589,7 @@ - + @@ -604,14 +604,14 @@ - + - + @@ -626,7 +626,7 @@ - + @@ -648,7 +648,7 @@ - + @@ -657,10 +657,10 @@ - + - + @@ -668,8 +668,8 @@ - - + + diff --git a/assets/font-awesome/fonts/fontawesome-webfont.ttf b/assets/font-awesome/fonts/fontawesome-webfont.ttf index 9d02852c1..f221e50a2 100644 Binary files a/assets/font-awesome/fonts/fontawesome-webfont.ttf and b/assets/font-awesome/fonts/fontawesome-webfont.ttf differ diff --git a/assets/font-awesome/fonts/fontawesome-webfont.woff b/assets/font-awesome/fonts/fontawesome-webfont.woff index 1b92d42f9..6e7483cf6 100644 Binary files a/assets/font-awesome/fonts/fontawesome-webfont.woff and b/assets/font-awesome/fonts/fontawesome-webfont.woff differ diff --git a/assets/font-awesome/fonts/fontawesome-webfont.woff2 b/assets/font-awesome/fonts/fontawesome-webfont.woff2 index 88095c761..7eb74fd12 100644 Binary files a/assets/font-awesome/fonts/fontawesome-webfont.woff2 and b/assets/font-awesome/fonts/fontawesome-webfont.woff2 differ diff --git a/assets/font-awesome/less/font-awesome.less b/assets/font-awesome/less/font-awesome.less index b4722e7ac..c44e5f466 100644 --- a/assets/font-awesome/less/font-awesome.less +++ b/assets/font-awesome/less/font-awesome.less @@ -1,5 +1,5 @@ /*! - * Font Awesome 4.6.2 by @davegandy - http://fontawesome.io - @fontawesome + * Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) */ diff --git a/assets/font-awesome/less/icons.less b/assets/font-awesome/less/icons.less index e74a32cb7..ba21b222d 100644 --- a/assets/font-awesome/less/icons.less +++ b/assets/font-awesome/less/icons.less @@ -727,3 +727,7 @@ .@{fa-css-prefix}-first-order:before { content: @fa-var-first-order; } .@{fa-css-prefix}-yoast:before { content: @fa-var-yoast; } .@{fa-css-prefix}-themeisle:before { content: @fa-var-themeisle; } +.@{fa-css-prefix}-google-plus-circle:before, +.@{fa-css-prefix}-google-plus-official:before { content: @fa-var-google-plus-official; } +.@{fa-css-prefix}-fa:before, +.@{fa-css-prefix}-font-awesome:before { content: @fa-var-font-awesome; } diff --git a/assets/font-awesome/less/variables.less b/assets/font-awesome/less/variables.less index 9b29cc890..2b3381975 100644 --- a/assets/font-awesome/less/variables.less +++ b/assets/font-awesome/less/variables.less @@ -4,9 +4,9 @@ @fa-font-path: "../fonts"; @fa-font-size-base: 14px; @fa-line-height-base: 1; -//@fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.6.2/fonts"; // for referencing Bootstrap CDN font files directly +//@fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.6.3/fonts"; // for referencing Bootstrap CDN font files directly @fa-css-prefix: fa; -@fa-version: "4.6.2"; +@fa-version: "4.6.3"; @fa-border-color: #eee; @fa-inverse: #fff; @fa-li-width: (30em / 14); @@ -240,6 +240,7 @@ @fa-var-eye: "\f06e"; @fa-var-eye-slash: "\f070"; @fa-var-eyedropper: "\f1fb"; +@fa-var-fa: "\f2b4"; @fa-var-facebook: "\f09a"; @fa-var-facebook-f: "\f09a"; @fa-var-facebook-official: "\f230"; @@ -287,6 +288,7 @@ @fa-var-folder-open: "\f07c"; @fa-var-folder-open-o: "\f115"; @fa-var-font: "\f031"; +@fa-var-font-awesome: "\f2b4"; @fa-var-fonticons: "\f280"; @fa-var-fort-awesome: "\f286"; @fa-var-forumbee: "\f211"; @@ -318,6 +320,8 @@ @fa-var-globe: "\f0ac"; @fa-var-google: "\f1a0"; @fa-var-google-plus: "\f0d5"; +@fa-var-google-plus-circle: "\f2b3"; +@fa-var-google-plus-official: "\f2b3"; @fa-var-google-plus-square: "\f0d4"; @fa-var-google-wallet: "\f1ee"; @fa-var-graduation-cap: "\f19d"; diff --git a/assets/font-awesome/scss/_icons.scss b/assets/font-awesome/scss/_icons.scss index f03072582..294434435 100644 --- a/assets/font-awesome/scss/_icons.scss +++ b/assets/font-awesome/scss/_icons.scss @@ -727,3 +727,7 @@ .#{$fa-css-prefix}-first-order:before { content: $fa-var-first-order; } .#{$fa-css-prefix}-yoast:before { content: $fa-var-yoast; } .#{$fa-css-prefix}-themeisle:before { content: $fa-var-themeisle; } +.#{$fa-css-prefix}-google-plus-circle:before, +.#{$fa-css-prefix}-google-plus-official:before { content: $fa-var-google-plus-official; } +.#{$fa-css-prefix}-fa:before, +.#{$fa-css-prefix}-font-awesome:before { content: $fa-var-font-awesome; } diff --git a/assets/font-awesome/scss/_variables.scss b/assets/font-awesome/scss/_variables.scss index 6679c0994..a5a89ef97 100644 --- a/assets/font-awesome/scss/_variables.scss +++ b/assets/font-awesome/scss/_variables.scss @@ -4,9 +4,9 @@ $fa-font-path: "../fonts" !default; $fa-font-size-base: 14px !default; $fa-line-height-base: 1 !default; -//$fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.6.2/fonts" !default; // for referencing Bootstrap CDN font files directly +//$fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.6.3/fonts" !default; // for referencing Bootstrap CDN font files directly $fa-css-prefix: fa !default; -$fa-version: "4.6.2" !default; +$fa-version: "4.6.3" !default; $fa-border-color: #eee !default; $fa-inverse: #fff !default; $fa-li-width: (30em / 14) !default; @@ -240,6 +240,7 @@ $fa-var-external-link-square: "\f14c"; $fa-var-eye: "\f06e"; $fa-var-eye-slash: "\f070"; $fa-var-eyedropper: "\f1fb"; +$fa-var-fa: "\f2b4"; $fa-var-facebook: "\f09a"; $fa-var-facebook-f: "\f09a"; $fa-var-facebook-official: "\f230"; @@ -287,6 +288,7 @@ $fa-var-folder-o: "\f114"; $fa-var-folder-open: "\f07c"; $fa-var-folder-open-o: "\f115"; $fa-var-font: "\f031"; +$fa-var-font-awesome: "\f2b4"; $fa-var-fonticons: "\f280"; $fa-var-fort-awesome: "\f286"; $fa-var-forumbee: "\f211"; @@ -318,6 +320,8 @@ $fa-var-glide-g: "\f2a6"; $fa-var-globe: "\f0ac"; $fa-var-google: "\f1a0"; $fa-var-google-plus: "\f0d5"; +$fa-var-google-plus-circle: "\f2b3"; +$fa-var-google-plus-official: "\f2b3"; $fa-var-google-plus-square: "\f0d4"; $fa-var-google-wallet: "\f1ee"; $fa-var-graduation-cap: "\f19d"; diff --git a/assets/font-awesome/scss/font-awesome.scss b/assets/font-awesome/scss/font-awesome.scss index be8389ff9..2308b14ca 100644 --- a/assets/font-awesome/scss/font-awesome.scss +++ b/assets/font-awesome/scss/font-awesome.scss @@ -1,5 +1,5 @@ /*! - * Font Awesome 4.6.2 by @davegandy - http://fontawesome.io - @fontawesome + * Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) */ diff --git a/assets/less/site/bootstrap/navbar.less b/assets/less/site/bootstrap/navbar.less index 6c98885b8..32167270f 100644 --- a/assets/less/site/bootstrap/navbar.less +++ b/assets/less/site/bootstrap/navbar.less @@ -6,9 +6,10 @@ font-family: @font-family-serif; font-weight: 300; font-size: 20px; - .fas-flag-logo { + i { + font-size: 23px; padding-right: 3px; - vertical-align: baseline; + line-height: .75; } } .navbar-nav > li > a { padding: 11px 10px 9px; } diff --git a/assets/less/site/views.less b/assets/less/site/views.less index ae5d8f31d..f0cd3c993 100644 --- a/assets/less/site/views.less +++ b/assets/less/site/views.less @@ -1,6 +1,14 @@ // view-specific -.v-get-started, .v-store { + +// reset background +.v-get-started, +.v-store, +.v-accessibility { background: @alert-well-bg; // resetting for depth +} + +// get started +.v-get-started { .get-started-cdn { background: @section-emphasized-bg; @@ -24,3 +32,19 @@ font-size: (@font-size-large*1.5); } } + +// accessibility +.v-accessibility { + + .accessibility-cdn { + background: @section-emphasized-bg; + border-radius: @border-radius-base; + padding: @buffer-lg; + } + + .hr .hr-text { + background: @alert-well-bg; + font-family: @font-family-serif; + font-size: (@font-size-large*1.5); + } +} diff --git a/cdn/error/index.html b/cdn/error/index.html index c60a0f7bb..4c8693af2 100644 --- a/cdn/error/index.html +++ b/cdn/error/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/cdn/success/index.html b/cdn/success/index.html index 2b815d272..e39182b4e 100644 --- a/cdn/success/index.html +++ b/cdn/success/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/cheatsheet/index.html b/cheatsheet/index.html index fa2f62f2c..06e84e013 100644 --- a/cheatsheet/index.html +++ b/cheatsheet/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome @@ -238,7 +238,7 @@ - +
@@ -2076,6 +2076,14 @@ [&#xf1fb;]
+
+ 4.6 + + fa-fa + (alias) + [&#xf2b4;] +
+
@@ -2452,6 +2460,14 @@ [&#xf031;]
+
+ 4.6 + + fa-font-awesome + + [&#xf2b4;] +
+
4.4 @@ -2700,6 +2716,22 @@ [&#xf0d5;]
+
+ 4.6 + + fa-google-plus-circle + (alias) + [&#xf2b3;] +
+ +
+ 4.6 + + fa-google-plus-official + + [&#xf2b3;] +
+
@@ -3109,7 +3141,7 @@
- + 4.6 fa-instagram @@ -6072,7 +6104,7 @@
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/community/index.html b/community/index.html index 92549c02a..749b73594 100644 --- a/community/index.html +++ b/community/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/examples/index.html b/examples/index.html index 6bcd7f873..bbc474a14 100644 --- a/examples/index.html +++ b/examples/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome -
- -
-
-

-   normal
-   fa-rotate-90
-   fa-rotate-180
-   fa-rotate-270
-   fa-flip-horizontal
-   fa-flip-vertical -

-
-
-

- To arbitrarily rotate and flip icons, use the fa-rotate-* and fa-flip-* classes. -

-
<i class="fa fa-shield"></i> normal<br>
-<i class="fa fa-shield fa-rotate-90"></i> fa-rotate-90<br>
-<i class="fa fa-shield fa-rotate-180"></i> fa-rotate-180<br>
-<i class="fa fa-shield fa-rotate-270"></i> fa-rotate-270<br>
-<i class="fa fa-shield fa-flip-horizontal"></i> fa-flip-horizontal<br>
-<i class="fa fa-shield fa-flip-vertical"></i> fa-flip-vertical
-
-
-
-
- -
- -
-
-
- - fa-twitter on fa-square-o
- - fa-flag on fa-circle
- - fa-terminal on fa-square
- - fa-ban on fa-camera -
-
-
-

- To stack multiple icons, use the fa-stack class on the parent, the fa-stack-1x - for the regularly sized icon, and fa-stack-2x for the larger icon. fa-inverse - can be used as an alternative icon color. You can even throw larger icon classes on the parent - to get further control of sizing. -

-
<span class="fa-stack fa-lg">
-  <i class="fa fa-square-o fa-stack-2x"></i>
-  <i class="fa fa-twitter fa-stack-1x"></i>
-</span>
-fa-twitter on fa-square-o<br>
-<span class="fa-stack fa-lg">
-  <i class="fa fa-circle fa-stack-2x"></i>
-  <i class="fa fa-flag fa-stack-1x fa-inverse"></i>
-</span>
-fa-flag on fa-circle<br>
-<span class="fa-stack fa-lg">
-  <i class="fa fa-square fa-stack-2x"></i>
-  <i class="fa fa-terminal fa-stack-1x fa-inverse"></i>
-</span>
-fa-terminal on fa-square<br>
-<span class="fa-stack fa-lg">
-  <i class="fa fa-camera fa-stack-1x"></i>
-  <i class="fa fa-ban fa-stack-2x text-danger"></i>
-</span>
-fa-ban on fa-camera
-
-
-
-
- -
- -
-
-

- - Delete - - Settings -

-

- - Font Awesome
Version 4.6.2
-

- -
-
- - -
-
- - -
-
- - -
-
-

- Font Awesome works great with the full range of Bootstrap components. -

-
<a class="btn btn-danger" href="#">
-  <i class="fa fa-trash-o fa-lg" aria-hidden="true"></i> Delete</a>
-<a class="btn btn-default btn-sm" href="#">
-  <i class="fa fa-cog" aria-hidden="true"></i> Settings</a>
-
-<a class="btn btn-lg btn-success" href="#">
-  <i class="fa fa-flag fa-2x pull-left" aria-hidden="true"></i> Font Awesome<br>Version 4.6.2</a>
-
-<div class="btn-group">
-  <a class="btn btn-default" href="#">
-    <i class="fa fa-align-left" title="Align Left"></i>
-  </a>
-  <a class="btn btn-default" href="#">
-    <i class="fa fa-align-center" title="Align Center"></i>
-  </a>
-  <a class="btn btn-default" href="#">
-    <i class="fa fa-align-right" title="Align Right"></i>
-  </a>
-  <a class="btn btn-default" href="#">
-    <i class="fa fa-align-justify" title="Align Justify"></i>
-  </a>
-</div>
-
-<div class="input-group margin-bottom-sm">
-  <span class="input-group-addon"><i class="fa fa-envelope-o fa-fw"></i></span>
-  <input class="form-control" type="text" placeholder="Email address">
-</div>
-<div class="input-group">
-  <span class="input-group-addon"><i class="fa fa-key fa-fw"></i></span>
-  <input class="form-control" type="password" placeholder="Password">
-</div>
-
-<div class="btn-group open">
-  <a class="btn btn-primary" href="#"><i class="fa fa-user fa-fw"></i> User</a>
-  <a class="btn btn-primary dropdown-toggle" data-toggle="dropdown" href="#">
-    <span class="fa fa-caret-down" title="Toggle dropdown menu"></span>
-  </a>
-  <ul class="dropdown-menu">
-    <li><a href="#"><i class="fa fa-pencil fa-fw" aria-hidden="true"></i> Edit</a></li>
-    <li><a href="#"><i class="fa fa-trash-o fa-fw" aria-hidden="true"></i> Delete</a></li>
-    <li><a href="#"><i class="fa fa-ban fa-fw" aria-hidden="true"></i> Ban</a></li>
-    <li class="divider"></li>
-    <li><a href="#"><i class="fa fa-unlock" aria-hidden="true"></i> Make admin</a></li>
-  </ul>
-</div>
-
-
-
-
- -
- -
-
-

Anything you can do with CSS font styles, you can do with Font Awesome.

-
-
-

Star Ratings (inspired by CSS Tricks)

-
- - - -
-
-
-
- @@ -823,7 +832,7 @@ fa-ban on fa-camera
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/get-started/index.html b/get-started/index.html index 082994ed5..bdeb63e0e 100644 --- a/get-started/index.html +++ b/get-started/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome @@ -234,7 +234,7 @@

Icons on your site. Fast.

-

Don't mess with files locally or in production. You'll get all of Font Awesome's 632 icons plus CSS toolkit - all optimized for speed and no hassle.

+

Don't mess with files locally or in production. You'll get all of Font Awesome's 634 icons plus CSS toolkit - all optimized for speed and no hassle.

@@ -298,7 +298,7 @@

Using Sass or Less

-

Use this method to customize Font Awesome 4.6.2 using LESS or SASS.

+

Use this method to customize Font Awesome 4.6.3 using LESS or SASS.

  1. Copy the font-awesome/ directory into your project.
  2. @@ -476,7 +476,7 @@

      Fort Awesome

    or
    - No thanks, just download
    Font Awesome
    @@ -504,7 +504,7 @@
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/500px/index.html b/icon/500px/index.html index 10bf7395c..463e57889 100644 --- a/icon/500px/index.html +++ b/icon/500px/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/adjust/index.html b/icon/adjust/index.html index 19e75751b..c6a3ca9f3 100644 --- a/icon/adjust/index.html +++ b/icon/adjust/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/adn/index.html b/icon/adn/index.html index bb8a5c08b..25ec48c59 100644 --- a/icon/adn/index.html +++ b/icon/adn/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/align-center/index.html b/icon/align-center/index.html index 4a4bd1daf..e3ee092dd 100644 --- a/icon/align-center/index.html +++ b/icon/align-center/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/align-justify/index.html b/icon/align-justify/index.html index 5df16a040..f5b6b6b11 100644 --- a/icon/align-justify/index.html +++ b/icon/align-justify/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/align-left/index.html b/icon/align-left/index.html index 3fe17568f..154b76f2a 100644 --- a/icon/align-left/index.html +++ b/icon/align-left/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/align-right/index.html b/icon/align-right/index.html index c1909d5fe..ac7f34bd0 100644 --- a/icon/align-right/index.html +++ b/icon/align-right/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/amazon/index.html b/icon/amazon/index.html index be62167ae..add342eed 100644 --- a/icon/amazon/index.html +++ b/icon/amazon/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/ambulance/index.html b/icon/ambulance/index.html index fae64cf3c..5b7dd1a85 100644 --- a/icon/ambulance/index.html +++ b/icon/ambulance/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/american-sign-language-interpreting/index.html b/icon/american-sign-language-interpreting/index.html index 1356e454c..c573ec72e 100644 --- a/icon/american-sign-language-interpreting/index.html +++ b/icon/american-sign-language-interpreting/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/anchor/index.html b/icon/anchor/index.html index 29b10a8d2..78396122e 100644 --- a/icon/anchor/index.html +++ b/icon/anchor/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/android/index.html b/icon/android/index.html index 6330a8158..d136fda8f 100644 --- a/icon/android/index.html +++ b/icon/android/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/angellist/index.html b/icon/angellist/index.html index e02f163e9..a418b6527 100644 --- a/icon/angellist/index.html +++ b/icon/angellist/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/angle-double-down/index.html b/icon/angle-double-down/index.html index ed0bdcbfe..bb43a94bc 100644 --- a/icon/angle-double-down/index.html +++ b/icon/angle-double-down/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/angle-double-left/index.html b/icon/angle-double-left/index.html index 2cf8efdc7..ca18b55d1 100644 --- a/icon/angle-double-left/index.html +++ b/icon/angle-double-left/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/angle-double-right/index.html b/icon/angle-double-right/index.html index fd55b5691..317aede17 100644 --- a/icon/angle-double-right/index.html +++ b/icon/angle-double-right/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/angle-double-up/index.html b/icon/angle-double-up/index.html index dd1a53265..ea184a5dd 100644 --- a/icon/angle-double-up/index.html +++ b/icon/angle-double-up/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/angle-down/index.html b/icon/angle-down/index.html index 6b8728689..62514e5c9 100644 --- a/icon/angle-down/index.html +++ b/icon/angle-down/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/angle-left/index.html b/icon/angle-left/index.html index 82cacf166..ebaa730a3 100644 --- a/icon/angle-left/index.html +++ b/icon/angle-left/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/angle-right/index.html b/icon/angle-right/index.html index 4d3beea68..8f60b9d51 100644 --- a/icon/angle-right/index.html +++ b/icon/angle-right/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/angle-up/index.html b/icon/angle-up/index.html index 375bee74c..330af7346 100644 --- a/icon/angle-up/index.html +++ b/icon/angle-up/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/apple/index.html b/icon/apple/index.html index 97f3abb6e..139fff9ac 100644 --- a/icon/apple/index.html +++ b/icon/apple/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/archive/index.html b/icon/archive/index.html index 5293d2ffc..ba1175b98 100644 --- a/icon/archive/index.html +++ b/icon/archive/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/area-chart/index.html b/icon/area-chart/index.html index 94dff5d79..c179ddbdc 100644 --- a/icon/area-chart/index.html +++ b/icon/area-chart/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/arrow-circle-down/index.html b/icon/arrow-circle-down/index.html index fb2332422..98be83a63 100644 --- a/icon/arrow-circle-down/index.html +++ b/icon/arrow-circle-down/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/arrow-circle-left/index.html b/icon/arrow-circle-left/index.html index 4a6d5d072..4c7f08e22 100644 --- a/icon/arrow-circle-left/index.html +++ b/icon/arrow-circle-left/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/arrow-circle-o-down/index.html b/icon/arrow-circle-o-down/index.html index ef050db73..e59409ac0 100644 --- a/icon/arrow-circle-o-down/index.html +++ b/icon/arrow-circle-o-down/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/arrow-circle-o-left/index.html b/icon/arrow-circle-o-left/index.html index 707d8981f..757a107bf 100644 --- a/icon/arrow-circle-o-left/index.html +++ b/icon/arrow-circle-o-left/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/arrow-circle-o-right/index.html b/icon/arrow-circle-o-right/index.html index 2317e2dd0..bddbaccb3 100644 --- a/icon/arrow-circle-o-right/index.html +++ b/icon/arrow-circle-o-right/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/arrow-circle-o-up/index.html b/icon/arrow-circle-o-up/index.html index fb5aa043c..4f02910ca 100644 --- a/icon/arrow-circle-o-up/index.html +++ b/icon/arrow-circle-o-up/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/arrow-circle-right/index.html b/icon/arrow-circle-right/index.html index 2b9a120c0..c13d3671d 100644 --- a/icon/arrow-circle-right/index.html +++ b/icon/arrow-circle-right/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/arrow-circle-up/index.html b/icon/arrow-circle-up/index.html index 0050610f6..248b5476b 100644 --- a/icon/arrow-circle-up/index.html +++ b/icon/arrow-circle-up/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/arrow-down/index.html b/icon/arrow-down/index.html index 80ad8fde8..7ad55db5f 100644 --- a/icon/arrow-down/index.html +++ b/icon/arrow-down/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/arrow-left/index.html b/icon/arrow-left/index.html index 5f7ef048b..1b403baae 100644 --- a/icon/arrow-left/index.html +++ b/icon/arrow-left/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/arrow-right/index.html b/icon/arrow-right/index.html index 65fb6ae12..5fc07f12c 100644 --- a/icon/arrow-right/index.html +++ b/icon/arrow-right/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/arrow-up/index.html b/icon/arrow-up/index.html index 0832a86ba..cd529fca9 100644 --- a/icon/arrow-up/index.html +++ b/icon/arrow-up/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/arrows-alt/index.html b/icon/arrows-alt/index.html index cf270cfe5..7ceed86ce 100644 --- a/icon/arrows-alt/index.html +++ b/icon/arrows-alt/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/arrows-h/index.html b/icon/arrows-h/index.html index f33b9a63d..eebf5826f 100644 --- a/icon/arrows-h/index.html +++ b/icon/arrows-h/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/arrows-v/index.html b/icon/arrows-v/index.html index 625d16b72..86d8ea122 100644 --- a/icon/arrows-v/index.html +++ b/icon/arrows-v/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/arrows/index.html b/icon/arrows/index.html index e8c1ef3ad..82855bdf8 100644 --- a/icon/arrows/index.html +++ b/icon/arrows/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/assistive-listening-systems/index.html b/icon/assistive-listening-systems/index.html index 851c0d58c..4eca86641 100644 --- a/icon/assistive-listening-systems/index.html +++ b/icon/assistive-listening-systems/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/asterisk/index.html b/icon/asterisk/index.html index e9bd89339..616775378 100644 --- a/icon/asterisk/index.html +++ b/icon/asterisk/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/at/index.html b/icon/at/index.html index a91926a6d..1b94883c2 100644 --- a/icon/at/index.html +++ b/icon/at/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/audio-description/index.html b/icon/audio-description/index.html index a27e0308f..c4c01afbb 100644 --- a/icon/audio-description/index.html +++ b/icon/audio-description/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/backward/index.html b/icon/backward/index.html index f248e4a57..6bcb647e0 100644 --- a/icon/backward/index.html +++ b/icon/backward/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/balance-scale/index.html b/icon/balance-scale/index.html index abafc71af..26db7500f 100644 --- a/icon/balance-scale/index.html +++ b/icon/balance-scale/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/ban/index.html b/icon/ban/index.html index 0a15db4be..b566013c1 100644 --- a/icon/ban/index.html +++ b/icon/ban/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/bar-chart/index.html b/icon/bar-chart/index.html index 20a2f7308..a4d2493a5 100644 --- a/icon/bar-chart/index.html +++ b/icon/bar-chart/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/barcode/index.html b/icon/barcode/index.html index 88b436e67..d0cc92082 100644 --- a/icon/barcode/index.html +++ b/icon/barcode/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/bars/index.html b/icon/bars/index.html index f4917c438..3ce6d7b32 100644 --- a/icon/bars/index.html +++ b/icon/bars/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/battery-empty/index.html b/icon/battery-empty/index.html index 20ad5bcfb..95db1dca2 100644 --- a/icon/battery-empty/index.html +++ b/icon/battery-empty/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/battery-full/index.html b/icon/battery-full/index.html index 8ad7f6efe..57aa6aa7c 100644 --- a/icon/battery-full/index.html +++ b/icon/battery-full/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/battery-half/index.html b/icon/battery-half/index.html index 1db6d1661..79fc908df 100644 --- a/icon/battery-half/index.html +++ b/icon/battery-half/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/battery-quarter/index.html b/icon/battery-quarter/index.html index 2e83c1385..eb188f0ce 100644 --- a/icon/battery-quarter/index.html +++ b/icon/battery-quarter/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/battery-three-quarters/index.html b/icon/battery-three-quarters/index.html index 253ddd1b5..bcc683543 100644 --- a/icon/battery-three-quarters/index.html +++ b/icon/battery-three-quarters/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/bed/index.html b/icon/bed/index.html index 2dbf02763..7631c9a54 100644 --- a/icon/bed/index.html +++ b/icon/bed/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/beer/index.html b/icon/beer/index.html index 54be0efea..1cdce0435 100644 --- a/icon/beer/index.html +++ b/icon/beer/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/behance-square/index.html b/icon/behance-square/index.html index c6dcb4066..282e7dd24 100644 --- a/icon/behance-square/index.html +++ b/icon/behance-square/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/behance/index.html b/icon/behance/index.html index b52dcb07f..79c548053 100644 --- a/icon/behance/index.html +++ b/icon/behance/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/bell-o/index.html b/icon/bell-o/index.html index ff57cdba4..ceb24bdf2 100644 --- a/icon/bell-o/index.html +++ b/icon/bell-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/bell-slash-o/index.html b/icon/bell-slash-o/index.html index d44510619..c59ed492e 100644 --- a/icon/bell-slash-o/index.html +++ b/icon/bell-slash-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/bell-slash/index.html b/icon/bell-slash/index.html index f989f56d4..5599000b7 100644 --- a/icon/bell-slash/index.html +++ b/icon/bell-slash/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/bell/index.html b/icon/bell/index.html index ebf8fab12..e9ed666de 100644 --- a/icon/bell/index.html +++ b/icon/bell/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/bicycle/index.html b/icon/bicycle/index.html index 2ff7e4e54..54806f66c 100644 --- a/icon/bicycle/index.html +++ b/icon/bicycle/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/binoculars/index.html b/icon/binoculars/index.html index d493f0535..18060a41f 100644 --- a/icon/binoculars/index.html +++ b/icon/binoculars/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/birthday-cake/index.html b/icon/birthday-cake/index.html index fc0910676..61a4d3ab0 100644 --- a/icon/birthday-cake/index.html +++ b/icon/birthday-cake/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/bitbucket-square/index.html b/icon/bitbucket-square/index.html index 0ea3d1bff..9036b343d 100644 --- a/icon/bitbucket-square/index.html +++ b/icon/bitbucket-square/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/bitbucket/index.html b/icon/bitbucket/index.html index a3572eba7..115bd9e13 100644 --- a/icon/bitbucket/index.html +++ b/icon/bitbucket/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/black-tie/index.html b/icon/black-tie/index.html index ffa3fba1d..ed6d91b3f 100644 --- a/icon/black-tie/index.html +++ b/icon/black-tie/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/blind/index.html b/icon/blind/index.html index c6c0fb857..71e80bff8 100644 --- a/icon/blind/index.html +++ b/icon/blind/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/bluetooth-b/index.html b/icon/bluetooth-b/index.html index 35235f0c5..6a6ac0c2c 100644 --- a/icon/bluetooth-b/index.html +++ b/icon/bluetooth-b/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/bluetooth/index.html b/icon/bluetooth/index.html index 570dc5d99..51b534583 100644 --- a/icon/bluetooth/index.html +++ b/icon/bluetooth/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/bold/index.html b/icon/bold/index.html index 15d8b98b0..b627cfa4c 100644 --- a/icon/bold/index.html +++ b/icon/bold/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/bolt/index.html b/icon/bolt/index.html index cb70bc4c3..8def13228 100644 --- a/icon/bolt/index.html +++ b/icon/bolt/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/bomb/index.html b/icon/bomb/index.html index 407996ae2..2e97b5cf5 100644 --- a/icon/bomb/index.html +++ b/icon/bomb/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/book/index.html b/icon/book/index.html index a40759604..b20a2b45e 100644 --- a/icon/book/index.html +++ b/icon/book/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/bookmark-o/index.html b/icon/bookmark-o/index.html index eea1ef0ad..ad28db679 100644 --- a/icon/bookmark-o/index.html +++ b/icon/bookmark-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/bookmark/index.html b/icon/bookmark/index.html index 866668128..1e8255ef1 100644 --- a/icon/bookmark/index.html +++ b/icon/bookmark/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/braille/index.html b/icon/braille/index.html index 6751dd250..45e8886d6 100644 --- a/icon/braille/index.html +++ b/icon/braille/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/briefcase/index.html b/icon/briefcase/index.html index 0cb6d9a99..da0677d54 100644 --- a/icon/briefcase/index.html +++ b/icon/briefcase/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/btc/index.html b/icon/btc/index.html index d740fec51..ed4902484 100644 --- a/icon/btc/index.html +++ b/icon/btc/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/bug/index.html b/icon/bug/index.html index f8c0cecf5..888564fc8 100644 --- a/icon/bug/index.html +++ b/icon/bug/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/building-o/index.html b/icon/building-o/index.html index 1c2e5c434..18af571e3 100644 --- a/icon/building-o/index.html +++ b/icon/building-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/building/index.html b/icon/building/index.html index 55649b1b5..e57404a5d 100644 --- a/icon/building/index.html +++ b/icon/building/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/bullhorn/index.html b/icon/bullhorn/index.html index acdc2db69..3ec8cb46f 100644 --- a/icon/bullhorn/index.html +++ b/icon/bullhorn/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/bullseye/index.html b/icon/bullseye/index.html index e4f3f73c8..284c93f9b 100644 --- a/icon/bullseye/index.html +++ b/icon/bullseye/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/bus/index.html b/icon/bus/index.html index 5b5fcde5f..f02d7bc30 100644 --- a/icon/bus/index.html +++ b/icon/bus/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/buysellads/index.html b/icon/buysellads/index.html index 63f50b08d..66b43d89e 100644 --- a/icon/buysellads/index.html +++ b/icon/buysellads/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/calculator/index.html b/icon/calculator/index.html index 3a791f6ed..7f0af9516 100644 --- a/icon/calculator/index.html +++ b/icon/calculator/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/calendar-check-o/index.html b/icon/calendar-check-o/index.html index 2c78f86b1..b5bf81d0a 100644 --- a/icon/calendar-check-o/index.html +++ b/icon/calendar-check-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/calendar-minus-o/index.html b/icon/calendar-minus-o/index.html index 2a3d2276b..3b8d0e64f 100644 --- a/icon/calendar-minus-o/index.html +++ b/icon/calendar-minus-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/calendar-o/index.html b/icon/calendar-o/index.html index 90139291a..6950cc10d 100644 --- a/icon/calendar-o/index.html +++ b/icon/calendar-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/calendar-plus-o/index.html b/icon/calendar-plus-o/index.html index 43e9c2446..5c0896282 100644 --- a/icon/calendar-plus-o/index.html +++ b/icon/calendar-plus-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/calendar-times-o/index.html b/icon/calendar-times-o/index.html index 5b321f032..2846f8fc0 100644 --- a/icon/calendar-times-o/index.html +++ b/icon/calendar-times-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/calendar/index.html b/icon/calendar/index.html index 19cbd0a47..c480a3bcd 100644 --- a/icon/calendar/index.html +++ b/icon/calendar/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/camera-retro/index.html b/icon/camera-retro/index.html index 5ea4abc1a..1b754f3a4 100644 --- a/icon/camera-retro/index.html +++ b/icon/camera-retro/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/camera/index.html b/icon/camera/index.html index 6d5d6e4a1..89f9b5523 100644 --- a/icon/camera/index.html +++ b/icon/camera/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/car/index.html b/icon/car/index.html index f69f2ece8..44984302c 100644 --- a/icon/car/index.html +++ b/icon/car/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/caret-down/index.html b/icon/caret-down/index.html index 992fb5e25..561ac3061 100644 --- a/icon/caret-down/index.html +++ b/icon/caret-down/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/caret-left/index.html b/icon/caret-left/index.html index 8864e26a9..0b6183a93 100644 --- a/icon/caret-left/index.html +++ b/icon/caret-left/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/caret-right/index.html b/icon/caret-right/index.html index c30a17e83..6f8b44e02 100644 --- a/icon/caret-right/index.html +++ b/icon/caret-right/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/caret-square-o-down/index.html b/icon/caret-square-o-down/index.html index 858a23592..a9727a156 100644 --- a/icon/caret-square-o-down/index.html +++ b/icon/caret-square-o-down/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/caret-square-o-left/index.html b/icon/caret-square-o-left/index.html index d370357c3..eb819cba0 100644 --- a/icon/caret-square-o-left/index.html +++ b/icon/caret-square-o-left/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/caret-square-o-right/index.html b/icon/caret-square-o-right/index.html index af29dc841..916cc2686 100644 --- a/icon/caret-square-o-right/index.html +++ b/icon/caret-square-o-right/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/caret-square-o-up/index.html b/icon/caret-square-o-up/index.html index 360252e10..89fd25298 100644 --- a/icon/caret-square-o-up/index.html +++ b/icon/caret-square-o-up/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/caret-up/index.html b/icon/caret-up/index.html index da6f554ac..a893e7415 100644 --- a/icon/caret-up/index.html +++ b/icon/caret-up/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/cart-arrow-down/index.html b/icon/cart-arrow-down/index.html index c91309b07..692bbfa61 100644 --- a/icon/cart-arrow-down/index.html +++ b/icon/cart-arrow-down/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/cart-plus/index.html b/icon/cart-plus/index.html index 45b2fa2a0..5359dfd35 100644 --- a/icon/cart-plus/index.html +++ b/icon/cart-plus/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/cc-amex/index.html b/icon/cc-amex/index.html index 10343af36..807120fbe 100644 --- a/icon/cc-amex/index.html +++ b/icon/cc-amex/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/cc-diners-club/index.html b/icon/cc-diners-club/index.html index 0e1020e20..91d2a4ffc 100644 --- a/icon/cc-diners-club/index.html +++ b/icon/cc-diners-club/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/cc-discover/index.html b/icon/cc-discover/index.html index 9c82bf470..6b4ed7d73 100644 --- a/icon/cc-discover/index.html +++ b/icon/cc-discover/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/cc-jcb/index.html b/icon/cc-jcb/index.html index 1bbfa7337..1750de4f1 100644 --- a/icon/cc-jcb/index.html +++ b/icon/cc-jcb/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/cc-mastercard/index.html b/icon/cc-mastercard/index.html index 5078ff793..b562bba97 100644 --- a/icon/cc-mastercard/index.html +++ b/icon/cc-mastercard/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/cc-paypal/index.html b/icon/cc-paypal/index.html index a46e241ea..94bd1d193 100644 --- a/icon/cc-paypal/index.html +++ b/icon/cc-paypal/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/cc-stripe/index.html b/icon/cc-stripe/index.html index 273f04715..be7b0e34e 100644 --- a/icon/cc-stripe/index.html +++ b/icon/cc-stripe/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/cc-visa/index.html b/icon/cc-visa/index.html index a18e847dc..6589b6920 100644 --- a/icon/cc-visa/index.html +++ b/icon/cc-visa/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/cc/index.html b/icon/cc/index.html index 8e6991ea4..25fd326e6 100644 --- a/icon/cc/index.html +++ b/icon/cc/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/certificate/index.html b/icon/certificate/index.html index 0591eb575..a49b677ab 100644 --- a/icon/certificate/index.html +++ b/icon/certificate/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/chain-broken/index.html b/icon/chain-broken/index.html index 22b73056c..6ca2a72eb 100644 --- a/icon/chain-broken/index.html +++ b/icon/chain-broken/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/check-circle-o/index.html b/icon/check-circle-o/index.html index 62a9ed5df..492c4f687 100644 --- a/icon/check-circle-o/index.html +++ b/icon/check-circle-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/check-circle/index.html b/icon/check-circle/index.html index 9bf084959..c4f2b3950 100644 --- a/icon/check-circle/index.html +++ b/icon/check-circle/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/check-square-o/index.html b/icon/check-square-o/index.html index 170fd0190..2c68f34ec 100644 --- a/icon/check-square-o/index.html +++ b/icon/check-square-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/check-square/index.html b/icon/check-square/index.html index 985097154..fc11acea8 100644 --- a/icon/check-square/index.html +++ b/icon/check-square/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/check/index.html b/icon/check/index.html index ffad19819..6c01ef686 100644 --- a/icon/check/index.html +++ b/icon/check/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/chevron-circle-down/index.html b/icon/chevron-circle-down/index.html index 93bf89e37..5be0fe871 100644 --- a/icon/chevron-circle-down/index.html +++ b/icon/chevron-circle-down/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/chevron-circle-left/index.html b/icon/chevron-circle-left/index.html index 1b4947de8..386264ae8 100644 --- a/icon/chevron-circle-left/index.html +++ b/icon/chevron-circle-left/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/chevron-circle-right/index.html b/icon/chevron-circle-right/index.html index 025cdddd9..b51d0936c 100644 --- a/icon/chevron-circle-right/index.html +++ b/icon/chevron-circle-right/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/chevron-circle-up/index.html b/icon/chevron-circle-up/index.html index fc2f8bee8..5123b68eb 100644 --- a/icon/chevron-circle-up/index.html +++ b/icon/chevron-circle-up/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/chevron-down/index.html b/icon/chevron-down/index.html index 28fdcb5c6..ac41355cd 100644 --- a/icon/chevron-down/index.html +++ b/icon/chevron-down/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/chevron-left/index.html b/icon/chevron-left/index.html index 0a0ada740..8655f1d72 100644 --- a/icon/chevron-left/index.html +++ b/icon/chevron-left/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/chevron-right/index.html b/icon/chevron-right/index.html index 107716998..a441146c8 100644 --- a/icon/chevron-right/index.html +++ b/icon/chevron-right/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/chevron-up/index.html b/icon/chevron-up/index.html index a48fb8e2e..4313a8311 100644 --- a/icon/chevron-up/index.html +++ b/icon/chevron-up/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/child/index.html b/icon/child/index.html index 12bada5d4..938653086 100644 --- a/icon/child/index.html +++ b/icon/child/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/chrome/index.html b/icon/chrome/index.html index 64a8d7dae..4388ea7cf 100644 --- a/icon/chrome/index.html +++ b/icon/chrome/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/circle-o-notch/index.html b/icon/circle-o-notch/index.html index 94992b94d..63cdd148e 100644 --- a/icon/circle-o-notch/index.html +++ b/icon/circle-o-notch/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/circle-o/index.html b/icon/circle-o/index.html index 7a1098d4f..0058022bc 100644 --- a/icon/circle-o/index.html +++ b/icon/circle-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/circle-thin/index.html b/icon/circle-thin/index.html index 9fc35226c..c3d0bee2f 100644 --- a/icon/circle-thin/index.html +++ b/icon/circle-thin/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/circle/index.html b/icon/circle/index.html index d21ddbdf9..50f4e5177 100644 --- a/icon/circle/index.html +++ b/icon/circle/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/clipboard/index.html b/icon/clipboard/index.html index cf09e7a14..f13ee5f48 100644 --- a/icon/clipboard/index.html +++ b/icon/clipboard/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/clock-o/index.html b/icon/clock-o/index.html index 578138554..8e72b443a 100644 --- a/icon/clock-o/index.html +++ b/icon/clock-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/clone/index.html b/icon/clone/index.html index 3dfe67d22..15773ed6d 100644 --- a/icon/clone/index.html +++ b/icon/clone/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/cloud-download/index.html b/icon/cloud-download/index.html index 9ae227bdf..c7531f33c 100644 --- a/icon/cloud-download/index.html +++ b/icon/cloud-download/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/cloud-upload/index.html b/icon/cloud-upload/index.html index 5350bf9ed..cf55c2f57 100644 --- a/icon/cloud-upload/index.html +++ b/icon/cloud-upload/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/cloud/index.html b/icon/cloud/index.html index cd650bc53..41e424132 100644 --- a/icon/cloud/index.html +++ b/icon/cloud/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/code-fork/index.html b/icon/code-fork/index.html index 36c4d8d20..26a31adee 100644 --- a/icon/code-fork/index.html +++ b/icon/code-fork/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/code/index.html b/icon/code/index.html index 19a7b82f8..5e1d1011b 100644 --- a/icon/code/index.html +++ b/icon/code/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/codepen/index.html b/icon/codepen/index.html index 7395ef286..337f02693 100644 --- a/icon/codepen/index.html +++ b/icon/codepen/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/codiepie/index.html b/icon/codiepie/index.html index d723a498c..2227cf3b2 100644 --- a/icon/codiepie/index.html +++ b/icon/codiepie/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/coffee/index.html b/icon/coffee/index.html index 1c47b07fc..81130b3bb 100644 --- a/icon/coffee/index.html +++ b/icon/coffee/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/cog/index.html b/icon/cog/index.html index b03f80872..3f476a45e 100644 --- a/icon/cog/index.html +++ b/icon/cog/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/cogs/index.html b/icon/cogs/index.html index a23a36dda..8fd9968df 100644 --- a/icon/cogs/index.html +++ b/icon/cogs/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/columns/index.html b/icon/columns/index.html index 7b34ed1a2..a3c49a4fc 100644 --- a/icon/columns/index.html +++ b/icon/columns/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/comment-o/index.html b/icon/comment-o/index.html index 5effa5143..4d1fb3793 100644 --- a/icon/comment-o/index.html +++ b/icon/comment-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/comment/index.html b/icon/comment/index.html index 76223e06b..2bafa171a 100644 --- a/icon/comment/index.html +++ b/icon/comment/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/commenting-o/index.html b/icon/commenting-o/index.html index aacec49ee..ffc8dbf6f 100644 --- a/icon/commenting-o/index.html +++ b/icon/commenting-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/commenting/index.html b/icon/commenting/index.html index bb6f74bbf..4b0719d6a 100644 --- a/icon/commenting/index.html +++ b/icon/commenting/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/comments-o/index.html b/icon/comments-o/index.html index 9a4a936c7..3ffdacb4b 100644 --- a/icon/comments-o/index.html +++ b/icon/comments-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/comments/index.html b/icon/comments/index.html index 6d22a3154..a5bbe579d 100644 --- a/icon/comments/index.html +++ b/icon/comments/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/compass/index.html b/icon/compass/index.html index 531a90cca..5498f4b22 100644 --- a/icon/compass/index.html +++ b/icon/compass/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/compress/index.html b/icon/compress/index.html index 5fc7b1c1c..05c57d24e 100644 --- a/icon/compress/index.html +++ b/icon/compress/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/connectdevelop/index.html b/icon/connectdevelop/index.html index e12098bbd..3da113d9b 100644 --- a/icon/connectdevelop/index.html +++ b/icon/connectdevelop/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/contao/index.html b/icon/contao/index.html index a2ea8e774..99240b485 100644 --- a/icon/contao/index.html +++ b/icon/contao/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/copyright/index.html b/icon/copyright/index.html index 2998c647a..1a9800d55 100644 --- a/icon/copyright/index.html +++ b/icon/copyright/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/creative-commons/index.html b/icon/creative-commons/index.html index 92a5d14e0..71d70a67d 100644 --- a/icon/creative-commons/index.html +++ b/icon/creative-commons/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/credit-card-alt/index.html b/icon/credit-card-alt/index.html index 67159a546..de1166045 100644 --- a/icon/credit-card-alt/index.html +++ b/icon/credit-card-alt/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/credit-card/index.html b/icon/credit-card/index.html index 56b930d75..e6e14cb61 100644 --- a/icon/credit-card/index.html +++ b/icon/credit-card/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/crop/index.html b/icon/crop/index.html index 2af7264d5..f721277bb 100644 --- a/icon/crop/index.html +++ b/icon/crop/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/crosshairs/index.html b/icon/crosshairs/index.html index 3895d5d4b..a088249d5 100644 --- a/icon/crosshairs/index.html +++ b/icon/crosshairs/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/css3/index.html b/icon/css3/index.html index 6da0603af..d9bb936fe 100644 --- a/icon/css3/index.html +++ b/icon/css3/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/cube/index.html b/icon/cube/index.html index 030e2e03b..bcc8f3230 100644 --- a/icon/cube/index.html +++ b/icon/cube/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/cubes/index.html b/icon/cubes/index.html index 1159675b3..61a229002 100644 --- a/icon/cubes/index.html +++ b/icon/cubes/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/cutlery/index.html b/icon/cutlery/index.html index 3d2074f30..944cb94c8 100644 --- a/icon/cutlery/index.html +++ b/icon/cutlery/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/dashcube/index.html b/icon/dashcube/index.html index 0413408ef..de0266c0e 100644 --- a/icon/dashcube/index.html +++ b/icon/dashcube/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/database/index.html b/icon/database/index.html index a83285826..4ef8c3603 100644 --- a/icon/database/index.html +++ b/icon/database/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/deaf/index.html b/icon/deaf/index.html index 06c56a0f5..cea96a7dc 100644 --- a/icon/deaf/index.html +++ b/icon/deaf/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/delicious/index.html b/icon/delicious/index.html index 163e872ae..02328b478 100644 --- a/icon/delicious/index.html +++ b/icon/delicious/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/desktop/index.html b/icon/desktop/index.html index f8834f46d..71aa44f42 100644 --- a/icon/desktop/index.html +++ b/icon/desktop/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/deviantart/index.html b/icon/deviantart/index.html index c3260b8fc..b007fba99 100644 --- a/icon/deviantart/index.html +++ b/icon/deviantart/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/diamond/index.html b/icon/diamond/index.html index 5cb358fcf..251cde427 100644 --- a/icon/diamond/index.html +++ b/icon/diamond/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/digg/index.html b/icon/digg/index.html index 6649fe816..ffce3a1a5 100644 --- a/icon/digg/index.html +++ b/icon/digg/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/dot-circle-o/index.html b/icon/dot-circle-o/index.html index a31531727..d6c2f7fd2 100644 --- a/icon/dot-circle-o/index.html +++ b/icon/dot-circle-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/download/index.html b/icon/download/index.html index 93c4f9252..67f946455 100644 --- a/icon/download/index.html +++ b/icon/download/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/dribbble/index.html b/icon/dribbble/index.html index db9e72077..1b28785be 100644 --- a/icon/dribbble/index.html +++ b/icon/dribbble/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/dropbox/index.html b/icon/dropbox/index.html index 6ce985937..f046b4896 100644 --- a/icon/dropbox/index.html +++ b/icon/dropbox/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/drupal/index.html b/icon/drupal/index.html index 800381bfa..50ca4ca2c 100644 --- a/icon/drupal/index.html +++ b/icon/drupal/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/edge/index.html b/icon/edge/index.html index de61789f1..85ed57240 100644 --- a/icon/edge/index.html +++ b/icon/edge/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/eject/index.html b/icon/eject/index.html index 1fbef326c..992a80f97 100644 --- a/icon/eject/index.html +++ b/icon/eject/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/ellipsis-h/index.html b/icon/ellipsis-h/index.html index a3f769910..12eafe2e2 100644 --- a/icon/ellipsis-h/index.html +++ b/icon/ellipsis-h/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/ellipsis-v/index.html b/icon/ellipsis-v/index.html index 20bd7f3e2..a15d380f0 100644 --- a/icon/ellipsis-v/index.html +++ b/icon/ellipsis-v/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/empire/index.html b/icon/empire/index.html index 80e316b0e..97cb3703d 100644 --- a/icon/empire/index.html +++ b/icon/empire/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/envelope-o/index.html b/icon/envelope-o/index.html index a90cde4fb..6f100b498 100644 --- a/icon/envelope-o/index.html +++ b/icon/envelope-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/envelope-square/index.html b/icon/envelope-square/index.html index f37f40755..9ce4b3551 100644 --- a/icon/envelope-square/index.html +++ b/icon/envelope-square/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/envelope/index.html b/icon/envelope/index.html index 46cbf4ff7..308c40b34 100644 --- a/icon/envelope/index.html +++ b/icon/envelope/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/envira/index.html b/icon/envira/index.html index f2a9c6c91..f7f92d573 100644 --- a/icon/envira/index.html +++ b/icon/envira/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/eraser/index.html b/icon/eraser/index.html index b903a641c..e4a746ef7 100644 --- a/icon/eraser/index.html +++ b/icon/eraser/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/eur/index.html b/icon/eur/index.html index afd2e08af..323162fd2 100644 --- a/icon/eur/index.html +++ b/icon/eur/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/exchange/index.html b/icon/exchange/index.html index a4b299b4c..c7a43cad6 100644 --- a/icon/exchange/index.html +++ b/icon/exchange/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/exclamation-circle/index.html b/icon/exclamation-circle/index.html index 511c5dbab..6de77464d 100644 --- a/icon/exclamation-circle/index.html +++ b/icon/exclamation-circle/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/exclamation-triangle/index.html b/icon/exclamation-triangle/index.html index c07f2e8cd..880e1412b 100644 --- a/icon/exclamation-triangle/index.html +++ b/icon/exclamation-triangle/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/exclamation/index.html b/icon/exclamation/index.html index 1d6d54e0d..c8a20afe3 100644 --- a/icon/exclamation/index.html +++ b/icon/exclamation/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/expand/index.html b/icon/expand/index.html index 6f7bbd219..1c73f2db7 100644 --- a/icon/expand/index.html +++ b/icon/expand/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/expeditedssl/index.html b/icon/expeditedssl/index.html index df6a8a5f1..6987638f8 100644 --- a/icon/expeditedssl/index.html +++ b/icon/expeditedssl/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/external-link-square/index.html b/icon/external-link-square/index.html index aa14c4068..8f47bce5d 100644 --- a/icon/external-link-square/index.html +++ b/icon/external-link-square/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/external-link/index.html b/icon/external-link/index.html index 351e0796b..cb3db727a 100644 --- a/icon/external-link/index.html +++ b/icon/external-link/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/eye-slash/index.html b/icon/eye-slash/index.html index 2ae8a22fa..4cc68409d 100644 --- a/icon/eye-slash/index.html +++ b/icon/eye-slash/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/eye/index.html b/icon/eye/index.html index 66b68cf2b..dc90c1482 100644 --- a/icon/eye/index.html +++ b/icon/eye/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/eyedropper/index.html b/icon/eyedropper/index.html index 7d79420bb..60bc84137 100644 --- a/icon/eyedropper/index.html +++ b/icon/eyedropper/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/facebook-official/index.html b/icon/facebook-official/index.html index 5d8c61849..7602f9015 100644 --- a/icon/facebook-official/index.html +++ b/icon/facebook-official/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/facebook-square/index.html b/icon/facebook-square/index.html index 981ba235f..580cfea6d 100644 --- a/icon/facebook-square/index.html +++ b/icon/facebook-square/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/facebook/index.html b/icon/facebook/index.html index bd9c88719..2031b2da3 100644 --- a/icon/facebook/index.html +++ b/icon/facebook/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/fast-backward/index.html b/icon/fast-backward/index.html index c97816fdb..9210072c0 100644 --- a/icon/fast-backward/index.html +++ b/icon/fast-backward/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/fast-forward/index.html b/icon/fast-forward/index.html index 57a318366..b2ef1518a 100644 --- a/icon/fast-forward/index.html +++ b/icon/fast-forward/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/fax/index.html b/icon/fax/index.html index b37d96574..7006ac03f 100644 --- a/icon/fax/index.html +++ b/icon/fax/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/female/index.html b/icon/female/index.html index 9127af47a..fce3c58aa 100644 --- a/icon/female/index.html +++ b/icon/female/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/fighter-jet/index.html b/icon/fighter-jet/index.html index a11ab0e6f..0f3666c43 100644 --- a/icon/fighter-jet/index.html +++ b/icon/fighter-jet/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/file-archive-o/index.html b/icon/file-archive-o/index.html index 09ec5c01b..af4677503 100644 --- a/icon/file-archive-o/index.html +++ b/icon/file-archive-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/file-audio-o/index.html b/icon/file-audio-o/index.html index 0994b62c6..5d7331241 100644 --- a/icon/file-audio-o/index.html +++ b/icon/file-audio-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/file-code-o/index.html b/icon/file-code-o/index.html index 77ed4397c..e548f0b52 100644 --- a/icon/file-code-o/index.html +++ b/icon/file-code-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/file-excel-o/index.html b/icon/file-excel-o/index.html index 16b325c67..8f13afd49 100644 --- a/icon/file-excel-o/index.html +++ b/icon/file-excel-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/file-image-o/index.html b/icon/file-image-o/index.html index 24fe57bd5..c84cd6039 100644 --- a/icon/file-image-o/index.html +++ b/icon/file-image-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/file-o/index.html b/icon/file-o/index.html index ae9805bf1..21c4418d5 100644 --- a/icon/file-o/index.html +++ b/icon/file-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/file-pdf-o/index.html b/icon/file-pdf-o/index.html index 8dd14a97a..d971fcffd 100644 --- a/icon/file-pdf-o/index.html +++ b/icon/file-pdf-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/file-powerpoint-o/index.html b/icon/file-powerpoint-o/index.html index 9d98a9181..163409b1c 100644 --- a/icon/file-powerpoint-o/index.html +++ b/icon/file-powerpoint-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/file-text-o/index.html b/icon/file-text-o/index.html index 9d1b1f130..79d15074b 100644 --- a/icon/file-text-o/index.html +++ b/icon/file-text-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/file-text/index.html b/icon/file-text/index.html index 832ba5216..3b02783f1 100644 --- a/icon/file-text/index.html +++ b/icon/file-text/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/file-video-o/index.html b/icon/file-video-o/index.html index 49580ba9d..428839385 100644 --- a/icon/file-video-o/index.html +++ b/icon/file-video-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/file-word-o/index.html b/icon/file-word-o/index.html index 16a3e525f..c78059c45 100644 --- a/icon/file-word-o/index.html +++ b/icon/file-word-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/file/index.html b/icon/file/index.html index 19df47896..2a4a23382 100644 --- a/icon/file/index.html +++ b/icon/file/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/files-o/index.html b/icon/files-o/index.html index a6004ccc4..5293a7512 100644 --- a/icon/files-o/index.html +++ b/icon/files-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/film/index.html b/icon/film/index.html index b2a5fbb1e..dde51e198 100644 --- a/icon/film/index.html +++ b/icon/film/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/filter/index.html b/icon/filter/index.html index 01342fa3f..4d7a9fc99 100644 --- a/icon/filter/index.html +++ b/icon/filter/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/fire-extinguisher/index.html b/icon/fire-extinguisher/index.html index 80eb4a939..6f32a1ce8 100644 --- a/icon/fire-extinguisher/index.html +++ b/icon/fire-extinguisher/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/fire/index.html b/icon/fire/index.html index 5e3be33a9..0bd216b83 100644 --- a/icon/fire/index.html +++ b/icon/fire/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/firefox/index.html b/icon/firefox/index.html index 094ec8daf..096f784a8 100644 --- a/icon/firefox/index.html +++ b/icon/firefox/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/first-order/index.html b/icon/first-order/index.html index f9ea95241..e73c1221b 100644 --- a/icon/first-order/index.html +++ b/icon/first-order/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/flag-checkered/index.html b/icon/flag-checkered/index.html index 8b9d1157a..c12a35f78 100644 --- a/icon/flag-checkered/index.html +++ b/icon/flag-checkered/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/flag-o/index.html b/icon/flag-o/index.html index baf809b21..56cbfd3a6 100644 --- a/icon/flag-o/index.html +++ b/icon/flag-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/flag/index.html b/icon/flag/index.html index 04dbd9b37..b31d47e00 100644 --- a/icon/flag/index.html +++ b/icon/flag/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/flask/index.html b/icon/flask/index.html index 9f082ba0e..3a0b1c277 100644 --- a/icon/flask/index.html +++ b/icon/flask/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/flickr/index.html b/icon/flickr/index.html index b3c9f0ecc..e6bb4b5a9 100644 --- a/icon/flickr/index.html +++ b/icon/flickr/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/floppy-o/index.html b/icon/floppy-o/index.html index a481d76c0..0e373d055 100644 --- a/icon/floppy-o/index.html +++ b/icon/floppy-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/folder-o/index.html b/icon/folder-o/index.html index 2f7e8f358..dd13292fe 100644 --- a/icon/folder-o/index.html +++ b/icon/folder-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/folder-open-o/index.html b/icon/folder-open-o/index.html index 5710e0d65..c5d91ec06 100644 --- a/icon/folder-open-o/index.html +++ b/icon/folder-open-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/folder-open/index.html b/icon/folder-open/index.html index d242c9eeb..7082091b1 100644 --- a/icon/folder-open/index.html +++ b/icon/folder-open/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/folder/index.html b/icon/folder/index.html index fcbdd4174..976fc8f33 100644 --- a/icon/folder/index.html +++ b/icon/folder/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/font-awesome/index.html b/icon/font-awesome/index.html new file mode 100644 index 000000000..a3ddb3644 --- /dev/null +++ b/icon/font-awesome/index.html @@ -0,0 +1,302 @@ + + + + + + + + + + + + fa-font-awesome: Font Awesome Icons + + + + + + + + + + + + + + +
+ + + + + + + +
+
+
+ + Example of font-awesome at 6x   + + + Example of font-awesome at 5x +    + + + Example of font-awesome at 4x +    + + + Example of font-awesome at 3x +    + + Example of font-awesome at 2x +   + + + Example of font-awesome +
+

+ fa-font-awesome + + · + Unicode: f2b4 · + Created: v4.6 · + Categories: + + Brand Icons + + + + · Aliases: + + fa-fa + + + + +

+
+
+ +
+
+
+
+

After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

+
+
+ Example of font-awesome fa-font-awesome +
+
+
<i class="fa fa-font-awesome" aria-hidden="true"></i>
+
+

+ Note: to improve web accessibility, we recommend using aria-hidden="true" to hide icons used purely for decoration. +

+ +
+ Looking for more? Check out the examples. +
+
+
+
+
+
+
+
+
+ + +
+ + + + + + + + + + + + + + + + diff --git a/icon/font/index.html b/icon/font/index.html index 40c64d75f..f0993480a 100644 --- a/icon/font/index.html +++ b/icon/font/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/fonticons/index.html b/icon/fonticons/index.html index c30e24971..021d55a53 100644 --- a/icon/fonticons/index.html +++ b/icon/fonticons/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/fort-awesome/index.html b/icon/fort-awesome/index.html index a2512c5ba..cb312f1d8 100644 --- a/icon/fort-awesome/index.html +++ b/icon/fort-awesome/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome @@ -259,7 +259,7 @@
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/forumbee/index.html b/icon/forumbee/index.html index bc0455971..ec81d9170 100644 --- a/icon/forumbee/index.html +++ b/icon/forumbee/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/forward/index.html b/icon/forward/index.html index cc33b6703..38ab9d96e 100644 --- a/icon/forward/index.html +++ b/icon/forward/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/foursquare/index.html b/icon/foursquare/index.html index f7cab6fdf..d3ef234a4 100644 --- a/icon/foursquare/index.html +++ b/icon/foursquare/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/frown-o/index.html b/icon/frown-o/index.html index 00b9f16fd..5cfbdf4cc 100644 --- a/icon/frown-o/index.html +++ b/icon/frown-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/futbol-o/index.html b/icon/futbol-o/index.html index 3754afcc2..07f86955a 100644 --- a/icon/futbol-o/index.html +++ b/icon/futbol-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/gamepad/index.html b/icon/gamepad/index.html index 359311270..23f4ef28b 100644 --- a/icon/gamepad/index.html +++ b/icon/gamepad/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/gavel/index.html b/icon/gavel/index.html index db5f5ed4a..7b75dac15 100644 --- a/icon/gavel/index.html +++ b/icon/gavel/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/gbp/index.html b/icon/gbp/index.html index 1f98961e7..6f8a81b16 100644 --- a/icon/gbp/index.html +++ b/icon/gbp/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/genderless/index.html b/icon/genderless/index.html index 70a3b3309..1201698e3 100644 --- a/icon/genderless/index.html +++ b/icon/genderless/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/get-pocket/index.html b/icon/get-pocket/index.html index 0b510594b..e4e62eb40 100644 --- a/icon/get-pocket/index.html +++ b/icon/get-pocket/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/gg-circle/index.html b/icon/gg-circle/index.html index 8c6663523..91c2b88a4 100644 --- a/icon/gg-circle/index.html +++ b/icon/gg-circle/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/gg/index.html b/icon/gg/index.html index 5071aa874..3211cd0cb 100644 --- a/icon/gg/index.html +++ b/icon/gg/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/gift/index.html b/icon/gift/index.html index dca4012ac..03258e5d3 100644 --- a/icon/gift/index.html +++ b/icon/gift/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/git-square/index.html b/icon/git-square/index.html index d1f75218f..2a4fd9fec 100644 --- a/icon/git-square/index.html +++ b/icon/git-square/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/git/index.html b/icon/git/index.html index c95f3fef7..408d28665 100644 --- a/icon/git/index.html +++ b/icon/git/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/github-alt/index.html b/icon/github-alt/index.html index 78dda1e9a..9dca1bc25 100644 --- a/icon/github-alt/index.html +++ b/icon/github-alt/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/github-square/index.html b/icon/github-square/index.html index e38d51dfe..5437fea64 100644 --- a/icon/github-square/index.html +++ b/icon/github-square/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/github/index.html b/icon/github/index.html index fe816cd19..fd8c8df7f 100644 --- a/icon/github/index.html +++ b/icon/github/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/gitlab/index.html b/icon/gitlab/index.html index 4c9fd615a..fa1004e07 100644 --- a/icon/gitlab/index.html +++ b/icon/gitlab/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/glass/index.html b/icon/glass/index.html index c021a99b6..16dfe9052 100644 --- a/icon/glass/index.html +++ b/icon/glass/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/glide-g/index.html b/icon/glide-g/index.html index eb9dcdb8f..a5aa4e838 100644 --- a/icon/glide-g/index.html +++ b/icon/glide-g/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/glide/index.html b/icon/glide/index.html index d8ec350f9..92cea916d 100644 --- a/icon/glide/index.html +++ b/icon/glide/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/globe/index.html b/icon/globe/index.html index 471f42a27..a0771c87f 100644 --- a/icon/globe/index.html +++ b/icon/globe/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/google-plus-official/index.html b/icon/google-plus-official/index.html new file mode 100644 index 000000000..415d6a6bb --- /dev/null +++ b/icon/google-plus-official/index.html @@ -0,0 +1,302 @@ + + + + + + + + + + + + fa-google-plus-official: Font Awesome Icons + + + + + + + + + + + + + + +
+ + + + + + + +
+
+
+ + Example of google-plus-official at 6x   + + + Example of google-plus-official at 5x +    + + + Example of google-plus-official at 4x +    + + + Example of google-plus-official at 3x +    + + Example of google-plus-official at 2x +   + + + Example of google-plus-official +
+

+ fa-google-plus-official + + · + Unicode: f2b3 · + Created: v4.6 · + Categories: + + Brand Icons + + + + · Aliases: + + fa-google-plus-circle + + + + +

+
+
+ +
+
+
+
+

After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

+
+
+ Example of google-plus-official fa-google-plus-official +
+
+
<i class="fa fa-google-plus-official" aria-hidden="true"></i>
+
+

+ Note: to improve web accessibility, we recommend using aria-hidden="true" to hide icons used purely for decoration. +

+ +
+ Looking for more? Check out the examples. +
+
+
+
+
+
+
+
+
+ + +
+ + + + + + + + + + + + + + + + diff --git a/icon/google-plus-square/index.html b/icon/google-plus-square/index.html index b0ab88c2e..102ae721c 100644 --- a/icon/google-plus-square/index.html +++ b/icon/google-plus-square/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/google-plus/index.html b/icon/google-plus/index.html index a1361e489..96c172390 100644 --- a/icon/google-plus/index.html +++ b/icon/google-plus/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/google-wallet/index.html b/icon/google-wallet/index.html index 1c994ea64..a0da29d68 100644 --- a/icon/google-wallet/index.html +++ b/icon/google-wallet/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/google/index.html b/icon/google/index.html index 725f14288..07d623266 100644 --- a/icon/google/index.html +++ b/icon/google/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/graduation-cap/index.html b/icon/graduation-cap/index.html index 4ce552dbb..0484cb4d2 100644 --- a/icon/graduation-cap/index.html +++ b/icon/graduation-cap/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/gratipay/index.html b/icon/gratipay/index.html index 6ee2e067c..2770dfbfc 100644 --- a/icon/gratipay/index.html +++ b/icon/gratipay/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/h-square/index.html b/icon/h-square/index.html index e062b2c2a..3c4cb86f9 100644 --- a/icon/h-square/index.html +++ b/icon/h-square/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/hacker-news/index.html b/icon/hacker-news/index.html index e568f3bd5..1db350e1c 100644 --- a/icon/hacker-news/index.html +++ b/icon/hacker-news/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/hand-lizard-o/index.html b/icon/hand-lizard-o/index.html index 01b8796f7..4f0bef124 100644 --- a/icon/hand-lizard-o/index.html +++ b/icon/hand-lizard-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/hand-o-down/index.html b/icon/hand-o-down/index.html index 85bb51af6..384b197eb 100644 --- a/icon/hand-o-down/index.html +++ b/icon/hand-o-down/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/hand-o-left/index.html b/icon/hand-o-left/index.html index 854a42abf..5fdcc524f 100644 --- a/icon/hand-o-left/index.html +++ b/icon/hand-o-left/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/hand-o-right/index.html b/icon/hand-o-right/index.html index 5247975fc..7954422a4 100644 --- a/icon/hand-o-right/index.html +++ b/icon/hand-o-right/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/hand-o-up/index.html b/icon/hand-o-up/index.html index aea2d1811..52bb5ba27 100644 --- a/icon/hand-o-up/index.html +++ b/icon/hand-o-up/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/hand-paper-o/index.html b/icon/hand-paper-o/index.html index cac3bcb06..f43fecd15 100644 --- a/icon/hand-paper-o/index.html +++ b/icon/hand-paper-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/hand-peace-o/index.html b/icon/hand-peace-o/index.html index 3482331c5..be501d508 100644 --- a/icon/hand-peace-o/index.html +++ b/icon/hand-peace-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/hand-pointer-o/index.html b/icon/hand-pointer-o/index.html index 38ef13cc8..f18dc9728 100644 --- a/icon/hand-pointer-o/index.html +++ b/icon/hand-pointer-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/hand-rock-o/index.html b/icon/hand-rock-o/index.html index 726f5505b..fa8bd56fa 100644 --- a/icon/hand-rock-o/index.html +++ b/icon/hand-rock-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/hand-scissors-o/index.html b/icon/hand-scissors-o/index.html index 40345bb6f..a63712094 100644 --- a/icon/hand-scissors-o/index.html +++ b/icon/hand-scissors-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/hand-spock-o/index.html b/icon/hand-spock-o/index.html index 86a99d885..937ca8315 100644 --- a/icon/hand-spock-o/index.html +++ b/icon/hand-spock-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/hashtag/index.html b/icon/hashtag/index.html index 5c47e9b9a..1fe150b79 100644 --- a/icon/hashtag/index.html +++ b/icon/hashtag/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/hdd-o/index.html b/icon/hdd-o/index.html index 67f42196e..fb6885e92 100644 --- a/icon/hdd-o/index.html +++ b/icon/hdd-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/header/index.html b/icon/header/index.html index 7ab6723ff..808c395b0 100644 --- a/icon/header/index.html +++ b/icon/header/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/headphones/index.html b/icon/headphones/index.html index 5aedbf602..fff760847 100644 --- a/icon/headphones/index.html +++ b/icon/headphones/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/heart-o/index.html b/icon/heart-o/index.html index 148eccf3e..a1185d6cd 100644 --- a/icon/heart-o/index.html +++ b/icon/heart-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/heart/index.html b/icon/heart/index.html index 3cea96450..eba1776a4 100644 --- a/icon/heart/index.html +++ b/icon/heart/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/heartbeat/index.html b/icon/heartbeat/index.html index 8e99cd5bc..94cadea2a 100644 --- a/icon/heartbeat/index.html +++ b/icon/heartbeat/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/history/index.html b/icon/history/index.html index b59c57b1c..96f38a0d1 100644 --- a/icon/history/index.html +++ b/icon/history/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/home/index.html b/icon/home/index.html index 7076663dd..bd24d2bea 100644 --- a/icon/home/index.html +++ b/icon/home/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/hospital-o/index.html b/icon/hospital-o/index.html index f6ed714e1..f0d755ede 100644 --- a/icon/hospital-o/index.html +++ b/icon/hospital-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/hourglass-end/index.html b/icon/hourglass-end/index.html index 2406e873b..8505dd393 100644 --- a/icon/hourglass-end/index.html +++ b/icon/hourglass-end/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/hourglass-half/index.html b/icon/hourglass-half/index.html index cdeb30cd5..2fbcce067 100644 --- a/icon/hourglass-half/index.html +++ b/icon/hourglass-half/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/hourglass-o/index.html b/icon/hourglass-o/index.html index 6a9c6665f..791828c79 100644 --- a/icon/hourglass-o/index.html +++ b/icon/hourglass-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/hourglass-start/index.html b/icon/hourglass-start/index.html index 2d6331a6c..34fc1b89a 100644 --- a/icon/hourglass-start/index.html +++ b/icon/hourglass-start/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/hourglass/index.html b/icon/hourglass/index.html index 22cb1f5d6..f1bd21c3d 100644 --- a/icon/hourglass/index.html +++ b/icon/hourglass/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/houzz/index.html b/icon/houzz/index.html index dcb67df5a..32ae099ed 100644 --- a/icon/houzz/index.html +++ b/icon/houzz/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/html5/index.html b/icon/html5/index.html index eac834ee6..5b57c54a8 100644 --- a/icon/html5/index.html +++ b/icon/html5/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/i-cursor/index.html b/icon/i-cursor/index.html index dd9ffc6b3..3fdef9723 100644 --- a/icon/i-cursor/index.html +++ b/icon/i-cursor/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/ils/index.html b/icon/ils/index.html index ef813d328..9ca0b3554 100644 --- a/icon/ils/index.html +++ b/icon/ils/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/inbox/index.html b/icon/inbox/index.html index b145aa268..81b06e34d 100644 --- a/icon/inbox/index.html +++ b/icon/inbox/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/indent/index.html b/icon/indent/index.html index 367b966dd..49ded53db 100644 --- a/icon/indent/index.html +++ b/icon/indent/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/industry/index.html b/icon/industry/index.html index cba175895..8aec0b2f6 100644 --- a/icon/industry/index.html +++ b/icon/industry/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/info-circle/index.html b/icon/info-circle/index.html index 33096e43c..e440023b2 100644 --- a/icon/info-circle/index.html +++ b/icon/info-circle/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/info/index.html b/icon/info/index.html index b597e4903..b41e05d54 100644 --- a/icon/info/index.html +++ b/icon/info/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/inr/index.html b/icon/inr/index.html index 26dbdaea5..d9a09e1be 100644 --- a/icon/inr/index.html +++ b/icon/inr/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/instagram/index.html b/icon/instagram/index.html index 95d07dc93..7befa2bf9 100644 --- a/icon/instagram/index.html +++ b/icon/instagram/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/internet-explorer/index.html b/icon/internet-explorer/index.html index 4b5b3cfcc..ea8c693b7 100644 --- a/icon/internet-explorer/index.html +++ b/icon/internet-explorer/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/ioxhost/index.html b/icon/ioxhost/index.html index 0d4d87567..d1bde00b2 100644 --- a/icon/ioxhost/index.html +++ b/icon/ioxhost/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/italic/index.html b/icon/italic/index.html index 00d3095c7..a5bd7146d 100644 --- a/icon/italic/index.html +++ b/icon/italic/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/joomla/index.html b/icon/joomla/index.html index bcc6ccc23..68dba2a01 100644 --- a/icon/joomla/index.html +++ b/icon/joomla/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/jpy/index.html b/icon/jpy/index.html index a1e69113d..b8cd5139d 100644 --- a/icon/jpy/index.html +++ b/icon/jpy/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/jsfiddle/index.html b/icon/jsfiddle/index.html index 46c8635e7..e60e3bd31 100644 --- a/icon/jsfiddle/index.html +++ b/icon/jsfiddle/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/key/index.html b/icon/key/index.html index 46a8583f9..8b289c51b 100644 --- a/icon/key/index.html +++ b/icon/key/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/keyboard-o/index.html b/icon/keyboard-o/index.html index 127f958c6..418f533bb 100644 --- a/icon/keyboard-o/index.html +++ b/icon/keyboard-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/krw/index.html b/icon/krw/index.html index e10241c83..0c537786d 100644 --- a/icon/krw/index.html +++ b/icon/krw/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/language/index.html b/icon/language/index.html index f1a46e058..bfab364f3 100644 --- a/icon/language/index.html +++ b/icon/language/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/laptop/index.html b/icon/laptop/index.html index 4722163c4..26923bf42 100644 --- a/icon/laptop/index.html +++ b/icon/laptop/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/lastfm-square/index.html b/icon/lastfm-square/index.html index 73988ac6a..3cb2220ce 100644 --- a/icon/lastfm-square/index.html +++ b/icon/lastfm-square/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/lastfm/index.html b/icon/lastfm/index.html index 3d2694940..812b2b208 100644 --- a/icon/lastfm/index.html +++ b/icon/lastfm/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/leaf/index.html b/icon/leaf/index.html index 4212ddad3..6a638f479 100644 --- a/icon/leaf/index.html +++ b/icon/leaf/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/leanpub/index.html b/icon/leanpub/index.html index 55ad02071..0ca4bb220 100644 --- a/icon/leanpub/index.html +++ b/icon/leanpub/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/lemon-o/index.html b/icon/lemon-o/index.html index e98d759fa..0400a2aa8 100644 --- a/icon/lemon-o/index.html +++ b/icon/lemon-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/level-down/index.html b/icon/level-down/index.html index 696f37e6f..b3fa4a837 100644 --- a/icon/level-down/index.html +++ b/icon/level-down/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/level-up/index.html b/icon/level-up/index.html index d9a0585d3..b221335ac 100644 --- a/icon/level-up/index.html +++ b/icon/level-up/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/life-ring/index.html b/icon/life-ring/index.html index ef5ecfa1b..2d8e0f102 100644 --- a/icon/life-ring/index.html +++ b/icon/life-ring/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/lightbulb-o/index.html b/icon/lightbulb-o/index.html index 23f3535a9..8cfbe5235 100644 --- a/icon/lightbulb-o/index.html +++ b/icon/lightbulb-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/line-chart/index.html b/icon/line-chart/index.html index f8acacd76..d6a6556d4 100644 --- a/icon/line-chart/index.html +++ b/icon/line-chart/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/link/index.html b/icon/link/index.html index 1a591398d..ab4533b46 100644 --- a/icon/link/index.html +++ b/icon/link/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/linkedin-square/index.html b/icon/linkedin-square/index.html index 7e11046ea..3d6060589 100644 --- a/icon/linkedin-square/index.html +++ b/icon/linkedin-square/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/linkedin/index.html b/icon/linkedin/index.html index 2f17b3131..f7dff4b88 100644 --- a/icon/linkedin/index.html +++ b/icon/linkedin/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/linux/index.html b/icon/linux/index.html index e16d24925..1d8531741 100644 --- a/icon/linux/index.html +++ b/icon/linux/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/list-alt/index.html b/icon/list-alt/index.html index 260f9aa7e..2f4943911 100644 --- a/icon/list-alt/index.html +++ b/icon/list-alt/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/list-ol/index.html b/icon/list-ol/index.html index 556b52830..ac19ab5ab 100644 --- a/icon/list-ol/index.html +++ b/icon/list-ol/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/list-ul/index.html b/icon/list-ul/index.html index d3fe70fc6..b036baf24 100644 --- a/icon/list-ul/index.html +++ b/icon/list-ul/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/list/index.html b/icon/list/index.html index 81e90e0c7..b6e74e415 100644 --- a/icon/list/index.html +++ b/icon/list/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/location-arrow/index.html b/icon/location-arrow/index.html index 8b9c7e9e1..4b56ee300 100644 --- a/icon/location-arrow/index.html +++ b/icon/location-arrow/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/lock/index.html b/icon/lock/index.html index 5f6ce24a4..9d636cd06 100644 --- a/icon/lock/index.html +++ b/icon/lock/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/long-arrow-down/index.html b/icon/long-arrow-down/index.html index b2a437c35..043cedbc3 100644 --- a/icon/long-arrow-down/index.html +++ b/icon/long-arrow-down/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/long-arrow-left/index.html b/icon/long-arrow-left/index.html index bce5cc161..4941ef244 100644 --- a/icon/long-arrow-left/index.html +++ b/icon/long-arrow-left/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/long-arrow-right/index.html b/icon/long-arrow-right/index.html index 6dc66ae1e..5da791eed 100644 --- a/icon/long-arrow-right/index.html +++ b/icon/long-arrow-right/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/long-arrow-up/index.html b/icon/long-arrow-up/index.html index 50a98c714..0e03b5a30 100644 --- a/icon/long-arrow-up/index.html +++ b/icon/long-arrow-up/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/low-vision/index.html b/icon/low-vision/index.html index 6758e2265..d741d9b02 100644 --- a/icon/low-vision/index.html +++ b/icon/low-vision/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/magic/index.html b/icon/magic/index.html index c80fadfad..3935dec96 100644 --- a/icon/magic/index.html +++ b/icon/magic/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/magnet/index.html b/icon/magnet/index.html index 5f5b35d8f..7ab962670 100644 --- a/icon/magnet/index.html +++ b/icon/magnet/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/male/index.html b/icon/male/index.html index 3299b951f..804a2e082 100644 --- a/icon/male/index.html +++ b/icon/male/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/map-marker/index.html b/icon/map-marker/index.html index 611d9d15f..cd327b1a5 100644 --- a/icon/map-marker/index.html +++ b/icon/map-marker/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/map-o/index.html b/icon/map-o/index.html index b8fd2ce09..3081ff992 100644 --- a/icon/map-o/index.html +++ b/icon/map-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/map-pin/index.html b/icon/map-pin/index.html index ce89219d4..1dfea6942 100644 --- a/icon/map-pin/index.html +++ b/icon/map-pin/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/map-signs/index.html b/icon/map-signs/index.html index 3e82de179..40dc2ad50 100644 --- a/icon/map-signs/index.html +++ b/icon/map-signs/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/map/index.html b/icon/map/index.html index 62df1da13..3304d8c34 100644 --- a/icon/map/index.html +++ b/icon/map/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/mars-double/index.html b/icon/mars-double/index.html index 87bda8e2d..31de225df 100644 --- a/icon/mars-double/index.html +++ b/icon/mars-double/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/mars-stroke-h/index.html b/icon/mars-stroke-h/index.html index ba6ab3b7d..f71170cc0 100644 --- a/icon/mars-stroke-h/index.html +++ b/icon/mars-stroke-h/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/mars-stroke-v/index.html b/icon/mars-stroke-v/index.html index dd7f3ba4c..1316633e8 100644 --- a/icon/mars-stroke-v/index.html +++ b/icon/mars-stroke-v/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/mars-stroke/index.html b/icon/mars-stroke/index.html index 4e25d61da..c3347ee02 100644 --- a/icon/mars-stroke/index.html +++ b/icon/mars-stroke/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/mars/index.html b/icon/mars/index.html index 324e93d27..97f8dca05 100644 --- a/icon/mars/index.html +++ b/icon/mars/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/maxcdn/index.html b/icon/maxcdn/index.html index e18e63b11..6b6239829 100644 --- a/icon/maxcdn/index.html +++ b/icon/maxcdn/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/meanpath/index.html b/icon/meanpath/index.html index a3a82cdaf..eb372205d 100644 --- a/icon/meanpath/index.html +++ b/icon/meanpath/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/medium/index.html b/icon/medium/index.html index 9306f55be..d3863860d 100644 --- a/icon/medium/index.html +++ b/icon/medium/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/medkit/index.html b/icon/medkit/index.html index 8e7107987..d106928a3 100644 --- a/icon/medkit/index.html +++ b/icon/medkit/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/meh-o/index.html b/icon/meh-o/index.html index 62a95d11c..7fb001d93 100644 --- a/icon/meh-o/index.html +++ b/icon/meh-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/mercury/index.html b/icon/mercury/index.html index 2b65c2d27..91e86a579 100644 --- a/icon/mercury/index.html +++ b/icon/mercury/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/microphone-slash/index.html b/icon/microphone-slash/index.html index c83e116e6..ab25a1531 100644 --- a/icon/microphone-slash/index.html +++ b/icon/microphone-slash/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/microphone/index.html b/icon/microphone/index.html index ed6b8c5a0..7e059175e 100644 --- a/icon/microphone/index.html +++ b/icon/microphone/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/minus-circle/index.html b/icon/minus-circle/index.html index 80935f85c..8dd8d01b0 100644 --- a/icon/minus-circle/index.html +++ b/icon/minus-circle/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/minus-square-o/index.html b/icon/minus-square-o/index.html index b0c9aad5c..2f7c4da6b 100644 --- a/icon/minus-square-o/index.html +++ b/icon/minus-square-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/minus-square/index.html b/icon/minus-square/index.html index b405566b9..47694260c 100644 --- a/icon/minus-square/index.html +++ b/icon/minus-square/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/minus/index.html b/icon/minus/index.html index 35f0c7831..965ecead7 100644 --- a/icon/minus/index.html +++ b/icon/minus/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/mixcloud/index.html b/icon/mixcloud/index.html index c113cff58..9e89d7e63 100644 --- a/icon/mixcloud/index.html +++ b/icon/mixcloud/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/mobile/index.html b/icon/mobile/index.html index a168c719f..0c77dc784 100644 --- a/icon/mobile/index.html +++ b/icon/mobile/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/modx/index.html b/icon/modx/index.html index 130b416f2..00d2f3cad 100644 --- a/icon/modx/index.html +++ b/icon/modx/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/money/index.html b/icon/money/index.html index 1f7ef2f76..904437a40 100644 --- a/icon/money/index.html +++ b/icon/money/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/moon-o/index.html b/icon/moon-o/index.html index 011fba081..e1628c6ea 100644 --- a/icon/moon-o/index.html +++ b/icon/moon-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/motorcycle/index.html b/icon/motorcycle/index.html index 265980807..409940e27 100644 --- a/icon/motorcycle/index.html +++ b/icon/motorcycle/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/mouse-pointer/index.html b/icon/mouse-pointer/index.html index 20b8b6fd2..42354322b 100644 --- a/icon/mouse-pointer/index.html +++ b/icon/mouse-pointer/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/music/index.html b/icon/music/index.html index 7a9f34142..f7bad1bc7 100644 --- a/icon/music/index.html +++ b/icon/music/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/neuter/index.html b/icon/neuter/index.html index 565c4412d..5cc35290f 100644 --- a/icon/neuter/index.html +++ b/icon/neuter/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/newspaper-o/index.html b/icon/newspaper-o/index.html index 701a51447..35fc7b480 100644 --- a/icon/newspaper-o/index.html +++ b/icon/newspaper-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/object-group/index.html b/icon/object-group/index.html index 35ddd1a61..0e1dc8444 100644 --- a/icon/object-group/index.html +++ b/icon/object-group/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/object-ungroup/index.html b/icon/object-ungroup/index.html index 75008db23..a25e449a4 100644 --- a/icon/object-ungroup/index.html +++ b/icon/object-ungroup/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/odnoklassniki-square/index.html b/icon/odnoklassniki-square/index.html index 29ccd5412..4ca20575d 100644 --- a/icon/odnoklassniki-square/index.html +++ b/icon/odnoklassniki-square/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/odnoklassniki/index.html b/icon/odnoklassniki/index.html index b591930ad..68c3f33b9 100644 --- a/icon/odnoklassniki/index.html +++ b/icon/odnoklassniki/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/opencart/index.html b/icon/opencart/index.html index 26fc12794..49599e015 100644 --- a/icon/opencart/index.html +++ b/icon/opencart/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/openid/index.html b/icon/openid/index.html index d63adc927..f917a9b52 100644 --- a/icon/openid/index.html +++ b/icon/openid/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/opera/index.html b/icon/opera/index.html index 1daae4369..6af1f3eb7 100644 --- a/icon/opera/index.html +++ b/icon/opera/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/optin-monster/index.html b/icon/optin-monster/index.html index 6c54aeb01..2647d09f8 100644 --- a/icon/optin-monster/index.html +++ b/icon/optin-monster/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/outdent/index.html b/icon/outdent/index.html index c7ed48795..d7aa18826 100644 --- a/icon/outdent/index.html +++ b/icon/outdent/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/pagelines/index.html b/icon/pagelines/index.html index 410ef1f22..69b2b0eef 100644 --- a/icon/pagelines/index.html +++ b/icon/pagelines/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/paint-brush/index.html b/icon/paint-brush/index.html index ece910707..c51d7a8e8 100644 --- a/icon/paint-brush/index.html +++ b/icon/paint-brush/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/paper-plane-o/index.html b/icon/paper-plane-o/index.html index 2f9c3da7d..ff7ec4516 100644 --- a/icon/paper-plane-o/index.html +++ b/icon/paper-plane-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/paper-plane/index.html b/icon/paper-plane/index.html index 931e60574..b6b7253a6 100644 --- a/icon/paper-plane/index.html +++ b/icon/paper-plane/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/paperclip/index.html b/icon/paperclip/index.html index 0b99b854f..737073cba 100644 --- a/icon/paperclip/index.html +++ b/icon/paperclip/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/paragraph/index.html b/icon/paragraph/index.html index 7bb058e1b..28b5a0b04 100644 --- a/icon/paragraph/index.html +++ b/icon/paragraph/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/pause-circle-o/index.html b/icon/pause-circle-o/index.html index 43e3ad8c1..eb35b75cd 100644 --- a/icon/pause-circle-o/index.html +++ b/icon/pause-circle-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/pause-circle/index.html b/icon/pause-circle/index.html index 5bf930789..f8c80f806 100644 --- a/icon/pause-circle/index.html +++ b/icon/pause-circle/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/pause/index.html b/icon/pause/index.html index 3bbb63712..41b46a1d8 100644 --- a/icon/pause/index.html +++ b/icon/pause/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/paw/index.html b/icon/paw/index.html index e06257191..16596e2bc 100644 --- a/icon/paw/index.html +++ b/icon/paw/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/paypal/index.html b/icon/paypal/index.html index 922f47b54..9b743c4ab 100644 --- a/icon/paypal/index.html +++ b/icon/paypal/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/pencil-square-o/index.html b/icon/pencil-square-o/index.html index ab9ce1617..fcf979394 100644 --- a/icon/pencil-square-o/index.html +++ b/icon/pencil-square-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/pencil-square/index.html b/icon/pencil-square/index.html index aedcf0bbb..8ffdb7dca 100644 --- a/icon/pencil-square/index.html +++ b/icon/pencil-square/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/pencil/index.html b/icon/pencil/index.html index 674be53a4..2b6150e8b 100644 --- a/icon/pencil/index.html +++ b/icon/pencil/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/percent/index.html b/icon/percent/index.html index 9b72a8ebf..34d8d2733 100644 --- a/icon/percent/index.html +++ b/icon/percent/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/phone-square/index.html b/icon/phone-square/index.html index 21e8f16a2..8576f9b63 100644 --- a/icon/phone-square/index.html +++ b/icon/phone-square/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/phone/index.html b/icon/phone/index.html index 6ca505a71..824cff620 100644 --- a/icon/phone/index.html +++ b/icon/phone/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/picture-o/index.html b/icon/picture-o/index.html index a7ef0f6d7..2a76f30c1 100644 --- a/icon/picture-o/index.html +++ b/icon/picture-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/pie-chart/index.html b/icon/pie-chart/index.html index 1800ead5f..ff5c5404d 100644 --- a/icon/pie-chart/index.html +++ b/icon/pie-chart/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/pied-piper-alt/index.html b/icon/pied-piper-alt/index.html index 7f8274307..f4c9e19ed 100644 --- a/icon/pied-piper-alt/index.html +++ b/icon/pied-piper-alt/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/pied-piper-pp/index.html b/icon/pied-piper-pp/index.html index fa52f7368..d5dd10820 100644 --- a/icon/pied-piper-pp/index.html +++ b/icon/pied-piper-pp/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/pied-piper/index.html b/icon/pied-piper/index.html index d988fcaf5..1016fe47e 100644 --- a/icon/pied-piper/index.html +++ b/icon/pied-piper/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/pinterest-p/index.html b/icon/pinterest-p/index.html index 56278022a..1675ea2e7 100644 --- a/icon/pinterest-p/index.html +++ b/icon/pinterest-p/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/pinterest-square/index.html b/icon/pinterest-square/index.html index 16dce488e..6d7dbada2 100644 --- a/icon/pinterest-square/index.html +++ b/icon/pinterest-square/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/pinterest/index.html b/icon/pinterest/index.html index aeb04b52e..cd0747070 100644 --- a/icon/pinterest/index.html +++ b/icon/pinterest/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/plane/index.html b/icon/plane/index.html index ac74b3ae7..f8e93a93a 100644 --- a/icon/plane/index.html +++ b/icon/plane/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/play-circle-o/index.html b/icon/play-circle-o/index.html index b9ce0318a..3e627be7c 100644 --- a/icon/play-circle-o/index.html +++ b/icon/play-circle-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/play-circle/index.html b/icon/play-circle/index.html index 7422c1ac9..5fbfe10c2 100644 --- a/icon/play-circle/index.html +++ b/icon/play-circle/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/play/index.html b/icon/play/index.html index 99a8a1963..478568240 100644 --- a/icon/play/index.html +++ b/icon/play/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/plug/index.html b/icon/plug/index.html index 82ee82c46..6fc67cc43 100644 --- a/icon/plug/index.html +++ b/icon/plug/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/plus-circle/index.html b/icon/plus-circle/index.html index 957f7106f..d12921869 100644 --- a/icon/plus-circle/index.html +++ b/icon/plus-circle/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/plus-square-o/index.html b/icon/plus-square-o/index.html index cc8cd17fb..a6e755476 100644 --- a/icon/plus-square-o/index.html +++ b/icon/plus-square-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/plus-square/index.html b/icon/plus-square/index.html index 8864f60bc..82e5b7ee2 100644 --- a/icon/plus-square/index.html +++ b/icon/plus-square/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/plus/index.html b/icon/plus/index.html index 042ac20a1..978d277f9 100644 --- a/icon/plus/index.html +++ b/icon/plus/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/power-off/index.html b/icon/power-off/index.html index 26ef6eefb..05ddab88b 100644 --- a/icon/power-off/index.html +++ b/icon/power-off/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/print/index.html b/icon/print/index.html index 8a6a31b01..fd036234a 100644 --- a/icon/print/index.html +++ b/icon/print/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/product-hunt/index.html b/icon/product-hunt/index.html index c05e66549..70f002d2f 100644 --- a/icon/product-hunt/index.html +++ b/icon/product-hunt/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/puzzle-piece/index.html b/icon/puzzle-piece/index.html index 7db6cc9a2..8936c7bac 100644 --- a/icon/puzzle-piece/index.html +++ b/icon/puzzle-piece/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/qq/index.html b/icon/qq/index.html index 21c3aa776..a4e2551b1 100644 --- a/icon/qq/index.html +++ b/icon/qq/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/qrcode/index.html b/icon/qrcode/index.html index a4bf9447e..356ebc9f8 100644 --- a/icon/qrcode/index.html +++ b/icon/qrcode/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/question-circle-o/index.html b/icon/question-circle-o/index.html index b02f427f5..91f394d45 100644 --- a/icon/question-circle-o/index.html +++ b/icon/question-circle-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/question-circle/index.html b/icon/question-circle/index.html index 06b1fa577..5c4fa017c 100644 --- a/icon/question-circle/index.html +++ b/icon/question-circle/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/question/index.html b/icon/question/index.html index 61675927a..cc96c3ff3 100644 --- a/icon/question/index.html +++ b/icon/question/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/quote-left/index.html b/icon/quote-left/index.html index b357bcd47..377813c2e 100644 --- a/icon/quote-left/index.html +++ b/icon/quote-left/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/quote-right/index.html b/icon/quote-right/index.html index 9c33f71c9..0b3245e99 100644 --- a/icon/quote-right/index.html +++ b/icon/quote-right/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/random/index.html b/icon/random/index.html index 00089c039..0c1e1ad5e 100644 --- a/icon/random/index.html +++ b/icon/random/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/rebel/index.html b/icon/rebel/index.html index 04b24a503..ba56c017b 100644 --- a/icon/rebel/index.html +++ b/icon/rebel/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/recycle/index.html b/icon/recycle/index.html index f3c033b69..3bce92bd2 100644 --- a/icon/recycle/index.html +++ b/icon/recycle/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/reddit-alien/index.html b/icon/reddit-alien/index.html index a13073647..8d0798cd3 100644 --- a/icon/reddit-alien/index.html +++ b/icon/reddit-alien/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/reddit-square/index.html b/icon/reddit-square/index.html index 3bc1748b9..7b15fc1ba 100644 --- a/icon/reddit-square/index.html +++ b/icon/reddit-square/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/reddit/index.html b/icon/reddit/index.html index a1456c6ac..c9535deb6 100644 --- a/icon/reddit/index.html +++ b/icon/reddit/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/refresh/index.html b/icon/refresh/index.html index add4ba813..04bc465b4 100644 --- a/icon/refresh/index.html +++ b/icon/refresh/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/registered/index.html b/icon/registered/index.html index 23d99666b..21618f5ea 100644 --- a/icon/registered/index.html +++ b/icon/registered/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/renren/index.html b/icon/renren/index.html index a72726465..2223f3298 100644 --- a/icon/renren/index.html +++ b/icon/renren/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/repeat/index.html b/icon/repeat/index.html index f7cfb7b2c..f7ae9d4b3 100644 --- a/icon/repeat/index.html +++ b/icon/repeat/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/reply-all/index.html b/icon/reply-all/index.html index 1601f14a9..aae9ad2be 100644 --- a/icon/reply-all/index.html +++ b/icon/reply-all/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/reply/index.html b/icon/reply/index.html index abe87a287..24e960fb5 100644 --- a/icon/reply/index.html +++ b/icon/reply/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/retweet/index.html b/icon/retweet/index.html index 7e692cae3..cb9a8e5ff 100644 --- a/icon/retweet/index.html +++ b/icon/retweet/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/road/index.html b/icon/road/index.html index 71ac270a8..98e1dbf28 100644 --- a/icon/road/index.html +++ b/icon/road/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/rocket/index.html b/icon/rocket/index.html index 01e547446..7784ce2e0 100644 --- a/icon/rocket/index.html +++ b/icon/rocket/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/rss-square/index.html b/icon/rss-square/index.html index 60817ba84..bd1b271d3 100644 --- a/icon/rss-square/index.html +++ b/icon/rss-square/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/rss/index.html b/icon/rss/index.html index a270d3355..1dffaa17d 100644 --- a/icon/rss/index.html +++ b/icon/rss/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/rub/index.html b/icon/rub/index.html index 25a7be2a0..b4d077898 100644 --- a/icon/rub/index.html +++ b/icon/rub/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/safari/index.html b/icon/safari/index.html index 3b4d8ff9f..6ab48e9dc 100644 --- a/icon/safari/index.html +++ b/icon/safari/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/scissors/index.html b/icon/scissors/index.html index 312b07349..8c106302b 100644 --- a/icon/scissors/index.html +++ b/icon/scissors/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/scribd/index.html b/icon/scribd/index.html index 50d61727b..ff1daec0f 100644 --- a/icon/scribd/index.html +++ b/icon/scribd/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/search-minus/index.html b/icon/search-minus/index.html index d65bb6650..4c792f855 100644 --- a/icon/search-minus/index.html +++ b/icon/search-minus/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/search-plus/index.html b/icon/search-plus/index.html index ceb3209ea..44d93c129 100644 --- a/icon/search-plus/index.html +++ b/icon/search-plus/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/search/index.html b/icon/search/index.html index 8596d9e76..c4a6b6d41 100644 --- a/icon/search/index.html +++ b/icon/search/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/sellsy/index.html b/icon/sellsy/index.html index a952c5053..ac28fc627 100644 --- a/icon/sellsy/index.html +++ b/icon/sellsy/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/server/index.html b/icon/server/index.html index dbcec2dba..16f37ec06 100644 --- a/icon/server/index.html +++ b/icon/server/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/share-alt-square/index.html b/icon/share-alt-square/index.html index 0fe2efd17..f8504dba6 100644 --- a/icon/share-alt-square/index.html +++ b/icon/share-alt-square/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/share-alt/index.html b/icon/share-alt/index.html index a74761cb8..20953129a 100644 --- a/icon/share-alt/index.html +++ b/icon/share-alt/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/share-square-o/index.html b/icon/share-square-o/index.html index 149ad0aca..2f4d269f3 100644 --- a/icon/share-square-o/index.html +++ b/icon/share-square-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/share-square/index.html b/icon/share-square/index.html index 0048015ba..f072c7c3d 100644 --- a/icon/share-square/index.html +++ b/icon/share-square/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/share/index.html b/icon/share/index.html index 4a61e216c..4ea927ca8 100644 --- a/icon/share/index.html +++ b/icon/share/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/shield/index.html b/icon/shield/index.html index 1a3131d5b..6e5ace601 100644 --- a/icon/shield/index.html +++ b/icon/shield/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/ship/index.html b/icon/ship/index.html index b84470ed4..567573d4a 100644 --- a/icon/ship/index.html +++ b/icon/ship/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/shirtsinbulk/index.html b/icon/shirtsinbulk/index.html index 05348a592..6c12294aa 100644 --- a/icon/shirtsinbulk/index.html +++ b/icon/shirtsinbulk/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/shopping-bag/index.html b/icon/shopping-bag/index.html index e24f8df9d..4e8fc1628 100644 --- a/icon/shopping-bag/index.html +++ b/icon/shopping-bag/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/shopping-basket/index.html b/icon/shopping-basket/index.html index 8ccb327ca..ae80f48ba 100644 --- a/icon/shopping-basket/index.html +++ b/icon/shopping-basket/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/shopping-cart/index.html b/icon/shopping-cart/index.html index 024bde4e7..495b19125 100644 --- a/icon/shopping-cart/index.html +++ b/icon/shopping-cart/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/sign-in/index.html b/icon/sign-in/index.html index bafa649ec..e61036d91 100644 --- a/icon/sign-in/index.html +++ b/icon/sign-in/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/sign-language/index.html b/icon/sign-language/index.html index 47b4b501e..ae65c0139 100644 --- a/icon/sign-language/index.html +++ b/icon/sign-language/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/sign-out/index.html b/icon/sign-out/index.html index 3026b6811..1e14c6df6 100644 --- a/icon/sign-out/index.html +++ b/icon/sign-out/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/signal/index.html b/icon/signal/index.html index 3c4b3bb4a..acfef01a9 100644 --- a/icon/signal/index.html +++ b/icon/signal/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/simplybuilt/index.html b/icon/simplybuilt/index.html index 4325c6bca..346493e3a 100644 --- a/icon/simplybuilt/index.html +++ b/icon/simplybuilt/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/sitemap/index.html b/icon/sitemap/index.html index ea5ce6369..d7961ed33 100644 --- a/icon/sitemap/index.html +++ b/icon/sitemap/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/skyatlas/index.html b/icon/skyatlas/index.html index 24a219878..20e676c64 100644 --- a/icon/skyatlas/index.html +++ b/icon/skyatlas/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/skype/index.html b/icon/skype/index.html index c41ea214d..4bb619fd4 100644 --- a/icon/skype/index.html +++ b/icon/skype/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/slack/index.html b/icon/slack/index.html index 0156d5b54..e38eb1d73 100644 --- a/icon/slack/index.html +++ b/icon/slack/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/sliders/index.html b/icon/sliders/index.html index 1722ff70c..081f8abc6 100644 --- a/icon/sliders/index.html +++ b/icon/sliders/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/slideshare/index.html b/icon/slideshare/index.html index 9a6efd178..4e448f5b7 100644 --- a/icon/slideshare/index.html +++ b/icon/slideshare/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/smile-o/index.html b/icon/smile-o/index.html index 05ac08b90..9b2ca0e54 100644 --- a/icon/smile-o/index.html +++ b/icon/smile-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/snapchat-ghost/index.html b/icon/snapchat-ghost/index.html index 35a927578..c6b8bfd52 100644 --- a/icon/snapchat-ghost/index.html +++ b/icon/snapchat-ghost/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/snapchat-square/index.html b/icon/snapchat-square/index.html index 67974b6e0..c990d33ef 100644 --- a/icon/snapchat-square/index.html +++ b/icon/snapchat-square/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/snapchat/index.html b/icon/snapchat/index.html index 075cfc247..7004a4eb7 100644 --- a/icon/snapchat/index.html +++ b/icon/snapchat/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/sort-alpha-asc/index.html b/icon/sort-alpha-asc/index.html index a1723bc91..2e0113637 100644 --- a/icon/sort-alpha-asc/index.html +++ b/icon/sort-alpha-asc/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/sort-alpha-desc/index.html b/icon/sort-alpha-desc/index.html index 47a9173e2..f055a08ab 100644 --- a/icon/sort-alpha-desc/index.html +++ b/icon/sort-alpha-desc/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/sort-amount-asc/index.html b/icon/sort-amount-asc/index.html index a39c20b17..55326b36c 100644 --- a/icon/sort-amount-asc/index.html +++ b/icon/sort-amount-asc/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/sort-amount-desc/index.html b/icon/sort-amount-desc/index.html index 1bdd70107..5a3533817 100644 --- a/icon/sort-amount-desc/index.html +++ b/icon/sort-amount-desc/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/sort-asc/index.html b/icon/sort-asc/index.html index 3b2c08fc5..c520e7b94 100644 --- a/icon/sort-asc/index.html +++ b/icon/sort-asc/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/sort-desc/index.html b/icon/sort-desc/index.html index 2adee09ba..58d0a55df 100644 --- a/icon/sort-desc/index.html +++ b/icon/sort-desc/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/sort-numeric-asc/index.html b/icon/sort-numeric-asc/index.html index a97c62dd2..129f1e74b 100644 --- a/icon/sort-numeric-asc/index.html +++ b/icon/sort-numeric-asc/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/sort-numeric-desc/index.html b/icon/sort-numeric-desc/index.html index afd1018cf..d16c03bee 100644 --- a/icon/sort-numeric-desc/index.html +++ b/icon/sort-numeric-desc/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/sort/index.html b/icon/sort/index.html index a558d4336..c3f37a586 100644 --- a/icon/sort/index.html +++ b/icon/sort/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/soundcloud/index.html b/icon/soundcloud/index.html index b7c4df606..1fc6d8665 100644 --- a/icon/soundcloud/index.html +++ b/icon/soundcloud/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/space-shuttle/index.html b/icon/space-shuttle/index.html index f9c932892..ebc348819 100644 --- a/icon/space-shuttle/index.html +++ b/icon/space-shuttle/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/spinner/index.html b/icon/spinner/index.html index f5a139fa2..f930d9972 100644 --- a/icon/spinner/index.html +++ b/icon/spinner/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/spoon/index.html b/icon/spoon/index.html index f0134e873..f430ec359 100644 --- a/icon/spoon/index.html +++ b/icon/spoon/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/spotify/index.html b/icon/spotify/index.html index 6e7237db5..83e887836 100644 --- a/icon/spotify/index.html +++ b/icon/spotify/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/square-o/index.html b/icon/square-o/index.html index 459b5206b..657adf750 100644 --- a/icon/square-o/index.html +++ b/icon/square-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/square/index.html b/icon/square/index.html index 4432ca348..fbaf7504f 100644 --- a/icon/square/index.html +++ b/icon/square/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/stack-exchange/index.html b/icon/stack-exchange/index.html index 5716099b2..111d8d2da 100644 --- a/icon/stack-exchange/index.html +++ b/icon/stack-exchange/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/stack-overflow/index.html b/icon/stack-overflow/index.html index 96c576285..e7a5174cb 100644 --- a/icon/stack-overflow/index.html +++ b/icon/stack-overflow/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/star-half-o/index.html b/icon/star-half-o/index.html index 6d0fbed41..412416af4 100644 --- a/icon/star-half-o/index.html +++ b/icon/star-half-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/star-half/index.html b/icon/star-half/index.html index 6600bb359..6c3477096 100644 --- a/icon/star-half/index.html +++ b/icon/star-half/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/star-o/index.html b/icon/star-o/index.html index 81af9623a..23c4cc2bd 100644 --- a/icon/star-o/index.html +++ b/icon/star-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/star/index.html b/icon/star/index.html index 6dec03f8f..6787d16c6 100644 --- a/icon/star/index.html +++ b/icon/star/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/steam-square/index.html b/icon/steam-square/index.html index 207e3f5ac..4989043be 100644 --- a/icon/steam-square/index.html +++ b/icon/steam-square/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/steam/index.html b/icon/steam/index.html index f37361cd8..8b6cd54f7 100644 --- a/icon/steam/index.html +++ b/icon/steam/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/step-backward/index.html b/icon/step-backward/index.html index 3009e1f0e..49e574046 100644 --- a/icon/step-backward/index.html +++ b/icon/step-backward/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/step-forward/index.html b/icon/step-forward/index.html index 4a62fb3d8..c7c2d00b2 100644 --- a/icon/step-forward/index.html +++ b/icon/step-forward/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/stethoscope/index.html b/icon/stethoscope/index.html index 0046e3301..aa6ccaf95 100644 --- a/icon/stethoscope/index.html +++ b/icon/stethoscope/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/sticky-note-o/index.html b/icon/sticky-note-o/index.html index ebd9e6a62..313762ae6 100644 --- a/icon/sticky-note-o/index.html +++ b/icon/sticky-note-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/sticky-note/index.html b/icon/sticky-note/index.html index 1e41febc9..5150a399f 100644 --- a/icon/sticky-note/index.html +++ b/icon/sticky-note/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/stop-circle-o/index.html b/icon/stop-circle-o/index.html index a74f27aa5..b0a6dfcf1 100644 --- a/icon/stop-circle-o/index.html +++ b/icon/stop-circle-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/stop-circle/index.html b/icon/stop-circle/index.html index 9626c285e..8067fc2bf 100644 --- a/icon/stop-circle/index.html +++ b/icon/stop-circle/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/stop/index.html b/icon/stop/index.html index 3fbc78012..47245f7ae 100644 --- a/icon/stop/index.html +++ b/icon/stop/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/street-view/index.html b/icon/street-view/index.html index 64740793e..c9935db04 100644 --- a/icon/street-view/index.html +++ b/icon/street-view/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/strikethrough/index.html b/icon/strikethrough/index.html index 5a018deff..ca02e9860 100644 --- a/icon/strikethrough/index.html +++ b/icon/strikethrough/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/stumbleupon-circle/index.html b/icon/stumbleupon-circle/index.html index 2e427341d..1877f6d31 100644 --- a/icon/stumbleupon-circle/index.html +++ b/icon/stumbleupon-circle/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/stumbleupon/index.html b/icon/stumbleupon/index.html index 6c6526570..905c69bc4 100644 --- a/icon/stumbleupon/index.html +++ b/icon/stumbleupon/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/subscript/index.html b/icon/subscript/index.html index 1c6e43473..d0bee0a1b 100644 --- a/icon/subscript/index.html +++ b/icon/subscript/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/subway/index.html b/icon/subway/index.html index cc82b3817..d9ece37f2 100644 --- a/icon/subway/index.html +++ b/icon/subway/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/suitcase/index.html b/icon/suitcase/index.html index da86fb4c8..07dbfa454 100644 --- a/icon/suitcase/index.html +++ b/icon/suitcase/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/sun-o/index.html b/icon/sun-o/index.html index 6466f0cc8..9f42cf66d 100644 --- a/icon/sun-o/index.html +++ b/icon/sun-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/superscript/index.html b/icon/superscript/index.html index b1a60f18e..3f63c1d8c 100644 --- a/icon/superscript/index.html +++ b/icon/superscript/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/table/index.html b/icon/table/index.html index 2817c3447..f09998e7e 100644 --- a/icon/table/index.html +++ b/icon/table/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/tablet/index.html b/icon/tablet/index.html index 8c7a11675..b95830f0a 100644 --- a/icon/tablet/index.html +++ b/icon/tablet/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/tachometer/index.html b/icon/tachometer/index.html index 6a82b404b..b5bbd3be7 100644 --- a/icon/tachometer/index.html +++ b/icon/tachometer/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/tag/index.html b/icon/tag/index.html index 1fe556650..9068e6b18 100644 --- a/icon/tag/index.html +++ b/icon/tag/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/tags/index.html b/icon/tags/index.html index 2d11047e9..7b703a67e 100644 --- a/icon/tags/index.html +++ b/icon/tags/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/tasks/index.html b/icon/tasks/index.html index 040c31fc0..927d49109 100644 --- a/icon/tasks/index.html +++ b/icon/tasks/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/taxi/index.html b/icon/taxi/index.html index fb68288b8..af9809510 100644 --- a/icon/taxi/index.html +++ b/icon/taxi/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/television/index.html b/icon/television/index.html index ffb75ef89..c29e2448a 100644 --- a/icon/television/index.html +++ b/icon/television/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/tencent-weibo/index.html b/icon/tencent-weibo/index.html index f9313e747..c3f7c3049 100644 --- a/icon/tencent-weibo/index.html +++ b/icon/tencent-weibo/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/terminal/index.html b/icon/terminal/index.html index ff10505e0..e96edc0c1 100644 --- a/icon/terminal/index.html +++ b/icon/terminal/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/text-height/index.html b/icon/text-height/index.html index 9ce445aba..6bd009342 100644 --- a/icon/text-height/index.html +++ b/icon/text-height/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/text-width/index.html b/icon/text-width/index.html index 9628f8e5d..25e236e0b 100644 --- a/icon/text-width/index.html +++ b/icon/text-width/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/th-large/index.html b/icon/th-large/index.html index 45c772193..2d34cf73f 100644 --- a/icon/th-large/index.html +++ b/icon/th-large/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/th-list/index.html b/icon/th-list/index.html index 1246489e1..b801b5860 100644 --- a/icon/th-list/index.html +++ b/icon/th-list/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/th/index.html b/icon/th/index.html index e85c90127..d9092c060 100644 --- a/icon/th/index.html +++ b/icon/th/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/themeisle/index.html b/icon/themeisle/index.html index b8342be45..caa7343b6 100644 --- a/icon/themeisle/index.html +++ b/icon/themeisle/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/thumb-tack/index.html b/icon/thumb-tack/index.html index a524c08f8..3fcc31666 100644 --- a/icon/thumb-tack/index.html +++ b/icon/thumb-tack/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/thumbs-down/index.html b/icon/thumbs-down/index.html index 1fc4e725d..69879baf0 100644 --- a/icon/thumbs-down/index.html +++ b/icon/thumbs-down/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/thumbs-o-down/index.html b/icon/thumbs-o-down/index.html index f90cdedb3..c86e0881e 100644 --- a/icon/thumbs-o-down/index.html +++ b/icon/thumbs-o-down/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/thumbs-o-up/index.html b/icon/thumbs-o-up/index.html index 82e20e728..eb9c173bc 100644 --- a/icon/thumbs-o-up/index.html +++ b/icon/thumbs-o-up/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/thumbs-up/index.html b/icon/thumbs-up/index.html index 74443ffd9..1d2826aaa 100644 --- a/icon/thumbs-up/index.html +++ b/icon/thumbs-up/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/ticket/index.html b/icon/ticket/index.html index 7f63cf36b..a17e7df00 100644 --- a/icon/ticket/index.html +++ b/icon/ticket/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/times-circle-o/index.html b/icon/times-circle-o/index.html index 0caaeae7c..c90cf3087 100644 --- a/icon/times-circle-o/index.html +++ b/icon/times-circle-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/times-circle/index.html b/icon/times-circle/index.html index 1882c81eb..ab236ff0e 100644 --- a/icon/times-circle/index.html +++ b/icon/times-circle/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/times/index.html b/icon/times/index.html index 76a13137c..38ce630ca 100644 --- a/icon/times/index.html +++ b/icon/times/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/tint/index.html b/icon/tint/index.html index 25658b3ee..822fb4218 100644 --- a/icon/tint/index.html +++ b/icon/tint/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/toggle-off/index.html b/icon/toggle-off/index.html index a5b1519c6..99b5f3fb5 100644 --- a/icon/toggle-off/index.html +++ b/icon/toggle-off/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/toggle-on/index.html b/icon/toggle-on/index.html index 2e60867c5..5cb7c73f6 100644 --- a/icon/toggle-on/index.html +++ b/icon/toggle-on/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/trademark/index.html b/icon/trademark/index.html index 5c999ff01..bba2b39c4 100644 --- a/icon/trademark/index.html +++ b/icon/trademark/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/train/index.html b/icon/train/index.html index f99951a24..d705623cb 100644 --- a/icon/train/index.html +++ b/icon/train/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/transgender-alt/index.html b/icon/transgender-alt/index.html index 3f0dab01e..b37829a7e 100644 --- a/icon/transgender-alt/index.html +++ b/icon/transgender-alt/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/transgender/index.html b/icon/transgender/index.html index 324778a73..e77076b16 100644 --- a/icon/transgender/index.html +++ b/icon/transgender/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/trash-o/index.html b/icon/trash-o/index.html index 6dcb19f1b..2c22231e1 100644 --- a/icon/trash-o/index.html +++ b/icon/trash-o/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/trash/index.html b/icon/trash/index.html index b716c077f..3f3cee88e 100644 --- a/icon/trash/index.html +++ b/icon/trash/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/tree/index.html b/icon/tree/index.html index cf339c4df..b3466fe2d 100644 --- a/icon/tree/index.html +++ b/icon/tree/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/trello/index.html b/icon/trello/index.html index 8bde00db4..c50204c5b 100644 --- a/icon/trello/index.html +++ b/icon/trello/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/tripadvisor/index.html b/icon/tripadvisor/index.html index dbf8365d2..c91a55625 100644 --- a/icon/tripadvisor/index.html +++ b/icon/tripadvisor/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/trophy/index.html b/icon/trophy/index.html index 973759717..53716fd59 100644 --- a/icon/trophy/index.html +++ b/icon/trophy/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/truck/index.html b/icon/truck/index.html index 95a56377b..d0840e4cb 100644 --- a/icon/truck/index.html +++ b/icon/truck/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/try/index.html b/icon/try/index.html index 785bd39b3..fb87d2304 100644 --- a/icon/try/index.html +++ b/icon/try/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/tty/index.html b/icon/tty/index.html index b3cb95a98..7ca7dd241 100644 --- a/icon/tty/index.html +++ b/icon/tty/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/tumblr-square/index.html b/icon/tumblr-square/index.html index 4549b5eaf..6bbc9cd93 100644 --- a/icon/tumblr-square/index.html +++ b/icon/tumblr-square/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/tumblr/index.html b/icon/tumblr/index.html index 291e5bf47..ac176a19f 100644 --- a/icon/tumblr/index.html +++ b/icon/tumblr/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/twitch/index.html b/icon/twitch/index.html index 447338a69..ef487c621 100644 --- a/icon/twitch/index.html +++ b/icon/twitch/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/twitter-square/index.html b/icon/twitter-square/index.html index 3397d6ce1..e6c0f0b40 100644 --- a/icon/twitter-square/index.html +++ b/icon/twitter-square/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/twitter/index.html b/icon/twitter/index.html index ee36fa172..6b0622fe4 100644 --- a/icon/twitter/index.html +++ b/icon/twitter/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/umbrella/index.html b/icon/umbrella/index.html index 751b3be37..97cbb88ef 100644 --- a/icon/umbrella/index.html +++ b/icon/umbrella/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/underline/index.html b/icon/underline/index.html index 5135b233d..270233855 100644 --- a/icon/underline/index.html +++ b/icon/underline/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/undo/index.html b/icon/undo/index.html index b9ef1acb2..2830e6d20 100644 --- a/icon/undo/index.html +++ b/icon/undo/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/universal-access/index.html b/icon/universal-access/index.html index 4e6ce6918..f4708ea4b 100644 --- a/icon/universal-access/index.html +++ b/icon/universal-access/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/university/index.html b/icon/university/index.html index 768c12b15..3b2b6f6ee 100644 --- a/icon/university/index.html +++ b/icon/university/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/unlock-alt/index.html b/icon/unlock-alt/index.html index 6c347a2d1..b1e4818fe 100644 --- a/icon/unlock-alt/index.html +++ b/icon/unlock-alt/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/unlock/index.html b/icon/unlock/index.html index 656d498fc..1f813903f 100644 --- a/icon/unlock/index.html +++ b/icon/unlock/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/upload/index.html b/icon/upload/index.html index bf37d0aba..d229f0b42 100644 --- a/icon/upload/index.html +++ b/icon/upload/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/usb/index.html b/icon/usb/index.html index 647c0220a..a20034ca3 100644 --- a/icon/usb/index.html +++ b/icon/usb/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/usd/index.html b/icon/usd/index.html index 78b011a32..d43d8350e 100644 --- a/icon/usd/index.html +++ b/icon/usd/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/user-md/index.html b/icon/user-md/index.html index d4d9c3fc7..f746d01e0 100644 --- a/icon/user-md/index.html +++ b/icon/user-md/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/user-plus/index.html b/icon/user-plus/index.html index f6dbde23f..2cab27f2c 100644 --- a/icon/user-plus/index.html +++ b/icon/user-plus/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/user-secret/index.html b/icon/user-secret/index.html index 926462844..87debb656 100644 --- a/icon/user-secret/index.html +++ b/icon/user-secret/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/user-times/index.html b/icon/user-times/index.html index a2bf8716e..102ff1674 100644 --- a/icon/user-times/index.html +++ b/icon/user-times/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/user/index.html b/icon/user/index.html index 1f251ad81..1c95e2ffe 100644 --- a/icon/user/index.html +++ b/icon/user/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/users/index.html b/icon/users/index.html index 2bb1893be..2b730f54f 100644 --- a/icon/users/index.html +++ b/icon/users/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/venus-double/index.html b/icon/venus-double/index.html index fadec8a02..5a995c53c 100644 --- a/icon/venus-double/index.html +++ b/icon/venus-double/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/venus-mars/index.html b/icon/venus-mars/index.html index e82131be9..da0b9b1f5 100644 --- a/icon/venus-mars/index.html +++ b/icon/venus-mars/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/venus/index.html b/icon/venus/index.html index 7456deda9..57c80b6ac 100644 --- a/icon/venus/index.html +++ b/icon/venus/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/viacoin/index.html b/icon/viacoin/index.html index 3cf6b8f67..812402c26 100644 --- a/icon/viacoin/index.html +++ b/icon/viacoin/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/viadeo-square/index.html b/icon/viadeo-square/index.html index 0d6b058b0..681fd75b3 100644 --- a/icon/viadeo-square/index.html +++ b/icon/viadeo-square/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/viadeo/index.html b/icon/viadeo/index.html index 7abbc53cb..a89eb2ebc 100644 --- a/icon/viadeo/index.html +++ b/icon/viadeo/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/video-camera/index.html b/icon/video-camera/index.html index 3e928ae4e..ff0fc855a 100644 --- a/icon/video-camera/index.html +++ b/icon/video-camera/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/vimeo-square/index.html b/icon/vimeo-square/index.html index e9a257616..9ce80e806 100644 --- a/icon/vimeo-square/index.html +++ b/icon/vimeo-square/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/vimeo/index.html b/icon/vimeo/index.html index e997d4584..001b6fefb 100644 --- a/icon/vimeo/index.html +++ b/icon/vimeo/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/vine/index.html b/icon/vine/index.html index 5c2033342..2dc8dd465 100644 --- a/icon/vine/index.html +++ b/icon/vine/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/vk/index.html b/icon/vk/index.html index 688415780..26998d42b 100644 --- a/icon/vk/index.html +++ b/icon/vk/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/volume-control-phone/index.html b/icon/volume-control-phone/index.html index 31bdee1f2..a0e789a85 100644 --- a/icon/volume-control-phone/index.html +++ b/icon/volume-control-phone/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/volume-down/index.html b/icon/volume-down/index.html index dac2beb4d..708facc92 100644 --- a/icon/volume-down/index.html +++ b/icon/volume-down/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/volume-off/index.html b/icon/volume-off/index.html index 7f7385e06..34b595eaa 100644 --- a/icon/volume-off/index.html +++ b/icon/volume-off/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/volume-up/index.html b/icon/volume-up/index.html index 713f4a3e7..47c5ef892 100644 --- a/icon/volume-up/index.html +++ b/icon/volume-up/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/weibo/index.html b/icon/weibo/index.html index 7b7775ea4..6ad1d2b6c 100644 --- a/icon/weibo/index.html +++ b/icon/weibo/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/weixin/index.html b/icon/weixin/index.html index 740b09888..9e43a6151 100644 --- a/icon/weixin/index.html +++ b/icon/weixin/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/whatsapp/index.html b/icon/whatsapp/index.html index e5259a0fb..11b205994 100644 --- a/icon/whatsapp/index.html +++ b/icon/whatsapp/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/wheelchair-alt/index.html b/icon/wheelchair-alt/index.html index 408831f7f..ae3ad0b1a 100644 --- a/icon/wheelchair-alt/index.html +++ b/icon/wheelchair-alt/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/wheelchair/index.html b/icon/wheelchair/index.html index bd6c5ee82..4d88c623a 100644 --- a/icon/wheelchair/index.html +++ b/icon/wheelchair/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/wifi/index.html b/icon/wifi/index.html index c6c36532e..f6c5ee082 100644 --- a/icon/wifi/index.html +++ b/icon/wifi/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/wikipedia-w/index.html b/icon/wikipedia-w/index.html index 134c1bcea..ab6a86c11 100644 --- a/icon/wikipedia-w/index.html +++ b/icon/wikipedia-w/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/windows/index.html b/icon/windows/index.html index b66563ffe..29705b988 100644 --- a/icon/windows/index.html +++ b/icon/windows/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/wordpress/index.html b/icon/wordpress/index.html index c22057822..8ecca821c 100644 --- a/icon/wordpress/index.html +++ b/icon/wordpress/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/wpbeginner/index.html b/icon/wpbeginner/index.html index 2749c2d3d..982215e8c 100644 --- a/icon/wpbeginner/index.html +++ b/icon/wpbeginner/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/wpforms/index.html b/icon/wpforms/index.html index 60ba397b2..542d89e34 100644 --- a/icon/wpforms/index.html +++ b/icon/wpforms/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/wrench/index.html b/icon/wrench/index.html index 2afe44c62..f1c9dbe50 100644 --- a/icon/wrench/index.html +++ b/icon/wrench/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/xing-square/index.html b/icon/xing-square/index.html index cd791c509..131eb2e05 100644 --- a/icon/xing-square/index.html +++ b/icon/xing-square/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/xing/index.html b/icon/xing/index.html index c82702bc5..3d604e840 100644 --- a/icon/xing/index.html +++ b/icon/xing/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/y-combinator/index.html b/icon/y-combinator/index.html index 8c3db533f..bac584af8 100644 --- a/icon/y-combinator/index.html +++ b/icon/y-combinator/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/yahoo/index.html b/icon/yahoo/index.html index d831aa1e5..08a93c944 100644 --- a/icon/yahoo/index.html +++ b/icon/yahoo/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/yelp/index.html b/icon/yelp/index.html index 22dc50555..0e9eb6f11 100644 --- a/icon/yelp/index.html +++ b/icon/yelp/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/yoast/index.html b/icon/yoast/index.html index 6bda0d67e..9d9d77228 100644 --- a/icon/yoast/index.html +++ b/icon/yoast/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/youtube-play/index.html b/icon/youtube-play/index.html index 504105c20..df21d1f7a 100644 --- a/icon/youtube-play/index.html +++ b/icon/youtube-play/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/youtube-square/index.html b/icon/youtube-square/index.html index 5befc748b..580b493f1 100644 --- a/icon/youtube-square/index.html +++ b/icon/youtube-square/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icon/youtube/index.html b/icon/youtube/index.html index cee722548..0bbe8c4e4 100644 --- a/icon/youtube/index.html +++ b/icon/youtube/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/icons.yml b/icons.yml index 8cae4deb9..b73043e6a 100644 --- a/icons.yml +++ b/icons.yml @@ -3640,7 +3640,7 @@ icons: - name: Instagram id: instagram unicode: f16d - created: 3.2 + created: 4.6 categories: - Brand Icons @@ -5838,6 +5838,7 @@ icons: id: fort-awesome unicode: f286 created: 4.5 + url: fortawesome.com categories: - Brand Icons @@ -6161,3 +6162,21 @@ icons: url: themeisle.com categories: - Brand Icons + + - name: Google Plus Official + id: google-plus-official + unicode: f2b3 + created: 4.6 + aliases: + - google-plus-circle + categories: + - Brand Icons + + - name: Font Awesome + id: font-awesome + unicode: f2b4 + created: 4.6 + aliases: + - fa + categories: + - Brand Icons diff --git a/icons/index.html b/icons/index.html index 665ec67a9..8a45d5280 100644 --- a/icons/index.html +++ b/icons/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome @@ -231,9 +231,9 @@

- You asked, Font Awesome delivers with 27 shiny new icons in version 4.6. + You asked, Font Awesome delivers with 30 shiny new icons in version 4.6. Want to request new icons? Here's how. - + Need vectors or want to use on the desktop? Check the cheatsheet.

@@ -259,7 +259,7 @@
- +
@@ -284,16 +284,26 @@ + + + + + + + + + + @@ -1943,6 +1953,8 @@ an error. To work around this, you'll need to modify the social icon class names + + @@ -1957,6 +1969,8 @@ an error. To work around this, you'll need to modify the social icon class names + + @@ -1995,6 +2009,10 @@ an error. To work around this, you'll need to modify the social icon class names + + + + @@ -2309,7 +2327,7 @@ an error. To work around this, you'll need to modify the social icon class names
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/index.html b/index.html index f994cfde1..557502092 100644 --- a/index.html +++ b/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- Version 4.6.2   ·   + Version 4.6.3   ·   GitHub Project   ·   @@ -198,7 +198,7 @@
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy
diff --git a/whats-new/index.html b/whats-new/index.html index 9965ab9bc..465a1a96b 100644 --- a/whats-new/index.html +++ b/whats-new/index.html @@ -66,13 +66,13 @@ @@ -87,7 +87,7 @@ Toggle navigation - Font Awesome + Font Awesome
- +
- You asked, Font Awesome delivers with 27 shiny new icons in version 4.6. + You asked, Font Awesome delivers with 30 shiny new icons in version 4.6. Want to request new icons? Here's how.
@@ -289,16 +289,26 @@ + + + + + + + + + + @@ -367,7 +377,7 @@
- Font Awesome 4.6.2 + Font Awesome 4.6.3 ·
Created by Dave Gandy