<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */

.h2Navy {
    color: Navy;
}
.h3Teal {
    color: Teal;
}

.normalParagraph {
    color: Black;
    font-family:"Open Sans", sans-serif;
    font-weight:400;
    font-size:16px;
    line-height:1.5;
}

.hamburger{
    padding:15px 15px;
    display:inline-block;
    cursor:pointer;
    -webkit-transition-property:opacity, -webkit-filter;
    transition-property:opacity, -webkit-filter;
    transition-property:opacity, filter;
    transition-property:opacity, filter, -webkit-filter;
    -webkit-transition-duration:0.15s;
    transition-duration:0.15s;
    -webkit-transition-timing-function:linear;
    transition-timing-function:linear;
    font:inherit;
    color:inherit;
    text-transform:none;
    background-color:transparent;
    border:0;
    margin:0;
    overflow:visible;
}
.hamburger:hover{
    opacity:0.7;
}
.hamburger-box{
    width:40px;
    height:24px;
    display:inline-block;
    position:relative;
}
.hamburger-inner{
    display:block;
    top:50%;
    margin-top:-2px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after{
    width:40px;
    height:4px;
    background-color:#000;
    border-radius:4px;
    position:absolute;
    -webkit-transition-property:-webkit-transform;
    transition-property:-webkit-transform;
    transition-property:transform;
    transition-property:transform, -webkit-transform;
    -webkit-transition-duration:0.15s;
    transition-duration:0.15s;
    -webkit-transition-timing-function:ease;
    transition-timing-function:ease;
}
.hamburger-inner::before, .hamburger-inner::after{
    content:"";
    display:block;
}
.hamburger-inner::before{
    top:-10px;
}
.hamburger-inner::after{
    bottom:-10px;
}
/*
 * Arrow
 */
.hamburger--arrow.is-active .hamburger-inner::before{
    -webkit-transform:translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
    transform:translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrow.is-active .hamburger-inner::after{
    -webkit-transform:translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
    transform:translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}
/*
 * Arrow Right
 */
.hamburger--arrow-r.is-active .hamburger-inner::before{
    -webkit-transform:translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
    transform:translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrow-r.is-active .hamburger-inner::after{
    -webkit-transform:translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
    transform:translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
/*
 * Arrow Alt
 */
.hamburger--arrowalt .hamburger-inner::before{
    -webkit-transition:top 0.1s 0.15s ease, -webkit-transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition:top 0.1s 0.15s ease, -webkit-transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition:top 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition:top 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt .hamburger-inner::after{
    -webkit-transition:bottom 0.1s 0.15s ease, -webkit-transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition:bottom 0.1s 0.15s ease, -webkit-transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition:bottom 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition:bottom 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt.is-active .hamburger-inner::before{
    top:0;
    -webkit-transform:translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
    transform:translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
    -webkit-transition:top 0.1s ease, -webkit-transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
    transition:top 0.1s ease, -webkit-transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
    transition:top 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
    transition:top 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22), -webkit-transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt.is-active .hamburger-inner::after{
    bottom:0;
    -webkit-transform:translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
    transform:translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
    -webkit-transition:bottom 0.1s ease, -webkit-transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
    transition:bottom 0.1s ease, -webkit-transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
    transition:bottom 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
    transition:bottom 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22), -webkit-transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
/*
 * Arrow Alt Right
 */
.hamburger--arrowalt-r .hamburger-inner::before{
    -webkit-transition:top 0.1s 0.15s ease, -webkit-transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition:top 0.1s 0.15s ease, -webkit-transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition:top 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition:top 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r .hamburger-inner::after{
    -webkit-transition:bottom 0.1s 0.15s ease, -webkit-transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition:bottom 0.1s 0.15s ease, -webkit-transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition:bottom 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition:bottom 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::before{
    top:0;
    -webkit-transform:translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
    transform:translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
    -webkit-transition:top 0.1s ease, -webkit-transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
    transition:top 0.1s ease, -webkit-transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
    transition:top 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
    transition:top 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22), -webkit-transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::after{
    bottom:0;
    -webkit-transform:translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
    transform:translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
    -webkit-transition:bottom 0.1s ease, -webkit-transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
    transition:bottom 0.1s ease, -webkit-transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
    transition:bottom 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
    transition:bottom 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22), -webkit-transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
/*
 * Boring
 */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after{
    -webkit-transition-property:none;
    transition-property:none;
}
.hamburger--boring.is-active .hamburger-inner{
    -webkit-transform:rotate(45deg);
    transform:rotate(45deg);
}
.hamburger--boring.is-active .hamburger-inner::before{
    top:0;
    opacity:0;
}
.hamburger--boring.is-active .hamburger-inner::after{
    bottom:0;
    -webkit-transform:rotate(-90deg);
    transform:rotate(-90deg);
}
/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner{
    top:auto;
    bottom:0;
    -webkit-transition-duration:0.15s;
    transition-duration:0.15s;
    -webkit-transition-delay:0.15s;
    transition-delay:0.15s;
    -webkit-transition-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after{
    top:-20px;
    -webkit-transition:top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
    transition:top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before{
    -webkit-transition:top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition:top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition:top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition:top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse.is-active .hamburger-inner{
    -webkit-transform:translate3d(0, -10px, 0) rotate(-45deg);
    transform:translate3d(0, -10px, 0) rotate(-45deg);
    -webkit-transition-delay:0.32s;
    transition-delay:0.32s;
    -webkit-transition-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse.is-active .hamburger-inner::after{
    top:0;
    opacity:0;
    -webkit-transition:top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.27s linear;
    transition:top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.27s linear;
}
.hamburger--collapse.is-active .hamburger-inner::before{
    top:0;
    -webkit-transform:rotate(-90deg);
    transform:rotate(-90deg);
    -webkit-transition:top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition:top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition:top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition:top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/*
 * Collapse Reverse
 */
.hamburger--collapse-r .hamburger-inner{
    top:auto;
    bottom:0;
    -webkit-transition-duration:0.15s;
    transition-duration:0.15s;
    -webkit-transition-delay:0.15s;
    transition-delay:0.15s;
    -webkit-transition-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r .hamburger-inner::after{
    top:-20px;
    -webkit-transition:top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
    transition:top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse-r .hamburger-inner::before{
    -webkit-transition:top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition:top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition:top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition:top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r.is-active .hamburger-inner{
    -webkit-transform:translate3d(0, -10px, 0) rotate(45deg);
    transform:translate3d(0, -10px, 0) rotate(45deg);
    -webkit-transition-delay:0.32s;
    transition-delay:0.32s;
    -webkit-transition-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse-r.is-active .hamburger-inner::after{
    top:0;
    opacity:0;
    -webkit-transition:top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.27s linear;
    transition:top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.27s linear;
}
.hamburger--collapse-r.is-active .hamburger-inner::before{
    top:0;
    -webkit-transform:rotate(90deg);
    transform:rotate(90deg);
    -webkit-transition:top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition:top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition:top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition:top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/*
 * Elastic
 */
.hamburger--elastic .hamburger-inner{
    top:0;
    -webkit-transition-duration:0.4s;
    transition-duration:0.4s;
    -webkit-transition-timing-function:cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition-timing-function:cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic .hamburger-inner::before{
    top:10px;
    -webkit-transition:opacity 0.15s 0.4s ease;
    transition:opacity 0.15s 0.4s ease;
}
.hamburger--elastic .hamburger-inner::after{
    top:20px;
    -webkit-transition:-webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition:-webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition:transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition:transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic.is-active .hamburger-inner{
    -webkit-transform:translate3d(0, 10px, 0) rotate(135deg);
    transform:translate3d(0, 10px, 0) rotate(135deg);
    -webkit-transition-delay:0.1s;
    transition-delay:0.1s;
}
.hamburger--elastic.is-active .hamburger-inner::before{
    -webkit-transition-delay:0s;
    transition-delay:0s;
    opacity:0;
}
.hamburger--elastic.is-active .hamburger-inner::after{
    -webkit-transform:translate3d(0, -20px, 0) rotate(-270deg);
    transform:translate3d(0, -20px, 0) rotate(-270deg);
    -webkit-transition-delay:0.1s;
    transition-delay:0.1s;
}
/*
 * Elastic Reverse
 */
.hamburger--elastic-r .hamburger-inner{
    top:0;
    -webkit-transition-duration:0.4s;
    transition-duration:0.4s;
    -webkit-transition-timing-function:cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition-timing-function:cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r .hamburger-inner::before{
    top:10px;
    -webkit-transition:opacity 0.15s 0.4s ease;
    transition:opacity 0.15s 0.4s ease;
}
.hamburger--elastic-r .hamburger-inner::after{
    top:20px;
    -webkit-transition:-webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition:-webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition:transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition:transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r.is-active .hamburger-inner{
    -webkit-transform:translate3d(0, 10px, 0) rotate(-135deg);
    transform:translate3d(0, 10px, 0) rotate(-135deg);
    -webkit-transition-delay:0.1s;
    transition-delay:0.1s;
}
.hamburger--elastic-r.is-active .hamburger-inner::before{
    -webkit-transition-delay:0s;
    transition-delay:0s;
    opacity:0;
}
.hamburger--elastic-r.is-active .hamburger-inner::after{
    -webkit-transform:translate3d(0, -20px, 0) rotate(270deg);
    transform:translate3d(0, -20px, 0) rotate(270deg);
    -webkit-transition-delay:0.1s;
    transition-delay:0.1s;
}
/*
 * Emphatic
 */
.hamburger--emphatic{
    overflow:hidden;
}
.hamburger--emphatic .hamburger-inner{
    -webkit-transition:background-color 0.2s 0.25s ease-in;
    transition:background-color 0.2s 0.25s ease-in;
}
.hamburger--emphatic .hamburger-inner::before{
    left:0;
    -webkit-transition:top 0.05s 0.2s linear, left 0.2s 0.25s ease-in, -webkit-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
    transition:top 0.05s 0.2s linear, left 0.2s 0.25s ease-in, -webkit-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
    transition:transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, left 0.2s 0.25s ease-in;
    transition:transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, left 0.2s 0.25s ease-in, -webkit-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}
.hamburger--emphatic .hamburger-inner::after{
    top:10px;
    right:0;
    -webkit-transition:top 0.05s 0.2s linear, right 0.2s 0.25s ease-in, -webkit-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
    transition:top 0.05s 0.2s linear, right 0.2s 0.25s ease-in, -webkit-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
    transition:transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, right 0.2s 0.25s ease-in;
    transition:transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, right 0.2s 0.25s ease-in, -webkit-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}
.hamburger--emphatic.is-active .hamburger-inner{
    -webkit-transition-delay:0s;
    transition-delay:0s;
    -webkit-transition-timing-function:ease-out;
    transition-timing-function:ease-out;
    background-color:transparent;
}
.hamburger--emphatic.is-active .hamburger-inner::before{
    left:-80px;
    top:-80px;
    -webkit-transform:translate3d(80px, 80px, 0) rotate(45deg);
    transform:translate3d(80px, 80px, 0) rotate(45deg);
    -webkit-transition:left 0.2s ease-out, top 0.05s 0.2s linear, -webkit-transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition:left 0.2s ease-out, top 0.05s 0.2s linear, -webkit-transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition:left 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition:left 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic.is-active .hamburger-inner::after{
    right:-80px;
    top:-80px;
    -webkit-transform:translate3d(-80px, 80px, 0) rotate(-45deg);
    transform:translate3d(-80px, 80px, 0) rotate(-45deg);
    -webkit-transition:right 0.2s ease-out, top 0.05s 0.2s linear, -webkit-transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition:right 0.2s ease-out, top 0.05s 0.2s linear, -webkit-transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition:right 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition:right 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
}
/*
 * Emphatic Reverse
 */
.hamburger--emphatic-r{
    overflow:hidden;
}
.hamburger--emphatic-r .hamburger-inner{
    -webkit-transition:background-color 0.2s 0.25s ease-in;
    transition:background-color 0.2s 0.25s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::before{
    left:0;
    -webkit-transition:top 0.05s 0.2s linear, left 0.2s 0.25s ease-in, -webkit-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
    transition:top 0.05s 0.2s linear, left 0.2s 0.25s ease-in, -webkit-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
    transition:transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, left 0.2s 0.25s ease-in;
    transition:transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, left 0.2s 0.25s ease-in, -webkit-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}
.hamburger--emphatic-r .hamburger-inner::after{
    top:10px;
    right:0;
    -webkit-transition:top 0.05s 0.2s linear, right 0.2s 0.25s ease-in, -webkit-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
    transition:top 0.05s 0.2s linear, right 0.2s 0.25s ease-in, -webkit-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
    transition:transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, right 0.2s 0.25s ease-in;
    transition:transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, right 0.2s 0.25s ease-in, -webkit-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}
.hamburger--emphatic-r.is-active .hamburger-inner{
    -webkit-transition-delay:0s;
    transition-delay:0s;
    -webkit-transition-timing-function:ease-out;
    transition-timing-function:ease-out;
    background-color:transparent;
}
.hamburger--emphatic-r.is-active .hamburger-inner::before{
    left:-80px;
    top:80px;
    -webkit-transform:translate3d(80px, -80px, 0) rotate(-45deg);
    transform:translate3d(80px, -80px, 0) rotate(-45deg);
    -webkit-transition:left 0.2s ease-out, top 0.05s 0.2s linear, -webkit-transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition:left 0.2s ease-out, top 0.05s 0.2s linear, -webkit-transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition:left 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition:left 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic-r.is-active .hamburger-inner::after{
    right:-80px;
    top:80px;
    -webkit-transform:translate3d(-80px, -80px, 0) rotate(45deg);
    transform:translate3d(-80px, -80px, 0) rotate(45deg);
    -webkit-transition:right 0.2s ease-out, top 0.05s 0.2s linear, -webkit-transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition:right 0.2s ease-out, top 0.05s 0.2s linear, -webkit-transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition:right 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition:right 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
}
/*
 * Slider
 */
.hamburger--slider .hamburger-inner{
    top:0;
}
.hamburger--slider .hamburger-inner::before{
    top:10px;
    -webkit-transition-property:opacity, -webkit-transform;
    transition-property:opacity, -webkit-transform;
    transition-property:transform, opacity;
    transition-property:transform, opacity, -webkit-transform;
    -webkit-transition-timing-function:ease;
    transition-timing-function:ease;
    -webkit-transition-duration:0.2s;
    transition-duration:0.2s;
}
.hamburger--slider .hamburger-inner::after{
    top:20px;
}
.hamburger--slider.is-active .hamburger-inner{
    -webkit-transform:translate3d(0, 10px, 0) rotate(45deg);
    transform:translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before{
    -webkit-transform:rotate(-45deg) translate3d(-5.7142857143px, -6px, 0);
    transform:rotate(-45deg) translate3d(-5.7142857143px, -6px, 0);
    opacity:0;
}
.hamburger--slider.is-active .hamburger-inner::after{
    -webkit-transform:translate3d(0, -20px, 0) rotate(-90deg);
    transform:translate3d(0, -20px, 0) rotate(-90deg);
}
/*
 * Slider Reverse
 */
.hamburger--slider-r .hamburger-inner{
    top:0;
}
.hamburger--slider-r .hamburger-inner::before{
    top:10px;
    -webkit-transition-property:opacity, -webkit-transform;
    transition-property:opacity, -webkit-transform;
    transition-property:transform, opacity;
    transition-property:transform, opacity, -webkit-transform;
    -webkit-transition-timing-function:ease;
    transition-timing-function:ease;
    -webkit-transition-duration:0.2s;
    transition-duration:0.2s;
}
.hamburger--slider-r .hamburger-inner::after{
    top:20px;
}
.hamburger--slider-r.is-active .hamburger-inner{
    -webkit-transform:translate3d(0, 10px, 0) rotate(-45deg);
    transform:translate3d(0, 10px, 0) rotate(-45deg);
}
.hamburger--slider-r.is-active .hamburger-inner::before{
    -webkit-transform:rotate(45deg) translate3d(5.7142857143px, -6px, 0);
    transform:rotate(45deg) translate3d(5.7142857143px, -6px, 0);
    opacity:0;
}
.hamburger--slider-r.is-active .hamburger-inner::after{
    -webkit-transform:translate3d(0, -20px, 0) rotate(90deg);
    transform:translate3d(0, -20px, 0) rotate(90deg);
}
/*
 * Spin
 */
.hamburger--spin .hamburger-inner{
    -webkit-transition-duration:0.3s;
    transition-duration:0.3s;
    -webkit-transition-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before{
    -webkit-transition:top 0.1s 0.34s ease-in, opacity 0.1s ease-in;
    transition:top 0.1s 0.34s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after{
    -webkit-transition:bottom 0.1s 0.34s ease-in, -webkit-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition:bottom 0.1s 0.34s ease-in, -webkit-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition:bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition:bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner{
    -webkit-transform:rotate(225deg);
    transform:rotate(225deg);
    -webkit-transition-delay:0.14s;
    transition-delay:0.14s;
    -webkit-transition-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before{
    top:0;
    opacity:0;
    -webkit-transition:top 0.1s ease-out, opacity 0.1s 0.14s ease-out;
    transition:top 0.1s ease-out, opacity 0.1s 0.14s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after{
    bottom:0;
    -webkit-transform:rotate(-90deg);
    transform:rotate(-90deg);
    -webkit-transition:bottom 0.1s ease-out, -webkit-transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition:bottom 0.1s ease-out, -webkit-transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition:bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition:bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/*
 * Spin Reverse
 */
.hamburger--spin-r .hamburger-inner{
    -webkit-transition-duration:0.3s;
    transition-duration:0.3s;
    -webkit-transition-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r .hamburger-inner::before{
    -webkit-transition:top 0.1s 0.34s ease-in, opacity 0.1s ease-in;
    transition:top 0.1s 0.34s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin-r .hamburger-inner::after{
    -webkit-transition:bottom 0.1s 0.34s ease-in, -webkit-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition:bottom 0.1s 0.34s ease-in, -webkit-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition:bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition:bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r.is-active .hamburger-inner{
    -webkit-transform:rotate(-225deg);
    transform:rotate(-225deg);
    -webkit-transition-delay:0.14s;
    transition-delay:0.14s;
    -webkit-transition-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin-r.is-active .hamburger-inner::before{
    top:0;
    opacity:0;
    -webkit-transition:top 0.1s ease-out, opacity 0.1s 0.14s ease-out;
    transition:top 0.1s ease-out, opacity 0.1s 0.14s ease-out;
}
.hamburger--spin-r.is-active .hamburger-inner::after{
    bottom:0;
    -webkit-transform:rotate(-90deg);
    transform:rotate(-90deg);
    -webkit-transition:bottom 0.1s ease-out, -webkit-transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition:bottom 0.1s ease-out, -webkit-transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition:bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition:bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner{
    -webkit-transition-duration:0.1s;
    transition-duration:0.1s;
    -webkit-transition-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before{
    -webkit-transition:top 0.1s 0.14s ease, opacity 0.1s ease;
    transition:top 0.1s 0.14s ease, opacity 0.1s ease;
}
.hamburger--squeeze .hamburger-inner::after{
    -webkit-transition:bottom 0.1s 0.14s ease, -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition:bottom 0.1s 0.14s ease, -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition:bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition:bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner{
    -webkit-transform:rotate(45deg);
    transform:rotate(45deg);
    -webkit-transition-delay:0.14s;
    transition-delay:0.14s;
    -webkit-transition-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before{
    top:0;
    opacity:0;
    -webkit-transition:top 0.1s ease, opacity 0.1s 0.14s ease;
    transition:top 0.1s ease, opacity 0.1s 0.14s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after{
    bottom:0;
    -webkit-transform:rotate(-90deg);
    transform:rotate(-90deg);
    -webkit-transition:bottom 0.1s ease, -webkit-transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition:bottom 0.1s ease, -webkit-transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition:bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition:bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/*
 * Vortex
 */
.hamburger--vortex .hamburger-inner{
    -webkit-transition-duration:0.3s;
    transition-duration:0.3s;
    -webkit-transition-timing-function:cubic-bezier(0.19, 1, 0.22, 1);
    transition-timing-function:cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after{
    -webkit-transition-duration:0s;
    transition-duration:0s;
    -webkit-transition-delay:0.1s;
    transition-delay:0.1s;
    -webkit-transition-timing-function:linear;
    transition-timing-function:linear;
}
.hamburger--vortex .hamburger-inner::before{
    -webkit-transition-property:top, opacity;
    transition-property:top, opacity;
}
.hamburger--vortex .hamburger-inner::after{
    -webkit-transition-property:bottom, -webkit-transform;
    transition-property:bottom, -webkit-transform;
    transition-property:bottom, transform;
    transition-property:bottom, transform, -webkit-transform;
}
.hamburger--vortex.is-active .hamburger-inner{
    -webkit-transform:rotate(765deg);
    transform:rotate(765deg);
    -webkit-transition-timing-function:cubic-bezier(0.19, 1, 0.22, 1);
    transition-timing-function:cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after{
    -webkit-transition-delay:0s;
    transition-delay:0s;
}
.hamburger--vortex.is-active .hamburger-inner::before{
    top:0;
    opacity:0;
}
.hamburger--vortex.is-active .hamburger-inner::after{
    bottom:0;
    -webkit-transform:rotate(90deg);
    transform:rotate(90deg);
}
/*
 * Vortex Reverse
 */
.hamburger--vortex-r .hamburger-inner{
    -webkit-transition-duration:0.3s;
    transition-duration:0.3s;
    -webkit-transition-timing-function:cubic-bezier(0.19, 1, 0.22, 1);
    transition-timing-function:cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after{
    -webkit-transition-duration:0s;
    transition-duration:0s;
    -webkit-transition-delay:0.1s;
    transition-delay:0.1s;
    -webkit-transition-timing-function:linear;
    transition-timing-function:linear;
}
.hamburger--vortex-r .hamburger-inner::before{
    -webkit-transition-property:top, opacity;
    transition-property:top, opacity;
}
.hamburger--vortex-r .hamburger-inner::after{
    -webkit-transition-property:bottom, -webkit-transform;
    transition-property:bottom, -webkit-transform;
    transition-property:bottom, transform;
    transition-property:bottom, transform, -webkit-transform;
}
.hamburger--vortex-r.is-active .hamburger-inner{
    -webkit-transform:rotate(-765deg);
    transform:rotate(-765deg);
    -webkit-transition-timing-function:cubic-bezier(0.19, 1, 0.22, 1);
    transition-timing-function:cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after{
    -webkit-transition-delay:0s;
    transition-delay:0s;
}
.hamburger--vortex-r.is-active .hamburger-inner::before{
    top:0;
    opacity:0;
}
.hamburger--vortex-r.is-active .hamburger-inner::after{
    bottom:0;
    -webkit-transform:rotate(-90deg);
    transform:rotate(-90deg);
}
/*-------------------------------------------------------*    Normalise
/*-------------------------------------------------------*/
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html{
    font-family:sans-serif;    /* 1 */
    -ms-text-size-adjust:100%;    /* 2 */
    -webkit-text-size-adjust:100%;    /* 2 */
}
/**
 * Remove default margin.
 */
body{
    margin:0;
}
/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary{
    display:block;
}
/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio, canvas, progress, video{
    display:inline-block;    /* 1 */
    vertical-align:baseline;    /* 2 */
}
/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]){
    display:none;
    height:0;
}
/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox &lt; 22.
 */
[hidden], template{
    display:none;
}
/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a{
    background-color:transparent;
}
/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active, a:hover{
    outline:0;
}
/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title]{
    border-bottom:1px dotted;
}
/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b, strong{
    font-weight:bold;
}
/**
 * Address styling not present in Safari and Chrome.
 */
dfn{
    font-style:italic;
}
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1{
    font-size:2em;
    margin:0.67em 0;
}
/**
 * Address styling not present in IE 8/9.
 */
mark{
    background:#ff0;
    color:#000;
}
/**
 * Address inconsistent and variable font size in all browsers.
 */
small{
    font-size:80%;
}
/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub, sup{
    font-size:75%;
    line-height:0;
    position:relative;
    vertical-align:baseline;
}
sup{
    top:-0.5em;
}
sub{
    bottom:-0.25em;
}
/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img{
    border:0;
}
/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root){
    overflow:hidden;
}
/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure{
    margin:1em 40px;
}
/**
 * Address differences between Firefox and other browsers.
 */
hr{
    box-sizing:content-box;
    height:0;
}
/**
 * Contain overflow in all browsers.
 */
pre{
    overflow:auto;
}
/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code, kbd, pre, samp{
    font-family:monospace, monospace;
    font-size:1em;
}
/* Forms
   ========================================================================== */
/**
 * Known limitation:by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue:affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button, input, optgroup, select, textarea{
    color:inherit;    /* 1 */
    font:inherit;    /* 2 */
    margin:0;    /* 3 */
}
/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button{
    overflow:visible;
}
/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button, select{
    text-transform:none;
}
/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button, html input[type="button"], input[type="reset"], input[type="submit"]{
    -webkit-appearance:button;    /* 2 */
    cursor:pointer;    /* 3 */
}
/**
 * Re-set default cursor for disabled elements.
 */
button[disabled], html input[disabled]{
    cursor:default;
    opacity:0.3;
}
button[disabled]:hover, html input[disabled]:hover{
    background-color:transparent;
    color:inherit;
}
/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner, input::-moz-focus-inner{
    border:0;
    padding:0;
}
/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input{
    line-height:normal;
}
/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"], input[type="radio"]{
    box-sizing:border-box;    /* 1 */
    padding:0;    /* 2 */
}
/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button{
    height:auto;
}
/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"]{
    -webkit-appearance:textfield;    /* 1 */
    /* 2 */
    box-sizing:content-box;
}
/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration{
    -webkit-appearance:none;
}
/**
 * Define consistent border, margin, and padding.
 */
fieldset{
    border:1px solid #c0c0c0;
    margin:0 2px;
    padding:0.35em 0.625em 0.75em;
}
/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend{
    border:0;    /* 1 */
    padding:0;    /* 2 */
}
/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea{
    overflow:auto;
}
/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE:the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup{
    font-weight:bold;
}
/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table{
    border-collapse:collapse;
    border-spacing:0;
}
td, th{
    padding:0;
}
/*-------------------------------------------------------*    Base
/*-------------------------------------------------------*/
.interior-page{
    margin-bottom:60px;
    background-image:-webkit-linear-gradient(top, rgba(255, 255, 255, 0), white 70px, white);
    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0), white 70px, white);
	padding-top:90px;
}
.page-content-container{
    line-height:1.7;
}
.page-content-container.col-md-9{
    padding-left:60px;
}
.arrow-left{
    width:0;
    height:0;
    border-top:25px solid transparent;
    border-bottom:25px solid transparent;
    border-right:25px solid #094d82;
}
/*-------------------------------------------------------*    Grid
/*-------------------------------------------------------*/
/*-------------------------------------------------------*    Typography
/*-------------------------------------------------------*/
*{
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}
body{
    font-family:"Open Sans", sans-serif;
    font-weight:400;
    font-size:16px;
    line-height:1.5;
    color:#444444;
}
h1, h2, h3, h4, h5, h6{
    color:#72705e;
    font-family:"Open Sans", serif;
    font-weight:600;
}
h1{
    font-size:36px;
    font-style:italic;
}
h2{
    font-size:28px;
}
h3{
    font-family:"Open Sans", sans-serif;
    font-weight:400;
}
h4{
    font-family:"Open Sans", sans-serif;
    font-weight:600;
    text-transform:uppercase;
}
p{
    margin:0 0 17px;
}
.nav, .navbar{
    font-weight:400;
}
.section-title{
    text-align:center;
    margin-bottom:30px;
}
.page-title{
    color:#0A72C0;
}
.headerSubsite .nav-sub ul li .verticalCont, .headerSubsite .nav-sub ul li a{
    width:100%;
}
/*-------------------------------------------------------*    Style tile
/*-------------------------------------------------------*/
.color-1{
    background-color:#003057;
    width:40%;
}
.color-2{
    background-color:#094d82;
    width:30%;
}
.color-3{
    background-color:#0A72C0;
    width:20%;
}
.color-4{
    background-color:#008da9;
    width:10%;
}
.color-5{
    background-color:#0AC0AD;
}
.color-6{
    background-color:#09B673;
}
.color-7{
    background-color:#eeedfb;
}
.color-8{
    background-color:#444444;
}
.color-swatches{
    display:table;
    border:1px solid #adadad;
    font-size:0;
}
.color-swatches div{
    display:table-cell;
}
.color-swatches.primary{
    width:100%;
}
.color-swatches.primary div{
    height:100px;
}
.color-swatches.secondary{
    width:25%;
}
.color-swatches.secondary div{
    height:75px;
}
.design-elements img{
    padding:15px 0;
}
.icon-styles{
    font-size:40px;
}
.section-spacer{
    padding-bottom:40px;
}
/*-------------------------------------------------------*    Navs
/*------------------------------------------------------*/
.navbar-container{
    top:-1px;
    -webkit-transition:all 0.4s linear;
    transition:all 0.4s linear;
    -webkit-backface-visibility:hidden;
    background-color:transparent;
    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.85)), to(rgba(255, 255, 255, 0.95)));
    background-image:-webkit-linear-gradient(top, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.95));
    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.95));
    border-bottom:1px solid #f3e7d1;
    background-color:rgba(243, 231, 209, 0.7);
}
.navbar-container.pinned{
    top:0;
    -webkit-transition:all 0.4s linear;
    transition:all 0.4s linear;
}
.navbar-container.unpinned{
    top:-100%;
    -webkit-transition:all 0.4s linear;
    transition:all 0.4s linear;
}
/*** BLOG STYLES ***/
.pnl-more-articles{
    margin-top:20px;
}
.pnl-more-articles a{
    border-bottom:none;
    font-weight:300;
    color:#000;
}
#avid-layout-full h1.header-living-better{
    font-family:'Roboto', sans-serif;
    font-size:50px;
    color:#ed5929;
    text-align:center;
    font-weight:300;
    padding:7px 0 12px 0;
    line-height:normal;
}
#avid-layout-full p.content-living-better{
    font-family:'Roboto', sans-serif;
    font-size:20px;
    color:#736e69;
    font-weight:300;
    text-align:center;
    line-height:25px;
}
#blog-home-wrapper{
    line-height:normal;
    min-height:600px;
}
.blog-nav{
    width:100%;
    margin:0 auto;
    padding:51px 0 0 0;
}
.blog-topics{
    margin:0 auto;
    text-align:center;
}
.blog-topics ul.blog-topics-list{
    margin:0 auto;
    display:inline-block;
    text-align:left;
    width:100%;
    border-top:1px solid #959595;
    border-bottom:1px solid #959595;
    padding-bottom:0 !important;
}
.blog-topics ul.blog-topics-list li.blog-topics-list-item{
    float:left;
    margin:0;
    padding:0 !important;
    position:relative;
    display:inline-block;
    width:auto;
    margin-left:0 !important;
    height:60px;
    margin-right:2.5%;
}
.blog-topics ul.blog-topics-list li.blog-topics-list-item .lnk-category a, .blog-topics ul.blog-topics-list li.blog-topics-list-item.first a{
    display:inline-block;
    font-family:'Arial', sans-serif;
    font-size:18px;
    color:#4a777e;
    line-height:15px;
    text-transform:uppercase;
}
.blog-topics ul.blog-topics-list li.blog-topics-list-item a{
    color:#4a777e;
    font-family:'Arial', sans-serif;
    font-size:18px !important;
    color:#4a777e !important;
    line-height:15px;
    text-decoration:none !important;
}
.blog-topics-list .blog-topics-list-item:nth-of-type(6) a{
    padding-left:0;
}
.blog-topics-list .blog-topics-list-item:nth-of-type(6){
    margin-right:0 !important;
}
.blog-topics ul.blog-topics-list li.blog-topics-list-item a:hover{
    text-decoration:underline !important;
}
.blog-topics-list-item .lnk-category a{
    display:block;
    margin:0px 0;
    padding-left:0px;
    line-height:61px !important;
    padding:0 0 0 35px;
}
.blog-topics-list-item .lnk-category a img{
    position:absolute;
    top:10px;
    left:0;
}
.blog-topics-list-item.first a{
    display:block;
    margin:23px 0;
}
.blog-topics ul.blog-topics-list li.blog-topics-list-item .lnk-category a:hover, .blog-topics ul.blog-topics-list li.blog-topics-list-item .lnk-category a.active, .blog-topics ul.blog-topics-list li.blog-topics-list-item.first a:hover, .blog-topics ul.blog-topics-list li.blog-topics-list-item.first a.active{
    text-decoration:underline !important;
}
.blog-topics ul.blog-topics-list li.blog-topics-list-item:hover ul.blog-sub-categories{
    display:block;
}
.blog-topics ul.blog-topics-list li.blog-topics-list-item ul.blog-sub-categories{
    float:none;
    display:none;
    width:221px;
    margin:0;
    position:absolute;
    top:60px;
    left:-59px;
    background:#FFF;
    border:1px solid #959595;
    border-radius:5px;
    padding:11px 0 0 0;
    text-align:center;
    z-index:5;
}
.blog-topics ul.blog-topics-list li.blog-topics-list-item ul.blog-sub-categories li.blog-sub-item{
    float:none;    /*padding:0 0 0 16px;*/
    display:block;
    font-size:12px;
}
.blog-topics ul.blog-topics-list li.blog-topics-list-item ul.blog-sub-categories li.blog-sub-item.first a{
    border-bottom:1px solid #fff;
    padding:0 0 19px 44px;
}
.blog-topics ul.blog-topics-list li.blog-topics-list-item ul.blog-sub-categories li.blog-sub-item a{
    font-family:'Roboto', sans-serif;
    font-size:15px;
    color:#736e69;
    padding:0 0 6px 0;
    margin:10px 16px 10px 16px;
    width:auto;
    display:inline-block;
    border-bottom:1px solid #fff;
}
.blog-topics ul.blog-topics-list li.blog-topics-list-item ul.blog-sub-categories li.blog-sub-item.first{
    padding:0;
}
.blog-topics ul.blog-topics-list li.blog-topics-list-item ul.blog-sub-categories li.blog-sub-item span{
    color:#ec5829;
    display:inline-block;
    font-size:10px;
    margin:0;
    padding:0 5px 0 0;
    width:auto;
}
.blog-topics ul.blog-topics-list li.blog-topics-list-item ul.blog-sub-categories li.blog-sub-item .tags{
    font-family:'Roboto', sans-serif;
    font-size:15px;
    color:#736e69;
    display:block;
    padding:0 0 38px 44px;
    margin:0;
    width:auto;
    border:none;
}
.blog-topics ul.blog-topics-list li.blog-topics-list-item ul.blog-sub-categories li.blog-sub-item .tags small{
    display:inline-block;
    color:#ec5829;
    font-size:16px;
    margin:0;
    padding:0 0 0 12px;
}
.divBlogArticle .pnl-header-image{
    max-height:300px;
    max-width:643px;
    width:643px;
    overflow:hidden;
    margin:0 0 30px 0;
}
.divBlogArticle .pnl-header-image img{
}
.divBlogArticle .pnl-header-title h2{
    color:#48777f !important;
    font-weight:bold !important;
    padding:0 !important;
    margin:0 !important;
    font-size:24px !important;
    line-height:28px !important;
    padding-bottom:7px !important;
}
.blog-article .pnl-header-image img{
    width:100%;
}
.blog-article .pnl-header-title h2{
    font-size:27px;
    color:#97c33c;
    padding:20px 0;
}
.blog-tag-list, .blog-article-related-articles{
    margin:10px auto;
    border-bottom:1px solid #C2C2C2;
    padding:35px 0;
}
#avid-layout-full .blog-tag-list h2, #avid-layout-full .blog-article-related-articles h2, .midle-content .blog-tag-list h2, .midle-content .blog-article-related-articles h2{
    color:#ed5929;
}
.blog-tag-list ul.blog-tags{
    list-style:none;
    overflow:hidden;
}
.blog-tag-list ul.blog-tags li.tag-item{
    float:left;
    margin:0 5px;
}
.blog-tag-list ul.blog-tags li.tag-item a{
    font-weight:400;
}
.blog-tag-list ul.blog-tags li.tag-item:before{
    content:none;
    margin:0;
    display:none;
}
.blog-article-related-articles .pnl-article{
    overflow:hidden;
    width:47%;
    text-align:center;
    display:inline-block;
    margin:0 2% 0 0;
}
.blog-article-related-articles .pnl-article .pnl-image{
    float:left;
    width:100%;
    background:#dadada;
}
.blog-article-related-articles .pnl-article .pnl-title{
    float:left;
    width:100%;
    display:block;
    font-size:16px;
    color:#48777f;
    font-weight:600;
}
.blog-article-related-articles .pnl-article .pnl-image img{
    max-width:100%;
}
.lnk-more-articles span.icon{
    color:#ed5929;
    font-size:14px;
    margin-right:10px;
}
.blog-pages, .doc-pages{
    padding:22px 0 0 0;
    margin:0 auto;
    text-align:center;
}
.blog-pages ul.blog-page-list, .doc-pages ul.doc-page-list{
    padding:0;
    display:inline-block;
    border:solid 1px #c3c3b9;
    border-radius:10px;    
    margin:0 auto;
}
.blog-pages ul.blog-page-list, .doc-pages ul.doc-page-list{
    margin:0 50px;
}
.blog-pages ul.blog-page-list li.page-button-item, .doc-pages ul.doc-page-list li.page-button-item{
    float:left;
    border-right:solid 1px #c3c3b9;
    display:inline-block;
    margin:0;
    line-height:normal;
    list-style-type:none;
}
.blog-pages ul.blog-page-list li.page-button-item.last, .doc-pages ul.doc-page-list li.page-button-item.last{
    border:none !important;
}
.blog-pages ul.blog-page-list li.page-button-item a.one, .doc-pages ul.doc-page-list li.page-button-item a.one{
    display:inline-block;
    font-family:'Roboto', sans-serif;
    font-size:20px;
    color:#736e69;
    margin:0;
    padding:12px 17px 16px 23px;
    line-height:18px;
}
.blog-pages ul.blog-page-list li.page-button-item a, .doc-pages ul.doc-page-list li.page-button-item a{
    text-decoration:none;
    display:inline-block;
    font-family:'Roboto', sans-serif;
    font-size:20px;
    color:#736e69;
    margin:0;
    padding:12px 17px 16px 23px;
    line-height:18px;
}
.blog-pages ul.blog-page-list li.page-button-item a:hover, .blog-pages ul.blog-page-list li.page-button-item a.active, .doc-pages ul.doc-page-list li.page-button-item a:hover, .doc-pages ul.doc-page-list li.page-button-item a.active{
    background:#ed5929;
    color:#FFF;
}
.blog-pages ul.blog-page-list li.page-button-item a.first:hover, .blog-pages ul.blog-page-list li.page-button-item a.first.active, .doc-pages ul.doc-page-list li.page-button-item a.first:hover, .doc-pages ul.doc-page-list li.page-button-item a.first.active{
    background:#ed5929;
    color:#FFF;
    border-radius:5px 0 0 5px;
}
.blog-pages ul.blog-page-list li.page-button-item a.last:hover, .blog-pages ul.blog-page-list li.page-button-item a.last.active, .doc-pages ul.doc-page-list li.page-button-item a.last:hover, .doc-pages ul.doc-page-list li.page-button-item a.last.active{
    background:#ed5929;
    color:#FFF;
    border-radius:0 5px 5px 0;
}
.blog-pages .arrow1, .doc-pages .arrow1{
    font-size:17px;
    padding:14px 0px 11px 0;
    color:#ec7d60;
    text-align:center;
    display:block;
    float:left;
    width:51px;
    border:solid 1px #c3c3b9;
    border-radius:5px;
    line-height:18px;
}
.blog-pages .arrow2, .doc-pages .arrow2{
    padding:14px 0px 11px 0;
    font-size:17px;
    color:#ec7d60;
    text-align:center;
    display:block;
    float:right;
    width:51px;
    border:solid 1px #c3c3b9;
    border-radius:5px;
    margin:0 8px 0 0;
    line-height:18px;
}
.blog-pages .btn-prev-next{
    text-decoration:none;
    border:solid 1px #c3c3b9;
    padding:16px 17px 16px 18px;
    border-radius:10px;
    display:inline-block;
    line-height:normal;
    color:#97c33c;
    vertical-align:top;
    font-size:12px;
}
.blog-pages .btn-prev-next.disabled{
    color:#dadada;
}
.blog-pages .btn-prev-next:hover{
    color:#fff;
    background-color:#97c33c;
}
.locWrapper{
    display:none;
}
.loc-links a{
    display:block;
    color:#444444;
}
.blog-pages .btn-prev-next.disabled:hover{
    color:#dadada;
    background-color:#fff;
}
.blog-article-list{
    width:100%;
    margin:0 auto;
    padding:49px 0 0 0;
}
.blog-article-list .pnl-no-results p{
    text-align:center;
}
.blog-article-list ul{
    float:left;
    display:inline-block;
    width:100%;
    margin-left:!important;
}
.blog-article-list ul li.blog-article-item{
    float:left;
    margin:12.5px 2% 20px 0 !important;
    display:inline-block;
    width:31.3%;
    padding-bottom:35px !important;
    border-bottom:none;
}
#ul-blog-posts-header{
    margin-top:33px;
}
#blog-article-list-header{
    padding:0;
}
#blog-article-list-header ul li.blog-article-item{
    width:49.3%;
    margin:0;
}
#blog-article-list-header ul li.blog-article-item.first{
    margin-right:1.4%;
}
.blog-article-list .blog-article{
    width:100%;
    max-width:300px;
    display:inline-block;
    padding:0;
    min-height:370px;
    overflow:hidden;
    position:relative;
}
.blog-article-list .blog-article .pnl-article-image{
    display:block;
    margin:0px 0 10px 0;
    z-index:10;
}
.pnl-article-icons{
    position:absolute;
}
.pnl-article-summary{
    text-align:center;
    color:#5a5a5a !important;
}
.blog-article-list .blog-article .pnl-article-image img{
    width:100%;
    height:auto;
}
.blog-article-list .blog-article .pnl-article-title{
    width:auto;
    font-family:'Roboto', sans-serif;
    font-size:20px;
    color:#736e69;
    line-height:25px;
    padding:0 18px 0 18px;
    margin:0;
    display:inline-block;
    width:100%;
    box-sizing:border-box;
}
.blog-article-list .blog-article .pnl-article-main-wrapper .article-date{
    color:#094d82;
    margin-bottom:10px;
    display:inline-block;
}
.blog-article-list .blog-article .pnl-article-title a{
    text-decoration:none;
}
.lnk-article-read-more{
    display:none;
}
.address a{
    color:#444444;
}
.btn-back{
    padding:10px;
    border-radius:6px;
    border:1px solid #ed5929;
    color:#736e69;
    font-size:14px !important;
    text-align:center;
    display:inline-block;
    border:1px solid #c3c3b9;
    min-width:200px;
    font-size:12px !important;
    padding:12px;
    width:75%;
}
.btn-back:hover{
    color:#fff;
    background:#ed5929;
}
.btn-back i{
    color:#ed5929;
    font-size:9px;
    padding-right:5px;
}
.btn-back:hover i{
    color:#fff;
}
.blog-signup .sign-up-complete h4{
    font-family:'Roboto', sans-serif;
    font-size:28px;
    color:#ed5929;
    font-weight:300;
    text-align:center;
    padding:0 11px 18px 0;
}
.blog-signup .sign-up-complete .botton{
    font-size:20px;
    color:#736e69;
    text-align:center;
    width:128px;
    border:solid 1px #c3c3b9;
    background:#FFF;
    outline:none;
    border-radius:5px;
    display:block;
    cursor:pointer;
    float:right;
    margin:0 33px 0 0;
    padding:12px 0 11px 0;
    line-height:18px;
}
.blog-signup .blog-signup-validator{
    float:left;
}
.left-content .blog-signup .sign-up, .right-content .blog-signup .sign-up, .left-content .blog-signup .sign-up-complete, .right-content .blog-signup .sign-up-complete{
    width:auto;
    background:#FFF;
    border-radius:0;
    padding:0 10px 0 10px;
}
.left-content .blog-signup .sign-up h4, .left-content .blog-signup .sign-up-complete h4, .right-content .blog-signup .sign-up h4, .right-content .blog-signup .sign-up-complete h4{
    text-align:left;
}
.left-content .blog-signup .sign-up span, .left-content .blog-signup .sign-up-complete span, .right-content .blog-signup .sign-up span, .right-content .blog-signup .sign-up-complete span{
    padding:0 0 11px 0;
}
.left-content .blog-signup .sign-up .textfield, .right-content .blog-signup .sign-up .textfield{
    width:auto;
    margin:0 0 15px 0;
}
.left-content .blog-signup .sign-up .textfield1, .right-content .blog-signup .sign-up .textfield1, .left-content .blog-signup .sign-up .textfield3, .right-content .blog-signup .sign-up .textfield3{
    width:16%;
    margin:0 0 15px 0;
}
.left-content .blog-signup .sign-up .textfield2, .right-content .blog-signup .sign-up .textfield2{
    width:75px;
    margin:0;
}
.left-content .blog-signup .sign-up .textfield4, .right-content .blog-signup .sign-up .textfield4{
    width:75px;
    margin:0 0 15px 0;
}
.left-content .blog-signup .sign-up .textfield, .left-content .blog-signup .sign-up .textfield4{
    width:75%;
}
.blog-signup .styled-select{
    border-radius:6px;
    padding:5px;
    background:url(../_img/arrow-down.png) no-repeat 97% 50% #ffffff;
    margin-bottom:20px;
}
.left-content .blog-signup .sign-up .botton, .right-content .blog-signup .sign-up .botton, .blog-signup .sign-up-complete .botton{
    float:none;
    padding:12px 0;
    font-size:15px;
    margin:0 auto;
}
.left-content .blog-signup .sign-up .botton, .right-content .blog-signup .sign-up .botton, .left-content .blog-signup .sign-up-complete .botton, .right-content .blog-signup .sign-up-complete .botton{
    float:left;
    width:77%;
}
span.lbl-zip-inline{
    display:none;
    padding-left:0;
}
.blog-signup.inline{
    display:inline-block;
    width:32.3%;
}
.blog-signup.inline .sign-up{
    margin-bottom:17px;
}
.blog-signup.inline .sign-up.small{
    margin-top:33px;
    padding:17px 0 14px;
}
.blog-signup.inline .textfield1, .blog-signup.inline .textfield3{
    width:21%;
}
.blog-signup.inline .textfield2{
    width:29%;
}
.blog-signup.inline .textfield4{
    display:inline-block;
    width:86%;
    margin:0;
}
.blog-signup.inline small{
    margin:14px 3px 0 3px;
}
.blog-signup.inline .lbl-zip-inline, .blog-signup.inline .lbl-birthdate, .blog-signup.inline .lbl-email{
    display:inline-block;
    width:45%;
    padding-left:4%;
}
.blog-signup.inline .lbl-zip-inline{
    padding-left:0;
}
.blog-signup.inline .lbl-zip{
    display:none;
}
.blog-signup.inline .clear.birthdate{
    display:none;
}
.blog-signup.inline .styled-select{
    display:inline-block;
    float:left;
    margin-left:4%;
    height:31px;
    width:50%;
}
.blog-signup.inline .styled-select select{
    width:109%;
}
#avid-layout-full .blog-signup.inline h4{
    font-family:'Roboto', sans-serif;
    font-size:27px;
    color:#ed5929;
    font-weight:300;
    text-align:center;
    padding:0 11px 18px 0;
}
.blog-signup.inline h4 br{
    display:none;
}
.blog-signup.inline .pnl-col-birthdate{
    overflow:hidden;
    width:75%;
    padding-left:4%;
    float:left;
    margin:0 0 15px 0;
}
.blog-signup.inline .pnl-col-birthdate{
    width:45%;
}
.blog-signup.inline .pnl-col-zip{
    width:50%;
    overflow:hidden;
    float:left;
    margin:0 0 15px 0;
}
.pnl-blog-banner{
    width:65.6%;
    height:360px;
    display:inline-block;
    float:left;
    border-radius:9px;
    margin:0 14px 17px 0;
}
.pnl-blog-banner img{
    width:100%;
}
.blog-article-list .pnl-no-results{
    margin:0 auto 100px 0;
}
.vld-signup{
    text-align:center;
    font-size:14px;
    clear:both;
}
.vld-signup ul{
    float:none;
}
.vld-signup ul li{
    text-align:left;
}
.blog-article-widget{
    max-width:95%;
}
.article-widget-content .lnk-read-more{
    display:block;
}
.article-widget-content .lnk-read-more i{
    color:#ed5929;
    font-size:15px;
    margin-right:10px;
}
.article-widget-content .lnk-read-more .read-more-text{
    border-bottom:1px solid #ed5929;
}
.blog-pnl-categories-mobile{
    display:none;
}
.pnl-article-info span{
    color:#96bfaf;
}
.article-title{
    color:#094d82;
    display:block;
    margin:10px 0;
    font-weight:bold;
    text-align:center;
}
div.divBlogArticleLeftCol div.lnk-category a{
    padding-left:40px;
    display:block;
}
div.divBlogArticleLeftCol div.lnk-category:first-child a{
    padding-left:;
}
div.divBlogArticleLeftCol div.lnk-category:nth-child(2){
    background-image:url(../_img/wellness_icon.png);
    background-position:0 43%;
    background-repeat:no-repeat;
}
div.divBlogArticleLeftCol div.lnk-category:nth-child(3){
    background-image:url(../_img/orthopedics.png);
    background-position:0 43%;
    background-repeat:no-repeat;
}
div.divBlogArticleLeftCol div.lnk-category:nth-child(4){
    background-image:url(../_img/primary_care.png);
    background-position:0 43%;
    background-repeat:no-repeat;
}
div.divBlogArticleLeftCol div.lnk-category:nth-child(5){
    background-image:url(../_img/heart_health.png);
    background-position:0 43%;
    background-repeat:no-repeat;
    margin-right:0;
}
.wellnessBlog.intro{
    text-align:center;
    margin-top:50px;
}
.wellnessBlog.intro img{
    margin:0 auto;
    display:block;
    text-align:center;
}
.wellnessBlog.intro h1{
    margin:0 auto !important;
    display:block !important;
    font-size:42px !important;
    text-transform:uppercase;
    color:#f97218 !important;
    font-family:'Didact Gothic', sans-serif;
    margin-top:30px !important;
}
.wellnessBlog.intro p{
    font-family:'Arapey', serif;
    font-style:italic;
    font-weight:400;
    font-size:27px !important;
    margin-top:25px;
    line-height:31px !important;
}
/*Wellness Blog BR Edits Section START*/
.fb_iframe_widget_fluid{
    display:inline-block !important;
}
.divBlogArticle .blog-article{
    margin-top:30px;
    border-top:3px solid #48777f;
}
.pnl-header-nav{
    border-bottom:3px solid #48777f;
    min-height:28px;
    display:none;
}
.pnl-header-nav .prev-post a, .pnl-header-nav .next-post a{
    color:#48777f !important;
    text-decoration:none !important;
}
.pnl-header-nav .prev-post:hover a, .pnl-header-nav .next-post:hover a{
    text-decoration:underline !important;
}
.pnl-article-info{
    padding:10px 0;
    min-height:20px;
}
.buct1{
    margin-top:25px;
}
.divBlogArticleLeftCol{
    margin-top:80px !important;
}
.divBlogArticleLeftCol .lnk-category{
    padding:15px 0;
    border-bottom:1px solid #f2f2f2;
}
.divBlogArticleLeftCol .lnk-category:last-of-type{
    border-bottom:0px;
}
.lnk-category a{
    color:#48777f !important;
    text-decoration:none !important;
    font-size:18px !important;
}
.link-category a{
    text-decoration:underline !important;
}
.pnl-header-image{
    padding:20px 0;
}
.spanTagHeader{
    color:#48777f !important;
    font-size:16px !important;
}
.blog-tags .tag-item a{
    color:#2b2b2b !important;
    text-decoration:none !important;
}
.blog-tags .tag-item a:hover{
    text-decoration:underline !important;
}
.pnl-related-articles{
    margin-top:20px;
}
.blog-article-related-articles .pnl-article .pnl-title{
    padding:20px 0;
}
.nav-primary&gt;ul&gt;li.active&gt;a:after{
    background:#96c0b1 !important;
}
.blog-article-related-articles h2{
    color:#48777f !important;
    text-transform:uppercase;
    border-bottom:1px solid #C2C2C2;
}
.share-sm .fb_iframe_widget iframe{
    top:0;
}
.share-sm span{
    display:inline-block;
    vertical-align:top;
}
.subsite-home .image-section{
    height:265px;
    position:relative;
    z-index:-1;
    background-size:cover;
}
.pnl-dept-location-header, #mobileSidebarList #sidebar-nav h4 {
    font-family:"Open Sans", sans-serif;
    font-weight:600;
    text-transform:uppercase;
    font-size:18px;
    border-bottom:2px solid #004D82;
    padding-bottom:5px;
    color:#444444;
}
.pnl-dept-locations-wrapper .pnl-dept-location{
    padding-bottom:15px;
}
.pnl-dept-locations-wrapper .pnl-dept-location h3{
    font-size:16px;
    font-weight:bold;
}
.pnl-location-phone a{
    text-decoration:none;
    color:#444444;
}
.pnl-location-contact a{
    text-decoration:none;
    color:#444444;
}
.avid-loc-col-inner .pnl-location{
    margin-bottom:50px;
}
.locationAddress a span {
    display: block;
}

.mobile-location-title, .mobile-sidebar-title {
    border-bottom: 1px solid #fff;
    width: 97%;
    position: relative;
   
}

#mobileSidebarList #sidebar-nav  a{
    color: white;
}
#mobileLocationList, #mobileSidebarList {
    color: white;
}

#mobileLocationList .locations-info-wrapper {
    color: #fff;
    font-size: 16px;
    padding: 10px 0;
}

.mobile-sidebar-title:empty {
   display: none;
}

.mobile-sidebar-title:empty {
   display: none;
}

#mobileLocationList .location-info {
    line-height: 24px;
}

#mobileLocationMenu a.phoneLink {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-weight: 100;
}

#mobileLocationList .location-info &gt; span {
    display: block;
}

#mobileLocationList .pnl-dept-icon {
    display: none;
}

#mobileLocationList .location-info.direction-link a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-style: italic;
}

#mobileLocationList h3 {
font-size:18px;
font-weight:600;
font-family:"Open Sans";
text-transform:uppercase;
margin-bottom:5px;

}

.mobile-contact-info + .long-desc-container h1 {
    padding-left: 15px;
}

#mobileLocationMenu, #mobileSidebarMenu{
    display: none;
}

#mobileLocationList{
line-height:.8cm;
font-size:0.9em;
font-weight:100;
font-family:"Open Sans";
display: block;
color:white;
}
#mobileLocationList .pnl-location-phone a, #mobileLocationList  .pnl-location-contact a, #mobileLocationMenu h3{
    color:white;
}

.loc-search-mobile {
    display: none;
}

@media (max-width: 991px) {
    #mobileLocationMenu {
       
        background-color: #093154;
        color: white;
        font-size: 20px;
        font-weight: 100;
        padding-left: 15px;
        width: 100%;
        display: block;
        overflow: hidden;
        height: auto;
      /*  position: absolute; */
        z-index:999;
        -webkit-transition: 1.5s;
        transition: 1.5s;


    }

       #mobileSidebarMenu {
    
        width: 100%;
        display: block;
        overflow: hidden;
        height: auto;
      /*  position: absolute; */
        z-index:999;
        -webkit-transition: 1.5s;
        transition: 1.5s;
    }

.mobile-sidebar-title,  #mobileSidebarList {
   background-color: #093154 ;
   color: white;
   font-size: 20px;
   font-weight: 100;
   margin: 0;
   width: 100%;
   padding: 10px 15px;
}

#mobileSidebarList #sidebar-nav h4 {
margin-top: 0px !important;
    padding-top: 20px !important;
}

#sidebar-nav {
    margin-top: 0 !important;
}

    div#mobileLocationMenu + #pnlLongDesc {
        margin-top: 65px;
    }

    #mobileLocationMenu.active, #mobileSidebarMenu.active {
        max-height: 10000px;
        -webkit-transition: 3s; /* Safari */
        transition: 3s;
    }

    #mobileLocationMenu.active .mobile-location-title:after, #mobileSidebarMenu.active .mobile-sidebar-title:after {
        content: "X";
        font-weight: 100;
        font-family: "Open Sans";
        display: inline-block;
        font-size: 22px;
    }

    #mobileLocationMenu .mobile-location-title:after {
        content: "\f107";
        font-family: FontAwesome;
        /* padding-left: 75%; */
        position: absolute;
        right: 0;
        font-size: 24px;
    }

    #mobileSidebarMenu .mobile-sidebar-title:after {
        content: "\f107";
        font-family: FontAwesome;
        /* padding-left: 75%; */
        position: absolute;
        right: 15px;
        font-size: 24px;
    }


    #pnlLongDesc {
        padding: 0 15px;
    }
}

