/*-----------css reset---------------------*/
* {
    margin: 0;
    padding: 0;
}

html, body, div, span {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent
}

body {
    line-height: 1
}

blockquote, q {
    quotes: none
}

blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none
}

:focus {
    outline: 0
}

ins {
    text-decoration: none
}

del {
    text-decoration: line-through
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

a, a:hover, a:focus {
    outline: none !important;
}

/*-----------css variables---------------------*/
:root {
    --background-static: #ffb72a;
    --color-static: #fff;
    --background-hover: #744f3c;
    --color-hover: #fff;
    --color-red: #d00;
    --button-style: {
        width: 300px;
        padding: 30px 20px;
        border-radius: 5px;
        background: blue;
        color: #fff;
        font-size: 54px;
        text-transform: uppercase;
    }
}

/*@apply --button-style;*/

/* Font face*/
@font-face {
    font-family: RCB;
    src: url('fonts/RobotoCondensedBold.eot');
    src: url('fonts/RobotoCondensedBold.eot') format('embedded-opentype'), url('fonts/RobotoCondensedBold.woff2') format('woff2'), url('fonts/RobotoCondensedBold.woff') format('woff'), url('fonts/RobotoCondensedBold.ttf') format('truetype'), url('fonts/RobotoCondensedBold.svg#RobotoCondensedBold') format('svg');
}

@font-face {
    font-family: RCR;
    src: url('fonts/RobotoCondensedRegular.eot');
    src: url('fonts/RobotoCondensedRegular.eot') format('embedded-opentype'), url('fonts/RobotoCondensedRegular.woff2') format('woff2'), url('fonts/RobotoCondensedRegular.woff') format('woff'), url('fonts/RobotoCondensedRegular.ttf') format('truetype'), url('fonts/RobotoCondensedRegular.svg#RobotoCondensedRegular') format('svg');
}

@font-face {
    font-family: RM;
    src: url('fonts/RobotoMedium.eot');
    src: url('fonts/RobotoMedium.eot') format('embedded-opentype'), url('fonts/RobotoMedium.woff2') format('woff2'), url('fonts/RobotoMedium.woff') format('woff'), url('fonts/RobotoMedium.ttf') format('truetype'), url('fonts/RobotoMedium.svg#RobotoMedium') format('svg');
}

@font-face {
    font-family: RR;
    src: url('fonts/RobotoRegular.eot');
    src: url('fonts/RobotoRegular.eot') format('embedded-opentype'), url('fonts/RobotoRegular.woff2') format('woff2'), url('fonts/RobotoRegular.woff') format('woff'), url('fonts/RobotoRegular.ttf') format('truetype'), url('fonts/RobotoRegular.svg#RobotoRegular') format('svg');
}

@font-face {
    font-family: RB;
    src: url('fonts/RobotoBold.eot');
    src: url('fonts/RobotoBold.eot') format('embedded-opentype'), url('fonts/RobotoBold.woff2') format('woff2'), url('fonts/RobotoBold.woff') format('woff'), url('fonts/RobotoBold.ttf') format('truetype'), url('fonts/RobotoBold.svg#RobotoBold') format('svg');
}

@font-face {
    font-family: RL;
    src: url('fonts/RobotoLight.eot');
    src: url('fonts/RobotoLight.eot') format('embedded-opentype'), url('fonts/RobotoLight.woff2') format('woff2'), url('fonts/RobotoLight.woff') format('woff'), url('fonts/RobotoLight.ttf') format('truetype'), url('fonts/RobotoLight.svg#RobotoLight') format('svg');
}

@font-face {
    font-family: 'SFUDaxCondensedMedium';
    src: url('fonts/SFUDaxCondensedMedium.eot');
    src: url('fonts/SFUDaxCondensedMedium.eot') format('embedded-opentype'), url('fonts/SFUDaxCondensedMedium.woff2') format('woff2'), url('fonts/SFUDaxCondensedMedium.woff') format('woff'), url('fonts/SFUDaxCondensedMedium.ttf') format('truetype'), url('fonts/SFUDaxCondensedMedium.svg#SFUDaxCondensedMedium') format('svg');
}

@font-face {
    font-family: 'SFUDaxCondensedBold';
    src: url('fonts/SFUDaxCondensedBold.eot');
    src: url('fonts/SFUDaxCondensedBold.eot') format('embedded-opentype'), url('fonts/SFUDaxCondensedBold.woff2') format('woff2'), url('fonts/SFUDaxCondensedBold.woff') format('woff'), url('fonts/SFUDaxCondensedBold.ttf') format('truetype'), url('fonts/SFUDaxCondensedBold.svg#SFUDaxCondensedBold') format('svg');
}

@font-face {
    font-family: 'SFUDaxCondensedExtraBold';
    src: url('fonts/SFUDaxCondensedExtraBold.eot');
    src: url('fonts/SFUDaxCondensedExtraBold.eot') format('embedded-opentype'), url('fonts/SFUDaxCondensedExtraBold.woff2') format('woff2'), url('fonts/SFUDaxCondensedExtraBold.woff') format('woff'), url('fonts/SFUDaxCondensedExtraBold.ttf') format('truetype'), url('fonts/SFUDaxCondensedExtraBold.svg#SFUDaxCondensedExtraBold') format('svg');
}

@font-face {
    font-family: 'SVNDancingscript';
    src: url('fonts/SVNDancingscript.eot');
    src: url('fonts/SVNDancingscript.eot') format('embedded-opentype'), url('fonts/SVNDancingscript.woff2') format('woff2'), url('fonts/SVNDancingscript.woff') format('woff'), url('fonts/SVNDancingscript.ttf') format('truetype'), url('fonts/SVNDancingscript.svg#SVNDancingscript') format('svg');
}

/*----------basic----------------*/
html, body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 25px;
    text-rendering: optimizeLegibility;
}

a {
    text-decoration: none;
    color: #1471CE;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

a:hover {
    text-decoration: none !important;
    color: #F00;
}

html {
}

/*Prevent Firefox Scrollbar Jump*/
img {
    border: none;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    box-sizing: border-box;
    position: relative;
}

input, textarea {
    padding: 0;
    margin: 0;
    resize: none;
    outline: none
}

select, .cp {
    cursor: pointer;
}

.clear {
    clear: both;
}

:focus {
    outline: 0;
}

input:focus {
    outline: 1px solid #f97d17;
}

textarea:focus {
    outline: 1px solid #f97d17;
}

del {
    text-decoration: line-through
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

button {
    border: 0;
    cursor: pointer;
    font-weight: bold;
    outline: none
}

ul, ol {
    margin-left: 15px;
    text-decoration: none !important;
}

body {
    background: #fff;
}

/*Phan trang*/
.phantrang {
    text-align: center;
    background: rgba(0, 0, 0, 0);
    right: 0px;
    top: -40px;
    padding: 5px 0px;
}

.phantrang div {
    display: inline-block;
}

.phantrang a {
    background: #193d71;
    color: #FFF;
    cursor: pointer;
    font-size: 11px;
    margin: 10px 0 10px 4px;
    padding: 6px 10px;
    font-weight: bold;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
}

.phantrang div.active {
    background: #f97d17;
    color: #FFF;
    cursor: pointer;
    font-size: 11px;
    margin: 10px 0 10px 4px;
    line-height: 24px;
    padding: 0px 10px;
    font-weight: bold;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
}

.phantrang span {
    padding: 3px 10px 5px;
    background: #f97d17;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    color: #FFF;
}

.phantrang a:hover {
    background: none repeat scroll 0 0 #f97d17;
    box-shadow: none;
    color: #FFFFFF;
    text-decoration: none;
}

.phantrang .paginate_button_disabled, .phantrang .paginate_button_disabled:hover {
    background: linear-gradient(to bottom, #F8F8F8 0%, #EAEAEA 100%) repeat scroll 0 0 transparent;
    border: 1px solid #D2D2D2 !important;
    color: #ADADAD !important;
    cursor: default;
    opacity: 0.7;
}

.phantrang .paginate_active, .phantrang .paginate_active:hover {
    background: none repeat scroll 0 0 #05bfdc;
    box-shadow: none;
    color: #FFF;
    font-weight: bold;
}

/* My */
.vshd {
    visibility: hidden;
    height: 0px;
    width: 0px;
    position: fixed;
    top: -10px;
}

#back-top {
    cursor: pointer;
    display: none;
    position: fixed;
    width: 48px;
    height: 48px;
    color: #FFF;
    font-family: RCR;
    text-align: center;
    line-height: 48px;
    background: #000;
    opacity: 0.8;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    text-transform: uppercase;
    right: 20px;
    bottom: 50px;
    z-index: 99;
}

.button {
    padding: 5px 25px;
    background: var(--background-static);
    outline: none !important;
    color: var(--color-static);
    border: none;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    font-family: RB;
}

.button:hover {
    background: var(--background-hover);
    color: var(--color-hover);
}

.input {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    border: 1px solid #e1e1e1;
    border-radius: 3px;
}

.center {
    max-width: 1200px;
    padding: 0 10px;
    margin: 0 auto;
    position: relative;
}

.center1 {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}

.w-clear:after {
    display: block;
    content: "";
    clear: both;
}

.red {
    color: #F00;
}

.blue {
    color: blue;
}

.rb {
    color: #F00;
    font-weight: bold;
    font-size: 18px;
}

.share_detail {
    display: flex;
    margin-top: 10px;
}

.zalo-share-button {
    background-color: #03A5FA;
    width: 75px;
    margin: 0 2px 5px;
    height: 26px !important;
    float: left;
    background-image: url(../images/zalo_share.png);
    background-repeat: no-repeat;
    -webkit-background-size: 14px 14px;
    background-size: 14px 14px;
    background-position: 7px 6px;
    position: relative;
    cursor: pointer;
}

.zalo-share-button:after {
    position: absolute;
    content: attr(data-attr);
    left: 28px;
    top: 5px;
    font-size: 11px;
    line-height: 16px;
    height: 16px;
    color: rgb(255, 255, 255);
}

.open-sans {
    font-family: 'Open Sans', sans-serif;
}

.mrb15 {
    margin-bottom: 15px;
}

.mrt15 {
    margin-top: 15px;
}

#load {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9999;
    background: url(../images/loading.gif) no-repeat center, #FFF;
    display: none;
    opacity: 0.9;
    top: 0px;
    left: 0px;
}

.ct-l.load {
    background: url(../images/load.gif) no-repeat center;
    min-height: 200px;
}

.del {
    text-decoration: line-through;
}

.main-tit {
    font-family: RM;
    margin-bottom: 15px;
    color: #333;
    font-size: 20px;
}

.main-tit h2 {
    margin: 0;
    font-size: 23px;
    line-height: 30px;
}

.box-tab-tit {
    font-family: RR;
    color: #353535;
    margin-top: 15px;
    border-bottom: 5px solid #a3a3a3;
    text-align: center;
}

.box-tab-tit:after {
    display: block;
    content: "";
    clear: both;
}

.box-tab-tit div {
    padding: 5px 15px;
    cursor: pointer;
    border: 1px solid #a3a3a3;
    float: left;
    margin-right: -1px;
}

.box-tab-tit div.active {
    color: #FFF;
    background: #a3a3a3;
}

.w-tab-con {
    border: 1px solid #a3a3a3;
    margin-bottom: 20px;
}

.box-tab-con {
    display: none;
    padding: 10px;
}

.box-tab-con:first-child {
    display: block;
}

.slick-slider * {
    vertical-align: top !important;
}

.slick-img-thumb {
    width: calc(100% + 8px);
    margin-left: -4px;
    margin-top: 10px;
}

.slick-img-thumb img.thumb {
    box-shadow: none !important;
    border: 1px solid #CCC !important;
}

.slick-dots {
    margin: 0px !important;
}

#smenu {
    display: none;
    align-items: center;
    justify-content: space-between;
    color: #FFF;
    position: absolute;
    left: 15px;
    top: calc(50% - 13px);
    z-index: 999;
}

#smenu img {
    position: relative;
    top: -2px
}

#smenu > div {
    display: none;
}

.navmenu_link {
    font-size: 22px;
    margin-right: 10px;
    cursor: pointer;
    color: #ffb72a !important;
}

#menus {
    display: none;
}

.tbl {
    width: 100%;
    display: table;
    border-collapse: collapse;
}

.tbl .tr {
    display: table-row;
}

.tbl .th {
    font-family: RB;
}

.tbl .td, .tbl .th {
    display: table-cell;
}

.tac {
    text-align: center;
}

.xemtatca {
    padding: 10px 25px;
    background: var(--background-static);
    outline: none !important;
    color: var(--color-static);
    border: none;
    display: inline-block;
    vertical-align: top;
    border-radius: 30px;
    font-family: RR;
    font-size: 15px;
    text-transform: capitalize;
    margin-top: 10px;
}

.xemtatca:hover {
    background: var(--background-hover);
    color: var(--color-hover);
    border-radius: 0;
}

.white-popup-block {
    font-family: RR;
    line-height: 22px;
    background: #FFF;
    padding: 20px 30px;
    text-align: left;
    width: 80%;
    max-width: 650px;
    margin: 20px auto;
    position: relative;
}

.white-popup-block img {
    max-width: 100%;
    margin-bottom: 10px;
}

.grecaptcha-badge {
    z-index: -1;
    visibility: hidden;
}

::-webkit-input-placeholder {
    color: #7b7b7b;
}

::-moz-placeholder {
    color: #7b7b7b;
}

:-ms-input-placeholder {
    color: #7b7b7b;
}

:-moz-placeholder {
    color: #7b7b7b;
}

/* Banner */
#banner {
    padding: 10px 0px;
    position: absolute;
    top: 15px;
    right: 0;
    left: 0;
    z-index: 99;
    transition: all 0.5s;
}

#banner .center {
    display: flex;
    justify-content: space-between;
}

#banner.scrollMenu {
    position: fixed;
    top: 0;
    background: #2a2a2a;
    z-index: 999;
    border-top: 2px solid #ffb72a;
    box-shadow: 0 0 5px #111;
    padding: 3px 0;
}

#logo img {
    max-height: 126px;
    max-width: 200px;
    transition: all 0.5s;
}

#banner.scrollMenu #logo img {
    max-height: 50px;
}

#banner.scrollMenu #menu {
    margin-top: 5px;
}

body:not(.index) #banner {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    background: #2a2a2a;
    z-index: 999;
    border-top: 2px solid #ffb72a;
    box-shadow: 0 0 5px #111;
}

body:not(.index) #banner img {
    max-height: 70px;
}

/* Top */
#top {
    position: relative;
    min-height: 150px;
    display: flex;
    font-family: RR;
    color: #fff;
    background: #000;
}

#top img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: center;
    opacity: 0.7
}

#top .center {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-flow: wrap;
    padding: 20px 0;
}

.top-tit {
    font-family: RR;
    font-size: 22px;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.header-tit {
    font-family: RB;
    font-size: 28px;
    line-height: 40px;
}

#breadcrumb {
    font-family: RR;
    font-weight: normal;
    font-size: 14px;
    color: #fff;
    margin: 10px 0 10px;
}

#breadcrumb a {
    color: #fff;
}

#breadcrumb span {
    margin: 0 5px;
}

#breadcrumb a:hover {
    color: #ffcc00;
}

/* Menu */
#menu {
    font-family: RM;
    margin: 15px 0 0 0;
    transition: all 0.5s;
}

#menu i.fa-home {
    font-size: 28px;
}

.menu-line:first-child a {
    padding-right: 20px;
}

.sm-blue ul {
    border: none;
    padding: 7px 0;
    background: #2a2a2a;
}

.sm-blue a {
    padding: 0 24px;
    color: #FFF;
    font-size: 17px;
    line-height: 40px;
}

.sm-blue a:hover, .sm-blue a:focus, .sm-blue a:active, .sm-blue a.highlighted {
    color: #ffb72a
}

.sm-blue ul a {
}

.sm-blue ul a:hover, .sm-blue ul a:focus, .sm-blue ul a:active, .sm-blue ul a.highlighted {
}

.activem > a {
    color: #ffb72a;
}

.btn-search {
    margin-left: 20px !important;
}

.btn-search a {
    padding: 0 12px !important;
    font-size: 17px !important;
    background: #fff;
    border-radius: 50%;
}

.btn-search a i {
    position: relative;
    z-index: 10;
    background: #fff;
}

.search_box_hide {
    position: absolute;
    top: 0;
    right: calc(100% - 20px);
    margin-right: 0px;
    z-index: 9;
    transition: all 0s;
}

.search_box_hide input {
    width: 0;
    border: none;
    outline: none;
    border-radius: 20px 0 0 20px;
    font-family: RR;
    font-size: 13px;
    color: #949494;
    transition: all 0.5s;
    vertical-align: top;
    padding: 11px 0;
}

.search_box_hide.opening input {
    width: 250px;
    padding: 11px 16px;
}

#navmenu ul li.heading {
    font-weight: bold;
    color: #744f3c;
    background: #dfdfdf;
    line-height: 20px;
    padding: 10px;
}

#navmenu {
    font-family: RB;
    text-transform: uppercase;
}

div.search_mobi {
    position: relative;
    z-index: 100;
    background: rgba(0, 0, 0, 0.1);
    height: 30px;
    margin: 10px auto;
    width: 94%;
    border-radius: 22px;
}

div.search_mobi input {
    padding: 0px 2% 0 2%;
    float: left;
    height: 30px;
    line-height: 30px;
    border: none;
    background: none;
    width: 83%;
    outline: none;
    color: #333;
    text-align: center;
    font-family: RR;
}

div.search_mobi i {
    padding: 7px;
    cursor: pointer;
}

div.search_mobi input::-webkit-input-placeholder {
    color: #333;
}

div.search_mobi input::-moz-placeholder {
    color: #333;
}

div.search_mobi input:-ms-input-placeholder {
    color: #333;
}

div.search_mobi input:-moz-placeholder {
    color: #333;
}

/* Slide */
#slide {
    position: relative;
}

#slider img {
    width: 100%;
    max-height: 675px;
}

.slick-sliderr .slick-arrow {
    position: absolute;
    z-index: 99;
    width: 50px;
    height: 54px;
    top: calc(50% - 27px);
    font-size: 0;
}

.slick-sliderr .slick-prev {
    left: 15px;
    background: url(../img/icon-prev.png) center;
}

.slick-sliderr .slick-next {
    right: 15px;
    background: url(../img/icon-next.png) center;
}

.slick-sliderr * {
    vertical-align: top !important;
}

.slick-sliderr .slick-dots {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 0;
    bottom: 15px;
    width: 100%;
    text-align: center;
    font-size: 0;
    display: none !important;
    justify-content: center;
}

.slick-sliderr .slick-dots li {
    width: 15px;
    height: 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    margin: 0 4px;
    cursor: pointer;
}

.slick-sliderr .slick-dots li.slick-active {
    background: #099441;
}

.box-slider {
    position: relative;
}

.box-slider-content {
    position: absolute;
    content: '';
    z-index: 99;
    left: calc((100vw - 1200px) / 2);
    top: 30%;
    width: 487px;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 33px 50px;
    width: 555px;
}

.slider-slogan {
    font-family: RR;
    font-size: 18px;
    text-transform: unset;
    font-style: italic;
    color: #fff;
}

.slider-tit {
    font-family: RB;
    font-size: 45px;
    line-height: 55px;
    text-transform: uppercase;
    color: #fff;
}

.slider-desc {
    font-family: RR;
    font-size: 13px;
    margin: 0 0 10px;
    line-height: 20px;
    color: #fff;
}

.slider-more {
    text-align: right;
}

.slider-more > a {
    display: inline-block;
    width: 131px;
    border: 2px solid #fff;
    border-radius: 30px;
    text-align: center;
    font-family: RR;
    font-size: 15px;
    color: #fff;
    text-transform: uppercase;
    padding: 5px 10px;
}

.slider-more > a:hover {
    background: #fcb92d;
    border-color: #fcb92d;
    color: #744f3c;
}

/* Footer */
#footer {
    background: #ffb72a;
    padding: 30px 0 0;
    font-family: RR;
    font-size: 14px;
    color: #fff;
}

#footer a {
    color: #fff;
}

#footer a:hover {
    color: #744f3c;
}

.ft-tit {
    font-family: RB;
    text-transform: uppercase;
    font-size: 18px;
    color: #fff;
    margin: 0 0 25px;
    padding: 0 0 5px;
    position: relative;
}

.ft-tit:after {
    position: absolute;
    content: '';
    width: 80px;
    height: 4px;
    background: #fff;
    left: 0;
    bottom: 0;
}

.ft-1 {
    width: 420px;
    float: left;
    margin-right: 50px;
}

.ft-1 > div {
    width: 50%;
    padding-right: 20px;
}

.ft-1 p {
    font-size: 14px;
    margin-bottom: 5px;
}

.ft-1 p i {
    width: 25px;
    font-size: 20px;
}

.ft-1 p:nth-last-child(1) i, .ft-2 p:nth-last-child(2) i {
    font-size: 15px;
}

.ft-2 {
    width: 325px;
    float: left;
    margin-right: 20px;
}

.ft-3 {
    width: 325px;
    float: right;
}

.ft-3 iframe {
    display: block;
    width: 100%;
    max-height: 214px;
}

.ft-b {
    background: #744f3c;
    padding: 5px 0;
    margin-top: 25px;
    text-align: center;
}

.ft-b .center {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
}

.copyright a {
    color: #FFC526 !important;
}

.thongke span {
    margin: 0 5px;
}

#map iframe {
    display: block;
    width: 100%;
}

/* Index */
.index-tit {
    font-family: RR;
    font-size: 18px;
    color: #000;
    text-transform: uppercase;
    position: relative;
    margin: 0 0 20px;
    padding: 0 0 10px;
}

.index-tit:after {
    position: absolute;
    content: '';
    width: 95px;
    height: 5px;
    background: #ffb72a;
    left: 0;
    bottom: 0;
}

body.index .i-tit {
    font-family: RR;
    text-align: center;
    margin: 0 0 25px;
    position: relative;
    padding: 0 0 10px;
}

body.index .i-tit:after {
    position: absolute;
    content: '';
    width: 95px;
    height: 5px;
    background: #ffb72a;
    left: calc(50% - 47.5px);
    bottom: 0;
}

body.index .i-tit div {
    display: inline-block;
    vertical-align: top;
    font-size: 20px;
    line-height: 35px;
    font-family: RM;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}

body.index .i-tit p {
    font-size: 15px;
    color: #333;
    margin: -5px 0 0;
}

body:not(.index) .i-tit {
    font-family: RR;
    text-align: center;
    margin: 0 0 25px;
    position: relative;
    padding: 0 0 15px;
}

body:not(.index) .i-tit:after {
    position: absolute;
    content: '';
    width: 95px;
    height: 5px;
    background: #ffb72a;
    left: calc(50% - 47.5px);
    bottom: 0;
}

body:not(.index) .i-tit h2 {
    display: inline-block;
    vertical-align: top;
    font-size: 30px;
    line-height: 45px;
    font-family: RM;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}

