/*********************************************/
/***** Cbp-So-Scroller BEGIN *****/
/*********************************************/
.cbp-so-scroller {
    overflow: hidden;
}
/******* Clear floats of children *******/
.cbp-so-section:before,
.cbp-so-section:after {
    content: " ";
    display: table;
}
.cbp-so-section:after {
	clear: both;
}
/******* Sides *******/
.cbp-so-side {
	-webkit-transition: -webkit-transform 1s, opacity 1s;
    -moz-transition: -moz-transform 1s, opacity 1s;
    -ms-transition: -moz-transform 1s, opacity 1s;
    -o-transition: -moz-transform 1s, opacity 1s;
	transition: transform 1s, opacity 1s;
}
/******* Clear floats of children *******/
.cbp-so-side:before,
.cbp-so-side:after {
	content: " ";
	display: table;
}
.cbp-so-side:after {
	clear: both;
}
/******* Initial state (hidden or anything else) *******/
.cbp-so-init .cbp-so-side {
	opacity: 0;
}
.cbp-so-init .cbp-so-side-left {
	-webkit-transform: translateX(-90px);
	-moz-transform: translateX(-90px);
    -ms-transform: translateX(-90px);
    -o-transform: translateX(-90px);
	transform: translateX(-90px);
}
.cbp-so-init .cbp-so-side-right {
	-webkit-transform: translateX(90px);
	-moz-transform: translateX(90px);
    -ms-transform: translateX(90px);
    -o-transform: translateX(90px);
	transform: translateX(90px);
}
.cbp-so-init .cbp-so-side-top {
    -webkit-transform: translateY(-90px);
	-moz-transform: translateY(-90px);
    -ms-transform: translateX(-90px);
    -o-transform: translateX(-90px);
	transform: translateY(-90px);
}
.cbp-so-init .cbp-so-side-bottom {
	-webkit-transform: translateY(90px);
	-moz-transform: translateY(90px);
    -ms-transform: translateX(90px);
    -o-transform: translateX(90px);
	transform: translateY(90px);
}

/******* Animated state *******/
/* add you final states (transition) or your effects (animations) for each side */
.cbp-so-section.cbp-so-animate .cbp-so-side-left,
.cbp-so-section.cbp-so-animate .cbp-so-side-right,
.cbp-so-section.cbp-so-animate .cbp-so-side-top,
.cbp-so-section.cbp-so-animate .cbp-so-side-bottom {
	-webkit-transform: translateX(0px);
	-moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
	transform: translateX(0px);
	opacity: 1;
}
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-ms-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
.cbp-so-section.cbp-so-animate .cbp-so-side-fadeIn {
    opacity: 0;  /* make things invisible upon start */
    -webkit-animation: fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
    -moz-animation: fadeIn ease-in 1;
    -ms-animation: fadeIn ease-in 1;
    -o-animation: fadeIn ease-in 1;
    animation: fadeIn ease-in 1;
    -webkit-animation-fill-mode: forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
    -moz-animation-fill-mode: forwards;
    -ms-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
    -ms-animation-duration: 1s;
    -o-animation-duration: 1s;
	animation-duration: 1s;
}

.cbp-so-section.cbp-so-animate .cbp-so-side-fadeIn:nth-child(1) {
    -webkit-animation-delay: 0.4s;
    -moz-animation-delay: 0.4s;
    -ms-animation-delay: 0.4s;
    -o-animation-delay: 0.4s;
    animation-delay: 0.4s;
}
.cbp-so-section.cbp-so-animate .cbp-so-side-fadeIn:nth-child(2) {
    -webkit-animation-delay: 0.8s;
    -moz-animation-delay: 0.8s;
    -ms-animation-delay: 0.8s;
    -o-animation-delay: 0.8s;
    animation-delay: 0.8s;
}
.cbp-so-section.cbp-so-animate .cbp-so-side-fadeIn:nth-child(3) {
    -webkit-animation-delay: 1.2s;
    -moz-animation-delay: 1.2s;
    -ms-animation-delay: 1.2s;
    -o-animation-delay: 1.2s;
    animation-delay: 1.2s;
}
.cbp-so-section.cbp-so-animate .cbp-so-side-fadeIn:nth-child(4) {
    -webkit-animation-delay: 1.6s;
    -moz-animation-delay: 1.6s;
    -ms-animation-delay: 1.6s;
    -o-animation-delay: 1.6s;
    animation-delay: 1.6s;
}
.cbp-so-section.cbp-so-animate .cbp-so-side-fadeIn:nth-child(5) {
    -webkit-animation-delay: 2.0s;
    -moz-animation-delay: 2.0s;
    -ms-animation-delay: 2.0s;
    -o-animation-delay: 2.0s;
    animation-delay: 2.0s;
}
.cbp-so-section.cbp-so-animate .cbp-so-side-fadeIn:nth-child(6) {
    -webkit-animation-delay: 2.4s;
    -moz-animation-delay: 2.4s;
    -ms-animation-delay: 2.4s;
    -o-animation-delay: 2.4s;
    animation-delay: 2.4s;
}
.cbp-so-section.cbp-so-animate .cbp-so-side-fadeIn:nth-child(7) {
    -webkit-animation-delay: 2.8s;
    -moz-animation-delay: 2.8s;
    -ms-animation-delay: 2.8s;
    -o-animation-delay: 2.8s;
    animation-delay: 2.8s;
}
.cbp-so-section.cbp-so-animate .cbp-so-side-fadeIn:nth-child(8) {
    -webkit-animation-delay: 3.2s;
    -moz-animation-delay: 3.2s;
    -ms-animation-delay: 3.2s;
    -o-animation-delay: 3.2s;
    animation-delay: 3.2s;
}
/*********************************************/
/***** END Cbp-So-Scroller *****/
/*********************************************/