@media (max-width: 767px){
	
	.loc-search-mobile {
		display: block;
	}
    #quickLinks {
        margin-top:25px;
     }
    .locations-left + .col-md-9.page-content-container {
        padding: 0;
    }
    #mobileLocationMenu .mobile-location-title, #mobileSidebarMenu .mobile-sidebar-title{
        border-bottom:none;
    }
    #mobileLocationMenu.active .mobile-location-title, #mobileSidebarMenu.active .mobile-sidebar-title{
        border-bottom:1px solid #fff;
    }
    #sidebar-nav .cd-navigation li{
        width:100% !important;
    }
    #mobileSidebarList #sidebar-nav  a#navheader{
        font-weight:bold;
    }
    .headerSubsite .nav-sub ul li{
        border-bottom:none !important;
    }
   .divRelatedHealthLibraryArticles {
     display:none;
    }   
}

/*Wellness Blog BR Edits Section END*/
@media(max-width:700px){
    .divBlogArticle .pnl-header-image img{
        margin-top:-50px;
    }
    .blog-article-list .blog-article{
        box-sizing:border-box;
        max-height:457px;
        min-height:457px;
    }
    .blog-article-list{
        padding:0;
    }
    .blog-topics ul.blog-topics-list li.blog-topics-list-item:first-child{
        width:100%;
    }
    .blog-topics ul.blog-topics-list li.blog-topics-list-item{
        width:50%;
        margin:0;
        padding:0 15px !important;
        box-sizing:border-box;
        border-bottom:1px solid #959595;
    }
    .blog-topics ul.blog-topics-list{
        margin-left:0 !important;
        padding:0px;
        box-sizing:border-box;
    }
    .blog-article-list .blog-article .pnl-article-image img{
        max-width:100%;
        min-height:auto;
        width:100%;
    }
    .blog-article-list .blog-article .pnl-article-image{
        min-height:auto;
        max-height:auto;
    }
    .blog-topics ul.blog-topics-list li.blog-topics-list-item:nth-child(2){
        background-position:15px 43%;
    }
    .blog-topics ul.blog-topics-list li.blog-topics-list-item:nth-child(3){
        background-position:15px 43%;
    }
    .blog-topics ul.blog-topics-list li.blog-topics-list-item:nth-child(4){
        background-position:15px 43%;
    }
    .blog-topics ul.blog-topics-list li.blog-topics-list-item:nth-child(5){
        background-position:15px 43%;
    }
    .blog-topics{
        padding:0 15px;
    }
    .divBlogArticle{
        width:100% !important;
        margin:0 !important;
        padding:0 15px !important;
        box-sizing:border-box;
    }
    .blog-article-related-articles .pnl-article .pnl-title{
        font-size:14px;
        padding:10px 0;
    }
    .divBlogTags{
        float:none !important;
        clear:none !important;
    }
    .blog-tag-list{
        padding:0 0 25px 0 !important;
    }
    /*Turning Side Menu into Dropdown*/
    .divBlogArticleLeftCol{
        float:none !important;
        width:100% !important;
        border:1px solid #f2f2f2;
        border-radius:8px;
        max-width:500px;
        margin:20px auto 0 auto !important;
    }
    .divBlogArticleLeftCol .lnk-category{
        padding:15px;
    }
    .divBlogArticleLeftCol div.lnk-category:first-child{
        display:block;
        background-image:url(/_img/dropdownMenu_arrow.png);
        background-repeat:no-repeat;
        background-position:97% 18px;
    }
    .divBlogArticleLeftCol div.lnk-category{
        display:none;
    }
    .main-top{
        padding:20px 0 0 0;
    }
    .blog-article-list ul{
        margin:0 !important;
    }
    .blog-article-list ul li.blog-article-item{
        width:50%;
        margin-right:0 !important;
    }
    .blog-article-list .blog-article{
        padding:0 15px;
    }
}