body:not(.index) .i-tit p {
    font-size: 15px;
    color: #333;
    margin: 0;
}

/* Ve chung toi */
#vechungtoi {
    padding: 15px 0;
    background: #ffb72a;
}

.box-vechungtoi {
    width: 350px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-flow: wrap;
    font-family: 'Arial';
    font-size: 15px;
    color: #fffcfc !important;
    line-height: 20px;
    cursor: pointer;
    text-decoration: none !important;
}

.box-vechungtoi-img {
    width: 50px;
    margin-right: 15px;
}

.box-vechungtoi img {
    width: 100%;
}

.box-vechungtoi > div:last-child {
    width: calc(100% - 65px);
    display: flex;
    flex-flow: wrap;
    align-items: center;
    align-content: center;
    line-height: 20px;
}

.box-vechungtoi > div:last-child span {
    display: block;
    font-family: RB;
    font-size: 18px;
    color: #fffcfc;
    text-transform: uppercase;
    width: 100%;
    margin: 0 0 7px;
}

/* Bottom */
#bottom {
    min-height: 550px;
    padding: 31px 0;
    background: #F8F9FA;
}

#bottom .center {
    display: flex;
    justify-content: space-between;
    flex-flow: wrap;
}

.bottom-left {
    width: 65.766%;
}

.bottom-right {
    width: 31.532%;
}

.bottom-tit {
    font-family: RM;
    font-size: 50px;
    line-height: 60px;
    color: #212529;
    text-transform: capitalize;
    margin: 0 0 15px;
}

.bottom-tit span {
    display: inline-block;
    vertical-align: top;
    border-bottom: 5px solid #099441;
}

.tintuc-l {
    float: left;
    width: 47.946%;
    line-height: 24px;
}

.tintuc-l-img {
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 16px;
}

.tintuc-l-img img {
    width: 100%;
    transition: all 0.5s;
}

.tintuc-l-img:hover img {
    transform: scale(1.1);
}

.tintuc-l a {
    font-weight: 500;
    font-size: 16px;
    color: #007bff;
    line-height: 20px;
    display: block;
    text-align: justify;
}

.tintuc-l a:hover {
    color: #099441;
}

.tintuc-l p {
    margin: 7px 0 16px;
    font-size: 16px;
    color: #000;
    text-align: justify;
    line-height: 24px;
}

.tintuc-l a.tintuc-l-more {
    font-size: 16px;
    font-weight: normal;
    color: #343A40;
    display: inline-block;
    vertical-align: top;
    padding: 7.5px 5px;
    line-height: 25px;
    text-align: center;
    transition: all 0s;
    border: 1px solid #343A40;
    width: 96px;
    text-transform: uppercase;
}

.tintuc-l a.tintuc-l-more:hover {
    background: #333;
    border-color: #333;
    color: #fff;
}

.tintuc-r {
    float: right;
    width: 50.1%;
}

.tintuc-r .vert {
    height: 414px;
}

.tintuc-r .vert .simply-scroll-clip {
    height: 414px;
}

.tintuc-r .vert .simply-scroll-clip li {
    margin-bottom: 22px;
}

.box-newsi {
    line-height: 20px;
    font-size: 13px;
    color: #212121;
    text-align: justify;
}

.box-newsi-img {
    width: 150px;
    max-width: 42%;
    float: left;
    margin-right: 14px;
    overflow: hidden;
}

.box-newsi-img img {
    width: 100%;
    transition: all 0.5s;
}

.box-newsi-img img:hover {
    transform: scale(1.1);
}

.box-newsi-more {
    line-height: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.box-newsi h3 {
    line-height: 20px;
    font-size: 16px;
    margin: 0 0 5px;
    padding: 3px 0 0;
    font-weight: 500;
}

.box-newsi h3 a {
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.box-newsi a {
    color: #007bff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.box-newsi a:hover {
    color: #099441;
}

/* San pham ban chay */
#sanphambanchay {
    padding: 15px 0 20px;
    background: #fff;
}

.slick-sanpham .slick-arrow {
    position: absolute;
    z-index: 99;
    width: 23px;
    height: 33px;
    top: calc(50% - 16px);
    font-size: 0;
}

.slick-sanpham .slick-prev {
    left: 0;
    background: url(../img/tintuc-prev.png) center;
}

.slick-sanpham .slick-next {
    right: 0;
    background: url(../img/tintuc-next.png) center;
}

.box-sanpham {
    width: 268px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.box-sanpham img {
    width: 100%;
    transition: all 0.5s;
}

.box-sanpham:hover img {
    width: 100%;
    transform: scale(1.1);
}

.box-sanpham a {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 10px;
    font-family: RR;
    font-size: 15px;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
}

.box-sanpham:hover a {
    background: rgba(0, 0, 0, 0.7);
}

/* San pham */
#sanpham {
    padding: 15px 0 20px;
    background: #fff;
    border-top: 1px solid #efefef;
}

.ajax_paging {
    text-align: center;
    display: flex;
    justify-content: center;
    margin-top: 0;
}

.ajax_paging div {
    margin: 0 4px;
    width: 31px;
    line-height: 31px;
    height: 31px;
    font-family: RR;
    font-size: 16px;
    background: #f4f4f4;
    cursor: pointer;
    color: #000;
}

.ajax_paging a {
    background: #ebebeb;
    color: #343434;
    cursor: pointer;
}

.ajax_paging div.active {
    font-family: RB;
    background: #ffb72a;
    color: #fff;
    cursor: pointer;
    pointer-events: none;
}

.ajax_paging div:hover {
    background: #ffb72a;
    color: #fff;
}

/* Danh muc san pham */
#danhmucsanpham {
    padding: 15px 0 20px;
    background: #fff;
    border-top: 1px solid #efefef;
}

/* Tin tuc */
#tintuc {
    padding: 15px 0 20px;
    background: #fff;
    border-top: 1px solid #efefef;
}

.box-tintuc {
    width: 380px;
    margin: 0 auto;
    font-family: RR;
    font-size: 14px;
    color: #292929;
    text-align: justify;
}

.box-tintuc.tac h3 {
    font-family: RM;
    padding: 0 10px;
    line-height: 23px;
}

.box-tintuc-img {
    overflow: hidden;
    margin-bottom: 9px;
}

.box-tintuc-img img {
    width: 100%;
    transition: all 0.5s;
}

.box-tintuc-img:hover img {
    transform: scale(1.1);
}

.box-tintuc-date {
    font-size: 12px;
    color: #9c9c9c;
    font-style: italic;
}

.box-tintuc-date i {
    font-size: 17px;
    margin-right: 3px;
    position: relative;
    top: 1px;
}

.box-tintuc h3 {
    font-family: RB;
    line-height: 23px;
    font-weight: normal;
    font-size: 16px;
    margin: 10px 0 5px;
    text-align: left;
}

.box-tintuc h3 a {
    color: #424242;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.box-tintuc h3 a:hover {
    color: #d00;
}

.box-tintuc-desc {
    line-height: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 11px;
}

.box-tintuc-more {
    display: inline-block;
    vertical-align: top;
    width: 113px;
    line-height: 30px;
    border: 1px solid #ffb72a;
    text-align: center;
    font-family: RM;
    font-size: 13px;
    color: #ffb72a;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.box-tintuc-more:before {
    content: '';
    width: 120%;
    height: 100%;
    background-color: #ffb72a;
    transform: skew(20deg);
    position: absolute;
    top: 0;
    left: -130%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.box-tintuc-more span {
    position: relative;
    display: inline-block;
}

.box-tintuc-more:hover {
    color: #fff;
}

.box-tintuc-more:hover:before {
    left: -15%;
}

.slick-tintuc .slick-arrow {
    position: absolute;
    z-index: 99;
    width: 23px;
    height: 33px;
    top: calc(50% - 60px);
    font-size: 0;
}

.slick-tintuc .slick-prev {
    left: 0;
    background: url(../img/tintuc-prev.png) center;
}

.slick-tintuc .slick-next {
    right: 0;
    background: url(../img/tintuc-next.png) center;
}

/* Tin tuc */
#bosuutap {
    padding: 15px 0 20px;
    background: #fff;
    border-top: 1px solid #efefef;
}

.box-bosuutap img {
    width: 100%;
}

/* Danh muc san pham */
.flex-danhmuc {
    display: flex;
    flex-flow: wrap;
}

.box-danhmuc {
    width: calc(100% / 3);
    position: relative;
    overflow: hidden;
}

.box-danhmuc img {
    width: 100%;
    transition: all 0.5s;
}

.box-danhmuc:hover img {
    transform: scale(1.1);
}

.box-danhmuc a {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    border: 01px solid rgba(255, 255, 255, 0.3);
    font-family: RR;
    text-transform: uppercase;
    font-size: 20px;
    color: #fff;
    padding: 10px;
}

/* Doi tac */
#doitac {
    padding: 15px 0 10px;
    background: #fff;
    border-top: 1px solid #efefef;
}

.slick-dt * {
    vertical-align: top;
}

.slick-dt .slick-arrow {
    position: absolute;
    z-index: 99;
    width: 28px;
    height: 28px;
    top: calc(0px - 45px);
    font-size: 0;
}

.slick-dt .slick-prev {
    right: 35px;
    background: url(../img/doitac-prev.png) center;
}

.slick-dt .slick-next {
    right: 0;
    background: url(../img/doitac-next.png) center;
}

.box-dt {
    max-width: 232px;
    border: 1px solid #efefef;
    margin: 0 auto;
    overflow: hidden;
}

.box-dt img {
    display: block;
    transition: all 0.5s;
}

.box-dt img:hover {
    transform: scale(1.1);
}

/* Lien he */
.lh-l {
    width: 50%;
    float: left;
    padding-right: 20px;
    border-right: 1px solid #CCC;
}

.lh-r {
    width: 50%;
    float: left;
    padding-left: 20px;
    border-left: 1px solid #CCC;
    margin-left: -1px;
}

.lh-con-l {
    width: 30%;
    float: left;
    margin-bottom: 5px;
}

.lh-con-l span {
    color: red;
}

.lh-con-r {
    width: 70%;
    float: left;
    margin-bottom: 5px;
}

.lh-con-r * {
    max-width: 100%;
}

.lh-con-r .input {
    width: 100%;
    outline: none;
    padding: 0 5px;
}

.lh-con-r textarea {
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    width: 100%;
    outline: none;
    padding: 0 5px;
}

#map_canvas iframe {
    width: 100%;
    max-width: 100%;
    vertical-align: top;
}

/* San pham */
.box-sp {
    width: 286px;
    float: left;
    margin: 0 12px 13px 0;
    font-family: RR;
    color: #1e1e1e;
    text-align: center;
    border: 1px solid #efefef;
    border-radius: 5px;
    padding: 9px;
}

.box-sp-img {
    overflow: hidden;
}

.box-sp-img img {
    max-height: 310px;
    width: 100%;
    transition: all 0.5s;
}

.box-sp-img:hover img {
    transform: scale(1.1);
}

.box-sp-content {
    padding: 13px 0 8px;
}

.box-sp-content h3 {
    font-size: 18px;
    line-height: 25px;
    font-weight: normal;
    margin: 0;
}

.box-sp-content a {
    color: #131313;
}

.box-sp-content a:hover {
    color: #ff2020;
}

.box-sp-gia {
    font-size: 18px;
    display: flex;
    justify-content: center;
    margin: 4px 0 0;
}

.box-sp-gia span {
    font-family: RM;
    color: #ff2020;
    text-transform: capitalize;
}

.box-sp-gia span.del {
    font-family: RR;
    color: #555;
    margin-right: 10px;
}

.box-sp-cart {
    text-align: center;
    margin: 10px 0 0;
}

.box-sp-cart i {
    margin-right: 4px;
    position: relative;
    top: -1px;
}

.box-sp-cart a {
    display: inline-block;
    vertical-align: top;
    width: 155px;
    line-height: 45px;
    background: #ffb72a;
    font-family: RM;
    text-transform: uppercase;
    color: #fff;
    font-size: 17px;
    border-radius: 5px;
}

.box-sp-cart a:hover {
    color: #fff;
    background: #744f3c;
}

.box-sp-cart a:last-child {
    display: none;
}

.box-sph {
    width: 286px;
    float: left;
    margin: 0 21px 21px 0;
    font-family: RR;
    color: #1e1e1e;
    text-align: center;
    border: 1px solid #efefef;
    border-radius: 5px;
    padding: 9px;
}

.box-sp-hot {
    position: relative;
}

.box-sp-hot:after {
    position: absolute;
    content: '';
    right: 10px;
    top: 10px;
    width: 45px;
    height: 31px;
    background: url(../img/hot.png) no-repeat center center;
    pointer-events: none;
}

.ct-l {
    width: 48%;
    float: left;
    margin-bottom: 20px;
}

.ct-r {
    width: 50%;
    float: right;
}

.ct-tit {
    font-family: RB;
    font-weight: normal;
    margin: 0 0 5px;
    color: #F00;
}

.ct-tit h2 {
    font-weight: normal;
    color: #F00;
    font-size: 24px;
    margin: 0px;
    font-family: RB;
    line-height: 32px;
}

.ctsp-tit {
    font-family: RB;
    font-size: 18px;
    margin-bottom: 10px;
}

.ct-sp {
    text-align: left;
    font-family: RR;
    font-size: 14px;
    line-height: 25px;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.ct-sp p {
    margin-bottom: 5px !important;
}

.ct-mota {
    text-align: justify;
}

.ct-sp-gia span {
    color: #f00;
    font-family: RB;
    font-size: 20px;
}

.ct-sp-giatruoc {
    font-family: RR;
    font-size: 14px;
}

.st-sp-like {
    margin-bottom: 15px;
}

.ct-sp-btn1 div {
    float: left;
    line-height: 32px;
}

.controls {
    margin-left: 15px;
}

.controls button {
    background: none;
    padding: 10px 10px 8px;
    font-size: 12px;
    border: 1px solid #e1e1e1;
    position: relative;
    outline: none;
    color: #333;
    float: left;
}

.controls input {
    padding: 5px 10px;
    outline: none;
    width: 47px;
    border-right: 0;
    float: left;
    border-left: 0;
    text-align: center;
    position: relative;
    height: 32px;
    border: 1px solid #e1e1e1;
    color: #333;
    background: none;
    margin: 0 -1px;
}

.ct-sp-btn .ct-sp-btn2 {
}

.ct-sp-btn .ct-sp-btn2 a:last-child {
    display: none;
}

.ct-sp-btn .ct-sp-btn2 .ajax_cart {
    background: #ffc526;
    border: none;
    font-family: RM;
    font-weight: normal;
    color: #FFF;
    font-size: 16px;
    padding: 10px 20px;
    text-transform: uppercase;
    float: left;
    min-width: 180px;
    text-align: center;
}

.ct-sp-btn .ct-sp-btn2 .ajax_cart:hover {
    background: #744f3c;
}

.ct-sp-btn .ct-sp-btn2 .ajax_cart.hethang {
    pointer-events: none;
}

.ct-sp-btn .ct-sp-btn2 a:not(.ajax_cart) {
    float: left;
    line-height: 17px;
    font-family: RR;
    font-size: 13px;
    padding: 6px 0px 5px 30px;
    color: #333;
    margin-left: 30px;
    position: relative;
    max-width: 105px;
}

.ct-sp-btn .ct-sp-btn2 a:not(.ajax_cart):before {
    position: absolute;
    content: '\f290';
    font-family: FontAwesome;
    left: -3px;
    top: 12px;
    font-size: 25px;
}

.ct-sp-btn .ct-sp-btn2 button:hover {
    background: #149749;
}

.ct-mid {
    margin: 0 0 20px;
}

.box-tabp-tit {
    font-family: RR;
    font-size: 14px;
}

.box-tabp-tit:after {
    display: block;
    content: "";
    clear: both;
}

.box-tabp-tit div {
    float: left;
    padding: 7px 30px 8px;
    background: #fff;
    color: #000;
    border-top: 1px solid #cacaca;
    border-right: 1px solid #cacaca;
    cursor: pointer;
}

.box-tabp-tit div.tactive {
    position: relative;
    font-family: RB;
    color: #000;
}

.box-tabp-tit div.tactive:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    background: var(--background-static);
    left: 0;
    top: -1px
}

.box-tabp-tit div.tactive:after {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 5px solid var(--background-static);
    left: calc(50% - 6px);
    top: -1px;
}

.box-tabp-tit div:first-child {
    border-left: 1px solid #cacaca;
}

.box-tabp-con {
    display: none;
    padding: 10px 15px;
    background: #fff;
}

.box-tabp-con:nth-child(1) {
    display: block;
}

/* Tin tuc */
.box-news {
    margin: 0 0 25px 0;
    font-family: RR;
    font-size: 13px;
    color: #333;
}

.box-news-img {
    width: 170px;
    max-width: 41%;
    float: left;
    margin-right: 20px;
    overflow: hidden;
}

.box-news-img img {
    width: 100%;
    transition: all 0.5s;
}

.box-news-img:hover img {
    transform: scale(1.1);
}

.box-news h3 {
    margin: 3px 0;
    font-size: 14px;
    line-height: 25px;
    font-family: RB;
    text-transform: uppercase;
    text-align: left;
}

.box-news h3 a {
    color: #282828;
}

.box-news h3 a:hover {
    color: var(--color-red);
}

.box-news-date {
    font-family: RR;
    font-size: 13px;
    color: #858585;
}

.box-news-date span {
    margin-left: 30px;
}

.box-news div:last-child {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

h2.tincungloai {
    font-size: 16px;
    font-weight: bold;
    border-bottom: 1px solid #CCC;
    margin: 0px 0px 5px;
    padding-bottom: 5px;
    margin-top: 15px;
}

ul.tincungloai {
    list-style: none;
    margin: 0;
    font-size: 13px;
    font-family: RR;
}

ul.tincungloai li {
    background: url('../images/tinkhac.png') no-repeat left top 10px;
    padding-left: 15px;
}

ul.tincungloai li a {
    color: #424242;
}

ul.tincungloai li a:hover {
    color: #da2627;
    text-decoration: underline !important;
}

/* Container */
#container {
    padding: 20px 0px 20px;
}

.content {
    text-align: justify;
    font-size: 15px;
}

.left {
    width: calc(100% - 300px);
    float: left;
}

.right {
    width: 270px;
    float: right;
}

/* Left */
.left-box {
    margin-top: 50px;
}

.left-box:first-child {
    margin-top: 0;
}

.left-tit {
    font-family: RM;
    font-size: 18px;
    margin-bottom: 25px;
    color: #555;
}

.left-list {
}

.left-list ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.left-list > ul > li > a {
    color: #666;
    font-size: 14px;
    position: relative;
    border-top: 1px solid #eaeaea;
    padding: 6px 10px 6px 20px;
    text-transform: uppercase;
    font-family: RR;
    display: block;
}

.left-list > ul > li > a:before {
    position: absolute;
    content: '\f0da';
    font-family: FontAwesome;
    left: 3px;
    top: 7px;
    transition: all 0.5s;
}

.left-list > ul > li > a:hover, .left-list > ul > li > a:hover:before {
    color: #ffb72a;
}

.left-list li ul {
    padding: 7px 0 5px;
    border-top: 1px solid #eaeaea;
}

.left-list li ul li {
    padding-left: 11px;
}

.left-list li ul li > a {
    color: #7e7e7e;
    padding: 1px 10px 1px 19px;
    font-size: 12px;
    display: block;
    position: relative;
}

.left-list li ul li > a:before {
    position: absolute;
    content: '\f105';
    font-family: FontAwesome;
    left: 3px;
    top: 0px;
    transition: all 0.5s;
}

.left-list li ul li > a:hover, .left-list li ul li > a:hover:before {
    color: #ffb72a;
}

.box-left-sp ~ .box-left-sp {
    margin-top: 20px;
}

.box-left-sp-img {
    float: left;
}

.box-left-sp-img img {
    max-width: 60px;
    height: auto;
    border-radius: 4px;
}

.box-left-sp-content {
    margin-left: 75px;
    font-family: RR;
    font-size: 14px;
}

.box-left-sp-content a {
    font-family: RM;
    font-size: 13px;
    display: block;
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/*Ho tro*/
.js-facebook-messenger-container.closed, .js-facebook-messenger-tooltip.closed {
    display: none !important
}

.js-facebook-messenger-tooltip {
    bottom: 97px;
    right: 97px
}

.js-facebook-messenger-tooltip {
    color: #404040;
    background: #fff
}

.js-facebook-messenger-box, .js-facebook-messenger-button, .js-facebook-messenger-tooltip {
    z-index: 999
}

.js-facebook-messenger-tooltip {
    display: none;
    position: fixed;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    font-size: 12px;
    line-height: 1;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: rgba(0, 0, 0, 0.15) 0 2pt 10pt;
    z-index: 1.0 E+30
}

.js-facebook-messenger-close-tooltip {
    width: 10px;
    height: 10px;
    display: inline-block;
    cursor: pointer;
    margin-left: 10px
}

.js-facebook-messenger-box.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand
}

.js-facebook-messenger-box.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.js-facebook-messenger-box {
    bottom: 245px;
    right: 0
}

.js-facebook-messenger-box {
    background: #1182fc
}

.js-facebook-messenger-box, .js-facebook-messenger-button, .js-facebook-messenger-tooltip {
    z-index: 999
}

.js-facebook-messenger-box {
    width: 60px;
    height: 60px;
    display: block;
    position: fixed;
    cursor: pointer;
    text-align: center;
    line-height: 60px;
    background: #1182FC;
    border-radius: 100%;
    overflow: hidden;
    -webkit-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.3)
}

.js-facebook-messenger-box.rotate svg#fb-msng-icon {
    transform: rotate(0deg)
}

.js-facebook-messenger-box svg#fb-msng-icon {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 12px;
    left: 12px;
    opacity: 1;
    overflow: hidden;
    -webkit-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
    -moz-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
    -o-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
    transition: opacity 160ms ease-in-out, transform 160ms ease-in-out
}

.js-facebook-messenger-box.rotate svg#close-icon {
    transform: rotate(-45deg)
}

.js-facebook-messenger-box svg#close-icon {
    opacity: 0;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 17px;
    left: 17px;
    -webkit-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
    -moz-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
    -o-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
    transition: opacity 160ms ease-in-out, transform 160ms ease-in-out
}

.js-facebook-messenger-container {
    transform: translateY(50px);
    bottom: 110px;
    right: 65px
}

.js-facebook-messenger-container, .js-facebook-messenger-container-button {
    z-index: 1000
}

.js-facebook-messenger-container {
    position: fixed;
    opacity: 0;
    border-radius: 10px;
    pointer-events: none;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06), 0 2px 32px rgba(0, 0, 0, 0.16);
    -webkit-transition: transform 160ms ease-in-out, opacity 160ms ease-in-out;
    -moz-transition: transform 160ms ease-in-out, opacity 160ms ease-in-out;
    -o-transition: transform 160ms ease-in-out, opacity 160ms ease-in-out;
    transition: transform 160ms ease-in-out, opacity 160ms ease-in-out
}