/*********************************************/
/***** Menu Toggle Switches BEGIN*****/
/*********************************************/
.cmn-toggle-switch {
    position: relative;
    display: block;
    width: 60px;
    height: 40px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    box-shadow: none;
    border-radius: none;
    border: none;
    cursor: pointer;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -ms-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
}
.cmn-toggle-switch:focus {
    outline: none;
}
.cmn-toggle-switch span {
    display: block;
    position: absolute;
    top: 16px;
    left: 8px;
    right: 0;
    width: 32px;
    height: 4px;
    background-color: #000;
}
.cmn-toggle-switch span::before,
.cmn-toggle-switch span::after {
    position: absolute;
    display: block;
    left: 0;
    width: 32px;
    height: 4px;
    background-color: #000;
    content: "";
}
.cmn-toggle-switch span::before {
    top: -10px;
}
.cmn-toggle-switch span::after {
    bottom: -10px;
}
.cmn-toggle-switch em {
    display: block;
    position: absolute;
    bottom: -4px;
    left: 0;
    color: #000;
}
/**
 * Hamburger to "x" (htx). Takes on a hamburger shape, bars slide
 * down to center and transform into an "x".
 */
.cmn-toggle-switch__htx {
    background-color: transparent;
}
.cmn-toggle-switch__htx span {
    -webkit-transition: background 0 0.3s;
    -moz-transition: background 0 0.3s;
    -ms-transition: background 0 0.3s;
    -o-transition: background 0 0.3s;
    transition: background 0 0.3s;
}
.cmn-toggle-switch__htx span::before,
.cmn-toggle-switch__htx span::after {
    -webkit-transition-duration: 0.3s, 0.3s;
    -moz-transition-duration: 0.3s, 0.3s;
    -ms-transition-duration: 0.3s, 0.3s;
    -o-transition-duration: 0.3s, 0.3s;
    transition-duration: 0.3s, 0.3s;
    -webkit-transition-delay: 0.3s, 0;
    -moz-transition-delay: 0.3s, 0;
    -ms-transition-delay: 0.3s, 0;
    -o-transition-delay: 0.3s, 0;
    transition-delay: 0.3s, 0;
}
.cmn-toggle-switch__htx span::before {
    -webkit-transition-property: top, -webkit-transform;
    -moz-transition-property: top, -moz-transform;
    -ms-transition-property: top, -ms-transform;
    -o-transition-property: top, -webkit-transform;
    transition-property: top, transform;
}
.cmn-toggle-switch__htx span::after {
    -webkit-transition-property: bottom, -webkit-transform;
    -moz-transition-property: bottom, -moz-transform;
    -ms-transition-property: bottom, -ms-transform;
    -o-transition-property: bottom, -webkit-transform;
    transition-property: bottom, transform;
}
/* active state, i.e. menu open */
.cmn-toggle-switch__htx.active {
    background-color: transparent;
}
.cmn-toggle-switch__htx.active span {
    background: none;
}
.cmn-toggle-switch__htx.active span::before {
    top: 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.cmn-toggle-switch__htx.active span::after {
    bottom: 0;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(-45deg);
}
.cmn-toggle-switch__htx.active span::before,
.cmn-toggle-switch__htx.active span::after {
    -webkit-transition-delay: 0, 0.3s;
    -moz-transition-delay: 0, 0.3s;
    -ms-transition-delay: 0, 0.3s;
    -o-transition-delay: 0, 0.3s;
    transition-delay: 0, 0.3s;
    background-color: #FF2744;
}

.cmn-toggle-switch__htx.x-active span::before {
    top: 0;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.cmn-toggle-switch__htx.x-active span::after {
    bottom: 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.cmn-toggle-switch__htx.x-active span::before,
.cmn-toggle-switch__htx.x-active span::after {
    -webkit-transition-delay: 0, 0.3s;
    -moz-transition-delay: 0, 0.3s;
    -ms-transition-delay: 0, 0.3s;
    -o-transition-delay: 0, 0.3s;
    transition-delay: 0, 0.3s;
}
/*********************************************/
/***** END Menu Toggle Switches *****/
/*********************************************/





/*********************************************/
/***** Zoom In & Out BEGIN *****/
/*********************************************/
.zoom-in {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}
.zoom-in:hover{
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.zoom-out {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
	transform: scale(1);
	-webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
}
.zoom-out:hover {
	-webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
	transform: scale(1.1);
}
/*********************************************/
/***** END Zoom In & Out *****/
/*********************************************/





/*********************************************/
/***** Pulse & Tossing BEGIN *****/
/*********************************************/
.pulse{
    -webkit-animation: pulse 2s infinite;
    -moz-animation: pulse 2s infinite;
    -ms-animation: pulse 2s infinite;
    -o-animation: pulse 2s infinite;
    animation: pulse 2s infinite;
}
.tossing{
    -webkit-animation: tossing 2s infinite;
    -moz-animation: tossing 2s infinite;
    -ms-animation: tossing 2s infinite;
    -o-animation: tossing 2s infinite;
    animation: tossing 2s infinite;
}
@-webkit-keyframes pulse{
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255 ,255, 255, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(255 ,255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255 ,255, 255, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255 ,255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255 ,255, 255, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 10px rgba(255 ,255, 255, 0);
    box-shadow: 0 0 0 10px rgba(255 ,255, 255, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255 ,255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255 ,255, 255, 0);
  }
}
 
@-webkit-keyframes tossing{
    0% {
        -webkit-transform: rotate(-4deg);   
    }
    50% {
        -webkit-transform: rotate(4deg);
    }
    100% {
        -webkit-transform: rotate(-4deg);   
    }               
}
@keyframes tossing {
    0% {
        transform: rotate(-4deg);   
    }
    50% {
        transform: rotate(4deg);
    }
    100% {
        transform: rotate(-4deg);   
    }                       
}
/*********************************************/
/***** END Pulse & Tossing *****/
/*********************************************/





/*********************************************/
/***** Social Likes BEGIN *****/
/*********************************************/
.social-likes{
    display: inline-block;
    min-height: 32px;
    margin: 0;
    margin-top: 1em;
    line-height: 1;
    opacity: 0;
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.social-likes_visible{
    opacity: 1;
    -webkit-transition: opacity 0.1s ease-in;
    -moz-transition: opacity 0.1s ease-in;
    -ms-transition: opacity 0.1s ease-in;
    -o-transition: opacity 0.1s ease-in;
    transition: opacity 0.1s ease-in;
}
.social-likes>*{
    display: inline-block;
    visibility: hidden;
}
.social-likes_visible>*{
    visibility: inherit;
}
.social-likes__widget:before, .social-likes__widget:after{
    display: none!important;
}
.social-likes__widget{
    position: relative;
    display: inline-block;
    min-height: 32px;
    border: 0;
    margin: 0 8px 0 0;
    padding: 0;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    text-align: left;
}
/* S */
@media(max-width:480px){
    .social-likes__widget{
    	margin-bottom: 16px;
	}
}
.social-likes__button, .social-likes__counter{
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    margin: 0;
    vertical-align: middle;
    cursor: pointer;
    color: #FFF;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 200;
    text-decoration: none;
    text-align: center;
}
.social-likes__button{
    padding: 0 16px 0 8px;
    cursor: pointer;
    color: #FFF;
    text-rendering: optimizeLegibility;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -ms-osx-font-smoothing: grayscale;
    -o-osx-font-smoothing: grayscale;
}
.social-likes__counter{
    width: 32px;
    height: 32px;
    background-color: #FFF;
    border: 1px solid #E4E4E4;
    padding: 0;
    line-height: 32px;
    color: #222;
    text-rendering: optimizeLegibility;
}
.social-likes__counter::after{
    content: "";
    position: absolute;
    top: 10px;
    right: 0;
    bottom: 0;
    left: -5px;
    width: 0;
    height: 0;
    border-right: 5px solid white;
    border-bottom: 5px solid transparent;
    border-top: 5px solid transparent;
}

.social-likes__widget_facebook{
    background-color: #3D5B95;
}
.social-likes_light .social-likes__button_facebook{
    color: #3D5B95;
}
.social-likes__icon_facebook{
    left: .25em;
    top: .05em;
    font-size: 1.1em;
}
.social-likes_notext .social-likes__icon_facebook{
    margin-left: .15em;
}

.social-likes__widget_plusone{
    background-color: #D23E30;
}
.social-likes_light .social-likes__button_plusone{
    color: #D23E30;
}
.social-likes_notext .social-likes__icon_plusone{
    margin-left: 0;
}
.social-likes__icon_plusone{
    left: .25em;
}
.social-likes_light .social-likes__icon_plusone{
    margin-top: 0;
}

.social-likes__widget_twitter{
    background-color: #24AADD;
    line-height: 32px;
}
.social-likes_light .social-likes__button_twitter{
    color: #24AADD;
}
.social-likes__icon_twitter{
    top: .1em;
    left: .25em;
}
.social-likes_light .social-likes__icon_twitter{
    left: .1em;
}
/*********************************************/
/***** END Social Likes *****/
/*********************************************/