@media(max-width:460px){
    .blog-article-list ul li.blog-article-item{
        width:100%;
        margin-right:0 !important;
    }
    .blog-article-list .blog-article{
        max-width:100%;
    }
    .blog-article-list .blog-article .pnl-article-image{
        text-align:center;
    }
    .blog-article-list .blog-article .pnl-article-title{
        width:100%;
        text-align:center;
        padding:0;
    }
    .blog-topics ul.blog-topics-list li.blog-topics-list-item{
        width:100%;
    }
    .pnl-article-info span:last-child{
        display:block !important;
        float:none !important;
        margin:10px 0 0 0 !important;
    }
    .wellnessBlog.intro p{
        font-size:21px !important;
    }
    .wellnessBlog.intro h1{
        font-size:32px !important;
    }
    .blog-nav{
        padding:20px 0 0 0;
    }
}
/*Artificial Fix*/
.pnl-related-articles &gt; div.pnl-article{
    display:none;
}
.pnl-related-articles &gt; div.pnl-article:first-child{
    display:inline-block;
}
.pnl-related-articles &gt; div.pnl-article:nth-child(2){
    display:inline-block;
    vertical-align:top;
}

/***  MEDICAL PRACTICE STYLE ***/

.medicalGroupResultContainer{
    display:inline-block;
    width:29%;
    margin-right:4%;
    vertical-align:top;
    text-align:center;
    margin-bottom:4%;
    background-color:#FAF5ED;
}
.medicalGroupResultContainer .medicalGroupPhoto img{
    width:358px;
    max-width:100%;
}

@media (min-width:768px){
    .navbar-container.pinned{
        top:-1px;
        -webkit-transition:all 0.4s linear;
        transition:all 0.4s linear;
    }
    .navbar-container.unpinned{
        top:-110px;
        -webkit-transition:all 0.4s linear;
        transition:all 0.4s linear;
    }
}

@media (min-width:992px){
    .navbar-container.headroom--top{
        top:-1px;
        -webkit-transition:all 0.4s linear;
        transition:all 0.4s linear;
    }
    .navbar-container.headroom--top .main-nav .navbar-collapse &gt; .nav &gt; li{
        height:88px;
        -webkit-transition:all 0.4s ease-in-out;
        transition:all 0.4s ease-in-out;
    }
    .navbar-container.pinned{
        top:-1px;
        -webkit-transition:all 0.4s linear;
        transition:all 0.4s linear;
    }
    .navbar-container.unpinned{
        top:-41px;
        -webkit-transition:all 0.4s linear;
        transition:all 0.4s linear;
    }
    .navbar-container.headroom--not-top .main-nav .navbar-brand{
        padding:10px 15px;
        -webkit-transition:all 0.4s ease-in-out;
        transition:all 0.4s ease-in-out;
    }
    .navbar-container.headroom--not-top .main-nav .navbar-brand img{
        max-height:40px;
        -webkit-transition:all 0.4s ease-in-out;
        transition:all 0.4s ease-in-out;
    }
    .navbar-container.headroom--not-top .main-nav .navbar-collapse &gt; .nav &gt; li{
        height:60px;
        -webkit-transition:all 0.4s ease-in-out;
        transition:all 0.4s ease-in-out;
    }
    .error{
        padding-top:inherit;
    }


}

@media (min-width:1199px){
    .navbar-container.headroom--top .main-nav .navbar-brand{
        margin-top:-22px;
        -webkit-transition:all 0.4s ease-in-out;
        transition:all 0.4s ease-in-out;
    }
    .navbar-container.headroom--not-top .main-nav .navbar-brand{
        margin-top:0;
        -webkit-transition:all 0.4s ease-in-out;
        transition:all 0.4s ease-in-out;
    }
    .error{
        padding-top:inherit;
    }
}
.global-nav-collapse{
    min-height:0;
    border:none;
    margin:0 0 0 auto;
}
.global-nav-collapse .navbar-nav{
    width:100%;
    text-align:center;
    display:none;
}
.global-nav-collapse .navbar-nav &gt; li{
    display:inline-block;
    float:none;
}
.global-nav-collapse .nav li a{
    color:#939393;
    font-size:11px;
    padding-top:5px;
    padding-bottom:5px;
    line-height:30px;
    height:40px;
    text-decoration:none;
    text-transform:uppercase;
}
.global-nav-collapse .nav li a:hover{
    color:#083153;
    background-color:transparent;
}
.global-nav-collapse #global-nav-search{
    width:100%;
    max-width:800px;
    padding:0;
    text-align:center;
    margin:0 auto;
}
.global-nav-collapse #global-nav-search .input-group{
    width:100%;
    padding:0;
}
.global-nav-collapse #global-nav-search .input-group .btn{
    width:100%;
    height:40px;
    padding:5px 12px;
}
.global-nav-collapse #global-nav-search .form-control{
    margin:10px 0;
    min-width:400px;
    max-width:100%;
    border-width:1px;
    height:40px;
    background-color:rgba(255, 255, 255, 0.8);
    border:1px solid #939393;
    font-size:14px;
}
.global-nav-collapse #global-nav-search .btn{
    color:#fff;
    border:2px none;
    padding:7px 12px;
}
.global-nav-collapse #global-nav-search .btn:hover{
    background-color:#083153;
}
.navbar-right{
    margin:0;
}
.global-nav{
    margin-bottom:0;
    min-height:0;
    border:none;
    border-radius:0;
}
.global-nav .navbar-nav{
    width:100%;
    text-align:right;
    padding-right:15px;
}
.global-nav .navbar-nav &gt; li{
    display:inline-block;
    float:none;
    margin-bottom:6px;
}
.global-nav .nav{
    border-top:1px solid #939393;
}
.global-nav .nav li a{
    color:#939393;
    font-size:11px;
    padding-top:5px;
    padding-bottom:5px;
    line-height:30px;
    height:40px;
    text-decoration:none;
    text-transform:uppercase;
}
.global-nav .nav li a:hover{
    background-color:transparent;
    color:#083153;
}
.global-nav .nav li a:focus{
    background-color:transparent;
    color:#083153;
}
.global-nav .nav li a i{
    position:relative;
    top:4px;
    font-size:20px;
    margin-right:6px;
}
.global-nav .nav li.nav-break{
    color:#939393;
    padding-top:3px;
    padding-bottom:7px;
    padding-left:4px;
    padding-right:4px;
    line-height:30px;
    height:40px;
}
.global-nav .nav li .dropdown-menu a{
    text-transform:none;
}
.global-nav .nav li .dropdown-menu a:hover{
    color:#083153;
}
.global-nav .nav #search a i{
    margin-right:0;
    margin-left:6px;
}
.global-nav .nav #search a[aria-expanded="true"], .global-nav .nav #search a:focus{
    color:#083153;
    background-color:transparent;
}
.global-nav .nav #search.expanded a{
    background-color:transparent;
}
.global-nav .nav #search.expanded a:focus{
    background-color:transparent;
}
.global-nav .nav #about-us a[aria-expanded="true"] .caret{
    -webkit-transform:rotate(180deg);
    transform:rotate(180deg);
    -webkit-transition:all 0.35s ease-in-out;
    transition:all 0.35s ease-in-out;
}
.global-nav .active{
    background-color:#008da9;
    color:#003057;
}
.global-nav .dropdown-menu{
    background-color:#008da9;
}
.main-nav{
    border:none;
    margin-bottom:0;
}
.main-nav .navbar-header{
    width:100%;
}
.main-nav .navbar-brand{
    padding:10px 15px 20px;
    margin-top:-22px;
    height:auto;
    width:100%;
    -webkit-transition:all 0.4s ease-in-out;
    transition:all 0.4s ease-in-out;
}
.main-nav .navbar-brand img{
    max-height:58px;
    -webkit-transition:all 0.4s ease-in-out;
    transition:all 0.4s ease-in-out;
}
.main-nav .navbar-toggle{
    color:#0095b5;
    border-color:#0A72C0;
    padding:5px 10px;
    margin-right:0;
}
.main-nav #mobile-search{
    font-size:32px;
    border:none;
    padding:12px 0 0;
    margin:0 44px 0 0;
}
.main-nav .navbar-collapse{
    padding-right:0;
    padding-left:0;
}
.main-nav .navbar-collapse &gt; .nav &gt; li{
    height:88px;
}
.main-nav .navbar-collapse .nav &gt; li &gt; a{
    color:#094d82;
    font-weight:400;
    font-size:14px;
    font-style:normal;
    text-decoration:none;
    letter-spacing:1px;
    -webkit-transition:all 0.4s ease-in-out;
    transition:all 0.4s ease-in-out;
}
.main-nav .navbar-collapse .nav &gt; li &gt; a:hover{
    color:#97c33c;
    background-color:transparent;
}
.main-nav .navbar-collapse .nav &gt; li &gt; a:focus{
    background-color:transparent;
}
.main-nav .navbar-collapse .nav .dropdown.open &gt; a{
    color:#97c33c;
}
.main-nav #practices{
    min-width:130px;
}
.main-nav .container-fluid, .main-nav div[class*="col-"]{
    padding:0;
}
.main-nav .row{
    margin:0;
}
.main-nav .container-fluid{
    padding-left:55px;
    padding-right:18px;
}
.main-nav .hamburger{
    position:absolute;
    top:50%;
    right:15px;
    padding:0;
    margin-top:-12px;
    -webkit-transition:all 0.4s ease-in-out;
    transition:all 0.4s ease-in-out;
}
.main-nav .hamburger-box{
    width:24px;
}
.main-nav .hamburger-inner, .main-nav .hamburger-inner::before, .main-nav .hamburger-inner::after{
    width:24px;
    height:3px;
    background-color:#0095b5;
}
.main-nav .dropdown:hover .dropdown-menu, .main-nav .full-width.dropdown:hover .dropdown-menu{
    display:block;
    margin-top:0;
}
#bvmp-menu-item{
    min-width:150px;
}
.full-width.dropdown{
    position:static;
}
.full-width.dropdown .dropdown-menu{
    position:absolute;
    top:100%;
    left:0;
    right:0;
}
.open &gt; .dropdown-menu{
    visibility:visible;
    opacity:1;
    -webkit-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}
.nav .open &gt; a, .nav .open &gt; a:hover, .nav .open &gt; a:focus{
    background-color:transparent;
}
.dropdown-menu{
    visibility:hidden;
    opacity:0;
    display:block;
    -webkit-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
    font-size:16px;
    padding:30px;
    background-color:rgba(255, 255, 255, 0.95);
    border-top:4px solid #97c33c;
    border-right:none;
    border-bottom:none;
    border-left:none;
    border-radius:0;
}
.dropdown-menu li{
    padding:4px 0;
}
.dropdown-menu li a{
    color:#094d82;
    text-transform:none;
    text-decoration:none;
}
.dropdown-menu li a:hover{
    color:#97c33c;
    background-color:transparent;
}
.dropdown-menu li:last-child a{
    border-bottom:none;
}
.dropdown-menu .nav-justified li{
    padding:0;
}
.dropdown-menu .nav &gt; li &gt; a{
    padding:0;
}
.dropdown-menu h3{
    margin-top:0;
}
.dropdown-menu hr{
    margin:10px 0;
}
.dropdown-menu form{
    margin-bottom:0;
}
.dropdown-menu .select2-container--default{
    width:100% !important;
}
.dropdown-menu .select2-container--default .select2-selection--single{
    border-color:#939393;
}
.dropdown-menu .select2-container--default .select2-selection--single .select2-selection__placeholder{
    color:#444444;
    font-size:16px;
}
.dropdown-menu .select2-container--default .select2-selection--single .select2-selection__rendered{
    color:#444444;
    font-size:16px;
}
.dropdown-menu .select2-container--default .select2-selection--single .select2-selection__arrow b{
    border-color:#939393 transparent transparent transparent;
}
.dropdown-menu .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{
    border-color:#72705e transparent transparent transparent;
}
.dropdown-menu input[type="email"], .dropdown-menu input[type="search"], .dropdown-menu input[type="text"], .dropdown-menu input[type="tel"], .dropdown-menu input[type="url"], .dropdown-menu input[type="password"], .dropdown-menu textarea, .dropdown-menu select{
    height:40px;
    font-size:16px;
    font-weight:600;
    border:1px solid #939393;
}
.dropdown-menu input[type="email"]:focus, .dropdown-menu input[type="search"]:focus, .dropdown-menu input[type="text"]:focus, .dropdown-menu input[type="tel"]:focus, .dropdown-menu input[type="url"]:focus, .dropdown-menu input[type="password"]:focus, .dropdown-menu textarea:focus, .dropdown-menu select:focus{
    border:1px solid #72705e;
}
.dropdown-menu input[type="email"]::-webkit-input-placeholder, .dropdown-menu input[type="search"]::-webkit-input-placeholder, .dropdown-menu input[type="text"]::-webkit-input-placeholder, .dropdown-menu input[type="tel"]::-webkit-input-placeholder, .dropdown-menu input[type="url"]::-webkit-input-placeholder, .dropdown-menu input[type="password"]::-webkit-input-placeholder, .dropdown-menu textarea::-webkit-input-placeholder, .dropdown-menu select::-webkit-input-placeholder{
    color:#444444;
}
.dropdown-menu input[type="email"]::-moz-placeholder, .dropdown-menu input[type="search"]::-moz-placeholder, .dropdown-menu input[type="text"]::-moz-placeholder, .dropdown-menu input[type="tel"]::-moz-placeholder, .dropdown-menu input[type="url"]::-moz-placeholder, .dropdown-menu input[type="password"]::-moz-placeholder, .dropdown-menu textarea::-moz-placeholder, .dropdown-menu select::-moz-placeholder{
    /* Firefox 19+ */
    color:#444444;
}
.dropdown-menu input[type="email"]:-ms-input-placeholder, .dropdown-menu input[type="search"]:-ms-input-placeholder, .dropdown-menu input[type="text"]:-ms-input-placeholder, .dropdown-menu input[type="tel"]:-ms-input-placeholder, .dropdown-menu input[type="url"]:-ms-input-placeholder, .dropdown-menu input[type="password"]:-ms-input-placeholder, .dropdown-menu textarea:-ms-input-placeholder, .dropdown-menu select:-ms-input-placeholder{
    color:#444444;
}
.dropdown-menu input[type="email"]::placeholder, .dropdown-menu input[type="search"]::placeholder, .dropdown-menu input[type="text"]::placeholder, .dropdown-menu input[type="tel"]::placeholder, .dropdown-menu input[type="url"]::placeholder, .dropdown-menu input[type="password"]::placeholder, .dropdown-menu textarea::placeholder, .dropdown-menu select::placeholder{
    color:#444444;
}
.dropdown-menu .featured li a{
    font-size:1.4em;
}
.dropdown-menu .row{
    margin:0 -15px;
}
.dropdown-menu div[class*="col-"]{
    padding:0 15px;
}
.dropdown-menu div[class*="col-"] div[class*="col-"]{
    padding:0;
}
.breadcrumbs{
    padding:0 15px;
}
.breadcrumbs .nav li{
    display:inline-block;
}
.breadcrumbs .nav li:first-child a{
    padding-left:0;
    margin-left:0;
}
.breadcrumbs .nav li:not(:first-child):before{
    content:"&gt;";
    position:absolute;
    top:8px;
}
.breadcrumbs .nav li:not(.current) a{
    color:#444444;
}
.breadcrumbs .nav li a{
    font-size:14px;
    text-decoration:none;
    padding:10px 0 2px;
    margin-left:25px;
    margin-right:15px;
}
.breadcrumbs .nav li a:hover{
    color:#083153;
    background-color:transparent;
}
.sub-page-selector{
    margin:15px 0 20px;
}
.sub-page-selector .select2-container{
    width:100% !important;
}
.sub-page-selector .select2-container--default .select2-selection--single .select2-selection__rendered{
    font-size:16px;
}
#sidebar-nav{
    margin-top:32px;
}
#sidebar-nav h4 {
    padding-bottom:4px;
    border-bottom:2px solid #97c33c;
}
#sidebar-nav h4 a{
    color:#444444;
    text-decoration:none;
}
#sidebar-nav h4 a:hover{
    color:#083153;
}
#sidebar-nav .cd-navigation{
    font-size:0.9em;
    margin-bottom:0;
}
#sidebar-nav .cd-navigation li{
    margin-left:-15px;
    margin-right:-15px;
}
#sidebar-nav .cd-navigation a{
    color:#444444;
    display:block;
    line-height:1.2em;
    padding:10px 40px 10px 15px;
    text-decoration:none;
    border-bottom:2px solid transparent;
}
#sidebar-nav .cd-navigation a:hover{
    color:#083153;
    background-color:transparent;
}
#sidebar-nav .cd-navigation .sub-menu{
    padding:0 15px 20px;
}
#sidebar-nav .cd-navigation .sub-menu a{
    padding:10px 40px 10px 25px;
}
#sidebar-nav .cd-navigation .item-has-children &gt; a:hover::after, #sidebar-nav .cd-navigation .item-with-children &gt; a:hover::after{
    color:#083153;
}
#cancer-treatment #cancer-treatment-menu-parent{
    font-weight:600;
}
#cancer-treatment #linkSubNav{
    display:block;
}
#infusion-therapy #cancer-treatment-menu-parent, #infusion-therapy #infusion-therapy-link{
    font-weight:600;
}
#infusion-therapy #linkSubNav{
    display:block;
}
.pre-footer{
    color:#444444;
    padding-top:30px;
    padding-bottom:30px;
    background-color:#f3f2f0;
    border:none;
}
.pre-footer h4{
    font-size:1em;
}
.pre-footer .container-fluid{
    padding:0 70px;
}
.pre-footer .navigation-container{
    padding:0 85px;
}
.pre-footer .nav li a{
    color:#444444;
    padding:0;
    display:inline-block;
}
.pre-footer .nav li a:hover, .pre-footer .nav li a:focus{
    background-color:transparent;
    color:#444444;
    text-decoration:underline;
}
.pre-footer a:not(.btn){
    color:#444444;
}
.pre-footer a:not(.btn):hover{
    color:#444444;
}
.pre-footer .btn{
    color:#72705e;
    background-color:transparent;
    border:2px solid #72705e;
}
.pre-footer .btn:hover{
    color:#f3e7d1;
    background-color:#72705e;
}
.pre-footer .cd-navigation{
    margin:0;
}
.pre-footer .cd-navigation &gt; li{
    font-size:0.9em;
}
.pre-footer .cd-navigation a{
    display:inline-block;
    line-height:1.2em;
    margin:6px 16px 6px 0;
    color:#444444;
    text-decoration:none;
    border-bottom:none;
}
.pre-footer .cd-navigation a:hover{
    color:#083153;
    background-color:transparent;
}
.pre-footer .company-info{
    text-align:right;
}
.social-icons{
    margin:30px 0;
    text-align:right;
}
.social-icons a{
    display:inline-block;
    width:40px;
    height:40px;
    text-align:center;
    font-size:18px;
    line-height:40px;
    background-color:transparent;
    border:2px solid #72705e;
    border-radius:5em;
    margin-left:10px;
}
.social-icons a:hover{
    background-color:#72705e;
    -webkit-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}
.social-icons a:hover i{
    color:#f3e7d1;
    -webkit-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}
.social-icons a i{
    color:#72705e;
    position:relative;
    top:9px;
    -webkit-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}
.footer.navbar{
    padding:0 0 15px;
    margin-bottom:0;
    color:#939393;
    background-color:#f3f2f0;
    border:none;
}
.footer.navbar-inverse .navbar-nav{
    width:100%;
    text-align:center;
}
.footer.navbar-inverse .navbar-nav &gt; li &gt; a{
    color:#939393;
    text-transform:uppercase;
    text-decoration:none;
}
.footer.navbar-inverse .navbar-nav &gt; li &gt; a:hover{
    text-decoration:underline;
}
.footer .container-fluid{
    padding:15px 0;
    margin:0 70px;
    border-top:1px solid #939393;
}
.footer{
    color:#f3e7d1;
}
.footer .navbar{
    min-height:0;
}
.footer ul.navbar-nav{
    padding:6px 0 0;
}
.footer .navbar-nav &gt; li{
    padding:0 15px;
    font-size:12px;
    float:none;
    display:inline-block;
}
.footer .navbar-nav &gt; li &gt; a{
    padding:0;
}
.footer-nav a{
    color:#f3e7d1;
    font-style:normal;
    text-decoration:none;
    text-transform:uppercase;
    padding:0 15px;
}
.footer-nav a:hover{
    color:#fff;
    text-decoration:underline;
}
.footer-nav a:first-child{
    padding-left:0;
}
.main-content{
    /* set a min-height and a z-index to be sure that the main element completely covers the lateral menu */
    min-height:100%;
    position:relative;
    background-color:#fff;
    z-index:2;    /* Force Hardware Acceleration in WebKit */
    /*-webkit-transform:translateZ(0);*/
    -webkit-backface-visibility:hidden;
    -webkit-transition-property:-webkit-transform;
    transition-property:-webkit-transform;
    transition-property:transform;
    transition-property:transform, -webkit-transform;
    -webkit-transition-duration:0.4s;
    transition-duration:0.4s;
    -webkit-transition-timing-function:linear;    /* Safari and Chrome */
    transition-timing-function:linear;
}
.main-content.lateral-menu-is-open{
    /* translate to show the lateral menu - all content needs to be put in the .main-content to translate*/
    -webkit-transform:translateX(-260px);
    transform:translateX(-260px);
}
.navbar-container{
    width:100%;
    z-index:3;    /* Force Hardware Acceleration in WebKit */
    /*-webkit-transform:translateZ(0);*/
    -webkit-backface-visibility:hidden;
    -webkit-transition-property:-webkit-transform;
    transition-property:-webkit-transform;
    transition-property:transform;
    transition-property:transform, -webkit-transform;
    -webkit-transition-duration:0.4s;
    transition-duration:0.4s;
    -webkit-transition-timing-function:linear;    /* Safari and Chrome */
    transition-timing-function:linear;
}
.navbar-container.lateral-menu-is-open{
    /* translate to show the lateral menu */
    -webkit-transform:translateX(-260px);
    transform:translateX(-260px);
}
.navbar-container.is-fixed{
    position:fixed;
}
#cd-lateral-nav{
    position:fixed;
    height:100%;
    right:0;
    top:0;
    visibility:hidden;    /* the secondary navigation is covered by the main element */
    z-index:1;
    width:260px;
    background-color:#083153;
    overflow-y:auto;    /* Force Hardware Acceleration in WebKit */
    /*-webkit-transform:translateZ(0);*/
    -webkit-backface-visibility:hidden;
    -webkit-transition:-webkit-transform .4s 0s, visibility 0s .4s;
    -webkit-transition:visibility 0s .4s, -webkit-transform .4s 0s;
    transition:visibility 0s .4s, -webkit-transform .4s 0s;
    transition:transform .4s 0s, visibility 0s .4s;
    transition:transform .4s 0s, visibility 0s .4s, -webkit-transform .4s 0s;    /* this creates the subtle slide in animation of the navigation */
    -webkit-transform:translateX(80px);
    transform:translateX(80px);
}
#cd-lateral-nav #choose-profile{
    padding:0 32px;
    margin-top:20px;
    margin-bottom:10px;
}
#cd-lateral-nav .panel{
    border:none;
    background-color:transparent;
}
#cd-lateral-nav .panel-default &gt; .panel-heading{
    background-color:transparent;
    border:none;
    padding:0;
}
#cd-lateral-nav .panel-title{
    font-size:22px;
}
#cd-lateral-nav .panel-title a{
    color:#e0e0e0;
}
#cd-lateral-nav .panel-body{
    padding:0;
}
#cd-lateral-nav .panel-group .panel-heading + .panel-collapse &gt; .panel-body, #cd-lateral-nav .panel-group .panel-heading + .panel-collapse &gt; .list-group{
    border:none;
}
#cd-lateral-nav h2{
    padding-left:32px;
    margin-top:30px;
    margin-bottom:0;
}
.cd-navigation{
    margin:10px 0 16px;
    list-style:none;
    padding-left:0;
}
.cd-navigation .sub-menu{
    padding:0 10px 20px 15px;
    display:none;
}
.cd-navigation .sub-menu li{
    list-style:none;
}
#cd-lateral-nav a{
    display:block;
    line-height:1.2em;
    padding:6px 16px 6px 32px;
    color:#fff;
    text-decoration:none;
}
#cd-lateral-nav a:hover{
    background-color:#696969;
}
#cd-lateral-nav a.current{
    background-color:#696969;
    color:#FFF;
}
.no-touch #cd-lateral-nav a:hover{
    color:#FFF;
}
@media only screen and (min-width:768px){
    #cd-lateral-nav .cd-navigation{
        margin:10px 0 20px;
    }
}
#cd-lateral-nav.lateral-menu-is-open{
    -webkit-transform:translateX(0);
    transform:translateX(0);
    visibility:visible;
    -webkit-transition:-webkit-transform .4s 0s, visibility 0s 0s;
    -webkit-transition:visibility 0s 0s, -webkit-transform .4s 0s;
    transition:visibility 0s 0s, -webkit-transform .4s 0s;
    transition:transform .4s 0s, visibility 0s 0s;
    transition:transform .4s 0s, visibility 0s 0s, -webkit-transform .4s 0s;    /* smooth the scrolling on touch devices - webkit browsers */
    -webkit-overflow-scrolling:touch;
}

/* style menu items which have a submenu  */
.item-has-children &gt; a, .item-with-children &gt; a{
    position:relative;    /* this is the right arrow to show that the item has a submenu  */
}
.item-has-children &gt; a::after, .item-with-children &gt; a::after{
    content:"\f105";
    font-family:FontAwesome;
    display:block;
    height:20px;
    width:8px;
    position:absolute;
    top:50%;
    bottom:auto;
    -webkit-transform:translateY(-50%);
    transform:translateY(-50%);
    right:1em;
    background-size:8px 11px;
    -webkit-transition-property:-webkit-transform;
    transition-property:-webkit-transform;
    transition-property:transform;
    transition-property:transform, -webkit-transform;
    -webkit-transition-duration:0.2s;
    transition-duration:0.2s;
}
.item-has-children &gt; a.submenu-open::after, .item-with-children &gt; a.submenu-open::after{
    -webkit-transform:translateY(-50%) rotate(90deg);
    transform:translateY(-50%) rotate(90deg);
}
.pre-footer .item-has-children &gt; a::after, .pre-footer .item-with-children &gt; a::after{
    right:-15px;
}
/*-------------------------------------------------------*    Heroes
/*-------------------------------------------------------*/
.hero-overlay{
    background-color:#f3f2f0;
}
.hero-banner .container-fluid{
    padding:190px 70px 0;
}
.hero-banner .row{
    margin:0 -15px;
}
.hero-banner div[class*="col-"]{
    display:inline-block;
    text-align:center;
    padding:15px;
}
.hero-banner .full-height{
    height:100%;
}
.hero-banner .half-height{
    height:50%;
}
.hero-banner .vert-content{
    display:table-cell;
    vertical-align:middle;
}
.hero-banner h2{
    color:#fff;
    font-size:1.5em;
    line-height:1.4;
}
.hero-banner .conversion-row{
    height:140px;
}
.hero-banner .conversion-row a{
    display:table;
    width:100%;
    height:100%;
    color:rgba(255, 255, 255, 0.8);
    text-decoration:none;
    padding:0 10px;
}
.hero-banner .conversion-row i{
    display:block;
    font-size:3em;
    margin-top:-6px;
}
.hero-banner .conversion-row svg{
    height:60px;
    width:60px;
    margin-top:-10px;
    margin-bottom:-25px;
}
.hero-banner .conversion-row svg .st0{
    fill:#0095b5;
    -webkit-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}