.js-facebook-messenger-top-header {
    width: 300px
}

.js-facebook-messenger-top-header {
    color: #fff;
    background: #1182FC
}

.js-facebook-messenger-top-header {
    display: block;
    position: relative;
    width: 300px;
    background: #1182FC;
    color: #fff;
    text-align: center;
    line-height: 1;
    padding: 10px;
    font-size: 14px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px
}

.js-facebook-messenger-container iframe, .js-facebook-messenger-container-button iframe {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px
}

.js-facebook-messenger-box, .js-facebook-messenger-button, .js-facebook-messenger-tooltip {
    z-index: 999
}

.js-facebook-messenger-container, .js-facebook-messenger-container-button {
    z-index: 1000
}

.js-facebook-messenger-top-header {
    color: #fff;
    background: #1182FC
}

.js-facebook-messenger-box {
    background: #1182FC
}

.js-facebook-messenger-top-header {
    width: 300px
}

.js-facebook-messenger-tooltip {
    color: #404040;
    background: #fff
}

.js-facebook-messenger-box {
    bottom: 70px;
    right: 15px
}

.js-facebook-messenger-container {
    transform: translateY(50px);
    bottom: 20vh;
    right: 35px
}

.js-facebook-messenger-container.open {
    transform: translateY(0px);
    opacity: 1;
    pointer-events: all
}

.js-facebook-messenger-tooltip {
    bottom: 97px;
    right: 97px
}

.js-facebook-messenger-box.open svg#fb-msng-icon {
    opacity: 0
}

.js-facebook-messenger-box.rotate.open svg#close-icon {
    transform: rotate(0deg)
}

.js-facebook-messenger-box.open svg#close-icon {
    opacity: 1
}

.hotro-right .js-facebook-messenger-box {
    bottom: 20vh;
    right: 15px;
    width: 53px;
    height: 53px;
    border-radius: 10px;
    z-index: 99;
}

.hotro-right .js-facebook-messenger-container {
    right: 80px;
}

.fix-toolbar {
    background: #D61414;
    width: 100%;
    padding: 5px;
    bottom: 0;
    position: fixed;
    z-index: 500;
    height: auto;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: none;
    border-top: 1px solid #fff;
}

.fix-toolbar img {
    vertical-align: top;
}

.fix-toolbar ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    list-style: none;
    margin: 0;
}

.fix-toolbar ul li {
    text-align: center;
    width: 20%;
}

.fix-toolbar ul li a {
    display: block;
    width: 100%;
    cursor: pointer;
    color: #fff;
    font-size: 30px;
}

.fix-toolbar ul li a img {
    height: 25px;
    width: auto;
}

.fix-toolbar ul li a span {
    font-weight: 400;
    color: #fff;
    font-size: 13px;
    display: none;
}

.quick-alo-phone.quick-alo-show {
    visibility: visible;
}

.quick-alo-phone {
    position: fixed;
    visibility: hidden;
    background-color: transparent;
    height: 200px;
    width: 82px;
    height: 64px;
    cursor: pointer;
    z-index: 200000 !important;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    -webkit-transition: visibility .5s;
    -moz-transition: visibility .5s;
    -o-transition: visibility .5s;
    transition: visibility .5s;
    right: 60px;
    bottom: calc(15vh + 200px);
}

.quick-alo-phone.quick-alo-green .quick-alo-ph-circle {
    border-color: #005aa6;
    opacity: .99;
}

.quick-alo-ph-circle {
    width: 160px;
    height: 160px;
    top: 20px;
    left: 20px;
    position: absolute;
    background-color: transparent;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid rgba(30, 30, 30, 0.4);
    border: 2px solid #bfebfc 9;
    opacity: .1;
    -webkit-animation: quick-alo-circle-anim 1.2s infinite ease-in-out;
    -moz-animation: quick-alo-circle-anim 1.2s infinite ease-in-out;
    -ms-animation: quick-alo-circle-anim 1.2s infinite ease-in-out;
    -o-animation: quick-alo-circle-anim 1.2s infinite ease-in-out;
    animation: quick-alo-circle-anim 1.2s infinite ease-in-out;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.quick-alo-phone.quick-alo-green .quick-alo-ph-circle-fill {
    background-color: #005aa6;
    opacity: .75 !important;
}

.quick-alo-ph-circle-fill {
    width: 100px;
    height: 100px;
    top: 50px;
    left: 50px;
    position: absolute;
    background-color: #000;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    opacity: .1;
    -webkit-animation: quick-alo-circle-fill-anim 2.3s infinite ease-in-out;
    -moz-animation: quick-alo-circle-fill-anim 2.3s infinite ease-in-out;
    -ms-animation: quick-alo-circle-fill-anim 2.3s infinite ease-in-out;
    -o-animation: quick-alo-circle-fill-anim 2.3s infinite ease-in-out;
    animation: quick-alo-circle-fill-anim 2.3s infinite ease-in-out;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.quick-alo-phone.quick-alo-green .quick-alo-ph-img-circle {
    background-color: #005aa6;
}

.quick-alo-ph-img-circle {
    width: 60px;
    height: 60px;
    top: 70px;
    left: 70px;
    position: absolute;
    background: rgba(30, 30, 30, 0.1) url("../images/iconzalo.png") no-repeat center center;
    background-size: cover;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    opacity: .99;
    -webkit-animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
    -moz-animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
    -ms-animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
    -o-animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
    animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.quick-alo-phone.quick-alo-green.quick-alo-hover .quick-alo-ph-img-circle, .quick-alo-phone.quick-alo-green:hover .quick-alo-ph-img-circle {
    background-color: #f58220;
}

@-moz-keyframes quick-alo-circle-anim {
    0% {
        -moz-transform: rotate(0) scale(.5) skew(1deg);
        opacity: .1;
        -moz-opacity: .1;
        -webkit-opacity: .1;
        -o-opacity: .1
    }
    30% {
        -moz-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .5;
        -moz-opacity: .5;
        -webkit-opacity: .5;
        -o-opacity: .5
    }
    100% {
        -moz-transform: rotate(0) scale(1) skew(1deg);
        opacity: .6;
        -moz-opacity: .6;
        -webkit-opacity: .6;
        -o-opacity: .1
    }
}

@-webkit-keyframes quick-alo-circle-anim {
    0% {
        -webkit-transform: rotate(0) scale(.5) skew(1deg);
        -webkit-opacity: .1
    }
    30% {
        -webkit-transform: rotate(0) scale(.7) skew(1deg);
        -webkit-opacity: .5
    }
    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        -webkit-opacity: .1
    }
}

@-o-keyframes quick-alo-circle-anim {
    0% {
        -o-transform: rotate(0) kscale(.5) skew(1deg);
        -o-opacity: .1
    }
    30% {
        -o-transform: rotate(0) scale(.7) skew(1deg);
        -o-opacity: .5
    }
    100% {
        -o-transform: rotate(0) scale(1) skew(1deg);
        -o-opacity: .1
    }
}

@-moz-keyframes quick-alo-circle-fill-anim {
    0% {
        -moz-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }
    50% {
        -moz-transform: rotate(0) -moz-scale(1) skew(1deg);
        opacity: .2
    }
    100% {
        -moz-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }
}

@-webkit-keyframes quick-alo-circle-fill-anim {
    0% {
        -webkit-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }
    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        opacity: .2
    }
    100% {
        -webkit-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }
}

@-o-keyframes quick-alo-circle-fill-anim {
    0% {
        -o-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }
    50% {
        -o-transform: rotate(0) scale(1) skew(1deg);
        opacity: .2
    }
    100% {
        -o-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }
}

@-moz-keyframes quick-alo-circle-img-anim {
    0% {
        transform: rotate(0) scale(1) skew(1deg)
    }
    10% {
        -moz-transform: rotate(-25deg) scale(1) skew(1deg)
    }
    20% {
        -moz-transform: rotate(25deg) scale(1) skew(1deg)
    }
    30% {
        -moz-transform: rotate(-25deg) scale(1) skew(1deg)
    }
    40% {
        -moz-transform: rotate(25deg) scale(1) skew(1deg)
    }
    50% {
        -moz-transform: rotate(0) scale(1) skew(1deg)
    }
    100% {
        -moz-transform: rotate(0) scale(1) skew(1deg)
    }
}

@-webkit-keyframes quick-alo-circle-img-anim {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }
    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
    }
    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg)
    }
    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
    }
    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg)
    }
    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }
    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }
}

@-o-keyframes quick-alo-circle-img-anim {
    0% {
        -o-transform: rotate(0) scale(1) skew(1deg)
    }
    10% {
        -o-transform: rotate(-25deg) scale(1) skew(1deg)
    }
    20% {
        -o-transform: rotate(25deg) scale(1) skew(1deg)
    }
    30% {
        -o-transform: rotate(-25deg) scale(1) skew(1deg)
    }
    40% {
        -o-transform: rotate(25deg) scale(1) skew(1deg)
    }
    50% {
        -o-transform: rotate(0) scale(1) skew(1deg)
    }
    100% {
        -o-transform: rotate(0) scale(1) skew(1deg)
    }
}

@-moz-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

@-o-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

.support-online {
    position: fixed;
    z-index: 999;
    left: 0;
    bottom: 0px;
}

.fa-user-circle:before {
    content: "\f007";
}

.support-online a {
    position: relative;
    margin: 20px 20px;
    text-align: left;
    width: 40px;
    height: 40px;
}

.support-online i {
    width: 40px;
    height: 40px;
    background: #43a1f3;
    color: #fff;
    border-radius: 100%;
    font-size: 20px;
    text-align: center;
    line-height: 1.9;
    position: relative;
    z-index: 999;
}

.support-online a span {
    border-radius: 2px;
    text-align: center;
    background: rgb(103, 182, 52);
    padding: 9px;
    display: none;
    width: 180px;
    margin-left: 10px;
    position: absolute;
    color: #ffffff;
    z-index: 999;
    top: 0px;
    left: 40px;
    transition: all 0.2s ease-in-out 0s;
    -moz-animation: headerAnimation 0.7s 1;
    -webkit-animation: headerAnimation 0.7s 1;
    -o-animation: headerAnimation 0.7s 1;
    animation: headerAnimation 0.7s 1;
}

.support-online a:hover span {
    display: block;
}

.support-online a {
    display: block;
}

.support-online a span:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 10px 0;
    border-color: transparent rgb(103, 182, 52) transparent transparent;
    position: absolute;
    left: -10px;
    top: 10px;
}

.kenit-alo-circle-fill {
    width: 60px;
    height: 60px;
    top: -10px;
    position: absolute;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    background-color: rgba(0, 175, 242, 0.5);
    opacity: .75;
    right: -10px;
}

.kenit-alo-circle {
    width: 50px;
    height: 50px;
    top: -5px;
    right: -5px;
    position: absolute;
    background-color: transparent;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid rgba(30, 30, 30, 0.4);
    opacity: .1;
    border-color: #0089B9;
    opacity: .5;
}

.support-online .btn-support {
    cursor: pointer;
}

.sms i {
    background: red
}

.call-now i {
    background: green
}

.mes i {
    background: orange
}

/* Reponsive */
@media (min-width: 1200px) {
    .box-sp:nth-child(4n) {
        margin-right: 0;
    }

    .box-sp:nth-child(4n + 1) {
        clear: both;
    }

    .box-sph:nth-child(3n) {
        margin-right: 0;
    }

    .box-sph:nth-child(3n + 1) {
        clear: both;
    }

    .slick-th .slick-prev {
        left: -25px;
    }

    .slick-th .slick-next {
        right: -25px;
    }

    .slick-tintuc .slick-prev {
        left: -30px;
    }

    .slick-tintuc .slick-next {
        right: -30px;
    }

    .slick-sanpham .slick-prev {
        left: -30px;
    }

    .slick-sanpham .slick-next {
        right: -30px;
    }

    .slick-sliderr .slick-prev {
        left: 55px;
    }

    .slick-sliderr .slick-next {
        right: 55px;
    }
}

@media (max-width: 1199px) {
    #container {
        padding: 20px 15px;
    }

    #top .center {
        padding: 0 15px;
    }

    .box-dt {
        max-width: 95%;
    }

    .box-tintuc {
        max-width: 95%;
    }

    .box-sanpham {
        max-width: 95%;
    }

    .box-vechungtoi {
        max-width: 95%;
    }

    .box-slider-content {
        left: 15px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .btn-search {
        margin-left: 10px !important;
    }

    .sm-blue a:not(.search) {
        padding: 0 20px !important;
    }

    .sm-blue ul a {
        line-height: 30px !important;
    }

    .box-sp {
        width: 32%;
        margin: 0px 2% 20px 0px;
    }

    .box-sp:nth-child(3n) {
        margin-right: 0;
    }

    .box-sp:nth-child(3n + 1) {
        clear: both;
    }

    .box-sph {
        width: 32%;
        margin: 0px 2% 20px 0px;
    }

    .box-sph:nth-child(3n) {
        margin-right: 0;
    }

    .box-sph:nth-child(3n + 1) {
        clear: both;
    }

    .ft-1 {
        width: 40%;
        margin: 0px;
    }

    .ft-2 {
        width: calc(30% - 20px);
        margin: 0px 0px 0px 20px;
    }

    .ft-list li {
        width: 100%;
    }

    .ft-3 {
        width: calc(30% - 20px);
        margin: 0px 0px 0px 20px;
    }
}

@media (min-width: 992px) {
    .sub-arrow {
        display: none !important;
    }
}

@media (max-width: 991px) {
    #banner .center {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #logo {
        position: static;
        padding: 0;
        margin-right: 15px;
    }

    #banner {
        position: sticky;
        position: -webkit-sticky;
        top: 0;
        background: #2a2a2a;
        z-index: 999;
        border-top: 2px solid #ffb72a;
        box-shadow: 0 0 5px #111;
    }

    #banner img {
        max-height: 70px;
    }

    #smenu {
        display: flex;
    }

    #smenu a {
        font-family: RM;
        color: #fff;
        font-size: 25px;
    }

    #banner-ab, #menu, .right {
        display: none;
    }

    .left {
        width: 100%;
        float: none;
    }

    .menu-line {
        padding: 0 !important;
    }

    .tt-l, .tt-r {
        width: 100%;
        float: none;
        margin: 0px 0px 20px;
    }

    .itab {
        justify-content: flex-start;
    }

    .itab > div {
        padding: 10px 15px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .box-sp {
        width: 32%;
        margin: 0px 2% 20px 0px;
    }

    .box-sp:nth-child(3n) {
        margin-right: 0;
    }

    .box-sp:nth-child(3n + 1) {
        clear: both;
    }

    .box-sph {
        width: 32%;
        margin: 0px 2% 20px 0px;
    }

    .box-sph:nth-child(3n) {
        margin-right: 0;
    }

    .box-sph:nth-child(3n + 1) {
        clear: both;
    }

    .ft-1 {
        width: 100%;
        max-width: 460px;
        float: none;
        margin: 0px 0px 15px;
    }

    .ft-2 {
        width: 325px;
        float: left;
    }

    .ft-3 {
        width: 325px;
        float: right;
    }
}

@media (max-width: 767px) {
    .content img {
        height: inherit !important
    }

    .ft-1, .ft-2, .ft-3 {
        width: 100%;
        float: none;
        margin: 0px 0px 20px 0px;
    }

    .ct-l, .ct-r, .lh-l, .lh-r {
        width: 100%;
        float: none;
        margin: 0px 0px 15px 0px;
        padding: 0;
        border: none;
    }

    .lienhe-l, .lienhe-r {
        width: 100%;
        float: none;
    }

    #footer {
        padding-bottom: 45px;
    }

    .hotro-right, .quick-alo-phone, .support-online {
        display: none;
    }

    .fix-toolbar {
        display: block;
    }

    .ft-b .center > div {
        width: 100%;
    }

    .i-tit p {
        letter-spacing: inherit;
    }

    .box-danhmuc {
        width: calc(100% / 2);
    }

    .box-slider-content {
        display: none;
    }

    .box-sp-cart a:first-child, .ct-sp-btn .ct-sp-btn2 a:first-child {
        display: none;
    }

    .box-sp-cart a:last-child, .ct-sp-btn .ct-sp-btn2 a:last-child {
        display: inline-block;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    .box-sp {
        width: 49%;
        margin: 0px 2% 20px 0px;
    }

    .box-sp:nth-child(2n) {
        margin-right: 0;
    }

    .box-sp:nth-child(2n + 1) {
        clear: both;
    }

    .box-sph {
        width: 49%;
        margin: 0px 2% 20px 0px;
    }

    .box-sph:nth-child(2n) {
        margin-right: 0;
    }

    .box-sph:nth-child(2n + 1) {
        clear: both;
    }
}

@media (max-width: 480px) {
    .box-sp {
        width: 49%;
        margin: 0px 2% 20px 0px;
    }

    .box-sp:nth-child(2n) {
        margin-right: 0;
    }

    .box-sp:nth-child(2n + 1) {
        clear: both;
    }

    .box-sph {
        width: 49%;
        margin: 0px 2% 20px 0px;
    }

    .box-sph:nth-child(2n) {
        margin-right: 0;
    }

    .box-sph:nth-child(2n + 1) {
        clear: both;
    }

    .ft-1 > div {
        padding-right: 0;
    }
}

@media (max-width: 374px) {
    .lh-con-l, .lh-con-r {
        width: 100%;
        float: none;
        margin: 0px;
        padding: 0px;
    }

    .lh-con-r {
        margin-bottom: 10px;
    }

    .box-sp {
        width: 90%;
        margin: 0px 5% 20px;
        float: none;
    }

    .box-sph {
        width: 90%;
        margin: 0px 5% 20px;
        float: none;
    }
}

.at-icon {
    fill: #fff;
    border: 0
}

.at-icon-wrapper {
    display: inline-block;
    overflow: hidden
}

a .at-icon-wrapper {
    cursor: pointer
}

.at-rounded, .at-rounded-element .at-icon-wrapper {
    border-radius: 12%
}

.at-circular, .at-circular-element .at-icon-wrapper {
    border-radius: 50%
}

.addthis_32x32_style .at-icon {
    width: 2pc;
    height: 2pc
}

.addthis_24x24_style .at-icon {
    width: 24px;
    height: 24px
}

.addthis_20x20_style .at-icon {
    width: 20px;
    height: 20px
}

.addthis_16x16_style .at-icon {
    width: 1pc;
    height: 1pc
}

#at16lb {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1001;
    background-color: #000;
    opacity: .001
}

#at_complete, #at_error, #at_share, #at_success {
    position: static !important
}

.at15dn {
    display: none
}

#at15s, #at16p, #at16p form input, #at16p label, #at16p textarea, #at_share .at_item {
    font-family: arial, helvetica, tahoma, verdana, sans-serif !important;
    font-size: 9pt !important;
    outline-style: none;
    outline-width: 0;
    line-height: 1em
}

* html #at15s.mmborder {
    position: absolute !important
}

#at15s.mmborder {
    position: fixed !important;
    width: 250px !important
}

#at15s {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAABtJREFUeNpiZGBgaGAgAjAxEAlGFVJHIUCAAQDcngCUgqGMqwAAAABJRU5ErkJggg==);
    float: none;
    line-height: 1em;
    margin: 0;
    overflow: visible;
    padding: 5px;
    text-align: left;
    position: absolute
}

#at15s a, #at15s span {
    outline: 0;
    direction: ltr;
    text-transform: none
}

#at15s .at-label {
    margin-left: 5px
}

#at15s .at-icon-wrapper {
    width: 1pc;
    height: 1pc;
    vertical-align: middle
}

#at15s .at-icon {
    width: 1pc;
    height: 1pc
}

.at4-icon {
    display: inline-block;
    background-repeat: no-repeat;
    background-position: top left;
    margin: 0;
    overflow: hidden;
    cursor: pointer
}

.addthis_16x16_style .at4-icon, .addthis_default_style .at4-icon, .at4-icon, .at-16x16 {
    width: 1pc;
    height: 1pc;
    line-height: 1pc;
    background-size: 1pc !important
}

.addthis_32x32_style .at4-icon, .at-32x32 {
    width: 2pc;
    height: 2pc;
    line-height: 2pc;
    background-size: 2pc !important
}

.addthis_24x24_style .at4-icon, .at-24x24 {
    width: 24px;
    height: 24px;
    line-height: 24px;
    background-size: 24px !important
}

.addthis_20x20_style .at4-icon, .at-20x20 {
    width: 20px;
    height: 20px;
    line-height: 20px;
    background-size: 20px !important
}

.at4-icon.circular, .circular .at4-icon, .circular.aticon {
    border-radius: 50%
}

.at4-icon.rounded, .rounded .at4-icon {
    border-radius: 4px
}

.at4-icon-left {
    float: left
}

#at15s .at4-icon {
    text-indent: 20px;
    padding: 0;
    overflow: visible;
    white-space: nowrap;
    background-size: 1pc;
    width: 1pc;
    height: 1pc;
    background-position: top left;
    display: inline-block;
    line-height: 1pc
}

.addthis_vertical_style .at4-icon, .at4-follow-container .at4-icon {
    margin-right: 5px
}

html > body #at15s {
    width: 250px !important
}

#at15s.atm {
    background: none !important;
    padding: 0 !important;
    width: 10pc !important
}

#at15s_inner {
    background: #fff;
    border: 1px solid #fff;
    margin: 0
}

#at15s_head {
    position: relative;
    background: #f2f2f2;
    padding: 4px;
    cursor: default;
    border-bottom: 1px solid #e5e5e5
}

.at15s_head_success {
    background: #cafd99 !important;
    border-bottom: 1px solid #a9d582 !important
}

.at15s_head_success a, .at15s_head_success span {
    color: #000 !important;
    text-decoration: none
}

#at15s_brand, #at15sptx, #at16_brand {
    position: absolute
}

#at15s_brand {
    top: 4px;
    right: 4px
}

.at15s_brandx {
    right: 20px !important
}

a#at15sptx {
    top: 4px;
    right: 4px;
    text-decoration: none;
    color: #4c4c4c;
    font-weight: 700
}

#at15sptx:hover {
    text-decoration: underline
}

#at16_brand {
    top: 5px;
    right: 30px;
    cursor: default
}

#at_hover {
    padding: 4px
}

#at_hover .at_item, #at_share .at_item {
    background: #fff !important;
    float: left !important;
    color: #4c4c4c !important
}

#at_share .at_item .at-icon-wrapper {
    margin-right: 5px
}

#at_hover .at_bold {
    font-weight: 700;
    color: #000 !important
}

#at_hover .at_item {
    width: 7pc !important;
    padding: 2px 3px !important;
    margin: 1px;
    text-decoration: none !important
}

#at_hover .at_item.athov, #at_hover .at_item:focus, #at_hover .at_item:hover {
    margin: 0 !important
}