.hero-banner .conversion-row h2{
    font-size:18px;
    color:#0095b5;
    margin-top:4px;
    margin-bottom:0;
    max-height:29px;
    -webkit-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}
.hero-banner .conversion-row div[class*="col-"]{}
.hero-banner .conversion-row div[class*="col-"] a{
    color:#0A72C0;
    /*color:rgba(10, 114, 192, 0.9);*/
}
.hero-banner .conversion-row div[class*="col-"] a:hover{
    color:#fff;
    background-color:rgba(151, 195, 60, 0.9);
}

.visible{
   display: inline-block;
}

.whiteimage {
    display: none;
}

.hero-banner .conversion-row div[class*="col-"] a:hover .visible
{
    display: none;
}

.hero-banner .conversion-row div[class*="col-"] a:hover .whiteimage {
    display: inline-block;
    -webkit-transition:opacity 0.3s ease-in-out;
    transition:opacity 0.3s ease-in-out;
}

.hero-banner .conversion-row div[class*="col-"] a:hover svg .st0{
    fill:#fff;
    -webkit-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}
.hero-banner .conversion-row div[class*="col-"] a:hover h2{
    color:#fff;
    /*-webkit-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;*/
}
.hero-banner .conversion-row div[class*="col-"] a .card-container{
    margin-top:-6px;
}
.hero-banner .conversion-row div[class*="col-"] a .card-container i{
    position:absolute;
    margin-top:-11px;
    margin-left:-60px;
    display:inline-block;
}
.hero-banner .conversion-row div[class*="col-"] a .card-container h2{
    display:inline-block;
    margin-top:0;
    max-height:none;
}
.hero-row{
    height:435px;
}
.hero-row div[class*="col-"] &gt; a{
    display:table;
    height:100%;
    width:100%;
    text-decoration:none;
}
.hero-row div[class*="col-"] h2{
    margin-top:0;
}
.hero-row div[class*="col-"] .learn-more{
    position:absolute;
    bottom:20px;
    right:30px;
}
.hero-row div[class*="col-"]:nth-of-type(1) .bkg-image{
    background-image:url("../img/farmer.jpg");
    background-size:cover;
    background-repeat:no-repeat;
    background-position:center;
}
.hero-row div[class*="col-"]:nth-of-type(1) .vert-content{
    color:#444444;
    font-size:22px;
    vertical-align:bottom;
    text-align:right;
    padding:30px 30px 10px;
    /*background-image:-webkit-linear-gradient(bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6) 40%, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
    background-image:linear-gradient(to top, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6) 40%, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));*/
}
.hero-row div[class*="col-"]:nth-of-type(1) .vert-content h2{
    color:#fff;
    font-size:1.8em;
    font-style:italic;
}
.hero-row div[class*="col-"]:nth-of-type(2) &gt; a:hover .bkg-image{
    -webkit-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}
.hero-row div[class*="col-"]:nth-of-type(2) &gt; a:hover .vert-content{
    background-color:rgba(9, 77, 130, 0.7);
    -webkit-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}
.hero-row div[class*="col-"]:nth-of-type(2) &gt; a:hover .btn{
    color:#97c33c;
    background-color:#fff;
}
.hero-row div[class*="col-"]:nth-of-type(2) .bkg-image{
    background-image:url("../img/stock-photo-87947991-mature-african-american-couple-riding-bikes-in-park.jpg");
    background-size:cover;
    background-repeat:no-repeat;
    background-position:center;
}
.hero-row div[class*="col-"]:nth-of-type(2) .bkg-image img{
    max-width:80%;
    max-height:60%;
}
.hero-row div[class*="col-"]:nth-of-type(2) .vert-content{
    color:#fff;
    background-image:-webkit-radial-gradient(rgba(9, 77, 130, 0.9), rgba(9, 77, 130, 0.8));
    background-image:radial-gradient(rgba(9, 77, 130, 0.9), rgba(9, 77, 130, 0.8));
    background-color:rgba(9, 77, 130, 0);
    -webkit-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out; 
}
.hero-row div[class*="col-"]:nth-of-type(2) .vert-content img{
    margin:0 auto;
}
.hero-row div[class*="col-"]:nth-of-type(2) .btn{
    color:#fff;
    background-color:transparent;
    border:2px solid #fff;
}
.hero-row div[class*="col-"]:nth-of-type(3) &gt; a:hover .vert-content{
    background-color:rgba(255, 255, 255, 0.5);
    -webkit-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}
.hero-row div[class*="col-"]:nth-of-type(3) &gt; a:hover .btn{
    color:#fff;
    background-color:#0A72C0;
}
.hero-row div[class*="col-"]:nth-of-type(3) .bkg-image{
    background-image:url("../img/stock-photo-35024796-healthy-lifestyle.jpg");
    background-size:cover;
    background-repeat:no-repeat;
    background-position:center;
}
.hero-row div[class*="col-"]:nth-of-type(3) .vert-content{
    background-image:-webkit-radial-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
    background-image:radial-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
    background-color:rgba(255, 255, 255, 0);
    -webkit-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}
.hero-row div[class*="col-"]:nth-of-type(3) .vert-content h2{
    color:#094d82;
    font-size:2em;
    font-weight:300;
    margin-bottom:60px;
}
.hero-row div[class*="col-"]:nth-of-type(3) .vert-content h2 span{
    font-weight:600;
}
.hero-row div[class*="col-"]:nth-of-type(3) .btn{
    color:#0A72C0;
    background-color:transparent;
    border:2px solid #0A72C0;
}
.hero-row div[class*="col-"]:nth-of-type(4) .select2-container--default .select2-selection--single{
    background-color:transparent;
    -webkit-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}
.hero-row div[class*="col-"]:nth-of-type(4) .select2-container--default .select2-selection--single .select2-selection__placeholder{
    color:#fff;
    -webkit-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}
.hero-row div[class*="col-"]:nth-of-type(4) .select2-container--default .select2-selection--single .select2-selection__arrow b{
    border-color:#fff transparent transparent transparent;
    -webkit-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}
.hero-row div[class*="col-"]:nth-of-type(4):hover .select2-container--default .select2-selection--single{
    background-color:#fff;
    -webkit-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}
.hero-row div[class*="col-"]:nth-of-type(4):hover .select2-container--default .select2-selection--single .select2-selection__placeholder{
    color:#083153;
    -webkit-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}
.hero-row div[class*="col-"]:nth-of-type(4):hover .select2-container--default .select2-selection--single .select2-selection__arrow b{
    border-color:#083153 transparent transparent transparent;
    -webkit-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}
.hero-row div[class*="col-"]:nth-of-type(4) .bkg-image{
    background-color:rgba(0, 48, 87, 0.8);
}
.hero-row div[class*="col-"]:nth-of-type(4) .vert-content{
    color:#fff;
    background-image:url("../img/compass.png");
    background-size:cover;
    background-repeat:no-repeat;
    background-position:center;
}
.hero-row .bkg-image{
    display:table;
    height:100%;
    width:100%;
}
.hero-row .vert-content{
    color:#0A72C0;
}
.select2-container{
    min-width:240px;
}
.select2-container--default .select2-results__option{
    color:#72705e;
    -webkit-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}
.select2-container--default .select2-results__option[aria-selected=true]{
    background-color:#f3e7d1;
    -webkit-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}
.select2-container--default .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-results__option--highlighted[aria-selected=true]{
    background-color:#0A72C0;
    -webkit-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}
.interior-hero-banner{
    height:417px;
    margin-bottom:-130px;
    background-image:-webkit-linear-gradient(left, #f3f2f0, rgba(243, 242, 240, 0.7) 40%, rgba(243, 242, 240, 0) 60%, rgba(243, 242, 240, 0)), url("../img/stock-photo-21668101-breast-cancer-survivor-and-supportive-husband-at-charity-awareness-race (1).jpg");
    background-image:linear-gradient(to right, #f3f2f0, rgba(243, 242, 240, 0.7) 40%, rgba(243, 242, 240, 0) 60%, rgba(243, 242, 240, 0)), url("../img/stock-photo-21668101-breast-cancer-survivor-and-supportive-husband-at-charity-awareness-race (1).jpg");
    background-size:cover;
    background-repeat:no-repeat;
    background-position:center top;
}
.interior-hero-banner .interior-hero-content, .interior-hero-banner .container, .interior-hero-banner .row{
    height:100%;
}
.interior-hero-banner div[class*="col-"]{
    display:table;
    height:100%;
    width:100%;
    padding-bottom:15px;
}
.interior-hero-banner .page-title-container{
    display:block;
    height:100%;
    vertical-align:middle;
    color:#72705e;
    font-size:22px;
    padding-top:135px;
}
.interior-hero-banner .page-title{
    display:inline-block;
    font-size:2em;
    color:#094d82;
    font-style:normal;
    text-transform:uppercase;
    border-bottom:2px solid #97c33c;
    padding-bottom:10px;
    padding-right:60px;
    margin-bottom:14px;
    margin-top:100px;
}

@media screen and (max-width: 1260px){
    .Plastic-Surgery-Aesthetics-of-Northwest-Ohio .interior-hero-banner div.full-banner {
        background-position: center;
    }
}

@media screen and (max-width: 375px){
    .Plastic-Surgery-Aesthetics-of-Northwest-Ohio .interior-hero-banner div.full-banner {
        background-position: -390px center;
    }
}

/*-------------------------------------------------------*    CTAs
/*-------------------------------------------------------*/
.cta{
    background-color:#094d82;
    padding:0 0 20px;
}
.cta .section{
    padding:20px 0;
}
.cta .content{
    padding-top:40px;
}
/*-------------------------------------------------------*    Content Blocks
/*-------------------------------------------------------*/
.content-block{
    padding:30px 15px 60px;
}
.content-block .content-container{
    padding:30px 15px 60px;
}
.content-block .content-container .btn{
    margin-top:20px;
    color:#fff;
    background-color:transparent;
    border:2px solid #fff;
}
.content-block .content-container .btn:hover{
    color:#083153;
    background-color:#fff;
}
.content-block .content-item{
    padding:15px 0;
}
.content-block .btn{
    margin-top:10px;
}
.homepage-intro, .homepage-about{
    padding:60px 15px 60px;
}
.homepage-intro h2, .homepage-about h2{
    margin-top:0;
}
.homepage-news{
    padding:0 15px;
}
.homepage-news div[class*="col-"]{
    text-align:left;
}
.homepage-news div[class*="col-"].text-right{
    text-align:right;
}
.homepage-news div[class*="col-"] div[class*="col-"]{
    padding:0 15px;
}
.homepage-news .image-container{
    height:100%;
    background:transparent url("../img/people-1.jpg") no-repeat scroll center;
    background-size:cover;
    margin-left:-15px;
    margin-right:-15px;
}
.homepage-news .section-title{
    margin-top:0;
}
.homepage-news .btn{
    margin-top:20px;
    color:#fff;
    background-color:transparent;
    border:2px solid #fff;
}
.homepage-news .btn:hover{
    color:#083153;
    background-color:#fff;
}
.homepage-classes{
    padding:0 15px;
    background-color:#e9e9e9;
}
.homepage-classes .image-container{
    height:100%;
    background:transparent url("../img/people-2.jpg") no-repeat scroll center;
    background-size:cover;
    margin-left:-15px;
    margin-right:-15px;
}
.card{
    padding:30px;
    background-color:rgba(243, 231, 209, 0.4);
    border:none;
}
.card.large{
    height:400px;
}
.card-container div[class*="col-"]{
    padding:7.5px;
}
.doctor-card{
    display:inline-block;
    width:100%;
    padding:0;
    margin:15px 0; 
}
.doctor-card a{
    text-decoration:none;
    border-bottom:2px solid transparent;
    padding-bottom:2px;
}
.doctor-card a:hover{
    border-color:#0A72C0;
}
.doctor-card .doctor-photo{
    display:inline-block;
    padding:0;
    background:transparent url("../img/doctor-1.jpg") no-repeat scroll center;
    background-size:cover;
}
.doctor-card .doctor-info{
    display:inline-block;
    padding:0;
}
.doctor-card .doctor-info .row{
    margin:0;
}
.doctor-card .doctor-info div[class*="col-"]{
    padding:0;
}
.doctor-card .doctor-info div[class*="col-"]:first-of-type{
    padding:30px;
}
.doctor-card .doctor-name{
    margin-top:0;
    text-transform:none;
    font-weight:600;
}
.doctor-card .doctor-name a{
    text-decoration:none;
}
.doctor-card .doctor-specialty{
    font-size:1.2em;
    margin-bottom:10px;
}
.doctor-card .doctor-phone{
    font-size:1.4em;
    font-weight:600;
    margin-top:8px;
}
.doctor-card .doctor-profile-link{
    padding:0;
}
.doctor-card .doctor-profile-link a{
    display:block;
    padding:15px;
    color:#fff;
    text-align:center;
    text-decoration:none;
    text-transform:uppercase;
    font-weight:600;
    background-color:#0A72C0;
    border-bottom:none;
}
.doctor-card .doctor-profile-link a:hover{
    color:#fff;
    border-color:#094d82;
    background-color:#094d82;
}
.doctor-card .bvhs-badge{
    position:absolute;
    top:0;
    right:0;
    color:#fff;
    font-weight:600;
    font-size:0.9em;
    text-align:center;
        background-color: rgb(152 194 61);
    padding:8px;
}
.doctor-card .bvhs-badge div[class*="col-"]{
    padding:0;
}
.doctor-card .bvhs-badge .img-responsive{
    margin:0 auto;
    max-width:24px;
    margin-bottom:3px;
}
.doctor-card .maps-link{
    display:inline-block;
    text-decoration:none;
    margin-top:8px;
}
#find-a-doc .select2-container{
    width:100% !important;
}
#find-a-doc .select2-container--default .select2-selection--single .select2-selection__rendered{
    font-size:16px;
}
#find-a-doc .filter-container .btn{
    height:40px;
    padding:9px 12px;
}
#find-a-doc .results-container{
    margin-top:30px;
}
.inline-conversions{
    margin:50px -15px;
}
.bottom-conversions div[class*="col-"]{
    padding:0;
}
.conversion-container{
    color:#fff;
    height:100%;
    padding:40px 30px;
    background-color:#003057;
}
.conversion-container h2{
    color:#fff;
    font-size:1.6em;
    font-weight:300;
    font-style:italic;
    text-align:left;
    border-bottom:4px solid #97c33c;
    padding-bottom:6px;
    margin-top:0;
    margin-bottom:20px;
}
.conversion-container .btn{
    color:#fff;
    background-color:transparent;
    border:2px solid #fff;
}
.conversion-container .btn:hover{
    color:#083153;
    background-color:#fff;
}
#conversion-2{
    background-color:#094d82;
}
#conversion-3{
    background-color:#0A72C0;
}
.homepage-news{
    padding:15px 70px 60px;
}
.homepage-news p:last-of-type{
    margin-bottom:0;
}
#news-block, #classes-block, #homepage-cta-3{
    color:#fff;
    padding:0 15px;
}
#news-block a:not(.btn), #classes-block a:not(.btn), #homepage-cta-3 a:not(.btn){
    color:#97c33c;
    font-weight:600;
    text-decoration:none;
    border-bottom:2px solid transparent;
}
#news-block a:not(.btn):hover, #classes-block a:not(.btn):hover, #homepage-cta-3 a:not(.btn):hover{
    border-color:#97c33c;
}
#news-block h3, #classes-block h3, #homepage-cta-3 h3{
    color:#fff;
}
#news-block .content-container, #classes-block .content-container, #homepage-cta-3 .content-container{
    height:100%;
    padding:0;
}
#news-block .content-container &gt; .row, #classes-block .content-container &gt; .row, #homepage-cta-3 .content-container &gt; .row{
    height:100%;
    padding:25px 15px 30px;
    margin:0;
}
#news-block .content-item, #classes-block .content-item, #homepage-cta-3 .content-item{
    padding:0;
}
#news-block .section-title, #classes-block .section-title, #homepage-cta-3 .section-title{
    color:#fff;
    font-weight:400;
    font-style:italic;
    text-align:left;
    border-bottom:4px solid #97c33c;
    padding-bottom:6px;
    margin-bottom:20px;
}
#news-block, #classes-block, #homepage-cta-3{
    font-size:0.9em;
    color:#444444;
}
#news-block h2, #classes-block h2, #homepage-cta-3 h2{
    font-size:1.5em;
}
#news-block h3, #classes-block h3, #homepage-cta-3 h3{
    font-size:1em;
    line-height:1.4;
    text-transform:none;
    margin-top:0;
    margin-bottom:14px;
}
#news-block h3 a:not(.btn), #classes-block h3 a:not(.btn), #homepage-cta-3 h3 a:not(.btn){
    color:#fff;
}
#news-block .content-container &gt; .row, #classes-block .content-container &gt; .row, #homepage-cta-3 .content-container &gt; .row{
    padding:0;
}
#news-block .content-container &gt; .row div[class*="col-"], #classes-block .content-container &gt; .row div[class*="col-"], #homepage-cta-3 .content-container &gt; .row div[class*="col-"]{
    height:100%;
}
#news-block .content-section, #classes-block .content-section, #homepage-cta-3 .content-section{
    text-align:center;
    background-color:#094d82;
    color:#fff;
    padding:30px 30px 60px;
}
#news-block .section-title, #classes-block .section-title, #homepage-cta-3 .section-title{
    color:#97c33c;
    text-align:center;
    font-style:normal;
    font-weight:600;
    text-transform:uppercase;
    border-bottom:none;
    padding-bottom:0;
    margin-bottom:14px;
}
#news-block .date, #classes-block .date, #homepage-cta-3 .date{
    color:#97c33c;
    margin-bottom:14px;
}
#news-block .view-all, #classes-block .view-all, #homepage-cta-3 .view-all{
    position:absolute;
    display:block;
    bottom:24px;
    width:100%;
    margin-left:-30px;
}
#news-block .view-all a, #classes-block .view-all a, #homepage-cta-3 .view-all a{
    color:#97c33c;
    border-color:#97c33c;
}
#news-block .view-all a:hover, #classes-block .view-all a:hover, #homepage-cta-3 .view-all a:hover{
    color:#799c30;
    border-color:#799c30;
}
#news-block .arrow-left, #classes-block .arrow-left, #homepage-cta-3 .arrow-left{
    position:absolute;
    right:0;
    top:25px;
}
#news-block .image-section{
    background:#f3f2f0 url("../img/pavilion.jpg") no-repeat scroll left center;
    background-size:cover;
}
#classes-block .image-section{
    background:#f3f2f0 url("../img/picnic-family.jpg") no-repeat scroll left center;
    background-size:cover;
}
#homepage-cta-3{}
#homepage-cta-3 .content-container{
    background:#f3f2f0 url("../img/clinic-doctor-health-hospital.jpg") no-repeat scroll center;
    background-size:cover;
}
#homepage-cta-3 .content-container &gt; .row{
    background-color:rgba(10, 114, 192, 0.9);
    -webkit-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}
#homepage-cta-3 .content-container &gt; .row:hover{
    background-color:rgba(10, 114, 192, 0.95);
    -webkit-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}
#work-at .content-block{
    padding:90px 15px 120px;
}
/*-------------------------------------------------------*    Feeds
/*-------------------------------------------------------*/
.feed-block{
    padding:20px 0px 40px;
}
/*-------------------------------------------------------*    Buttons
/*-------------------------------------------------------*/
.btn{
    text-decoration:none;
    white-space:normal;
    text-transform:uppercase;
    font-weight:600;
}
.btn-default{
    color:#fff;
    background-color:#0A72C0;
    border:none;
}
.btn-default:hover{
    color:#fff;
    background-color:#094d82;
}
/*-------------------------------------------------------*    Forms
/*-------------------------------------------------------*/
input, textarea, select{
    margin-bottom:1.5rem;
}
figure, form{}
input[type="email"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"], textarea, select{
    height:40px;
    font-size:16px;
    font-weight:700;
    padding:0 10px;
    background-color:#fff;
    border:2px solid #72705e;
    box-shadow:none;
    box-sizing:border-box;
}
input[type="email"]::-webkit-input-placeholder, input[type="search"]::-webkit-input-placeholder, input[type="text"]::-webkit-input-placeholder, input[type="tel"]::-webkit-input-placeholder, input[type="url"]::-webkit-input-placeholder, input[type="password"]::-webkit-input-placeholder, textarea::-webkit-input-placeholder, select::-webkit-input-placeholder{
    color:#444444;
}
input[type="email"]::-moz-placeholder, input[type="search"]::-moz-placeholder, input[type="text"]::-moz-placeholder, input[type="tel"]::-moz-placeholder, input[type="url"]::-moz-placeholder, input[type="password"]::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder{
    /* Firefox 19+ */
    color:#444444;
}
input[type="email"]:-ms-input-placeholder, input[type="search"]:-ms-input-placeholder, input[type="text"]:-ms-input-placeholder, input[type="tel"]:-ms-input-placeholder, input[type="url"]:-ms-input-placeholder, input[type="password"]:-ms-input-placeholder, textarea:-ms-input-placeholder, select:-ms-input-placeholder{
    color:#444444;
}
input[type="email"]::placeholder, input[type="search"]::placeholder, input[type="text"]::placeholder, input[type="tel"]::placeholder, input[type="url"]::placeholder, input[type="password"]::placeholder, textarea::placeholder, select::placeholder{
    color:#444444;
}
input[type="email"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"], textarea{
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
}
textarea{
    min-height:65px;
    padding-top:6px;
    padding-bottom:6px;
}
input[type="email"]:focus, input[type="search"]:focus, input[type="text"]:focus, input[type="tel"]:focus, input[type="url"]:focus, input[type="password"]:focus, textarea:focus, select:focus{
    border:2px solid #696969;
    outline:0;
}
label, legend{
    margin-bottom:.5rem;
    font-weight:600;
}
fieldset{
    padding:0;
    border-width:0;
    margin-bottom:1.5rem;
}
input[type="checkbox"], input[type="radio"]{
    display:inline;
    margin-right:.5em;
}
label &gt; .label-body{
    display:inline-block;
    margin-left:.5rem;
    font-weight:normal;
}
.select2-dropdown{
    border-radius:0;
}
.select2-container--default .select2-selection--single{
    height:40px;
    background-color:transparent;
    border:1px solid #939393;
    border-radius:0;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
    color:#444444;
    font-size:24px;
    font-weight:600;
    line-height:34px;
    padding-right:32px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow{
    height:38px;
    width:38px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b{
    border-color:#444444 transparent transparent transparent;
    border-width:7px 6px 0 6px;
    -webkit-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder{
    color:#444444;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{
    border-color:#444444 transparent transparent transparent;
    border-width:7px 6px 0 6px;
    -webkit-transform:rotate(180deg);
    transform:rotate(180deg);
    -webkit-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}
.select2-results__option{
    font-size:16px;
    font-weight:600;
}
.hero-content .select2-container--default .select2-selection--single{
    border-color:#fff;
}
.hero-content .select2-container--default .select2-selection--single .select2-selection__rendered{
    color:#fff;
}
.hero-content .select2-container--default .select2-selection--single .select2-selection__arrow b{
    border-color:#fff transparent transparent transparent;
}
.hero-content .select2-container--default .select2-selection--single .select2-selection__placeholder{
    color:#fff;
}
.hero-content .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{
    border-color:#fff transparent transparent transparent;
}
/*-------------------------------------------------------*    Links
/*-------------------------------------------------------*/
a, a:hover, button, button:hover{
    -webkit-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}
a{
    color:#0A72C0;
    text-decoration:underline;
}
a:hover{
    color:#0A72C0;
    text-decoration:none;
}
/*-------------------------------------------------------*    Lists
/*-------------------------------------------------------*/
/*-------------------------------------------------------*    Quotes
/*-------------------------------------------------------*/
blockquote{
    color:#0A72C0;
    font-size:18px;
    border:none;
    line-height:24px;
}
blockquote footer{
    color:#444444;
    text-align:right;
}
/*---   Tables  -*/
/* State rules */
.global-nav #healthcare-pros a{
    min-width:170px;
}
ul.dropdown-menu.fad-menu.active{
    visibility:visible;
    opacity:1;
}
@media (min-width:768px){
    .navbar &gt; .container .navbar-brand, .navbar &gt; .container-fluid .navbar-brand{
        margin-left:0;
        margin-right:0;
        margin-bottom:0;
    }
    .navbar-nav.nav-justified &gt; li{
        float:none;
        vertical-align:middle;
    }
    .main-nav .hamburger{
        right:11px;
    }
    .main-nav .hamburger.is-active{
        margin-top:0;
        -webkit-transform:translateY(-50%) rotate(180deg);
        transform:translateY(-50%) rotate(180deg);
    }
    .main-nav .hamburger:focus{
        outline:none;
    }
    .hamburger-box{
        background:url("../img/cd-arrow.svg") no-repeat center center;
        background-size:11px 17px;
    }
    .hamburger-inner{
        display:none;
    }
}



@media (max-width:1199px){
    .main-nav .container-fluid{
        padding:0 15px;
    }
    .main-nav .navbar-brand{
        margin-top:0;
    }
    .hero-banner .container-fluid{
        padding:150px 30px 0;
    }
    .homepage-news{
        padding:15px 30px 45px;
    }
    .pre-footer .container-fluid{
        padding:0 30px;
    }
    .pre-footer .navigation-container{
        padding:0 15px;
    }
}
@media (max-width:991px){
     .medicalGroupResultContainer{
         width: 79%;
     }

    .global-nav .nav li a{
        font-size:10px;
        padding-left:10px;
        padding-right:10px;
    }
    .global-nav .nav li.nav-break{
        padding-left:0;
        padding-right:0;
    }
    .main-nav .navbar-brand img{
        height:40px;
        margin:0 auto;
    }
    .navbar-container .main-nav .navbar-collapse .nav &gt; li{
        height:60px;
        -webkit-transition:all 0.4s ease-in-out;
        transition:all 0.4s ease-in-out;
    }
    .navbar-container .main-nav .navbar-nav &gt; li &gt; a{
        padding-top:10px;
        padding-bottom:10px;
        -webkit-transition:all 0.4s ease-in-out;
        transition:all 0.4s ease-in-out;
    }
    .navbar-container .main-nav .navbar-collapse .nav &gt; li &gt; a{
        font-size:14px;
        -webkit-transition:all 0.4s ease-in-out;
        transition:all 0.4s ease-in-out;
    }
    .global-nav #about-us a{
        min-width:82px;
    }
    .global-nav #patient-portal a{
        min-width:91px;
    }
    .global-nav #healthcare-pros a{
        min-width:160px;
    }
    .hero-banner .container-fluid{
        height:auto;
        min-height:0;
        max-height:none;
        padding-top:175px;
    }
    .hero-banner .full-height{
        height:400px;
    }
    .hero-banner .half-height, .hero-banner .conversion-row .full-height{
        height:200px;
    }
    .hero-banner .select2-container{
        min-width:160px;
    }
    .hero-row{
        height:auto;
    }
    .hero-banner .conversion-row .full-height{
        height:100%;
    }
    .hero-banner .conversion-row svg{
        display:block;
        height:30px;
        width:30px;
        margin:0 auto;
    }
    .interior-hero-banner{
        margin-bottom:-171px;
    }
    .interior-page{
        margin-top:171px;
    }
    .MedSpa .interior-page, .Independence-House .interior-page, .TechniCore .interior-page{
        /*margin-top:44px;*/
        margin-top:0px;
    }
    .pre-footer .company-info{
        text-align:center;
        margin-top:50px;
    }
    .social-icons{
        text-align:center;
        width:100%;
        margin-top:10px;
    }
    .social-icons a{
        margin-left:10px;
        margin-right:0;
    }
}
@media (max-width:767px){
    h1{
        font-size:1.8em;
    }
    h2{
        font-size:1.5em;
    }
    h3{
        font-size:1.3em;
    }
    body{
        font-size:14px;
    }
    .container{
        padding:15px;
    }
    div[class*="col-"]{
        padding:0 15px;
    }
    .global-nav-collapse #global-nav-search{
        padding:0 15px;
    }
    .global-nav-collapse #global-nav-search .form-group{
        display:inline-block;
        width:70%;
    }
    .global-nav-collapse #global-nav-search .form-control{
        display:inline-block;
        min-width:0;
        margin:9px 0 11px;
    }
    .global-nav-collapse #global-nav-search button{
        display:inline-block;
        width:30%;
        margin-top:-1px;
    }
    #cd-lateral-nav a{
        font-size:16px;
        line-height:2.2;
    }
    #cd-lateral-nav .cd-navigation#main-navigation{
        margin-bottom:0;
    }
    #cd-lateral-nav .cd-navigation#global-navigation{
        margin-top:0;
    }
    #about-us i, #about-us .caret, #patient-portal i, #patient-portal .caret, #healthcare-pros i, #healthcare-pros .caret, #contact-us i, #contact-us .caret{
        display:none;
    }
    #cd-lateral-nav{
        padding-top:20px;
    }
    #cd-lateral-nav #search{
        display:none;
    }
    #cd-lateral-nav .item-has-children &gt; a::after, #cd-lateral-nav .item-with-children &gt; a::after{
        height:36px;
    }
    .main-nav .container-fluid, .main-nav div[class*="col-"]{
        padding:0 15px;
    }
    .main-nav .row{
        margin:0 -15px;
    }
    .main-nav .navbar-brand{
        padding:14px 15px 15px 0;
        width:auto;
    }
    .navbar-toggle{
        margin:16px 0;
    }
    .navbar-nav{
        margin:0;
    }
    .navbar-fixed-top .navbar-collapse{
        max-height:none;
    }
    .hero-banner .container-fluid{
        height:auto;
        min-height:0;
        max-height:none;
        padding-top:0;
        padding-left:0;
        padding-right:0;
    }
    .hero-banner .container-fluid .row{
        margin:0 2px;
    }
    .hero-banner .container-fluid div[class*="col-"]{
        padding:4px;
    }
    .hero-banner .half-height{
        height:160px;
    }
    .hero-banner .conversion-row{
        height:auto;
    }
    .hero-banner .conversion-row div[class*="col-"]{
        padding:0;
    }
    .hero-banner .conversion-row .full-height{
        height:120px;
    }
    .hero-banner .conversion-row i{
        font-size:2.5em;
    }
    .hero-banner .conversion-row h2{
        font-size:0.9em;
        font-weight:400;
        max-height:17px;
        overflow-wrap:break-word;
        word-wrap:break-word;
    }
    .hero-banner{
        background-image:none;
        background-color:#f3e7d1;
    }
    .hero-banner .conversion-row div[class*="col-"] a{
        background-color:transparent;
    }
    .hero-banner .conversion-row a{
        padding:0;
    }
    .hero-banner .conversion-row i{
        margin-top:-6px;
    }
    .hero-banner .conversion-row h2{
        /* These are technically the same, but use both */
        overflow-wrap:break-word;
        word-wrap:break-word;
        -ms-word-break:break-all;        /* This is the dangerous one in WebKit, as it breaks things wherever */
        word-break:break-all;        /* Instead use this non-standard one:*/
        word-break:break-word;        /* Adds a hyphen where the word breaks, if supported (No Blink) */
        -ms-hyphens:auto;
        -webkit-hyphens:auto;
        hyphens:auto;
    }
    .hero-row div[class*="col-"]:nth-of-type(1) .vert-content{
        font-size:18px;
    }
    .hero-row div[class*="col-"] .learn-more{
        bottom:6px;
        right:10px;
    }
    .hero-row div[class*="col-"]:nth-of-type(2) .vert-content{
        vertical-align:middle;
    }
    .hero-row div[class*="col-"]:nth-of-type(2) .vert-content img{
        max-width:70%;
    }
    .hero-row div[class*="col-"]:nth-of-type(3) .vert-content h2{
        font-size:1.6em;
    }
    .section-title{
        font-size:1.5em;
        margin-bottom:0;
    }
    .content-block{
        padding:0 15px 30px;
    }
    .content-block .content-container{
        padding:0;
    }
    .content-block .content-container .btn{
        margin-top:0.5em;
    }
    .homepage-news{
        padding:0;
    }
    .homepage-news .row{
        margin:0 auto;
        width:100% !important;
        padding-left:0 !important;
    }
    #news-block, #classes-block, #homepage-cta-3{
        padding:0;
        margin-bottom:8px;
    }
    #news-block .content-container &gt; .row div[class*="col-"], #classes-block .content-container &gt; .row div[class*="col-"], #homepage-cta-3 .content-container &gt; .row div[class*="col-"]{
        width:100%;
        height:250px;
    }
    #news-block .content-container &gt; .row div[class*="col-"].image-section, #classes-block .content-container &gt; .row div[class*="col-"].image-section, #homepage-cta-3 .content-container &gt; .row div[class*="col-"].image-section{
        height:200px;
    }
    #news-block .arrow-left, #classes-block .arrow-left, #homepage-cta-3 .arrow-left{
        top:auto;
        left:0;
        right:0;
        bottom:0;
        margin:0 auto;
        border-top:24px solid transparent;
        border-left:24px solid transparent;
        border-right:24px solid transparent;
        border-bottom:24px solid rgba(255, 255, 255, 0.9);
    }
    .interior-hero-banner{
        height:auto;
        margin-bottom:-71px;
    }
    .interior-hero-banner .page-title{
        font-size:2.2em;
    }
    .interior-page{
        margin-top:71px;
        margin-bottom:30px;
        padding-top:0;
    }
    .MedSpa .interior-page, .Independence-House .interior-page, , .TechniCore .interior-page{
        /*margin-top: 71px;*/
    }
    .interior-page h1{
        margin-top:0;
    }
    .inline-conversions div[class*="col-"]{
        padding:0;
    }
    .pre-footer .company-info{
        text-align:center;
        margin-top:0;
    }
    .pre-footer .company-info h4{
        padding-top:24px;
    }
    .social-icons{
        margin-top:10px;
    }
    .footer.navbar{
        padding:0;
    }
    .footer .container-fluid{
        margin:0;
    }
    .footer .navbar-nav &gt; li{
        display:block;
    }
}
/*!
 *  Font Awesome 4.3.0 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.3.0");
    src:url("../_fonts/fontawesome-webfont.eot?#iefix&amp;v=4.3.0") format("embedded-opentype"), url("../_fonts/fontawesome-webfont.woff2?v=4.3.0") format("woff2"), url("../_fonts/fontawesome-webfont.woff?v=4.3.0") format("woff"), url("../_fonts/fontawesome-webfont.ttf?v=4.3.0") format("truetype"), url("../_fonts/fontawesome-webfont.svg?v=4.3.0#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;
    -webkit-transform:translate(0, 0);
    transform:translate(0, 0);
}
/* makes the font 33% larger relative to the icon container */
.fa-lg{
    font-size:1.3333333333em;
    line-height:0.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.2857142857em;
    text-align:center;
}
.fa-ul{
    padding-left:0;
    margin-left:2.1428571429em;
    list-style-type:none;
}
.fa-ul &gt; li{
    position:relative;
}
.fa-li{
    position:absolute;
    left:-2.1428571429em;
    width:2.1428571429em;
    top:0.1428571429em;
    text-align:center;
}
.fa-li.fa-lg{
    left:-1.8571428571em;
}
.fa-border{
    padding:.2em .25em .15em;
    border:solid 0.08em #eee;
    border-radius:.1em;
}
.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{
    filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
    -webkit-transform:rotate(90deg);
    transform:rotate(90deg);
}
.fa-rotate-180{
    filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
    -webkit-transform:rotate(180deg);
    transform:rotate(180deg);
}
.fa-rotate-270{
    filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
    -webkit-transform:rotate(270deg);
    transform:rotate(270deg);
}
.fa-flip-horizontal{
    filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
    -webkit-transform:scale(-1, 1);
    transform:scale(-1, 1);
}
.fa-flip-vertical{
    filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
    -webkit-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{
    -webkit-filter:none;
    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;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬";
}
.fa-music:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â";
}
.fa-search:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡";
}
.fa-envelope-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢";
}
.fa-heart:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾";
}
.fa-star:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦";
}
.fa-star-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;";
}
.fa-user:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡";
}
.fa-film:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;";
}
.fa-th-large:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°";
}
.fa-th:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;";
}
.fa-th-list:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹";
}
.fa-check:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢";
}
.fa-remove:before, .fa-close:before, .fa-times:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â";
}
.fa-search-plus:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â½";
}
.fa-search-minus:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â";
}
.fa-power-off:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“";
}
.fa-signal:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢";
}
.fa-gear:before, .fa-cog:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ";
}
.fa-trash-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â";
}
.fa-home:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢";
}
.fa-file-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“";
}
.fa-clock-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â";
}
.fa-road:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ";
}
.fa-download:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢";
}
.fa-arrow-circle-o-down:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡";
}
.fa-arrow-circle-o-up:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âº";
}
.fa-inbox:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“";
}
.fa-play-circle-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â";
}
.fa-rotate-right:before, .fa-repeat:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾";
}
.fa-refresh:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡";
}
.fa-list-alt:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢";
}
.fa-lock:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â£";
}
.fa-flag:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¤";
}
.fa-headphones:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¥";
}
.fa-volume-off:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦";
}
.fa-volume-down:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§";
}
.fa-volume-up:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¨";
}
.fa-qrcode:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â©";
}
.fa-barcode:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âª";
}
.fa-tag:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â«";
}
.fa-tags:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬";
}
.fa-book:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â­";
}
.fa-bookmark:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â®";
}
.fa-print:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯";
}
.fa-camera:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°";
}
.fa-font:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±";
}
.fa-bold:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â²";
}
.fa-italic:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â³";
}
.fa-text-height:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â´";
}
.fa-text-width:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âµ";
}
.fa-align-left:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¶";
}
.fa-align-center:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â·";
}
.fa-align-right:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸";
}
.fa-align-justify:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹";
}
.fa-list:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âº";
}
.fa-dedent:before, .fa-outdent:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»";
}
.fa-indent:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼";
}
.fa-video-camera:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â½";
}
.fa-photo:before, .fa-image:before, .fa-picture-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾";
}
.fa-pencil:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬";
}
.fa-map-marker:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â";
}
.fa-adjust:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡";
}
.fa-tint:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢";
}
.fa-edit:before, .fa-pencil-square-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾";
}
.fa-share-square-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦";
}
.fa-check-square-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;";
}
.fa-arrows:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡";
}
.fa-step-backward:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;";
}
.fa-fast-backward:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°";
}
.fa-backward:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;";
}
.fa-play:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹";
}
.fa-pause:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢";
}
.fa-stop:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â";
}
.fa-forward:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â½";
}
.fa-fast-forward:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â";
}
.fa-step-forward:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“";
}
.fa-eject:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢";
}
.fa-chevron-left:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ";
}
.fa-chevron-right:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â";
}
.fa-plus-circle:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢";
}
.fa-minus-circle:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“";
}
.fa-times-circle:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â";
}
.fa-check-circle:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ";
}
.fa-question-circle:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢";
}
.fa-info-circle:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡";
}
.fa-crosshairs:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âº";
}
.fa-times-circle-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“";
}
.fa-check-circle-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â";
}
.fa-ban:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾";
}
.fa-arrow-left:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;";
}
.fa-arrow-right:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡";
}
.fa-arrow-up:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢";
}
.fa-arrow-down:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â£";
}
.fa-mail-forward:before, .fa-share:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¤";
}
.fa-expand:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¥";
}
.fa-compress:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦";
}
.fa-plus:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§";
}
.fa-minus:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¨";
}
.fa-asterisk:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â©";
}
.fa-exclamation-circle:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âª";
}
.fa-gift:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â«";
}
.fa-leaf:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬";
}
.fa-fire:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â­";
}
.fa-eye:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â®";
}
.fa-eye-slash:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°";
}
.fa-warning:before, .fa-exclamation-triangle:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±";
}
.fa-plane:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â²";
}
.fa-calendar:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â³";
}
.fa-random:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â´";
}
.fa-comment:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âµ";
}
.fa-magnet:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¶";
}
.fa-chevron-up:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â·";
}
.fa-chevron-down:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸";
}
.fa-retweet:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹";
}
.fa-shopping-cart:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âº";
}
.fa-folder:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»";
}
.fa-folder-open:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼";
}
.fa-arrows-v:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â½";
}
.fa-arrows-h:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾";
}
.fa-bar-chart-o:before, .fa-bar-chart:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬";
}
.fa-twitter-square:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â";
}
.fa-facebook-square:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡";
}
.fa-camera-retro:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢";
}
.fa-key:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾";
}
.fa-gears:before, .fa-cogs:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦";
}
.fa-comments:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;";
}
.fa-thumbs-o-up:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡";
}
.fa-thumbs-o-down:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;";
}
.fa-star-half:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°";
}
.fa-heart-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;";
}
.fa-sign-out:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹";
}
.fa-linkedin-square:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢";
}
.fa-thumb-tack:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â";
}
.fa-external-link:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â½";
}
.fa-sign-in:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â";
}
.fa-trophy:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“";
}
.fa-github-square:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢";
}
.fa-upload:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ";
}
.fa-lemon-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â";
}
.fa-phone:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢";
}
.fa-square-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“";
}
.fa-bookmark-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â";
}
.fa-phone-square:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ";
}
.fa-twitter:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢";
}
.fa-facebook-f:before, .fa-facebook:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡";
}
.fa-github:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âº";
}
.fa-unlock:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“";
}
.fa-credit-card:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â";
}
.fa-rss:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾";
}
.fa-hdd-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;";
}
.fa-bullhorn:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡";
}
.fa-bell:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â³";
}
.fa-certificate:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â£";
}
.fa-hand-o-right:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¤";
}
.fa-hand-o-left:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¥";
}
.fa-hand-o-up:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦";
}
.fa-hand-o-down:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§";
}
.fa-arrow-circle-left:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¨";
}
.fa-arrow-circle-right:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â©";
}
.fa-arrow-circle-up:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âª";
}
.fa-arrow-circle-down:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â«";
}
.fa-globe:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬";
}
.fa-wrench:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â­";
}
.fa-tasks:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â®";
}
.fa-filter:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°";
}
.fa-briefcase:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±";
}
.fa-arrows-alt:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â²";
}
.fa-group:before, .fa-users:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬";
}
.fa-chain:before, .fa-link:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â";
}
.fa-cloud:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡";
}
.fa-flask:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢";
}
.fa-cut:before, .fa-scissors:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾";
}
.fa-copy:before, .fa-files-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦";
}
.fa-paperclip:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;";
}
.fa-save:before, .fa-floppy-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡";
}
.fa-square:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;";
}
.fa-navicon:before, .fa-reorder:before, .fa-bars:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°";
}
.fa-list-ul:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;";
}
.fa-list-ol:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹";
}
.fa-strikethrough:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢";
}
.fa-underline:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â";
}
.fa-table:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â½";
}
.fa-magic:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â";
}
.fa-truck:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“";
}
.fa-pinterest:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢";
}
.fa-pinterest-square:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ";
}
.fa-google-plus-square:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â";
}
.fa-google-plus:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢";
}
.fa-money:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“";
}
.fa-caret-down:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â";
}
.fa-caret-up:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ";
}
.fa-caret-left:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢";
}
.fa-caret-right:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡";
}
.fa-columns:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âº";
}
.fa-unsorted:before, .fa-sort:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“";
}
.fa-sort-down:before, .fa-sort-desc:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â";
}
.fa-sort-up:before, .fa-sort-asc:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾";
}
.fa-envelope:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;";
}
.fa-linkedin:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡";
}
.fa-rotate-left:before, .fa-undo:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢";
}
.fa-legal:before, .fa-gavel:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â£";
}
.fa-dashboard:before, .fa-tachometer:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¤";
}
.fa-comment-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¥";
}
.fa-comments-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦";
}
.fa-flash:before, .fa-bolt:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§";
}
.fa-sitemap:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¨";
}
.fa-umbrella:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â©";
}
.fa-paste:before, .fa-clipboard:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âª";
}
.fa-lightbulb-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â«";
}
.fa-exchange:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬";
}
.fa-cloud-download:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â­";
}
.fa-cloud-upload:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â®";
}
.fa-user-md:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°";
}
.fa-stethoscope:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±";
}
.fa-suitcase:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â²";
}
.fa-bell-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢";
}
.fa-coffee:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â´";
}
.fa-cutlery:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âµ";
}
.fa-file-text-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¶";
}
.fa-building-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â·";
}
.fa-hospital-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸";
}
.fa-ambulance:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹";
}
.fa-medkit:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âº";
}
.fa-fighter-jet:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»";
}
.fa-beer:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼";
}
.fa-h-square:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â½";
}
.fa-plus-square:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾";
}
.fa-angle-double-left:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬";
}
.fa-angle-double-right:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â";
}
.fa-angle-double-up:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡";
}
.fa-angle-double-down:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢";
}
.fa-angle-left:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾";
}
.fa-angle-right:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦";
}
.fa-angle-up:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;";
}
.fa-angle-down:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡";
}
.fa-desktop:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;";
}
.fa-laptop:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°";
}
.fa-tablet:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;";
}
.fa-mobile-phone:before, .fa-mobile:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹";
}
.fa-circle-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢";
}
.fa-quote-left:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â";
}
.fa-quote-right:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â½";
}
.fa-spinner:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â";
}
.fa-circle:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“";
}
.fa-mail-reply:before, .fa-reply:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢";
}
.fa-github-alt:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ";
}
.fa-folder-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â";
}
.fa-folder-open-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢";
}
.fa-smile-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ";
}
.fa-frown-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢";
}
.fa-meh-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡";
}
.fa-gamepad:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âº";
}
.fa-keyboard-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“";
}
.fa-flag-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â";
}
.fa-flag-checkered:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾";
}
.fa-terminal:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;";
}
.fa-code:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡";
}
.fa-mail-reply-all:before, .fa-reply-all:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢";
}
.fa-star-half-empty:before, .fa-star-half-full:before, .fa-star-half-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â£";
}
.fa-location-arrow:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¤";
}
.fa-crop:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¥";
}
.fa-code-fork:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦";
}
.fa-unlink:before, .fa-chain-broken:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§";
}
.fa-question:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¨";
}
.fa-info:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â©";
}
.fa-exclamation:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âª";
}
.fa-superscript:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â«";
}
.fa-subscript:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬";
}
.fa-eraser:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â­";
}
.fa-puzzle-piece:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â®";
}
.fa-microphone:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°";
}
.fa-microphone-slash:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±";
}
.fa-shield:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â²";
}
.fa-calendar-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â³";
}
.fa-fire-extinguisher:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â´";
}
.fa-rocket:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âµ";
}
.fa-maxcdn:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¶";
}
.fa-chevron-circle-left:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â·";
}
.fa-chevron-circle-right:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸";
}
.fa-chevron-circle-up:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹";
}
.fa-chevron-circle-down:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âº";
}
.fa-html5:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»";
}
.fa-css3:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼";
}
.fa-anchor:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â½";
}
.fa-unlock-alt:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾";
}
.fa-bullseye:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬";
}
.fa-ellipsis-h:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â";
}
.fa-ellipsis-v:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡";
}
.fa-rss-square:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢";
}
.fa-play-circle:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾";
}
.fa-ticket:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦";
}
.fa-minus-square:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;";
}
.fa-minus-square-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡";
}
.fa-level-up:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;";
}
.fa-level-down:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°";
}
.fa-check-square:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;";
}
.fa-pencil-square:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹";
}
.fa-external-link-square:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢";
}
.fa-share-square:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â";
}
.fa-compass:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â½";
}
.fa-toggle-down:before, .fa-caret-square-o-down:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â";
}
.fa-toggle-up:before, .fa-caret-square-o-up:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“";
}
.fa-toggle-right:before, .fa-caret-square-o-right:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢";
}
.fa-euro:before, .fa-eur:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ";
}
.fa-gbp:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â";
}
.fa-dollar:before, .fa-usd:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢";
}
.fa-rupee:before, .fa-inr:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“";
}
.fa-cny:before, .fa-rmb:before, .fa-yen:before, .fa-jpy:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â";
}
.fa-ruble:before, .fa-rouble:before, .fa-rub:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ";
}
.fa-won:before, .fa-krw:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢";
}
.fa-bitcoin:before, .fa-btc:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡";
}
.fa-file:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âº";
}
.fa-file-text:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“";
}
.fa-sort-alpha-asc:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â";
}
.fa-sort-alpha-desc:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾";
}
.fa-sort-amount-asc:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;";
}
.fa-sort-amount-desc:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡";
}
.fa-sort-numeric-asc:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢";
}
.fa-sort-numeric-desc:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â£";
}
.fa-thumbs-up:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¤";
}
.fa-thumbs-down:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¥";
}
.fa-youtube-square:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦";
}
.fa-youtube:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§";
}
.fa-xing:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¨";
}
.fa-xing-square:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â©";
}
.fa-youtube-play:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âª";
}
.fa-dropbox:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â«";
}
.fa-stack-overflow:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬";
}
.fa-instagram:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â­";
}
.fa-flickr:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â®";
}
.fa-adn:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°";
}
.fa-bitbucket:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±";
}
.fa-bitbucket-square:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â²";
}
.fa-tumblr:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â³";
}
.fa-tumblr-square:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â´";
}
.fa-long-arrow-down:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âµ";
}
.fa-long-arrow-up:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¶";
}
.fa-long-arrow-left:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â·";
}
.fa-long-arrow-right:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸";
}
.fa-apple:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹";
}
.fa-windows:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âº";
}
.fa-android:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»";
}
.fa-linux:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼";
}
.fa-dribbble:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â½";
}
.fa-skype:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾";
}
.fa-foursquare:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬";
}
.fa-trello:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â";
}
.fa-female:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡";
}
.fa-male:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢";
}
.fa-gittip:before, .fa-gratipay:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾";
}
.fa-sun-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦";
}
.fa-moon-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;";
}
.fa-archive:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡";
}
.fa-bug:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;";
}
.fa-vk:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°";
}
.fa-weibo:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;";
}
.fa-renren:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹";
}
.fa-pagelines:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢";
}
.fa-stack-exchange:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â";
}
.fa-arrow-circle-o-right:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â½";
}
.fa-arrow-circle-o-left:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â";
}
.fa-toggle-left:before, .fa-caret-square-o-left:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“";
}
.fa-dot-circle-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢";
}
.fa-wheelchair:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ";
}
.fa-vimeo-square:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â";
}
.fa-turkish-lira:before, .fa-try:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢";
}
.fa-plus-square-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“";
}
.fa-space-shuttle:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â";
}
.fa-slack:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ";
}
.fa-envelope-square:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢";
}
.fa-wordpress:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡";
}
.fa-openid:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âº";
}
.fa-institution:before, .fa-bank:before, .fa-university:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“";
}
.fa-mortar-board:before, .fa-graduation-cap:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â";
}
.fa-yahoo:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾";
}
.fa-google:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;";
}
.fa-reddit:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡";
}
.fa-reddit-square:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢";
}
.fa-stumbleupon-circle:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â£";
}
.fa-stumbleupon:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¤";
}
.fa-delicious:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¥";
}
.fa-digg:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦";
}
.fa-pied-piper:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§";
}
.fa-pied-piper-alt:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¨";
}
.fa-drupal:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â©";
}
.fa-joomla:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âª";
}
.fa-language:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â«";
}
.fa-fax:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬";
}
.fa-building:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â­";
}
.fa-child:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â®";
}
.fa-paw:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°";
}
.fa-spoon:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±";
}
.fa-cube:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â²";
}
.fa-cubes:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â³";
}
.fa-behance:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â´";
}
.fa-behance-square:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âµ";
}
.fa-steam:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¶";
}
.fa-steam-square:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â·";
}
.fa-recycle:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸";
}
.fa-automobile:before, .fa-car:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹";
}
.fa-cab:before, .fa-taxi:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âº";
}
.fa-tree:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»";
}
.fa-spotify:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼";
}
.fa-deviantart:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â½";
}
.fa-soundcloud:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾";
}
.fa-database:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬";
}
.fa-file-pdf-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â";
}
.fa-file-word-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡";
}
.fa-file-excel-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢";
}
.fa-file-powerpoint-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾";
}
.fa-file-photo-o:before, .fa-file-picture-o:before, .fa-file-image-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦";
}
.fa-file-zip-o:before, .fa-file-archive-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;";
}
.fa-file-sound-o:before, .fa-file-audio-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡";
}
.fa-file-movie-o:before, .fa-file-video-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;";
}
.fa-file-code-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°";
}
.fa-vine:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;";
}
.fa-codepen:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹";
}
.fa-jsfiddle:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢";
}
.fa-life-bouy:before, .fa-life-buoy:before, .fa-life-saver:before, .fa-support:before, .fa-life-ring:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â";
}
.fa-circle-o-notch:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â½";
}
.fa-ra:before, .fa-rebel:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â";
}
.fa-ge:before, .fa-empire:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“";
}
.fa-git-square:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢";
}
.fa-git:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ";
}
.fa-hacker-news:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â";
}
.fa-tencent-weibo:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢";
}
.fa-qq:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“";
}
.fa-wechat:before, .fa-weixin:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â";
}
.fa-send:before, .fa-paper-plane:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ";
}
.fa-send-o:before, .fa-paper-plane-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢";
}
.fa-history:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡";
}
.fa-genderless:before, .fa-circle-thin:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âº";
}
.fa-header:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“";
}
.fa-paragraph:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â";
}
.fa-sliders:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾";
}
.fa-share-alt:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;";
}
.fa-share-alt-square:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡";
}
.fa-bomb:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢";
}
.fa-soccer-ball-o:before, .fa-futbol-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â£";
}
.fa-tty:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¤";
}
.fa-binoculars:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¥";
}
.fa-plug:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦";
}
.fa-slideshare:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§";
}
.fa-twitch:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¨";
}
.fa-yelp:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â©";
}
.fa-newspaper-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âª";
}
.fa-wifi:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â«";
}
.fa-calculator:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬";
}
.fa-paypal:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â­";
}
.fa-google-wallet:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â®";
}
.fa-cc-visa:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°";
}
.fa-cc-mastercard:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±";
}
.fa-cc-discover:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â²";
}
.fa-cc-amex:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â³";
}
.fa-cc-paypal:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â´";
}
.fa-cc-stripe:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âµ";
}
.fa-bell-slash:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¶";
}
.fa-bell-slash-o:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â·";
}
.fa-trash:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸";
}
.fa-copyright:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹";
}
.fa-at:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âº";
}
.fa-eyedropper:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»";
}
.fa-paint-brush:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼";
}
.fa-birthday-cake:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â½";
}
.fa-area-chart:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾";
}
.fa-pie-chart:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬";
}
.fa-line-chart:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â";
}
.fa-lastfm:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡";
}
.fa-lastfm-square:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â&nbsp;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢";
}
.fa-toggle-off:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾";
}
.fa-toggle-on:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦";
}
.fa-bicycle:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;";
}
.fa-bus:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡";
}
.fa-ioxhost:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;";
}
.fa-angellist:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°";
}
.fa-cc:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â&nbsp;";
}
.fa-shekel:before, .fa-sheqel:before, .fa-ils:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹";
}
.fa-meanpath:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢";
}
.fa-buysellads:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â";
}
.fa-connectdevelop:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â½";
}
.fa-dashcube:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â";
}
.fa-forumbee:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“";
}
.fa-leanpub:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢";
}
.fa-sellsy:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ";
}
.fa-shirtsinbulk:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â";
}
.fa-simplybuilt:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢";
}
.fa-skyatlas:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“";
}
.fa-cart-plus:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â";
}
.fa-cart-arrow-down:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ";
}
.fa-diamond:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢";
}
.fa-ship:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡";
}
.fa-user-secret:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âº";
}
.fa-motorcycle:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“";
}
.fa-street-view:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â";
}
.fa-heartbeat:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾";
}
.fa-venus:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡";
}
.fa-mars:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢";
}
.fa-mercury:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â£";
}
.fa-transgender:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¤";
}
.fa-transgender-alt:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¥";
}
.fa-venus-double:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦";
}
.fa-mars-double:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§";
}
.fa-venus-mars:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¨";
}
.fa-mars-stroke:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â©";
}
.fa-mars-stroke-v:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âª";
}
.fa-mars-stroke-h:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â«";
}
.fa-neuter:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬";
}
.fa-facebook-official:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°";
}
.fa-pinterest-p:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±";
}
.fa-whatsapp:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â²";
}
.fa-server:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â³";
}
.fa-user-plus:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â´";
}
.fa-user-times:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âµ";
}
.fa-hotel:before, .fa-bed:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¶";
}
.fa-viacoin:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â·";
}
.fa-train:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸";
}
.fa-subway:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹";
}
.fa-medium:before{
    content:"ÃƒÆ’Ã†â€™Ãƒâ€&nbsp;Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â&nbsp;ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âº";
}
/*----* Animations *----*/
.animated{
    -webkit-animation-duration:.5s;
    animation-duration:.5s;
    -webkit-animation-fill-mode:both;
    animation-fill-mode:both;
}
@-webkit-keyframes slideDown{
    0%{
        -webkit-transform:translateY(-100%);
    }
    100%{
        -webkit-transform:translateY();
    }
}
@keyframes slideDown{
    0%{
        -webkit-transform:translateY(-100%);
        transform:translateY(-100%);
    }
    100%{
        -webkit-transform:translateY();
        transform:translateY();
    }
}
.animated.slideDown{
    -webkit-animation-name:slideDown;
    animation-name:slideDown;
}
@-webkit-keyframes slideUp{
    0%{
        -webkit-transform:translateY();
    }
    100%{
        -webkit-transform:translateY(-100%);
    }
}
@keyframes slideUp{
    0%{
        -webkit-transform:translateY();
        transform:translateY();
    }
    100%{
        -webkit-transform:translateY(-100%);
        transform:translateY(-100%);
    }
}
.animated.slideUp{
    -webkit-animation-name:slideUp;
    animation-name:slideUp;
}
@-webkit-keyframes swingInX{
    0%{
        -webkit-transform:perspective(400px) rotateX(-90deg);
    }
    100%{
        -webkit-transform:perspective(400px) rotateX(0deg);
    }
}
@keyframes swingInX{
    0%{
        -webkit-transform:perspective(400px) rotateX(-90deg);
        transform:perspective(400px) rotateX(-90deg);
    }
    100%{
        -webkit-transform:perspective(400px) rotateX(0deg);
        transform:perspective(400px) rotateX(0deg);
    }
}
.animated.swingInX{
    -webkit-transform-origin:top;
    -ie-transform-origin:top;
    transform-origin:top;
    -webkit-backface-visibility:visible !important;
    -webkit-animation-name:swingInX;
    -moz-backface-visibility:visible !important;
    -moz-animation-name:swingInX;
    -o-backface-visibility:visible !important;
    -o-animation-name:swingInX;
    backface-visibility:visible !important;
    animation-name:swingInX;
}
@-webkit-keyframes swingOutX{
    0%{
        -webkit-transform:perspective(400px) rotateX(0deg);
    }
    100%{
        -webkit-transform:perspective(400px) rotateX(-90deg);
    }
}
@keyframes swingOutX{
    0%{
        -webkit-transform:perspective(400px) rotateX(0deg);
        transform:perspective(400px) rotateX(0deg);
    }
    100%{
        -webkit-transform:perspective(400px) rotateX(-90deg);
        transform:perspective(400px) rotateX(-90deg);
    }
}
.animated.swingOutX{
    -webkit-transform-origin:top;
    -webkit-animation-name:swingOutX;
    -webkit-backface-visibility:visible !important;
    -moz-animation-name:swingOutX;
    -moz-backface-visibility:visible !important;
    -o-animation-name:swingOutX;
    -o-backface-visibility:visible !important;
    animation-name:swingOutX;
    backface-visibility:visible !important;
}
@-webkit-keyframes flipInX{
    0%{
        -webkit-transform:perspective(400px) rotateX(90deg);
        opacity:0;
    }
    100%{
        -webkit-transform:perspective(400px) rotateX(0deg);
        opacity:1;
    }
}
@keyframes flipInX{
    0%{
        -webkit-transform:perspective(400px) rotateX(90deg);
        transform:perspective(400px) rotateX(90deg);
        opacity:0;
    }
    100%{
        -webkit-transform:perspective(400px) rotateX(0deg);
        transform:perspective(400px) rotateX(0deg);
        opacity:1;
    }
}
.animated.flipInX{
    -webkit-backface-visibility:visible !important;
    -webkit-animation-name:flipInX;
    -moz-backface-visibility:visible !important;
    -moz-animation-name:flipInX;
    -o-backface-visibility:visible !important;
    -o-animation-name:flipInX;
    backface-visibility:visible !important;
    animation-name:flipInX;
}
@-webkit-keyframes flipOutX{
    0%{
        -webkit-transform:perspective(400px) rotateX(0deg);
        opacity:1;
    }
    100%{
        -webkit-transform:perspective(400px) rotateX(90deg);
        opacity:0;
    }
}
@keyframes flipOutX{
    0%{
        -webkit-transform:perspective(400px) rotateX(0deg);
        transform:perspective(400px) rotateX(0deg);
        opacity:1;
    }
    100%{
        -webkit-transform:perspective(400px) rotateX(90deg);
        transform:perspective(400px) rotateX(90deg);
        opacity:0;
    }
}
.animated.flipOutX{
    -webkit-animation-name:flipOutX;
    -webkit-backface-visibility:visible !important;
    -moz-animation-name:flipOutX;
    -moz-backface-visibility:visible !important;
    -o-animation-name:flipOutX;
    -o-backface-visibility:visible !important;
    animation-name:flipOutX;
    backface-visibility:visible !important;
}
@-webkit-keyframes bounceInDown{
    0%{
        opacity:0;
        -webkit-transform:translateY(-200px);
    }
    60%{
        opacity:1;
        -webkit-transform:translateY(30px);
    }
    80%{
        -webkit-transform:translateY(-10px);
    }
    100%{
        -webkit-transform:translateY();
    }
}
@keyframes bounceInDown{
    0%{
        opacity:0;
        -webkit-transform:translateY(-200px);
        transform:translateY(-200px);
    }
    60%{
        opacity:1;
        -webkit-transform:translateY(30px);
        transform:translateY(30px);
    }
    80%{
        -webkit-transform:translateY(-10px);
        transform:translateY(-10px);
    }
    100%{
        -webkit-transform:translateY();
        transform:translateY();
    }
}
.animated.bounceInDown{
    -webkit-animation-name:bounceInDown;
    animation-name:bounceInDown;
}
@-webkit-keyframes bounceOutUp{
    0%{
        -webkit-transform:translateY();
    }
    30%{
        opacity:1;
        -webkit-transform:translateY(20px);
    }
    100%{
        opacity:0;
        -webkit-transform:translateY(-200px);
    }
}
@keyframes bounceOutUp{
    0%{
        -webkit-transform:translateY();
        transform:translateY();
    }
    30%{
        opacity:1;
        -webkit-transform:translateY(20px);
        transform:translateY(20px);
    }
    100%{
        opacity:0;
        -webkit-transform:translateY(-200px);
        transform:translateY(-200px);
    }
}
.animated.bounceOutUp{
    -webkit-animation-name:bounceOutUp;
    animation-name:bounceOutUp;
}
.animated{
    -webkit-animation-duration:.5s;
    animation-duration:.5s;
    -webkit-animation-fill-mode:both;
    animation-fill-mode:both;
}
@-webkit-keyframes slideDown{
    0%{
        -webkit-transform:translateY(-100%);
    }
    100%{
        -webkit-transform:translateY();
    }
}
@keyframes slideDown{
    0%{
        -webkit-transform:translateY(-100%);
        transform:translateY(-100%);
    }
    100%{
        -webkit-transform:translateY();
        transform:translateY();
    }
}
.animated.slideDown{
    -webkit-animation-name:slideDown;
    animation-name:slideDown;
}
@-webkit-keyframes slideUp{
    0%{
        -webkit-transform:translateY();
    }
    100%{
        -webkit-transform:translateY(-100%);
    }
}
@keyframes slideUp{
    0%{
        -webkit-transform:translateY();
        transform:translateY();
    }
    100%{
        -webkit-transform:translateY(-100%);
        transform:translateY(-100%);
    }
}
.animated.slideUp{
    -webkit-animation-name:slideUp;
    animation-name:slideUp;
}
@-webkit-keyframes shake{
    0%{
        -webkit-transform:translate(2px, 1px) rotate(0deg);
    }
    10%{
        -webkit-transform:translate(-1px, -2px) rotate(-1deg);
    }
    20%{
        -webkit-transform:translate(-3px, 0px) rotate(1deg);
    }
    30%{
        -webkit-transform:translate(0px, 2px) rotate(0deg);
    }
    40%{
        -webkit-transform:translate(1px, -1px) rotate(1deg);
    }
    50%{
        -webkit-transform:translate(-1px, 2px) rotate(-1deg);
    }
    60%{
        -webkit-transform:translate(-3px, 1px) rotate(0deg);
    }
    70%{
        -webkit-transform:translate(2px, 1px) rotate(-1deg);
    }
    80%{
        -webkit-transform:translate(-1px, -1px) rotate(1deg);
    }
    90%{
        -webkit-transform:translate(2px, 2px) rotate(0deg);
    }
    100%{
        -webkit-transform:translate(1px, -2px) rotate(-1deg);
    }
}
@keyframes shake{
    0%{
        -webkit-transform:translate(2px, 1px) rotate(0deg);
    }
    10%{
        -webkit-transform:translate(-1px, -2px) rotate(-1deg);
    }
    20%{
        -webkit-transform:translate(-3px, 0px) rotate(1deg);
    }
    30%{
        -webkit-transform:translate(0px, 2px) rotate(0deg);
    }
    40%{
        -webkit-transform:translate(1px, -1px) rotate(1deg);
    }
    50%{
        -webkit-transform:translate(-1px, 2px) rotate(-1deg);
    }
    60%{
        -webkit-transform:translate(-3px, 1px) rotate(0deg);
    }
    70%{
        -webkit-transform:translate(2px, 1px) rotate(-1deg);
    }
    80%{
        -webkit-transform:translate(-1px, -1px) rotate(1deg);
    }
    90%{
        -webkit-transform:translate(2px, 2px) rotate(0deg);
    }
    100%{
        -webkit-transform:translate(1px, -2px) rotate(-1deg);
    }
}
.wiggly{
    animation:shake 1.5s linear infinite alternate;
}
@media (min-width:768px){
    .animated{
        -webkit-animation-duration:.5s;
        animation-duration:.5s;
        -webkit-animation-fill-mode:both;
        animation-fill-mode:both;
    }
    @-webkit-keyframes slideDown{
        0%{
            -webkit-transform:translateY(-40px);
        }
        100%{
            -webkit-transform:translateY();
        }
    }
    @keyframes slideDown{
        0%{
            -webkit-transform:translateY(-40px);
            transform:translateY(-40px);
        }
        100%{
            -webkit-transform:translateY();
            transform:translateY();
        }
    }
    .animated.slideDown{
        -webkit-animation-name:slideDown;
        animation-name:slideDown;
    }
    @-webkit-keyframes slideUp{
        0%{
            -webkit-transform:translateY();
        }
        100%{
            -webkit-transform:translateY(-40px);
        }
    }
    @keyframes slideUp{
        0%{
            -webkit-transform:translateY();
            transform:translateY();
        }
        100%{
            -webkit-transform:translateY(-40px);
            transform:translateY(-40px);
        }
    }
    .animated.slideUp{
        -webkit-animation-name:slideUp;
        animation-name:slideUp;
    }
}
/*---------* Site *---------*/
/*# sourceMappingURL=style.css.map */
#main-navigation .dropdown &gt; ul.dropdown-menu:hover{
    opacity:1;
    visibility:visible;
}
.interior-hero-banner{
    padding-left:15px;
    padding-right:15px;
}
.interior-hero-banner div.full-banner{
    background-size:cover;
    background-repeat:no-repeat;
    background-position:right;
    height:240px;
    position:relative;
    background-size:cover;
}
.interior-hero-banner .full-banner-container, .interior-hero-banner .compact-banner{
    max-width:1170px;
    margin:0 auto;
}
/*--- Locations --*/
#avid-loc-container{
    overflow:hidden;
    padding-bottom:20px;
}
#avid-loc-col-left{
    width:25%;
    float:left;
}
#avid-loc-col-center{
    width:75%;
    float:left;
}
#avid-loc-map{
    width:100%;
    height:600px;
}
#avid-loc-col-right{
    width:25%;
    float:right;
}
#avid-loc-col-left, #avid-loc-col-right{
    overflow:hidden;
}
.avid-loc-col-inner{
    width:100%;
    overflow:auto;
    height:100%;
    padding-right:15px;
}
#avid-loc-search{
    margin:0 auto;
    padding:10px 0 0 0;
    overflow:hidden;
}
#avid-loc-search h3{
    margin:0 0 10px 0;
}
#avid-loc-search input{
    height:30px;
    border-radius:3px;
    border:1px solid #ccc;
    padding:2px 10px;
    font-family:'Roboto', sans-serif;
    font-size:15px;
    color:#736e69;
    width:200px;
}
#avid-loc-search select{
    border-radius:3px;
    font-family:'Roboto', sans-serif;
    font-size:15px;
    color:#736e69;
    padding:9px;
    width:105%;
}
#avid-loc-search button, #avid-loc-search .btn-search-address, #avid-loc-search .btn-reset-address, #ddl-category-more-button{
    display:inline-block;
    font-family:'Roboto', sans-serif;
    font-size:15px;
    color:#736e69;
    border:solid 1px #c3c3b9;
    padding:12px 12px 13px 12px;
    border-radius:6px;
    line-height:15px;
    float:left;
    margin:0 17px 0 0;
    background:#fff;
    height:auto;
}
#avid-loc-search-type{
    display:inline-block;
    padding:0 40px 30px 20px;
    float:left;
}
#ddl-categories{
    width:95%;
    display:none;
}
#pnl-category-buttons button:hover, #pnl-category-buttons button.active, .pnl-category-more-button:hover, .pnl-category-more-button.active{
    background:#ed5929;
    border:solid 1px #ed5929;
    color:#FFF;
}
#avid-loc-search-address{
    display:block;
    clear:both;
    margin-bottom:10px;
}
#avid-loc-search-address .pnl-search-button{
    overflow:hidden;
    display:inline-block;
}
#avid-loc-search-address #search-address, #avid-loc-search-address #search-keyword{
    float:left;
    border-radius:3px;
    padding-right:20px;
}
#avid-loc-search-address #search-radius{
    float:left;
    padding-right:20px;
}
#avid-loc-search-address .styled-select{
    background:url(../_img/arrow-down.png) no-repeat 95% 50% #fff;
    font-family:'Roboto', sans-serif;
    font-size:15px;
    color:#736e69;
}
#avid-loc-search-address label{
    display:block;
    font-size:14px;
}
#avid-loc-search-address #btn-search-address, #avid-loc-search-address .btn-search-address, #avid-loc-search-address .btn-reset-address{
    float:right;
    margin:0;
    padding:9px 16px 10px 16px;
    border-radius:3px;
}
#avid-loc-search-address .btn-search-address, #avid-loc-search-address .btn-reset-address{
    width:142px;
    float:left;
    margin-right:20px;
}
#avid-loc-search-address .btn-reset-address{
    margin-right:0;
}
#avid-loc-search-address #btn-search-address:hover, #avid-loc-search-address .btn-search-address:hover, #avid-loc-search-address .btn-reset-address:hover{
    background:#ed5929;
    border:solid 1px #ed5929;
    color:#FFF;
}
#avid-loc-search-address #span-zip-required{
    color:#ff0000;
    display:none;
}
#avid-loc-container #avid-loc-pager{
    float:right;
    min-width:100px;
}
#avid-loc-container #avid-loc-pager .previous_link{
    float:left;
}
#avid-loc-container #avid-loc-pager .next_link{
    float:right;
}
#avid-loc-testing-options{
    overflow:hidden;
}
.avid-loc-options{
    float:left;
    padding:20px;
}
.avid-loc-options h3{
    display:inline;
}
#avid-loc-search .pnl-category-buttons, #avid-loc-search .pnl-category-more{
    display:inline-block;
    float:left;
}
#avid-loc-search #list-category-more{
    display:none;
}
/* Search */
.search-header-inputs{
    height:55px;
}
.pnl-results-count .styled-select select, .search-header-inputs input.search_input{
    border:1px solid #939393;
    color:#939393;
}
.search-header-inputs input.search_input{
    width:75%;
    float:left;
    margin:0;
}
.search-header-inputs input.search_button{
    width:24%;
    float:left;
    margin:0 0 0 1%;
    padding:9px 0;
    font-size:16px;
    background-color:#0A72C0;
    color:#fff;
    display:inline-block;
    text-transform:uppercase;
    font-weight:600;
    white-space:normal;
    text-decoration:none;
    border:none;
}
.search-header-inputs input.search_button:hover{
    background-color:#094d82;
}
.search-results-key{
    display:inline-block;
    float:left;
}
.pnl-results-count{
    display:inline-block;
    float:right;
}
.search-results-wrapper{
    float:left;
    display: block;
    width: 100%;
}
.search-results-wrapper table {
    width: 100%;
}