#at_hover .at_item.athov, #at_hover .at_item:focus, #at_hover .at_item:hover, #at_share .at_item.athov, #at_share .at_item:hover {
    background: #f2f2f2 !important;
    border: 1px solid #e5e5e5;
    color: #000 !important;
    text-decoration: none
}

.ipad #at_hover .at_item:focus {
    background: #fff !important;
    border: 1px solid #fff
}

.at15t {
    display: block !important;
    height: 1pc !important;
    line-height: 1pc !important;
    padding-left: 20px !important;
    background-position: 0 0;
    text-align: left
}

.addthis_button, .at15t {
    cursor: pointer
}

.addthis_toolbox a.at300b, .addthis_toolbox a.at300m {
    width: auto
}

.addthis_toolbox a {
    margin-bottom: 5px;
    line-height: initial
}

.addthis_toolbox.addthis_vertical_style {
    width: 200px
}

.addthis_button_facebook_like .fb_iframe_widget {
    line-height: 100%
}

.addthis_button_facebook_like iframe.fb_iframe_widget_lift {
    max-width: none
}

.addthis_toolbox a.addthis_button_counter, .addthis_toolbox a.addthis_button_facebook_like, .addthis_toolbox a.addthis_button_facebook_send, .addthis_toolbox a.addthis_button_facebook_share, .addthis_toolbox a.addthis_button_foursquare, .addthis_toolbox a.addthis_button_linkedin_counter, .addthis_toolbox a.addthis_button_pinterest_pinit, .addthis_toolbox a.addthis_button_tweet {
    display: inline-block
}

.addthis_toolbox span.addthis_follow_label {
    display: none
}

.addthis_toolbox.addthis_vertical_style span.addthis_follow_label {
    display: block;
    white-space: nowrap
}

.addthis_toolbox.addthis_vertical_style a {
    display: block
}

.addthis_toolbox.addthis_vertical_style.addthis_32x32_style a {
    line-height: 2pc;
    height: 2pc
}

.addthis_toolbox.addthis_vertical_style .at300bs {
    margin-right: 4px;
    float: left
}

.addthis_toolbox.addthis_20x20_style span {
    line-height: 20px
}

.addthis_toolbox.addthis_32x32_style span {
    line-height: 2pc
}

.addthis_toolbox.addthis_pill_combo_style .addthis_button_compact .at15t_compact, .addthis_toolbox.addthis_pill_combo_style a {
    float: left
}

.addthis_toolbox.addthis_pill_combo_style a.addthis_button_tweet {
    margin-top: -2px
}

.addthis_toolbox.addthis_pill_combo_style .addthis_button_compact .at15t_compact {
    margin-right: 4px
}

.addthis_default_style .addthis_separator {
    margin: 0 5px;
    display: inline
}

div.atclear {
    clear: both
}

.addthis_default_style .addthis_separator, .addthis_default_style .at4-icon, .addthis_default_style .at300b, .addthis_default_style .at300bo, .addthis_default_style .at300bs, .addthis_default_style .at300m {
    float: left
}

.at300b img, .at300bo img {
    border: 0
}

a.at300b .at4-icon, a.at300m .at4-icon {
    display: block
}

.addthis_default_style .at300b, .addthis_default_style .at300bo, .addthis_default_style .at300m {
    padding: 0 2px
}

.at300b, .at300bo, .at300bs, .at300m {
    cursor: pointer
}

.addthis_button_facebook_like.at300b:hover, .addthis_button_facebook_like.at300bs:hover, .addthis_button_facebook_send.at300b:hover, .addthis_button_facebook_send.at300bs:hover {
    opacity: 1
}

.addthis_20x20_style .at15t, .addthis_20x20_style .at300bs {
    overflow: hidden;
    display: block;
    height: 20px !important;
    width: 20px !important;
    line-height: 20px !important
}

.addthis_32x32_style .at15t, .addthis_32x32_style .at300bs {
    overflow: hidden;
    display: block;
    height: 2pc !important;
    width: 2pc !important;
    line-height: 2pc !important
}

.at300bs {
    overflow: hidden;
    display: block;
    background-position: 0 0;
    height: 1pc;
    width: 1pc;
    line-height: 1pc !important
}

.addthis_default_style .at15t_compact, .addthis_default_style .at15t_expanded {
    margin-right: 4px
}

#at_share .at_item {
    width: 123px !important;
    padding: 4px;
    margin-right: 2px;
    border: 1px solid #fff
}

#at16p {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAABtJREFUeNpiZGBgaGAgAjAxEAlGFVJHIUCAAQDcngCUgqGMqwAAAABJRU5ErkJggg==);
    z-index: 10000001;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    padding: 10px;
    margin: 0 auto;
    margin-top: -185px;
    margin-left: -155px;
    font-family: arial, helvetica, tahoma, verdana, sans-serif;
    font-size: 9pt;
    color: #5e5e5e
}

#at_share {
    margin: 0;
    padding: 0
}

#at16pt {
    position: relative;
    background: #f2f2f2;
    height: 13px;
    padding: 5px 10px
}

#at16pt a, #at16pt h4 {
    font-weight: 700
}

#at16pt h4 {
    display: inline;
    margin: 0;
    padding: 0;
    font-size: 9pt;
    color: #4c4c4c;
    cursor: default
}

#at16pt a {
    position: absolute;
    top: 5px;
    right: 10px;
    color: #4c4c4c;
    text-decoration: none;
    padding: 2px
}

#at15sptx:focus, #at16pt a:focus {
    outline: thin dotted
}

#at15s #at16pf a {
    top: 1px
}

#_atssh {
    width: 1px !important;
    height: 1px !important;
    border: 0 !important
}

.atm {
    width: 10pc !important;
    padding: 0;
    margin: 0;
    line-height: 9pt;
    letter-spacing: normal;
    font-family: arial, helvetica, tahoma, verdana, sans-serif;
    font-size: 9pt;
    color: #444;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAABtJREFUeNpiZGBgaGAgAjAxEAlGFVJHIUCAAQDcngCUgqGMqwAAAABJRU5ErkJggg==);
    padding: 4px
}

.atm-f {
    text-align: right;
    border-top: 1px solid #ddd;
    padding: 5px 8px
}

.atm-i {
    background: #fff;
    border: 1px solid #d5d6d6;
    padding: 0;
    margin: 0;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, .15)
}

.atm-s {
    margin: 0 !important;
    padding: 0 !important
}

.atm-s a:focus {
    border: transparent;
    outline: 0;
    transition: none
}

#at_hover.atm-s a, .atm-s a {
    display: block;
    text-decoration: none;
    padding: 4px 10px;
    color: #235dab !important;
    font-weight: 400;
    font-style: normal;
    transition: none
}

#at_hover.atm-s .at_bold {
    color: #235dab !important
}

#at_hover.atm-s a:hover, .atm-s a:hover {
    background: #2095f0;
    text-decoration: none;
    color: #fff !important
}

#at_hover.atm-s .at_bold {
    font-weight: 700
}

#at_hover.atm-s a:hover .at_bold {
    color: #fff !important
}

.atm-s a .at-label {
    vertical-align: middle;
    margin-left: 5px;
    direction: ltr
}

.at_PinItButton {
    display: block;
    width: 40px;
    height: 20px;
    padding: 0;
    margin: 0;
    background-image: url(//s7.addthis.com/static/t00/pinit00.png);
    background-repeat: no-repeat
}

.at_PinItButton:hover {
    background-position: 0 -20px
}

.addthis_toolbox .addthis_button_pinterest_pinit {
    position: relative
}

.at-share-tbx-element .fb_iframe_widget span {
    vertical-align: baseline !important
}

#at16pf {
    height: auto;
    text-align: right;
    padding: 4px 8px
}

.at-privacy-info {
    position: absolute;
    left: 7px;
    bottom: 7px;
    cursor: pointer;
    text-decoration: none;
    font-family: helvetica, arial, sans-serif;
    font-size: 10px;
    line-height: 9pt;
    letter-spacing: .2px;
    color: #666
}

.at-privacy-info:hover {
    color: #000
}

.body .wsb-social-share .wsb-social-share-button-vert {
    padding-top: 0;
    padding-bottom: 0
}

.body .wsb-social-share.addthis_counter_style .addthis_button_tweet.wsb-social-share-button {
    padding-top: 40px
}

.body .wsb-social-share.addthis_counter_style .addthis_button_facebook_like.wsb-social-share-button {
    padding-top: 21px
}

@media print {
    #at4-follow, #at4-share, #at4-thankyou, #at4-whatsnext, #at4m-mobile, #at15s, .at4, .at4-recommended {
        display: none !important
    }
}

@media screen and (max-width: 400px) {
    .at4win {
        width: 100%
    }
}

@media screen and (max-height: 700px) and (max-width: 400px) {
    .at4-thankyou-inner .at4-recommended-container {
        height: 122px;
        overflow: hidden
    }

    .at4-thankyou-inner .at4-recommended .at4-recommended-item:first-child {
        border-bottom: 1px solid #c5c5c5
    }
}

.fancybox-margin {
    margin-right: 0px;
}

.at-branding-logo {
    font-family: helvetica, arial, sans-serif;
    text-decoration: none;
    font-size: 10px;
    display: inline-block;
    margin: 2px 0;
    letter-spacing: .2px
}

.at-branding-logo .at-branding-icon {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAMAAAC67D+PAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAAZQTFRF////+GlNUkcc1QAAAB1JREFUeNpiYIQDBjQmAwMmkwEM0JnY1WIxFyDAABGeAFEudiZsAAAAAElFTkSuQmCC")
}

.at-branding-logo .at-branding-icon, .at-branding-logo .at-privacy-icon {
    display: inline-block;
    height: 10px;
    width: 10px;
    margin-left: 4px;
    margin-right: 3px;
    margin-bottom: -1px;
    background-repeat: no-repeat
}

.at-branding-logo .at-privacy-icon {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAKCAMAAABR24SMAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAABhQTFRF8fr9ot/xXcfn2/P5AKva////////AKTWodjhjAAAAAd0Uk5T////////ABpLA0YAAAA6SURBVHjaJMzBDQAwCAJAQaj7b9xifV0kUKJ9ciWxlzWEWI5gMF65KUTv0VKkjVeTerqE/x7+9BVgAEXbAWI8QDcfAAAAAElFTkSuQmCC")
}

.at-branding-logo span {
    text-decoration: none
}

.at-branding-logo .at-branding-addthis, .at-branding-logo .at-branding-powered-by {
    color: #666
}

.at-branding-logo .at-branding-addthis:hover {
    color: #333
}

.at-cv-with-image .at-branding-addthis, .at-cv-with-image .at-branding-addthis:hover {
    color: #fff
}

a.at-branding-logo:visited {
    color: initial
}

.at-branding-info {
    display: inline-block;
    padding: 0 5px;
    color: #666;
    border: 1px solid #666;
    border-radius: 50%;
    font-size: 10px;
    line-height: 9pt;
    opacity: .7;
    transition: all .3s ease;
    text-decoration: none
}

.at-branding-info span {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.at-branding-info:before {
    content: 'i';
    font-family: Times New Roman
}

.at-branding-info:hover {
    color: #0780df;
    border-color: #0780df
}

.fb_hidden {
    position: absolute;
    top: -10000px;
    z-index: 10001
}

.fb_reposition {
    overflow: hidden;
    position: relative
}

.fb_invisible {
    display: none
}

.fb_reset {
    background: none;
    border: 0;
    border-spacing: 0;
    color: #000;
    cursor: auto;
    direction: ltr;
    font-family: "lucida grande", tahoma, verdana, arial, sans-serif;
    font-size: 11px;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-height: 1;
    margin: 0;
    overflow: visible;
    padding: 0;
    text-align: left;
    text-decoration: none;
    text-indent: 0;
    text-shadow: none;
    text-transform: none;
    visibility: visible;
    white-space: normal;
    word-spacing: normal
}

.fb_reset > div {
    overflow: hidden
}

@keyframes fb_transform {
    from {
        opacity: 0;
        transform: scale(.95)
    }
    to {
        opacity: 1;
        transform: scale(1)
    }
}

.fb_animate {
    animation: fb_transform .3s forwards
}

.fb_dialog {
    background: rgba(82, 82, 82, .7);
    position: absolute;
    top: -10000px;
    z-index: 10001
}

.fb_dialog_advanced {
    border-radius: 8px;
    padding: 10px
}

.fb_dialog_content {
    background: #fff;
    color: #373737
}

.fb_dialog_close_icon {
    background: url(https://static.xx.fbcdn.net/rsrc.php/v3/yq/r/IE9JII6Z1Ys.png) no-repeat scroll 0 0 transparent;
    cursor: pointer;
    display: block;
    height: 15px;
    position: absolute;
    right: 18px;
    top: 17px;
    width: 15px
}

.fb_dialog_mobile .fb_dialog_close_icon {
    left: 5px;
    right: auto;
    top: 5px
}

.fb_dialog_padding {
    background-color: transparent;
    position: absolute;
    width: 1px;
    z-index: -1
}

.fb_dialog_close_icon:hover {
    background: url(https://static.xx.fbcdn.net/rsrc.php/v3/yq/r/IE9JII6Z1Ys.png) no-repeat scroll 0 -15px transparent
}

.fb_dialog_close_icon:active {
    background: url(https://static.xx.fbcdn.net/rsrc.php/v3/yq/r/IE9JII6Z1Ys.png) no-repeat scroll 0 -30px transparent
}

.fb_dialog_iframe {
    line-height: 0
}

.fb_dialog_content .dialog_title {
    background: #6d84b4;
    border: 1px solid #365899;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    margin: 0
}

.fb_dialog_content .dialog_title > span {
    background: url(https://static.xx.fbcdn.net/rsrc.php/v3/yd/r/Cou7n-nqK52.gif) no-repeat 5px 50%;
    float: left;
    padding: 5px 0 7px 26px
}

body.fb_hidden {
    height: 100%;
    left: 0;
    margin: 0;
    overflow: visible;
    position: absolute;
    top: -10000px;
    transform: none;
    width: 100%
}

.fb_dialog.fb_dialog_mobile.loading {
    background: url(https://static.xx.fbcdn.net/rsrc.php/v3/ya/r/3rhSv5V8j3o.gif) white no-repeat 50% 50%;
    min-height: 100%;
    min-width: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    z-index: 10001
}

.fb_dialog.fb_dialog_mobile.loading.centered {
    background: none;
    height: auto;
    min-height: initial;
    min-width: initial;
    width: auto
}

.fb_dialog.fb_dialog_mobile.loading.centered #fb_dialog_loader_spinner {
    width: 100%
}

.fb_dialog.fb_dialog_mobile.loading.centered .fb_dialog_content {
    background: none
}

.loading.centered #fb_dialog_loader_close {
    clear: both;
    color: #fff;
    display: block;
    font-size: 18px;
    padding-top: 20px
}

#fb-root #fb_dialog_ipad_overlay {
    background: rgba(0, 0, 0, .4);
    bottom: 0;
    left: 0;
    min-height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 10000
}

#fb-root #fb_dialog_ipad_overlay.hidden {
    display: none
}

.fb_dialog.fb_dialog_mobile.loading iframe {
    visibility: hidden
}

.fb_dialog_mobile .fb_dialog_iframe {
    position: sticky;
    top: 0
}

.fb_dialog_content .dialog_header {
    background: linear-gradient(from(#738aba), to(#2c4987));
    border-bottom: 1px solid;
    border-color: #043b87;
    box-shadow: white 0 1px 1px -1px inset;
    color: #fff;
    font: bold 14px Helvetica, sans-serif;
    text-overflow: ellipsis;
    text-shadow: rgba(0, 30, 84, .296875) 0 -1px 0;
    vertical-align: middle;
    white-space: nowrap
}

.fb_dialog_content .dialog_header table {
    height: 43px;
    width: 100%
}

.fb_dialog_content .dialog_header td.header_left {
    font-size: 12px;
    padding-left: 5px;
    vertical-align: middle;
    width: 60px
}

.fb_dialog_content .dialog_header td.header_right {
    font-size: 12px;
    padding-right: 5px;
    vertical-align: middle;
    width: 60px
}

.fb_dialog_content .touchable_button {
    background: linear-gradient(from(#4267B2), to(#2a4887));
    background-clip: padding-box;
    border: 1px solid #29487d;
    border-radius: 3px;
    display: inline-block;
    line-height: 18px;
    margin-top: 3px;
    max-width: 85px;
    padding: 4px 12px;
    position: relative
}

.fb_dialog_content .dialog_header .touchable_button input {
    background: none;
    border: none;
    color: #fff;
    font: bold 12px Helvetica, sans-serif;
    margin: 2px -12px;
    padding: 2px 6px 3px 6px;
    text-shadow: rgba(0, 30, 84, .296875) 0 -1px 0
}

.fb_dialog_content .dialog_header .header_center {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    line-height: 18px;
    text-align: center;
    vertical-align: middle
}

.fb_dialog_content .dialog_content {
    background: url(https://static.xx.fbcdn.net/rsrc.php/v3/y9/r/jKEcVPZFk-2.gif) no-repeat 50% 50%;
    border: 1px solid #4a4a4a;
    border-bottom: 0;
    border-top: 0;
    height: 150px
}

.fb_dialog_content .dialog_footer {
    background: #f5f6f7;
    border: 1px solid #4a4a4a;
    border-top-color: #ccc;
    height: 40px
}

#fb_dialog_loader_close {
    float: left
}

.fb_dialog.fb_dialog_mobile .fb_dialog_close_button {
    text-shadow: rgba(0, 30, 84, .296875) 0 -1px 0
}

.fb_dialog.fb_dialog_mobile .fb_dialog_close_icon {
    visibility: hidden
}

#fb_dialog_loader_spinner {
    animation: rotateSpinner 1.2s linear infinite;
    background-color: transparent;
    background-image: url(https://static.xx.fbcdn.net/rsrc.php/v3/yD/r/t-wz8gw1xG1.png);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    height: 24px;
    width: 24px
}

@keyframes rotateSpinner {
    0% {
        transform: rotate(0deg)
    }
    100% {
        transform: rotate(360deg)
    }
}

.fb_iframe_widget {
    display: inline-block;
    position: relative
}

.fb_iframe_widget span {
    display: inline-block;
    position: relative;
    text-align: justify
}

.fb_iframe_widget iframe {
    position: absolute
}

.fb_iframe_widget_fluid_desktop, .fb_iframe_widget_fluid_desktop span, .fb_iframe_widget_fluid_desktop iframe {
    max-width: 100%
}

.fb_iframe_widget_fluid_desktop iframe {
    min-width: 220px;
    position: relative
}

.fb_iframe_widget_lift {
    z-index: 1
}

.fb_iframe_widget_fluid {
    display: inline
}

.fb_iframe_widget_fluid span {
    width: 100%
}

.at-share-dock.atss {
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    z-index: 1000200;
    box-shadow: 0 0 1px 1px #e2dfe2
}

.at-share-dock.at-share-dock-zindex-hide {
    z-index: -1 !important
}

.at-share-dock.atss-top {
    bottom: auto;
    top: 0
}

.at-share-dock a {
    width: auto;
    transition: none;
    color: #fff;
    text-decoration: none;
    box-sizing: content-box;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box
}

.at-share-dock a:hover {
    width: auto
}

.at-share-dock .at4-count {
    height: 43px;
    padding: 5px 0 0;
    line-height: 20px;
    background: #fff;
    font-family: Helvetica neue, arial
}

.at-share-dock .at4-count span {
    width: 100%
}

.at-share-dock .at4-count .at4-share-label {
    color: #848484;
    font-size: 10px;
    letter-spacing: 1px
}

.at-share-dock .at4-count .at4-counter {
    top: 2px;
    position: relative;
    display: block;
    color: #222;
    font-size: 22px
}

.at-share-dock.at-shfs-medium .at4-count {
    height: 36px;
    line-height: 1pc;
    padding-top: 4px
}

.at-share-dock.at-shfs-medium .at4-count .at4-counter {
    font-size: 18px
}

.at-share-dock.at-shfs-medium .at-share-btn .at-icon-wrapper, .at-share-dock.at-shfs-medium a .at-icon-wrapper {
    padding: 6px 0
}

.at-share-dock.at-shfs-small .at4-count {
    height: 26px;
    line-height: 1;
    padding-top: 3px
}

.at-share-dock.at-shfs-small .at4-count .at4-share-label {
    font-size: 8px
}

.at-share-dock.at-shfs-small .at4-count .at4-counter {
    font-size: 14px
}

.at-share-dock.at-shfs-small .at-share-btn .at-icon-wrapper, .at-share-dock.at-shfs-small a .at-icon-wrapper {
    padding: 4px 0
}

div.at-share-close-control.ats-dark, div.at-share-open-control-left.ats-dark, div.at-share-open-control-right.ats-dark {
    background: #262b30
}

div.at-share-close-control.ats-light, div.at-share-open-control-left.ats-light, div.at-share-open-control-right.ats-light {
    background: #fff
}

div.at-share-close-control.ats-gray, div.at-share-open-control-left.ats-gray, div.at-share-open-control-right.ats-gray {
    background: #f2f2f2
}

.atss {
    position: fixed;
    top: 20%;
    width: 3pc;
    z-index: 100020;
    background: none
}

.at-share-close-control {
    position: relative;
    width: 3pc;
    overflow: auto
}

.at-share-open-control-left {
    position: fixed;
    top: 20%;
    z-index: 100020;
    left: 0;
    width: 22px
}

.at-share-close-control .at4-arrow.at-left {
    float: right
}

.atss-left {
    left: 0;
    float: left;
    right: auto
}

.atss-right {
    left: auto;
    float: right;
    right: 0
}

.atss-right.at-share-close-control .at4-arrow.at-right {
    position: relative;
    right: 0;
    overflow: auto
}

.atss-right.at-share-close-control .at4-arrow {
    float: left
}

.at-share-open-control-right {
    position: fixed;
    top: 20%;
    z-index: 100020;
    right: 0;
    width: 22px;
    float: right
}

.atss-right .at-share-close-control .at4-arrow {
    float: left
}

.atss.atss-right a {
    float: right
}

.atss.atss-right .at4-share-title {
    float: right;
    overflow: hidden
}

.atss .at-share-btn, .atss a {
    position: relative;
    display: block;
    width: 3pc;
    margin: 0;
    outline-offset: -1px;
    text-align: center;
    float: left;
    transition: width .15s ease-in-out;
    overflow: hidden;
    background: #e8e8e8;
    z-index: 100030;
    cursor: pointer
}

.at-share-btn::-moz-focus-inner {
    border: 0;
    padding: 0
}

.atss-right .at-share-btn {
    float: right
}

.atss .at-share-btn {
    border: 0;
    padding: 0
}

.atss .at-share-btn:focus, .atss .at-share-btn:hover, .atss a:focus, .atss a:hover {
    width: 4pc
}

.atss .at-share-btn .at-icon-wrapper, .atss a .at-icon-wrapper {
    display: block;
    padding: 8px 0
}

.atss .at-share-btn:last-child, .atss a:last-child {
    border: none
}

.atss .at-share-btn span .at-icon, .atss a span .at-icon {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    width: 2pc;
    height: 2pc;
    line-height: 2pc;
    border: none;
    padding: 0;
    margin: 0 auto;
    overflow: hidden;
    cursor: pointer;
    cursor: hand
}

.at4-share .at-custom-sidebar-counter {
    font-family: Helvetica neue, arial;
    vertical-align: top;
    margin-right: 4px;
    display: inline-block;
    text-align: center
}

.at4-share .at-custom-sidebar-count {
    font-size: 17px;
    line-height: 1.25em;
    color: #222
}

.at4-share .at-custom-sidebar-text {
    font-size: 9px;
    line-height: 1.25em;
    color: #888;
    letter-spacing: 1px
}

.at4-share .at4-share-count-container {
    position: absolute;
    left: 0;
    right: auto;
    top: auto;
    bottom: 0;
    width: 100%;
    color: #fff;
    background: inherit
}

.at4-share .at4-share-count, .at4-share .at4-share-count-container {
    line-height: 1pc;
    font-size: 10px
}

.at4-share .at4-share-count {
    text-indent: 0;
    font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
    font-weight: 200;
    width: 100%;
    height: 1pc
}

.at4-share .at4-share-count-anchor {
    padding-bottom: 8px;
    text-decoration: none;
    transition: padding .15s ease-in-out .15s, width .15s ease-in-out
}

#at4-drawer-outer-container {
    top: 0;
    width: 20pc;
    position: fixed
}

#at4-drawer-outer-container.at4-drawer-inline {
    position: relative
}

#at4-drawer-outer-container.at4-drawer-inline.at4-drawer-right {
    float: right;
    right: 0;
    left: auto
}

#at4-drawer-outer-container.at4-drawer-inline.at4-drawer-left {
    float: left;
    left: 0;
    right: auto
}

#at4-drawer-outer-container.at4-drawer-shown, #at4-drawer-outer-container.at4-drawer-shown * {
    z-index: 999999
}

#at4-drawer-outer-container, #at4-drawer-outer-container .at4-drawer-outer, #at-drawer {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden
}

.at4-drawer-push-content-right-back {
    position: relative;
    right: 0
}

.at4-drawer-push-content-right {
    position: relative;
    left: 20pc !important
}

.at4-drawer-push-content-left-back {
    position: relative;
    left: 0
}

.at4-drawer-push-content-left {
    position: relative;
    right: 20pc !important
}

#at4-drawer-outer-container.at4-drawer-right {
    left: auto;
    right: -20pc
}

#at4-drawer-outer-container.at4-drawer-left {
    right: auto;
    left: -20pc
}

#at4-drawer-outer-container.at4-drawer-shown.at4-drawer-right {
    left: auto;
    right: 0
}

#at4-drawer-outer-container.at4-drawer-shown.at4-drawer-left {
    right: auto;
    left: 0
}

#at-drawer {
    top: 0;
    z-index: 9999999;
    height: 100%;
    animation-duration: .4s
}

#at-drawer.drawer-push.at-right {
    right: -20pc
}

#at-drawer.drawer-push.at-left {
    left: -20pc
}

#at-drawer .at-recommended-label {
    padding: 0 0 0 20px;
    color: #999;
    line-height: 3pc;
    font-size: 18px;
    font-weight: 300;
    cursor: default
}

#at-drawer-arrow {
    width: 30px;
    height: 5pc
}

#at-drawer-arrow.ats-dark {
    background: #262b30
}

#at-drawer-arrow.ats-gray {
    background: #f2f2f2
}

#at-drawer-open-arrow {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAABcCAYAAAC1OT8uAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjk3ODNCQjdERUQ3QjExRTM5NjFGRUZBODc3MTIwMTNCIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjk3ODNCQjdFRUQ3QjExRTM5NjFGRUZBODc3MTIwMTNCIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6OTc4M0JCN0JFRDdCMTFFMzk2MUZFRkE4NzcxMjAxM0IiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6OTc4M0JCN0NFRDdCMTFFMzk2MUZFRkE4NzcxMjAxM0IiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7kstzCAAAB4ElEQVR42uyWv0oDQRDGb9dYimgVjliID2Ca9AGfwtZob2Grja1PIFj7EhGCYK99VPBPOkVMp8X5rc6FeN7dfjOksMjAxwXZ3667OzvfLKRr682l5ZV9aDh+fxsnRHhoDzqGLjFBi4XOoFtoAxowoB893o/w7WpAl/+QgQMBwwRdTPhUC2lAV/wDA7qy5WOgq9psHejqTqkKdLE7KYCv0JZjMgBgB58raBG6mP1K6j2pT099T+qMUOeeOss1wDcEIA1PnQXy576rAUI0oFMoC7VCnn40Gs8Pd4lAiXNUKmJ0lh1mPzGEWiyUCqAGW3Pwv4IvUJsFO9CHgP3Zr6Te0xwgAf3LxaAjS241pbikCRkOg+nSJdV4p8HOPl3vvRYI5dtrgVDvvcWovcWovcWovcWovcWovcWovQChWNywNpqvdAKtQp/QNmPUIQ6kwwqt2Xmsxf6GMPM1Pptsbz45CPmXqKb+15Gz4J/LZcDSNIqBlQlbB0afe1mmUDWiCNKFZRq0VKMeXY1CTDq2sJLWsCmoaBBRqNRR6qBKC6qCaj2rDIqaXBGiXHEaom00h1S+K3fVlr6HNuqgvgCh0+owt21bybQn8+mZ78mcEebcM2e5+T2ZX24ZqCph0qn1vgQYAJ/KDpLQr2tPAAAAAElFTkSuQmCC);
    background-repeat: no-repeat;
    width: 13px;
    height: 23px;
    margin: 28px 0 0 8px
}

.at-left #at-drawer-open-arrow {
    background-position: 0 -46px
}

.ats-dark #at-drawer-open-arrow {
    background-position: 0 -23px
}

.ats-dark.at-left #at-drawer-open-arrow {
    background-position: 0 -69px
}

#at-drawer-arrow.at4-drawer-modern-browsers {
    position: fixed;
    top: 40%;
    background-repeat: no-repeat;
    background-position: 0 0 !important;
    z-index: 9999999
}

.at4-drawer-inline #at-drawer-arrow {
    position: absolute
}

#at-drawer-arrow.at4-drawer-modern-browsers.at-right {
    right: 0
}

#at-drawer-arrow.at4-drawer-modern-browsers.at-left {
    left: 0
}

.at4-drawer-push-animation-left {
    transition: left .4s ease-in-out .15s
}

.at4-drawer-push-animation-right {
    transition: right .4s ease-in-out .15s
}

#at-drawer.drawer-push.at4-drawer-push-animation-right {
    right: 0
}

#at-drawer.drawer-push.at4-drawer-push-animation-right-back {
    right: -20pc !important
}

#at-drawer.drawer-push.at4-drawer-push-animation-left {
    left: 0
}

#at-drawer.drawer-push.at4-drawer-push-animation-left-back {
    left: -20pc !important
}

#at-drawer .at4-closebutton.drawer-close {
    content: 'X';
    color: #999;
    display: block;
    position: absolute;
    margin: 0;
    top: 0;
    right: 0;
    width: 3pc;
    height: 45px;
    line-height: 45px;
    overflow: hidden;
    opacity: .5
}

#at-drawer.ats-dark .at4-closebutton.drawer-close {
    color: #fff
}

#at-drawer .at4-closebutton.drawer-close:hover {
    opacity: 1
}

#at-drawer.ats-dark.at4-recommended .at4-logo-container a {
    color: #666
}

#at-drawer.at4-recommended .at4-recommended-vertical {
    padding: 0
}

#at-drawer.at4-recommended .at4-recommended-item .sponsored-label {
    margin: 2px 0 0 21px;
    color: #ddd
}

#at-drawer.at4-recommended .at4-recommended-vertical .at4-recommended-item {
    position: relative;
    padding: 0;
    width: 20pc;
    height: 180px;
    margin: 0
}

#at-drawer.at4-recommended .at4-recommended-vertical .at4-recommended-item .at4-recommended-item-img a:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .65);
    z-index: 1000000;
    transition: all .2s ease-in-out
}

#at-drawer.at4-recommended .at4-recommended-vertical .at4-recommended-item.at-hover .at4-recommended-item-img a:after {
    background: rgba(0, 0, 0, .8)
}

#at-drawer .at4-recommended-vertical .at4-recommended-item .at4-recommended-item-img, #at-drawer .at4-recommended-vertical .at4-recommended-item .at4-recommended-item-img a, #at-drawer .at4-recommended-vertical .at4-recommended-item .at4-recommended-item-img img {
    width: 20pc;
    height: 180px;
    float: none
}

#at-drawer .at4-recommended-vertical .at4-recommended-item .at4-recommended-item-caption {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 70px
}

#at-drawer .at4-recommended-vertical .at4-recommended-item .at4-recommended-item-caption .at-h4 {
    color: #fff;
    position: absolute;
    height: 52px;
    top: 0;
    left: 20px;
    right: 20px;
    margin: 0;
    padding: 0;
    line-height: 25px;
    font-size: 20px;
    font-weight: 600;
    z-index: 1000001;
    text-decoration: none;
    text-transform: none
}

#at-drawer.at4-recommended .at4-recommended-vertical .at4-recommended-item .at4-recommended-item-caption .at-h4 a:hover {
    text-decoration: none
}

#at-drawer.at4-recommended .at4-recommended-vertical .at4-recommended-item .at4-recommended-item-caption .at-h4 a:link {
    color: #fff
}

#at-drawer.at4-recommended .at4-recommended-vertical .at4-recommended-item .at4-recommended-item-caption small {
    position: absolute;
    top: auto;
    bottom: 10px;
    left: 20px;
    width: auto;
    color: #ccc
}

#at-drawer.at4-recommended .at4-logo-container {
    margin-left: 20px
}

#at-drawer.ats-dark.at4-recommended .at4-logo-container a:hover {
    color: #fff
}

#at-drawer.at4-recommended .at-logo {
    margin: 0
}

.at4-follow.at-mobile {
    display: none !important
}

.at4-follow {
    position: fixed;
    top: 0;
    right: 0;
    font-weight: 400;
    color: #666;
    cursor: default;
    z-index: 10001
}

.at4-follow .at4-follow-inner {
    position: relative;
    padding: 10px 24px 10px 15px
}

.at4-follow-inner, .at-follow-open-control {
    border: 0 solid #c5c5c5;
    border-width: 1px 0 1px 1px;
    margin-top: -1px
}

.at4-follow .at4-follow-container {
    margin-left: 9pt
}

.at4-follow.at4-follow-24 .at4-follow-container {
    height: 24px;
    line-height: 23px;
    font-size: 13px
}

.at4-follow.at4-follow-32 .at4-follow-container {
    width: 15pc;
    height: 2pc;
    line-height: 2pc;
    font-size: 14px
}

.at4-follow .at4-follow-container .at-follow-label {
    display: inline-block;
    height: 24px;
    line-height: 24px;
    margin-right: 10px;
    padding: 0;
    cursor: default;
    float: left
}

.at4-follow .at4-follow-container .at-icon-wrapper {
    height: 24px;
    width: 24px
}

.at4-follow.ats-transparent .at4-follow-inner, .at-follow-open-control.ats-transparent {
    border-color: transparent
}

.at4-follow.ats-dark .at4-follow-inner, .at-follow-open-control.ats-dark {
    background: #262b30;
    border-color: #000;
    color: #fff
}

.at4-follow.ats-dark .at-follow-close-control {
    background-color: #262b30
}

.at4-follow.ats-light .at4-follow-inner {
    background: #fff;
    border-color: #c5c5c5
}

.at4-follow.ats-gray .at4-follow-inner, .at-follow-open-control.ats-gray {
    background: #f2f2f2;
    border-color: #c5c5c5
}

.at4-follow.ats-light .at4-follow-close-control, .at-follow-open-control.ats-light {
    background: #e5e5e5
}

.at4-follow .at4-follow-inner .at4-follow-close-control {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 20px;
    cursor: pointer;
    display: none
}

.at4-follow .at4-follow-inner .at4-follow-close-control div {
    display: block;
    line-height: 20px;
    text-indent: -9999em;
    margin-top: calc(50% + 1px);
    overflow: hidden
}

.at-follow-open-control div.at4-arrow.at-left {
    background-position: 0 -2px
}

.at-follow-open-control {
    position: fixed;
    height: 35px;
    top: 0;
    right: 0;
    padding-top: 10px;
    z-index: 10002
}

.at-follow-btn {
    margin: 0 5px 5px 0;
    padding: 0;
    outline-offset: -1px;
    display: inline-block;
    box-sizing: content-box;
    transition: all .2s ease-in-out
}

.at-follow-btn:focus, .at-follow-btn:hover {
    transform: translateY(-4px)
}

.at4-follow-24 .at-follow-btn {
    height: 25px;
    line-height: 0;
    width: 25px
}

.at-follow-tbx-element .at300b, .at-follow-tbx-element .at300m {
    display: inline-block;
    width: auto;
    padding: 0;
    margin: 0 2px 5px;
    outline-offset: -1px;
    transition: all .2s ease-in-out
}

.at-follow-tbx-element .at300b:focus, .at-follow-tbx-element .at300b:hover, .at-follow-tbx-element .at300m:focus, .at-follow-tbx-element .at300m:hover {
    transform: translateY(-4px)
}

.at-follow-tbx-element .addthis_vertical_style .at300b, .at-follow-tbx-element .addthis_vertical_style .at300m {
    display: block
}

.at-follow-tbx-element .addthis_vertical_style .at300b .addthis_follow_label, .at-follow-tbx-element .addthis_vertical_style .at300b .at-icon-wrapper, .at-follow-tbx-element .addthis_vertical_style .at300m .addthis_follow_label, .at-follow-tbx-element .addthis_vertical_style .at300m .at-icon-wrapper {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px
}

.at-follow-tbx-element .addthis_vertical_style .at300b:focus, .at-follow-tbx-element .addthis_vertical_style .at300b:hover, .at-follow-tbx-element .addthis_vertical_style .at300m:focus, .at-follow-tbx-element .addthis_vertical_style .at300m:hover {
    transform: none
}

.at4-jumboshare .at-share-btn {
    display: inline-block;
    margin-right: 13px;
    margin-top: 13px
}

.at4-jumboshare .at-share-btn .at-icon {
    float: left
}

.at4-jumboshare .at-share-btn .at300bs {
    display: inline-block;
    float: left;
    cursor: pointer
}

.at4-jumboshare .at4-mobile .at-share-btn .at-icon, .at4-jumboshare .at4-mobile .at-share-btn .at-icon-wrapper {
    margin: 0;
    padding: 0
}

.at4-jumboshare .at4-mobile .at-share-btn {
    padding: 0
}

.at4-jumboshare .at4-mobile .at-share-btn .at-label {
    display: none
}

.at4-jumboshare .at4-count {
    font-size: 60px;
    line-height: 60px;
    font-family: Helvetica neue, arial;
    font-weight: 700
}

.at4-jumboshare .at4-count-container {
    display: table-cell;
    text-align: center;
    min-width: 200px;
    vertical-align: middle;
    border-right: 1px solid #ccc;
    padding-right: 20px
}

.at4-jumboshare .at4-share-container {
    display: table-cell;
    vertical-align: middle;
    padding-left: 20px
}

.at4-jumboshare .at4-share-container.at-share-tbx-element {
    padding-top: 0
}

.at4-jumboshare .at4-title {
    position: relative;
    font-size: 18px;
    line-height: 18px;
    bottom: 2px
}

.at4-jumboshare .at4-spacer {
    height: 1px;
    display: block;
    visibility: hidden;
    opacity: 0
}

.at4-jumboshare .at-share-btn {
    display: inline-block;
    margin: 0 2px;
    line-height: 0;
    padding: 0;
    overflow: hidden;
    text-decoration: none;
    text-transform: none;
    color: #fff;
    cursor: pointer;
    transition: all .2s ease-in-out;
    border: 0;
    background-color: transparent
}

.at4-jumboshare .at-share-btn:focus, .at4-jumboshare .at-share-btn:hover {
    transform: translateY(-4px);
    color: #fff;
    text-decoration: none
}

.at4-jumboshare .at-label {
    font-family: helvetica neue, helvetica, arial, sans-serif;
    font-size: 9pt;
    padding: 0 15px 0 0;
    margin: 0;
    height: 2pc;
    line-height: 2pc;
    background: none
}

.at4-jumboshare .at-share-btn:hover, .at4-jumboshare .at-share-btn:link {
    text-decoration: none
}

.at4-jumboshare .at-share-btn::-moz-focus-inner {
    border: 0;
    padding: 0
}

.at4-jumboshare.at-mobile .at-label {
    display: none
}

.at4-recommendedbox-outer-container {
    display: inline
}

.at4-recommended-outer {
    position: static
}

.at4-recommended {
    top: 20%;
    margin: 0;
    text-align: center;
    font-weight: 400;
    font-size: 13px;
    line-height: 17px;
    color: #666
}

.at4-recommended.at-inline .at4-recommended-horizontal {
    text-align: left
}

.at4-recommended-recommendedbox {
    padding: 0;
    z-index: inherit
}

.at4-recommended-recommended {
    padding: 40px 0
}

.at4-recommended-horizontal {
    max-height: 340px
}

.at4-recommended.at-medium .at4-recommended-horizontal {
    max-height: 15pc
}

.at4-recommended.at4-minimal.at-medium .at4-recommended-horizontal {
    padding-top: 10px;
    max-height: 230px
}

.at4-recommended-text-only .at4-recommended-horizontal {
    max-height: 130px
}

.at4-recommended-horizontal {
    padding-top: 5px;
    overflow-y: hidden
}

.at4-minimal {
    background: none;
    color: #000;
    border: none !important;
    box-shadow: none !important
}

@media screen and (max-width: 900px) {
    .at4-recommended-horizontal .at4-recommended-item, .at4-recommended-horizontal .at4-recommended-item .at4-recommended-item-img {
        width: 15pc
    }
}

.at4-recommended.at4-minimal .at4-recommended-horizontal .at4-recommended-item .at4-recommended-item-caption {
    padding: 0 0 10px
}

.at4-recommended.at4-minimal .at4-recommended-horizontal .at4-recommended-item-caption {
    padding: 20px 0 0 !important
}

.addthis-smartlayers .at4-recommended .at-h3.at-recommended-label {
    margin: 0;
    padding: 0;
    font-weight: 300;
    font-size: 18px;
    line-height: 24px;
    color: #464646;
    width: 100%;
    display: inline-block;
    zoom: 1
}

.addthis-smartlayers .at4-recommended.at-inline .at-h3.at-recommended-label {
    text-align: left
}

#at4-thankyou .addthis-smartlayers .at4-recommended.at-inline .at-h3.at-recommended-label {
    text-align: center
}

.at4-recommended .at4-recommended-item {
    display: inline-block;
    zoom: 1;
    position: relative;
    background: #fff;
    border: 1px solid #c5c5c5;
    width: 200px;
    margin: 10px
}

.addthis_recommended_horizontal .at4-recommended-item {
    border: none
}

.at4-recommended .at4-recommended-item .sponsored-label {
    color: #666;
    font-size: 9px;
    position: absolute;
    top: -20px
}

.at4-recommended .at4-recommended-item-img .at-tli, .at4-recommended .at4-recommended-item-img a {
    position: absolute;
    left: 0
}

.at4-recommended.at-inline .at4-recommended-horizontal .at4-recommended-item {
    margin: 10px 20px 0 0
}

.at4-recommended.at-medium .at4-recommended-horizontal .at4-recommended-item {
    margin: 10px 10px 0 0
}

.at4-recommended.at-medium .at4-recommended-item {
    width: 140px;
    overflow: hidden
}

.at4-recommended .at4-recommended-item .at4-recommended-item-img {
    position: relative;
    text-align: center;
    width: 100%;
    height: 200px;
    line-height: 0;
    overflow: hidden
}

.at4-recommended .at4-recommended-item .at4-recommended-item-img a {
    display: block;
    width: 100%;
    height: 200px
}

.at4-recommended.at-medium .at4-recommended-item .at4-recommended-item-img, .at4-recommended.at-medium .at4-recommended-item .at4-recommended-item-img a {
    height: 140px
}

.at4-recommended .at4-recommended-item .at4-recommended-item-img img {
    position: absolute;
    top: 0;
    left: 0;
    min-height: 0;
    min-width: 0;
    max-height: none;
    max-width: none;
    margin: 0;
    padding: 0
}

.at4-recommended .at4-recommended-item .at4-recommended-item-caption {
    height: 74px;
    overflow: hidden;
    padding: 20px;
    text-align: left;
    -ms-box-sizing: content-box;
    -o-box-sizing: content-box;
    box-sizing: content-box
}

.at4-recommended.at-medium .at4-recommended-item .at4-recommended-item-caption {
    height: 50px;
    padding: 15px
}

.at4-recommended .at4-recommended-item .at4-recommended-item-caption .at-h4 {
    height: 54px;
    margin: 0 0 5px;
    padding: 0;
    overflow: hidden;
    word-wrap: break-word;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    text-align: left
}

.at4-recommended.at-medium .at4-recommended-item .at4-recommended-item-caption .at-h4 {
    font-size: 9pt;
    line-height: 1pc;
    height: 33px
}

.at4-recommended .at4-recommended-item:hover .at4-recommended-item-caption .at-h4 {
    text-decoration: underline
}

.at4-recommended a:link, .at4-recommended a:visited {
    text-decoration: none;
    color: #464646
}

.at4-recommended .at4-recommended-item .at4-recommended-item-caption .at-h4 a:hover {
    text-decoration: underline;
    color: #000
}

.at4-recommended .at4-recommended-item .at4-recommended-item-caption small {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 11px;
    color: #666
}

.at4-recommended.at-medium .at4-recommended-item .at4-recommended-item-caption small {
    font-size: 9px
}

.at4-recommended .at4-recommended-vertical {
    padding: 15px 0 0
}

.at4-recommended .at4-recommended-vertical .at4-recommended-item {
    display: block;
    width: auto;
    max-width: 100%;
    height: 60px;
    border: none;
    margin: 0 0 15px;
    box-shadow: none;
    background: none
}

.at4-recommended-vertical .at4-recommended-item .at4-recommended-item-img, .at4-recommended-vertical .at4-recommended-item .at4-recommended-item-img img {
    width: 60px;
    height: 60px;
    float: left
}

.at4-recommended-vertical .at4-recommended-item .at4-recommended-item-caption {
    border-top: none;
    margin: 0;
    height: 60px;
    padding: 3px 5px
}

.at4-recommended .at4-recommended-vertical .at4-recommended-item .at4-recommended-item-caption .at-h4 {
    height: 38px;
    margin: 0
}

.at4-recommended .at4-recommended-vertical .at4-recommended-item .at4-recommended-item-caption small {
    position: absolute;
    bottom: 0
}

.at4-recommended .at-recommended-label.at-vertical {
    text-align: left
}