.search-results-table tr.table {
    display: flex;
    margin-bottom: 0;
    align-items: baseline;
}

.search-key-label, .search-key-header{
    padding-right:10px;
}
.search-results-table tr.table td{
    padding:30px 10px;
}
.search-results-table tr.table:nth-child(odd){
    background-color:#eaeaea;
}
.searchPager{
    text-align:center;
}
.searchPager .search-page-list{
    display:inline-block;
    padding:0;
}
.searchPager .search-page-list li{
    display:inline-block;
    margin:5px;
}
.searchPager .search-page-list li a{
    padding:5px 10px;
    text-decoration:none;
}
.searchPager .search-page-list li a:hover{
    background-color:#EAEAEA;
}
.searchPager .search-page-list li a.active{
    background-color:#EAEAEA;
}
.searchPager .page-button-prev, .searchPager .page-button-next{
    padding:5px 10px;
    text-decoration:none;
}
.searchPager .page-button-prev:hover, .searchPager .page-button-next:hover{
    background-color:#EAEAEA;
}
.searchPager .page-button-prev.disabled:hover, .searchPager .page-button-next.disabled:hover{
    background-color:transparent;
}
.search-results-table tr.table.page-button-item{
    background-color:transparent;
}
/*Email a patient*/
.step-image{
    display:inline-block;
    float:left;
    height:265px;
    width:50%;
    margin-bottom:15px;
    overflow:hidden;
}
.step-image input[type="image"]{
    width:310px;
}
.formEPRow .input-box{
    width:100%;
}
.formEPRow .textarea-box{
    width:100%;
}
.formEPRow span[style]{}
span.required-field{
    color:#810200;
}
.required-field-key{
    color:#810200;
    margin-top:25px;
    margin-bottom:15px;
}
div.but input[value="Submit"], div.but input[value="Processing"]{
    float:left;
    padding:9px 18px;
    font-size:16px;
    background-color:#0A72C0;
    color:#fff;
    display:inline-block;
    text-transform:uppercase;
    font-weight:600;
    white-space:normal;
    text-decoration:none;
    border:none;
    margin-top:15px;
}
div.but input[value="Reset"]{
    float:left;
    padding:9px 18px;
    font-size:16px;
    background-color:#0A72C0;
    color:#fff;
    display:inline-block;
    text-transform:uppercase;
    font-weight:600;
    white-space:normal;
    text-decoration:none;
    border:none;
    margin-top:15px;
    margin-left:15px;
}
.patient-email{
    max-width:100%;
}
.responsive-captcha{
    overflow-x:scroll;
}
/*Subsite*/
.headerSubsite{
    background-color:#1379C4;
    margin-bottom:90px;
}
section.subsite-home-content{
    padding-top:90px;
}
.embed-container{
    position:relative;
    padding-bottom:56.25%;
    height:0;
    overflow:hidden;
    max-width:100%;
    margin-bottom: 20px;
}
.embed-container iframe, .embed-container object, .embed-container embed{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}
.subsite-container{
    padding-left:50px;
    padding-right:50px;
    display:inline-block;
    width:100%;
}
/*** Universal Navigation Styles*/
.navbar-container .fad-specialty-dd, .navbar-container .fad-name-dd, .navbar-container .fad-zip-dd{
    width:calc(33% - 10px);
    display:inline-block;
}
.navbar-container .fad-specialty-dd, .navbar-container .fad-name-dd{
    margin-right:14px;
}
.navbar-container .fad-name-dd input, .navbar-container .fad-zip-dd input, .navbar-container .find_doctor_right_select{
    width:100%;
    box-sizing:border-box;
}
.navbar-container .dropdown-menu{
    position:relative;
}
.navbar-container .fad-nav-btn-dd{
    position:relative;
    width:100%;
    height:60px;
}
.navbar-container #pnl-fad-nav .btn-find-doctor{
    position:absolute;
    right:0;
    bottom:30px;
}
.navbar-container #pnl-fad-nav .btn-find-doctor{
    background:#0A72C0;
    color:#fff;
    padding:6px 20px;
    box-sizing:border-box;
}
.navbar-container #pnl-fad-nav .btn-find-doctor:hover{
    color:#ffffff;
    background-color:#094d82;
}
.navbar-container .main-nav .dropdown-menu .text-right &gt; .btn{
    color:#fff;
}
.navbar-container .main-nav .dropdown-menu .text-right &gt; .btn:hover{
    color:#97c33c;
    background-color:transparent;
}
.navbar-container .main-nav ul li{
    list-style-type:none;
}
.navbar-container .main-nav .dropdown-menu ul{
    padding-left:0;
}
.navbar-container .main-nav .loc-links a{
    display:block;
    margin:10px 0;
}
.navbar-container .main-nav .loc-links .fa-chevron-right{
    padding-right:6px;
}
.navbar-container .main-nav .maps{
    position:relative;
}
.navbar-container .main-nav .maps h4, .navbar-container .main-nav .maps p{
    display:block;
    padding-left:20px;
    box-sizing:border-box;
}
.navbar-container .main-nav .maps .unav-loc-marker{
    position:relative;
}
.navbar-container .main-nav .maps .unav-loc-marker i{
    position:absolute;
    left:0;
    top:10px;
}
.navbar-container .main-nav .maps img{
    margin-bottom:14px;
}
.navbar-container a.test{
    color:red;
}
.navbar-container .unav-location.active a{
    color:#97c33c !important;
}
.navbar-container .unav-loc-category span{
    border-top:1px solid #eeeeee;
    width:100%;
    display:block;
    padding:20px 0;
    box-sizing:border-box;
    margin-top:30px;
}
.unav-loc-category ul li{
    display:inline-block;
    margin-right:5px;
}
.unav-loc-category ul li a{
    background-color:#0A72C0;
    text-align:center;
    padding:10px 40px;
    color:#ffffff;
}
.unav-loc-category ul li a:hover{
    background-color:#094d82;
    color:#ffffff;
}
/*LB MODIFIED:9/20*/
.dd-loc-address{
    display:inline-block;
    vertical-align:top;
    width:50%;
    margin-left:-5px;
    position:relative;
}
.navbar-container .image-loc-dd{
    display:inline-block;
    vertical-align:top;
    width:50%;
    margin-left:0px;
    padding-right:20px;
    box-sizing:border-box;
}
.navbar-container .image-loc-dd img{
    width:100%;
    max-width:238px;
}
@media(max-width:767px){
    .navbar-container .global-nav-collapse{
        display:none !important;
    }
    .navbar-container .sub-menu{
        display:none !important;
    }
    .interior-hero-banner div.full-banner{
        height:130px;
    }
    body .interior-hero-banner .page-title{
        margin-top:35px;
        width:100%;
    }
}
/*** End Universal Navigation Styles*/
/*breakpoints*/
@media (max-width:991px){
    .interior-hero-banner .page-title-container{
        padding-top:177px;
    }
}
@media (max-width:857px){
    .interior-hero-banner .page-title-container{
        padding-top:197px;
    }
}
@media (max-width:767px){
    .interior-hero-banner .page-title-container{
        padding-top:71px;
    }
    .interior-hero-banner .page-title{
        margin-top:75px;
        font-size:30px;
    }
    .page-content-container.col-md-9{
        padding-left:15px;
    }
    .subsite-container{
        padding-left:15px;
        padding-right:15px;
    }
}
@media (max-width:580px){
    .pnl-results-count{
        float:left;
        margin-top:15px;
    }
}
@media (max-width:360px){
    .interior-hero-banner .page-title{
        font-size:22px;
    }
    .subsite-container{
        padding-left:5px;
        padding-right:5px;
    }
}
@media (max-width:345px){
    .search-results-table tr.table td{
        padding:15px 4px;
    }
}
@media (max-width:330px){
    .main-nav .navbar-brand img{
        height:35px;
    }
}
/*LB MODIFIED:9/21*/
.nav-sub{
    position:relative;
    width:100%;
    height:65px;
}
.headerSubsite .nav-sub ul{
    display:block;
    padding:0;
    max-width:1170px;
    margin:0 auto;
    height:65px;
}
.headerSubsite .nav-sub ul li{
    display:inline-block;
    font-size:0;
}
.headerSubsite .nav-sub ul li:first-of-type{
    /*width:90px !important;*/
}
.headerSubsite .nav-sub ul li a:first-of-type{
    padding:0px !important;
}

.headerSubsite .nav-sub ul li:nth-child(2){
    width:90px !important;
}

.headerSubsite .nav-sub ul li:nth-child(2) img{
    width:30px;
}
.headerSubsite .nav-sub ul li a{
    color:#fff;
    text-decoration:none;
    padding:15px 30px;
    display:inline-block;
    text-align:center;
    font-size:18px;
    line-height:17px;
}
.home-video h1{
    border-bottom:2px solid #97c33c;
    padding-bottom:14px;
    margin-bottom:30px;
    width:auto;
    max-width:300px;
    margin-top: 0;
}
.subsite-container .col-md-8 h1, .subsite-container .col-md-4 h1{
    border-bottom:2px solid #97c33c;
    padding-bottom:14px;
    margin-bottom:30px;
    width:auto;
    max-width:500px;
}
.home-video{
    margin-bottom:40px;
}
.subsite-container{
    max-width:1170px;
    margin:40px auto;
    display:block;
}
.subsite-bvmp .quick-links a{
    text-decoration:none;
}
.subsite-bvmp .quick-links:hover{
    color:#fff;
    background-color:rgba(151, 195, 60, 0.9);
}
.subsite-bvmp .quick-links:hover h2{
    color:#fff;
}
.subsite-bvmp .quick-links h2{
    font-size:18px;
    color:#0095b5;
    margin-bottom:0;
    -webkit-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}
.subsite-bvmp .card-container{
    text-align:center;
    padding:20px;
    box-sizing:border-box;
}
.subsite-bvmp{
    max-width:1170px;
    margin:0 auto;
    display:block;
}
.subsiteLogo{
    /*position:absolute;*/
    left:0px;
    max-width:160px;
    top:-12px;
}
.subsite-bvmp .quick-links{
    width:16.6% !important;
    display:inline-block;
    padding:0 10px;
    box-sizing:border-box;
    margin-left:-5px;
}
.subsite-bvmp .quick-links:first-child{
    margin-left:0;
}
.subsite-menu{
    padding:20px 50px;
    position:relative;
    border-bottom:1px solid #fff;
    color:#fff;
    display:none;
}
.subsite-menu img{
    position:absolute;
    right:50px;
    top:27px;
}
.divDidYouMeanClass{
    display:none;
}
.bvhs-badge-profile{
    display:block;
    background:#AACD5F;
    color:#fff;
    max-width:80px;
    margin:20px auto;
    padding:8px 0;
}
.badge-text{
    display:block;
}
@media (max-width:992px){
    .ccp-wrapper{
        display:none;
    }
}
.ccp-wrapper{
    position:fixed !important;
    top:0 !important;
    z-index:300 !important;
}

.headerSubsite .nav-sub ul li{
    margin-left:-5px;
}

.headerSubsite .nav-sub ul li:first-child{
    margin-left:0;
}
.headerSubsite .nav-sub ul li .verticalCont{
    height:65px;
    display:table;
}
.headerSubsite .nav-sub ul li span{
    display:table-cell;
    vertical-align:middle;
    padding:0 30px;
}
.headerSubsite .menuMobileSub{
    display:none;
}
.subsite-home .featured-section-inner{
    color:#fff;
    background-image:-webkit-radial-gradient(rgba(9, 77, 130, 0.9), rgba(9, 77, 130, 0.8));
    background-image:radial-gradient(rgba(9, 77, 130, 0.9), rgba(9, 77, 130, 0.8));
    background-color:rgba(9, 77, 130, 0);
    -webkit-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
    padding:0;
    position:relative;
}
/* SUBSITE HOME AND CONTENT PAGE STYLING */
.image-section-content{
    position:absolute;
    top:0;
    padding:20px;
}
.subsite-home .featured-section-inner:hover{
    background-color:rgba(9, 77, 130, 0.7);
}
span.lower-ad-header{
    font-style:italic;
    display:block;
    padding-bottom:4px;
    border-bottom:4px solid #90BF32;
}
.image-section-content .lower-ad-description{
    margin:5px 0 20px 0;
    font-size:14px;
    font-weight:200;
}
.image-section-content .see-more{
    color:white;
    padding:15px;
    border:1px solid #fff;
    text-decoration:none;
    float:right;
    font-size:12px;
}
.featured-section.col-md-4:nth-of-type(2) .featured-section-inner{
    background-image:-webkit-radial-gradient(rgba(26, 101, 183, 0.9), rgba(67, 130, 200, 0.8));
    background-image:radial-gradient(rgba(26, 101, 183, 0.9), rgba(67, 130, 200, 0.8));
}
.subsite-home .featured-section.col-md-4:nth-of-type(1) .featured-section-inner{
    background-image:-webkit-radial-gradient(rgba(31, 62, 93, 0.9), rgba(31, 62, 93, 0.8));
    background-image:radial-gradient(rgba(31, 62, 93, 0.9), rgba(31, 62, 93, 0.8));
}
.az-service &gt; a{
    margin-top:-118px;
    display:inline-block;
}
/* Locations */
.practice-name-side{
    text-transform:uppercase;
    font-size:18px;
    font-weight:bold;
    padding-bottom:5px;
    margin-bottom:30px;
    border-bottom:2px solid #AACD5F;
}
.practice-name-side span{
    padding:15px 0 0 10px;
    color:#72705e;
}
.meet-staff-container{
    margin-bottom:30px;
}
.location-class-container{
    margin-bottom:30px;
}
.locations-info-wrapper{
    padding:15px 0 0 10px;
    margin-bottom:30px;
    color:#72705e;
}
.physician-info-wrapper{
    padding:15px 0 0 10px;
    color:#72705e;
}
.location-class-item-wrapper{
    padding:15px 0 0 10px;
    color:#72705e;
}
.physician-info{
    padding-bottom:10px;
}
.location-class-item{
    padding-bottom:10px;
}
.location-logo{
    text-align:center;
    padding:30px 0 15px 0;
}
.practice-side-nav-header h1{
    font-size:18px;
    font-weight:normal;
    font-style:normal;
    margin-bottom:10px;
}
.practice-side-nav-header{
    border-bottom:2px solid #004D82;
    padding-left:10px;
}
.locations-left a{
    display:block;
    text-decoration:none;
    color:#72705e;
    font-style:italic;
    font-weight:bold;
    font-size:14px;
}
.main-nav .dropdown:hover .dropdown-menu, .main-nav .full-width.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
}
#class-registration #step-1 input[type="button"]#step-1-next{
    background-color:#63b9ca;
}
.medicalGroupResultsLinks a{
    text-decoration:none;
    padding-bottom:2px;
    font-size:24px;
    line-height:24px;
    font-weight:600;
    padding-top:10px;
}
.medicalGroupResultsLinks p.medicalGroupName{
    font-size:24px;
    line-height:30px;
    font-weight:600;
    padding-top:15px;
}
.medicalGroupResultsLinks a:hover{
    color:#0A72C0;
    text-decoration:underline;
}
.medicalGroupResultsLinks p{
    line-height:16px;
    font-size:16px;
    font-weight:500;
}
.medicalGroupResultContainer{
    position:relative;
    padding-bottom:65px;
}
.medicalGroupResultsLinks{
    padding:15px;
}
.viewLink{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
}
.viewLink a{
    color:#fff;
    font-weight:600;
    font-size:16px;
    line-height:24px;
    text-decoration:none;
    background-color:#0A72C0;
    display:block;
    width:100%;
    padding:15px;
}
.viewlink a:hover{
    background-color:#094d82;
}
.medicalGroupAddressInfo br{
    display:none;
}
p.searchResults{
    display:inline-block;
    float:left;
}
p.showingResults{
    float:right;
    display:inline;
}
.medicalGroupContent{
    clear:both;
}
.medicalGroupContent .medicalGroupResultContainer{
    margin-right:6%;
}
.medicalGroupContent .medicalGroupResultContainer:nth-child(3n){
    margin-right:0
}
.breadcrumbs.practice{
    padding-bottom:15px;
}