.at4-no-image-light-recommended, .at4-no-image-minimal-recommended {
    background-color: #f2f2f2 !important
}

.at4-no-image-gray-recommended {
    background-color: #e6e6e5 !important
}

.at4-no-image-dark-recommended {
    background-color: #4e555e !important
}

.at4-recommended .at4-recommended-item-placeholder-img {
    background-repeat: no-repeat !important;
    background-position: center !important;
    width: 100% !important;
    height: 100% !important
}

.at4-recommended-horizontal .at4-no-image-dark-recommended .at4-recommended-item-placeholder-img {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACIAAAAfCAYAAACCox+xAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjlFNUUyQTg3MTI0RDExRTM4NzAwREJDRjlCQzAyMUVFIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjlFNUUyQTg4MTI0RDExRTM4NzAwREJDRjlCQzAyMUVFIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6OUU1RTJBODUxMjREMTFFMzg3MDBEQkNGOUJDMDIxRUUiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6OUU1RTJBODYxMjREMTFFMzg3MDBEQkNGOUJDMDIxRUUiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6oCfPiAAABfUlEQVR42uyWTU/DMAyGm3bdBxp062hHe+PC//9HCIkDYpNAO7CPAuWN5Eohyhpno2GHWqq8pO78xHHsiLquH4L/l6cwuBAZaOPKs//YBFIJIR59UiAt7huYi90aE/UQakTDLaL26RUEAAJqiefm93T9Bpj1X4O0bY0OIUXCpYBJvYDAUWyAUCWliHGTcnpqRMaM72ImRAJVknYG+eb4YEDIBeU0zGnsBLK1ODogYSsLhDwIJeVVk18lzfNA4ERGZNXi59UCIQhiYDilpSm/jp4awLxDvWhlf4/nGe8+LLuSt+SZul28ggaHG6gNVhDR+IuRFzOoxGKWwG7vVFm5AAQxgcqYpzrjFjR9zwPH5LSuT7XlNr2MQm5LzqjLpncNNaM+s8M27Y60g3FwhoSMzrtUQllgLtRs5pZ2cB4IhbvQbGRZv1NsrhyS8+SI5Mo9RJWpjAI1xqKL+0iEP180vy214JbeR12AyOgsHI7e0NfFyKv0ID1ID+IqPwIMAOeljGQOryBmAAAAAElFTkSuQmCC) !important
}

.at4-recommended-vertical .at4-no-image-dark-recommended .at4-recommended-item-placeholder-img {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAOCAYAAADwikbvAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjAzREMyNTM2MTI0RjExRTM4NzAwREJDRjlCQzAyMUVFIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjAzREMyNTM3MTI0RjExRTM4NzAwREJDRjlCQzAyMUVFIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MDNEQzI1MzQxMjRGMTFFMzg3MDBEQkNGOUJDMDIxRUUiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MDNEQzI1MzUxMjRGMTFFMzg3MDBEQkNGOUJDMDIxRUUiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5GfbtkAAAAxklEQVR42qRSTQvCMAxduk53mEOHKFPP/v8/5cGTiIibivVFUomlG7gFHvloXpKmJefcPhkmNyvGEWj+IOZA6ckPImoxxVwOLvCvXUzkpayNCpRQK64IbOBnAYGAXMeMslNlU+CzrIEdCkxi5DPAoz6BE8ZuVNdKJuL8rS9sv62IXlCHyP0KqKUKZXK9uwkSLVArfwpVR3b225kXwovibcP+jC4jUtfWPZmfqJJnYlkAM128j1z0nHWKSUbIKDL/msHktwADAPptQo+vkZNLAAAAAElFTkSuQmCC) !important
}

.at4-recommended-horizontal .at4-no-image-gray-recommended .at4-recommended-item-placeholder-img, .at4-recommended-horizontal .at4-no-image-light-recommended .at4-recommended-item-placeholder-img, .at4-recommended-horizontal .at4-no-image-minimal-recommended .at4-recommended-item-placeholder-img {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACIAAAAfCAYAAACCox+xAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjAzREMyNTMyMTI0RjExRTM4NzAwREJDRjlCQzAyMUVFIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjAzREMyNTMzMTI0RjExRTM4NzAwREJDRjlCQzAyMUVFIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6OUU1RTJBODkxMjREMTFFMzg3MDBEQkNGOUJDMDIxRUUiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6OUU1RTJBOEExMjREMTFFMzg3MDBEQkNGOUJDMDIxRUUiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6dfDQvAAABg0lEQVR42uyWS0vDQBDH82jaKNW0qUltbl68e/Di98eLBz+CCB5EBaWIpUat/4UJLMuame1j7SEDYbqbKfPLvHbDi8ur8+D/5T4K9kR6xrr27D+xgdS3N9d3PilQFmcNzN6mxkbdhxrQcoGofXkFAUAINcVzrG2vsP8KmJdtg7SlxoRQouBywOReQOAosUDoklPEpEU5XDciqeB/iRAig6pIO4P8CHysBBDqg0palrR2Alkwjj5RsDUDoRqhorpq6quifRkInKiIPLf4eWIgQoLoWbq0stXXn10DmDeoR2PsL/E84N0Hk5Wypc70dMkGGhzOoeb4gpjW34K6GEFljFkGu6XTZJUCEMQBVCHs6kI60MycB47FyUmo20oPvYJCzhVnvIsR3zg5ghoRTNpyHKTBBhIJTt6pFsoZ9iLDZswcB5uBULhnho0a66eazaFDca59Hym1e4guQ4rCO4Fu/T4Sw8Gk+c3MghN6H+8CRKVg4tB6fV8XI6/SgXQgHYir/AowAMU5TskhKVUNAAAAAElFTkSuQmCC) !important
}

.at4-recommended-vertical .at4-no-image-gray-recommended .at4-recommended-item-placeholder-img, .at4-recommended-vertical .at4-no-image-light-recommended .at4-recommended-item-placeholder-img, .at4-recommended-vertical .at4-no-image-minimal-recommended .at4-recommended-item-placeholder-img {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAOCAYAAADwikbvAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjAzREMyNTNBMTI0RjExRTM4NzAwREJDRjlCQzAyMUVFIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjAzREMyNTNCMTI0RjExRTM4NzAwREJDRjlCQzAyMUVFIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MDNEQzI1MzgxMjRGMTFFMzg3MDBEQkNGOUJDMDIxRUUiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MDNEQzI1MzkxMjRGMTFFMzg3MDBEQkNGOUJDMDIxRUUiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz65Fr9cAAAA0ElEQVR42qRRuQrCQBDd3SSaIgYNosSrtLew8f+xsfAnYmEVRMR4YHwjExjCbsBk4DHHzptjR2+2u7VqJ3efjTNQ/EEMgbgiv46H/QNTDPnhCv/mYiLPI21EIIaaUEVgBj+oETQQypgRtidsXfNJpsACBXo28gWgUd9AjrEL0TXhiSh/XhWudlZI/kCdLPtFUGMRCni9p6kl+kAq/D5UavmzX2fNd87obsCSfztnrOR0rjvTiRImkoyAQQNRyZ2jhjenGNVBOpF1WZatyV8BBgBJ+irgS/KHdAAAAABJRU5ErkJggg==) !important
}

#at-drawer.ats-dark, .at4-recommended.ats-dark .at4-recommended-horizontal .at4-recommended-item-caption, .at4-recommended.ats-dark .at4-recommended-vertical .at4-recommended-item-caption {
    background: #262b30
}

#at-drawer.ats-gray, .at4-recommended.ats-gray .at4-recommended-horizontal .at4-recommended-item-caption {
    background: #f2f2f2
}

#at-drawer.ats-light, .at4-recommended.ats-light .at4-recommended-horizontal .at4-recommended-item-caption {
    background: #fff
}

.at4-recommended.ats-dark .at4-recommended-vertical .at4-recommended-item {
    background: none
}

.at4-recommended.ats-dark .at4-recommended-item .at4-recommended-item-caption a:hover, .at4-recommended.ats-dark .at4-recommended-item .at4-recommended-item-caption a:link, .at4-recommended.ats-dark .at4-recommended-item .at4-recommended-item-caption a:visited, .at4-recommended.ats-dark .at4-recommended-item .at4-recommended-item-caption small, .at4-recommended.ats-dark .at4-recommended-item-caption, .at4-recommended.ats-dark .at-logo a:hover, .at4-recommended.ats-dark .at-recommended-label.at-vertical {
    color: #fff
}

.at4-recommended-vertical-logo {
    padding-top: 0;
    text-align: left
}

.at4-recommended-vertical-logo .at4-logo-container {
    line-height: 10px
}

.at4-recommended-horizontal-logo {
    text-align: center
}

.at4-recommended.at-inline .at4-recommended-horizontal-logo {
    text-align: left
}

#at4-thankyou .at4-recommended.at-inline .at4-recommended-horizontal {
    text-align: center
}

.at4-recommended .at-logo {
    margin: 10px 0 0;
    padding: 0;
    height: 25px;
    overflow: auto;
    -ms-box-sizing: content-box;
    -o-box-sizing: content-box;
    box-sizing: content-box
}

.at4-recommended.at-inline .at4-recommended-horizontal .at-logo {
    text-align: left
}

.at4-recommended .at4-logo-container a.at-sponsored-link {
    color: #666
}

.at4-recommended-class .at4-logo-container a:hover, .at4-recommendedbox-outer-container .at4-recommended-recommendedbox .at4-logo-container a:hover {
    color: #000
}

.at-recommendedjumbo-outer-container {
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    color: #000
}

.at-recommendedjumbo-footer {
    position: relative;
    width: 100%;
    height: 510px;
    overflow: hidden;
    transition: all .3s ease-in-out
}

.at-mobile .at-recommendedjumbo-footer {
    height: 250px
}

.at-recommendedjumbo-footer #bg-link:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .75)
}

.at-recommendedjumbo-footer:hover #bg-link:after {
    background: rgba(0, 0, 0, .85)
}

.at-recommendedjumbo-footer *, .at-recommendedjumbo-footer :after, .at-recommendedjumbo-footer :before {
    box-sizing: border-box
}

.at-recommendedjumbo-footer:hover #at-recommendedjumbo-footer-bg {
    animation: atRecommendedJumboAnimatedBackground 1s ease-in-out 1;
    animation-fill-mode: forwards
}

.at-recommendedjumbo-footer #at-recommendedjumbo-top-holder {
    position: absolute;
    top: 0;
    padding: 0 40px;
    width: 100%
}

.at-mobile .at-recommendedjumbo-footer #at-recommendedjumbo-top-holder {
    padding: 0 20px
}

.at-recommendedjumbo-footer .at-recommendedjumbo-footer-inner {
    position: relative;
    text-align: center;
    font-family: helvetica, arial, sans-serif;
    z-index: 2;
    width: 100%
}

.at-recommendedjumbo-footer #at-recommendedjumbo-label-holder {
    margin: 40px 0 0;
    max-height: 30px
}

.at-mobile .at-recommendedjumbo-footer #at-recommendedjumbo-label-holder {
    margin: 20px 0 0;
    max-height: 20px
}

.at-recommendedjumbo-footer #at-recommendedjumbo-label {
    font-weight: 300;
    font-size: 24px;
    line-height: 24px;
    color: #fff;
    margin: 0
}

.at-mobile .at-recommendedjumbo-footer #at-recommendedjumbo-label {
    font-weight: 150;
    font-size: 14px;
    line-height: 14px
}

.at-recommendedjumbo-footer #at-recommendedjumbo-title-holder {
    margin: 20px 0 0;
    min-height: 3pc;
    max-height: 78pt
}

.at-mobile .at-recommendedjumbo-footer #at-recommendedjumbo-title-holder {
    margin: 10px 0 0;
    min-height: 24px;
    max-height: 54px
}

.at-recommendedjumbo-footer #at-recommendedjumbo-content-title {
    font-size: 3pc;
    line-height: 52px;
    font-weight: 700;
    margin: 0
}

.at-mobile .at-recommendedjumbo-footer #at-recommendedjumbo-content-title {
    font-size: 24px;
    line-height: 27px
}

.at-recommendedjumbo-footer a {
    text-decoration: none;
    color: #fff
}

.at-recommendedjumbo-footer a:visited {
    color: #fff
}

.at-recommendedjumbo-footer small {
    margin: 20px 0 0;
    display: inline-block;
    height: 2pc;
    line-height: 2pc;
    font-size: 14px;
    color: #ccc;
    cursor: default
}

.at-mobile .at-recommendedjumbo-footer small {
    margin: 10px 0 0;
    height: 14px;
    line-height: 14px;
    font-size: 9pt
}

.at-recommendedjumbo-footer .at-logo-container {
    position: absolute;
    bottom: 20px;
    margin: auto;
    left: 0;
    right: 0
}

.at-mobile .at-recommendedjumbo-footer .at-logo-container {
    bottom: 10px
}

.at-recommendedjumbo-footer a.at-sponsored-link {
    color: #ccc
}

.at-recommendedjumbo-footer div #at-recommendedjumbo-logo-link {
    padding: 2px 0 0 11px;
    text-decoration: none;
    line-height: 20px;
    font-family: helvetica, arial, sans-serif;
    font-size: 9px;
    color: #ccc
}

@keyframes atRecommendedJumboAnimatedBackground {
    0% {
        transform: scale(1, 1)
    }
    to {
        transform: scale(1.1, 1.1)
    }
}

.at-resp-share-element {
    position: relative;
    padding: 0;
    margin: 0;
    font-size: 0;
    line-height: 0
}

.at-resp-share-element:after, .at-resp-share-element:before {
    content: " ";
    display: table
}

.at-resp-share-element.at-mobile .at4-share-count-container, .at-resp-share-element.at-mobile .at-label {
    display: none
}

.at-resp-share-element .at-share-btn {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    margin: 0 2px 5px;
    padding: 0;
    overflow: hidden;
    line-height: 0;
    text-decoration: none;
    text-transform: none;
    color: #fff;
    cursor: pointer;
    transition: all .2s ease-in-out;
    border: 0;
    font-family: helvetica neue, helvetica, arial, sans-serif;
    background-color: transparent
}

.at-resp-share-element .at-share-btn::-moz-focus-inner {
    border: 0;
    padding: 0
}

.at-resp-share-element .at-share-btn:focus, .at-resp-share-element .at-share-btn:hover {
    transform: translateY(-4px);
    color: #fff;
    text-decoration: none
}

.at-resp-share-element .at-share-btn .at-icon-wrapper {
    float: left
}

.at-resp-share-element .at-share-btn.at-share-btn.at-svc-compact:hover {
    transform: none
}

.at-resp-share-element .at-share-btn .at-label {
    font-family: helvetica neue, helvetica, arial, sans-serif;
    font-size: 9pt;
    padding: 0 15px 0 0;
    margin: 0 0 0 5px;
    height: 2pc;
    line-height: 2pc;
    background: none
}

.at-resp-share-element .at-icon, .at-resp-share-element .at-label {
    cursor: pointer
}

.at-resp-share-element .at4-share-count-container {
    text-decoration: none;
    float: right;
    padding-right: 15px;
    font-size: 9pt
}

.at-mobile .at-resp-share-element .at-label {
    display: none
}

.at-resp-share-element.at-mobile .at-share-btn {
    margin-right: 5px
}

.at-mobile .at-resp-share-element .at-share-btn {
    padding: 5px;
    margin-right: 5px
}
.at-share-tbx-element {
    position: relative;
    margin: 0;
    color: #fff;
    font-size: 0
}

.at-share-tbx-element, .at-share-tbx-element .at-share-btn {
    font-family: helvetica neue, helvetica, arial, sans-serif;
    padding: 0;
    line-height: 0
}

.at-share-tbx-element .at-share-btn {
    cursor: pointer;
    margin: 0 5px 5px 0;
    display: inline-block;
    overflow: hidden;
    border: 0;
    text-decoration: none;
    text-transform: none;
    background-color: transparent;
    color: inherit;
    transition: all .2s ease-in-out
}

.at-share-tbx-element .at-share-btn:focus, .at-share-tbx-element .at-share-btn:hover {
    transform: translateY(-4px);
    outline-offset: -1px;
    color: inherit
}

.at-share-tbx-element .at-share-btn::-moz-focus-inner {
    border: 0;
    padding: 0
}

.at-share-tbx-element .at-share-btn.at-share-btn.at-svc-compact:hover {
    transform: none
}

.at-share-tbx-element .at-icon-wrapper {
    vertical-align: middle
}

.at-share-tbx-element .at4-share-count, .at-share-tbx-element .at-label {
    margin: 0 7.5px 0 2.5px;
    text-decoration: none;
    vertical-align: middle;
    display: inline-block;
    background: none;
    height: 0;
    font-size: inherit;
    line-height: inherit;
    color: inherit
}

.at-share-tbx-element.at-mobile .at4-share-count, .at-share-tbx-element.at-mobile .at-label {
    display: none
}

.at-share-tbx-element .at_native_button {
    vertical-align: middle
}

.at-share-tbx-element .addthis_counter.addthis_bubble_style {
    margin: 0 2px;
    vertical-align: middle;
    display: inline-block
}

.at-share-tbx-element .fb_iframe_widget {
    display: block
}

.at-share-tbx-element.at-share-tbx-native .at300b {
    vertical-align: middle
}

.at-style-responsive .at-share-btn {
    padding: 5px
}

.at-style-jumbo {
    display: table
}

.at-style-jumbo .at4-spacer {
    height: 1px;
    display: block;
    visibility: hidden;
    opacity: 0
}

.at-style-jumbo .at4-count-container {
    display: table-cell;
    text-align: center;
    min-width: 200px;
    vertical-align: middle;
    border-right: 1px solid #ccc;
    padding-right: 20px
}

.at-style-jumbo .at4-count {
    font-size: 60px;
    line-height: 60px;
    font-weight: 700
}

.at-style-jumbo .at4-count-title {
    position: relative;
    font-size: 18px;
    line-height: 18px;
    bottom: 2px
}

.at-style-jumbo .at-share-btn-elements {
    display: table-cell;
    vertical-align: middle;
    padding-left: 20px
}

.at_flat_counter {
    cursor: pointer;
    font-family: helvetica, arial, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    vertical-align: top;
    height: auto;
    margin: 0 5px;
    padding: 0 6px;
    left: -1px;
    background: #ebebeb;
    color: #32363b;
    transition: all .2s ease
}

.at_flat_counter:after {
    top: 30%;
    left: -4px;
    content: "";
    position: absolute;
    border-width: 5px 8px 5px 0;
    border-style: solid;
    border-color: transparent #ebebeb transparent transparent;
    display: block;
    width: 0;
    height: 0;
    transform: translateY(360deg)
}

.at_flat_counter:hover {
    background: #e1e2e2
}
.at4-thankyou-background {
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    -webkit-overflow-scrolling: touch;
    z-index: 9999999;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAABtJREFUeNpizCuu/sRABGBiIBKMKqSOQoAAAwC8KgJipENhxwAAAABJRU5ErkJggg==);
    background: hsla(217, 6%, 46%, .95)
}

.at4-thankyou-background.at-thankyou-shown {
    position: fixed
}

.at4-thankyou-inner {
    position: absolute;
    width: 100%;
    top: 10%;
    left: 50%;
    margin-left: -50%;
    text-align: center
}

.at4-thankyou-mobile .at4-thankyou-inner {
    top: 5%
}

.thankyou-description {
    font-weight: 400
}

.at4-thankyou-background .at4lb-inner {
    position: relative;
    width: 100%;
    height: 100%
}

.at4-thankyou-background .at4lb-inner .at4x {
    position: absolute;
    top: 15px;
    right: 15px;
    display: block;
    width: 20px;
    height: 20px;
    padding: 20px;
    margin: 0;
    cursor: pointer;
    transition: opacity .25s ease-in;
    opacity: .4;
    background: url("data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNui8sowAAAAWdEVYdENyZWF0aW9uIFRpbWUAMTEvMTMvMTKswDp5AAAAd0lEQVQ4jb2VQRLAIAgDE///Z3qqY1FAhalHMCsCIkVEAIAkkVgvp2lDBgYAnAyHkWotLccNrEd4A7X2TqIdqLfnWBAdaF5rJdyJfjtPH5GT37CaGhoVq3nOm/XflUuLUto2pY1d+vRKh0Pp+MrAVtDe2JkvYNQ+jVSEEFmOkggAAAAASUVORK5CYII=") no-repeat center center;
    overflow: hidden;
    text-indent: -99999em;
    border: 1px solid transparent
}

.at4-thankyou-background .at4lb-inner .at4x:focus, .at4-thankyou-background .at4lb-inner .at4x:hover {
    border: 1px solid #fff;
    border-radius: 50%;
    outline: 0
}

.at4-thankyou-background .at4lb-inner #at4-palogo {
    position: absolute;
    bottom: 10px;
    display: inline-block;
    text-decoration: none;
    font-family: helvetica, arial, sans-serif;
    font-size: 11px;
    cursor: pointer;
    -webkit-transition: opacity .25s ease-in;
    moz-transition: opacity .25s ease-in;
    transition: opacity .25s ease-in;
    opacity: .5;
    z-index: 100020;
    color: #fff;
    padding: 2px 0 0 13px
}

.at4-thankyou-background .at4lb-inner #at4-palogo .at-branding-addthis, .at4-thankyou-background .at4lb-inner #at4-palogo .at-branding-info {
    color: #fff
}

.at4-thankyou-background .at4lb-inner #at4-palogo:hover, .at4-thankyou-background.ats-dark .at4lb-inner a#at4-palogo:hover {
    text-decoration: none;
    color: #fff;
    opacity: 1
}

.at4-thankyou-background.ats-dark {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAABtJREFUeNpiZGBgeMZABGBiIBKMKqSOQoAAAwB+cQD6hqlbCwAAAABJRU5ErkJggg==");
    background: rgba(0, 0, 0, .85)
}

.at4-thankyou-background .thankyou-title {
    color: #fff;
    font-size: 38.5px;
    margin: 10px 20px;
    line-height: 38.5px;
    font-family: helvetica neue, helvetica, arial, sans-serif;
    font-weight: 300
}

.at4-thankyou-background.ats-dark .thankyou-description, .at4-thankyou-background.ats-dark .thankyou-title {
    color: #fff
}

.at4-thankyou-background .thankyou-description {
    color: #fff;
    font-size: 18px;
    margin: 10px 0;
    line-height: 24px;
    padding: 0;
    font-family: helvetica neue, helvetica, arial, sans-serif;
    font-weight: 300
}

.at4-thankyou-background .at4-thanks-icons {
    padding-top: 10px
}

.at4-thankyou-mobile * {
    -webkit-overflow-scrolling: touch
}

#at4-thankyou .at4-recommended-recommendedbox .at-logo {
    display: none
}

.at4-thankyou .at-h3 {
    height: 49px;
    line-height: 49px;
    margin: 0 50px 0 20px;
    padding: 1px 0 0;
    font-family: helvetica neue, helvetica, arial, sans-serif;
    font-size: 1pc;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px #000
}