.long-desc-container {
    position: relative;
}
#practice-nav-details{
    border-bottom:4px solid #1796b7;
    width:100%;
}
#practice-nav-details ul{
    padding-left:0;
}
#practice-nav-details li{
    display: inline-block;
    width: 30%;
    padding: 17px 35px;
    padding-bottom: 15px;
    cursor: pointer;
    text-align: center;
    color: #999;
    font-weight: bold;
    background: #eaeaea;
    border: 1px solid #e0e0e0;
    margin: 0px 0px -10px;
    border-radius: 8px 8px 0px 0px;
    border-bottom:none;
}
#practice-nav-details li:hover{
    color:#fff;
    background: #1796b7;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-bottom:none;
}
#practice-nav-details li:first-of-type{
    margin-left:0px;
}
#practice-nav-details li a{
	color: #999;
	text-decoration:none;
}
#practice-nav-details li a:hover{
	color: #fff;
	text-decoration:none;
}
#practice-nav-details li.active{
	color:#fff;
    background: #1796b7;
    border-bottom:none;
}
.item-has-children &gt; a::after, .item-with-children &gt; a::after{
    content:"\f105";
    font-family:FontAwesome;
    display:block;
    height:20px;
    width:8px;
    position:absolute;
    top:50%;
    bottom:auto;
    -webkit-transform:translateY(-50%);
    transform:translateY(-50%);
    right:1em;
    background-size:8px 11px;
    -webkit-transition-property:-webkit-transform;
    transition-property:-webkit-transform;
    transition-property:transform;
    transition-property:transform, -webkit-transform;
    -webkit-transition-duration:0.2s;
    transition-duration:0.2s;
    display:none;
}
.left-nav-with-children &gt; a::after{
    display:block !important;
}
.unav-loc-category li{
    margin-bottom:20px;
}
.homepage-banner-wrapper .half-height #imgBottomAd .vert-content h2{
    margin-bottom:0;
}
.hero-banner .conversion-row h2{
    transition:none;
}
#classes-block .content-container div.row &gt; div:first-child{
    display:block;
}
.servicesAlphabet a, .servicesAlphabet a:hover, .servicesAlphabet{
    cursor:pointer !important;
}
.servicesAlphabet a.letter-disabled, .servicesAlphabet a.letter-disabled:hover{
    cursor:default !important;
}
#avid-loc-search .pnl-category-more select{
    background:#fff !important;
    color:#094d82 !important;
    font-family:'Open Sans', sans-serif;
}
#avid-loc-search .pnl-category-more select:active, #avid-loc-search .pnl-category-more select:hover{
    background:#0A72C0 !important;
    color:#fff !important;
}
#search-facility .pnl-category-buttons button:last-child{
    padding:10px 57px !important;
}
#avid-loc-search-address input[type="submit"]:hover{
    border:none;
}
.google-marker a i{
    color:#0A72C0 !important;
}
.locations-left a:hover{
    color:#0A72C0 !important;
}
.interior-page .long-desc-container &gt; img#imgLocation{
    width:100%;
    display:none;
}
#sidebar-nav a:hover{
    color:#0095b5 !important;
}
#class-event-details input[type="submit"], #class-event-details .registerBtn a{
    font-size:16px !important;
}
.doctorDetailContainer .share-profile .fa{
    font:normal normal normal 30px/1 FontAwesome !important;
}
.inlineBtnContainer{
    text-align:right;
}
.divFindADoctor .inlineBtnContainer .btn{
    position:relative;
}
.ui-menu{
    background:white;
    border:1px solid #939393;
    width:calc(33% - 10px);
}
.ui-menu .ui-menu-item ul, .ui-menu .ui-menu-item, .ui-menu .ui-menu-item li, .ui-menu .ui-menu-item a{
    list-style-type:none !important;
    text-decoration:none;
}
.ui-menu .ui-menu-item a{
    background:white;
    height:22px;
    font-size:18px;
    list-style-type::none;
}
.patient-visitor &gt; ul, .healthcare-professionals-container &gt; ul, .education-resource-container &gt; ul{
    left:auto !important;
    right:0 !important;
    max-width:600px !important;
    width:100% !important;
    float:none !important;
}
.healthcare-professionals-container &gt; ul{
    max-width:500px !important;
}
.flyout-locations{
    max-width:900px !important;
    width:100% !important;
    float:none !important;
}
.education-sub-list{
    width:50%;
    display:inline-block;
    vertical-align:top !important;
    margin-left:-5px;
    padding:0 10px;
    box-sizing:border-box;
    float:none !important;
}
.education-resource-container &gt; ul &gt; li a{
    vertical-align:top !important;
    white-space:initial !important;
}
.unav-loc-category ul li a{
    padding:10px 30px;
    box-sizing:border-box;
}
#listitem .active{
    color:#0095b5 !important;
}
#quickLinks .card-container:hover, #quickLinks .card-container:hover h2{
    color:#fff !important;
}
.registerForm{
    padding-top:74px;
}
#global-navigation-right &gt; li:nth-child(2) img, #global-navigation-right &gt; li:nth-child(3) img{
    display:none;
    padding:0;
    margin:0;
}
#avid-loc-map{
    height:600px;
}
.blog-topics ul.blog-topics-list li.blog-topics-list-item{
    width:18.4%;
    display:inline-block;
    vertical-align:top;
    margin-left:-5px !important;
    margin-right:0 !important;
    padding:0 20px 0 0 !important;
    box-sizing:border-box;
    float:none !important;
    vertical-align:middle;
}
.blog-topics ul.blog-topics-list li.blog-topics-list-item:first-child{
    margin-left:0;
    width:8%;
}
.blog-topics-list-item .lnk-category a{
    line-height:24px !important;
    text-align:center;
    padding:0;
}
.blog-topics ul.blog-topics-list{
    padding:0 10px;
    box-sizing:border-box;
}
.blog-topics-list-item span{
    height:61px;
}
.blog-topics ul.blog-topics-list li.blog-topics-list-item .lnk-category a, .blog-topics ul.blog-topics-list li.blog-topics-list-item.first a{
    vertical-align:middle !important;
    height:61px;
    display:table-cell;
}
.blog-article-list ul li.blog-article-item{
    float:none;
    margin:10px 25px 0px -5px !important;
    display:inline-block;
    width:calc(33% - 30px);
    padding-bottom:35px !important;
    padding:0 10px;
    box-sizing:border-box;
    vertical-align:top;
}
.blog-article-list ul li.blog-article-item:first-child{
    margin-left:0;
}
.blog-article .pnl-article-main-wrapper img{
    width:100%;
    height:auto;
}
.not-used{
    display:none;
}
.blog-nav{
    padding:38px 0 0 0;
}
.page-content-container .blog-article .pnl-header-image{
    display:none;
}
.blog-article .pnl-header-title h2{
    padding:0;
    margin-top:0;
}
.page-content-container .blog-article #disqus_thread{
    display:none;
}
.doctorDetailContainer{
    max-width:700px !important;
    display:block !important;
    margin:10px auto !important;
    width:100% !important;
}
.page-content-container .mobile-contact-info {
    text-align: center;
    font-size: 200%;
    font-weight: bold;
    color: #a1a1a0;
    line-height: 1.2;
    margin: 20px 0;
}
.page-content-container .mobile-contact-info a, .page-content-container .mobile-contact-info a:hover, .page-content-container .mobile-contact-info a:visited{
    color:inherit;
    text-decoration:none;
}

.MedSpa .navbar.pre-footer, .Independence-House .navbar.pre-footer, , .TechniCore .navbar.pre-footer {
    display: none;
}

.MedSpa + #divFooter .navbar.pre-footer, .Independence-House + #divFooter .navbar.pre-footer, , .TechniCore + #divFooter .navbar.pre-footer {
    display: none;
 }
.MedSpa .footer .container-fluid, .Independence-House .footer .container-fluid, , .TechniCore .footer .container-fluid {
    margin: 0;
}
.locations-info-wrapper .phoneLink{
    display:inline-block;
    display:block;
    cursor:default;
    font-size:16px;
    font-weight:normal;
}
.dropdown-menu{
    background-color:rgba(255, 255, 255, 1.0) !important;
}

.slimScrollBar{
    width:12px !important;
}
.lower-ads-section{
    clear:both;
}
.pre-footer .cd-navigation a:hover{
    color:#0A72C0 !important;
    background-color:transparent;
}
.print-btn{
    clear:both;
    float:none;
    position:relative;
    display:block;
}
.practice-name-side span{
    display:inline-block;
}
.fad-specialty-dd{
    vertical-align:top;
    margin-top:0px;
    display:inline-block;
}

.homepage-news{
    padding:15px 0 60px 0;
    margin:0 auto;
    width:92%;
}

#conversion-block .image-section img{
    width:100%;
}

#conversion-block .content-container{
    padding:15px;
}

#conversion-block .row{
    margin:0;
}

@media(max-width:767px){
    .homepage-news #classes-block{
        max-width:460px;
        max-width:100%;
    }
}
.relatedBlogs h5{
    margin-top:40px;
    padding-top:30px;
    border-top:1px solid #eeeeee;
}
.blog-item-wrapper a span{
    font-family:'Open Sans', sans-serif;
    color:#75777a;
}
@media(max-width:460px){
    .blog-item-wrapper img.blog-item-img{
        display:block;
    }
}
#homepageBannerSlider &gt; li{
    height:100%;
}
#homepageBannerSlider .banner-link .bkg-image{
}
ul#homepageBannerSlider{
}
ul#homepageBannerSlider{
    height:405px;
}
ul#homepageBannerPager li{
    list-style:none;
    display:inline-block;
    height:18px;
    width:18px;
}
ul#homepageBannerPager{
    position:relative;
    top:-86px;
}
#homepageBannerPager li a{
    height:10px;
    width:10px;
    display:inline-block;
    background-image:url('../_img/Rotating_solid (1).png');
}
li{}
#homepageBannerPager li a.active{
    background-image:url('../_img/Rotating_blank (1).png');
}
a#lnkBanner{
    text-decoration:none;
}
.hero-row div[class*="col-"]:nth-of-type(1) .vert-content h2.white{
    color:#fff;
}
.row.hero-row{
    margin-bottom:50px;
}
.row.hero-row .bx-wrapper .bx-viewport{
    border:5px solid #f3f2f0;
    border-width:0 5px;
    box-shadow:none;
}

#divFormPreRegistration input[type="email"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"], textarea, select{
    height:40px;
    font-size:16px;
    font-weight:400;
    padding:0 10px;
    background-color:#fff;
    border:1px solid #939393;
    box-shadow:none;
    box-sizing:border-box;
    color:#939393;
}
#divFormPreRegistration label, legend{

    /*margin-top:5px;*/
    margin-bottom:.5rem;
    font-weight:400;
}
#divFormPreRegistration .format{
    color:#939393;
    font-size:15px;
}
#divFormPreRegistration hr{
    color:#939393;
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #ccc;
    margin:1em 0;
    padding-bottom:10;
}
#divFormPreRegistration .styled-select{}
#divFormPreRegistration input[type="submit"]{
    color:#ffffff;
    background-color:#0A72C0;
    font-size:16px;
    margin:0;
    font-weight:400;
    text-align:center;
    vertical-align:middle;
    border:none;
    padding:10px 50px;
}
#divFormPreRegistration input[type="submit"]:hover{
    color:#ffffff;
    background-color:#094d82;
}
#divFormPreRegistration h2{
    padding-bottom:10px;
}
#divFormPreRegistration .checkBtnSection{
    float:right;
    display:inline-block;
    padding-left:5px;
}
#divFormPreRegistration .checkContainer{
    padding-right:15px;
}
#divFormPreRegistration label.indentification{
    width:300px;
}
#divConversions #classes-block .image-section img{
    width:100%;
}
#ddl-category-more option::before{
    content:"0";
    height:10px;
    width:10px;
    display:inline-block;
}
.loc-category-color span{
    width:16px;
    height:16px;
    display:inline-block;
    margin:0 5px 0 0;
    vertical-align:top;
}
.loc-category-color{
    position:relative;    /* height:10px; */
}
.loc-category-color .option-label{
    display:inline-block;
    width:80%;
    line-height:19px;
}
.locations-left a.back-to-results-link{
    cursor:pointer;
    font-style:normal;
    font-size:18px;
    text-decoration:none;
    font-weight:normal;
}
#divConversions .homepage-news{
    width:100%;
}
#divConversions #classes-block .content-section{
    padding:20px;
}
.photo_wrap{
    display:none;
}
#divConversions #news-block .section-title, #divConversions #classes-block .section-title, #divConversions  #homepage-cta-3 .section-title{
    margin:0;
    letter-spacing:1px;
    font-size:18px;
}
#divConversions #news-block a:not(.btn), #divConversions  #classes-block a:not(.btn), #divConversions #homepage-cta-3 a:not(.btn){
    display:block;
}
.interior-hero-banner div.full-banner{
    height:242px !important;
}

#conversion-block a{
    text-decoration:none;
}

#conversion-block .content-section{
    background-color:#094d82;
    padding:20px 0;
}

#conversion-block .content-section h2.section-title{
    text-align: center;
    margin-bottom: 0;
    color: #97c33c;
    text-align: center;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: none;
    padding-bottom: 0;
    background-color: #094d82;
    font-size: 18px;
    margin-top: 0px;
    text-decoration: none;
}

/*Added by therealbrandon 1-12-2017*/
.MedSpa .header {
    display: none;
}

.MedSpa .interior-hero-banner .page-title-container {
    padding-top: 0;
}

.MedSpa .interior-hero-banner div.full-banner {
    height: 380px !important;
    background-size: cover;
    position: relative;
    z-index: 9;
    background-position-x:20%;
}

.MedSpa .nav-sub {background-color: #00305c; margin-bottom: 12px;}

.MedSpa .subsite-home .featured-section.col-md-4:nth-of-type(1) .featured-section-inner {
    background-image: radial-gradient(rgba(0, 147, 144, 0.9), rgba(0, 147, 144, 0.8));
    background-image: radial-gradient(rgba(0, 147, 144, 0.9), rgba(0, 147, 144, 0.8));
}

.MedSpa .featured-section.col-md-4:nth-of-type(2) .featured-section-inner {
    background-image: radial-gradient(rgba(103, 200, 198, 0.9), rgba(103, 200, 198, 0.8));
    background-image: radial-gradient(rgba(103, 200, 198, 0.9), rgba(103, 200, 198, 0.8));
}

.MedSpa .subsite-home .featured-section-inner:hover {
    background-color: rgba(0, 177, 176, 0.7);
}

.MedSpa .subsite-home .featured-section-inner {
    background-image: radial-gradient(rgba(0, 177, 176, 0.9), rgba(0, 177, 176, 0.8));
    background-image: radial-gradient(rgba(0, 177, 176, 0.9), rgba(0, 177, 176, 0.8));
}

.MedSpa span.lower-ad-header {
    border-bottom: 4px solid #a3d060;
    font-size: 20px;
}

.MedSpa .headerSubsite .nav-sub ul li:nth-child(2){
    width:16.6667% !important;
}

.MedSpa .headerSubsite .nav-sub ul li:nth-child(1){
    width:90px !important;
}

.dropdown-menu.fad-menu.active {
    display: block !important;
}

@media (max-width:767px){
    .subsite-bvmp .quick-links{
        width:33.6% !important;
    }
    .interior-hero-banner div.full-banner{
    height:150px !important;
}
}
@media (max-width:500px){
    .subsite-bvmp .quick-links{
        width:33.6% !important;
    }
}
@media (min-width:500px){
    .subsite-bvmp .quick-links{
        width:33% !important;
    }
}
@media (min-width:600px){
    .subsite-bvmp .quick-links{
        width:17% !important;
    }
}
@media (max-width:360px){
    .conversion-row{
        width:100%;
    }
}

.pnl-article-main-wrapper a{
    display: block;
}
.pnl-article-main-wrapper a img{
    max-height: 420px;
}

.acara-form {
    padding:30px;
    background-color: #67C8C6;
    color:#fff;
    z-index: 99;
    border: none;
    margin:0 auto;
    margin-top:100px;
}

.acara-wrapper{
    left: 0;
    right: 0;
    top:0;
    bottom:0;
}

.overlay-visible.MedSpa .acara-wrapper{
    position:fixed;
    background-color:rgba(0, 0, 0, 0.7);
    z-index:99;
}


.form-overlay{
    display: none;
}
.form-overlay p{
    color:#fff;
}
.overlay-visible .form-overlay {
    display: block;
    width:100%;
    max-width:500px;
    min-height:554px;
}

.close-button{
    float: right;
}

.MedSpa h1,
.MedSpa h2{
    color: #094D82;
}
.MedSpa .header {
    display: none;
}

body.MedSpa p{
    color: #fff;
}

body.MedSpa input{
    width:100%;
    padding: 0;
    margin:0;
}

body.MedSpa button,
body.MedSpa .btn.button{
    background-color:transparent;
    border:1px solid #fff;
    padding: 15px;
}

body.MedSpa{
    background-color:transparent;
    overflow-y:hidden;
}

body.MedSpa .close-button{
    text-decoration: none;
    color:#fff;
    font-weight:normal;
    text-transform:capitalize;
}
body.MedSpa input{
    color:#939393;
}
body.MedSpa input[type="email"]{
    border: 1px solid #939393;
}

.acara-wrapper &gt; a.close-button{
    position: absolute;
    top:120px;
    right:40%;
    right:calc(50% - 226px);
    cursor: pointer;
    color:#fff;
    text-decoration: none;
    width: 93px;
    height: 75px;
    text-align: center;
    padding-top: 22px;
    font-weight: 600;
}

.MedSpa .headerSubsite .nav-sub ul li:first-of-type img {
    width: 48px;
}

.print-btn.result-atoz {
    height: 50px;
}
/*a.form-overlay.close-button{
    display:none;
}

body.MedSpa a.form-overlay.close-button{
    display:none;
}*/
.overlay-visible.MedSpa .btn.close-button{
    display:block;
    width: auto;
    margin-left: 10px;
    min-height:auto;
}

/*
.MedSpa .nav.navbar-nav li:first-child, .MedSpa .nav.navbar-nav li:first-child + li,
.Independence-House .nav.navbar-nav li:first-child, .Independence-House .nav.navbar-nav li:first-child + li,
.Independence-House .nav.navbar-nav li:first-child, .Independence-House .nav.navbar-nav li:first-child + li, 
.TechniCore .nav.navbar-nav li:first-child, .Independence-House .nav.navbar-nav li:first-child + li 
{
    display: none;
}

.MedSpa .nav.navbar-nav li:first-child + li +li:before,
.Independence-House .nav.navbar-nav li:first-child + li +li:before,
.Independence-House .nav.navbar-nav li:first-child + li +li:before, 
.TechniCore .nav.navbar-nav li:first-child + li +li:before 
{content: " ";}

*/

.MedSpa .nav.navbar-nav li:first-child + li + li &gt; a {
    margin-left: 0;
}


.print-btn a {
    background-color: #ddd;
    color: #75777a;
}

a.request-appointment img {
    width: auto;
}

.divButton a {
    background: #0A72C0;
    color: #fff;
    padding: 6px 20px;
    box-sizing: border-box;
    text-decoration: none;
}

.divButton .joint-replacement-btn {
    background: #0A72C0;
    color: #fff;
    padding: 6px 20px;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
}

.subsite-homepage div#mobileLocationMenu {
    display: none !important;
}
.row.hero-row .bx-wrapper .bx-viewport {
    background: #f3f2f0;
}

/* NEW ALERT 12-22-17 */

#alert-header {
    background: repeating-linear-gradient(-65deg, #a1ca52, #98c340 2px, #98c340 13px, #98c340 15px);
}

    #alert-header:first-child::before {
    }

    #alert-header p {
        color: #fff;
        line-height: 1;
        padding: 14px 0;
        margin: 0;
    }

    #alert-header .header-left-content p::before {
        font-family: "FontAwesome", Arial, Helvetica, sans-serif;
        content: '\f0a2  Alert Message: ';
        float: left;
        padding-right: 10px;
    }

    #alert-header .header-left-content p span {
        display: block;
        overflow: hidden;
    }

#end-alert p:hover {
    cursor: pointer;
}

#end-alert p {
    text-align: right;
    padding-right: 20px;
}

    #end-alert p::after {
        content: '' !important;
        display: none;
    }

#end-alert button {
    margin-top: -31px !important;
    color: #fff;
    text-shadow: none;
    opacity: 1;
    font-weight: normal;
}


/*Added by therealbrandon 1-12-2017*/
.Independence-House .header {
    display: none;
}

.Independence-House .interior-hero-banner{
    height:auto;
    margin-bottom:0;
}

.Independence-House .interior-hero-banner .main-banner{
    max-height:100% !important;
}

.Independence-House .interior-hero-banner .page-title-container {
    padding-top: 0;
}

.Independence-House .interior-hero-banner .page-title-container img.full-banner{
    width:100%;
    height:auto;
}

.Independence-House .interior-hero-banner div.full-banner {
    height: 380px !important;
    background-size: cover;
    position: relative;
    z-index: 9;
    background-position-x:20%;
}

.Independence-House .nav-sub {background-color: #9f1b52; margin-bottom: 12px;}

.Independence-House .subsite-home .featured-section.col-md-4:nth-of-type(1) .featured-section-inner {
    background-image: radial-gradient(rgba(9, 77, 130, 0.7), rgba(9, 77, 130, 0.6));
    background-image: radial-gradient(rgba(9, 77, 130, 0.7), rgba(9, 77, 130, 0.6));
}

.Independence-House .featured-section.col-md-4:nth-of-type(2) .featured-section-inner {
    background-image: radial-gradient(rgba(9, 77, 130, 0.7), rgba(9, 77, 130, 0.6));
    background-image: radial-gradient(rgba(9, 77, 130, 0.7), rgba(9, 77, 130, 0.6));
}

.Independence-House .subsite-home .featured-section-inner:hover {
    background-color: rgba(120, 120, 120, 0.7);
}

.Independence-House .subsite-home .featured-section-inner {
    background-image: radial-gradient(rgba(9, 77, 130, 0.7), rgba(9, 77, 130, 0.6));
    background-image: radial-gradient(rgba(9, 77, 130, 0.7), rgba(9, 77, 130, 0.6));
}

.Independence-House span.lower-ad-header {
    border-bottom: 4px solid #9a1a50; /*  #094d82;*/
    font-size: 20px;
    color:#fff;
}

.Independence-House span.lower-ad-header:nth-of-type(2) {
    border-bottom: 4px solid #9a1a50 !important;
    font-size: 20px;
    color:#fff;
}

.Independence-House .image-section-content .lower-ad-description {
    color:#fff;
}

.Independence-House .image-section-content .see-more {
color:#fff;
}

.Independence-House .headerSubsite .nav-sub ul li{
    width:15%;
}

.Independence-House .headerSubsite .nav-sub ul li:nth-child(4){
    width:18%;
}

.Independence-House .headerSubsite .nav-sub ul li:nth-child(5){
    width:20%;
}

.Independence-House #sidebar-nav h4 {
    border-bottom: 2px solid #000;
}

.Independence-House #sidebar-nav a:hover {

    color: #9f1b52 !important;

}

.Independence-House .subsite-container .col-md-8 h1, .subsite-container .col-md-4 h1 {
    border-bottom: 2px solid #094d82;
}

.Independence-House section.subsite-home-content{
    padding-top:0;
}


.TechniCore .header {
    display: none;
}

.TechniCore .interior-hero-banner{
    height:auto;
    margin-bottom:0;
}

.TechniCore .interior-hero-banner .main-banner{
    max-height:100% !important;
}

.TechniCore .interior-hero-banner .page-title-container {
    padding-top: 0;
}

.TechniCore .interior-hero-banner .page-title-container img.full-banner{
    width:100%;
    height:auto;
}

.TechniCore .interior-hero-banner div.full-banner {
    height: 380px !important;
    background-size: cover;
    position: relative;
    z-index: 9;
    background-position-x:20%;
}

.TechniCore .nav-sub {background-color: #9f1b52; margin-bottom: 12px;}

.TechniCore .subsite-home .featured-section.col-md-4:nth-of-type(1) .featured-section-inner {
    background-image: radial-gradient(rgba(9, 77, 130, 0.7), rgba(9, 77, 130, 0.6));
    background-image: radial-gradient(rgba(9, 77, 130, 0.7), rgba(9, 77, 130, 0.6));
}

.TechniCore .featured-section.col-md-4:nth-of-type(2) .featured-section-inner {
    background-image: radial-gradient(rgba(9, 77, 130, 0.7), rgba(9, 77, 130, 0.6));
    background-image: radial-gradient(rgba(9, 77, 130, 0.7), rgba(9, 77, 130, 0.6));
}

.TechniCore .subsite-home .featured-section-inner:hover {
    background-color: rgba(120, 120, 120, 0.7);
}

.TechniCore .subsite-home .featured-section-inner {
    background-image: radial-gradient(rgba(9, 77, 130, 0.7), rgba(9, 77, 130, 0.6));
    background-image: radial-gradient(rgba(9, 77, 130, 0.7), rgba(9, 77, 130, 0.6));
}

.TechniCore span.lower-ad-header {
    border-bottom: 4px solid #9a1a50; /*  #094d82;*/
    font-size: 20px;
    color:#fff;
}

.TechniCore span.lower-ad-header:nth-of-type(2) {
    border-bottom: 4px solid #9a1a50 !important;
    font-size: 20px;
    color:#fff;
}

.TechniCore .image-section-content .lower-ad-description {
    color:#fff;
}

.TechniCore .image-section-content .see-more {
color:#fff;
}

.TechniCore .headerSubsite .nav-sub ul {
    display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: -webkit-flex;     /* NEW - Chrome */
     display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
    justify-content: space-around;
    -webkit-justify-content: space-around;
    align-items: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
}

.TechniCore .headerSubsite .nav-sub ul li{
    width:auto!important;
    margin-left: 0;
}

.TechniCore .headerSubsite .nav-sub ul li.logo-image-item {
    display: none;
}

/*.TechniCore .headerSubsite .nav-sub ul li:nth-child(4){
    width:18%;
}

.TechniCore .headerSubsite .nav-sub ul li:nth-child(5){
    width:20%;
}*/

.TechniCore #sidebar-nav h4 {
    border-bottom: 2px solid #000;
}

.TechniCore #sidebar-nav a:hover {

    color: #9f1b52 !important;

}

.TechniCore .subsite-container .col-md-8 h1, .subsite-container .col-md-4 h1 {
    border-bottom: 2px solid #094d82;
}

.TechniCore section.subsite-home-content{
    padding-top:0;
}