.at4-thanks {
    padding-top: 50px;
    text-align: center
}

.at4-thanks label {
    display: block;
    margin: 0 0 15px;
    font-size: 1pc;
    line-height: 1pc
}

.at4-thanks .at4-h2 {
    background: none;
    border: none;
    margin: 0 0 10px;
    padding: 0;
    font-family: helvetica neue, helvetica, arial, sans-serif;
    font-size: 28px;
    font-weight: 300;
    color: #000
}

.at4-thanks .at4-thanks-icons {
    position: relative;
    height: 2pc
}

.at4-thanks .at4-thanks-icons .at-thankyou-label {
    display: block;
    padding-bottom: 10px;
    font-size: 14px;
    color: #666
}

.at4-thankyou-layer .at-follow .at-icon-wrapper {
    width: 2pc;
    height: 2pc
}
.at4-recommended-toaster {
    position: fixed;
    top: auto;
    bottom: 0;
    right: 0;
    z-index: 100021
}

.at4-recommended-toaster.ats-light {
    border: 1px solid #c5c5c5;
    background: #fff
}

.at4-recommended-toaster.ats-gray {
    border: 1px solid #c5c5c5;
    background: #f2f2f2
}

.at4-recommended-toaster.ats-dark {
    background: #262b30;
    color: #fff
}

.at4-recommended-toaster .at4-recommended-container {
    padding-top: 0;
    margin: 0
}

.at4-recommended.at4-recommended-toaster div.at-recommended-label {
    line-height: 1pc;
    font-size: 1pc;
    text-align: left;
    padding: 20px 0 0 20px
}

.at4-toaster-outer .at4-recommended .at4-recommended-item .at4-recommended-item-caption .at-h4 {
    font-size: 11px;
    line-height: 11px;
    margin: 10px 0 6px;
    height: 30px
}

.at4-recommended.at4-recommended-toaster div.at-recommended-label.ats-gray, .at4-recommended.at4-recommended-toaster div.at-recommended-label.ats-light {
    color: #464646
}

.at4-recommended.at4-recommended-toaster div.at-recommended-label.ats-dark {
    color: #fff
}

.at4-toaster-close-control {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    margin: 5px 5px 0 0;
    padding: 0;
    text-indent: -9999em
}

.at4-toaster-open-control {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 100020
}

.at4-toaster-outer .at4-recommended-item {
    width: 90pt;
    border: 0;
    margin: 9px 10px 0
}

.at4-toaster-outer .at4-recommended-item:first-child {
    margin-left: 20px
}

.at4-toaster-outer .at4-recommended-item:last-child {
    margin-right: 20px
}

.at4-toaster-outer .at4-recommended-item .at4-recommended-item-img {
    max-height: 90pt;
    max-width: 90pt
}

.at4-toaster-outer .at4-recommended-item .at4-recommended-item-img img {
    height: 90pt;
    width: 90pt
}

.at4-toaster-outer .at4-recommended-item .at4-recommended-item-caption {
    height: 30px;
    padding: 0;
    margin: 0;
    height: initial
}

.at4-toaster-outer .ats-dark .at4-recommended-item .at4-recommended-item-caption {
    background: #262b30
}

.at4-toaster-outer .at4-recommended .at4-recommended-item .at4-recommended-item-caption small {
    width: auto;
    line-height: 14px;
    margin: 0
}

.at4-toaster-outer .at4-recommended.ats-dark .at4-recommended-item .at4-recommended-item-caption small {
    color: #fff
}

.at4-recommended-toaster .at-logo {
    margin: 0 0 3px 20px;
    text-align: left
}

.at4-recommended-toaster .at-logo .at4-logo-container.at-sponsored-logo {
    position: relative
}

.at4-toaster-outer .at4-recommended-item .sponsored-label {
    text-align: right;
    font-size: 10px;
    color: #666;
    float: right;
    position: fixed;
    bottom: 6px;
    right: 20px;
    top: initial;
    z-index: 99999
}
.at4-whatsnext {
    position: fixed;
    bottom: 0 !important;
    right: 0;
    background: #fff;
    border: 1px solid #c5c5c5;
    margin: -1px;
    width: 390px;
    height: 90pt;
    overflow: hidden;
    font-size: 9pt;
    font-weight: 400;
    color: #000;
    z-index: 1800000000
}

.at4-whatsnext a {
    color: #666
}

.at4-whatsnext .at-whatsnext-content {
    height: 90pt;
    position: relative
}

.at4-whatsnext .at-whatsnext-content .at-branding {
    position: absolute;
    bottom: 15px;
    right: 10px;
    padding-left: 9px;
    text-decoration: none;
    line-height: 10px;
    font-family: helvetica, arial, sans-serif;
    font-size: 10px;
    color: #666
}

.at4-whatsnext .at-whatsnext-content .at-whatsnext-content-inner {
    position: absolute;
    top: 15px;
    right: 20px;
    bottom: 15px;
    left: 140px;
    text-align: left;
    height: 105px
}

.at4-whatsnext .at-whatsnext-content-inner a {
    display: inline-block
}

.at4-whatsnext .at-whatsnext-content-inner div.at-h6 {
    text-align: left;
    margin: 0;
    padding: 0 0 3px;
    font-size: 11px;
    color: #666;
    cursor: default
}

.at4-whatsnext .at-whatsnext-content .at-h3 {
    text-align: left;
    margin: 5px 0;
    padding: 0;
    line-height: 1.2em;
    font-weight: 400;
    font-size: 14px;
    height: 3pc
}

.at4-whatsnext .at-whatsnext-content-inner a:link, .at4-whatsnext .at-whatsnext-content-inner a:visited {
    text-decoration: none;
    font-weight: 400;
    color: #464646
}

.at4-whatsnext .at-whatsnext-content-inner a:hover {
    color: #000
}

.at4-whatsnext .at-whatsnext-content-inner small {
    position: absolute;
    bottom: 15px;
    line-height: 10px;
    font-size: 11px;
    color: #666;
    cursor: default;
    text-align: left
}

.at4-whatsnext .at-whatsnext-content .at-whatsnext-content-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 90pt;
    height: 90pt;
    overflow: hidden
}

.at4-whatsnext .at-whatsnext-content .at-whatsnext-content-img img {
    position: absolute;
    top: 0;
    left: 0;
    max-height: none;
    max-width: none
}

.at4-whatsnext .at-whatsnext-close-control {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    margin: 0 5px 0 0;
    padding: 0;
    text-indent: -9999em
}

.at-whatsnext-open-control {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 100020
}

.at4-whatsnext.ats-dark {
    background: #262b30
}

.at4-whatsnext.ats-dark .at-whatsnext-content .at-h3, .at4-whatsnext.ats-dark .at-whatsnext-content a.at4-logo:hover, .at4-whatsnext.ats-dark .at-whatsnext-content-inner a:link, .at4-whatsnext.ats-dark .at-whatsnext-content-inner a:visited {
    color: #fff
}

.at4-whatsnext.ats-light {
    background: #fff
}

.at4-whatsnext.ats-gray {
    background: #f2f2f2
}

.at4-whatsnext.at-whatsnext-nophoto {
    width: 270px
}

.at4-whatsnext.at-whatsnext-nophoto .at-whatsnext-content-img {
    display: none
}

.at4-whatsnext.at-whatsnext-nophoto .at-whatsnext-content .at-whatsnext-content-inner {
    top: 15px;
    right: 0;
    left: 20px
}

.at4-whatsnext.at-whatsnext-nophoto .at-whatsnext-content .at-whatsnext-content-inner.addthis_32x32_style {
    top: 0;
    right: 0;
    left: 0;
    padding: 45px 20px 0;
    font-size: 20px
}

.at4-whatsnext.at-whatsnext-nophoto .at-whatsnext-content .at-whatsnext-content-inner .at4-icon, .at4-whatsnext.at-whatsnext-nophoto .at-whatsnext-content .at-whatsnext-content-inner .at4-icon-fw, .at4-whatsnext.at-whatsnext-nophoto .at-whatsnext-content .at-whatsnext-content-inner .whatsnext-msg {
    vertical-align: middle
}

.at-whatsnext-img, .at-whatsnext-img-lnk {
    position: absolute;
    left: 0
}
.at4-whatsnextmobile {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    background: #fff;
    z-index: 9999998;
    height: 170px;
    font-size: 28px
}

.at4-whatsnextmobile .col-2 {
    height: 100%;
    font-size: 1em
}

.at4-whatsnextmobile .col-2:first-child {
    max-width: 200px;
    display: inline-block;
    float: left
}

.at4-whatsnextmobile .col-2:last-child {
    position: absolute;
    left: 200px;
    right: 50px;
    top: 0;
    bottom: 0;
    display: inline-block
}

.at4-whatsnextmobile .at-whatsnext-content-inner {
    font-size: 1em
}

.at4-whatsnextmobile .at-whatsnext-content-img img {
    height: 100%;
    width: 100%
}

.at4-whatsnextmobile .at-close-control {
    font-size: 1em;
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px
}

.at4-whatsnextmobile .at-close-control button {
    width: 100%;
    height: 100%;
    font-size: 1em;
    font-weight: 400;
    text-decoration: none;
    opacity: .5;
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
    -webkit-appearance: none
}

.at4-whatsnextmobile .at-h3, .at4-whatsnextmobile .at-h6 {
    font-size: 1em;
    margin: 0;
    color: #a1a1a1;
    margin-left: 2.5%;
    margin-top: 25px
}

.at4-whatsnextmobile .at-h3 {
    font-size: 1em;
    line-height: 1em;
    font-weight: 500;
    height: 50%
}

.at4-whatsnextmobile .at-h3 a {
    font-size: 1em;
    text-decoration: none
}

.at4-whatsnextmobile .at-h6 {
    font-size: .8em;
    line-height: .8em;
    font-weight: 500
}

.at4-whatsnextmobile .footer {
    position: absolute;
    bottom: 2px;
    left: 200px;
    right: 0;
    padding-left: 2.5%;
    font-size: 1em;
    line-height: .6em
}

.at4-whatsnextmobile .footer small {
    font-size: .6em;
    color: #a1a1a1
}

.at4-whatsnextmobile .footer small:first-child {
    margin-right: 5%;
    float: left
}

.at4-whatsnextmobile .footer small:last-child {
    margin-right: 2.5%;
    float: right
}

.at4-whatsnextmobile .at-whatsnext-content {
    height: 100%
}

.at4-whatsnextmobile.ats-dark {
    background: #262b30;
    color: #fff
}

.at4-whatsnextmobile .at-close-control button {
    color: #bfbfbf
}

.at4-whatsnextmobile.ats-dark a:link, .at4-whatsnextmobile.ats-dark a:visited {
    color: #fff
}

.at4-whatsnextmobile.ats-gray {
    background: #f2f2f2;
    color: #262b30
}

.at4-whatsnextmobile.ats-light {
    background: #fff;
    color: #262b30
}

.at4-whatsnextmobile.ats-dark .footer a:link, .at4-whatsnextmobile.ats-dark .footer a:visited, .at4-whatsnextmobile.ats-gray .footer a:link, .at4-whatsnextmobile.ats-gray .footer a:visited, .at4-whatsnextmobile.ats-light .footer a:link, .at4-whatsnextmobile.ats-light .footer a:visited {
    color: #a1a1a1
}

.at4-whatsnextmobile.ats-gray a:link, .at4-whatsnextmobile.ats-gray a:visited, .at4-whatsnextmobile.ats-light a:link, .at4-whatsnextmobile.ats-light a:visited {
    color: #262b30
}

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
    .at4-whatsnextmobile {
        height: 85px;
        font-size: 14px
    }

    .at4-whatsnextmobile .col-2:first-child {
        width: 75pt
    }

    .at4-whatsnextmobile .col-2:last-child {
        right: 25px;
        left: 75pt
    }

    .at4-whatsnextmobile .footer {
        left: 75pt
    }

    .at4-whatsnextmobile .at-close-control {
        width: 25px;
        height: 25px
    }

    .at4-whatsnextmobile .at-h3, .at4-whatsnextmobile .at-h6 {
        margin-top: 12.5px
    }
}
.at-custom-mobile-bar {
    left: 0;
    right: 0;
    width: 100%;
    height: 56px;
    position: fixed;
    text-align: center;
    z-index: 100020;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
    font: initial;
    line-height: normal;
    top: auto;
    bottom: 0
}

.at-custom-mobile-bar.at-custom-mobile-bar-zindex-hide {
    z-index: -1 !important
}

.at-custom-mobile-bar.atss-top {
    top: 0;
    bottom: auto
}

.at-custom-mobile-bar.atss-bottom {
    top: auto;
    bottom: 0
}

.at-custom-mobile-bar .at-custom-mobile-bar-btns {
    display: inline-block;
    text-align: center
}

.at-custom-mobile-bar .at-custom-mobile-bar-counter, .at-custom-mobile-bar .at-share-btn {
    margin-top: 4px
}

.at-custom-mobile-bar .at-share-btn {
    display: inline-block;
    text-decoration: none;
    transition: none;
    box-sizing: content-box
}

.at-custom-mobile-bar .at-custom-mobile-bar-counter {
    font-family: Helvetica neue, arial;
    vertical-align: top;
    margin-left: 4px;
    margin-right: 4px;
    display: inline-block
}

.at-custom-mobile-bar .at-custom-mobile-bar-count {
    font-size: 26px;
    line-height: 1.25em;
    color: #222
}

.at-custom-mobile-bar .at-custom-mobile-bar-text {
    font-size: 9pt;
    line-height: 1.25em;
    color: #888;
    letter-spacing: 1px
}

.at-custom-mobile-bar .at-icon-wrapper {
    text-align: center;
    height: 3pc;
    width: 3pc;
    margin: 0 4px
}

.at-custom-mobile-bar .at-icon {
    vertical-align: top;
    margin: 8px;
    width: 2pc;
    height: 2pc
}

.at-custom-mobile-bar.at-shfs-medium {
    height: 3pc
}

.at-custom-mobile-bar.at-shfs-medium .at-custom-mobile-bar-counter {
    margin-top: 6px
}

.at-custom-mobile-bar.at-shfs-medium .at-custom-mobile-bar-count {
    font-size: 18px
}

.at-custom-mobile-bar.at-shfs-medium .at-custom-mobile-bar-text {
    font-size: 10px
}

.at-custom-mobile-bar.at-shfs-medium .at-icon-wrapper {
    height: 40px;
    width: 40px
}

.at-custom-mobile-bar.at-shfs-medium .at-icon {
    margin: 6px;
    width: 28px;
    height: 28px
}

.at-custom-mobile-bar.at-shfs-small {
    height: 40px
}

.at-custom-mobile-bar.at-shfs-small .at-custom-mobile-bar-counter {
    margin-top: 3px
}

.at-custom-mobile-bar.at-shfs-small .at-custom-mobile-bar-count {
    font-size: 1pc
}

.at-custom-mobile-bar.at-shfs-small .at-custom-mobile-bar-text {
    font-size: 10px
}

.at-custom-mobile-bar.at-shfs-small .at-icon-wrapper {
    height: 2pc;
    width: 2pc
}

.at-custom-mobile-bar.at-shfs-small .at-icon {
    margin: 4px;
    width: 24px;
    height: 24px
}
.at-custom-sidebar {
    top: 20%;
    width: 58px;
    position: fixed;
    text-align: center;
    z-index: 100020;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
    font: initial;
    line-height: normal;
    top: auto;
    bottom: 0
}

.at-custom-sidebar.at-custom-sidebar-zindex-hide {
    z-index: -1 !important
}

.at-custom-sidebar.atss-left {
    left: 0;
    right: auto;
    float: left;
    border-radius: 0 4px 4px 0
}

.at-custom-sidebar.atss-right {
    left: auto;
    right: 0;
    float: right;
    border-radius: 4px 0 0 4px
}

.at-custom-sidebar .at-custom-sidebar-btns {
    display: inline-block;
    text-align: center;
    padding-top: 4px
}

.at-custom-sidebar .at-custom-sidebar-counter {
    margin-bottom: 8px
}

.at-custom-sidebar .at-share-btn {
    display: inline-block;
    text-decoration: none;
    transition: none;
    box-sizing: content-box
}

.at-custom-sidebar .at-custom-sidebar-counter {
    font-family: Helvetica neue, arial;
    vertical-align: top;
    margin-left: 4px;
    margin-right: 4px;
    display: inline-block
}

.at-custom-sidebar .at-custom-sidebar-count {
    font-size: 21px;
    line-height: 1.25em;
    color: #222
}

.at-custom-sidebar .at-custom-sidebar-text {
    font-size: 10px;
    line-height: 1.25em;
    color: #888;
    letter-spacing: 1px
}

.at-custom-sidebar .at-icon-wrapper {
    text-align: center;
    margin: 0 4px
}

.at-custom-sidebar .at-icon {
    vertical-align: top;
    margin: 9px;
    width: 2pc;
    height: 2pc
}

.at-custom-sidebar .at-icon-wrapper {
    position: relative
}

.at-custom-sidebar .at4-share-count, .at-custom-sidebar .at4-share-count-container {
    line-height: 1pc;
    font-size: 10px
}

.at-custom-sidebar .at4-share-count {
    text-indent: 0;
    font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
    font-weight: 200;
    width: 100%;
    height: 1pc
}

.at-custom-sidebar .at4-share-count-anchor .at-icon {
    margin-top: 3px
}

.at-custom-sidebar .at4-share-count-container {
    position: absolute;
    left: 0;
    right: auto;
    top: auto;
    bottom: 0;
    width: 100%;
    color: #fff;
    background: inherit
}
.at-image-sharing-mobile-icon {
    position: absolute;
    background: #000 url(https://s7.addthis.com/static/44a36d35bafef33aa9455b7d3039a771.png) no-repeat top center;
    background-color: rgba(0, 0, 0, .9);
    background-image: url(https://s7.addthis.com/static/10db525181ee0bbe1a515001be1c7818.svg), none;
    border-radius: 3px;
    width: 50px;
    height: 40px;
    top: -9999px;
    left: -9999px
}

.at-image-sharing-tool {
    display: block;
    position: absolute;
    text-align: center;
    z-index: 9001;
    background: none;
    overflow: hidden;
    top: -9999px;
    left: -9999px;
    font: initial;
    line-height: 0
}

.at-image-sharing-tool.addthis-animated {
    animation-duration: .15s
}

.at-image-sharing-tool.at-orientation-vertical .at-share-btn {
    display: block
}

.at-image-sharing-tool.at-orientation-horizontal .at-share-btn {
    display: inline-block
}

.at-image-sharing-tool.at-image-sharing-tool-size-big .at-icon {
    width: 43px;
    height: 43px
}

.at-image-sharing-tool.at-image-sharing-tool-size-mobile .at-share-btn {
    margin: 0 !important
}

.at-image-sharing-tool.at-image-sharing-tool-size-mobile .at-icon-wrapper {
    height: 60px;
    width: 100%;
    border-radius: 0 !important
}

.at-image-sharing-tool.at-image-sharing-tool-size-mobile .at-icon {
    max-width: 100%;
    height: 54px !important;
    width: 54px !important
}

.at-image-sharing-tool .at-custom-shape.at-image-sharing-tool-btns {
    margin-right: 8px;
    margin-bottom: 8px
}

.at-image-sharing-tool .at-custom-shape .at-share-btn {
    margin-top: 8px;
    margin-left: 8px
}

.at-image-sharing-tool .at-share-btn {
    line-height: 0;
    text-decoration: none;
    transition: none;
    box-sizing: content-box
}

.at-image-sharing-tool .at-icon-wrapper {
    text-align: center;
    height: 100%;
    width: 100%
}

.at-image-sharing-tool .at-icon {
    vertical-align: top;
    width: 2pc;
    height: 2pc;
    margin: 3px
}
.at-expanding-share-button {
    box-sizing: border-box;
    position: fixed;
    z-index: 9999
}

.at-expanding-share-button[data-position=bottom-right] {
    bottom: 10px;
    right: 10px
}

.at-expanding-share-button[data-position=bottom-right] .at-expanding-share-button-toggle-bg, .at-expanding-share-button[data-position=bottom-right] .at-expanding-share-button-toggle-btn[data-name]:after, .at-expanding-share-button[data-position=bottom-right] .at-icon-wrapper, .at-expanding-share-button[data-position=bottom-right] [data-name]:after {
    float: right
}

.at-expanding-share-button[data-position=bottom-right] [data-name]:after {
    margin-right: 10px
}

.at-expanding-share-button[data-position=bottom-right] .at-expanding-share-button-toggle-btn[data-name]:after {
    margin-right: 5px
}

.at-expanding-share-button[data-position=bottom-right] .at-icon-wrapper {
    margin-right: -3px
}

.at-expanding-share-button[data-position=bottom-left] {
    bottom: 10px;
    left: 10px
}

.at-expanding-share-button[data-position=bottom-left] .at-expanding-share-button-toggle-bg, .at-expanding-share-button[data-position=bottom-left] .at-expanding-share-button-toggle-btn[data-name]:after, .at-expanding-share-button[data-position=bottom-left] .at-icon-wrapper, .at-expanding-share-button[data-position=bottom-left] [data-name]:after {
    float: left
}

.at-expanding-share-button[data-position=bottom-left] [data-name]:after {
    margin-left: 10px
}

.at-expanding-share-button[data-position=bottom-left] .at-expanding-share-button-toggle-btn[data-name]:after {
    margin-left: 5px
}

.at-expanding-share-button *, .at-expanding-share-button :after, .at-expanding-share-button :before {
    box-sizing: border-box
}

.at-expanding-share-button .at-expanding-share-button-services-list {
    display: none;
    list-style: none;
    margin: 0 5px;
    overflow: visible;
    padding: 0
}

.at-expanding-share-button .at-expanding-share-button-services-list > li {
    display: block;
    height: 45px;
    position: relative;
    overflow: visible
}

.at-expanding-share-button .at-expanding-share-button-toggle-btn, .at-expanding-share-button .at-share-btn {
    transition: .1s;
    text-decoration: none
}

.at-expanding-share-button .at-share-btn {
    display: block;
    height: 40px;
    padding: 0 3px 0 0
}

.at-expanding-share-button .at-expanding-share-button-toggle-btn {
    position: relative;
    overflow: auto
}

.at-expanding-share-button .at-expanding-share-button-toggle-btn.at-expanding-share-button-hidden[data-name]:after {
    display: none
}

.at-expanding-share-button .at-expanding-share-button-toggle-bg {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .3);
    border-radius: 50%;
    position: relative
}