@media(max-width:897px){
    .registerForm{
        padding-top:20px;
    }
}
@media(max-width:991px){
    .subsite-hero-banner{
        margin-bottom:0;
    }
    section.subsite-home-content{
        padding-top:0;
        margin-top:0px;
    }
    .headerSubsite .nav-sub ul{
        position:relative;
        box-sizing:border-box;
        padding:0 10px 0 10px;
        /*margin-top:41px;*/
    }
    .subsiteLogo{
        position:relative;
        left:auto;
        right:auto;
        top:auto;
        display:block;
        max-width:160px;
        margin:-40px auto 0 auto;
    }
    .headerSubsite .nav-sub ul li a{
        color:#fff;
        text-decoration:none;
        padding:8px 30px;
        display:inline-block;
        text-align:center;
    }
    .subsite-container .featured-section img{
        margin:20px auto;
        display:block;
        max-width:460px;
    }
}
@media(max-width:990px){
    .patient-visitor &gt; ul, .healthcare-professionals-container &gt; ul, .education-resource-container &gt; ul, .flyout-locations{
        left:0 !important;
        right:0 !important;
        max-width:100% !important;
        width:100% !important;
        float:none !important;
    }
    #avid-loc-map{
        height:400px;
    }
    .blog-article-list ul li.blog-article-item{
        float:none;
        margin:10px 25px 0px -5px !important;
        display:inline-block;
        width:calc(50% - 30px);
        padding-bottom:35px !important;
        border-bottom:1px solid #959595;
        padding:0 10px;
        box-sizing:border-box;
        vertical-align:top;
    }
    .blog-article-list ul li.blog-article-item:first-child{
        margin-left:0;
    }
}
@media(max-width:767px){
    .subsite-menu{
        display:block;
        padding: 15px 15px;
        position: relative;
    }

    .headerSubsite {
        margin-bottom: 30px;
    }

    .subsite-menu::after {
        content: "\f107";
        font-family: "FontAwesome";
        color: white;
        position: absolute;
        right: 15px;
        top: 12px;
        font-size: 25px;
    }

    #mobileSidebarList #sidebar-nav a#navheader {
        font-weight: normal;
        font-size: 16px;
    }

    #sidebar-nav .cd-navigation li {
        padding: 10px 0px;
    }

    .headerSubsite .nav-sub ul li span {
        padding: 0px;
    }

    .mobile-sidebar-title {
        font-size: 16px;
    }

    #mobileSidebarMenu .mobile-sidebar-title:after {
        top: 5px;
    }

    .subsite-menu img {
        display: none;
    }

    .subsite-menu span {
        font-size: 18px;
    }


    .headerSubsite .nav-sub ul{
        display:none;
    }
    .headerSubsite .nav-sub .subsite-menu.open + ul{
        display:block;
    }
    .nav-sub{
        height:auto;
    }
    section.subsite-home-content{
        margin-top:0;
    }
    .subsite-home-content .headerSubsite{
        max-width:100%;
        width:100%;
        margin:0;
        display:block;
        background-color:#1379C4;
    }
    .headerSubsite .nav-sub ul{
        padding:0 20px;
        box-sizing:border-box;
        margin:0;
    }
    .headerSubsite .main{
        display:block;
        width:100% !important;
    }
    .headerSubsite .nav-sub ul{
        height:auto;
    }
    .headerSubsite .nav-sub ul li{
        margin:0 auto;
        padding:20px 0px;
        border-bottom:1px solid #1379C4;
    }
    .headerSubsite .nav-sub ul li .verticalCont{
        display:block;
        height:auto;
    }
    .Independence-House .headerSubsite .nav-sub ul li, .headerSubsite .nav-sub ul li:first-of-type, .TechniCore .headerSubsite .nav-sub ul li{
        width:100% !important;
    }
    .headerSubsite .nav-sub ul li.logo-image-item{
        display:none;
    }
    .subsiteLogo{
        position:relative;
        left:auto;
        right:auto;
        top:auto;
        display:block;
        max-width:160px;
        margin:0px auto;
    }
    .menuMobileSub{
        background-color:#1379C4;
        position:relative;
    }
    .headerSubsite .nav-sub ul li a{
        color:#fff;
    }
    .headerSubsite .nav-sub ul li a br{
        display:none;
    }

    .headerSubsite .nav-sub ul li a:hover{
        color:#97c33c;
    }
    .headerSubsite .nav-sub ul li.menuMobileSub{
        display:block;
        padding:15px 30px;
        color:#fff;
        margin-bottom:0;
    }
    .headerSubsite .mainMenuSubsiteLnk{
        border-left:1px solid #1379C4;
        border-right:1px solid #1379C4;
    }
    .headerSubsite .fa-caret-down{
        position:absolute;
        right:20px;
        top:12px;
        height:auto;
        font-size:24px;
    }
    .headerSubsite .fa-caret-up{
        display:none;
        position:absolute;
        right:20px;
        top:12px;
        height:auto;
        font-size:24px;
    }
    .mainMenuSubsiteLnk{
        display:none;
    }
    .blog-pages{
        display:inline-block;
    }
    li.custom-content-tab{
        list-style:none;
    }
    .blog-topics ul.blog-topics-list li.blog-topics-list-item:last-child{
        padding:0 20px 0 7px !important;
    }
    .interior-hero-banner div.full-banner{
    background-position-x: 80%;
}
    #avid-loc-col-center{
        width:100% !important;
        max-width:600px !important;
        margin:20px auto !important;
        display:block !important;
        float:none;
        padding:0 50px;
        box-sizing:border-box;
    }
    #avid-loc-map{
        height:400px;
        float:none;
    }
    #avid-loc-col-right{
        height:auto !important;
        max-height:auto !important;
        float:none;
        width:100% !important;
        max-width:600px !important;
        margin:10px auto !important;
        display:block !important;
    }
    #avid-loc-col-right .avid-loc-col-inner{
        box-sizing:border-box;
        padding:0 !important;
    }
    .blog-topics ul.blog-topics-list li.blog-topics-list-item, .blog-topics ul.blog-topics-list li.blog-topics-list-item:first-child{
        width:100%;
        margin:10px auto !important;
        display:block;
        max-width:600px !important;
        border-bottom:1px solid #959595;
    }
    .blog-topics{
        max-width:600px;
        width:100%;
        display:block;
        margin:10px auto;
    }
    .blog-topics ul.blog-topics-list li.blog-topics-list-item:first-child a{
        padding-left:5px;
    }
    .blog-topics-list-item:last-child{
        height:auto !important;
        border-bottom:none !important;
    }
    .blog-topics ul.blog-topics-list li.blog-topics-list-item ul.blog-sub-categories{
        top:51px;
        left:-11px;
    }
    .blog-article-list ul li.blog-article-item{
        float:none;
        margin:10px auto 35px auto !important;
        display:block;
        width:100%;
        padding-bottom:35px !important;
        border-bottom:1px solid #959595;
        padding:0 10px;
        box-sizing:border-box;
        vertical-align:top;
    }
    .blog-article-list ul{
        margin:0 auto !important;
        float:none !important;
        padding:0;
    }
    .blog-article-list ul{
        margin:10px auto 35px !important;
        display:block;
        width:100%;
        max-width:600px;
    }
    .blog-article-list .blog-article{
        height:auto !important;
        max-width:auto !important;
        min-height:auto !important;
        display:block;
        margin:10px auto;
    }
    .blog-article{
        text-align:center;
    }
    #avid-loc-col-right{
        height:auto !important;
        max-height:100% !important;
    }
}
@media(max-width:620px){
    #avid-loc-col-center{
        display:none !important;
    }
}
@media(max-width:600px){
    #classes-events-results-category .ceresultinfo .registerBtnRow{
        padding:20px 0;
    }
    #classes-events-results-category .ceresultinfo .registerBtnRow  input[type="submit"]{
        display:block;
        margin:6px auto !important;
        width:100%;
        max-width:250px;
        float:none;
    }
}
@media (max-width:991px){
     .MedSpa .headerSubsite .nav-sub ul li:nth-child(2) {
       width: 90px !important;
    }
}

@media (max-width:767px){
   .MedSpa .headerSubsite.subsite-content {
        margin-bottom: 0;
    } 
    
    .subsite-bvmp .quick-links{
        width:33.6% !important;
    }
    
        .MedSpa .interior-hero-banner div.full-banner {
       background-size: cover;
       height: 220px !important;
       background-position-x:20%;
}

    .MedSpa .headerSubsite .nav-sub ul li:nth-child(2) {
       width: 100% !important;
    }

    .MedSpa .headerSubsite .nav-sub ul li {
       border-bottom: none;
    }
    .MedSpa .headerSubsite {
        background-color: #1379C4;
        margin-bottom: 0px;
    }

    .headerSubsite .nav-sub ul li:nth-child(2), .headerSubsite .nav-sub ul li:nth-child(3), .headerSubsite .nav-sub ul li:nth-child(4), .headerSubsite .nav-sub ul li:nth-child(5){
        width:100% !important;
    }
}
@media (max-width:500px){
    .subsite-bvmp .quick-links{
        width:33.6% !important;
    }
}
@media (min-width:500px){
    .subsite-bvmp .quick-links{
        width:33% !important;
    }
}
@media (min-width:600px){
    .subsite-bvmp .quick-links{
        width:17% !important;
    }
}
@media (max-width:360px){
    .conversion-row{
        width:100%;
    }
}
@media(max-width: 1013px) {
    .hero-banner .conversion-row div[class*="col-"] a .card-container h2 {
        display: block;
    }
}
@media(max-width: 351px) {
    .hero-banner .conversion-row div[class*="col-"] a .card-container h2 {
        font-size:11px;
    }
}
@media(max-width: 991px) {
    .hero-banner .half-height {
        top: 15px;
    }
    #homepageBannerSlider .banner-link .bkg-image {
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }
    .hero-row div[class*="col-"]:nth-of-type(1) .vert-content {
        vertical-align: middle;
    }
    .hero-banner .full-height {
        height: 300px;
    }
    .row.hero-row .bx-wrapper .bx-viewport {
        height: 290px !important;
    }
    ul#homepageBannerSlider {
        height: 100%;
        position: absolute !important;
    }
    ul#homepageBannerPager {
        padding: 0;
    }
}
@media(max-width:500px) {
    .hero-row div[class*="col-"]:nth-of-type(1) .vert-content h2 {
        font-size: 17px;
    }
    #homepageBannerSlider &gt; li {
        height: 122%;
    }
    .hero-row div[class*="col-"]:nth-of-type(1) .vert-content {
        vertical-align: middle;
        padding-right: 5px;
        padding-top: 25%;
    }
}






/*
sg*/


@media (max-width: 1685px) {
	.Independence-House .interior-hero-banner div.full-banner {
		background-size: contain;
		height: 315px !important;
		background-position: top;
	}
	.TechniCore .interior-hero-banner div.full-banner {
		background-size: contain;
		height: 315px !important;
		background-position: top;
	}

}

@media (max-width: 1280px) {
	.Independence-House .interior-hero-banner div.full-banner {
		height: 238.5px !important;
	}
	.TechniCore .interior-hero-banner div.full-banner {
		height: 238.5px !important;
	}

}

@media (max-width: 991px) {
	.Independence-House .interior-hero-banner div.full-banner {
		height: 184px !important;
	}
	.TechniCore .interior-hero-banner div.full-banner {
		height: 184px !important;
	}

}

@media (max-width: 768px) {
	.Independence-House .interior-hero-banner div.full-banner {
		height: 141.5px !important;
	}
	.TechniCore .interior-hero-banner div.full-banner {
		height: 141.5px !important;
	}
}

@media (max-width: 414px) {
	.Independence-House .interior-hero-banner div.full-banner {
		height: 80px !important;
	}
	.TechniCore .interior-hero-banner div.full-banner {
		height: 80px !important;
	}

}

@media (max-width: 375px) {
	.Independence-House .interior-hero-banner div.full-banner {
		height: 67.5px !important;
	}
	.TechniCore .interior-hero-banner div.full-banner {
		height: 67.5px !important;
	}
}

span.pnl-dept-icon {
    margin-right: 8px;
}

a.meet-my-team, a.meet-my-team:hover {
    text-decoration: none;
}

.TechniCore .nav.navbar-nav li + li + li + li:before {

   /*content: "&gt;";*/
   position: absolute;

   top: 8px;

}



.TechniCore .nav li + li + li a {

   margin-left: 0px;

}



/*
.TechniCore .nav li + li + li + li a {

   margin-left: 25px;

}*/

.TechniCore .nav li:not(:first-child):before {
    content: " ";
}

.Independence-House .interior-page {
    padding-top: 0px;
}

.TechniCore .nav-sub {
    background-color: #7c1e3f;
    margin-bottom: 12px;
}

.TechniCore section.interior-page {
   padding-top: 0px;
}

.TechniCore div.main-banner div:first-child {
    width: 100%;
}

.TechniCore .interior-hero-banner .full-banner-container, .interior-hero-banner .compact-banner {
    max-width: 100%;
    margin: 0 auto;
}

.TechniCore .interior-hero-banner div.full-banner {
    height: 380px !important;
    background-size: cover;
    position: relative;
    z-index: 9;
    background-position: left center;
}

.TechniCore h1, h2, h3, h4, h5, h6 {
    color: #002b7f;
    font-family: "Open Sans", serif;
    font-weight: 600;
}
.TechniCore h1{
   font-size: 36px;
   font-style: normal;
   border-bottom: 2px solid #002b7f;
   width: auto;
   max-width: 500px;
}

.TechniCore h1#ctl00_hFullOverlayText {
   color: #918b8d !important;
   border-bottom: none;
   margin-top: 275px;
   margin-left: 80px;
}

.TechniCore #ctl00_SubsiteLowerAds1_divSubsiteLowerAds .featured-section.col-md-4 .featured-section-inner {
   background-image: radial-gradient(rgba(0, 43, 127, 0.3), rgba(0, 43, 127, 0.6));
   margin-bottom: 20px;
}

.TechniCore span.lower-ad-header {
    border-bottom: 4px solid #918b8d;
    font-size: 20px;
    color: #fff;
}

.TechniCore .navbar.pre-footer {
    display:  none;
}

.TechniCore .footer .container-fluid {
    border-top: none;
}
.TechniCore .bx-wrapper img {
    max-height: 457px;
}

.TechniCore .bx-wrapper .bx-caption span {
    padding-left: 50px;
}

.TechniCore .headerSubsite .nav-sub ul li a{
    text-align: center;
}

@media (max-width: 1366px) {
    .TechniCore h1#ctl00_hFullOverlayText {
        margin-left: 79px;
    }
}

@media (max-width: 1280px) {

.TechniCore .interior-hero-banner div.full-banner {
    height: 236px !important;
}

.TechniCore h1#ctl00_hFullOverlayText {
    margin-top: 175px;
    margin-left: 45px;
    font-size: 1.4em;
}

.TechniCore .vSpan a {
    font-size: 15px;
}

/*.TechniCore li.main {
    width: 17% !important;
}

.TechniCore li.logo-image-item {
    width: 10px !important;
}*/
/* End 1280px */
}

@media (max-width: 1024px) {
    .TechniCore h1#ctl00_hFullOverlayText {
        margin-left: 35px;
    }
}

@media (max-width: 991px) {
    .TechniCore h1#ctl00_hFullOverlayText {
        margin-left: 33px;
    }

    .TechniCore .headerSubsite {
        margin-bottom: 35px;
    }

    .TechniCore .headerSubsite .nav-sub ul {
        padding: 0 0px;
        margin-top: 0;
    }
}

@media (max-width: 786px) {
    .TechniCore .headerSubsite .nav-sub ul {
        padding: 0 15px;
    }

    .TechniCore .headerSubsite .nav-sub ul li span {
        padding: 0;
    }
}

@media (max-width: 767px) {
    .TechniCore .headerSubsite .nav-sub ul {
        display: none;
    }
}

@media (max-width: 670px) {

.TechniCore .interior-hero-banner div.full-banner {
       height: 280px !important;

}

.TechniCore div#ctl00_divFull {
    background-image: url(/media/Image/TechniCoreLogo.jpg) !important;
    background-color: white;
    background-size: 80%;
    background-position: top 20px center;
}

.TechniCore h1#ctl00_hFullOverlayText {
    margin: 0px;
    position: absolute;
    bottom: 20px;
    left: 15%;
    right: 15%;
    text-align: center;
    width: 70%;
    padding: 0px;
}
/* End 670px */
}

@media (max-width: 667px) {
    .TechniCore div#ctl00_divFull {
            background-size: 55%;
        background-position: 53% -10px;
    }

    .TechniCore .interior-hero-banner div.full-banner {
        height: 230px !important;
    }

    .TechniCore h1#ctl00_hFullOverlayText {
            left: 14.5%;
        }
}

@media (max-width: 580px) {
.TechniCore .interior-hero-banner div.full-banner {
       height: 200px !important;
   }
/* End 580px */
}

@media (max-width: 480px) {
.TechniCore div#ctl00_divFull {
    background-size: 70%;
}

.TechniCore h1#ctl00_hFullOverlayText {
    left: 13.5%;
}
/* End 480px */
}

@media (max-width: 414px) {
    .TechniCore .interior-hero-banner div.full-banner {
        height: 175px !important;
    }
}

@media (max-width: 365px) {
    .TechniCore h1#ctl00_hFullOverlayText {
        left: 14.5%;
    }
}

@media (max-width: 320px) {
    .TechniCore div#ctl00_divFull {
        background-size: 87%;
        background-position: 67% -10px;
    }

}

.TechniCore h1#ctl00_hFullOverlayText a 
{

   cursor: default;

}

/*how can we help you bar*/

.howbar {
    background: white;
    width: 335px;
    text-align: center;
    padding: 23px 15px 23px 27px;
    position: fixed;
    bottom: 5%;
    right: 2%;
    z-index: 999999;
    cursor: pointer;
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.2);
    border-radius: 37.5px;
    border: 1px solid #97C43C;
}

.howbar p {
    color: #094D82;
    font-family: "Open Sans";
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 0.08px;
    line-height: 28px;
    float: left;
    margin-bottom: 0;
    position: relative;
    text-align: center;
}

.howbar p:after {
    content: "\f106";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: bold;
    text-decoration: inherit;
    color: #094D82;
    font-size: 33px;
    text-align: right;
    margin-left: 20px;
    display: inline-block;
    vertical-align: bottom;
}

.how-opened {
    display: none;
    background: white;
    width: 400px;
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.2);
    float: left;
    position: fixed;
    z-index: 9999999;
    bottom: 5%;
    right: 3%;
    padding: 25px 20px 19px;
    border: 1px solid #97C43C;
    border-radius: 20px;
}

.how-opened .fa {
    color: #094D82;
    font-size: 23px;
    text-align: right;
    float: right;
    font-weight: normal;
    cursor: pointer;
}

.how-opened p {
    color: #094D82;
    font-family: "Open Sans";
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 0.08px;
    line-height: 28px;
    float: left;
    margin-bottom: 5px;
    position: relative;
}

.how-opened select {
    border: 1px solid #979797;
    border-radius: 0;
    padding: 0 10px;
    color: #979797;
    font-family: "Open Sans";
    font-size: 16px;
    letter-spacing: 0.06px;
    line-height: 22px;
    display: block;
    float: left;
    width: 100%;
    -webkit-appearance: none;
    position: relative;
    background: url(../_img/Triangle.png) no-repeat;
    background-position: 97% center;
    margin-top: 15px;
    margin-bottom: 17px;
}

input.pop-up-btn {
    display: block;
    position: relative;
    width: 100%;
    float: right;
    background-color: #0A72C0;
    color: #FFFFFF;
    font-family: "Open Sans";
    font-size: 16px;
    letter-spacing: 0.06px;
    line-height: 22px;
    text-align: center;
    border: 0;
    width: 103px;
    height: 44px;
}

input.pop-up-btn:hover {
    background-color: #096cb7;
}

@media (max-width: 600px) {
    .howbar {
        width: 100%;
        padding: 20px 28px;
        bottom: 0;
        right: 0;
        border-radius: 0;
        border-right: 0;
        border-left: 0;
        border-bottom: 0;
    }

    .howbar p {
        width: 100%;
    }

    .how-opened {
        width: 100%;
        bottom: 0;
        right: 0;
        padding: 20px 35px 5px 30px;
        border-radius: 0;
        border-right: 0;
        border-left: 0;
        border-bottom: 0;
    }
}

@media (max-width: 320px) {
  .howbar {
        padding: 20px 5px;
    }  
}

.hide {
    display: block;
}

/* -- Hide second Locations dropdown --  */

@media (max-width: 990px) {

   .long-desc-container #mobileLocationMenu {
   	display: none;
   }

   .pnl-dept-locations-wrapper {
       display: none;
   }
}

@media (max-width: 766px) {
   div#divNavigationPart {
       display: none;
   }
   #sidebar-nav .cd-navigation a.active, #sidebar-nav .cd-navigation .sub-menu a.active,
   #sidebar-nav .cd-navigation a:hover, #sidebar-nav .cd-navigation .sub-menu a:hover {
       text-decoration:underline;
       color: white !important;
   }
}

/* Ryan - please fix these */ 
#sidebar-nav .cd-navigation {
   display:block !important;
}

#sidebar-nav .cd-navigation li a {
   text-align: left !important;
   margin-left: 0px;
}

@media (max-width: 991px) {

/*--- Services ---*/

.interior-page {
       margin-top: 83px;
   }

.interior-page .mobile-sidebar-title {
    font-size: 20px;
    border-bottom: 1px solid white;
}

.subsite-home-content #mobileSidebarList {
    padding: 0;
}

#mobileSidebarList #sidebar-nav h4 {
    margin-top: 0px !important;
    padding: 5px 5px 20px 15px  !important;
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
    border-bottom: 1px solid white;
}

#mobileSidebarList #sidebar-nav h4 {
    margin-top: 0px !important;
    padding: 5px 5px 20px 15px  !important;
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
    border-bottom: 1px solid white;
}

/*--- Locations ---*/

    .interior-page #mobileLocationMenu.active .mobile-location-title:after,
    .interior-page #mobileSidebarMenu.active .mobile-sidebar-title:after {
        position: absolute;
        right: 15px;
    }

    .interior-page #mobileLocationMenu .mobile-location-title {
        margin-left: -15px;
        margin-right: -15px;
        padding: 15px;
        width: calc(100% + 15px);
    }

    .interior-page #mobileLocationMenu {
        border-top: 1px solid white;
    }

    .interior-page #mobileLocationMenu .mobile-location-title:after {
        right: 15px;
    }

   #listitem .active {
       color: #fff !important;
       font-weight: bold;
   }
}

@media (max-width: 768px) {

/*--- banners ---*/

   .interior-page {
       margin-top: 102px;
   }

/* --- navigation --- */

.subsite-home-content ul.subsite-nav-list {
    height: 65px;
    margin-top: 30px;
}

   .nav-sub {
      height: auto !important;
   }

   #sidebar-nav .cd-navigation li {
       width: 100%;
       text-align: left;
       margin-left: 0px;
       padding-top: 15px;
   }

    .headerSubsite .nav-sub ul {
        height: auto;
    }

   #mobileLocationMenu {
      position: relative;
   }

      #listitem .active {
       color: #fff !important;
       font-weight: bold;
   }

   li#listitem {
      width: 100% !important;
   }

   .logo-image-item {
      width: 3% !important;
   }
}

@media (max-width: 766px) {

/*--- banners ---*/

   .full-banner .container {
       padding-top: 0px !important;
   }

   #ctl00_divBanner.main-banner.content .container {
       padding-top: 0 !important;
   }

   .interior-page {
       margin-top: 71px;
   }

      #listitem .active {
       color: #fff !important;
       font-weight: bold;
   }
}

.collapsable-title {
    position: relative;
    display: block;
    margin: 0 0 20px;
    padding-bottom: 20px;
    padding-right: 30px;
    cursor: pointer;
    color: #002b7f;
    font-size: 24px;
    font-weight: 600;
    border-bottom: 1px solid #f3f2f0;
    transition: .5s;
}

.collapsable-title:before,
.collapsable-title:after {
    content: "";
    display: block;
    position: absolute;
    top: 12px;
    right: 0;
    transform:translateY(-50%);
    width:18px;
    height: 1px;
    background: #002b7f;
    transition: .5s;
    will-change: transform;
}

.collapsable-title:after {
    transform:translateY(-50%)rotate(-90deg);
}

.collapsable-title.is-active:before {
    transform:translateY(-50%)rotate(180deg);
}

.collapsable-title.is-active:after {
    transform:translateY(-50%)rotate(0deg);
}

.collapsable-content {
    padding: 0 20px 50px;
}

/* --- 447384837_MedSpa_QA_Fixes1 07Feb20 --- */

/* ---Homepage --- */

.MedSpa .lower-ads-section {
    padding-left: 15px;
    padding-right: 15px;
}

.MedSpa div.HomePageLocns {
    float: left;
    width: calc(33% - 16px);
    min-width: 300px;
    margin: 0 10px 75px 0px;
}

@media (max-width: 539px) {
    .MedSpa div.HomePageLocns {
        float: none;
/*         width: 100%; */
        max-width: 350px;
        margin: 0 -10px;
    }

    .MedSpa div.HomePageLocns + div {
        margin-bottom: 30px;
    }

    .MedSpa .subsite-container .row {
         margin-left: 0;
         margin-right: 0;
     }

     .MedSpa .lower-ads-section .row {
         margin-left: -20px !important;
         margin-right: -20px !important;
     }

     .MedSpa .featured-section.col-md-4 {
        margin-bottom: 10px;
    }

    .MedSpa .featured-section.col-md-4 {
        margin-bottom: 10px;
    }
}

/* --- Breadcrumbs --- */

@media (min-width: 768px) {
    .MedSpa .navbar-nav &gt; li:first-child {
        display: none;
    }

    .MedSpa .navbar-nav &gt; li:nth-child(2), .MedSpa .navbar-nav &gt; li:nth-child(3):before {
        display: none !important;
    }
}

/* --- Images Floated Right --- */

@media (max-width: 767px) {
     .MedSpaFloatRight {
         width: 100% !important;
         height: auto !important;
         max-width: 400px;
         display: block;
         float: none !important;
         margin-left: 0 !important;
         margin: 0 auto !important;
     }
}

/* --- Universal Navigation --- */

@media (max-width: 991px) {
     .MedSpa .interior-page {
         margin-top: 44px;
     }

     .MedSpa .page-title-container .container {
         padding: 0px 15px !important;
     }
}

@media (max-width: 767px) {
    .MedSpa .interior-page {
         margin-top: 71px;
     }
}

/* --- 443551468_BlanchardValley_QA_Fixes1 --- */

/* --- Home Page --- */

.social-icons a i {
    left: 2px;
}

/* --- Lower Ads --- */

.subsite-home .image-section {
    height: 290px;
}

/* --- Locations Scrolling --- */

.avid-loc-col-inner {
    overflow: auto !important;
    scrollbar-color: white white;
}

.avid-loc-col-inner::-webkit-scrollbar {
    display: none;
}

/* --- Side Scrolling on Mobile --- */

@media (max-width: 767px) {
     .subsite-container .row {
          margin-left: 0 !important;
          margin-right: 0 !important;
      }

     .lower-ads-section .row {
         margin-left: -5px !important;
         margin-right: -5px !important;
     }

     .featured-section.col-md-4 {
         padding: 0;
     }

     #divFormPreRegistration input[type="text"], textarea {
         width: 100% !important;
     }

     .hero-banner .container-fluid #quickLinks .row.conversion-row {
         margin: 0 !important;
     }

/* --- Banner Gap --- */

     #ctl00_divBanner.main-banner.content .container {
         padding: 0 15px;
     }
}

@media (max-width: 769px) {
    form[action="./ContentPage.aspx?nd=20"] #mobileSidebarMenu {
        display: none !important;
    }
}

/* --- Replace h1 in banner with span --- */

span.page-title {
    font-family: "Open Sans", serif;
    font-weight: 600;
    margin: 0.67em 0;
    line-height: 1.1;
    margin-block-start: 0.67em;
    margin-block-end: 0.67em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

/* --- Replace h1 in Homepage Layout with span --- */

.home-video span, .home-locations span {
    font-size: 36px;
    font-style: italic;
    color: #72705e;
    font-family: "Open Sans", serif;
    font-weight: 600;
    margin: 0.67em 0;
    line-height: 1.1;
    margin-block-start: 0.67em;
    margin-block-end: 0.67em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

/* --- 443551468_BlanchardValley_QA_Fixes1 09Apr20 --- */

.MedSpa .rt-float-img {
    float: right;
    width: 50%;
    max-width: 500px;
    min-width: 280px;
    margin: 10px;
}

@media (max-width: 600px) {

    .MedSpa .rt-float-img {
        float: none;
    }

}
@media( max-width : 768px) {
    .doc-pages.pagination {
        width: 100%;
        vertical-align: middle;
    }

    .blog-pages ul.blog-page-list, .doc-pages ul.doc-page-list {
        margin: 0 auto;
        vertical-align: middle;
    }
    .doc-pages.pagination .btn-prev-next {
        text-align: center;
        width: 30px;
        display: inline-block;
        vertical-align: middle;
    }
    .doc-pages.pagination .btn-prev-next i {
        vertical-align: middle;
        margin-top: 3px !important;
    }
    .blog-pages ul.blog-page-list li.page-button-item a, .doc-pages ul.doc-page-list li.page-button-item a {
        padding: 12px 15px;
    }
}


/* nav css update | start */
@media(min-width : 768px) {
    .subsite-nav-list {
        display: flex !important;
        justify-content: space-between;
    }

    .subsite-nav-list .logo-image-item {
        display: none !important;
    }

    .subsite-nav-list li.main {
        flex: 1 0 auto;
        width: initial !important;
    }

    .headerSubsite .nav-sub ul li a,
    .subsite-nav-list li.main a {
        font-size: 14px;
        letter-spacing: -0.01em;
    }
}
@media( min-width : 768px) and (max-width: 1200px) {
    .subsite-nav-list li.main {
        flex: 1 0 0;
        width: initial !important;
    }
    .headerSubsite .nav-sub ul li span {
        padding: 0 5px;
        word-break: break-word;
    }
}

/* nav css update | end */

/*liquid container*/
.container.container-max {
	max-width: 1170px;
	width: 100%;
}

.iframe-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}</pre></body></html>