.at-expanding-share-button .at-expanding-share-button-toggle-bg > span {
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2232px%22%20height%3D%2232px%22%20viewBox%3D%220%200%2032%2032%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Ctitle%3Eshare%3C%2Ftitle%3E%3Cg%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cg%20fill%3D%22%23FFFFFF%22%3E%3Cpath%20d%3D%22M26%2C13.4285714%20C26%2C13.6220248%2025.9293162%2C13.7894338%2025.7879464%2C13.9308036%20L20.0736607%2C19.6450893%20C19.932291%2C19.786459%2019.7648819%2C19.8571429%2019.5714286%2C19.8571429%20C19.3779752%2C19.8571429%2019.2105662%2C19.786459%2019.0691964%2C19.6450893%20C18.9278267%2C19.5037195%2018.8571429%2C19.3363105%2018.8571429%2C19.1428571%20L18.8571429%2C16.2857143%20L16.3571429%2C16.2857143%20C15.6279725%2C16.2857143%2014.9750773%2C16.3080355%2014.3984375%2C16.3526786%20C13.8217977%2C16.3973217%2013.2488868%2C16.477306%2012.6796875%2C16.5926339%20C12.1104882%2C16.7079619%2011.6157015%2C16.8660704%2011.1953125%2C17.0669643%20C10.7749235%2C17.2678581%2010.3824423%2C17.5264121%2010.0178571%2C17.8426339%20C9.65327199%2C18.1588557%209.35565592%2C18.534596%209.125%2C18.9698661%20C8.89434408%2C19.4051361%208.71391434%2C19.9203839%208.58370536%2C20.515625%20C8.45349637%2C21.1108661%208.38839286%2C21.7842224%208.38839286%2C22.5357143%20C8.38839286%2C22.9449425%208.40699386%2C23.4025272%208.44419643%2C23.9084821%20C8.44419643%2C23.9531252%208.45349693%2C24.0405499%208.47209821%2C24.1707589%20C8.4906995%2C24.3009679%208.5%2C24.3995532%208.5%2C24.4665179%20C8.5%2C24.5781256%208.46837829%2C24.6711306%208.40513393%2C24.7455357%20C8.34188956%2C24.8199408%208.25446484%2C24.8571429%208.14285714%2C24.8571429%20C8.02380893%2C24.8571429%207.9196433%2C24.7938994%207.83035714%2C24.6674107%20C7.77827355%2C24.6004461%207.72991094%2C24.5186017%207.68526786%2C24.421875%20C7.64062478%2C24.3251483%207.59040206%2C24.2135423%207.53459821%2C24.0870536%20C7.47879436%2C23.9605648%207.43973225%2C23.87128%207.41741071%2C23.8191964%20C6.47246551%2C21.6986501%206%2C20.0208395%206%2C18.7857143%20C6%2C17.3050521%206.19717065%2C16.0662252%206.59151786%2C15.0691964%20C7.79688103%2C12.0706695%2011.0520568%2C10.5714286%2016.3571429%2C10.5714286%20L18.8571429%2C10.5714286%20L18.8571429%2C7.71428571%20C18.8571429%2C7.52083237%2018.9278267%2C7.35342333%2019.0691964%2C7.21205357%20C19.2105662%2C7.07068382%2019.3779752%2C7%2019.5714286%2C7%20C19.7648819%2C7%2019.932291%2C7.07068382%2020.0736607%2C7.21205357%20L25.7879464%2C12.9263393%20C25.9293162%2C13.067709%2026%2C13.2351181%2026%2C13.4285714%20L26%2C13.4285714%20Z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-position: center center;
    background-repeat: no-repeat;
    transition: transform .4s ease;
    border-radius: 50%;
    display: block
}

.at-expanding-share-button .at-icon-wrapper {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .3);
    border-radius: 50%;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    text-align: center;
    width: 40px
}

.at-expanding-share-button .at-icon {
    display: inline-block;
    height: 34px;
    margin: 3px 0;
    vertical-align: top;
    width: 34px
}

.at-expanding-share-button [data-name]:after {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .3);
    transform: translate(0, -50%);
    transition: .4s;
    background-color: #fff;
    border-radius: 3px;
    color: #666;
    content: attr(data-name);
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 9pt;
    line-height: 9pt;
    font-weight: 500;
    opacity: 0;
    padding: 3px 5px;
    position: relative;
    top: 20px;
    white-space: nowrap
}

.at-expanding-share-button.at-expanding-share-button-show-icons .at-expanding-share-button-services-list {
    display: block
}

.at-expanding-share-button.at-expanding-share-button-animate-in .at-expanding-share-button-toggle-bg > span {
    transform: rotate(270deg);
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%3E%3Cpath%20d%3D%22M18%2014V8h-4v6H8v4h6v6h4v-6h6v-4h-6z%22%20fill-rule%3D%22evenodd%22%20fill%3D%22white%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-position: center center;
    background-repeat: no-repeat
}

.at-expanding-share-button.at-expanding-share-button-animate-in [data-name]:after {
    opacity: 1
}

.at-expanding-share-button.at-hide-label [data-name]:after {
    display: none
}

.at-expanding-share-button.at-expanding-share-button-desktop .at-expanding-share-button-toggle {
    height: 50px
}

.at-expanding-share-button.at-expanding-share-button-desktop .at-icon-wrapper:hover {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .5)
}

.at-expanding-share-button.at-expanding-share-button-desktop .at-expanding-share-button-toggle-bg {
    height: 50px;
    line-height: 50px;
    width: 50px
}

.at-expanding-share-button.at-expanding-share-button-desktop .at-expanding-share-button-toggle-bg > span {
    height: 50px;
    width: 50px
}

.at-expanding-share-button.at-expanding-share-button-desktop .at-expanding-share-button-toggle-bg:after {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .2);
    transition: opacity .2s ease;
    border-radius: 50%;
    content: '';
    height: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%
}

.at-expanding-share-button.at-expanding-share-button-desktop .at-expanding-share-button-toggle-bg:hover:after {
    opacity: 1
}

.at-expanding-share-button.at-expanding-share-button-desktop .at-expanding-share-button-toggle-btn[data-name]:after {
    top: 25px
}

.at-expanding-share-button.at-expanding-share-button-mobile .at-expanding-share-button-services-list {
    margin: 0
}

.at-expanding-share-button.at-expanding-share-button-mobile .at-expanding-share-button-toggle-btn, .at-expanding-share-button.at-expanding-share-button-mobile .at-share-btn {
    outline: 0
}

.at-expanding-share-button.at-expanding-share-button-mobile .at-expanding-share-button-toggle {
    height: 40px;
    -webkit-tap-highlight-color: transparent
}

.at-expanding-share-button.at-expanding-share-button-mobile .at-expanding-share-button-toggle-bg, .at-expanding-share-button.at-expanding-share-button-mobile .at-expanding-share-button-toggle-bg span {
    height: 40px;
    line-height: 40px;
    width: 40px
}

.at-expanding-share-button.at-expanding-share-button-mobile .at-expanding-share-button-click-flash {
    transform: scale(0);
    transition: transform ease, opacity ease-in;
    background-color: hsla(0, 0%, 100%, .3);
    border-radius: 50%;
    height: 40px;
    opacity: 1;
    position: absolute;
    width: 40px;
    z-index: 10000
}

.at-expanding-share-button.at-expanding-share-button-mobile .at-expanding-share-button-click-flash.at-expanding-share-button-click-flash-animate {
    transform: scale(1);
    opacity: 0
}

.at-expanding-share-button.at-expanding-share-button-mobile + .at-expanding-share-button-mobile-overlay {
    transition: opacity ease;
    bottom: 0;
    background-color: hsla(0, 0%, 87%, .7);
    display: block;
    height: auto;
    left: 0;
    opacity: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: auto;
    z-index: 9998
}

.at-expanding-share-button.at-expanding-share-button-mobile + .at-expanding-share-button-mobile-overlay.at-expanding-share-button-hidden {
    height: 0;
    width: 0;
    z-index: -10000
}

.at-expanding-share-button.at-expanding-share-button-mobile.at-expanding-share-button-animate-in + .at-expanding-share-button-mobile-overlay {
    transition: opacity ease;
    opacity: 1
}.at-tjin-element .at300b, .at-tjin-element .at300m {
    display: inline-block;
    width: auto;
    padding: 0;
    margin: 0 2px 5px;
    outline-offset: -1px;
    transition: all .2s ease-in-out
}

.at-tjin-element .at300b:focus, .at-tjin-element .at300b:hover, .at-tjin-element .at300m:focus, .at-tjin-element .at300m:hover {
    transform: translateY(-4px)
}

.at-tjin-element .addthis_tjin_label {
    display: none
}

.at-tjin-element .addthis_vertical_style .at300b, .at-tjin-element .addthis_vertical_style .at300m {
    display: block
}

.at-tjin-element .addthis_vertical_style .at300b .addthis_tjin_label, .at-tjin-element .addthis_vertical_style .at300b .at-icon-wrapper, .at-tjin-element .addthis_vertical_style .at300m .addthis_tjin_label, .at-tjin-element .addthis_vertical_style .at300m .at-icon-wrapper {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px
}

.at-tjin-element .addthis_vertical_style .at300b:focus, .at-tjin-element .addthis_vertical_style .at300b:hover, .at-tjin-element .addthis_vertical_style .at300m:focus, .at-tjin-element .addthis_vertical_style .at300m:hover {
    transform: none
}

.at-tjin-element .at-tjin-btn {
    margin: 0 5px 5px 0;
    padding: 0;
    outline-offset: -1px;
    display: inline-block;
    box-sizing: content-box;
    transition: all .2s ease-in-out
}

.at-tjin-element .at-tjin-btn:focus, .at-tjin-element .at-tjin-btn:hover {
    transform: translateY(-4px)
}

.at-tjin-element .at-tjin-title {
    margin: 0 0 15px
}
#addthissmartlayerscssready {
    color: #bada55 !important
}

.addthis-smartlayers, div#at4-follow, div#at4-share, div#at4-thankyou, div#at4-whatsnext {
    padding: 0;
    margin: 0
}

#at4-follow-label, #at4-share-label, #at4-whatsnext-label, .at4-recommended-label.hidden {
    padding: 0;
    border: none;
    background: none;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    overflow: hidden;
    text-indent: -9999em
}

.addthis-smartlayers .at4-arrow:hover {
    cursor: pointer
}

.addthis-smartlayers .at4-arrow:after, .addthis-smartlayers .at4-arrow:before {
    content: none
}

a.at4-logo {
    background: url(data:image/gif;base64,R0lGODlhBwAHAJEAAP9uQf///wAAAAAAACH5BAkKAAIALAAAAAAHAAcAAAILFH6Ge8EBH2MKiQIAOw==) no-repeat left center
}

.at4-minimal a.at4-logo {
    background: url(data:image/gif;base64,R0lGODlhBwAHAJEAAP9uQf///wAAAAAAACH5BAkKAAIALAAAAAAHAAcAAAILFH6Ge8EBH2MKiQIAOw==) no-repeat left center !important
}

button.at4-closebutton {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
    margin-right: 10px;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    font-size: 19px;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .2
}

button.at4-closebutton:hover {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: .5
}

div.at4-arrow {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAAAAAoCAYAAABpYH0BAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAV1JREFUeNrsmesOgyAMhQfxwfrofTM3E10ME2i5Oeppwr9a5OMUCrh1XV+wcvNAAIAA+BiAzrmtUWln27dbjEcC3AdODfo0BdEPhmcO4nIDvDNELi2jggk4/k8dT7skfeKzWIEd4VUpMQKvNB7X+OZSmAZkATWC1xvipbpnLmOosbJZC08CkAeA4E6qFUEMwLAGnlSBPCE8lW8CYnZTcimH2HoT7kSFOx5HBmCnDhTIu1p5s98G+QZrxGPhZVMY1vgyAQaAAAiAAAgDQACcBOD+BvJtBWfRy7NpJK5tBe4FNzXokywV734wPHMQlxvgnSGyNoUP/2ACjv/7iSeYKO3YWKzAjvCqlBiBVxqPa3ynexNJwOsN8TJbzL6JNIYYXWpMv4lIIAZgWANPqkCeEJ7KNwExu8lpLlSpAVQarO77TyKdBsyRPuwV0h0gmoGnTWFYzVkYBoAA+I/2FmAAt6+b5XM9mFkAAAAASUVORK5CYII=);
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    text-indent: -9999em;
    text-align: left;
    cursor: pointer
}

#at4-recommendedpanel-outer-container .at4-arrow.at-right, div.at4-arrow.at-right {
    background-position: -20px 0
}

#at4-recommendedpanel-outer-container .at4-arrow.at-left, div.at4-arrow.at-left {
    background-position: 0 0
}

div.at4-arrow.at-down {
    background-position: -60px 0
}

div.at4-arrow.at-up {
    background-position: -40px 0
}

.ats-dark div.at4-arrow.at-right {
    background-position: -20px -20px
}

.ats-dark div.at4-arrow.at-left {
    background-position: 0 -20px
}

.ats-dark div.at4-arrow.at-down {
    background-position: -60px -20px
}

.ats-dark div.at4-arrow.at-up {
    background-position: -40px -20
}

.at4-opacity-hidden {
    opacity: 0 !important
}

.at4-opacity-visible {
    opacity: 1 !important
}

.at4-visually-hidden {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0;
    border: 0;
    overflow: hidden
}

.at4-hidden-off-screen, .at4-hidden-off-screen * {
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important
}

.at4-show {
    display: block !important;
    opacity: 1 !important
}

.at4-show-content {
    opacity: 1 !important;
    visibility: visible
}

.at4-hide {
    display: none !important;
    opacity: 0 !important
}

.at4-hide-content {
    opacity: 0 !important;
    visibility: hidden
}

.at4-visible {
    display: block !important;
    opacity: 0 !important
}

.at-wordpress-hide {
    display: none !important;
    opacity: 0 !important
}

.addthis-animated {
    animation-fill-mode: both;
    animation-timing-function: ease-out;
    animation-duration: .3s
}

.slideInDown.addthis-animated, .slideInLeft.addthis-animated, .slideInRight.addthis-animated, .slideInUp.addthis-animated, .slideOutDown.addthis-animated, .slideOutLeft.addthis-animated, .slideOutRight.addthis-animated, .slideOutUp.addthis-animated {
    animation-duration: .4s
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.fadeIn {
    animation-name: fadeIn
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.fadeInUp {
    animation-name: fadeInUp
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.fadeInDown {
    animation-name: fadeInDown
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px)
    }
    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.fadeInLeft {
    animation-name: fadeInLeft
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(20px)
    }
    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.fadeInRight {
    animation-name: fadeInRight
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

.fadeOut {
    animation-name: fadeOut
}

@keyframes fadeOutUp {
    0% {
        opacity: 1;
        transform: translateY(0)
    }
    to {
        opacity: 0;
        transform: translateY(-20px)
    }
}

.fadeOutUp {
    animation-name: fadeOutUp
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
        transform: translateY(0)
    }
    to {
        opacity: 0;
        transform: translateY(20px)
    }
}

.fadeOutDown {
    animation-name: fadeOutDown
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1;
        transform: translateX(0)
    }
    to {
        opacity: 0;
        transform: translateX(-20px)
    }
}

.fadeOutLeft {
    animation-name: fadeOutLeft
}

@keyframes fadeOutRight {
    0% {
        opacity: 1;
        transform: translateX(0)
    }
    to {
        opacity: 0;
        transform: translateX(20px)
    }
}

.fadeOutRight {
    animation-name: fadeOutRight
}

@keyframes slideInUp {
    0% {
        transform: translateY(1500px)
    }
    0%, to {
        opacity: 1
    }
    to {
        transform: translateY(0)
    }
}

.slideInUp {
    animation-name: slideInUp
}

.slideInUp.addthis-animated {
    animation-duration: .4s
}

@keyframes slideInDown {
    0% {
        transform: translateY(-850px)
    }
    0%, to {
        opacity: 1
    }
    to {
        transform: translateY(0)
    }
}

.slideInDown {
    animation-name: slideInDown
}

@keyframes slideOutUp {
    0% {
        transform: translateY(0)
    }
    0%, to {
        opacity: 1
    }
    to {
        transform: translateY(-250px)
    }
}

.slideOutUp {
    animation-name: slideOutUp
}

@keyframes slideOutUpFast {
    0% {
        transform: translateY(0)
    }
    0%, to {
        opacity: 1
    }
    to {
        transform: translateY(-1250px)
    }
}

#at4m-menu.slideOutUp {
    animation-name: slideOutUpFast
}

@keyframes slideOutDown {
    0% {
        transform: translateY(0)
    }
    0%, to {
        opacity: 1
    }
    to {
        transform: translateY(350px)
    }
}

.slideOutDown {
    animation-name: slideOutDown
}

@keyframes slideOutDownFast {
    0% {
        transform: translateY(0)
    }
    0%, to {
        opacity: 1
    }
    to {
        transform: translateY(1250px)
    }
}

#at4m-menu.slideOutDown {
    animation-name: slideOutDownFast
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-850px)
    }
    to {
        transform: translateX(0)
    }
}

.slideInLeft {
    animation-name: slideInLeft
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(1250px)
    }
    to {
        transform: translateX(0)
    }
}

.slideInRight {
    animation-name: slideInRight
}

@keyframes slideOutLeft {
    0% {
        transform: translateX(0)
    }
    to {
        opacity: 0;
        transform: translateX(-350px)
    }
}

.slideOutLeft {
    animation-name: slideOutLeft
}

@keyframes slideOutRight {
    0% {
        transform: translateX(0)
    }
    to {
        opacity: 0;
        transform: translateX(350px)
    }
}

.slideOutRight {
    animation-name: slideOutRight
}

.at4win {
    margin: 0 auto;
    background: #fff;
    border: 1px solid #ebeced;
    width: 25pc;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    border-radius: 8px;
    font-family: helvetica neue, helvetica, arial, sans-serif;
    text-align: left;
    z-index: 9999
}

.at4win .at4win-header {
    position: relative;
    border-bottom: 1px solid #f2f2f2;
    background: #fff;
    height: 49px;
    -webkit-border-top-left-radius: 8px;
    -webkit-border-top-right-radius: 8px;
    -moz-border-radius-topleft: 8px;
    -moz-border-radius-topright: 8px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    cursor: default
}

.at4win .at4win-header .at-h3, .at4win .at4win-header h3 {
    height: 49px;
    line-height: 49px;
    margin: 0 50px 0 0;
    padding: 1px 0 0;
    margin-left: 20px;
    font-family: helvetica neue, helvetica, arial, sans-serif;
    font-size: 1pc;
    font-weight: 700;
    text-shadow: 0 1px #fff;
    color: #333
}

.at4win .at4win-header .at-h3 img, .at4win .at4win-header h3 img {
    display: inline-block;
    margin-right: 4px
}

.at4win .at4win-header .at4-close {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    background: url("data:image/gif;base64,R0lGODlhFAAUAIABAAAAAP///yH5BAEAAAEALAAAAAAUABQAAAIzBIKpG+YMm5Enpodw1HlCfnkKOIqU1VXk55goVb2hi7Y0q95lfG70uurNaqLgTviyyUoFADs=") no-repeat center center;
    background-repeat: no-repeat;
    background-position: center center;
    border-left: 1px solid #d2d2d1;
    width: 49px;
    height: 49px;
    line-height: 49px;
    overflow: hidden;
    text-indent: -9999px;
    text-shadow: none;
    cursor: pointer;
    opacity: .5;
    border: 0;
    transition: opacity .15s ease-in
}

.at4win .at4win-header .at4-close::-moz-focus-inner {
    border: 0;
    padding: 0
}

.at4win .at4win-header .at4-close:hover {
    opacity: 1;
    background-color: #ebeced;
    border-top-right-radius: 7px
}

.at4win .at4win-content {
    position: relative;
    background: #fff;
    min-height: 220px
}

#at4win-footer {
    position: relative;
    background: #fff;
    border-top: 1px solid #d2d2d1;
    -webkit-border-bottom-right-radius: 8px;
    -webkit-border-bottom-left-radius: 8px;
    -moz-border-radius-bottomright: 8px;
    -moz-border-radius-bottomleft: 8px;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    height: 11px;
    line-height: 11px;
    padding: 5px 20px;
    font-size: 11px;
    color: #666;
    -ms-box-sizing: content-box;
    -o-box-sizing: content-box;
    box-sizing: content-box
}

#at4win-footer a {
    margin-right: 10px;
    text-decoration: none;
    color: #666
}

#at4win-footer a:hover {
    text-decoration: none;
    color: #000
}

#at4win-footer a.at4-logo {
    top: 5px;
    padding-left: 10px
}

#at4win-footer a.at4-privacy {
    position: absolute;
    top: 5px;
    right: 10px;
    padding-right: 14px
}

.at4win.ats-dark {
    border-color: #555;
    box-shadow: none
}

.at4win.ats-dark .at4win-header {
    background: #1b1b1b;
    -webkit-border-top-left-radius: 6px;
    -webkit-border-top-right-radius: 6px;
    -moz-border-radius-topleft: 6px;
    -moz-border-radius-topright: 6px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px
}

.at4win.ats-dark .at4win-header .at4-close {
    background: url("data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNui8sowAAAAWdEVYdENyZWF0aW9uIFRpbWUAMTEvMTMvMTKswDp5AAAAd0lEQVQ4jb2VQRLAIAgDE///Z3qqY1FAhalHMCsCIkVEAIAkkVgvp2lDBgYAnAyHkWotLccNrEd4A7X2TqIdqLfnWBAdaF5rJdyJfjtPH5GT37CaGhoVq3nOm/XflUuLUto2pY1d+vRKh0Pp+MrAVtDe2JkvYNQ+jVSEEFmOkggAAAAASUVORK5CYII=") no-repeat center center;
    background-image: url(https://s7.addthis.com/static/fb08f6d50887bd0caacc86a62bcdcf68.svg), none;
    border-color: #333
}

.at4win.ats-dark .at4win-header .at4-close:hover {
    background-color: #000
}

.at4win.ats-dark .at4win-header .at-h3, .at4win.ats-dark .at4win-header h3 {
    color: #fff;
    text-shadow: 0 1px #000
}

.at4win.ats-gray .at4win-header {
    background: #fff;
    border-color: #d2d2d1;
    -webkit-border-top-left-radius: 6px;
    -webkit-border-top-right-radius: 6px;
    -moz-border-radius-topleft: 6px;
    -moz-border-radius-topright: 6px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px
}

.at4win.ats-gray .at4win-header a.at4-close {
    border-color: #d2d2d1
}

.at4win.ats-gray .at4win-header a.at4-close:hover {
    background-color: #ebeced
}

.at4win.ats-gray #at4win-footer {
    border-color: #ebeced
}

.at4win .clear {
    clear: both
}

.at4win ::selection {
    background: #fe6d4c;
    color: #fff
}

.at4win ::-moz-selection {
    background: #fe6d4c;
    color: #fff
}

.at4-icon-fw {
    display: inline-block;
    background-repeat: no-repeat;
    background-position: 0 0;
    margin: 0 5px 0 0;
    overflow: hidden;
    text-indent: -9999em;
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%
}

.at44-follow-container a.aticon {
    height: 2pc;
    margin: 0 5px 5px 0
}

.at44-follow-container .at4-icon-fw {
    margin: 0
}

#at4-share, #at4-soc {
    top: 20% !important;
    bottom: auto
}


