@charset "UTF-8";/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */

/* clearfix */
.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
/* display none until init */
.owl-carousel{
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper{
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer{
	overflow: hidden;
	position: relative;
	width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight{
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
	
.owl-carousel .owl-item{
	float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div{
	cursor: pointer;
}
.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing { 
    cursor:url(grabbing.png) 8 8, move;
}

/* fix */
.owl-carousel  .owl-wrapper,
.owl-carousel  .owl-item{
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility:    hidden;
	-ms-backface-visibility:     hidden;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
}

/* 
 *  Owl Carousel CSS3 Transitions 
 *  v1.3.2
 */

.owl-origin {
	-webkit-perspective: 1200px;
	-webkit-perspective-origin-x : 50%;
	-webkit-perspective-origin-y : 50%;
	-moz-perspective : 1200px;
	-moz-perspective-origin-x : 50%;
	-moz-perspective-origin-y : 50%;
	perspective : 1200px;
}
/* fade */
.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut .7s both ease;
  -moz-animation: fadeOut .7s both ease;
  animation: fadeOut .7s both ease;
}
.owl-fade-in {
  -webkit-animation: fadeIn .7s both ease;
  -moz-animation: fadeIn .7s both ease;
  animation: fadeIn .7s both ease;
}
/* backSlide */
.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  -moz-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease;
}
.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  -moz-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease;
}
/* goDown */
.owl-goDown-out {
  -webkit-animation: scaleToFade .7s ease both;
  -moz-animation: scaleToFade .7s ease both;
  animation: scaleToFade .7s ease both;
}
.owl-goDown-in {
  -webkit-animation: goDown .6s ease both;
  -moz-animation: goDown .6s ease both;
  animation: goDown .6s ease both;
}
/* scaleUp */
.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom .5s ease both;
  -moz-animation: scaleUpFrom .5s ease both;
  animation: scaleUpFrom .5s ease both;
}

.owl-fadeUp-out {
  -webkit-animation: scaleUpTo .5s ease both;
  -moz-animation: scaleUpTo .5s ease both;
  animation: scaleUpTo .5s ease both;
}
/* Keyframes */
/*empty*/
@-webkit-keyframes empty {
  0% {opacity: 1}
}
@-moz-keyframes empty {
  0% {opacity: 1}
}
@keyframes empty {
  0% {opacity: 1}
}
@-webkit-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-moz-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-webkit-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-moz-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-webkit-keyframes backSlideOut {
  25% { opacity: .5; -webkit-transform: translateZ(-500px); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
}
@-moz-keyframes backSlideOut {
  25% { opacity: .5; -moz-transform: translateZ(-500px); }
  75% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
}
@keyframes backSlideOut {
  25% { opacity: .5; transform: translateZ(-500px); }
  75% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
}
@-webkit-keyframes backSlideIn {
  0%, 25% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px); }
  100% { opacity: 1; -webkit-transform: translateZ(0) translateX(0); }
}
@-moz-keyframes backSlideIn {
  0%, 25% { opacity: .5; -moz-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -moz-transform: translateZ(-500px); }
  100% { opacity: 1; -moz-transform: translateZ(0) translateX(0); }
}
@keyframes backSlideIn {
  0%, 25% { opacity: .5; transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; transform: translateZ(-500px); }
  100% { opacity: 1; transform: translateZ(0) translateX(0); }
}
@-webkit-keyframes scaleToFade {
  to { opacity: 0; -webkit-transform: scale(.8); }
}
@-moz-keyframes scaleToFade {
  to { opacity: 0; -moz-transform: scale(.8); }
}
@keyframes scaleToFade {
  to { opacity: 0; transform: scale(.8); }
}
@-webkit-keyframes goDown {
  from { -webkit-transform: translateY(-100%); }
}
@-moz-keyframes goDown {
  from { -moz-transform: translateY(-100%); }
}
@keyframes goDown {
  from { transform: translateY(-100%); }
}

@-webkit-keyframes scaleUpFrom {
  from { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpFrom {
  from { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpFrom {
  from { opacity: 0; transform: scale(1.5); }
}

@-webkit-keyframes scaleUpTo {
  to { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpTo {
  to { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpTo {
  to { opacity: 0; transform: scale(1.5); }
}/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.3
*/

.owl-theme .owl-controls{
	margin-top: 10px;
	text-align: center;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div{
	color: #FFF;
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	margin: 5px;
	padding: 3px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	background: #869791;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	text-decoration: none;
}

/* Styling Pagination*/

.owl-theme .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span{
	display: block;
	width: 12px;
	height: 12px;
	margin: 5px 7px;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #869791;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
}

/* If PaginationNumbers is true */

.owl-theme .owl-controls .owl-page span.owl-numbers{
	height: auto;
	width: auto;
	color: #FFF;
	padding: 2px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

/* preloading images */
.owl-item.loading{
	min-height: 150px;
	background: url(../addad/img/AjaxLoader.gif) no-repeat center center
}.col-xs-5ths,.col-sm-5ths,.col-md-5ths,.col-lg-5ths,.col-xl-5ths{position:relative;min-height:1px;padding-right:10px;padding-left:10px}.col-xs-5ths{width:20%;float:left}@media (min-width:768px){.col-sm-5ths{width:20%;float:left}}@media (min-width:992px){.col-md-5ths{width:20%;float:left}}@media (min-width:1200px){.col-lg-5ths{width:20%;float:left}}/*! normalize.css v3.0.1 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}@media print{*{text-shadow:none !important;color:#000 !important;background:transparent !important;box-shadow:none !important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}select{background:#fff !important}.navbar{display:none}.table td,.table th{background-color:#fff !important}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000 !important}.label{border:1px solid #000}.table{border-collapse:collapse !important}.table-bordered th,.table-bordered td{border:1px solid #ddd !important}}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-size:1rem;line-height:1.55;color:#323232;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#ff8430;text-decoration:none}a:hover,a:focus{color:#e35c00;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive,.thumbnail>img,.thumbnail a>img{display:block;width:auto;width:100% \9;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.55;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;width:auto;width:100% \9;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:"Exo 2","Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:700;line-height:1.1;color:#323232}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:normal;line-height:1;color:#777}h1,.h1,h2,.h2,h3,.h3{margin-top:1rem;margin-bottom:.5rem}h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:.5rem;margin-bottom:.5rem}h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small{font-size:75%}h1,.h1{font-size:2rem}h2,.h2{font-size:2rem}h3,.h3{font-size:2rem}h4,.h4{font-size:2rem}h5,.h5{font-size:1rem}h6,.h6{font-size:1rem}p{margin:0 0 .5rem}.lead{margin-bottom:1rem;font-size:1rem;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:1.5rem}}small,.small{font-size:100%}cite{font-style:normal}mark,.mark{background-color:#fcf8e3;padding:.2em}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#428bca}a.text-primary:hover{color:#3071a9}.text-success{color:#3c763d}a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#428bca}a.bg-primary:hover{background-color:#3071a9}.bg-success{background-color:#dff0d8}a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:-0.5rem;margin:2rem 0 1rem;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:.5rem}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none;margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:1rem}dt,dd{line-height:1.55}dt{font-weight:bold}dd{margin-left:0}@media (min-width:992px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:.5rem 1rem;margin:0 0 1rem;font-size:1.25rem;border-left:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.55;color:#777}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}.blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:''}.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}blockquote:before,blockquote:after{content:""}address{margin-bottom:1rem;font-style:normal;line-height:1.55}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25)}kbd kbd{padding:0;font-size:100%;box-shadow:none}pre{display:block;padding:0;margin:0 0 .5rem;font-size:0;line-height:1.55;word-break:break-all;word-wrap:break-word;color:#333;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-right:auto;margin-left:auto;padding-left:10px;padding-right:10px}@media (min-width:768px){.container{width:740px}}@media (min-width:992px){.container{width:960px}}@media (min-width:1200px){.container{width:1170px}}@media (min-width:1600px){.container{width:1560px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:10px;padding-right:10px}.row{margin-left:-10px;margin-right:-10px}.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12{position:relative;min-height:1px;padding-left:10px;padding-right:10px}.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}@media (min-width:1600px){.col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12{float:left}.col-xl-12{width:100%}.col-xl-11{width:91.66666667%}.col-xl-10{width:83.33333333%}.col-xl-9{width:75%}.col-xl-8{width:66.66666667%}.col-xl-7{width:58.33333333%}.col-xl-6{width:50%}.col-xl-5{width:41.66666667%}.col-xl-4{width:33.33333333%}.col-xl-3{width:25%}.col-xl-2{width:16.66666667%}.col-xl-1{width:8.33333333%}.col-xl-pull-12{right:100%}.col-xl-pull-11{right:91.66666667%}.col-xl-pull-10{right:83.33333333%}.col-xl-pull-9{right:75%}.col-xl-pull-8{right:66.66666667%}.col-xl-pull-7{right:58.33333333%}.col-xl-pull-6{right:50%}.col-xl-pull-5{right:41.66666667%}.col-xl-pull-4{right:33.33333333%}.col-xl-pull-3{right:25%}.col-xl-pull-2{right:16.66666667%}.col-xl-pull-1{right:8.33333333%}.col-xl-pull-0{right:auto}.col-xl-push-12{left:100%}.col-xl-push-11{left:91.66666667%}.col-xl-push-10{left:83.33333333%}.col-xl-push-9{left:75%}.col-xl-push-8{left:66.66666667%}.col-xl-push-7{left:58.33333333%}.col-xl-push-6{left:50%}.col-xl-push-5{left:41.66666667%}.col-xl-push-4{left:33.33333333%}.col-xl-push-3{left:25%}.col-xl-push-2{left:16.66666667%}.col-xl-push-1{left:8.33333333%}.col-xl-push-0{left:auto}.col-xl-offset-12{margin-left:100%}.col-xl-offset-11{margin-left:91.66666667%}.col-xl-offset-10{margin-left:83.33333333%}.col-xl-offset-9{margin-left:75%}.col-xl-offset-8{margin-left:66.66666667%}.col-xl-offset-7{margin-left:58.33333333%}.col-xl-offset-6{margin-left:50%}.col-xl-offset-5{margin-left:41.66666667%}.col-xl-offset-4{margin-left:33.33333333%}.col-xl-offset-3{margin-left:25%}.col-xl-offset-2{margin-left:16.66666667%}.col-xl-offset-1{margin-left:8.33333333%}.col-xl-offset-0{margin-left:0}}table{background-color:transparent}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:1rem}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.55;vertical-align:top;border-top:1px solid #ddd}.table{width:100%;max-width:100%;margin-bottom:1rem}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.55;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr:last-child,.table>tbody>tr:last-child,.table>tfoot>tr:last-child{border-bottom:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-child(even)>td,.table-striped>tbody>tr:nth-child(even)>th{background-color:#f9f9f9}.table-hover>tbody>tr:hover>td,.table-hover>tbody>tr:hover>th{background-color:#f5f5f5}table col[class*="col-"]{position:static;float:none;display:table-column}table td[class*="col-"],table th[class*="col-"]{position:static;float:none;display:table-cell}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:.75rem;overflow-y:hidden;overflow-x:auto;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd;-webkit-overflow-scrolling:touch}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{padding:0;margin:0;border:0;min-width:0}legend{display:block;width:100%;padding:0;margin-bottom:1rem;font-size:1.5rem;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:bold}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]{display:block}input[type="range"]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:1rem;line-height:1.55;color:#323232}.form-control{display:block;width:100%;height:15rem;padding:6px 16px;font-size:1rem;line-height:1.55;color:#323232;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6)}.form-control::-moz-placeholder{color:rgba(50,50,50,0.6);opacity:1}.form-control:-ms-input-placeholder{color:rgba(50,50,50,0.6)}.form-control::-webkit-input-placeholder{color:rgba(50,50,50,0.6)}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{cursor:not-allowed;background-color:#eee;opacity:1}textarea.form-control{height:auto}input[type="search"]{-webkit-appearance:none}input[type="date"],input[type="time"],input[type="datetime-local"],input[type="month"]{line-height:15rem;line-height:1.55 \0}input[type="date"].input-sm,input[type="time"].input-sm,input[type="datetime-local"].input-sm,input[type="month"].input-sm{line-height:13rem}input[type="date"].input-lg,input[type="time"].input-lg,input[type="datetime-local"].input-lg,input[type="month"].input-lg{line-height:25rem}.form-group{margin-bottom:15px}.radio,.checkbox{position:relative;display:block;min-height:1rem;margin-top:10px;margin-bottom:10px}.radio label,.checkbox label{padding-left:20px;margin-bottom:0;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{position:absolute;margin-left:-20px;margin-top:4px \9}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:normal;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"].disabled,input[type="checkbox"].disabled,fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"]{cursor:not-allowed}.radio-inline.disabled,.checkbox-inline.disabled,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.radio.disabled label,.checkbox.disabled label,fieldset[disabled] .radio label,fieldset[disabled] .checkbox label{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-left:0;padding-right:0}.input-sm,.form-horizontal .form-group-sm .form-control{height:13rem;padding:5px 13px;font-size:1rem;line-height:1.5;border-radius:3px}select.input-sm{height:13rem;line-height:13rem}textarea.input-sm,select[multiple].input-sm{height:auto}.input-lg,.form-horizontal .form-group-lg .form-control{height:25rem;padding:10px 20px;font-size:2rem;line-height:1.33;border-radius:6px}select.input-lg{height:25rem;line-height:25rem}textarea.input-lg,select[multiple].input-lg{height:auto}.has-feedback{position:relative}.has-feedback .form-control{padding-right:18.75rem}.form-control-feedback{position:absolute;top:6rem;right:0;z-index:2;display:block;width:15rem;height:15rem;line-height:15rem;text-align:center}.input-lg+.form-control-feedback{width:25rem;height:25rem;line-height:25rem}.input-sm+.form-control-feedback{width:13rem;height:13rem;line-height:13rem}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-error .form-control-feedback{color:#a94442}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#727272}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-left:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .radio,.form-horizontal .checkbox{min-height:8rem}.form-horizontal .form-group{margin-left:-10px;margin-right:-10px}@media (min-width:768px){.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.form-horizontal .has-feedback .form-control-feedback{top:0;right:10px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:14.3px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px}}.btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;vertical-align:middle;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 16px;font-size:1rem;line-height:1.55;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn:focus,.btn:active:focus,.btn.active:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus{color:#333;text-decoration:none}.btn:active,.btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;pointer-events:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:hover,.btn-default:focus,.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#428bca;border-color:#357ebd}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#3071a9}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{background-color:#428bca;border-color:#357ebd}.btn-primary .badge{color:#428bca;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#ff8430;font-weight:normal;cursor:pointer;border-radius:0}.btn-link,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#e35c00;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#777;text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:10px 20px;font-size:2rem;line-height:1.33;border-radius:6px}.btn-sm,.btn-group-sm>.btn{padding:5px 13px;font-size:1rem;line-height:1.5;border-radius:3px}.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:1rem;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;-o-transition:height .35s ease;transition:height .35s ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:1rem;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:-0.5rem 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.55;color:#333;white-space:nowrap}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#777}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:1rem;line-height:1.55;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}@media (min-width:992px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group>.btn:focus,.btn-group-vertical>.btn:focus{outline:0}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child>.btn:last-child,.btn-group>.btn-group:first-child>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-bottom-left-radius:4px;border-top-right-radius:0;border-top-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle="buttons"]>.btn>input[type="radio"],[data-toggle="buttons"]>.btn>input[type="checkbox"]{position:absolute;z-index:-1;opacity:0;filter:alpha(opacity=0)}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*="col-"]{float:none;padding-left:0;padding-right:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:25rem;padding:10px 20px;font-size:2rem;line-height:1.33;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:25rem;line-height:25rem}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn,select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:13rem;padding:5px 13px;font-size:1rem;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:13rem;line-height:13rem}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn,select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 16px;font-size:1rem;font-weight:normal;line-height:1;color:#323232;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 13px;font-size:1rem;border-radius:3px}.input-group-addon.input-lg{padding:10px 20px;font-size:2rem;border-radius:6px}.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:hover,.input-group-btn>.btn:focus,.input-group-btn>.btn:active{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{margin-left:-1px}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .nav-divider{height:1px;margin:-0.5rem 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.55;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#428bca}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:65px;margin-bottom:0;border:1px solid transparent}@media (min-width:992px){.navbar{border-radius:4px}}@media (min-width:992px){.navbar-header{float:left}}.navbar-collapse{overflow-x:visible;padding-right:10px;padding-left:10px;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:992px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block !important;height:auto !important;padding-bottom:0;overflow:visible !important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-left:0;padding-right:0}}.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:355px}@media (max-width:480px) and (orientation:landscape){.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:200px}}.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:-10px;margin-left:-10px}@media (min-width:992px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:992px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}@media (min-width:992px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{position:relative;top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:32px 10px;font-size:2rem;line-height:1rem;height:65px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}@media (min-width:992px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-10px}}.navbar-toggle{position:relative;float:right;margin-right:10px;padding:9px 10px;margin-top:15.5px;margin-bottom:15.5px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:992px){.navbar-toggle{display:none}}.navbar-nav{margin:16px -10px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:1rem}@media (max-width:991px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:1rem}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width:992px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:32px;padding-bottom:32px}.navbar-nav.navbar-right:last-child{margin-right:-10px}}@media (min-width:992px){.navbar-left{float:left !important}.navbar-right{float:right !important}}.navbar-form{margin-left:-10px;margin-right:-10px;padding:10px 10px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);margin-top:25px;margin-bottom:25px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn,.navbar-form .input-group .form-control{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .radio label,.navbar-form .checkbox label{padding-left:0}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:991px){.navbar-form .form-group{margin-bottom:5px}}@media (min-width:992px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}.navbar-form.navbar-right:last-child{margin-right:-10px}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:25px;margin-bottom:25px}.navbar-btn.btn-sm{margin-top:26px;margin-bottom:26px}.navbar-btn.btn-xs{margin-top:21.5px;margin-bottom:21.5px}.navbar-text{margin-top:32px;margin-bottom:32px}@media (min-width:992px){.navbar-text{float:left;margin-left:10px;margin-right:10px}.navbar-text.navbar-right:last-child{margin-right:0}}.navbar-nav>li>a{color:#FFF}.navbar-nav>li>a:hover,.navbar-nav>li>a:focus{color:#FFF;background-color:#7c7c7c}.breadcrumb{padding:8px 15px;margin-bottom:1rem;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#ccc}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:1rem 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 16px;line-height:1.55;text-decoration:none;color:#ff8430;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{color:#e35c00;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:2;color:#fff;background-color:#428bca;border-color:#428bca;cursor:default}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#777;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 20px;font-size:2rem}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 13px;font-size:1rem}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.pager{padding-left:0;margin:1rem 0;list-style:none;text-align:center}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#777;background-color:#fff;cursor:not-allowed}.thumbnail{display:block;padding:4px;margin-bottom:1rem;line-height:1.55;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.thumbnail>img,.thumbnail a>img{margin-left:auto;margin-right:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#ff8430}.thumbnail .caption{padding:9px;color:#323232}.alert{padding:15px;margin-bottom:1rem;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:bold}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}.media,.media-body{overflow:hidden;zoom:1}.media,.media .media{margin-top:15px}.media:first-child{margin-top:0}.media-object{display:block}.media-heading{margin:0 0 5px}.media>.pull-left{margin-right:10px}.media>.pull-right{margin-left:10px}.media-list{padding-left:0;list-style:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}a.list-group-item{color:#555}a.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,a.list-group-item:focus{text-decoration:none;color:#555;background-color:#f5f5f5}.list-group-item.disabled,.list-group-item.disabled:hover,.list-group-item.disabled:focus{background-color:#eee;color:#777}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{z-index:2;color:#fff;background-color:#428bca;border-color:#428bca}.list-group-item.active .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>.small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:hover .list-group-item-text,.list-group-item.active:focus .list-group-item-text{color:#e1edf7}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,a.list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:hover,a.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:hover,a.list-group-item-info:focus{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:hover,a.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,a.list-group-item-warning:focus{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,a.list-group-item-danger:focus{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:1rem;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05);box-shadow:0 1px 1px rgba(0,0,0,0.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:3px;border-top-left-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:2rem;color:inherit}.panel-title>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group{margin-bottom:0}.panel>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:3px;border-top-left-radius:3px}.panel>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.table,.panel>.table-responsive>.table,.panel>.panel-collapse>.table{margin-bottom:0}.panel>.table:first-child,.panel>.table-responsive:first-child>.table:first-child{border-top-right-radius:3px;border-top-left-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table:last-child,.panel>.table-responsive:last-child>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child th,.panel>.table>tbody:first-child>tr:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:1rem}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#428bca}.panel-primary>.panel-heading{color:#fff;background-color:#428bca;border-color:#428bca}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#428bca}.panel-primary>.panel-heading .badge{color:#428bca;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#428bca}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0}.embed-responsive.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:1.5rem;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{display:none;overflow:hidden;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translate3d(0, -25%, 0);transform:translate3d(0, -25%, 0);-webkit-transition:-webkit-transform 0.3s ease-out;-moz-transition:-moz-transform 0.3s ease-out;-o-transition:-o-transform 0.3s ease-out;transition:transform 0.3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5);background-clip:padding-box;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#141414}.modal-backdrop.fade{opacity:0}.modal-backdrop.in{opacity:.7}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5;min-height:16.55px}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.55}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}@media (min-width:1200px){.modal-lg{width:1198px}}.tooltip{position:absolute;z-index:1070;display:block;visibility:visible;font-size:1rem;line-height:1.4;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{bottom:0;left:5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;right:5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;left:5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;right:5px;border-width:0 5px 5px;border-bottom-color:#000}.clearfix:before,.clearfix:after,.dl-horizontal dd:before,.dl-horizontal dd:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after,.btn-toolbar:before,.btn-toolbar:after,.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after,.pager:before,.pager:after,.panel-body:before,.panel-body:after,.modal-footer:before,.modal-footer:after,.container-wide:before,.container-wide:after{content:" ";display:table}.clearfix:after,.dl-horizontal dd:after,.container:after,.container-fluid:after,.row:after,.form-horizontal .form-group:after,.btn-toolbar:after,.btn-group-vertical>.btn-group:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after,.pager:after,.panel-body:after,.modal-footer:after,.container-wide:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important;visibility:hidden !important}.affix{position:fixed;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none !important}.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{display:none !important}@media (max-width:767px){.visible-xs{display:block !important}table.visible-xs{display:table}tr.visible-xs{display:table-row !important}th.visible-xs,td.visible-xs{display:table-cell !important}}@media (max-width:767px){.visible-xs-block{display:block !important}}@media (max-width:767px){.visible-xs-inline{display:inline !important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block !important}table.visible-sm{display:table}tr.visible-sm{display:table-row !important}th.visible-sm,td.visible-sm{display:table-cell !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block !important}table.visible-md{display:table}tr.visible-md{display:table-row !important}th.visible-md,td.visible-md{display:table-cell !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block !important}}@media (min-width:1200px){.visible-lg{display:block !important}table.visible-lg{display:table}tr.visible-lg{display:table-row !important}th.visible-lg,td.visible-lg{display:table-cell !important}}@media (min-width:1200px){.visible-lg-block{display:block !important}}@media (min-width:1200px){.visible-lg-inline{display:inline !important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block !important}}@media (max-width:767px){.hidden-xs{display:none !important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none !important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none !important}}@media (min-width:1200px){.hidden-lg{display:none !important}}.visible-print{display:none !important}@media print{.visible-print{display:block !important}table.visible-print{display:table}tr.visible-print{display:table-row !important}th.visible-print,td.visible-print{display:table-cell !important}}.visible-print-block{display:none !important}@media print{.visible-print-block{display:block !important}}.visible-print-inline{display:none !important}@media print{.visible-print-inline{display:inline !important}}.visible-print-inline-block{display:none !important}@media print{.visible-print-inline-block{display:inline-block !important}}@media print{.hidden-print{display:none !important}}#content-wrapper{padding:40px 0 20px 0}.widget h2 img{display:inline}.navbar-relative-top{margin-bottom:0;position:relative}.navbar-relative-top .navbar-inner{min-height:65px;padding-right:0;padding-left:0;-webkit-box-shadow:0 1px 10px rgba(0,0,0,0.1);-moz-box-shadow:0 1px 10px rgba(0,0,0,0.1);box-shadow:0 1px 10px rgba(0,0,0,0.1);-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.navbar-relative-top .container{max-width:1170px}@media (max-width:979px){.navbar-relative-top{position:static;margin-left:-20px;margin-right:-20px;padding:0}.navbar-relative-top{margin-bottom:20px}.navbar-relative-top .navbar-inner{padding:10px}}@media (max-width:767px){}.navbar div.nav{position:relative;left:0;display:block;float:left;margin-top:8px}.navbar .navbar-inner div.nav ul{position:relative;left:0;display:block;float:left;margin:0 10px 0 0}.navbar .navbar-inner div.nav ul li{float:left;list-style:none;display:block;line-height:18px;color:#FFF}.navbar .navbar-inner div.nav ul li a{color:#FFF;float:none;padding:9px 10px 11px;line-height:19px}.navbar .navbar-inner div.nav ul li a:hover{color:#FFF;text-decoration:none}.navbar .navbar-inner div.nav ul li.current_page_item a{color:#FFF;text-decoration:none;background-color:#494949}img.alignnone{display:block;position:relative}img.alignright{float:right;margin:5px;display:inline}img.alignleft{float:left;margin:5px;display:inline}img.aligncenter{display:block;text-align:center;margin:auto}*,*::after,*::before{box-sizing:border-box}@media only screen and (max-width:991px){body.nav-on-left.overflow-hidden{overflow:hidden}}.cd-main-content{min-height:100vh;z-index:2;position:relative}.no-js .cd-primary-nav{position:relative;height:auto;width:100%;overflow:visible;visibility:visible;z-index:2}.main-wrapper{background:#FFF}.cd-img-replace{display:inline-block;overflow:hidden;text-indent:100%;white-space:nowrap}.cd-nav ol,.cd-nav ul{list-style:none;padding:0}.cd-nav{font-size:1.15rem;position:fixed;height:100%;right:0;top:0;visibility:hidden;z-index:1;width:280px;background-color:#ff8d40;overflow-y:auto;-webkit-overflow-scrolling:touch}.cd-nav>.content{margin:40px 0}.cd-nav .cd-navigation{max-width:100%}.cd-nav .sub-menu{padding:0 0 10px 15px;display:none}.cd-nav .sub-menu .sub-menu,.cd-nav>ul>li>.submenu{padding-bottom:0;display:block}.cd-nav li{width:100%}.cd-nav>ul>li{margin:2px 0}.cd-nav a{display:block;line-height:1.4em;padding:5px 10px 5px 30px;color:#FFF;font-weight:400;font-size:1.063em;font-family:"Exo 2","Helvetica Neue",Helvetica,Arial,sans-serif}@media (min-width:768px) and (max-width:991px){.cd-nav a{padding-left:50px}}.cd-nav .sub-menu a{font-weight:300}.cd-nav>ul>li.menu-item-has-children>a{margin-right:10px;padding-right:35px}.cd-nav .menu-item.current-menu-item>a span,.cd-nav .menu-item.current-menu-item>a span:hover,.cd-nav .menu-item.current-menu-item>a span:focus{color:#494949}.cd-nav .menu-item>a>span{display:inline-block;height:100%;width:100%}.cd-nav .menu-item>a>span:hover,.cd-nav .menu-item>a>span:focus{color:#7c7c7c}.cd-nav .menu-item-has-children>a{position:relative}.cd-nav .menu-item-has-children>a>span{width:100%}nav.cd-nav.slidebar .nav>li>a:hover,nav.cd-nav.slidebar .nav>li>a:focus{background:none}nav.cd-nav.slidebar button.addad-dropdown-toggle{position:absolute;right:0;border:none;top:50%;-ms-transform:translateY(-50%);-webkit-transform:translateY(-50%);transform:translateY(-50%);width:29px;height:30px;padding:0}nav.cd-nav.slidebar button.addad-dropdown-toggle::before,nav.cd-nav.slidebar button.addad-dropdown-toggle::after{width:7px}nav.cd-nav.slidebar button.addad-dropdown-toggle::before{right:13px}nav.cd-nav.slidebar button.addad-dropdown-toggle::after{right:9px}nav.cd-nav.slidebar:not(.main-nav-wrapper){width:285px;padding-top:0;padding-left:0;padding-right:0}nav.cd-nav.slidebar:not(.main-nav-wrapper) .header{display:none;padding-left:25px;padding-right:50px}nav.cd-nav.slidebar:not(.main-nav-wrapper) li{margin:2px 0}nav.cd-nav.slidebar:not(.main-nav-wrapper) li>a{padding:5px 50px 5px 30px}@media (max-width:991px){nav.cd-nav.slidebar:not(.main-nav-wrapper) li>a{font-size:1.25rem}}@media (min-width:992px){nav.cd-nav.slidebar:not(.main-nav-wrapper) li>a{font-size:1rem}}@media (max-width:991px){nav.cd-nav.slidebar:not(.main-nav-wrapper) li li a{font-size:1.063em}}@media (min-width:992px){nav.cd-nav.slidebar:not(.main-nav-wrapper) li li a{font-size:.9em}}nav.cd-nav.slidebar:not(.main-nav-wrapper) .addad-dropdown-toggle{margin-right:20px;border-radius:3px}nav.cd-nav.slidebar:not(.main-nav-wrapper) .-close{line-height:.7;padding:.55em .55em .2em .2em}@media (min-width:768px) and (max-width:991px){nav.cd-nav.slidebar:not(.main-nav-wrapper){width:345px}nav.cd-nav.slidebar:not(.main-nav-wrapper) li>a{padding:5px 70px 5px 50px}nav.cd-nav.slidebar:not(.main-nav-wrapper) .addad-dropdown-toggle{margin-right:40px}}.cd-nav .cd-nav-break{display:block;height:1px;width:100%;margin:.35em 0;background:#ff964e}.slide-nav-trigger{position:relative;width:44px;height:44px;overflow:hidden;white-space:nowrap;color:transparent;z-index:3}.navbar-design-side .navbar-toggle.slide-nav-trigger{display:inline-block}.slide-nav-trigger span,.slide-nav-trigger span::before,.slide-nav-trigger span::after{position:absolute;display:inline-block;height:3px;width:24px;background:inherit}.slide-nav-trigger span{position:absolute;top:50%;right:10px;margin-top:-2px;-webkit-transition:background .3s .3s;-moz-transition:background .3s .3s;transition:background .3s .3s;background:#2e3233}.slide-nav-trigger span::before,.slide-nav-trigger span::after{content:'';right:0;-webkit-transform:translateZ(0);-moz-transform:translateZ(0);-ms-transform:translateZ(0);-o-transform:translateZ(0);transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform-origin:0 50%;-moz-transform-origin:0 50%;-ms-transform-origin:0 50%;-o-transform-origin:0 50%;transform-origin:0 50%;-webkit-transition:-webkit-transform .3s .3s;-moz-transition:-moz-transform .3s .3s;transition:transform .3s .3s}.slide-nav-trigger span::before{top:-6px}.slide-nav-trigger span::after{top:6px}.slide-nav-trigger.nav-is-visible span{background:rgba(46,50,51,0)}.slide-nav-trigger.nav-is-visible span::before{-webkit-transform:translateX(4px) translateY(-3px) rotate(45deg);-moz-transform:translateX(4px) translateY(-3px) rotate(45deg);-ms-transform:translateX(4px) translateY(-3px) rotate(45deg);-o-transform:translateX(4px) translateY(-3px) rotate(45deg);transform:translateX(4px) translateY(-3px) rotate(45deg)}.slide-nav-trigger.nav-is-visible span::after{-webkit-transform:translateX(4px) translateY(2px) rotate(-45deg);-moz-transform:translateX(4px) translateY(2px) rotate(-45deg);-ms-transform:translateX(4px) translateY(2px) rotate(-45deg);-o-transform:translateX(4px) translateY(2px) rotate(-45deg);transform:translateX(4px) translateY(2px) rotate(-45deg)}.cookie-consent{z-index:991;position:fixed;left:0;right:0;bottom:0;opacity:1;overflow:hidden;font-size:1rem;background:#222;color:#fff;font-family:"Exo 2","Helvetica Neue",Helvetica,Arial,sans-serif;box-sizing:border-box;-webkit-transition:bottom 200ms ease-in-out,opacity 300ms ease-in-out;-moz-transition:bottom 200ms ease-in-out,opacity 300ms ease-in-out;-ms-transition:bottom 200ms ease-in-out,opacity 300ms ease-in-out;-o-transition:bottom 200ms ease-in-out,opacity 300ms ease-in-out;transition:bottom 200ms ease-in-out,opacity 300ms ease-in-out}.cookie-consent>div{padding:10px;-ms-flex-align:center;-ms-grid-row-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap}@media (min-width:768px){.cookie-consent>div{padding:.9em 1.8em}}.cookie-consent:not(.showing){bottom:-100px;opacity:0}.cookie-consentdiv,.cookie-consent .cc_message,.cookie-consent .cc_btn{animation-duration:.8s;-webkit-animation-duration:.8s;-moz-animation-duration:.8s;-o-animation-duration:.8s;-webkit-animation-name:slideUp;animation-name:slideUp}.cookie-consent .cc_btn{background:#ff8430;color:#fff;width:auto;display:block;box-sizing:border-box;transition:background 200ms ease-in-out,color 200ms ease-in-out,box-shadow 200ms ease-in-out;-webkit-transition:background 200ms ease-in-out,color 200ms ease-in-out,box-shadow 200ms ease-in-out;border-radius:5px;-webkit-border-radius:5px;text-decoration:none;line-height:1;padding:8px 10px;cursor:pointer;text-align:center;margin-left:20px;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-line-pack:justify;align-content:space-between}@media (min-width:768px){.cookie-consent .cc_btn{padding:8px 15px}}.cookie-consent .cc_btn:hover,.cookie-consent .cc_btn:focus{background:#ffb583}.cookie-consent .cc_message{-ms-flex:1;flex:1;line-height:1.4;margin:0;transition:font-size 200ms}.cookie-consent .cc_message .cc_more_info{color:#ff8430;white-space:nowrap;text-decoration:none}.cookie-consent .cc_btn,.cookie-consent .cc_message{font-size:11px}@media (min-width:500px){.cookie-consent .cc_btn,.cookie-consent .cc_message{font-size:.8em}}@media (min-width:768px) and (max-width:991px){.cookie-consent .cc_btn,.cookie-consent .cc_message{font-size:.9em}}@media (min-width:992px){.cookie-consent .cc_btn,.cookie-consent .cc_message{font-size:.95em}}.cookie-consent[data-location='top']{position:relative;max-height:110px;-webkit-transition:max-height .3s;-o-transition:max-height .3s;transition:max-height .3s}.cookie-consent[data-location='top']>*{-webkit-transition:opacity .3s;-o-transition:opacity .3s;transition:opacity .3s;opacity:1}.cookie-consent[data-location='top']:not(.showing){bottom:auto;opacity:1;max-height:0;padding:0}.cookie-consent[data-location='top']:not(.showing)>*{opacity:0}.cookie-consent[data-location='bottom']{background:rgba(34,34,34,0.85)}.dropdown-submenu{position:relative}.dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px}.dropdown-submenu:hover>.dropdown-menu{display:block}.dropup .dropdown-submenu>.dropdown-menu{top:auto;bottom:0;margin-top:0;margin-bottom:-2px;-webkit-border-radius:5px 5px 5px 0;-moz-border-radius:5px 5px 5px 0;border-radius:5px 5px 5px 0}@media (min-width:1200px){.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.container:before,.container:after{content:" ";display:table}.container:after{clear:both}.container:before,.container:after{content:" ";display:table}.container:after{clear:both}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.container-fluid:before,.container-fluid:after{content:" ";display:table}.container-fluid:after{clear:both}.container-fluid:before,.container-fluid:after{content:" ";display:table}.container-fluid:after{clear:both}.form-group{margin-left:-15px;margin-right:-15px}.form-group:before,.form-group:after{content:" ";display:table}.form-group:after{clear:both}.form-group:before,.form-group:after{content:" ";display:table}.form-group:after{clear:both}.row{margin-left:-15px;margin-right:-15px}.row:before,.row:after{content:" ";display:table}.row:after{clear:both}.row:before,.row:after{content:" ";display:table}.row:after{clear:both}[class^="col"] .col-xs-1,.col-sm-1,.col-md-1,.col-lg-1,.col-xl-1,.col-xs-2,.col-sm-2,.col-md-2,.col-lg-2,.col-xl-2,.col-xs-3,.col-sm-3,.col-md-3,.col-lg-3,.col-xl-3,.col-xs-4,.col-sm-4,.col-md-4,.col-lg-4,.col-xl-4,.col-xs-5,.col-sm-5,.col-md-5,.col-lg-5,.col-xl-5,.col-xs-6,.col-sm-6,.col-md-6,.col-lg-6,.col-xl-6,.col-xs-7,.col-sm-7,.col-md-7,.col-lg-7,.col-xl-7,.col-xs-8,.col-sm-8,.col-md-8,.col-lg-8,.col-xl-8,.col-xs-9,.col-sm-9,.col-md-9,.col-lg-9,.col-xl-9,.col-xs-10,.col-sm-10,.col-md-10,.col-lg-10,.col-xl-10,.col-xs-11,.col-sm-11,.col-md-11,.col-lg-11,.col-xl-11,.col-xs-12,.col-sm-12,.col-md-12,.col-lg-12,.col-xl-12{padding-left:15px;padding-right:15px}}body:not(.is-ale) .section-animate-on-load .section-row-title:not(.animated),body:not(.is-ale) .section-animate-on-scroll .section-row-title:not(.animated),body:not(.is-ale) .section-animate-on-load .section-single>:not(.column-background-container):not(.animated),body:not(.is-ale) .section-animate-on-scroll .section-single>:not(.column-background-container):not(.animated),body:not(.is-ale) .section-animate-on-load .section-single .extra-content-item:not(.animated),body:not(.is-ale) .section-animate-on-scroll .section-single .extra-content-item:not(.animated){visibility:hidden}/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/.animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.animated.infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.animated.hinge{-webkit-animation-duration:2s;animation-duration:2s}.animated.cubic{-webkit-animation-duration:1.6s;animation-duration:1.6s;-webkit-animation-timing-function:cubic-bezier(.075, .82, .165, 1);animation-timing-function:cubic-bezier(.075, .82, .165, 1)}.fadeIn,.fadeInNormal,.fadeInTiny,.fadeInBig{-webkit-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translate3d(0, -100%, 0);transform:translate3d(0, -100%, 0)}100%{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInDown{0%{opacity:0;-webkit-transform:translate3d(0, -100%, 0);-ms-transform:translate3d(0, -100%, 0);transform:translate3d(0, -100%, 0)}100%{opacity:1;-webkit-transform:none;-ms-transform:none;transform:none}}.fadeInDown,.fadeInDownNormal{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInDownTiny{0%{opacity:0;-webkit-transform:translate3d(0, -40px, 0);transform:translate3d(0, -40px, 0)}100%{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInDownTiny{0%{opacity:0;-webkit-transform:translate3d(0, -40px, 0);-ms-transform:translate3d(0, -40px, 0);transform:translate3d(0, -40px, 0)}100%{opacity:1;-webkit-transform:none;-ms-transform:none;transform:none}}.fadeInDownTiny{-webkit-animation-name:fadeInDownTiny;animation-name:fadeInDownTiny}@-webkit-keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translate3d(0, -2000px, 0);transform:translate3d(0, -2000px, 0)}100%{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translate3d(0, -2000px, 0);-ms-transform:translate3d(0, -2000px, 0);transform:translate3d(0, -2000px, 0)}100%{opacity:1;-webkit-transform:none;-ms-transform:none;transform:none}}.fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}@-webkit-keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0)}100%{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInLeft{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}}.fadeInLeft,.fadeInLeftNormal{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInLeftTiny{0%{opacity:0;-webkit-transform:translate3d(-40px, 0, 0);transform:translate3d(-40px, 0, 0)}100%{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInLeftTiny{0%{opacity:0;-webkit-transform:translate3d(-40px, 0, 0);-ms-transform:translate3d(-40px, 0, 0);transform:translate3d(-40px, 0, 0)}100%{opacity:1;-webkit-transform:none;-ms-transform:none;transform:none}}.fadeInLeftTiny{-webkit-animation-name:fadeInLeftTiny;animation-name:fadeInLeftTiny}@-webkit-keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translate3d(-2000px, 0, 0);transform:translate3d(-2000px, 0, 0)}100%{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translate3d(-2000px, 0, 0);-ms-transform:translate3d(-2000px, 0, 0);transform:translate3d(-2000px, 0, 0)}100%{opacity:1;-webkit-transform:none;-ms-transform:none;transform:none}}.fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0)}100%{opacity:1;-webkit-transform:none;transform:none}}@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}}.fadeInRight,.fadeInRightNormal{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes fadeInRightTiny{0%{opacity:0;-webkit-transform:translate3d(40px, 0, 0);transform:translate3d(40px, 0, 0)}100%{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInRightTiny{0%{opacity:0;-webkit-transform:translate3d(40px, 0, 0);-ms-transform:translate3d(40px, 0, 0);transform:translate3d(40px, 0, 0)}100%{opacity:1;-webkit-transform:none;-ms-transform:none;transform:none}}.fadeInRightTiny{-webkit-animation-name:fadeInRightTiny;animation-name:fadeInRightTiny}@-webkit-keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translate3d(2000px, 0, 0);transform:translate3d(2000px, 0, 0)}100%{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translate3d(2000px, 0, 0);-ms-transform:translate3d(2000px, 0, 0);transform:translate3d(2000px, 0, 0)}100%{opacity:1;-webkit-transform:none;-ms-transform:none;transform:none}}.fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0, 100%, 0);transform:translate3d(0, 100%, 0)}100%{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0, 100%, 0);-ms-transform:translate3d(0, 100%, 0);transform:translate3d(0, 100%, 0)}100%{opacity:1;-webkit-transform:none;-ms-transform:none;transform:none}}.fadeInUp,.fadeInUpNormal{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeInUpTiny{0%{opacity:0;-webkit-transform:translate3d(0, 40px, 0);transform:translate3d(0, 40px, 0)}100%{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInUpTiny{0%{opacity:0;-webkit-transform:translate3d(0, 40px, 0);-ms-transform:translate3d(0, 40px, 0);transform:translate3d(0, 40px, 0)}100%{opacity:1;-webkit-transform:none;-ms-transform:none;transform:none}}.fadeInUpTiny{-webkit-animation-name:fadeInUpTiny;animation-name:fadeInUpTiny}@-webkit-keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translate3d(0, 2000px, 0);transform:translate3d(0, 2000px, 0)}100%{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translate3d(0, 2000px, 0);-ms-transform:translate3d(0, 2000px, 0);transform:translate3d(0, 2000px, 0)}100%{opacity:1;-webkit-transform:none;-ms-transform:none;transform:none}}.fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}@-webkit-keyframes fadeOut{0%{opacity:1}100%{opacity:0}}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.fadeOut,.fadeOutNormal,.fadeOutTiny,.fadeOutBig{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOutDown{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(0, 100%, 0);transform:translate3d(0, 100%, 0)}}@keyframes fadeOutDown{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(0, 100%, 0);-ms-transform:translate3d(0, 100%, 0);transform:translate3d(0, 100%, 0)}}.fadeOutDown,.fadeOutDownNormal{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}@-webkit-keyframes fadeOutDownTiny{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(0, 40px, 0);transform:translate3d(0, 40px, 0)}}@keyframes fadeOutDownTiny{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(0, 40px, 0);-ms-transform:translate3d(0, 40px, 0);transform:translate3d(0, 40px, 0)}}.fadeOutDownTiny{-webkit-animation-name:fadeOutDownTiny;animation-name:fadeOutDownTiny}@-webkit-keyframes fadeOutDownBig{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(0, 2000px, 0);transform:translate3d(0, 2000px, 0)}}@keyframes fadeOutDownBig{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(0, 2000px, 0);-ms-transform:translate3d(0, 2000px, 0);transform:translate3d(0, 2000px, 0)}}.fadeOutDownBig{-webkit-animation-name:fadeOutDownBig;animation-name:fadeOutDownBig}@-webkit-keyframes fadeOutLeft{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0)}}@keyframes fadeOutLeft{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(-100%, 0, 0);-ms-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0)}}.fadeOutLeft,.fadeOutLeftNormal{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}@-webkit-keyframes fadeOutLeftTiny{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(-40px, 0, 0);transform:translate3d(-40px, 0, 0)}}@keyframes fadeOutLeftTiny{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(-40px, 0, 0);-ms-transform:translate3d(-40px, 0, 0);transform:translate3d(-40px, 0, 0)}}.fadeOutLeftTiny{-webkit-animation-name:fadeOutLeftTiny;animation-name:fadeOutLeftTiny}@-webkit-keyframes fadeOutLeftBig{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(-2000px, 0, 0);transform:translate3d(-2000px, 0, 0)}}@keyframes fadeOutLeftBig{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(-2000px, 0, 0);-ms-transform:translate3d(-2000px, 0, 0);transform:translate3d(-2000px, 0, 0)}}.fadeOutLeftBig{-webkit-animation-name:fadeOutLeftBig;animation-name:fadeOutLeftBig}@-webkit-keyframes fadeOutRight{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0)}}@keyframes fadeOutRight{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(100%, 0, 0);-ms-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0)}}.fadeOutRight,.fadeOutRightNormal{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeOutRightTiny{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(40px, 0, 0);transform:translate3d(40px, 0, 0)}}@keyframes fadeOutRightTiny{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(40px, 0, 0);-ms-transform:translate3d(40px, 0, 0);transform:translate3d(40px, 0, 0)}}.fadeOutRightTiny{-webkit-animation-name:fadeOutRightTiny;animation-name:fadeOutRightTiny}@-webkit-keyframes fadeOutRightBig{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(2000px, 0, 0);transform:translate3d(2000px, 0, 0)}}@keyframes fadeOutRightBig{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(2000px, 0, 0);-ms-transform:translate3d(2000px, 0, 0);transform:translate3d(2000px, 0, 0)}}.fadeOutRightBig{-webkit-animation-name:fadeOutRightBig;animation-name:fadeOutRightBig}@-webkit-keyframes fadeOutUp{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(0, -100%, 0);transform:translate3d(0, -100%, 0)}}@keyframes fadeOutUp{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(0, -100%, 0);-ms-transform:translate3d(0, -100%, 0);transform:translate3d(0, -100%, 0)}}.fadeOutUp,.fadeOutUpNormal{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}@-webkit-keyframes fadeOutUpTiny{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(0, -40px, 0);transform:translate3d(0, -40px, 0)}}@keyframes fadeOutUpTiny{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(0, -40px, 0);-ms-transform:translate3d(0, -40px, 0);transform:translate3d(0, -40px, 0)}}.fadeOutUpTiny{-webkit-animation-name:fadeOutUpTiny;animation-name:fadeOutUpTiny}@-webkit-keyframes fadeOutUpBig{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(0, -2000px, 0);transform:translate3d(0, -2000px, 0)}}@keyframes fadeOutUpBig{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(0, -2000px, 0);-ms-transform:translate3d(0, -2000px, 0);transform:translate3d(0, -2000px, 0)}}.fadeOutUpBig{-webkit-animation-name:fadeOutUpBig;animation-name:fadeOutUpBig}@-webkit-keyframes point{0%{-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);-o-transform:translate(0, 0);transform:translate(0, 0)}100%{-webkit-transform:translate(0, 12.5%);-ms-transform:translate(0, 12.5%);-o-transform:translate(0, 12.5%);transform:translate(0, 12.5%)}}@keyframes point{0%{-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);-o-transform:translate(0, 0);transform:translate(0, 0)}100%{-webkit-transform:translate(0, 12.5%);-ms-transform:translate(0, 12.5%);-o-transform:translate(0, 12.5%);transform:translate(0, 12.5%)}}/*!
Theme Name: Addad
Theme URI: http://www.addad.se
Author: Anton Carlgren
Description: 
Version: 1.0
=======
*/.simulate-link{color:#ff8430;cursor:pointer}.simulate-link:hover,.simulate-link:focus{color:#e35c00;text-decoration:underline}html{font-size:81.3%}body{font-size:1rem;line-height:1.55;font-family:"Exo 2","Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:300}em{font-family:"Exo 2","Helvetica Neue",Helvetica,Arial,sans-serif;font-style:italic}i{font-family:"Exo 2","Helvetica Neue",Helvetica,Arial,sans-serif;font-style:italic}strong{font-family:"Exo 2","Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:700}img{display:block;width:auto;width:100% \9;max-width:100%;height:auto}img.alignleft{margin:5px 20px 15px 0}img.alignright{margin:5px 0 15px 20px}a,a:active,a:hover,a:focus,a:visited{outline:0}.displaynone{display:none !important}.visuallyhidden{position:absolute !important;overflow:hidden;clip:rect(0 0 0 0);height:1px !important;width:1px !important;margin:-1px;padding:0 !important;border:0 !important}.nomargin{margin:0 !important}.nopadding{padding:0 !important}.container-wide{margin-right:auto;margin-left:auto;padding-left:10px;padding-right:10px}@media (min-width:768px){.container-wide{width:740px}}@media (min-width:992px){.container-wide{width:960px}}@media (min-width:1200px){.container-wide{width:1170px}}@media (min-width:1600px){.container-wide{width:1560px}}.container-wide>.navbar-header,.container-wide>.navbar-collapse{margin-right:-10px;margin-left:-10px}@media (min-width:992px){.container-wide>.navbar-header,.container-wide>.navbar-collapse{margin-right:0;margin-left:0}}@media (min-width:1600px){.container-wide{width:90%;min-width:1560px}}::selection{color:#FFF;background:#ff8430}::-moz-selection{color:#FFF;background:#ff8430}h1,.h1{font-size:2.329em;line-height:1.34em}h2,.h2{font-size:1.941em;line-height:1.34em}h3,.h3{font-size:1.553em;line-height:1.5em}h4,.h4{font-size:1.165em;line-height:1.5em}h5,.h5{font-size:.971em;line-height:1.5em}h6,.h6{font-size:.932em;line-height:1.5em}h1.standalone{margin:0 0 20px 0;font-size:2.057em}.hentry h1,body.wp-editor h1{font-size:1.941em}.hentry h2,body.wp-editor h2{font-size:1.417em}.hentry h3,body.wp-editor h3{font-size:1.165em}.hentry h4,body.wp-editor h4{font-size:1.029em}.hentry h2,body.wp-editor h2{line-height:1.34em}.hentry h3,body.wp-editor h3,.hentry h4,body.wp-editor h4,.hentry h5,body.wp-editor h5,.hentry h6,body.wp-editor h6{margin:0;line-height:1.5em}.hentry h3,body.wp-editor h3{padding:1.142em 0 .2855em 0}.hentry h4,body.wp-editor h4,.hentry h5,body.wp-editor h5,.hentry h6,body.wp-editor h6{padding:.571em 0 .2855em 0}.hentry img,body.wp-editor img{display:block;width:auto;width:100% \9;max-width:100%;height:auto}.hentry p.meta-date,body.wp-editor p.meta-date{font-size:1.286em;font-family:"Exo 2","Helvetica Neue",Helvetica,Arial,sans-serif;color:#777}.hentry h1,body.wp-editor h1,.hentry h2,body.wp-editor h2{padding:1.142em 0 .571em 0;margin:0}.hentry h1.title,body.wp-editor h1.title,.hentry h2.title,body.wp-editor h2.title{font-size:1.941em;padding:.571em 0 .571rem 0;margin:0;line-height:1.34em}.hentry p,body.wp-editor p,.hentry form,body.wp-editor form{padding:.571em 0 .571em 0;margin:0}.hentry>ol,body.wp-editor>ol,.hentry>ul,body.wp-editor>ul{padding:.571em 0 .571em 0;margin:0}.hentry ol,body.wp-editor ol,.hentry ul,body.wp-editor ul{padding-left:1.5rem}.hentry li,body.wp-editor li{line-height:1.55;padding-top:.2855em;padding-bottom:.2855em}.hentry blockquote,body.wp-editor blockquote{margin-top:.571em;margin-bottom:.571em;padding-left:1rem;font-family:"Exo 2","Helvetica Neue",Helvetica,Arial,sans-serif;font-style:italic}.hentry blockquote p,body.wp-editor blockquote p{font-size:1rem;line-height:1.55;padding:0}.hentry table,body.wp-editor table,.hentry table.mceItemTable,body.wp-editor table.mceItemTable{font-family:"Exo 2","Helvetica Neue",Helvetica,Arial,sans-serif;width:100%;max-width:100%;margin-bottom:1rem;margin:.571em 0 1.142em 0}.hentry table>thead>tr>th,body.wp-editor table>thead>tr>th,.hentry table.mceItemTable>thead>tr>th,body.wp-editor table.mceItemTable>thead>tr>th,.hentry table>tbody>tr>th,body.wp-editor table>tbody>tr>th,.hentry table.mceItemTable>tbody>tr>th,body.wp-editor table.mceItemTable>tbody>tr>th,.hentry table>tfoot>tr>th,body.wp-editor table>tfoot>tr>th,.hentry table.mceItemTable>tfoot>tr>th,body.wp-editor table.mceItemTable>tfoot>tr>th,.hentry table>thead>tr>td,body.wp-editor table>thead>tr>td,.hentry table.mceItemTable>thead>tr>td,body.wp-editor table.mceItemTable>thead>tr>td,.hentry table>tbody>tr>td,body.wp-editor table>tbody>tr>td,.hentry table.mceItemTable>tbody>tr>td,body.wp-editor table.mceItemTable>tbody>tr>td,.hentry table>tfoot>tr>td,body.wp-editor table>tfoot>tr>td,.hentry table.mceItemTable>tfoot>tr>td,body.wp-editor table.mceItemTable>tfoot>tr>td{padding:8px;line-height:1.55;vertical-align:top;border-top:1px solid #ddd}.hentry table>thead>tr>th,body.wp-editor table>thead>tr>th,.hentry table.mceItemTable>thead>tr>th,body.wp-editor table.mceItemTable>thead>tr>th,.hentry table>tbody>tr>th,body.wp-editor table>tbody>tr>th,.hentry table.mceItemTable>tbody>tr>th,body.wp-editor table.mceItemTable>tbody>tr>th,.hentry table>tfoot>tr>th,body.wp-editor table>tfoot>tr>th,.hentry table.mceItemTable>tfoot>tr>th,body.wp-editor table.mceItemTable>tfoot>tr>th,.hentry table>thead>tr>td,body.wp-editor table>thead>tr>td,.hentry table.mceItemTable>thead>tr>td,body.wp-editor table.mceItemTable>thead>tr>td,.hentry table>tbody>tr>td,body.wp-editor table>tbody>tr>td,.hentry table.mceItemTable>tbody>tr>td,body.wp-editor table.mceItemTable>tbody>tr>td,.hentry table>tfoot>tr>td,body.wp-editor table>tfoot>tr>td,.hentry table.mceItemTable>tfoot>tr>td,body.wp-editor table.mceItemTable>tfoot>tr>td{padding:8px;line-height:1.55;vertical-align:top;border-top:1px solid #ddd}.hentry table>thead>tr:last-child,body.wp-editor table>thead>tr:last-child,.hentry table.mceItemTable>thead>tr:last-child,body.wp-editor table.mceItemTable>thead>tr:last-child,.hentry table>tbody>tr:last-child,body.wp-editor table>tbody>tr:last-child,.hentry table.mceItemTable>tbody>tr:last-child,body.wp-editor table.mceItemTable>tbody>tr:last-child,.hentry table>tfoot>tr:last-child,body.wp-editor table>tfoot>tr:last-child,.hentry table.mceItemTable>tfoot>tr:last-child,body.wp-editor table.mceItemTable>tfoot>tr:last-child{border-bottom:1px solid #ddd}.hentry table>thead>tr>th,body.wp-editor table>thead>tr>th,.hentry table.mceItemTable>thead>tr>th,body.wp-editor table.mceItemTable>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.hentry table>caption+thead>tr:first-child>th,body.wp-editor table>caption+thead>tr:first-child>th,.hentry table.mceItemTable>caption+thead>tr:first-child>th,body.wp-editor table.mceItemTable>caption+thead>tr:first-child>th,.hentry table>colgroup+thead>tr:first-child>th,body.wp-editor table>colgroup+thead>tr:first-child>th,.hentry table.mceItemTable>colgroup+thead>tr:first-child>th,body.wp-editor table.mceItemTable>colgroup+thead>tr:first-child>th,.hentry table>thead:first-child>tr:first-child>th,body.wp-editor table>thead:first-child>tr:first-child>th,.hentry table.mceItemTable>thead:first-child>tr:first-child>th,body.wp-editor table.mceItemTable>thead:first-child>tr:first-child>th,.hentry table>caption+thead>tr:first-child>td,body.wp-editor table>caption+thead>tr:first-child>td,.hentry table.mceItemTable>caption+thead>tr:first-child>td,body.wp-editor table.mceItemTable>caption+thead>tr:first-child>td,.hentry table>colgroup+thead>tr:first-child>td,body.wp-editor table>colgroup+thead>tr:first-child>td,.hentry table.mceItemTable>colgroup+thead>tr:first-child>td,body.wp-editor table.mceItemTable>colgroup+thead>tr:first-child>td,.hentry table>thead:first-child>tr:first-child>td,body.wp-editor table>thead:first-child>tr:first-child>td,.hentry table.mceItemTable>thead:first-child>tr:first-child>td,body.wp-editor table.mceItemTable>thead:first-child>tr:first-child>td{border-top:0}.hentry table>tbody+tbody,body.wp-editor table>tbody+tbody,.hentry table.mceItemTable>tbody+tbody,body.wp-editor table.mceItemTable>tbody+tbody{border-top:2px solid #ddd}.hentry table .table,body.wp-editor table .table,.hentry table.mceItemTable .table,body.wp-editor table.mceItemTable .table{background-color:#fff}.hentry table>tbody>tr:nth-child(even)>td,body.wp-editor table>tbody>tr:nth-child(even)>td,.hentry table.mceItemTable>tbody>tr:nth-child(even)>td,body.wp-editor table.mceItemTable>tbody>tr:nth-child(even)>td,.hentry table>tbody>tr:nth-child(even)>th,body.wp-editor table>tbody>tr:nth-child(even)>th,.hentry table.mceItemTable>tbody>tr:nth-child(even)>th,body.wp-editor table.mceItemTable>tbody>tr:nth-child(even)>th{background-color:#f9f9f9}.hentry table th,body.wp-editor table th,.hentry table.mceItemTable th,body.wp-editor table.mceItemTable th{font-weight:700}.hentry table td.right,body.wp-editor table td.right,.hentry table.mceItemTable td.right,body.wp-editor table.mceItemTable td.right,.hentry table th.right,body.wp-editor table th.right,.hentry table.mceItemTable th.right,body.wp-editor table.mceItemTable th.right{text-align:right}.hentry input[type="submit"],body.wp-editor input[type="submit"]{margin-top:1.142em}h1 a,h2 a,h3 a,h4 a,h5 a,h1 a:hover,h2 a:hover,h3 a:hover,h4 a:hover,h5 a:hover,h1 a:focus,h2 a:focus,h3 a:focus,h4 a:focus,h5 a:focus,h1 .simulate-link,h2 .simulate-link,h3 .simulate-link,h4 .simulate-link,h5 .simulate-link,h1 .simulate-link:hover,h2 .simulate-link:hover,h3 .simulate-link:hover,h4 .simulate-link:hover,h5 .simulate-link:hover,h1 .simulate-link:focus,h2 .simulate-link:focus,h3 .simulate-link:focus,h4 .simulate-link:focus,h5 .simulate-link:focus{color:inherit}p.ingress{font-size:1.143em}.btn,.button,#submit,.widget_search #searchsubmit,.reply .comment-reply-link,input[type=button]{display:inline-block;font-size:.9em;line-height:1.55;text-align:center;vertical-align:middle;cursor:pointer;white-space:nowrap;text-shadow:none;padding:.5em 1em;border-radius:0;border:2px solid transparent;color:#ff8430;background-color:transparent;border-color:#ff8430}.btn:active,.button:active,#submit:active,.widget_search #searchsubmit:active,.reply .comment-reply-link:active,input[type=button]:active,.btn:hover,.button:hover,#submit:hover,.widget_search #searchsubmit:hover,.reply .comment-reply-link:hover,input[type=button]:hover,.btn.active,.button.active,#submit.active,.widget_search #searchsubmit.active,.reply .comment-reply-link.active,input[type=button].active{outline:0;background-image:none}.btn:active,.button:active,#submit:active,.widget_search #searchsubmit:active,.reply .comment-reply-link:active,input[type=button]:active,.btn.active,.button.active,#submit.active,.widget_search #searchsubmit.active,.reply .comment-reply-link.active,input[type=button].active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.btn-xs,.button.btn-xs,#submit.btn-xs,.widget_search #searchsubmit.btn-xs,.reply .comment-reply-link.btn-xs,input[type=button].btn-xs{font-size:.929rem}.btn.btn-sm,.button.btn-sm,#submit.btn-sm,.widget_search #searchsubmit.btn-sm,.reply .comment-reply-link.btn-sm,input[type=button].btn-sm{font-size:1rem}.btn.btn-m,.button.btn-m,#submit.btn-m,.widget_search #searchsubmit.btn-m,.reply .comment-reply-link.btn-m,input[type=button].btn-m{font-size:1.143rem}.btn.btn-lg,.button.btn-lg,#submit.btn-lg,.widget_search #searchsubmit.btn-lg,.reply .comment-reply-link.btn-lg,input[type=button].btn-lg{font-size:1.286rem}.btn:hover,.button:hover,#submit:hover,.widget_search #searchsubmit:hover,.reply .comment-reply-link:hover,input[type=button]:hover,.btn:focus,.button:focus,#submit:focus,.widget_search #searchsubmit:focus,.reply .comment-reply-link:focus,input[type=button]:focus,.btn:active,.button:active,#submit:active,.widget_search #searchsubmit:active,.reply .comment-reply-link:active,input[type=button]:active,.btn.active,.button.active,#submit.active,.widget_search #searchsubmit.active,.reply .comment-reply-link.active,input[type=button].active,.open>.dropdown-toggle.btn,.open>.dropdown-toggle.button,.open>.dropdown-toggle#submit,.open>.dropdown-toggle.widget_search #searchsubmit,.open>.dropdown-toggle.reply .comment-reply-link,.open>.dropdown-toggleinput[type=button]{color:#ff8430;background-color:rgba(0,0,0,0)}.btn:active,.button:active,#submit:active,.widget_search #searchsubmit:active,.reply .comment-reply-link:active,input[type=button]:active,.btn.active,.button.active,#submit.active,.widget_search #searchsubmit.active,.reply .comment-reply-link.active,input[type=button].active,.open>.dropdown-toggle.btn,.open>.dropdown-toggle.button,.open>.dropdown-toggle#submit,.open>.dropdown-toggle.widget_search #searchsubmit,.open>.dropdown-toggle.reply .comment-reply-link,.open>.dropdown-toggleinput[type=button]{background-image:none}.btn.disabled,.button.disabled,#submit.disabled,.widget_search #searchsubmit.disabled,.reply .comment-reply-link.disabled,input[type=button].disabled,.btn[disabled],.button[disabled],#submit[disabled],.widget_search #searchsubmit[disabled],.reply .comment-reply-link[disabled],input[type=button][disabled],fieldset[disabled] .btn,fieldset[disabled] .button,fieldset[disabled] #submit,fieldset[disabled] .widget_search #searchsubmit,fieldset[disabled] .reply .comment-reply-link,fieldset[disabled] input[type=button],.btn.disabled:hover,.button.disabled:hover,#submit.disabled:hover,.widget_search #searchsubmit.disabled:hover,.reply .comment-reply-link.disabled:hover,input[type=button].disabled:hover,.btn[disabled]:hover,.button[disabled]:hover,#submit[disabled]:hover,.widget_search #searchsubmit[disabled]:hover,.reply .comment-reply-link[disabled]:hover,input[type=button][disabled]:hover,fieldset[disabled] .btn:hover,fieldset[disabled] .button:hover,fieldset[disabled] #submit:hover,fieldset[disabled] .widget_search #searchsubmit:hover,fieldset[disabled] .reply .comment-reply-link:hover,fieldset[disabled] input[type=button]:hover,.btn.disabled:focus,.button.disabled:focus,#submit.disabled:focus,.widget_search #searchsubmit.disabled:focus,.reply .comment-reply-link.disabled:focus,input[type=button].disabled:focus,.btn[disabled]:focus,.button[disabled]:focus,#submit[disabled]:focus,.widget_search #searchsubmit[disabled]:focus,.reply .comment-reply-link[disabled]:focus,input[type=button][disabled]:focus,fieldset[disabled] .btn:focus,fieldset[disabled] .button:focus,fieldset[disabled] #submit:focus,fieldset[disabled] .widget_search #searchsubmit:focus,fieldset[disabled] .reply .comment-reply-link:focus,fieldset[disabled] input[type=button]:focus,.btn.disabled:active,.button.disabled:active,#submit.disabled:active,.widget_search #searchsubmit.disabled:active,.reply .comment-reply-link.disabled:active,input[type=button].disabled:active,.btn[disabled]:active,.button[disabled]:active,#submit[disabled]:active,.widget_search #searchsubmit[disabled]:active,.reply .comment-reply-link[disabled]:active,input[type=button][disabled]:active,fieldset[disabled] .btn:active,fieldset[disabled] .button:active,fieldset[disabled] #submit:active,fieldset[disabled] .widget_search #searchsubmit:active,fieldset[disabled] .reply .comment-reply-link:active,fieldset[disabled] input[type=button]:active,.btn.disabled.active,.button.disabled.active,#submit.disabled.active,.widget_search #searchsubmit.disabled.active,.reply .comment-reply-link.disabled.active,input[type=button].disabled.active,.btn[disabled].active,.button[disabled].active,#submit[disabled].active,.widget_search #searchsubmit[disabled].active,.reply .comment-reply-link[disabled].active,input[type=button][disabled].active,fieldset[disabled] .btn.active,fieldset[disabled] .button.active,fieldset[disabled] #submit.active,fieldset[disabled] .widget_search #searchsubmit.active,fieldset[disabled] .reply .comment-reply-link.active,fieldset[disabled] input[type=button].active{background-color:transparent;border-color:#ff8430}.btn .badge,.button .badge,#submit .badge,.widget_search #searchsubmit .badge,.reply .comment-reply-link .badge,input[type=button] .badge{color:transparent;background-color:#ff8430}.btn:hover,.button:hover,#submit:hover,.widget_search #searchsubmit:hover,.reply .comment-reply-link:hover,input[type=button]:hover,.btn:focus,.button:focus,#submit:focus,.widget_search #searchsubmit:focus,.reply .comment-reply-link:focus,input[type=button]:focus{text-decoration:none;background:#ff8430;color:#fff}.btn[type="submit"],.button[type="submit"],#submit[type="submit"],.widget_search #searchsubmit[type="submit"],.reply .comment-reply-link[type="submit"],input[type=button][type="submit"],.btn#submit,.button#submit,#submit#submit,.widget_search #searchsubmit#submit,.reply .comment-reply-link#submit,input[type=button]#submit,.btn.cta-btn,.button.cta-btn,#submit.cta-btn,.widget_search #searchsubmit.cta-btn,.reply .comment-reply-link.cta-btn,input[type=button].cta-btn{font-weight:700;color:#fff;background-color:#ff8430;border-color:transparent}.btn[type="submit"]:hover,.button[type="submit"]:hover,#submit[type="submit"]:hover,.widget_search #searchsubmit[type="submit"]:hover,.reply .comment-reply-link[type="submit"]:hover,input[type=button][type="submit"]:hover,.btn#submit:hover,.button#submit:hover,#submit#submit:hover,.widget_search #searchsubmit#submit:hover,.reply .comment-reply-link#submit:hover,input[type=button]#submit:hover,.btn.cta-btn:hover,.button.cta-btn:hover,#submit.cta-btn:hover,.widget_search #searchsubmit.cta-btn:hover,.reply .comment-reply-link.cta-btn:hover,input[type=button].cta-btn:hover,.btn[type="submit"]:focus,.button[type="submit"]:focus,#submit[type="submit"]:focus,.widget_search #searchsubmit[type="submit"]:focus,.reply .comment-reply-link[type="submit"]:focus,input[type=button][type="submit"]:focus,.btn#submit:focus,.button#submit:focus,#submit#submit:focus,.widget_search #searchsubmit#submit:focus,.reply .comment-reply-link#submit:focus,input[type=button]#submit:focus,.btn.cta-btn:focus,.button.cta-btn:focus,#submit.cta-btn:focus,.widget_search #searchsubmit.cta-btn:focus,.reply .comment-reply-link.cta-btn:focus,input[type=button].cta-btn:focus,.btn[type="submit"]:active,.button[type="submit"]:active,#submit[type="submit"]:active,.widget_search #searchsubmit[type="submit"]:active,.reply .comment-reply-link[type="submit"]:active,input[type=button][type="submit"]:active,.btn#submit:active,.button#submit:active,#submit#submit:active,.widget_search #searchsubmit#submit:active,.reply .comment-reply-link#submit:active,input[type=button]#submit:active,.btn.cta-btn:active,.button.cta-btn:active,#submit.cta-btn:active,.widget_search #searchsubmit.cta-btn:active,.reply .comment-reply-link.cta-btn:active,input[type=button].cta-btn:active,.btn[type="submit"].active,.button[type="submit"].active,#submit[type="submit"].active,.widget_search #searchsubmit[type="submit"].active,.reply .comment-reply-link[type="submit"].active,input[type=button][type="submit"].active,.btn#submit.active,.button#submit.active,#submit#submit.active,.widget_search #searchsubmit#submit.active,.reply .comment-reply-link#submit.active,input[type=button]#submit.active,.btn.cta-btn.active,.button.cta-btn.active,#submit.cta-btn.active,.widget_search #searchsubmit.cta-btn.active,.reply .comment-reply-link.cta-btn.active,input[type=button].cta-btn.active,.open>.dropdown-toggle.btn[type="submit"],.open>.dropdown-toggle.button[type="submit"],.open>.dropdown-toggle#submit[type="submit"],.open>.dropdown-toggle.widget_search #searchsubmit[type="submit"],.open>.dropdown-toggle.reply .comment-reply-link[type="submit"],.open>.dropdown-toggleinput[type=button][type="submit"],.open>.dropdown-toggle.btn#submit,.open>.dropdown-toggle.button#submit,.open>.dropdown-toggle#submit#submit,.open>.dropdown-toggle.widget_search #searchsubmit#submit,.open>.dropdown-toggle.reply .comment-reply-link#submit,.open>.dropdown-toggleinput[type=button]#submit,.open>.dropdown-toggle.btn.cta-btn,.open>.dropdown-toggle.button.cta-btn,.open>.dropdown-toggle#submit.cta-btn,.open>.dropdown-toggle.widget_search #searchsubmit.cta-btn,.open>.dropdown-toggle.reply .comment-reply-link.cta-btn,.open>.dropdown-toggleinput[type=button].cta-btn{color:#fff;background-color:#fc6600}.btn[type="submit"]:active,.button[type="submit"]:active,#submit[type="submit"]:active,.widget_search #searchsubmit[type="submit"]:active,.reply .comment-reply-link[type="submit"]:active,input[type=button][type="submit"]:active,.btn#submit:active,.button#submit:active,#submit#submit:active,.widget_search #searchsubmit#submit:active,.reply .comment-reply-link#submit:active,input[type=button]#submit:active,.btn.cta-btn:active,.button.cta-btn:active,#submit.cta-btn:active,.widget_search #searchsubmit.cta-btn:active,.reply .comment-reply-link.cta-btn:active,input[type=button].cta-btn:active,.btn[type="submit"].active,.button[type="submit"].active,#submit[type="submit"].active,.widget_search #searchsubmit[type="submit"].active,.reply .comment-reply-link[type="submit"].active,input[type=button][type="submit"].active,.btn#submit.active,.button#submit.active,#submit#submit.active,.widget_search #searchsubmit#submit.active,.reply .comment-reply-link#submit.active,input[type=button]#submit.active,.btn.cta-btn.active,.button.cta-btn.active,#submit.cta-btn.active,.widget_search #searchsubmit.cta-btn.active,.reply .comment-reply-link.cta-btn.active,input[type=button].cta-btn.active,.open>.dropdown-toggle.btn[type="submit"],.open>.dropdown-toggle.button[type="submit"],.open>.dropdown-toggle#submit[type="submit"],.open>.dropdown-toggle.widget_search #searchsubmit[type="submit"],.open>.dropdown-toggle.reply .comment-reply-link[type="submit"],.open>.dropdown-toggleinput[type=button][type="submit"],.open>.dropdown-toggle.btn#submit,.open>.dropdown-toggle.button#submit,.open>.dropdown-toggle#submit#submit,.open>.dropdown-toggle.widget_search #searchsubmit#submit,.open>.dropdown-toggle.reply .comment-reply-link#submit,.open>.dropdown-toggleinput[type=button]#submit,.open>.dropdown-toggle.btn.cta-btn,.open>.dropdown-toggle.button.cta-btn,.open>.dropdown-toggle#submit.cta-btn,.open>.dropdown-toggle.widget_search #searchsubmit.cta-btn,.open>.dropdown-toggle.reply .comment-reply-link.cta-btn,.open>.dropdown-toggleinput[type=button].cta-btn{background-image:none}.btn[type="submit"].disabled,.button[type="submit"].disabled,#submit[type="submit"].disabled,.widget_search #searchsubmit[type="submit"].disabled,.reply .comment-reply-link[type="submit"].disabled,input[type=button][type="submit"].disabled,.btn#submit.disabled,.button#submit.disabled,#submit#submit.disabled,.widget_search #searchsubmit#submit.disabled,.reply .comment-reply-link#submit.disabled,input[type=button]#submit.disabled,.btn.cta-btn.disabled,.button.cta-btn.disabled,#submit.cta-btn.disabled,.widget_search #searchsubmit.cta-btn.disabled,.reply .comment-reply-link.cta-btn.disabled,input[type=button].cta-btn.disabled,.btn[type="submit"][disabled],.button[type="submit"][disabled],#submit[type="submit"][disabled],.widget_search #searchsubmit[type="submit"][disabled],.reply .comment-reply-link[type="submit"][disabled],input[type=button][type="submit"][disabled],.btn#submit[disabled],.button#submit[disabled],#submit#submit[disabled],.widget_search #searchsubmit#submit[disabled],.reply .comment-reply-link#submit[disabled],input[type=button]#submit[disabled],.btn.cta-btn[disabled],.button.cta-btn[disabled],#submit.cta-btn[disabled],.widget_search #searchsubmit.cta-btn[disabled],.reply .comment-reply-link.cta-btn[disabled],input[type=button].cta-btn[disabled],fieldset[disabled] .btn[type="submit"],fieldset[disabled] .button[type="submit"],fieldset[disabled] #submit[type="submit"],fieldset[disabled] .widget_search #searchsubmit[type="submit"],fieldset[disabled] .reply .comment-reply-link[type="submit"],fieldset[disabled] input[type=button][type="submit"],fieldset[disabled] .btn#submit,fieldset[disabled] .button#submit,fieldset[disabled] #submit#submit,fieldset[disabled] .widget_search #searchsubmit#submit,fieldset[disabled] .reply .comment-reply-link#submit,fieldset[disabled] input[type=button]#submit,fieldset[disabled] .btn.cta-btn,fieldset[disabled] .button.cta-btn,fieldset[disabled] #submit.cta-btn,fieldset[disabled] .widget_search #searchsubmit.cta-btn,fieldset[disabled] .reply .comment-reply-link.cta-btn,fieldset[disabled] input[type=button].cta-btn,.btn[type="submit"].disabled:hover,.button[type="submit"].disabled:hover,#submit[type="submit"].disabled:hover,.widget_search #searchsubmit[type="submit"].disabled:hover,.reply .comment-reply-link[type="submit"].disabled:hover,input[type=button][type="submit"].disabled:hover,.btn#submit.disabled:hover,.button#submit.disabled:hover,#submit#submit.disabled:hover,.widget_search #searchsubmit#submit.disabled:hover,.reply .comment-reply-link#submit.disabled:hover,input[type=button]#submit.disabled:hover,.btn.cta-btn.disabled:hover,.button.cta-btn.disabled:hover,#submit.cta-btn.disabled:hover,.widget_search #searchsubmit.cta-btn.disabled:hover,.reply .comment-reply-link.cta-btn.disabled:hover,input[type=button].cta-btn.disabled:hover,.btn[type="submit"][disabled]:hover,.button[type="submit"][disabled]:hover,#submit[type="submit"][disabled]:hover,.widget_search #searchsubmit[type="submit"][disabled]:hover,.reply .comment-reply-link[type="submit"][disabled]:hover,input[type=button][type="submit"][disabled]:hover,.btn#submit[disabled]:hover,.button#submit[disabled]:hover,#submit#submit[disabled]:hover,.widget_search #searchsubmit#submit[disabled]:hover,.reply .comment-reply-link#submit[disabled]:hover,input[type=button]#submit[disabled]:hover,.btn.cta-btn[disabled]:hover,.button.cta-btn[disabled]:hover,#submit.cta-btn[disabled]:hover,.widget_search #searchsubmit.cta-btn[disabled]:hover,.reply .comment-reply-link.cta-btn[disabled]:hover,input[type=button].cta-btn[disabled]:hover,fieldset[disabled] .btn[type="submit"]:hover,fieldset[disabled] .button[type="submit"]:hover,fieldset[disabled] #submit[type="submit"]:hover,fieldset[disabled] .widget_search #searchsubmit[type="submit"]:hover,fieldset[disabled] .reply .comment-reply-link[type="submit"]:hover,fieldset[disabled] input[type=button][type="submit"]:hover,fieldset[disabled] .btn#submit:hover,fieldset[disabled] .button#submit:hover,fieldset[disabled] #submit#submit:hover,fieldset[disabled] .widget_search #searchsubmit#submit:hover,fieldset[disabled] .reply .comment-reply-link#submit:hover,fieldset[disabled] input[type=button]#submit:hover,fieldset[disabled] .btn.cta-btn:hover,fieldset[disabled] .button.cta-btn:hover,fieldset[disabled] #submit.cta-btn:hover,fieldset[disabled] .widget_search #searchsubmit.cta-btn:hover,fieldset[disabled] .reply .comment-reply-link.cta-btn:hover,fieldset[disabled] input[type=button].cta-btn:hover,.btn[type="submit"].disabled:focus,.button[type="submit"].disabled:focus,#submit[type="submit"].disabled:focus,.widget_search #searchsubmit[type="submit"].disabled:focus,.reply .comment-reply-link[type="submit"].disabled:focus,input[type=button][type="submit"].disabled:focus,.btn#submit.disabled:focus,.button#submit.disabled:focus,#submit#submit.disabled:focus,.widget_search #searchsubmit#submit.disabled:focus,.reply .comment-reply-link#submit.disabled:focus,input[type=button]#submit.disabled:focus,.btn.cta-btn.disabled:focus,.button.cta-btn.disabled:focus,#submit.cta-btn.disabled:focus,.widget_search #searchsubmit.cta-btn.disabled:focus,.reply .comment-reply-link.cta-btn.disabled:focus,input[type=button].cta-btn.disabled:focus,.btn[type="submit"][disabled]:focus,.button[type="submit"][disabled]:focus,#submit[type="submit"][disabled]:focus,.widget_search #searchsubmit[type="submit"][disabled]:focus,.reply .comment-reply-link[type="submit"][disabled]:focus,input[type=button][type="submit"][disabled]:focus,.btn#submit[disabled]:focus,.button#submit[disabled]:focus,#submit#submit[disabled]:focus,.widget_search #searchsubmit#submit[disabled]:focus,.reply .comment-reply-link#submit[disabled]:focus,input[type=button]#submit[disabled]:focus,.btn.cta-btn[disabled]:focus,.button.cta-btn[disabled]:focus,#submit.cta-btn[disabled]:focus,.widget_search #searchsubmit.cta-btn[disabled]:focus,.reply .comment-reply-link.cta-btn[disabled]:focus,input[type=button].cta-btn[disabled]:focus,fieldset[disabled] .btn[type="submit"]:focus,fieldset[disabled] .button[type="submit"]:focus,fieldset[disabled] #submit[type="submit"]:focus,fieldset[disabled] .widget_search #searchsubmit[type="submit"]:focus,fieldset[disabled] .reply .comment-reply-link[type="submit"]:focus,fieldset[disabled] input[type=button][type="submit"]:focus,fieldset[disabled] .btn#submit:focus,fieldset[disabled] .button#submit:focus,fieldset[disabled] #submit#submit:focus,fieldset[disabled] .widget_search #searchsubmit#submit:focus,fieldset[disabled] .reply .comment-reply-link#submit:focus,fieldset[disabled] input[type=button]#submit:focus,fieldset[disabled] .btn.cta-btn:focus,fieldset[disabled] .button.cta-btn:focus,fieldset[disabled] #submit.cta-btn:focus,fieldset[disabled] .widget_search #searchsubmit.cta-btn:focus,fieldset[disabled] .reply .comment-reply-link.cta-btn:focus,fieldset[disabled] input[type=button].cta-btn:focus,.btn[type="submit"].disabled:active,.button[type="submit"].disabled:active,#submit[type="submit"].disabled:active,.widget_search #searchsubmit[type="submit"].disabled:active,.reply .comment-reply-link[type="submit"].disabled:active,input[type=button][type="submit"].disabled:active,.btn#submit.disabled:active,.button#submit.disabled:active,#submit#submit.disabled:active,.widget_search #searchsubmit#submit.disabled:active,.reply .comment-reply-link#submit.disabled:active,input[type=button]#submit.disabled:active,.btn.cta-btn.disabled:active,.button.cta-btn.disabled:active,#submit.cta-btn.disabled:active,.widget_search #searchsubmit.cta-btn.disabled:active,.reply .comment-reply-link.cta-btn.disabled:active,input[type=button].cta-btn.disabled:active,.btn[type="submit"][disabled]:active,.button[type="submit"][disabled]:active,#submit[type="submit"][disabled]:active,.widget_search #searchsubmit[type="submit"][disabled]:active,.reply .comment-reply-link[type="submit"][disabled]:active,input[type=button][type="submit"][disabled]:active,.btn#submit[disabled]:active,.button#submit[disabled]:active,#submit#submit[disabled]:active,.widget_search #searchsubmit#submit[disabled]:active,.reply .comment-reply-link#submit[disabled]:active,input[type=button]#submit[disabled]:active,.btn.cta-btn[disabled]:active,.button.cta-btn[disabled]:active,#submit.cta-btn[disabled]:active,.widget_search #searchsubmit.cta-btn[disabled]:active,.reply .comment-reply-link.cta-btn[disabled]:active,input[type=button].cta-btn[disabled]:active,fieldset[disabled] .btn[type="submit"]:active,fieldset[disabled] .button[type="submit"]:active,fieldset[disabled] #submit[type="submit"]:active,fieldset[disabled] .widget_search #searchsubmit[type="submit"]:active,fieldset[disabled] .reply .comment-reply-link[type="submit"]:active,fieldset[disabled] input[type=button][type="submit"]:active,fieldset[disabled] .btn#submit:active,fieldset[disabled] .button#submit:active,fieldset[disabled] #submit#submit:active,fieldset[disabled] .widget_search #searchsubmit#submit:active,fieldset[disabled] .reply .comment-reply-link#submit:active,fieldset[disabled] input[type=button]#submit:active,fieldset[disabled] .btn.cta-btn:active,fieldset[disabled] .button.cta-btn:active,fieldset[disabled] #submit.cta-btn:active,fieldset[disabled] .widget_search #searchsubmit.cta-btn:active,fieldset[disabled] .reply .comment-reply-link.cta-btn:active,fieldset[disabled] input[type=button].cta-btn:active,.btn[type="submit"].disabled.active,.button[type="submit"].disabled.active,#submit[type="submit"].disabled.active,.widget_search #searchsubmit[type="submit"].disabled.active,.reply .comment-reply-link[type="submit"].disabled.active,input[type=button][type="submit"].disabled.active,.btn#submit.disabled.active,.button#submit.disabled.active,#submit#submit.disabled.active,.widget_search #searchsubmit#submit.disabled.active,.reply .comment-reply-link#submit.disabled.active,input[type=button]#submit.disabled.active,.btn.cta-btn.disabled.active,.button.cta-btn.disabled.active,#submit.cta-btn.disabled.active,.widget_search #searchsubmit.cta-btn.disabled.active,.reply .comment-reply-link.cta-btn.disabled.active,input[type=button].cta-btn.disabled.active,.btn[type="submit"][disabled].active,.button[type="submit"][disabled].active,#submit[type="submit"][disabled].active,.widget_search #searchsubmit[type="submit"][disabled].active,.reply .comment-reply-link[type="submit"][disabled].active,input[type=button][type="submit"][disabled].active,.btn#submit[disabled].active,.button#submit[disabled].active,#submit#submit[disabled].active,.widget_search #searchsubmit#submit[disabled].active,.reply .comment-reply-link#submit[disabled].active,input[type=button]#submit[disabled].active,.btn.cta-btn[disabled].active,.button.cta-btn[disabled].active,#submit.cta-btn[disabled].active,.widget_search #searchsubmit.cta-btn[disabled].active,.reply .comment-reply-link.cta-btn[disabled].active,input[type=button].cta-btn[disabled].active,fieldset[disabled] .btn[type="submit"].active,fieldset[disabled] .button[type="submit"].active,fieldset[disabled] #submit[type="submit"].active,fieldset[disabled] .widget_search #searchsubmit[type="submit"].active,fieldset[disabled] .reply .comment-reply-link[type="submit"].active,fieldset[disabled] input[type=button][type="submit"].active,fieldset[disabled] .btn#submit.active,fieldset[disabled] .button#submit.active,fieldset[disabled] #submit#submit.active,fieldset[disabled] .widget_search #searchsubmit#submit.active,fieldset[disabled] .reply .comment-reply-link#submit.active,fieldset[disabled] input[type=button]#submit.active,fieldset[disabled] .btn.cta-btn.active,fieldset[disabled] .button.cta-btn.active,fieldset[disabled] #submit.cta-btn.active,fieldset[disabled] .widget_search #searchsubmit.cta-btn.active,fieldset[disabled] .reply .comment-reply-link.cta-btn.active,fieldset[disabled] input[type=button].cta-btn.active{background-color:#ff8430;border-color:transparent}.btn[type="submit"] .badge,.button[type="submit"] .badge,#submit[type="submit"] .badge,.widget_search #searchsubmit[type="submit"] .badge,.reply .comment-reply-link[type="submit"] .badge,input[type=button][type="submit"] .badge,.btn#submit .badge,.button#submit .badge,#submit#submit .badge,.widget_search #searchsubmit#submit .badge,.reply .comment-reply-link#submit .badge,input[type=button]#submit .badge,.btn.cta-btn .badge,.button.cta-btn .badge,#submit.cta-btn .badge,.widget_search #searchsubmit.cta-btn .badge,.reply .comment-reply-link.cta-btn .badge,input[type=button].cta-btn .badge{color:#ff8430;background-color:#fff}.tooltip{font-size:.8rem;line-height:1.44em}body.blog_active .hentry p.meta-date{display:none}label,input,button,select,textarea{font-size:1.071rem;line-height:1.4em;font-weight:300}select{font-size:1rem}textarea{height:auto}.textalign_left{text-align:left}.textalign_center{text-align:center}.textalign_right{text-align:right}.no-gutter-width{padding-right:0;padding-left:0}.element-invisible{position:absolute !important;clip:rect(1px 1px 1px 1px);clip:rect(1px, 1px, 1px, 1px);left:0}body.wp-editor{max-width:650px;margin:20px 40px !important;font-size:17px}.clearDiv{clear:both}.addadNoShadow{-moz-box-shadow:0 0 0 0 #FFF;-webkit-box-shadow:0 0 0 0 #FFF;box-shadow:0 0 0 0 #FFF}select,textarea,input{margin-bottom:.8rem}textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{display:inline-block;height:auto;padding:.6em .5em;line-height:20px;color:#323232;-webkit-appearance:none;border-radius:0;border:1px solid #ddd;-moz-box-shadow:0 0 0 0 #FFF;-webkit-box-shadow:0 0 0 0 #FFF;box-shadow:0 0 0 0 #FFF;font-size:1rem;font-weight:300;resize:none}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus,.uneditable-input:focus{box-shadow:none;border:1px solid #959595;outline:none}.gfield_error:not(.gfield_contains_required) textarea,.gfield_error:not(.gfield_contains_required) input[type="text"],.gfield_error:not(.gfield_contains_required) input[type="password"],.gfield_error:not(.gfield_contains_required) input[type="datetime"],.gfield_error:not(.gfield_contains_required) input[type="datetime-local"],.gfield_error:not(.gfield_contains_required) input[type="date"],.gfield_error:not(.gfield_contains_required) input[type="month"],.gfield_error:not(.gfield_contains_required) input[type="time"],.gfield_error:not(.gfield_contains_required) input[type="week"],.gfield_error:not(.gfield_contains_required) input[type="number"],.gfield_error:not(.gfield_contains_required) input[type="email"],.gfield_error:not(.gfield_contains_required) input[type="url"],.gfield_error:not(.gfield_contains_required) input[type="search"],.gfield_error:not(.gfield_contains_required) input[type="tel"],.gfield_error:not(.gfield_contains_required) input[type="color"],.gfield_error:not(.gfield_contains_required) .uneditable-input{border-color:red}button.btn,button{outline:none}textarea{height:auto}.gform_wrapper .validation_message{display:none}.gform_wrapper .validation_error{color:red;background:rgba(255,0,0,0.2);border-radius:3px;border:1px solid red;padding:5px 10px;margin-bottom:10px}.contact-form-row .contact-form .gform_wrapper .validation_error{position:absolute;top:-35px}.description-row{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-ms-flex-align:center;-webkit-box-align:center;-moz-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-moz-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;width:100%}@media (max-width:767px){.description-row{-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.description-row:before,.description-row:after{display:none}}.description-row>div{-webkit-flex:0 1 auto;-moz-flex:0 1 auto;-ms-flex:0 1 auto;-o-flex:0 1 auto;flex:0 1 auto}@media (min-width:768px){.description-row .text_and_btn-text{padding-right:4em}}.extrafiler-container{padding:.571em 0 1.142em}.extrafiler-container h3{padding:0;margin:0}.extrafiler-container .extrafiler{padding:0;margin:0}.extrafiler-container .extrafiler .extrafiler-item{padding-top:.8em;padding-bottom:.8em;line-height:1.5em;color:#ff8430;border:0;background:#eee;border-bottom:1px solid #FFF;margin-bottom:0;border-radius:0;font-size:.938em;font-weight:700}.extrafiler-container .extrafiler .extrafiler-item:hover,.extrafiler-container .extrafiler .extrafiler-item:focus{color:#e35c00;background-color:#f5f5f5}.extrafiler-container .extrafiler .extrafiler-item>i{margin-right:.6em}.extrafiler-container .extrafiler .extrafiler-item>i.nothing{margin-right:0}.extrafiler-container .extrafiler .download-icon{float:right}.gallery{padding:.571em 0;margin:0 -0.571em !important}.gallery .gallery-item{float:left;padding:.571em;margin:0}.gallery .gallery-item img{border:none !important}.gallery .gallery-caption{display:none}.main-logo{float:left;padding:0;z-index:10;top:50%;-ms-transform:translateY(-50%);-webkit-transform:translateY(-50%);transform:translateY(-50%);position:relative}.main-logo .logo-img{width:217px;height:auto}.hide-subnav .sub-menu,.hide-subnav .dropdown-menu,.hide-subnav ul{display:none !important}.hide-subnav.dropdown-submenu a::before,.hide-subnav.dropdown-submenu a::after{display:none !important}.header-wrapper .topbar-row{-webkit-transform:translateZ(0) scale(1, 1);width:100%;background:#7c7c7c;color:#FFF;position:relative;z-index:20}.header-wrapper .topbar-row a{color:#323232}.header-wrapper .topbar-row.topbar-full-width .container{width:100%}.header-wrapper .topbar-row .container{position:relative;font-size:15px}@media (min-width:992px){.header-wrapper .topbar-row .container{height:38px}}.header-wrapper .topbar-row .container .topbar-link-container{position:relative;margin:0;padding:0;list-style:none;height:100%;z-index:21;overflow:hidden}.header-wrapper .topbar-row .container .topbar-link-container:not(.topbar-link-float-left){float:right}.header-wrapper .topbar-row .container .topbar-link-container .topbar-link{position:relative;float:left;height:100%;line-height:38px}.header-wrapper .topbar-row .container .topbar-link-container .topbar-link span,.header-wrapper .topbar-row .container .topbar-link-container .topbar-link a{float:left}.header-wrapper .topbar-row .container .topbar-link-container .topbar-link.icon{margin-left:40px}.header-wrapper .topbar-row .container .topbar-link-container .topbar-link.icon i,.header-wrapper .topbar-row .container .topbar-link-container .topbar-link.icon svg{font-size:24px;width:24px;text-align:center;top:7px;left:-32px;position:absolute}.header-wrapper .topbar-row .container .topbar-link-container .tb-short-text{display:none}.header-wrapper .topbar-row .container .topbar-btn-container{position:relative;float:right;margin:0;padding:0;z-index:22;top:50%;-ms-transform:translateY(-50%);-webkit-transform:translateY(-50%);transform:translateY(-50%)}.header-wrapper .topbar-row .container .topbar-btn-container .topbar-btn{font-size:15px;margin:0 0 0 10px;padding:2px 11px;line-height:1.6;border-width:1px}.header-wrapper .topbar-row .container .topbar-btn-container.topbar-btn-full{height:100%}.header-wrapper .topbar-row .container .topbar-btn-container.topbar-btn-full .topbar-btn{height:100%;padding-top:0;padding-bottom:0;border:none;border-radius:0;background-color:#a2a2a2}@media (min-width:992px){.header-wrapper .topbar-row .container .topbar-btn-container.topbar-btn-full .topbar-btn{line-height:38px}}@media (max-width:991px){.header-wrapper .topbar-row .container .topbar-btn-container.topbar-btn-full .topbar-btn{line-height:62px}}.header-wrapper .topbar-row .container .topbar-btn-container.topbar-btn-full .topbar-btn:hover,.header-wrapper .topbar-row .container .topbar-btn-container.topbar-btn-full .topbar-btn:focus{background-color:#898989}@media (min-width:768px) and (max-width:991px){.header-wrapper .topbar-row .topbar-link a{color:#ff8430}.header-wrapper .topbar-row .container{height:38px;font-size:13px}.header-wrapper .topbar-row .container .topbar-btn-container .topbar-btn{font-size:13px}}@media (max-width:767px){.header-wrapper .topbar-row .topbar-link a{color:#ff8430}.header-wrapper .topbar-row .container{height:62px;font-size:12px}.header-wrapper .topbar-row .container .topbar-link-container{float:left;height:50%;display:inline-block}.header-wrapper .topbar-row .container .topbar-link-container:not(.topbar-link-float-left){float:left}.header-wrapper .topbar-row .container .topbar-link-container .topbar-link{line-height:34.1px}.header-wrapper .topbar-row .container .topbar-link-container .topbar-link.icon i{top:3.5px}.header-wrapper .topbar-row .container .topbar-link-container .tb-long-text{display:none}.header-wrapper .topbar-row .container .topbar-link-container .tb-short-text{display:inline}.header-wrapper .topbar-row .container .topbar-link-container-2{clear:left}.header-wrapper .topbar-row .container .topbar-btn-container.topbar-btn-full .topbar-btn{font-size:12px;line-height:62px}.header-wrapper .topbar-row .container .topbar-link-container .topbar-link.icon{margin-left:32px}.header-wrapper .topbar-row .container .topbar-link-container .topbar-link.icon.topbar-link-hide-mobile{margin-left:0}.header-wrapper .topbar-row .container .topbar-link-container .topbar-link.icon.topbar-link-hide-mobile i{display:none}.header-wrapper .topbar-row .container .topbar-btn-container-2{display:none}}.header-wrapper{position:relative;background:#ff8430;z-index:3;height:auto}.header-wrapper.cd-main-header{height:auto}.header-wrapper .sticky-holder{max-width:100%;min-width:100%}.header-wrapper .sticky-wrapper{z-index:3;position:relative;-webkit-transition:transform .3s;-o-transition:transform .3s;transition:transform .3s}.header-wrapper .sticky-wrapper.stuck-wrapper.sticky-past-holder{position:fixed;top:0;width:100%;-webkit-transform:translate(0, -100%);-ms-transform:translate(0, -100%);-o-transform:translate(0, -100%);transform:translate(0, -100%)}.header-wrapper .sticky-wrapper.stuck-wrapper.sticky-past-holder .navbar{height:60px}.header-wrapper .sticky-wrapper.stuck-wrapper.sticky-past-holder .navbar .navbar-inner{background-color:rgba(255,132,48,0.9)}.header-wrapper .sticky-wrapper.stuck-wrapper.sticky-past-holder.sticky-past-holder-2{-webkit-transition:transform .3s;-o-transition:transform .3s;transition:transform .3s;-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);-o-transform:translate(0, 0);transform:translate(0, 0)}.header-wrapper .sticky-wrapper.stuck-wrapper:not(.sticky-past-holder):not(.always-visible-sticky){top:0 !important}.header-wrapper .sticky-wrapper.hide-down-sticky{-webkit-transition:transform .3s;-o-transition:transform .3s;transition:transform .3s;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}.header-wrapper .sticky-wrapper.always-visible-sticky .navbar{-webkit-transition:height .2s;-o-transition:height .2s;transition:height .2s}.header-wrapper .sticky-wrapper.always-visible-sticky.stuck-wrapper{position:fixed;top:0;width:100%}.header-wrapper .sticky-wrapper.always-visible-sticky.stuck-wrapper.sticky-past-holder,.header-wrapper .sticky-wrapper.always-visible-sticky.stuck-wrapper.sticky-past-holder-2{-webkit-transition:none;-o-transition:none;transition:none;-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);-o-transform:translate(0, 0);transform:translate(0, 0)}.header-wrapper .sticky-wrapper.hide-down-sticky.stuck-wrapper.sticky-past-holder.-frozen{position:absolute;border-top:50px solid #ff8430;margin-top:-50px}.header-wrapper .sticky-wrapper.hide-down-sticky.stuck-wrapper.sticky-past-holder.-frozen:not(.sticky-past-holder-2){-webkit-transition:none;-o-transition:none;transition:none}.addad-dropdown-toggle{position:relative;width:1.05em;height:.95em;display:block;padding:0;background:#ff8d40;border:none;border-radius:3px;margin-left:5px;margin-top:2px}.addad-dropdown-toggle:hover{background:#ff964e}.addad-dropdown-toggle::before,.addad-dropdown-toggle::after{content:'';position:absolute;top:50%;margin-top:-1px;display:inline-block;height:2px;background:#FFF;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transition:width 0.3s, transform 0.3s, right 0.3s, color 0.2s;-o-transition:width 0.3s, transform 0.3s, right 0.3s, color 0.2s;transition:width 0.3s, transform 0.3s, right 0.3s, color 0.2s;width:6px}.current-menu-ancestor .addad-dropdown-toggle::before,.current-menu-ancestor .addad-dropdown-toggle::after{background:#494949}@media (max-width:991px){.current-menu-ancestor .addad-dropdown-toggle::before,.current-menu-ancestor .addad-dropdown-toggle::after{background:#494949}}.addad-dropdown-toggle::before{-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg);right:8px}.addad-dropdown-toggle::after{-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);transform:rotate(-45deg);right:5px}.open .addad-dropdown-toggle::before{-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);transform:rotate(-45deg)}.open .addad-dropdown-toggle::after{-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}.dropdown-submenu>a{position:relative;overflow:hidden}.dropdown-submenu>a::before,.dropdown-submenu>a::after{content:'';position:absolute;top:50%;margin-top:-1px;display:inline-block;height:2px;width:8px;background:#323232;-webkit-backface-visibility:hidden;backface-visibility:hidden;right:12px;-webkit-transform-origin:7px 50%;-moz-transform-origin:7px 50%;-ms-transform-origin:7px 50%;-o-transform-origin:7px 50%;transform-origin:7px 50%}.dropdown-submenu>a::before{-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}.dropdown-submenu>a::after{-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);transform:rotate(-45deg)}.dropdown-submenu.current-menu-ancestor>a::before,.dropdown-submenu.current-menu-ancestor>a:hover::before,.dropdown-submenu.current-menu-ancestor>a:focus::before,.dropdown-submenu.current-menu-ancestor>a::after,.dropdown-submenu.current-menu-ancestor>a:hover::after,.dropdown-submenu.current-menu-ancestor>a:focus::after{background:#494949}.dropdown-submenu>a:hover::before,.dropdown-submenu>a:focus::before,.dropdown-submenu>a:hover::after,.dropdown-submenu>a:focus::after{background:#7c7c7c}.navbar-toggle{border:none}.navbar-default{background:transparent}.navbar-default.navbar-static-top{background:#ff8430}.navbar-default .navbar-inner{background:#ff8430}ul li.menu-item.fa:before{content:none}ul li.menu-item i.fa:before{margin-right:4px}ul li.menu-item:not(.menu-item-has-children)>a[target="_blank"]>span{position:relative}ul li.menu-item:not(.menu-item-has-children)>a[target="_blank"]>span::after{display:inline-block;font:normal normal normal 14px/1 FontAwesome;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f08e";vertical-align:middle;font-size:.7em;opacity:.5;padding-left:.5em}.navbar{border:none;min-height:0;height:65px;position:relative;pointer-events:auto}.navbar .navbar-inner{z-index:25;position:relative;border:none;height:100%;-webkit-transition:background .2s;-o-transition:background .2s;transition:background .2s;-webkit-box-shadow:none;box-shadow:none}.navbar .navbar-inner>.container{height:100%}.navbar .main-nav-wrapper{height:100% !important}.navbar .navbar-toggle{margin-top:0;margin-bottom:0;margin-right:0;top:50%;-ms-transform:translateY(-50%);-webkit-transform:translateY(-50%);transform:translateY(-50%);position:relative;padding:0}.navbar .navbar-btn{z-index:20;position:relative;border-color:#fc6600}@media (min-width:992px) and (max-width:1199px){.navbar .nav li{font-size:1.063rem}}@media (min-width:1200px){.navbar .nav li{font-size:1rem}}@media (min-width:992px){.main-nav-wrapper{float:right;position:relative}.navbar .nav>li:last-child>.dropdown-menu,.navbar .nav>li:nth-last-child(2)>.dropdown-menu{right:0;left:auto}.dropdown-submenu>.dropdown-menu{border-radius:0}.navbar .nav{font-family:"Exo 2","Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:400;height:100%;float:right;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-ms-flex-align:center;-webkit-box-align:center;-moz-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-moz-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center}.navbar .nav>li{-ms-flex-align:center;-webkit-box-align:center;-moz-box-align:center;-webkit-align-items:center;align-items:center}.navbar .nav>li>a{float:left;width:100%}.navbar .nav>li>a:not([data-toggle]),.navbar .nav>li>a.no-hover:not([data-toggle]),.navbar .nav>li>a.no-hover:hover:not([data-toggle]),.navbar .nav>li>a.no-hover:focus:not([data-toggle]){color:#FFF;background:transparent}.navbar .nav>li>a:hover,.navbar .nav>li>a:focus{color:#FFF;background:#7c7c7c}.navbar .nav>li>a:hover .addad-dropdown-toggle::before,.navbar .nav>li>a:focus .addad-dropdown-toggle::before,.navbar .nav>li>a:hover .addad-dropdown-toggle::after,.navbar .nav>li>a:focus .addad-dropdown-toggle::after{background:#FFF}.navbar .nav>li>a:hover .addad-dropdown-toggle,.navbar .nav>li>a:focus .addad-dropdown-toggle{background:#ddd}.navbar .nav>li>a span{float:left}.navbar .nav>li>a button{float:left}.navbar .nav>li.current-menu-item>a,.navbar .nav>li.current-menu-item.open>a,.navbar .nav>li.current-menu-item>a:hover,.navbar .nav>li.current-menu-item.open>a:hover,.navbar .nav>li.current-menu-item>a:focus,.navbar .nav>li.current-menu-item.open>a:focus{color:#FFF;background:#494949}.navbar .nav>li.current-menu-item>a .addad-dropdown-toggle::before,.navbar .nav>li.current-menu-item.open>a .addad-dropdown-toggle::before,.navbar .nav>li.current-menu-item>a:hover .addad-dropdown-toggle::before,.navbar .nav>li.current-menu-item.open>a:hover .addad-dropdown-toggle::before,.navbar .nav>li.current-menu-item>a:focus .addad-dropdown-toggle::before,.navbar .nav>li.current-menu-item.open>a:focus .addad-dropdown-toggle::before,.navbar .nav>li.current-menu-item>a .addad-dropdown-toggle::after,.navbar .nav>li.current-menu-item.open>a .addad-dropdown-toggle::after,.navbar .nav>li.current-menu-item>a:hover .addad-dropdown-toggle::after,.navbar .nav>li.current-menu-item.open>a:hover .addad-dropdown-toggle::after,.navbar .nav>li.current-menu-item>a:focus .addad-dropdown-toggle::after,.navbar .nav>li.current-menu-item.open>a:focus .addad-dropdown-toggle::after{background:#FFF}.navbar .nav>li.current-menu-item>a .addad-dropdown-toggle,.navbar .nav>li.current-menu-item.open>a .addad-dropdown-toggle,.navbar .nav>li.current-menu-item>a:hover .addad-dropdown-toggle,.navbar .nav>li.current-menu-item.open>a:hover .addad-dropdown-toggle,.navbar .nav>li.current-menu-item>a:focus .addad-dropdown-toggle,.navbar .nav>li.current-menu-item.open>a:focus .addad-dropdown-toggle{background:#ddd}.navbar .nav>li.open>a,.navbar .nav>li.open>a:hover,.navbar .nav>li.open>a:focus{color:#FFF;background:transparent}.navbar .nav li{font-family:"Exo 2","Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:400;text-shadow:none}.navbar .nav li a,.navbar .nav li button{-webkit-transition:all .2s;-o-transition:all .2s;transition:all .2s}.navbar .nav li li{font-size:.875rem;font-family:"Exo 2","Helvetica Neue",Helvetica,Arial,sans-serif;text-shadow:none}.navbar .nav .dropdown-menu{border-radius:0;border:none;padding:0;min-width:11em;-webkit-transform:translateZ(0)}.navbar .nav .dropdown-menu>li{border-bottom:1px solid #eee}.navbar .nav .dropdown-menu>li:last-child{border-bottom:none}.navbar .nav .dropdown-menu>li>a{padding:.688em 1.25em}.navbar .nav .dropdown-menu>li>a:hover,.navbar .nav .dropdown-menu>li>a:focus{text-decoration:none;color:#7c7c7c}.navbar .nav .dropdown-menu>li.current-menu-item>a,.navbar .nav .dropdown-menu>li.current-menu-item>a:hover,.navbar .nav .dropdown-menu>li.current-menu-item>a:focus{color:#494949}.navbar .nav .dropdown-menu>li.dropdown-submenu>a{padding-right:30px}.navbar .standard>ul>li{height:100%}.navbar .standard>ul>li>a{height:100%}.custom-buttons .nav>li,.custom-buttons-round .nav>li{margin:0 2px 0}.custom-buttons .nav>li>a,.custom-buttons-round .nav>li>a{padding:8px 13px}.custom-buttons-round .nav>li>a{border-radius:5px}.custom-border-bottom .nav>li,.custom-border-double .nav>li,.custom-border-double-background .nav>li{margin:0 4px 0}.custom-border-bottom .nav>li>a,.custom-border-double .nav>li>a,.custom-border-double-background .nav>li>a{border-bottom:2px solid transparent}.custom-border-bottom .nav>li>a,.custom-border-double .nav>li>a,.custom-border-double-background .nav>li>a,.custom-border-bottom .nav>li>a.no-hover,.custom-border-double .nav>li>a.no-hover,.custom-border-double-background .nav>li>a.no-hover,.custom-border-bottom .nav>li>a.no-hover:hover,.custom-border-double .nav>li>a.no-hover:hover,.custom-border-double-background .nav>li>a.no-hover:hover,.custom-border-bottom .nav>li>a.no-hover:focus,.custom-border-double .nav>li>a.no-hover:focus,.custom-border-double-background .nav>li>a.no-hover:focus{padding:12px 8px 8px;border-bottom-color:transparent}.custom-border-bottom .nav>li>a:hover,.custom-border-double .nav>li>a:hover,.custom-border-double-background .nav>li>a:hover,.custom-border-bottom .nav>li>a:focus,.custom-border-double .nav>li>a:focus,.custom-border-double-background .nav>li>a:focus{background:none;border-bottom-color:#7c7c7c}.custom-border-bottom .nav>li.current-menu-item>a,.custom-border-double .nav>li.current-menu-item>a,.custom-border-double-background .nav>li.current-menu-item>a,.custom-border-bottom .nav>li.current-menu-item.open>a,.custom-border-double .nav>li.current-menu-item.open>a,.custom-border-double-background .nav>li.current-menu-item.open>a,.-whole-button .custom-border-bottom .nav>li.current-menu-ancestor>a,.-whole-button .custom-border-double .nav>li.current-menu-ancestor>a,.-whole-button .custom-border-double-background .nav>li.current-menu-ancestor>a,.custom-border-bottom .nav>li.current-menu-item>a:hover,.custom-border-double .nav>li.current-menu-item>a:hover,.custom-border-double-background .nav>li.current-menu-item>a:hover,.custom-border-bottom .nav>li.current-menu-item.open>a:hover,.custom-border-double .nav>li.current-menu-item.open>a:hover,.custom-border-double-background .nav>li.current-menu-item.open>a:hover,.-whole-button .custom-border-bottom .nav>li.current-menu-ancestor>a:hover,.-whole-button .custom-border-double .nav>li.current-menu-ancestor>a:hover,.-whole-button .custom-border-double-background .nav>li.current-menu-ancestor>a:hover,.custom-border-bottom .nav>li.current-menu-item>a:focus,.custom-border-double .nav>li.current-menu-item>a:focus,.custom-border-double-background .nav>li.current-menu-item>a:focus,.custom-border-bottom .nav>li.current-menu-item.open>a:focus,.custom-border-double .nav>li.current-menu-item.open>a:focus,.custom-border-double-background .nav>li.current-menu-item.open>a:focus,.-whole-button .custom-border-bottom .nav>li.current-menu-ancestor>a:focus,.-whole-button .custom-border-double .nav>li.current-menu-ancestor>a:focus,.-whole-button .custom-border-double-background .nav>li.current-menu-ancestor>a:focus{-webkit-box-shadow:none;box-shadow:none;background:none;border-bottom-color:#494949}.navbar-design-stacked .quick-menu-wrapper{height:35% !important}.navbar-design-stacked .quick-menu-wrapper #secondary-menu>li{font-size:.75em}.navbar-design-stacked .quick-menu-wrapper~.main-nav-wrapper{height:50% !important}.navbar-design-stacked .nav-pushfix-1{height:5%}.navbar-design-stacked .nav-pushfix-2{height:10%}.navbar-design-stacked .stuck-wrapper .nav-pushfix-1,.navbar-design-stacked .stuck-wrapper .nav-pushfix-2{height:0}}@media (min-width:992px) and (min-width:992px) and (max-width:1199px){.navbar-design-stacked .quick-menu-wrapper #secondary-menu>li{font-size:.813em}}.navbar-design-split .navbar-inner>.container{position:relative;width:100%}.navbar-design-split .main-nav-wrapper,.navbar-design-split .secondary-nav-wrapper{z-index:1}.navbar-design-split .main-nav-wrapper{float:right;width:50%;pointer-events:none}.navbar-design-split .main-nav-wrapper>ul{pointer-events:auto;float:left;margin-left:198.5px}.navbar-design-split .secondary-nav-wrapper{float:left}.navbar-design-split .secondary-nav-wrapper>ul{float:right;margin-left:0;margin-right:198.5px}@media (min-width:768px){.navbar-design-split .secondary-nav-wrapper .nav>li:last-child>.dropdown-menu,.navbar-design-split .secondary-nav-wrapper .nav>li:nth-last-child(2)>.dropdown-menu{right:auto;left:0}}.navbar-design-split .main-logo{position:absolute;width:auto;height:100%;z-index:0;float:none;text-align:center;top:0;left:50%;-webkit-transform:translate(-50%, 0);-ms-transform:translate(-50%, 0);-o-transform:translate(-50%, 0);transform:translate(-50%, 0)}.navbar-design-split .main-logo>a{width:100%;height:100%;pointer-events:none;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-ms-flex-align:center;-webkit-box-align:center;-moz-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-moz-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center}.navbar-design-split .main-logo>a>img{pointer-events:auto;-ms-flex-align:center;-webkit-box-align:center;-moz-box-align:center;-webkit-align-items:center;align-items:center}.navbar-design-side .navbar-inner>.container{width:100%}.navbar-design-side .navbar-collapse{display:none !important}.navbar.-whole-button [data-toggle="dropdown"].addad-dropdown-toggle{background:transparent}.cd-nav [data-toggle="custom"]>.addad-dropdown-toggle{background:transparent}@media (max-width:991px){.slide-nav-trigger span,.slide-nav-trigger span::before,.slide-nav-trigger span::after{background:#FFF}}@media (max-width:420px){.slide-nav-trigger{-webkit-transition:right .3s;-o-transition:right .3s;transition:right .3s}.slide-nav-trigger.nav-is-visible{right:-10px}}.addad-notice{position:absolute;width:100%;pointer-events:none;opacity:0;background:#7c7c7c;font-size:.938rem;display:none;padding:0;-webkit-transition:transform 0.3s, opacity 0.3s;-o-transition:transform 0.3s, opacity 0.3s;transition:transform 0.3s, opacity 0.3s;-webkit-transform:translate(0, -100%);-ms-transform:translate(0, -100%);-o-transform:translate(0, -100%);transform:translate(0, -100%)}.addad-notice.-built{display:block}@media (max-width:767px){.addad-notice{font-size:.875rem}}.addad-notice>.container{background:#7c7c7c}.addad-notice.showing{position:relative;pointer-events:auto;opacity:1;-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);-o-transform:translate(0, 0);transform:translate(0, 0)}.addad-notice>div,.addad-notice>.container>div{position:relative;padding-top:.4em;padding-bottom:.4em}.addad-notice>div>*,.addad-notice>.container>div>*{display:inline-block;vertical-align:middle}.addad-notice div.icon-left{position:absolute;left:0;top:0;height:100%;width:50px;font-size:1.45em;background:#909090}.addad-notice div.icon-left i{color:#fff;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);-o-transform:translate(-50%, -50%);transform:translate(-50%, -50%)}.addad-notices[data-position='top'] .addad-notice{position:relative;max-height:0;-webkit-transition:opacity 0.3s, max-height 0.3s;-o-transition:opacity 0.3s, max-height 0.3s;transition:opacity 0.3s, max-height 0.3s;-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);-o-transform:translate(0, 0);transform:translate(0, 0)}.addad-notices[data-position='top'] .addad-notice.showing{max-height:110px}.addad-notice .addad-message-container{margin-left:70px;margin-right:55px;display:inline-block}.addad-notice .addad-message{font-weight:700;margin:.3em 1em .3em 0;color:#fff}.addad-notice .addad-message a{color:#e6e6e6}.addad-notice .addad-message a:hover{color:#d9d9d9}.addad-notice .addad-close.-icon{position:absolute;right:25px;top:50%;-webkit-transform:translate(0, -50%);-ms-transform:translate(0, -50%);-o-transform:translate(0, -50%);transform:translate(0, -50%);font-size:1.45em;color:#fff}.addad-notice .addad-close.-icon:hover,.addad-notice .addad-close.-icon:active{color:rgba(255,255,255,0.7)}.addad-notice .addad-actions{margin:.3em 0}.addad-notice .addad-actions .addad-action{margin-bottom:0;font-weight:normal;background-image:none;border:1px solid transparent;padding:6px 16px;font-size:1rem;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:inline-block;font-size:.9em;line-height:1.55;text-align:center;vertical-align:middle;cursor:pointer;white-space:nowrap;text-shadow:none;padding:.5em 1em;border:2px solid transparent;color:#ff8430;background-color:transparent;border-color:#ff8430;border-radius:0;float:left;font-size:.938em;margin-right:1.2em;margin-top:.2em;margin-bottom:.2em}.addad-notice .addad-actions .addad-action:focus,.addad-notice .addad-actions .addad-action:active:focus,.addad-notice .addad-actions .addad-action.active:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.addad-notice .addad-actions .addad-action:hover,.addad-notice .addad-actions .addad-action:focus{color:#333;text-decoration:none}.addad-notice .addad-actions .addad-action:active,.addad-notice .addad-actions .addad-action.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.addad-notice .addad-actions .addad-action.disabled,.addad-notice .addad-actions .addad-action[disabled],fieldset[disabled] .addad-notice .addad-actions .addad-action{cursor:not-allowed;pointer-events:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}.addad-notice .addad-actions .addad-action:active,.addad-notice .addad-actions .addad-action:hover,.addad-notice .addad-actions .addad-action.active{outline:0;background-image:none}.addad-notice .addad-actions .addad-action:active,.addad-notice .addad-actions .addad-action.active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.addad-notice .addad-actions .addad-action.btn-xs{font-size:.929rem}.addad-notice .addad-actions .addad-action.btn-sm{font-size:1rem}.addad-notice .addad-actions .addad-action.btn-m{font-size:1.143rem}.addad-notice .addad-actions .addad-action.btn-lg{font-size:1.286rem}.addad-notice .addad-actions .addad-action:hover,.addad-notice .addad-actions .addad-action:focus,.addad-notice .addad-actions .addad-action:active,.addad-notice .addad-actions .addad-action.active,.open>.dropdown-toggle.addad-notice .addad-actions .addad-action{color:#ff8430;background-color:rgba(0,0,0,0)}.addad-notice .addad-actions .addad-action:active,.addad-notice .addad-actions .addad-action.active,.open>.dropdown-toggle.addad-notice .addad-actions .addad-action{background-image:none}.addad-notice .addad-actions .addad-action.disabled,.addad-notice .addad-actions .addad-action[disabled],fieldset[disabled] .addad-notice .addad-actions .addad-action,.addad-notice .addad-actions .addad-action.disabled:hover,.addad-notice .addad-actions .addad-action[disabled]:hover,fieldset[disabled] .addad-notice .addad-actions .addad-action:hover,.addad-notice .addad-actions .addad-action.disabled:focus,.addad-notice .addad-actions .addad-action[disabled]:focus,fieldset[disabled] .addad-notice .addad-actions .addad-action:focus,.addad-notice .addad-actions .addad-action.disabled:active,.addad-notice .addad-actions .addad-action[disabled]:active,fieldset[disabled] .addad-notice .addad-actions .addad-action:active,.addad-notice .addad-actions .addad-action.disabled.active,.addad-notice .addad-actions .addad-action[disabled].active,fieldset[disabled] .addad-notice .addad-actions .addad-action.active{background-color:transparent;border-color:#ff8430}.addad-notice .addad-actions .addad-action .badge{color:transparent;background-color:#ff8430}.addad-notice .addad-actions .addad-action:hover,.addad-notice .addad-actions .addad-action:focus{text-decoration:none;background:#ff8430;color:#fff}.addad-notice .addad-actions .addad-action[type="submit"],.addad-notice .addad-actions .addad-action#submit,.addad-notice .addad-actions .addad-action.cta-btn{font-weight:700;color:#fff;background-color:#ff8430;border-color:transparent}.addad-notice .addad-actions .addad-action[type="submit"]:hover,.addad-notice .addad-actions .addad-action#submit:hover,.addad-notice .addad-actions .addad-action.cta-btn:hover,.addad-notice .addad-actions .addad-action[type="submit"]:focus,.addad-notice .addad-actions .addad-action#submit:focus,.addad-notice .addad-actions .addad-action.cta-btn:focus,.addad-notice .addad-actions .addad-action[type="submit"]:active,.addad-notice .addad-actions .addad-action#submit:active,.addad-notice .addad-actions .addad-action.cta-btn:active,.addad-notice .addad-actions .addad-action[type="submit"].active,.addad-notice .addad-actions .addad-action#submit.active,.addad-notice .addad-actions .addad-action.cta-btn.active,.open>.dropdown-toggle.addad-notice .addad-actions .addad-action[type="submit"],.open>.dropdown-toggle.addad-notice .addad-actions .addad-action#submit,.open>.dropdown-toggle.addad-notice .addad-actions .addad-action.cta-btn{color:#fff;background-color:#fc6600}.addad-notice .addad-actions .addad-action[type="submit"]:active,.addad-notice .addad-actions .addad-action#submit:active,.addad-notice .addad-actions .addad-action.cta-btn:active,.addad-notice .addad-actions .addad-action[type="submit"].active,.addad-notice .addad-actions .addad-action#submit.active,.addad-notice .addad-actions .addad-action.cta-btn.active,.open>.dropdown-toggle.addad-notice .addad-actions .addad-action[type="submit"],.open>.dropdown-toggle.addad-notice .addad-actions .addad-action#submit,.open>.dropdown-toggle.addad-notice .addad-actions .addad-action.cta-btn{background-image:none}.addad-notice .addad-actions .addad-action[type="submit"].disabled,.addad-notice .addad-actions .addad-action#submit.disabled,.addad-notice .addad-actions .addad-action.cta-btn.disabled,.addad-notice .addad-actions .addad-action[type="submit"][disabled],.addad-notice .addad-actions .addad-action#submit[disabled],.addad-notice .addad-actions .addad-action.cta-btn[disabled],fieldset[disabled] .addad-notice .addad-actions .addad-action[type="submit"],fieldset[disabled] .addad-notice .addad-actions .addad-action#submit,fieldset[disabled] .addad-notice .addad-actions .addad-action.cta-btn,.addad-notice .addad-actions .addad-action[type="submit"].disabled:hover,.addad-notice .addad-actions .addad-action#submit.disabled:hover,.addad-notice .addad-actions .addad-action.cta-btn.disabled:hover,.addad-notice .addad-actions .addad-action[type="submit"][disabled]:hover,.addad-notice .addad-actions .addad-action#submit[disabled]:hover,.addad-notice .addad-actions .addad-action.cta-btn[disabled]:hover,fieldset[disabled] .addad-notice .addad-actions .addad-action[type="submit"]:hover,fieldset[disabled] .addad-notice .addad-actions .addad-action#submit:hover,fieldset[disabled] .addad-notice .addad-actions .addad-action.cta-btn:hover,.addad-notice .addad-actions .addad-action[type="submit"].disabled:focus,.addad-notice .addad-actions .addad-action#submit.disabled:focus,.addad-notice .addad-actions .addad-action.cta-btn.disabled:focus,.addad-notice .addad-actions .addad-action[type="submit"][disabled]:focus,.addad-notice .addad-actions .addad-action#submit[disabled]:focus,.addad-notice .addad-actions .addad-action.cta-btn[disabled]:focus,fieldset[disabled] .addad-notice .addad-actions .addad-action[type="submit"]:focus,fieldset[disabled] .addad-notice .addad-actions .addad-action#submit:focus,fieldset[disabled] .addad-notice .addad-actions .addad-action.cta-btn:focus,.addad-notice .addad-actions .addad-action[type="submit"].disabled:active,.addad-notice .addad-actions .addad-action#submit.disabled:active,.addad-notice .addad-actions .addad-action.cta-btn.disabled:active,.addad-notice .addad-actions .addad-action[type="submit"][disabled]:active,.addad-notice .addad-actions .addad-action#submit[disabled]:active,.addad-notice .addad-actions .addad-action.cta-btn[disabled]:active,fieldset[disabled] .addad-notice .addad-actions .addad-action[type="submit"]:active,fieldset[disabled] .addad-notice .addad-actions .addad-action#submit:active,fieldset[disabled] .addad-notice .addad-actions .addad-action.cta-btn:active,.addad-notice .addad-actions .addad-action[type="submit"].disabled.active,.addad-notice .addad-actions .addad-action#submit.disabled.active,.addad-notice .addad-actions .addad-action.cta-btn.disabled.active,.addad-notice .addad-actions .addad-action[type="submit"][disabled].active,.addad-notice .addad-actions .addad-action#submit[disabled].active,.addad-notice .addad-actions .addad-action.cta-btn[disabled].active,fieldset[disabled] .addad-notice .addad-actions .addad-action[type="submit"].active,fieldset[disabled] .addad-notice .addad-actions .addad-action#submit.active,fieldset[disabled] .addad-notice .addad-actions .addad-action.cta-btn.active{background-color:#ff8430;border-color:transparent}.addad-notice .addad-actions .addad-action[type="submit"] .badge,.addad-notice .addad-actions .addad-action#submit .badge,.addad-notice .addad-actions .addad-action.cta-btn .badge{color:#ff8430;background-color:#fff}.addad-notice .addad-actions::after{content:'';display:block;clear:both}.addad-notice.addad-notice-contained{-webkit-transition:margin-top 0.3s, transform 0.3s, opacity 0.3s;-o-transition:margin-top 0.3s, transform 0.3s, opacity 0.3s;transition:margin-top 0.3s, transform 0.3s, opacity 0.3s;margin-top:0}.addad-notice.addad-notice-contained>.container{-webkit-transition:padding;-o-transition:padding;transition:padding;padding-top:0;padding-bottom:0}/*!
Theme Name: Addad
Theme URI: http://www.addad.se
Author: Anton Carlgren
Description: 
Version: 1.0
=======
*/.addcode-maintenance{background:#323232}.addcode-maintenance>div{display:table;height:100%;width:100%;max-width:50rem;margin:0 auto}.addcode-maintenance>div h1{display:table-cell;position:relative;text-align:center;vertical-align:middle;bottom:50px;margin:0;font-size:2.329rem;color:#FFF}.less-exported{display:none !important;font-family:''}html,body{height:100%}body.has-open-slidebar{overflow:hidden}.site-container{position:relative}pre.xdebug-var-dump{font-size:14px}@keyframes saloon{from{transform:perspective(1000px) rotateY(90deg)}to{transform:perspective(1000px) rotateY(-270deg)}}.slidebar-backdrop,.addcode-backdrop{position:fixed;z-index:990;top:0;left:0;right:0;bottom:0;background-color:#141414;visibility:hidden;opacity:0;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transition:opacity 0.3s, visibility 0s 0.3s;-o-transition:opacity 0.3s, visibility 0s 0.3s;transition:opacity 0.3s, visibility 0s 0.3s;will-change:opacity}.slidebar-backdrop.-open,.addcode-backdrop.-open{visibility:visible}.slidebar-backdrop.-open.-animated,.addcode-backdrop.-open.-animated{opacity:.7;-webkit-transition:opacity .3s;-o-transition:opacity .3s;transition:opacity .3s}body[data-backdrop-position="main"] .slidebar-backdrop,body[data-backdrop-position="main"] .addcode-backdrop{z-index:2}.slidebar{position:fixed;z-index:992;top:0;bottom:0;overflow:auto;-webkit-overflow-scrolling:touch;overflow-x:hidden;background:#ff8d40;color:#FFF;padding:3em 4em;visibility:hidden;will-change:transform;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transition:-webkit-transform .2s,visibility .2s;-moz-transition:-moz-transform .2s,visibility .2s;-o-transition:-o-transform .2s,visibility .2s;transition:transform .2s,visibility .2s}body.admin-bar .slidebar{top:32px}@media screen and (max-width:782px){body.admin-bar .slidebar{top:46px}}@media screen and (max-width:600px){body.admin-bar .slidebar{top:0}}.slidebar .-close{position:absolute;z-index:1;line-height:1;border:0;font-size:2rem;text-decoration:none;background:transparent;top:0;padding:.55em}.slidebar.-left{left:0;padding-right:5em}.slidebar.-left .-close{left:0;padding-left:1em}.slidebar.-left.effect-slide{-webkit-transform:translate(-100%, 0);-ms-transform:translate(-100%, 0);-o-transform:translate(-100%, 0);transform:translate(-100%, 0)}.slidebar.-left.effect-saloon{-webkit-transform-origin:left;-moz-transform-origin:left;-ms-transform-origin:left;transform-origin:left;-webkit-transform:perspective(1500px) rotateY(90deg);-ms-transform:perspective(1500px) rotateY(90deg);-o-transform:perspective(1500px) rotateY(90deg);transform:perspective(1500px) rotateY(90deg)}.slidebar.-right{right:0;padding-left:5em}.slidebar.-right .-close{right:0;padding-right:1em}.slidebar.-right.effect-slide{-webkit-transform:translate(100%, 0);-ms-transform:translate(100%, 0);-o-transform:translate(100%, 0);transform:translate(100%, 0)}.slidebar.-right.effect-saloon{-webkit-transform-origin:right;-moz-transform-origin:right;-ms-transform-origin:right;transform-origin:right;-webkit-transform:perspective(1500px) rotateY(-90deg);-ms-transform:perspective(1500px) rotateY(-90deg);-o-transform:perspective(1500px) rotateY(-90deg);transform:perspective(1500px) rotateY(-90deg)}.slidebar.-open{visibility:visible}.slidebar.-open.effect-slide{-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);-o-transform:translate(0, 0);transform:translate(0, 0)}.slidebar.-open.effect-saloon{-webkit-transform:perspective(1500px) rotateY(0deg);-ms-transform:perspective(1500px) rotateY(0deg);-o-transform:perspective(1500px) rotateY(0deg);transform:perspective(1500px) rotateY(0deg)}.slidebar+.slidebar-button.-fixed{position:fixed;top:50%;z-index:5;margin-bottom:0;border-radius:.167em;border-bottom-left-radius:0;border-bottom-right-radius:0}.-left.slidebar+.slidebar-button.-fixed{left:0;-webkit-transform-origin:bottom left;-moz-transform-origin:bottom left;-ms-transform-origin:bottom left;transform-origin:bottom left;-webkit-transform:translateY(-50%) rotate(90deg) translateX(-50%) translateZ(0);-ms-transform:translateY(-50%) rotate(90deg) translateX(-50%) translateZ(0);-o-transform:translateY(-50%) rotate(90deg) translateX(-50%) translateZ(0);transform:translateY(-50%) rotate(90deg) translateX(-50%) translateZ(0)}.-right.slidebar+.slidebar-button.-fixed{right:0;-webkit-transform-origin:bottom right;-moz-transform-origin:bottom right;-ms-transform-origin:bottom right;transform-origin:bottom right;-webkit-transform:translateY(-50%) rotate(-90deg) translateX(50%) translateZ(0);-ms-transform:translateY(-50%) rotate(-90deg) translateX(50%) translateZ(0);-o-transform:translateY(-50%) rotate(-90deg) translateX(50%) translateZ(0);transform:translateY(-50%) rotate(-90deg) translateX(50%) translateZ(0)}@media screen and (max-width:600px){#wpadminbar{z-index:991}}nav.slidebar{width:480px;max-width:90vw}nav.slidebar ul{padding-left:0}nav.slidebar ul ul{font-size:.9em}nav.slidebar ul ul ul{padding-left:1em}nav.slidebar li>a{display:block;line-height:1.4em;color:#FFF;font-weight:300;font-size:1.063em;font-family:"Exo 2","Helvetica Neue",Helvetica,Arial,sans-serif;padding:0}@media (max-width:991px){nav.slidebar li>a{font-size:1.25em}}nav.slidebar>ul>li>a{font-size:2em}nav.slidebar>ul>li>a:focus,nav.slidebar>ul>li>a:hover{background:none;color:#494949}nav.slidebar>ul>li>a:focus button::before,nav.slidebar>ul>li>a:hover button::before,nav.slidebar>ul>li>a:focus button::after,nav.slidebar>ul>li>a:hover button::after{background:#494949}nav.slidebar .addad-dropdown-toggle{display:inline-block;background:none;border-radius:0;vertical-align:middle;margin-top:0}nav.slidebar .nav-header{margin-bottom:3em}@media (max-width:767px){nav.slidebar .nav-header{margin-bottom:2em}}nav.slidebar .nav>li>.sub-menu{display:none}.subNavContainer{position:relative}.subNavContainer .post-edit-link{top:-10px;right:-10px}.subNav{margin:0 0 20px 0;padding:0}.subNav ul{margin:0;padding:0}.subNav li{display:block;list-style:none}.subNav a{-webkit-transition:all .2s;-o-transition:all .2s;transition:all .2s;font-size:1.171em;border:1px solid #ddd;line-height:1.55;border-bottom:2px solid #DDD;background:#FFF;margin-bottom:-1px;padding:8px 15px;display:block;position:relative;color:#323232}.subNav a .caret{-webkit-transition:all .2s;-o-transition:all .2s;transition:all .2s;display:none}.subNav .sub-menu a{padding-left:25px;font-size:1em;font-weight:300;border-bottom:1px solid #ddd}.subNav .sub-menu .sub-menu a{padding-left:40px;font-size:.929em}.subNav .sub-menu .sub-menu .sub-menu a{padding-left:50px;font-size:.857em}.subNav a:hover,.subNav a:focus,.subNav .sub-menu a:hover,.subNav .sub-menu a:focus{text-decoration:none;color:#7c7c7c}.subNav .current-menu-item>a,.subNav .sub-menu .current-menu-item>a{color:#494949}.subNav .current-menu-ancestor .sub-menu,.subNav .current-menu-item .sub-menu{display:block}.subNav .caret{display:none}.ie-notifier{width:100%;background:#B94A48;height:80px;color:#F2DEDE;font-size:.8rem;font-family:Arial,Helvetica,sans-serif}.ie-notifier .container{width:800px;margin:0 auto;height:80px;line-height:80px}.ie-notifier .text{float:left;margin-top:16px}.ie-notifier ul.icon-list{padding:0;margin-bottom:0;margin-left:4em}.ie-notifier ul.icon-list li{margin:0}.ie-notifier ul.icon-list i.fa{font-size:2em;line-height:1.4em}.ie-notifier .browsers{float:right;height:40px;margin-top:18px;width:193px}.ie-notifier a{width:40px;height:40px;display:block;margin:0 0 0 7px;float:left}.ie-notifier .chrome{background:url("../addad/img/chrome.png") no-repeat}.ie-notifier .firefox{background:url("../addad/img/firefox.png") no-repeat}.ie-notifier .safari{background:url("../addad/img/safari.png") no-repeat}.ie-notifier .iexplorer{background:url("../addad/img/iexplorer.png") no-repeat}html{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.addad-lazy:not(.-loaded){color:transparent;text-indent:-100%}.addad-lazy:not(.-loaded):not(.image-placeholder),.addad-lazy:not(.-loaded)[lazy-fade],.addad-lazy:not(.-loaded)[lazy-loading]{visibility:hidden;pointer-events:none}.addad-lazy-loading{text-align:center;opacity:.5}.section-row-column-background.section-relative-height .section-single{padding:0;display:-webkit-flex;display:-ms-flexbox;display:flex}.section-row-column-background.section-relative-height .column-relative-push{min-width:100%}.section-row-column-background.section-relative-height .column-relative-push::before{content:'';float:left;padding-bottom:100%}.section-row-column-background.section-relative-height .column-relative-push~.section-padding-container{right:100%}.section-row-column-background .section-container{padding-top:.3em}.section-row-column-background .container-fluid{margin:0;padding:0;width:100%}.section-row-column-background .container-fluid>.row{margin:0}.section-row-column-background .section-single{overflow:hidden;position:relative}.section-row-column-background .section-single.has_bgimage{text-shadow:1px 1px 1px rgba(0,0,0,0.2)}.section-row-column-background .section-single .section-padding-container{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;align-self:center;min-width:100%;position:relative}.section-row-column-background .section-single .section-padding-container>.section-container{min-width:calc(100% +  20px);width:100%}@media (min-width:1200px){.section-row-column-background .section-single .section-padding-container>.section-container{min-width:calc(100% +  30px)}}.section-row-column-background .section-single .section_column_link_whole{position:absolute;z-index:100;top:0;left:0;width:100%;height:100%;text-indent:200%;white-space:nowrap;font-size:0;opacity:0;-webkit-transform-style:preserve-3d}.section-row-column-background .section-single .section_column_link_whole:focus{opacity:1;outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.section-row-column-background .section-single.color-bg{-webkit-transition:background-color .8s;-o-transition:background-color .8s;transition:background-color .8s}.section-row-column-background .section-single .column-background-container{isolation:isolate}.section-row-column-background .section-single .column-background{position:absolute;top:0;left:0;width:100%;height:100%;z-index:0;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.section-row-column-background .section-single .column-background-color{-webkit-transition:background-color .8s,opacity .8s;-moz-transition:background-color .8s,opacity .8s;-ms-transition:background-color .8s,opacity .8s;-o-transition:background-color .8s,opacity .8s;transition:background-color .8s,opacity .8s;top:-5%;left:-5%;width:110%;height:110%;-webkit-transform:translate3d(0, 0, 51px);transform:translate3d(0, 0, 51px)}.section-row-column-background .section-single .column-background-image{-webkit-transition:all .8s;-o-transition:all .8s;transition:all .8s;-webkit-backface-visibility:hidden;backface-visibility:hidden;object-fit:cover;font-family:'object-fit: cover','object-position: 50% 50%';object-position:50% 50%;width:100%;height:100%;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.section-row-column-background .section-single .column-background-image[data-v-align="top"]{object-position:50% 0;font-family:'object-position: 50% 0%'}.section-row-column-background .section-single .column-background-image[data-v-align="bottom"]{object-position:50% 100%;font-family:'object-position: 50% 100%'}.section-row-column-background .section-single .column-background-image[data-h-align="left"]{object-position:0 50%;font-family:'object-position: 0% 50%'}.section-row-column-background .section-single .column-background-image[data-h-align="left"][data-v-align="top"]{object-position:0 0;font-family:'object-position: 0% 0%'}.section-row-column-background .section-single .column-background-image[data-h-align="left"][data-v-align="bottom"]{object-position:0 100%;font-family:'object-position: 0% 100%'}.section-row-column-background .section-single .column-background-image[data-h-align="right"]{object-position:100% 50%;font-family:'object-position: 100% 50%'}.section-row-column-background .section-single .column-background-image[data-h-align="right"][data-v-align="top"]{object-position:100% 0;font-family:'object-position: 100% 0%'}.section-row-column-background .section-single .column-background-image[data-h-align="right"][data-v-align="bottom"]{object-position:100% 100%;font-family:'object-position: 100% 100%'}.section-row-column-background .section-single.show-section-column-link-whole{cursor:pointer;position:relative;overflow:hidden}.section-row-column-background .section-single.show-section-column-link-whole .column-background-image-container{-webkit-perspective:1000px;perspective:1000px;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform:translate3d(0, 0, 50px);transform:translate3d(0, 0, 50px)}.section-row-column-background .section-single.show-section-column-link-whole>.column-background-container,.section-row-column-background .section-single.show-section-column-link-whole>.section-padding-container,.section-row-column-background .section-single.show-section-column-link-whole>.column-background{pointer-events:none}.section-row-column-background .section-single.show-section-column-link-whole:hover .column-background-image{-webkit-transform:translate3d(0, 0, 50px);transform:translate3d(0, 0, 50px)}_::-webkit-full-page-media .section-row-column-background .section-single .column-background-container,_:future .section-row-column-background .section-single .column-background-container,:root .section-row-column-background .section-single .column-background-container{isolation:auto}.img-background{position:absolute;top:0;left:0;width:100%;height:100%;z-index:-1;overflow:hidden}.img-background>img,.img-background>.rounding-fix>img{position:absolute;object-fit:cover;font-family:'object-fit: cover','object-position: 50% 50%';object-position:50% 50%;width:100%;height:100%;z-index:0;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.img-background>img[data-v-align="top"],.img-background>.rounding-fix>img[data-v-align="top"]{object-position:50% 0;font-family:'object-position: 50% 0%'}.img-background>img[data-v-align="bottom"],.img-background>.rounding-fix>img[data-v-align="bottom"]{object-position:50% 100%;font-family:'object-position: 50% 100%'}.img-background>img[data-h-align="left"],.img-background>.rounding-fix>img[data-h-align="left"]{object-position:0 50%;font-family:'object-position: 0% 50%'}.img-background>img[data-h-align="left"][data-v-align="top"],.img-background>.rounding-fix>img[data-h-align="left"][data-v-align="top"]{object-position:0 0;font-family:'object-position: 0% 0%'}.img-background>img[data-h-align="left"][data-v-align="bottom"],.img-background>.rounding-fix>img[data-h-align="left"][data-v-align="bottom"]{object-position:0 100%;font-family:'object-position: 0% 100%'}.img-background>img[data-h-align="right"],.img-background>.rounding-fix>img[data-h-align="right"]{object-position:100% 50%;font-family:'object-position: 100% 50%'}.img-background>img[data-h-align="right"][data-v-align="top"],.img-background>.rounding-fix>img[data-h-align="right"][data-v-align="top"]{object-position:100% 0;font-family:'object-position: 100% 0%'}.img-background>img[data-h-align="right"][data-v-align="bottom"],.img-background>.rounding-fix>img[data-h-align="right"][data-v-align="bottom"]{object-position:100% 100%;font-family:'object-position: 100% 100%'}.img-background>.overlay-background{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1}.img-background>.rounding-fix{position:relative;overflow:hidden;height:calc(100% - 0.5px);width:calc(100% - 0.5px)}.img-background.custom-code-background{position:absolute !important;z-index:1}.img-background.-align-top>img,.img-background.-align-top>.rounding-fix>img{-webkit-transform:translate(-50%, 0);-ms-transform:translate(-50%, 0);-o-transform:translate(-50%, 0);transform:translate(-50%, 0);top:0}.img-background.-align-bottom>img,.img-background.-align-bottom>.rounding-fix>img{-webkit-transform:translate(-50%, 0);-ms-transform:translate(-50%, 0);-o-transform:translate(-50%, 0);transform:translate(-50%, 0);top:auto;bottom:0}.section_inside{background:#FFF}.img-background~.section_inside{background:transparent}.fixed-bg>.custom-code-background,.fixed-bg>.section_bg{position:fixed !important;z-index:-1}.fixed-bg>.section_row_bg{clip:rect(0, auto, auto, 0)}html:not(.touch) .fixed-bg>.section_row_bg img{position:fixed;bottom:0;-webkit-transform:translateZ(0);-ms-transform:translateZ(0);-o-transform:translateZ(0);transform:translateZ(0);-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden}.fixed-bg>.custom-code-background~.section_bg,.fixed-bg>.custom-code-background~.section_row-bg{z-index:-2}h1.only-sections{margin:2.52vw 0;text-align:center}@media (min-width:1600px) and (max-width:1870px){h1.only-sections{margin: 2.772vw 0}}@media (min-width:1200px) and (max-width:1599px){h1.only-sections{margin: 40px 0}}@media (min-width:992px) and (max-width:1199px){h1.only-sections{margin: 35px 0}}@media (max-width:991px){h1.only-sections{margin: 30px 0}}h1.sections-only-h1{padding:.571em 0 .571em 0;margin:0;text-align:center;font-size:2.717em}.section_wrapper{z-index:1}.section_wrapper,.section-row{position:relative}.section_wrapper.white-bg,.section-row.white-bg,.column-background.white-bg,.section_wrapper.white-bg .section_inside,.section-row.white-bg .section_inside,.column-background.white-bg .section_inside{background:#FFF}.section_wrapper.gray-bg,.section-row.gray-bg,.column-background.gray-bg,.section_wrapper.gray-bg .section_inside,.section-row.gray-bg .section_inside,.column-background.gray-bg .section_inside{background:#eee}.section_wrapper.custom-bg,.section-row.custom-bg,.column-background.custom-bg{background-position:center center;background-size:cover;text-shadow:1px 1px 1px rgba(0,0,0,0.2)}.section_wrapper.custom-bg.pattern-bg,.section-row.custom-bg.pattern-bg,.column-background.custom-bg.pattern-bg{background-size:auto;background-repeat:repeat}.section_wrapper.fixed-bg,.section-row.fixed-bg,.column-background.fixed-bg{overflow:hidden;position:relative;z-index:0}.section_wrapper.parallax-bg,.section-row.parallax-bg,.column-background.parallax-bg{background-attachment:fixed}.section_wrapper.custom-code-bg>.section-area-sideways,.section-row.custom-code-bg>.section-area-sideways,.column-background.custom-code-bg>.section-area-sideways{z-index:2}.section_wrapper .parallax-element,.section-row .parallax-element,.column-background .parallax-element{position:relative}.section_wrapper.color-bg,.section-row.color-bg,.column-background.color-bg,.section_wrapper .color-bg,.section-row .color-bg,.column-background .color-bg{text-shadow:none}.section-single.white-bg{background:#FFF}.section-single.gray-bg{background:#eee}.section_inside.owl-carousel{position:relative}.owl-carousel{display:inline-block;position:relative}.owl-carousel .owl-controls{position:absolute;bottom:0;width:100%}.owl-carousel .owl-controls .owl-pagination{position:relative}.owl-carousel.-pre-init:not(.visuallyhidden){display:block}.owl-carousel.-pre-init:not(.visuallyhidden)>:not(:first-child){display:none}@media (min-height:300px){.header-wrapper:not(.topbar-parent)~main .section_cover,.header-wrapper:not(.topbar-parent)~main .section_cover .section_inside{height:calc(100vh - 65px)}main.main-wrapper div.section_wrapper~div.section_cover,main.main-wrapper div.section_wrapper~div.section_cover .section_inside{min-height:100vh}.section_cover .cover-position-center{top:50%;transform:translateY(-50%)}.section_cover .cover-position-top{position:absolute;width:100%;top:0}.section_cover .cover-position-bottom{position:absolute;width:100%;bottom:0}}@media (min-height:300px) and (min-width:992px){.header-wrapper.topbar-parent~main .section_cover,.header-wrapper.topbar-parent~main .section_cover .section_inside{height:calc(100vh - 103px)}}@media (min-height:300px) and (max-width:991px){.header-wrapper.topbar-parent~main .section_cover,.header-wrapper.topbar-parent~main .section_cover .section_inside{height:calc(100vh - 127px)}}.column-icon{position:relative;width:100%;overflow:hidden}.img-container:not(.img-icon-no-bg) .column-icon{max-width:200px}.column-icon .column-icon-inside:not(.no-bg){border-radius:50%;content:"";display:block;padding-top:100%}.column-icon .column-icon-inside:not(.no-bg) i{position:absolute;top:50%;left:50%;line-height:inherit;-ms-transform:translate(-50%, -50%);-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);text-shadow:none}.column-icon i{line-height:1.1;font-size:3em}@media (min-width:480px) and (max-width:991px){.section-count-4{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.section-count-4:before,.section-count-4:after{display:none}.section-count-4>.section-single{-webkit-flex:1 1 49.8%;-moz-flex:1 1 49.8%;-ms-flex:1 1 49.8%;-o-flex:1 1 49.8%;flex:1 1 49.8%}}.section-count-4:not(.img_to_top) .column-icon i{font-size:2.4em}@media (min-width:768px) and (max-width:991px){.section-count-4.img_to_top .section-single .img-container{margin-top:20px}}.img_to_left .column-icon i{float:right;margin-right:.1em}.img_to_right .column-icon i{float:left;margin-left:.1em}.img-thumbnail{border-radius:0;display:block}.img-thumbnail.img-circle{border-radius:50%}.img-thumbnail.img-rounded{border-radius:6px}.svg-clip{width:0;height:0}.img-container.img-hex{-webkit-clip-path:polygon(0 50%, 25% 93.333%, 75% 93.333%, 100% 50%, 75% 6.666%, 25% 6.666%);clip-path:polygon(0 50%, 25% 93.333%, 75% 93.333%, 100% 50%, 75% 6.666%, 25% 6.666%);-webkit-clip-path:url("#polygon-clip-hexagon");clip-path:url("#polygon-clip-hexagon")}.section-count-3:not(.img_to_top) .img-thumbnail,.section-count-4:not(.img_to_top) .img-thumbnail,.section-count-5:not(.img_to_top) .img-thumbnail{padding:2px}.section-row-odd{background:#eee}.section_inside{z-index:1;position:relative;height:100%;width:100%}.section-area-sideways{position:relative;height:100%;width:100%}.wistia_embed,.wistia_embed~.section-area-sideways{z-index:1}.section-row{line-height:1.55}.section-row .section-area-sideways img,.section-row .section-area-sideways .img-icon .column-icon{margin:0 auto}.section-row .section-area-sideways .section-btn,.section-row .section-area-sideways .section-link{margin-top:.8565em;display:inline-block}.section-row .section-area-sideways .section-padding-container{padding-top:2.52vw;padding-bottom:2.52vw}@media (min-width:1600px) and (max-width:1870px){.section-row .section-area-sideways .section-padding-container{padding-top: 2.772vw}}@media (min-width:1200px) and (max-width:1599px){.section-row .section-area-sideways .section-padding-container{padding-top: 40px}}@media (min-width:992px) and (max-width:1199px){.section-row .section-area-sideways .section-padding-container{padding-top: 35px}}@media (max-width:991px){.section-row .section-area-sideways .section-padding-container{padding-top: 30px}}@media (min-width:1600px) and (max-width:1870px){.section-row .section-area-sideways .section-padding-container{padding-bottom: 2.772vw}}@media (min-width:1200px) and (max-width:1599px){.section-row .section-area-sideways .section-padding-container{padding-bottom: 40px}}@media (min-width:992px) and (max-width:1199px){.section-row .section-area-sideways .section-padding-container{padding-bottom: 35px}}@media (max-width:991px){.section-row .section-area-sideways .section-padding-container{padding-bottom: 30px}}.section-row .section-area-sideways h2.section-row-title{margin-bottom:2.52vw}@media (min-width:1600px) and (max-width:1870px){.section-row .section-area-sideways h2.section-row-title{margin-bottom: 2.772vw}}@media (min-width:1200px) and (max-width:1599px){.section-row .section-area-sideways h2.section-row-title{margin-bottom: 40px}}@media (min-width:992px) and (max-width:1199px){.section-row .section-area-sideways h2.section-row-title{margin-bottom: 35px}}@media (max-width:991px){.section-row .section-area-sideways h2.section-row-title{margin-bottom: 30px}}.section-row .section-area-sideways.section-padding-top-none .section-padding-container{padding-top:0}.section-row .section-area-sideways.section-padding-bottom-none .section-padding-container{padding-bottom:0}.section-row .section-area-sideways.section-padding-top-xsmall .section-padding-container{padding-top:1.68vw}@media (min-width:1600px) and (max-width:1870px){.section-row .section-area-sideways.section-padding-top-xsmall .section-padding-container{padding-top: 1.848vw}}@media (min-width:1200px) and (max-width:1599px){.section-row .section-area-sideways.section-padding-top-xsmall .section-padding-container{padding-top: 27px}}@media (min-width:992px) and (max-width:1199px){.section-row .section-area-sideways.section-padding-top-xsmall .section-padding-container{padding-top: 24px}}@media (max-width:991px){.section-row .section-area-sideways.section-padding-top-xsmall .section-padding-container{padding-top: 20px}}.section-row .section-area-sideways.section-padding-bottom-xsmall .section-padding-container{padding-bottom:1.68vw}@media (min-width:1600px) and (max-width:1870px){.section-row .section-area-sideways.section-padding-bottom-xsmall .section-padding-container{padding-bottom: 1.848vw}}@media (min-width:1200px) and (max-width:1599px){.section-row .section-area-sideways.section-padding-bottom-xsmall .section-padding-container{padding-bottom: 27px}}@media (min-width:992px) and (max-width:1199px){.section-row .section-area-sideways.section-padding-bottom-xsmall .section-padding-container{padding-bottom: 24px}}@media (max-width:991px){.section-row .section-area-sideways.section-padding-bottom-xsmall .section-padding-container{padding-bottom: 20px}}.section-row .section-area-sideways.section-padding-top-small .section-padding-container,.section-row .section-area-sideways.section-padding-top-Array .section-padding-container,.section-row .section-area-sideways.section-padding-top- .section-padding-container{padding-top:2.52vw}@media (min-width:1600px) and (max-width:1870px){.section-row .section-area-sideways.section-padding-top-small .section-padding-container,.section-row .section-area-sideways.section-padding-top-Array .section-padding-container,.section-row .section-area-sideways.section-padding-top- .section-padding-container{padding-top: 2.772vw}}@media (min-width:1200px) and (max-width:1599px){.section-row .section-area-sideways.section-padding-top-small .section-padding-container,.section-row .section-area-sideways.section-padding-top-Array .section-padding-container,.section-row .section-area-sideways.section-padding-top- .section-padding-container{padding-top: 40px}}@media (min-width:992px) and (max-width:1199px){.section-row .section-area-sideways.section-padding-top-small .section-padding-container,.section-row .section-area-sideways.section-padding-top-Array .section-padding-container,.section-row .section-area-sideways.section-padding-top- .section-padding-container{padding-top: 35px}}@media (max-width:991px){.section-row .section-area-sideways.section-padding-top-small .section-padding-container,.section-row .section-area-sideways.section-padding-top-Array .section-padding-container,.section-row .section-area-sideways.section-padding-top- .section-padding-container{padding-top: 30px}}.section-row .section-area-sideways.section-padding-bottom-small .section-padding-container,.section-row .section-area-sideways.section-padding-top-Array .section-padding-container,.section-row .section-area-sideways.section-padding-bottom- .section-padding-container{padding-bottom:2.52vw}@media (min-width:1600px) and (max-width:1870px){.section-row .section-area-sideways.section-padding-bottom-small .section-padding-container,.section-row .section-area-sideways.section-padding-top-Array .section-padding-container,.section-row .section-area-sideways.section-padding-bottom- .section-padding-container{padding-bottom: 2.772vw}}@media (min-width:1200px) and (max-width:1599px){.section-row .section-area-sideways.section-padding-bottom-small .section-padding-container,.section-row .section-area-sideways.section-padding-top-Array .section-padding-container,.section-row .section-area-sideways.section-padding-bottom- .section-padding-container{padding-bottom: 40px}}@media (min-width:992px) and (max-width:1199px){.section-row .section-area-sideways.section-padding-bottom-small .section-padding-container,.section-row .section-area-sideways.section-padding-top-Array .section-padding-container,.section-row .section-area-sideways.section-padding-bottom- .section-padding-container{padding-bottom: 35px}}@media (max-width:991px){.section-row .section-area-sideways.section-padding-bottom-small .section-padding-container,.section-row .section-area-sideways.section-padding-top-Array .section-padding-container,.section-row .section-area-sideways.section-padding-bottom- .section-padding-container{padding-bottom: 30px}}.section-row .section-area-sideways.section-padding-top-smallmedium .section-padding-container{padding-top:3.78vw}@media (min-width:1600px) and (max-width:1870px){.section-row .section-area-sideways.section-padding-top-smallmedium .section-padding-container{padding-top: 4.158vw}}@media (min-width:1200px) and (max-width:1599px){.section-row .section-area-sideways.section-padding-top-smallmedium .section-padding-container{padding-top: 60px}}@media (min-width:992px) and (max-width:1199px){.section-row .section-area-sideways.section-padding-top-smallmedium .section-padding-container{padding-top: 53px}}@media (max-width:991px){.section-row .section-area-sideways.section-padding-top-smallmedium .section-padding-container{padding-top: 45px}}.section-row .section-area-sideways.section-padding-bottom-smallmedium .section-padding-container{padding-bottom:3.78vw}@media (min-width:1600px) and (max-width:1870px){.section-row .section-area-sideways.section-padding-bottom-smallmedium .section-padding-container{padding-bottom: 4.158vw}}@media (min-width:1200px) and (max-width:1599px){.section-row .section-area-sideways.section-padding-bottom-smallmedium .section-padding-container{padding-bottom: 60px}}@media (min-width:992px) and (max-width:1199px){.section-row .section-area-sideways.section-padding-bottom-smallmedium .section-padding-container{padding-bottom: 53px}}@media (max-width:991px){.section-row .section-area-sideways.section-padding-bottom-smallmedium .section-padding-container{padding-bottom: 45px}}.section-row .section-area-sideways.section-padding-top-medium .section-padding-container{padding-top:5.04vw}@media (min-width:1600px) and (max-width:1870px){.section-row .section-area-sideways.section-padding-top-medium .section-padding-container{padding-top: 5.544vw}}@media (min-width:1200px) and (max-width:1599px){.section-row .section-area-sideways.section-padding-top-medium .section-padding-container{padding-top: 81px}}@media (min-width:992px) and (max-width:1199px){.section-row .section-area-sideways.section-padding-top-medium .section-padding-container{padding-top: 71px}}@media (max-width:991px){.section-row .section-area-sideways.section-padding-top-medium .section-padding-container{padding-top: 60px}}.section-row .section-area-sideways.section-padding-bottom-medium .section-padding-container{padding-bottom:5.04vw}@media (min-width:1600px) and (max-width:1870px){.section-row .section-area-sideways.section-padding-bottom-medium .section-padding-container{padding-bottom: 5.544vw}}@media (min-width:1200px) and (max-width:1599px){.section-row .section-area-sideways.section-padding-bottom-medium .section-padding-container{padding-bottom: 81px}}@media (min-width:992px) and (max-width:1199px){.section-row .section-area-sideways.section-padding-bottom-medium .section-padding-container{padding-bottom: 71px}}@media (max-width:991px){.section-row .section-area-sideways.section-padding-bottom-medium .section-padding-container{padding-bottom: 60px}}.section-row .section-area-sideways.section-padding-top-mediumlarge .section-padding-container{padding-top:7.56vw}@media (min-width:1600px) and (max-width:1870px){.section-row .section-area-sideways.section-padding-top-mediumlarge .section-padding-container{padding-top: 8.316vw}}@media (min-width:1200px) and (max-width:1599px){.section-row .section-area-sideways.section-padding-top-mediumlarge .section-padding-container{padding-top: 121px}}@media (min-width:992px) and (max-width:1199px){.section-row .section-area-sideways.section-padding-top-mediumlarge .section-padding-container{padding-top: 106px}}@media (max-width:991px){.section-row .section-area-sideways.section-padding-top-mediumlarge .section-padding-container{padding-top: 91px}}.section-row .section-area-sideways.section-padding-bottom-mediumlarge .section-padding-container{padding-bottom:7.56vw}@media (min-width:1600px) and (max-width:1870px){.section-row .section-area-sideways.section-padding-bottom-mediumlarge .section-padding-container{padding-bottom: 8.316vw}}@media (min-width:1200px) and (max-width:1599px){.section-row .section-area-sideways.section-padding-bottom-mediumlarge .section-padding-container{padding-bottom: 121px}}@media (min-width:992px) and (max-width:1199px){.section-row .section-area-sideways.section-padding-bottom-mediumlarge .section-padding-container{padding-bottom: 106px}}@media (max-width:991px){.section-row .section-area-sideways.section-padding-bottom-mediumlarge .section-padding-container{padding-bottom: 91px}}.section-row .section-area-sideways.section-padding-top-large .section-padding-container{padding-top:10.08vw}@media (min-width:1600px) and (max-width:1870px){.section-row .section-area-sideways.section-padding-top-large .section-padding-container{padding-top: 11.088vw}}@media (min-width:1200px) and (max-width:1599px){.section-row .section-area-sideways.section-padding-top-large .section-padding-container{padding-top: 161px}}@media (min-width:992px) and (max-width:1199px){.section-row .section-area-sideways.section-padding-top-large .section-padding-container{padding-top: 141px}}@media (max-width:991px){.section-row .section-area-sideways.section-padding-top-large .section-padding-container{padding-top: 121px}}.section-row .section-area-sideways.section-padding-bottom-large .section-padding-container{padding-bottom:10.08vw}@media (min-width:1600px) and (max-width:1870px){.section-row .section-area-sideways.section-padding-bottom-large .section-padding-container{padding-bottom: 11.088vw}}@media (min-width:1200px) and (max-width:1599px){.section-row .section-area-sideways.section-padding-bottom-large .section-padding-container{padding-bottom: 161px}}@media (min-width:992px) and (max-width:1199px){.section-row .section-area-sideways.section-padding-bottom-large .section-padding-container{padding-bottom: 141px}}@media (max-width:991px){.section-row .section-area-sideways.section-padding-bottom-large .section-padding-container{padding-bottom: 121px}}.section-row .section-area-sideways.section-padding-top-xlarge .section-padding-container{padding-top:15.12vw}@media (min-width:1600px) and (max-width:1870px){.section-row .section-area-sideways.section-padding-top-xlarge .section-padding-container{padding-top: 16.632vw}}@media (min-width:1200px) and (max-width:1599px){.section-row .section-area-sideways.section-padding-top-xlarge .section-padding-container{padding-top: 242px}}@media (min-width:992px) and (max-width:1199px){.section-row .section-area-sideways.section-padding-top-xlarge .section-padding-container{padding-top: 212px}}@media (max-width:991px){.section-row .section-area-sideways.section-padding-top-xlarge .section-padding-container{padding-top: 181px}}.section-row .section-area-sideways.section-padding-bottom-xlarge .section-padding-container{padding-bottom:15.12vw}@media (min-width:1600px) and (max-width:1870px){.section-row .section-area-sideways.section-padding-bottom-xlarge .section-padding-container{padding-bottom: 16.632vw}}@media (min-width:1200px) and (max-width:1599px){.section-row .section-area-sideways.section-padding-bottom-xlarge .section-padding-container{padding-bottom: 242px}}@media (min-width:992px) and (max-width:1199px){.section-row .section-area-sideways.section-padding-bottom-xlarge .section-padding-container{padding-bottom: 212px}}@media (max-width:991px){.section-row .section-area-sideways.section-padding-bottom-xlarge .section-padding-container{padding-bottom: 181px}}.section-row .section-area-sideways h2.section-title,.section-row .section-area-sideways h1.section-title{margin-top:0;margin-bottom:2.52vw;font-size:1.941em}@media (min-width:1600px) and (max-width:1870px){.section-row .section-area-sideways h2.section-title,.section-row .section-area-sideways h1.section-title{margin-bottom: 2.772vw}}@media (min-width:1200px) and (max-width:1599px){.section-row .section-area-sideways h2.section-title,.section-row .section-area-sideways h1.section-title{margin-bottom: 40px}}@media (min-width:992px) and (max-width:1199px){.section-row .section-area-sideways h2.section-title,.section-row .section-area-sideways h1.section-title{margin-bottom: 35px}}@media (max-width:991px){.section-row .section-area-sideways h2.section-title,.section-row .section-area-sideways h1.section-title{margin-bottom: 30px}}.section-row .section-area-sideways h2.section-title.slider-title,.section-row .section-area-sideways h1.section-title.slider-title{font-size:2.135em}.section-row .section-area-sideways .section-count-0 h1.section-title,.section-row .section-area-sideways .section-count-0 h2.section-title{margin:0}.section-row .section-area-sideways .img_to_top img.section-with-text,.section-row .section-area-sideways .img_to_top .column-icon.section-with-text,.section-row .section-area-sideways .img_to_top .column_element_custom{margin-bottom:20px}.section-row .section-area-sideways .section-pretitle{font-size:.971em;margin-bottom:.4em;margin-top:0;color:#7f7f7f;text-transform:uppercase}.section-row .section-area-sideways h3.section-title{font-size:1.553em;line-height:1.35em;margin-top:.05em;margin-bottom:.05em}.section-row .section-area-sideways .textalign_left{text-align:left}.section-row .section-area-sideways .textalign_center{text-align:center}.section-row .section-area-sideways .textalign_right{text-align:right}.section-row .section-area-sideways .img_to_left.section-count-1 h3.section-title,.section-row .section-area-sideways .img_to_right.section-count-1 h3.section-title{font-size:1.747em}.section-row .section-area-sideways .img_to_left .column-icon-inside.no-bg,.section-row .section-area-sideways .img_to_right .column-icon-inside.no-bg{text-align:center}@media (min-width:1600px){.section-row .section-area-sideways:not(.section-row-column-background) .section-count-2.img_to_top{max-width:1560px;margin-left:auto;margin-right:auto}}.section-row .section-area-sideways .section-count-1.text_nofullwidth h3.section-title,.section-row .section-area-sideways .section-count-1.img_to_top h3.section-title{font-size:1.844em}.section-row .section-area-sideways .section-count-1.text_nofullwidth .section-single,.section-row .section-area-sideways .section-count-1.img_to_top .section-single{padding:0}.section-row .section-area-sideways .section-count-1.text_nofullwidth:not(.section-row-title-container),.section-row .section-area-sideways .section-count-1.img_to_top:not(.section-row-title-container),.section-row .section-area-sideways .section-area.text_nofullwidth .text-container:not(.section-row-title-container),.section-row .section-area-sideways .section-area.img_to_top .text-container:not(.section-row-title-container){max-width:55em;margin:0 auto}@media (min-width:768px){.section-row .section-area-sideways .section-count-2.text_nofullwidth .section-single:nth-of-type(1),.section-row .section-area-sideways .section-count-2.plain_text .section-single:nth-of-type(1){padding-right:1.5em}.section-row .section-area-sideways .section-count-2.text_nofullwidth .section-single:nth-of-type(2),.section-row .section-area-sideways .section-count-2.plain_text .section-single:nth-of-type(2){padding-left:1.5em}}.section-row .section-area-sideways .container-wide .img_to_left .text-container,.section-row .section-area-sideways .container-wide .img_to_right .text-container{max-width:45em}.section-row .section-area-sideways .container-wide .img_to_right .text-container{float:right;margin-right:8.33333333%}.section-row.only-html .section-row-container.section-padding-container{padding-left:0;padding-right:0}.section-row.only-html .section-row-container>.container-fluid{padding:0}.addad_ad-area-rightcol{list-style-type:none}.addad_ad-area-rightcol>.addad_ad-area-container:last-child{margin-bottom:2.52vw}@media (min-width:1600px) and (max-width:1870px){.addad_ad-area-rightcol>.addad_ad-area-container:last-child{margin-bottom: 2.772vw}}@media (min-width:1200px) and (max-width:1599px){.addad_ad-area-rightcol>.addad_ad-area-container:last-child{margin-bottom: 40px}}@media (min-width:992px) and (max-width:1199px){.addad_ad-area-rightcol>.addad_ad-area-container:last-child{margin-bottom: 35px}}@media (max-width:991px){.addad_ad-area-rightcol>.addad_ad-area-container:last-child{margin-bottom: 30px}}.addad_ad-area-rightcol h3{font-size:1.165em;line-height:1.2;border-bottom:1px solid #c5c5c5;margin-top:0;margin-bottom:20px;padding:5px 0}.addad_ad-area-rightcol .addad_ad-area-container{position:relative}.addad_ad-area-rightcol .addad-ads-row .addad_ad-single{position:relative}.addad_ad-area-rightcol .addad-ads-row img{position:relative}.addad_ad-area-rightcol .addad-ads-row h4.addad_ad-img-title{position:absolute;bottom:0;left:0;right:0;margin:0 10px;background-color:#ff8430;background-color:rgba(36,36,36,0.7);color:#FFF}.addad_ad-area-rightcol .addad-ads-row .big_img a{color:#FFF}.addad_ad-area-rightcol .addad-ads-row .big_img h4{font-size:.971em;height:32px}.addad_ad-area-rightcol .addad-ads-row .big_img span{line-height:16px;padding:8px;float:left}.addad_ad-area-rightcol .addad-ads-row .small_img a{color:#FFF}.addad_ad-area-rightcol .addad-ads-row .small_img h4{font-size:.776em}.addad_ad-area-rightcol .addad-ads-row .small_img span{line-height:1.2em;padding:7px;float:left}.addad_ad-area-rightcol .addad_ad-single{margin-bottom:20px}.addad_ad-area-rightcol .addad_ad-img-text h4{font-size:1.029em;margin:0;padding:0}.addad_ad-area-rightcol .addad_ad-img-text .addad_ad-img{margin-bottom:10px}.addad_ad-area-rightcol .addad_ad-img-text .addad_ad-text{font-size:.929rem;line-height:1.45}@media (min-width:768px) and (max-width:991px){.addad_ad-area-rightcol .addad_ad-img-text .addad_ad-text{padding-left:0}}.addad_ad-area-rightcol .addad_ad-img-text .addad_ad-text p{padding:0;margin:0}.blog .main-wrapper-content,.archive .main-wrapper-content,.single .main-wrapper-content,.page .main-wrapper-content{background:#eee}.page-template-template-onlysections .main-wrapper-content,.home .main-wrapper-content{background:none}.page-template-template-onlysections-notopbottom .site-wrapper,.page-template-template-onlysections-notopbottom .site-container,.page-template-template-onlysections-notopbottom .section_cover{height:100%}.post-row{background:#eee;padding-top:2.52vw;padding-bottom:.5rem;position:relative}@media (min-width:1600px) and (max-width:1870px){.post-row{padding-top: 2.772vw}}@media (min-width:1200px) and (max-width:1599px){.post-row{padding-top: 40px}}@media (min-width:992px) and (max-width:1199px){.post-row{padding-top: 35px}}@media (max-width:991px){.post-row{padding-top: 30px}}.post-row .content{padding:20px}.post-row .hentry,.post-row .post-slider{background:#FFF}.post-row .hentry[data-bg="light"],.post-row .post-slider[data-bg="light"]{background:#eee}.post-row .hentry[data-bg="dark"],.post-row .post-slider[data-bg="dark"]{background:#333}.post-row .hentry[data-bg="black"],.post-row .post-slider[data-bg="black"]{background:#000}.post-row .hentry{position:relative;margin-bottom:2.52vw}@media (min-width:1600px) and (max-width:1870px){.post-row .hentry{margin-bottom: 2.772vw}}@media (min-width:1200px) and (max-width:1599px){.post-row .hentry{margin-bottom: 40px}}@media (min-width:992px) and (max-width:1199px){.post-row .hentry{margin-bottom: 35px}}@media (max-width:991px){.post-row .hentry{margin-bottom: 30px}}.post-row .hentry .pre-title{color:#494949}.post-row .hentry .pre-title+.title{padding-top:0}.post-row .section-row .hentry{margin-bottom:0}.post-row .meta.author_hidden{margin:.571em 0 1em 3px}.post-row .meta{list-style-type:none;padding:0;margin:0 0 .571em 0}.post-row .meta .author{font-size:1.286em;font-family:"Exo 2","Helvetica Neue",Helvetica,Arial,sans-serif;font-style:italic;color:#777;padding:0}.post-row .meta hr{margin:12px 0}.post-row .meta li{padding:3px 0;float:left;font-size:.857em;margin:0 18px 5px 0}.post-row .extrainfo{margin:0 0 15px 0;padding:0 0 0 22px}.post-row .more-news{margin-bottom:2.52vw}@media (min-width:1600px) and (max-width:1870px){.post-row .more-news{margin-bottom: 2.772vw}}@media (min-width:1200px) and (max-width:1599px){.post-row .more-news{margin-bottom: 40px}}@media (min-width:992px) and (max-width:1199px){.post-row .more-news{margin-bottom: 35px}}@media (max-width:991px){.post-row .more-news{margin-bottom: 30px}}.post-row .pagination{margin:0 0 2.52vw 0}@media (min-width:1600px) and (max-width:1870px){.post-row .pagination{margin: 0 0 2.772vw 0}}@media (min-width:1200px) and (max-width:1599px){.post-row .pagination{margin: 0 0 40px 0}}@media (min-width:992px) and (max-width:1199px){.post-row .pagination{margin: 0 0 35px 0}}@media (max-width:991px){.post-row .pagination{margin: 0 0 30px 0}}@media (max-width:767px){.post-row .pagination{margin:0 0 30px 15px}}.post-row .pagination>li>span.current{color:#323232}.post-row .sidebar-none .likebox-container{padding:15px 20px 9px;background:#f9f9f9;border-top:1px solid #ddd}.post-row .comments-wrap{padding:0;background:none;margin-bottom:2.52vw}@media (min-width:1600px) and (max-width:1870px){.post-row .comments-wrap{margin-bottom: 2.772vw}}@media (min-width:1200px) and (max-width:1599px){.post-row .comments-wrap{margin-bottom: 40px}}@media (min-width:992px) and (max-width:1199px){.post-row .comments-wrap{margin-bottom: 35px}}@media (max-width:991px){.post-row .comments-wrap{margin-bottom: 30px}}.post-row h3#reply-title{margin:0;padding:0}.post-row .comment-tabs{padding:0;margin-bottom:0}.post-row .tab-content{overflow:hidden}.post-row .tab-content .tab-pane{background:#FFF;padding:20px}.post-row .fb-comments{margin-top:0}.post-row .fb-comments,.post-row .fb-comments span,.post-row .fb-comments iframe[style]{width:100% !important}.post-row #comments{margin:0}.post-row #comments ol.commentlist{padding:0;margin:0 !important}.post-row #comments ol.commentlist li{padding:0;margin-bottom:20px}.post-row #comments ol.commentlist li li{margin:0 !important}.post-row #comments .comment-reply-link{float:right;background:none;padding:0;margin:0;border:none;color:#ff8430;font-weight:700;box-shadow:none}.post-row #comments .comment-reply-link:hover,.post-row #comments .comment-reply-link:focus{color:#e35c00;text-decoration:underline}.post-row #comments .comment-body{border-radius:8px;background-color:#f1f1f1;padding:7px 20px}.post-row #comments .comment-author{background:url("../addad/img/commentArrows.png") no-repeat 20px 0;padding:10px 10px 0;height:20px}.post-row #comments .comment-author CITE{float:left;margin-right:10px;font-weight:700}.post-row #comments #comments .children{margin:0 0 15px 30px}.post-row #comments #comments .reply{float:right}.post-row #comments .comment-meta{font-size:.857rem;font-style:italic}.post-row #comments .comment-meta a{color:#555}.post-row #comments #respond{margin:0}.post-row #comments #respond p{float:left}.post-row #comments #respond form{margin:0}.post-row #comments #respond p.form-allowed-tags{display:none}.post-row #comments #respond label{display:block;float:left;width:100px}.post-row #comments #respond .required{margin-left:5px}.post-row #comments #respond input{float:left}.post-row #comments #respond p.form-submit,.post-row #comments #respond input#submit{float:none;clear:both}.post-row #comments li.bypostauthor{border:none}.main-wrapper-content{-webkit-box-flex:1;-webkit-flex:1 0 auto;-ms-flex:1 0 auto;flex:1 0 auto}.main-wrapper{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;min-height:calc(100vh -  65px);min-width:100%}.footer-wrapper,.header-wrapper{-webkit-box-flex:0;-webkit-flex:none;-ms-flex:none;flex:none;position:relative}.footer-wrapper{z-index:1}.footer-row{font-size:1rem;background:#7c7c7c;color:#e2e2e2;padding-top:2.8vw;padding-bottom:2.8vw;width:100%}@media (min-width:1600px) and (max-width:1870px){.footer-row{padding-top: 3.08vw}}@media (min-width:1200px) and (max-width:1599px){.footer-row{padding-top: 45px}}@media (min-width:992px) and (max-width:1199px){.footer-row{padding-top: 39px}}@media (max-width:991px){.footer-row{padding-top: 34px}}@media (min-width:1600px) and (max-width:1870px){.footer-row{padding-bottom: 3.08vw}}@media (min-width:1200px) and (max-width:1599px){.footer-row{padding-bottom: 45px}}@media (min-width:992px) and (max-width:1199px){.footer-row{padding-bottom: 39px}}@media (max-width:991px){.footer-row{padding-bottom: 34px}}.footer-row .hentry p{padding:.15em 0 .571em}.footer-row .footer-logo a,.footer-row .footer-logo img{float:left}.footer-row .footer-logo a{margin-bottom:2.52vw}@media (min-width:1600px) and (max-width:1870px){.footer-row .footer-logo a{margin-bottom: 2.772vw}}@media (min-width:1200px) and (max-width:1599px){.footer-row .footer-logo a{margin-bottom: 40px}}@media (min-width:992px) and (max-width:1199px){.footer-row .footer-logo a{margin-bottom: 35px}}@media (max-width:991px){.footer-row .footer-logo a{margin-bottom: 30px}}.footer-row .footer-logo .logo-img{width:195.3px;height:auto}.footer-row .footer-elements-container{position:relative}.footer-row a{color:#e2e2e2}.footer-row a:focus,.footer-row a:hover{color:#fff;text-decoration:underline}.footer-row .col-md-4{position:relative}.footer-row h3,.footer-row .hentry h3{margin:0 0 .571em;padding:0;color:#e2e2e2;font-size:1.553em;line-height:1.5em}.footer-row ul{list-style-type:none;padding:0;margin:0}.footer-row hr{background-color:transparent;border-style:solid solid dotted solid;border-width:1px;border-color:transparent transparent #e2e2e2 transparent;color:#e2e2e2;margin-top:2.52vw;margin-bottom:2.52vw}@media (min-width:1600px) and (max-width:1870px){.footer-row hr{margin-top: 2.772vw}}@media (min-width:1200px) and (max-width:1599px){.footer-row hr{margin-top: 40px}}@media (min-width:992px) and (max-width:1199px){.footer-row hr{margin-top: 35px}}@media (max-width:991px){.footer-row hr{margin-top: 30px}}@media (min-width:1600px) and (max-width:1870px){.footer-row hr{margin-bottom: 2.772vw}}@media (min-width:1200px) and (max-width:1599px){.footer-row hr{margin-bottom: 40px}}@media (min-width:992px) and (max-width:1199px){.footer-row hr{margin-bottom: 35px}}@media (max-width:991px){.footer-row hr{margin-bottom: 30px}}.footer-row .footer-nav{list-style-type:none;padding:0;margin:0;font-size:1.286rem;width:100%;display:table;table-layout:fixed}.footer-row .footer-nav>li{display:table-cell;padding-right:10px}.footer-row .footer-nav li{margin:0 20px 0 0;font-family:"Exo 2","Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:400;line-height:1.05;font-size:.95em}.footer-row .footer-nav li a{font-family:"Exo 2","Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:400}.footer-row .footer-nav li ul{padding:0;margin:0;padding-top:8px;padding-bottom:5px;padding-left:2px}.footer-row .footer-nav li li{float:none;text-transform:none;list-style-type:none;font-size:.87em;margin:0;line-height:1.05;padding-bottom:8px}.footer-row .footer-nav li li li li{padding-bottom:0}@media (max-width:767px){.footer-row .footer-nav li li{float:left}}.footer-row .footer-nav li li ul{padding-left:8px;padding-bottom:0}.footer-row .footer-nav li li li{font-size:.929em;line-height:1.05;background-size:3px 1px;background-position:left 9px}.footer-row .footer-nav li li li i.fa{display:inline-block}.footer-row .footer-nav li li li i.fa:before{content:"\f10c";display:inline-block;vertical-align:middle;font-size:6px;padding-right:4px}.footer-row .footer-nav li li li li{background-size:1px 1px;background-position:left 8px;line-height:1.05;padding-left:8px}.copyright-row{background:#494949;color:#959595;padding-top:1.582vw;padding-bottom:1.582vw}@media (min-width:1600px) and (max-width:1870px){.copyright-row{padding-top: 1.7402vw}}@media (min-width:1200px) and (max-width:1599px){.copyright-row{padding-top: 25px}}@media (min-width:992px) and (max-width:1199px){.copyright-row{padding-top: 22px}}@media (max-width:991px){.copyright-row{padding-top: 19px}}@media (min-width:1600px) and (max-width:1870px){.copyright-row{padding-bottom: 1.7402vw}}@media (min-width:1200px) and (max-width:1599px){.copyright-row{padding-bottom: 25px}}@media (min-width:992px) and (max-width:1199px){.copyright-row{padding-bottom: 22px}}@media (max-width:991px){.copyright-row{padding-bottom: 19px}}.copyright-row a,.copyright-row a:hover,.copyright-row a:focus{color:#959595}@media (max-width:480px){.copyright-row{padding-top:10px;padding-bottom:10px}.copyright-row .copyright-text{width:100%;float:left}}.addad-logo{float:right}.addad-logo img{width:24px;height:24px;opacity:.8}.map-row{background:#eee}.map-row .gmaps-directions{margin-top:.2em;font-weight:300}.map-container{position:relative}.map-cover{display:none}.gform_wrapper .form-captcha .gfield_label{display:none}.gform_wrapper .form-captcha.gfield_error iframe{color:red;border-radius:3px;border:1px solid red}.clear{clear:both}.contact-form-row{background:#7c7c7c;color:#FFF;padding-top:2.8vw;padding-bottom:2.8vw}@media (min-width:1600px) and (max-width:1870px){.contact-form-row{padding-top: 3.08vw}}@media (min-width:1200px) and (max-width:1599px){.contact-form-row{padding-top: 45px}}@media (min-width:992px) and (max-width:1199px){.contact-form-row{padding-top: 39px}}@media (max-width:991px){.contact-form-row{padding-top: 34px}}@media (min-width:1600px) and (max-width:1870px){.contact-form-row{padding-bottom: 3.08vw}}@media (min-width:1200px) and (max-width:1599px){.contact-form-row{padding-bottom: 45px}}@media (min-width:992px) and (max-width:1199px){.contact-form-row{padding-bottom: 39px}}@media (max-width:991px){.contact-form-row{padding-bottom: 34px}}.contact-form-row h1.entry-title{font-size:1.941em;color:#FFF;margin:0 0 20px 0;text-align:center}.contact-form-row h3,.contact-form-row .hentry h3{margin:0;padding:0;color:#FFF;font-size:1.55em;font-size:1.553em;line-height:1.5em}.contact-form-row .icon-list-container{position:relative}.contact-form-row .contact-form .gform_wrapper{max-width:100%}.contact-form-row .contact-form .gform_wrapper .ginput_container{width:52%}.contact-form-row .contact-form .gform_wrapper .message-box .ginput_container{width:100%}.contact-form-row .contact-form .gform_wrapper .g-recaptcha>div>div{float:right}.contact-form-row .contact-form .gform_wrapper .secondary-label,.contact-form-row .contact-form .gform_wrapper .required-label{margin-top:2px;margin-right:2px}@media (min-width:768px){.contact-form-row .contact-form .gform_wrapper .secondary-label,.contact-form-row .contact-form .gform_wrapper .required-label{margin-right:15px}}.contact-form-row .contact-form .gform_wrapper input[type="text"],.contact-form-row .contact-form .gform_wrapper input[type="email"],.contact-form-row .contact-form .gform_wrapper textarea{border:2px solid #FFF;background:none;color:#fff;-moz-box-shadow:0 0 0 0 #FFF;-webkit-box-shadow:0 0 0 0 #FFF;box-shadow:0 0 0 0 #FFF;width:100%}.contact-form-row .contact-form .gform_wrapper input[type="text"]:focus,.contact-form-row .contact-form .gform_wrapper input[type="email"]:focus,.contact-form-row .contact-form .gform_wrapper textarea:focus{border-color:#fff}@media (min-width:768px){.contact-form-row .contact-form .gform_wrapper input[type="text"],.contact-form-row .contact-form .gform_wrapper input[type="email"],.contact-form-row .contact-form .gform_wrapper textarea{margin-bottom:20px}}.contact-form-row .contact-form .gform_wrapper input[type="text"]~.secondary-label,.contact-form-row .contact-form .gform_wrapper input[type="email"]~.secondary-label,.contact-form-row .contact-form .gform_wrapper textarea~.secondary-label,.contact-form-row .contact-form .gform_wrapper input[type="text"]~.required-label,.contact-form-row .contact-form .gform_wrapper input[type="email"]~.required-label,.contact-form-row .contact-form .gform_wrapper textarea~.required-label{color:rgba(255,255,255,0.6)}.contact-form-row .contact-form .gform_wrapper input[type="text"]::placeholder,.contact-form-row .contact-form .gform_wrapper input[type="email"]::placeholder,.contact-form-row .contact-form .gform_wrapper textarea::placeholder,.contact-form-row .contact-form .gform_wrapper input[type="text"]::-webkit-input-placeholder,.contact-form-row .contact-form .gform_wrapper input[type="email"]::-webkit-input-placeholder,.contact-form-row .contact-form .gform_wrapper textarea::-webkit-input-placeholder{color:rgba(255,255,255,0.6)}.contact-form-row .contact-form .gform_wrapper input[type="text"]::-ms-input-placeholder,.contact-form-row .contact-form .gform_wrapper input[type="email"]::-ms-input-placeholder,.contact-form-row .contact-form .gform_wrapper textarea::-ms-input-placeholder{color:rgba(255,255,255,0.6)}.contact-form-row .contact-form .gform_wrapper input[type="text"]:-ms-input-placeholder,.contact-form-row .contact-form .gform_wrapper input[type="email"]:-ms-input-placeholder,.contact-form-row .contact-form .gform_wrapper textarea:-ms-input-placeholder{color:rgba(255,255,255,0.6)}.contact-form-row .contact-form .gform_wrapper input[type="text"]::-moz-placeholder,.contact-form-row .contact-form .gform_wrapper input[type="email"]::-moz-placeholder,.contact-form-row .contact-form .gform_wrapper textarea::-moz-placeholder,.contact-form-row .contact-form .gform_wrapper input[type="text"]:-moz-placeholder,.contact-form-row .contact-form .gform_wrapper input[type="email"]:-moz-placeholder,.contact-form-row .contact-form .gform_wrapper textarea:-moz-placeholder{color:rgba(255,255,255,0.6)}@media (min-width:768px) and (max-width:991px){.contact-form-row .contact-form .gform_wrapper .gfield{width:246.66666667px;float:none}.contact-form-row .contact-form .gform_wrapper .gfield .ginput_container{width:100%}.contact-form-row .contact-form .gform_wrapper .gfield.message-box{left:246.66666667px}.contact-form-row .contact-form .gform_wrapper .gfield.form-captcha{left:246.66666667px}.contact-form-row .contact-form .gform_wrapper .gfield.form-captcha .ginput_container{-moz-transform:scale(.74561404);-webkit-transform:scale(.74561404);transform:scale(.74561404);-webkit-transform-origin:left;-moz-transform-origin:left;-ms-transform-origin:left;transform-origin:left;float:left}}@media (min-width:768px){.contact-form-row .contact-form{position:relative}.contact-form-row .contact-form .gform_body,.contact-form-row .contact-form .gform_footer{float:left;width:100%;position:relative}.contact-form-row .contact-form .gform_footer{margin-top:10px}.contact-form-row .contact-form li{margin-left:-10px;margin-right:-10px}.contact-form-row .contact-form .gfield_label{padding-left:10px;padding-right:18px;float:left;width:100%;line-height:23px;text-align:left}.contact-form-row .contact-form .message-box,.contact-form-row .contact-form .captcha,.contact-form-row .contact-form .gfield:last-child{position:absolute;right:0;width:320px}.contact-form-row .contact-form .ginput_container,.contact-form-row .contact-form .gfield_captcha_input_container{position:relative;min-height:1px;padding-left:10px;padding-right:10px}.contact-form-row .contact-form .message-box .ginput_container{max-height:none}.contact-form-row .contact-form .gfield_captcha_input_container{width:100%;position:absolute;left:0}.contact-form-row .contact-form textarea{height:88px;resize:none}.contact-form-row .contact-form .message-box{top:0}.contact-form-row .contact-form .captcha label,.contact-form-row .contact-form .gfield:last-child label{float:left;margin-top:4px;margin-bottom:0;width:auto;padding-right:5px;width:40%}.contact-form-row .contact-form .captcha .gfield_captcha_input_container,.contact-form-row .contact-form .gfield:last-child .gfield_captcha_input_container{margin-top:3px;width:100%}.contact-form-row .contact-form .gfield:last-child:not(.captcha){bottom:0}.contact-form-row .contact-form .gform_button{float:right}}@media (min-width:768px) and (min-width:992px){.contact-form-row .contact-form .ginput_container,.contact-form-row .contact-form .gfield_captcha_input_container{float:left;width:50%}}@media (min-width:768px) and (min-width:768px){.contact-form-row .contact-form .ginput_container,.contact-form-row .contact-form .gfield_captcha_input_container{float:left;width:50%}}@media (min-width:768px) and (min-width:768px){.contact-form-row .contact-form .captcha{top:139px}}@media (min-width:1200px){.contact-form-row .contact-form li{margin-left:-15px;margin-right:-15px}.contact-form-row .contact-form .ginput_container,.contact-form-row .contact-form .gfield_captcha_input_container,.contact-form-row .contact-form .gfield_label{padding-left:15px;padding-right:15px}.contact-form-row .contact-form .message-box,.contact-form-row .contact-form .captcha,.contact-form-row .contact-form .gfield:last-child{right:0;width:390px}}@media (min-width:1600px){.contact-form-row .contact-form .message-box,.contact-form-row .contact-form .captcha,.contact-form-row .contact-form .gfield:last-child{width:520px}}@media (min-width:768px) and (max-width:991px){.contact-form-row .contact-form .message-box,.contact-form-row .contact-form .captcha,.contact-form-row .contact-form .gfield:last-child{left:246.66666667px;right:0;width:304px}}@media (max-width:767px){.contact-form-row .contact-form .gfield{width:100%}.contact-form-row .contact-form .gfield label.gfield_label{text-align:left}.contact-form-row .contact-form .gfield .ginput_container{width:100%}.contact-form-row .contact-form .gfield.form-captcha{width:304px}.contact-form-row .contact-form .gform_footer>input[type="submit"]{position:relative;margin-right:0;margin-left:0;float:right}}@media (max-width:420px){.contact-form-row .contact-form .gform_wrapper .gform_footer>input[type="submit"].gform_button{float:left;width:100%}.contact-form-row .contact-form .gform_wrapper{overflow:hidden}.contact-form-row .contact-form .gform_wrapper .form-captcha{float:left;width:304px}.contact-form-row .contact-form .gform_footer>input[type="submit"]{width:100%}}.associates-row{background:#eee;padding-top:2.8vw;padding-bottom:2.52vw}@media (min-width:1600px) and (max-width:1870px){.associates-row{padding-top: 3.08vw}}@media (min-width:1200px) and (max-width:1599px){.associates-row{padding-top: 45px}}@media (min-width:992px) and (max-width:1199px){.associates-row{padding-top: 39px}}@media (max-width:991px){.associates-row{padding-top: 34px}}@media (min-width:1600px) and (max-width:1870px){.associates-row{padding-bottom: 2.772vw}}@media (min-width:1200px) and (max-width:1599px){.associates-row{padding-bottom: 40px}}@media (min-width:992px) and (max-width:1199px){.associates-row{padding-bottom: 35px}}@media (max-width:991px){.associates-row{padding-bottom: 30px}}.associates-row .container{position:relative}.associates-row .associate-single{text-align:center;margin-bottom:30px}.associates-row .associate-single .associate-container{padding:0 10px}.associates-row .textalign_left{text-align:left}.associates-row .textalign_center{text-align:center}.associates-row .textalign_right{text-align:right}.associates-row .textalign_right img{margin-left:auto;margin-right:auto}.associates-row h3{padding-bottom:20px;margin:0}.widgets-container{position:relative}.widget{margin-bottom:20px}.widget h3{margin-bottom:10px}.widget ul{list-style-type:none;padding:0;margin:0}.widget ul li{line-height:1.125rem;font-size:.875rem}.widget_search #searchsubmit{margin-top:7px}.gform_body ul{padding:0;margin:0;list-style-type:none}#wpadminbar li{line-height:32px}.extra_content_menu_list li.fa{display:list-item;font:inherit}.map_canvas,.map_container,.map-container{color:#323232}.map_canvas img,.map_container img,.map-container img{max-width:none}.hentry .custom_coworkers{list-style:none;padding:0}.hentry .custom_coworkers .associate-container{padding:1.142em 0 .571em 0}.hentry .map_container,.hentry .html_container.addPadding{padding:1.142em 0 1.142em 0}.footer-row .hentry .custom_coworkers .associate-container,.footer-row .hentry .map_container,.footer-row .hentry .html_container.addPadding{padding:.75em 0}.associate-container{line-height:1.55}.associate-container .img-container img{margin:0 0 10px 0}.associate-container img{margin-bottom:1.142em;margin-left:auto;margin-right:auto}.associate-container h4{margin:0;padding:0;line-height:1.3;margin-bottom:.15em;font-size:1.165em}.associate-container .jobtitle{font-family:"Exo 2","Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:300;font-size:1.143em;color:#999;padding:0}.associate-container .telephone{padding-bottom:0}.associate-container .mail-btn{margin:.571em 0}.associate-container .contactmethod{background:transparent;border:none;border-radius:0;color:inherit;padding:0;margin:0;font-size:0}.associate-container .contactmethod::before{display:inline-block;font:normal normal normal 14px/1 FontAwesome;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;width:1.28571429em;text-align:center;font-size:1rem;content:'\f003';height:1.3em;line-height:1.3em;margin-right:.25em}.associate-container .contactmethod-linkedin::before{content:'\f0e1'}.associate-container .contactmethod-twitter::before{content:'\f099'}.associate-container .contactmethod-mailto::before{content:'\f1fa'}.single-line-form{margin:1em 0 .571em 0}@media (min-width:768px){.single-line-form{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.single-line-form li.gfield{margin-right:.8em}.single-line-form .gform_wrapper{-webkit-flex:1 0 auto;-moz-flex:1 0 auto;-ms-flex:1 0 auto;-o-flex:1 0 auto;flex:1 0 auto}.single-line-form .gform_fields{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.single-line-form .gform_fields>li{-webkit-flex:1 1 auto;-moz-flex:1 1 auto;-ms-flex:1 1 auto;-o-flex:1 1 auto;flex:1 1 auto}}@media (max-width:767px){.single-line-form li.gfield{margin-bottom:.8em}}.single-line-form form{position:relative;padding:0}.single-line-form form input{margin:0}.single-line-form .gform_wrapper .validation_error{position:absolute;top:0;-webkit-transform:translate(0, -100%);-ms-transform:translate(0, -100%);-o-transform:translate(0, -100%);transform:translate(0, -100%);z-index:1;background:none;border:none;padding:0;margin:0}.single-line-form .gdpr-form-notification{display:none}.extra-btn-container{padding:.571em 0}.extra-btn-container.associate-container .mail-btn{margin:0}@media (max-width:767px){.extra-btn-container.cta-container .cta-btn{width:100%}}.extra-btn-container.cta-container input[type="submit"]{display:none !important}.associates-row .associate-container h4{margin:0;line-height:1.4em}.associates-row .associate-container h4+*{padding-top:10px}.associates-row .associate-container h4+.jobtitle{padding-top:0;padding-bottom:10px}.associates-row .associate-container .jobtitle{padding:0;font-size:1.071em}.associates-row .associate-container p{margin:0;padding:.571em 0 .571em 0}.associates{font-size:.9em}.associates img{border-radius:50%}.associates .img-container+.text-container{padding-left:1.5em}@media (max-width:767px){.associates .img-container+.text-container{padding-left:1em}}.associates .associate-container{margin:0;margin-bottom:2.2em;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-direction:normal;-moz-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-box-orient:horizontal;-moz-box-orient:horizontal;-ms-flex-align:stretch;-webkit-box-align:stretch;-moz-box-align:stretch;-webkit-align-items:stretch;align-items:stretch}.associates .associate-container h4{font-size:1.3em;margin-bottom:.35em}.associates .associate-container a{font-weight:normal}.associates .associate-container .jobtitle{font-size:.88em;opacity:.7;text-transform:uppercase}.associates .associate-container .contactperson-name,.associates .associate-container .jobtitle{color:inherit}.associates .text-container,.associates .img-container{width:auto;float:left}.associates .img-container{width:25%;max-width:130px;padding:0}.associates .img-container img{margin:0}.associates .text-container{width:65%;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-direction:normal;-moz-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-orient:vertical;-moz-box-orient:vertical;-webkit-box-pack:center;-moz-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center}.associates .text-container:first-of-type{padding-left:0}.associates .text-container .contact-descr{margin-top:.5em;font-size:1.1em}.associates p{margin-bottom:0;padding:0;line-height:1.4}.associates .telephone{display:inline;margin-right:.5em}.associates .telephone>strong{display:none}.associates .mail-btn,.associates .contactmethod{background:transparent;border:none;border-radius:0;color:inherit;padding:0;margin:0;font-size:0}.associates .mail-btn::before,.associates .contactmethod::before{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;width:1.28571429em;text-align:center;font-size:1rem;content:'\f003';height:1.3em;line-height:1.3em}.associates .contactmethod-linkedin::before{content:'\f0e1'}.associates .contactmethod-twitter::before{content:'\f099'}.associates .contactmethod-mailto::before{content:'\f1fa'}.smartpreview-content .associates,.slidebar .associates{font-size:.8rem}.smartpreview-content .associates .img-container,.slidebar .associates .img-container{width:85px;max-width:100px;padding:0}.custom_coworkers .mail-btn{margin-top:.571em}@media (min-width:768px){.associate-modal .modal-dialog{width:440px}}.associate-modal .modal-dialog,#addad_modal .modal-dialog,.associate-modal .modal-dialog.modal-sm,#addad_modal .modal-dialog.modal-sm{margin-left:auto;margin-right:auto}@media (min-width:768px){.associate-modal .modal-dialog.modal-sm,#addad_modal .modal-dialog.modal-sm{width:440px}}.associate-modal h4,#addad_modal h4{margin:0;padding:0;font-size:1.417em;line-height:1.32em}.associate-modal .hentry,#addad_modal .hentry{max-height:none;overflow:auto;position:relative;margin-bottom:0;border-radius:0 0 10px 10px}img.gfield_captcha{width:auto}.modal .gform_wrapper{margin:0 auto}.gform_wrapper label.gfield_label{display:none}.gform_wrapper .type-select label.gfield_label,.gform_wrapper .type-multiselect label.gfield_label,.gform_wrapper .type-checkbox label.gfield_label,.gform_wrapper .type-radio label.gfield_label,.gform_wrapper .type-post_category label.gfield_label,.gform_wrapper .type-produkt label.gfield_label,.gform_wrapper .type-fileupload label.gfield_label,.gform_wrapper .type-address label.gfield_label,.gform_wrapper .type-name label.gfield_label,.gform_wrapper .type-list label.gfield_label,.gform_wrapper .type-time label.gfield_label,.gform_wrapper .type-product label.gfield_label{display:inline-block}.gform_wrapper .type-product input[type="number"]{width:100px}.gform_wrapper .type-product .secondary-label{display:none !important}.gform_wrapper .type-list .secondary-label{display:none !important}.gform_wrapper .type-list input{margin-bottom:0;font-size:.8rem;padding:.7em}.gform_wrapper .type-time .ginput_container_time{width:32%;margin-right:2%}.gform_wrapper .type-time .ginput_container_time:last-of-type{margin-right:0}.gform_wrapper .type-address .address_country label{display:none}.gform_wrapper .secondary-label,.gform_wrapper .required-label{display:none}.gform_wrapper li.gfield,form li.gfield,.woocommerce form .form-row li.gfield{float:left;width:100%;position:relative;padding:0}.gform_wrapper .gform_title,form .gform_title,.woocommerce form .form-row .gform_title{margin-bottom:.5em}.gform_wrapper input,form input,.woocommerce form .form-row input,.gform_wrapper textarea,form textarea,.woocommerce form .form-row textarea,.gform_wrapper select,form select,.woocommerce form .form-row select,.gform_wrapper .ginput_recaptcha,form .ginput_recaptcha,.woocommerce form .form-row .ginput_recaptcha,.gform_wrapper .type-gf_no_captcha_recaptcha .ginput_container,form .type-gf_no_captcha_recaptcha .ginput_container,.woocommerce form .form-row .type-gf_no_captcha_recaptcha .ginput_container,.gform_wrapper .gfield_radio,form .gfield_radio,.woocommerce form .form-row .gfield_radio,.gform_wrapper .gfield_checkbox,form .gfield_checkbox,.woocommerce form .form-row .gfield_checkbox{margin-bottom:.8rem;font-size:.882rem}.gform_wrapper input,form input,.woocommerce form .form-row input,.gform_wrapper textarea,form textarea,.woocommerce form .form-row textarea{padding:.85em}.gform_wrapper input[type="file"],form input[type="file"],.woocommerce form .form-row input[type="file"]{font-size:.75rem;padding:.5em 0}.gform_wrapper textarea,form textarea,.woocommerce form .form-row textarea{margin-bottom:.4rem}.gform_wrapper form,form form,.woocommerce form .form-row form{margin:0}.gform_wrapper ul,form ul,.woocommerce form .form-row ul{list-style-type:none;padding:0}.gform_wrapper label.gfield_label,form label.gfield_label,.woocommerce form .form-row label.gfield_label,.gform_wrapper label,form label,.woocommerce form .form-row label{width:100%;float:left;text-align:left;padding-left:5px;line-height:18px;padding-right:10px;font-size:.625em;color:#808080;text-transform:uppercase;margin-bottom:2px}.gform_wrapper .gfield_radio label,form .gfield_radio label,.woocommerce form .form-row .gfield_radio label,.gform_wrapper .gfield_checkbox label,form .gfield_checkbox label,.woocommerce form .form-row .gfield_checkbox label{margin-left:.5rem;font-size:.9em;text-transform:none}.gform_wrapper .gfield_captcha_container,form .gfield_captcha_container,.woocommerce form .form-row .gfield_captcha_container{float:left;width:60%}.gform_wrapper .ginput_container,form .ginput_container,.woocommerce form .form-row .ginput_container{width:100%}.gform_wrapper .gfield:last-child:not(.captcha) .ginput_container,form .gfield:last-child:not(.captcha) .ginput_container,.woocommerce form .form-row .gfield:last-child:not(.captcha) .ginput_container{width:100%}.gform_wrapper input,form input,.woocommerce form .form-row input{height:auto}.gform_wrapper input[type="tel"],form input[type="tel"],.woocommerce form .form-row input[type="tel"],.gform_wrapper input[type="url"],form input[type="url"],.woocommerce form .form-row input[type="url"],.gform_wrapper input[type="file"],form input[type="file"],.woocommerce form .form-row input[type="file"],.gform_wrapper input[type="text"],form input[type="text"],.woocommerce form .form-row input[type="text"],.gform_wrapper input[type="email"],form input[type="email"],.woocommerce form .form-row input[type="email"],.gform_wrapper input[type="number"],form input[type="number"],.woocommerce form .form-row input[type="number"],.gform_wrapper textarea,form textarea,.woocommerce form .form-row textarea,.gform_wrapper select,form select,.woocommerce form .form-row select{width:100%}.gform_wrapper textarea,form textarea,.woocommerce form .form-row textarea{height:110px}.gform_wrapper input[type="radio"],form input[type="radio"],.woocommerce form .form-row input[type="radio"],.gform_wrapper input[type="checkbox"],form input[type="checkbox"],.woocommerce form .form-row input[type="checkbox"]{margin:0 0 0 .4em}.gform_wrapper input[type="radio"]+label,form input[type="radio"]+label,.woocommerce form .form-row input[type="radio"]+label,.gform_wrapper input[type="checkbox"]+label,form input[type="checkbox"]+label,.woocommerce form .form-row input[type="checkbox"]+label{width:auto;float:none;margin-left:0;color:#323232}.gform_wrapper .ginput_container_name label,form .ginput_container_name label,.woocommerce form .form-row .ginput_container_name label{position:relative;top:-0.8em;color:#585858;font-size:.8rem}.gform_wrapper .gform_footer input[type="submit"].gform_button,form .gform_footer input[type="submit"].gform_button,.woocommerce form .form-row .gform_footer input[type="submit"].gform_button{width:100%;margin-top:0;border-radius:3px;border-width:2px;font-weight:700}.gform_wrapper .form-captcha,form .form-captcha,.woocommerce form .form-row .form-captcha{float:left}@media (max-width:420px){.gform_wrapper .form-captcha,form .form-captcha,.woocommerce form .form-row .form-captcha{-webkit-transform:scale(.9);-ms-transform:scale(.9);-o-transform:scale(.9);transform:scale(.9);-webkit-transform-origin:left;-moz-transform-origin:left;-ms-transform-origin:left;transform-origin:left}.gform_wrapper .gform_footer>input[type="submit"],form .gform_footer>input[type="submit"],.woocommerce form .form-row .gform_footer>input[type="submit"]{width:100%}}.gform_wrapper .gsection_description,form .gsection_description,.woocommerce form .form-row .gsection_description,.gform_wrapper .gfield_description,form .gfield_description,.woocommerce form .form-row .gfield_description,.gform_wrapper .instruction,form .instruction,.woocommerce form .form-row .instruction{margin-top:-0.5em;margin-bottom:1.5em;float:left}.gform_wrapper .gfield_description,form .gfield_description,.woocommerce form .form-row .gfield_description,.gform_wrapper .instruction,form .instruction,.woocommerce form .form-row .instruction{font-size:.8em;color:#808080;margin-left:.5em}.gform_wrapper .gsection_description,form .gsection_description,.woocommerce form .form-row .gsection_description{font-size:.9em;margin-bottom:2em}.ginput_container,.ginput_complex>span{position:relative;width:100%;float:left}.ginput_container>input[type="tel"]+i,.ginput_complex>span>input[type="tel"]+i,.ginput_container>input[type="url"]+i,.ginput_complex>span>input[type="url"]+i,.ginput_container>input[type="text"]+i,.ginput_complex>span>input[type="text"]+i,.ginput_container>input[type="email"]+i,.ginput_complex>span>input[type="email"]+i,.ginput_container>input[type="number"]+i,.ginput_complex>span>input[type="number"]+i,.ginput_container>textarea+i,.ginput_complex>span>textarea+i{display:none}.ginput_container>input[type="tel"]+label,.ginput_complex>span>input[type="tel"]+label,.ginput_container>input[type="url"]+label,.ginput_complex>span>input[type="url"]+label,.ginput_container>input[type="text"]+label,.ginput_complex>span>input[type="text"]+label,.ginput_container>input[type="email"]+label,.ginput_complex>span>input[type="email"]+label,.ginput_container>input[type="number"]+label,.ginput_complex>span>input[type="number"]+label,.ginput_container>textarea+label,.ginput_complex>span>textarea+label,.ginput_container>input[type="tel"]+i+label,.ginput_complex>span>input[type="tel"]+i+label,.ginput_container>input[type="url"]+i+label,.ginput_complex>span>input[type="url"]+i+label,.ginput_container>input[type="text"]+i+label,.ginput_complex>span>input[type="text"]+i+label,.ginput_container>input[type="email"]+i+label,.ginput_complex>span>input[type="email"]+i+label,.ginput_container>input[type="number"]+i+label,.ginput_complex>span>input[type="number"]+i+label,.ginput_container>textarea+i+label,.ginput_complex>span>textarea+i+label,.ginput_container>input[type="tel"]~.secondary-label,.ginput_complex>span>input[type="tel"]~.secondary-label,.ginput_container>input[type="url"]~.secondary-label,.ginput_complex>span>input[type="url"]~.secondary-label,.ginput_container>input[type="text"]~.secondary-label,.ginput_complex>span>input[type="text"]~.secondary-label,.ginput_container>input[type="email"]~.secondary-label,.ginput_complex>span>input[type="email"]~.secondary-label,.ginput_container>input[type="number"]~.secondary-label,.ginput_complex>span>input[type="number"]~.secondary-label,.ginput_container>textarea~.secondary-label,.ginput_complex>span>textarea~.secondary-label,.ginput_container>input[type="tel"]~.required-label,.ginput_complex>span>input[type="tel"]~.required-label,.ginput_container>input[type="url"]~.required-label,.ginput_complex>span>input[type="url"]~.required-label,.ginput_container>input[type="text"]~.required-label,.ginput_complex>span>input[type="text"]~.required-label,.ginput_container>input[type="email"]~.required-label,.ginput_complex>span>input[type="email"]~.required-label,.ginput_container>input[type="number"]~.required-label,.ginput_complex>span>input[type="number"]~.required-label,.ginput_container>textarea~.required-label,.ginput_complex>span>textarea~.required-label{display:inline-block;position:absolute;pointer-events:none;opacity:0;top:.25em;right:.5em;font-size:.588rem;text-transform:uppercase;text-align:right;line-height:1.4;padding:0;color:rgba(50,50,50,0.6);-webkit-transition:opacity 0.5s, color 0.2s;-o-transition:opacity 0.5s, color 0.2s;transition:opacity 0.5s, color 0.2s}.ginput_container>input[type="tel"]::placeholder,.ginput_complex>span>input[type="tel"]::placeholder,.ginput_container>input[type="url"]::placeholder,.ginput_complex>span>input[type="url"]::placeholder,.ginput_container>input[type="text"]::placeholder,.ginput_complex>span>input[type="text"]::placeholder,.ginput_container>input[type="email"]::placeholder,.ginput_complex>span>input[type="email"]::placeholder,.ginput_container>input[type="number"]::placeholder,.ginput_complex>span>input[type="number"]::placeholder,.ginput_container>textarea::placeholder,.ginput_complex>span>textarea::placeholder,.ginput_container>input[type="tel"]::-webkit-input-placeholder,.ginput_complex>span>input[type="tel"]::-webkit-input-placeholder,.ginput_container>input[type="url"]::-webkit-input-placeholder,.ginput_complex>span>input[type="url"]::-webkit-input-placeholder,.ginput_container>input[type="text"]::-webkit-input-placeholder,.ginput_complex>span>input[type="text"]::-webkit-input-placeholder,.ginput_container>input[type="email"]::-webkit-input-placeholder,.ginput_complex>span>input[type="email"]::-webkit-input-placeholder,.ginput_container>input[type="number"]::-webkit-input-placeholder,.ginput_complex>span>input[type="number"]::-webkit-input-placeholder,.ginput_container>textarea::-webkit-input-placeholder,.ginput_complex>span>textarea::-webkit-input-placeholder{color:rgba(50,50,50,0.6)}.ginput_container>input[type="tel"]::-ms-input-placeholder,.ginput_complex>span>input[type="tel"]::-ms-input-placeholder,.ginput_container>input[type="url"]::-ms-input-placeholder,.ginput_complex>span>input[type="url"]::-ms-input-placeholder,.ginput_container>input[type="text"]::-ms-input-placeholder,.ginput_complex>span>input[type="text"]::-ms-input-placeholder,.ginput_container>input[type="email"]::-ms-input-placeholder,.ginput_complex>span>input[type="email"]::-ms-input-placeholder,.ginput_container>input[type="number"]::-ms-input-placeholder,.ginput_complex>span>input[type="number"]::-ms-input-placeholder,.ginput_container>textarea::-ms-input-placeholder,.ginput_complex>span>textarea::-ms-input-placeholder{color:rgba(50,50,50,0.6)}.ginput_container>input[type="tel"]:-ms-input-placeholder,.ginput_complex>span>input[type="tel"]:-ms-input-placeholder,.ginput_container>input[type="url"]:-ms-input-placeholder,.ginput_complex>span>input[type="url"]:-ms-input-placeholder,.ginput_container>input[type="text"]:-ms-input-placeholder,.ginput_complex>span>input[type="text"]:-ms-input-placeholder,.ginput_container>input[type="email"]:-ms-input-placeholder,.ginput_complex>span>input[type="email"]:-ms-input-placeholder,.ginput_container>input[type="number"]:-ms-input-placeholder,.ginput_complex>span>input[type="number"]:-ms-input-placeholder,.ginput_container>textarea:-ms-input-placeholder,.ginput_complex>span>textarea:-ms-input-placeholder{color:rgba(50,50,50,0.6)}.ginput_container>input[type="tel"]::-moz-placeholder,.ginput_complex>span>input[type="tel"]::-moz-placeholder,.ginput_container>input[type="url"]::-moz-placeholder,.ginput_complex>span>input[type="url"]::-moz-placeholder,.ginput_container>input[type="text"]::-moz-placeholder,.ginput_complex>span>input[type="text"]::-moz-placeholder,.ginput_container>input[type="email"]::-moz-placeholder,.ginput_complex>span>input[type="email"]::-moz-placeholder,.ginput_container>input[type="number"]::-moz-placeholder,.ginput_complex>span>input[type="number"]::-moz-placeholder,.ginput_container>textarea::-moz-placeholder,.ginput_complex>span>textarea::-moz-placeholder,.ginput_container>input[type="tel"]:-moz-placeholder,.ginput_complex>span>input[type="tel"]:-moz-placeholder,.ginput_container>input[type="url"]:-moz-placeholder,.ginput_complex>span>input[type="url"]:-moz-placeholder,.ginput_container>input[type="text"]:-moz-placeholder,.ginput_complex>span>input[type="text"]:-moz-placeholder,.ginput_container>input[type="email"]:-moz-placeholder,.ginput_complex>span>input[type="email"]:-moz-placeholder,.ginput_container>input[type="number"]:-moz-placeholder,.ginput_complex>span>input[type="number"]:-moz-placeholder,.ginput_container>textarea:-moz-placeholder,.ginput_complex>span>textarea:-moz-placeholder{color:rgba(50,50,50,0.6)}.ginput_container>input[type="tel"]:not(:placeholder-shown):not(.placeholder-shown)+label,.ginput_complex>span>input[type="tel"]:not(:placeholder-shown):not(.placeholder-shown)+label,.ginput_container>input[type="url"]:not(:placeholder-shown):not(.placeholder-shown)+label,.ginput_complex>span>input[type="url"]:not(:placeholder-shown):not(.placeholder-shown)+label,.ginput_container>input[type="text"]:not(:placeholder-shown):not(.placeholder-shown)+label,.ginput_complex>span>input[type="text"]:not(:placeholder-shown):not(.placeholder-shown)+label,.ginput_container>input[type="email"]:not(:placeholder-shown):not(.placeholder-shown)+label,.ginput_complex>span>input[type="email"]:not(:placeholder-shown):not(.placeholder-shown)+label,.ginput_container>input[type="number"]:not(:placeholder-shown):not(.placeholder-shown)+label,.ginput_complex>span>input[type="number"]:not(:placeholder-shown):not(.placeholder-shown)+label,.ginput_container>textarea:not(:placeholder-shown):not(.placeholder-shown)+label,.ginput_complex>span>textarea:not(:placeholder-shown):not(.placeholder-shown)+label,.ginput_container>input[type="tel"]:not(:placeholder-shown):not(.placeholder-shown)+i+label,.ginput_complex>span>input[type="tel"]:not(:placeholder-shown):not(.placeholder-shown)+i+label,.ginput_container>input[type="url"]:not(:placeholder-shown):not(.placeholder-shown)+i+label,.ginput_complex>span>input[type="url"]:not(:placeholder-shown):not(.placeholder-shown)+i+label,.ginput_container>input[type="text"]:not(:placeholder-shown):not(.placeholder-shown)+i+label,.ginput_complex>span>input[type="text"]:not(:placeholder-shown):not(.placeholder-shown)+i+label,.ginput_container>input[type="email"]:not(:placeholder-shown):not(.placeholder-shown)+i+label,.ginput_complex>span>input[type="email"]:not(:placeholder-shown):not(.placeholder-shown)+i+label,.ginput_container>input[type="number"]:not(:placeholder-shown):not(.placeholder-shown)+i+label,.ginput_complex>span>input[type="number"]:not(:placeholder-shown):not(.placeholder-shown)+i+label,.ginput_container>textarea:not(:placeholder-shown):not(.placeholder-shown)+i+label,.ginput_complex>span>textarea:not(:placeholder-shown):not(.placeholder-shown)+i+label,.ginput_container>input[type="tel"]:not(:placeholder-shown):not(.placeholder-shown)~.secondary-label,.ginput_complex>span>input[type="tel"]:not(:placeholder-shown):not(.placeholder-shown)~.secondary-label,.ginput_container>input[type="url"]:not(:placeholder-shown):not(.placeholder-shown)~.secondary-label,.ginput_complex>span>input[type="url"]:not(:placeholder-shown):not(.placeholder-shown)~.secondary-label,.ginput_container>input[type="text"]:not(:placeholder-shown):not(.placeholder-shown)~.secondary-label,.ginput_complex>span>input[type="text"]:not(:placeholder-shown):not(.placeholder-shown)~.secondary-label,.ginput_container>input[type="email"]:not(:placeholder-shown):not(.placeholder-shown)~.secondary-label,.ginput_complex>span>input[type="email"]:not(:placeholder-shown):not(.placeholder-shown)~.secondary-label,.ginput_container>input[type="number"]:not(:placeholder-shown):not(.placeholder-shown)~.secondary-label,.ginput_complex>span>input[type="number"]:not(:placeholder-shown):not(.placeholder-shown)~.secondary-label,.ginput_container>textarea:not(:placeholder-shown):not(.placeholder-shown)~.secondary-label,.ginput_complex>span>textarea:not(:placeholder-shown):not(.placeholder-shown)~.secondary-label{opacity:1}.ginput_container>input[type="tel"]:valid+label::before,.ginput_complex>span>input[type="tel"]:valid+label::before,.ginput_container>input[type="url"]:valid+label::before,.ginput_complex>span>input[type="url"]:valid+label::before,.ginput_container>input[type="text"]:valid+label::before,.ginput_complex>span>input[type="text"]:valid+label::before,.ginput_container>input[type="email"]:valid+label::before,.ginput_complex>span>input[type="email"]:valid+label::before,.ginput_container>input[type="number"]:valid+label::before,.ginput_complex>span>input[type="number"]:valid+label::before,.ginput_container>textarea:valid+label::before,.ginput_complex>span>textarea:valid+label::before,.ginput_container>input[type="tel"]:valid+i+label::before,.ginput_complex>span>input[type="tel"]:valid+i+label::before,.ginput_container>input[type="url"]:valid+i+label::before,.ginput_complex>span>input[type="url"]:valid+i+label::before,.ginput_container>input[type="text"]:valid+i+label::before,.ginput_complex>span>input[type="text"]:valid+i+label::before,.ginput_container>input[type="email"]:valid+i+label::before,.ginput_complex>span>input[type="email"]:valid+i+label::before,.ginput_container>input[type="number"]:valid+i+label::before,.ginput_complex>span>input[type="number"]:valid+i+label::before,.ginput_container>textarea:valid+i+label::before,.ginput_complex>span>textarea:valid+i+label::before,.ginput_container>input[type="tel"]:valid~.secondary-label::before,.ginput_complex>span>input[type="tel"]:valid~.secondary-label::before,.ginput_container>input[type="url"]:valid~.secondary-label::before,.ginput_complex>span>input[type="url"]:valid~.secondary-label::before,.ginput_container>input[type="text"]:valid~.secondary-label::before,.ginput_complex>span>input[type="text"]:valid~.secondary-label::before,.ginput_container>input[type="email"]:valid~.secondary-label::before,.ginput_complex>span>input[type="email"]:valid~.secondary-label::before,.ginput_container>input[type="number"]:valid~.secondary-label::before,.ginput_complex>span>input[type="number"]:valid~.secondary-label::before,.ginput_container>textarea:valid~.secondary-label::before,.ginput_complex>span>textarea:valid~.secondary-label::before{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin-right:.25em;content:"\f00c";color:#191}.gfield_contains_required .ginput_container>input[type="tel"]:placeholder-shown~.required-label,.gfield_contains_required .ginput_complex>span>input[type="tel"]:placeholder-shown~.required-label,.gfield_contains_required .ginput_container>input[type="url"]:placeholder-shown~.required-label,.gfield_contains_required .ginput_complex>span>input[type="url"]:placeholder-shown~.required-label,.gfield_contains_required .ginput_container>input[type="text"]:placeholder-shown~.required-label,.gfield_contains_required .ginput_complex>span>input[type="text"]:placeholder-shown~.required-label,.gfield_contains_required .ginput_container>input[type="email"]:placeholder-shown~.required-label,.gfield_contains_required .ginput_complex>span>input[type="email"]:placeholder-shown~.required-label,.gfield_contains_required .ginput_container>input[type="number"]:placeholder-shown~.required-label,.gfield_contains_required .ginput_complex>span>input[type="number"]:placeholder-shown~.required-label,.gfield_contains_required .ginput_container>textarea:placeholder-shown~.required-label,.gfield_contains_required .ginput_complex>span>textarea:placeholder-shown~.required-label{opacity:1}.gfield_error.gfield_contains_required .ginput_container>input[type="tel"]:placeholder-shown~.required-label,.gfield_error.gfield_contains_required .ginput_complex>span>input[type="tel"]:placeholder-shown~.required-label,.gfield_error.gfield_contains_required .ginput_container>input[type="url"]:placeholder-shown~.required-label,.gfield_error.gfield_contains_required .ginput_complex>span>input[type="url"]:placeholder-shown~.required-label,.gfield_error.gfield_contains_required .ginput_container>input[type="text"]:placeholder-shown~.required-label,.gfield_error.gfield_contains_required .ginput_complex>span>input[type="text"]:placeholder-shown~.required-label,.gfield_error.gfield_contains_required .ginput_container>input[type="email"]:placeholder-shown~.required-label,.gfield_error.gfield_contains_required .ginput_complex>span>input[type="email"]:placeholder-shown~.required-label,.gfield_error.gfield_contains_required .ginput_container>input[type="number"]:placeholder-shown~.required-label,.gfield_error.gfield_contains_required .ginput_complex>span>input[type="number"]:placeholder-shown~.required-label,.gfield_error.gfield_contains_required .ginput_container>textarea:placeholder-shown~.required-label,.gfield_error.gfield_contains_required .ginput_complex>span>textarea:placeholder-shown~.required-label{color:red;opacity:.8}.ginput_container.ginput_list .secondary-label,.ginput_complex>span.ginput_list .secondary-label,.ginput_container.gfield_radio .secondary-label,.ginput_complex>span.gfield_radio .secondary-label,.ginput_container.gfield_checkbox .secondary-label,.ginput_complex>span.gfield_checkbox .secondary-label,.ginput_container.ginput_list .required-label,.ginput_complex>span.ginput_list .required-label,.ginput_container.gfield_radio .required-label,.ginput_complex>span.gfield_radio .required-label,.ginput_container.gfield_checkbox .required-label,.ginput_complex>span.gfield_checkbox .required-label{display:none}.ginput_container.ginput_complex{margin:0 -0.5%;width:101%}.ginput_container.ginput_complex>span{margin:0 .5%;width:49%}.ginput_container.ginput_complex>span.ginput_full{width:99%}.gform_wrapper .gfield_required{display:inline-block;position:absolute;right:.5em;visibility:hidden;font-size:.588rem}.gform_wrapper .gfield_required::before{display:inline-block;position:absolute;visibility:visible;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;right:0;content:"\f069";color:rgba(50,50,50,0.6);opacity:1}.gform_wrapper .gfield_error .gfield_required::before{color:red}.modal .gform_wrapper form{position:relative;margin:.571em 0 .571em 0;padding:0}.modal .gform_wrapper form:before,.modal .gform_wrapper form:after{content:" ";display:table}.modal .gform_wrapper form:after{clear:both}.modal .gform_wrapper form:before,.modal .gform_wrapper form:after{content:" ";display:table}.modal .gform_wrapper form:after{clear:both}@media (max-width:767px){.contact-form-row .gform_wrapper form{position:relative;margin:.571em 0 .571em 0;padding:0}.contact-form-row .gform_wrapper form:before,.contact-form-row .gform_wrapper form:after{content:" ";display:table}.contact-form-row .gform_wrapper form:after{clear:both}.contact-form-row .gform_wrapper form:before,.contact-form-row .gform_wrapper form:after{content:" ";display:table}.contact-form-row .gform_wrapper form:after{clear:both}}ul.contact-info,ul.icon-list{list-style-type:none;padding:.571em 0;margin-left:2em}ul.contact-info p,ul.icon-list p{margin:0;padding:.15em 0 .571em}ul.contact-info i.fa,ul.icon-list i.fa{font-size:1.2em;line-height:1.4em}ul.contact-info li,ul.icon-list li{width:100%;font-size:1.143em;font-family:"Exo 2","Helvetica Neue",Helvetica,Arial,sans-serif;line-height:1.5em;margin-bottom:10px;position:relative}.footer-row ul.contact-info,.footer-row ul.icon-list{padding:0}.footer-row ul.contact-info li,.footer-row ul.icon-list li{padding:.12em 0;margin:0}.social-media-btns{padding:.571em 0}.social-media-btns a.fa{font-size:2.2em;text-decoration:none;margin:2px 10px 2px 0;color:#ff8430}.social-media-btns a.fa:hover,.social-media-btns a.fa:focus{color:#e35c00}.social-media-btns .likebox.facebok .pam{padding:0}.footer-row .social-media-btns a.fa{color:#FFF}.footer-row .social-media-btns a.fa:hover,.footer-row .social-media-btns a.fa:focus{color:#fff}.likebox{padding:.571em 0;margin:0;float:left;margin-right:20px}.likebox .pam{padding:0 !important}.likebox.facebook{padding:0}.likebox.linkedin{padding-bottom:.375em}.likebox.twitter{padding-bottom:.375em}.fade.in.opacity0{opacity:0}.modal-backdrop .loading-icon{z-index:20000;color:#FFF;font-size:25px;width:40px;text-align:center;margin:0 auto;margin-top:150px;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.modal-backdrop .loading-icon.opacity0{opacity:0}.modal-dialog{min-height:calc(100vh - 20px);display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-direction:normal;-moz-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-orient:vertical;-moz-box-orient:vertical;-webkit-box-pack:center;-moz-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;overflow:auto}.modal-dialog .modal-body>.hentry{margin-bottom:0}.modal-dialog .modal-content{border-radius:0}.modal-dialog .modal-header{position:relative;background:#323232;color:#fff}.modal-dialog .modal-header h1,.modal-dialog .modal-header h2,.modal-dialog .modal-header h3,.modal-dialog .modal-header h4{color:inherit;margin:0;padding-right:2.5em}.modal-dialog .modal-header .close{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-pack:center;-moz-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;-ms-flex-align:center;-webkit-box-align:center;-moz-box-align:center;-webkit-align-items:center;align-items:center;position:absolute;font-size:2.2em;height:100%;width:1.5em;top:0;right:0;margin:0;background:rgba(0,0,0,0.25);text-shadow:none;color:inherit;opacity:1}.modal-dialog .modal-header .close:hover,.modal-dialog .modal-header .closefocus{background:rgba(0,0,0,0.35)}.modal-dialog .modal-header .close .fa{font-size:.65em}.modal-dialog iframe{width:100%}a[data-rel="lightbox"]{cursor:zoom-in}.section-row.slider-title-wrapper{opacity:0;position:absolute;width:100%;z-index:2;height:inherit}.section-row.slider-title-wrapper h2.slider-title,.section-row.slider-title-wrapper h1.slider-title{margin-bottom:0}.post-slider.addad-slider .owl-item{-webkit-transition:height 800ms;-moz-transition:height 800ms;transition:height 800ms}.post-slider .slider_img{min-width:100%}.slider-parent .owl-fade-out,.post-slider.addad-slider .owl-fade-out{z-index:10;-webkit-animation:fadeOut 800ms both ease;-moz-animation:fadeOut 800ms both ease;animation:fadeOut 800ms both ease}.slider-parent .owl-fade-in,.post-slider.addad-slider .owl-fade-in{-webkit-animation:fadeIn 800ms both ease;-moz-animation:fadeIn 800ms both ease;animation:fadeIn 800ms both ease}.slider-parent .owl-fadeUp-in,.post-slider.addad-slider .owl-fadeUp-in{-webkit-animation:scaleUpFrom 800ms ease both;-moz-animation:scaleUpFrom 800ms ease both;animation:scaleUpFrom 800ms ease both}.slider-parent .owl-fadeUp-out,.post-slider.addad-slider .owl-fadeUp-out{-webkit-animation:scaleUpTo 800ms ease both;-moz-animation:scaleUpTo 800ms ease both;animation:scaleUpTo 800ms ease both}.slider-parent .owl-goDown-out,.post-slider.addad-slider .owl-goDown-out{-webkit-animation:scaleToFade 800ms ease both;-moz-animation:scaleToFade 800ms ease both;animation:scaleToFade 800ms ease both}.slider-parent .owl-goDown-in,.post-slider.addad-slider .owl-goDown-in{-webkit-animation:goDown 800ms ease both;-moz-animation:goDown 800ms ease both;animation:goDown 800ms ease both}.owl-carousel .section-area-sideways{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-ms-flex-align:center;-webkit-box-align:center;-moz-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-moz-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center}.owl-carousel .section-area-sideways .section-row-container{-ms-flex-align:center;-webkit-box-align:center;-moz-box-align:center;-webkit-align-items:center;align-items:center}.owl-item{height:0}.owl-item.animate{-webkit-transition:height 1s;-moz-transition:height 1s;transition:height 1s}.owl-item.no-animate{-webkit-transition:height 0s;-moz-transition:height 0s;transition:height 0s}.owl-item>.section-row{height:100%}.slider-title.animate{visibility:visible;-webkit-transition:top 1s;-moz-transition:top 1s;transition:top 1s}.slider-title.no-animate{-webkit-transition:top 0s;-moz-transition:top 0s;transition:top 0s}.owl-carousel .owl-controls{position:static;margin-top:0}.owl-carousel .owl-controls .owl-pagination{position:absolute;bottom:0;margin-top:10px;width:100%;height:2em}.owl-carousel .owl-controls .owl-pagination .owl-page span{background:#ff8430;margin:4px 5px}.owl-carousel .owl-controls .owl-buttons div{z-index:10;position:absolute;top:50.1%;width:45px;height:4.5rem;margin:-2.15rem 0;display:block;border-radius:50%;background:none;opacity:0;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease}.owl-carousel .owl-controls .owl-buttons div i{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;line-height:3.8rem;font-size:4.5rem;position:relative;text-shadow:0 0 11px rgba(0,0,0,0.25)}.owl-carousel .owl-controls .owl-buttons div.owl-prev{left:0}.owl-carousel .owl-controls .owl-buttons div.owl-prev i{right:2px}.owl-carousel .owl-controls .owl-buttons div.owl-prev i:before{content:"\f104"}.owl-carousel .owl-controls .owl-buttons div.owl-next{right:0}.owl-carousel .owl-controls .owl-buttons div.owl-next i{left:2px}.owl-carousel .owl-controls .owl-buttons div.owl-next i:before{content:"\f105"}.section_wrapper .owl-carousel .owl-controls .owl-pagination{height:40px}.section_wrapper:hover .owl-controls .owl-buttons div.owl-prev,.post-slider:hover .owl-controls .owl-buttons div.owl-prev{left:15px;opacity:.7}.section_wrapper:hover .owl-controls .owl-buttons div.owl-next,.post-slider:hover .owl-controls .owl-buttons div.owl-next{right:15px;opacity:.7}.img-container{position:relative}.caption{color:#fff;font-size:11px;background:rgba(0,0,0,0.5);position:absolute;bottom:15px;right:25px;margin:0 0 15px 10px;padding:4px 6px}.post-slider{position:relative}.post-slider .caption{margin:0 0 35px 10px;bottom:0;right:0}.post-slider[data-resize="fit"]{position:relative;height:0;padding-bottom:52.47%}.post-slider[data-resize="fit"]>div{position:absolute;top:0;bottom:0;left:0;right:0;width:100%;height:100%}.post-slider[data-resize="fit"]>div>div,.post-slider[data-resize="fit"]>div .owl-wrapper-outer{height:100%}.post-slider[data-resize="fit"] .owl-wrapper-outer div{height:100%}.post-slider[data-resize="fit"] .owl-wrapper-outer div .caption{height:auto}.post-slider[data-resize="fit"] .owl-wrapper-outer div .owl-item{height:100% !important}.post-slider[data-resize="fit"] .slider_img{position:relative;min-width:0;margin:0 auto;height:auto;width:auto;max-height:100%;top:50%;-webkit-transform:translate(0, -50%);-ms-transform:translate(0, -50%);-o-transform:translate(0, -50%);transform:translate(0, -50%)}.map_container>a.addad_map{background-size:cover;background-position:center;display:block}.section-row.addad-row-custom-text .section-link{text-decoration:underline}.section-row.addad-row-custom-text .section-item-title a,.section-row.addad-row-custom-text .section-item-title .simulate-link,.section-row.addad-row-custom-text a.btn{text-decoration:none}.section-row.addad-row-custom-text .section-item-title a:hover,.section-row.addad-row-custom-text .section-item-title .simulate-link:hover{text-decoration:underline}#ui-datepicker-div.ui-widget{font-family:"Lucida Grande","Lucida Sans Unicode",Helvetica,Arial,Verdana,sans-serif;background:#494949;border:none;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0}#ui-datepicker-div.ui-datepicker{padding:0;font-size:90%;width:auto;margin:5px;z-index:10000 !important;-webkit-box-shadow:1px 1px 5px rgba(0,0,0,0.25);-moz-box-shadow:1px 1px 5px rgba(0,0,0,0.25);-ms-box-shadow:1px 1px 5px rgba(0,0,0,0.25);-o-box-shadow:1px 1px 5px rgba(0,0,0,0.25);box-shadow:1px 1px 5px rgba(0,0,0,0.25)}#ui-datepicker-div .ui-datepicker-header{border:none;background:transparent;font-weight:normal;font-size:15px}#ui-datepicker-div .ui-datepicker-header .ui-state-hover{background:transparent;border-color:transparent;cursor:pointer;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0}#ui-datepicker-div.ui-datepicker .ui-datepicker-title{margin-top:.4em;margin-bottom:.3em;color:#e4e4e4}#ui-datepicker-div.ui-datepicker .ui-datepicker-prev-hover,#ui-datepicker-div.ui-datepicker .ui-datepicker-next-hover,#ui-datepicker-div.ui-datepicker .ui-datepicker-next,#ui-datepicker-div.ui-datepicker .ui-datepicker-prev{top:.9em;border:none}#ui-datepicker-div.ui-datepicker .ui-datepicker-prev-hover{left:2px}#ui-datepicker-div.ui-datepicker .ui-datepicker-next-hover{right:2px}#ui-datepicker-div.ui-datepicker .ui-datepicker-next span,#ui-datepicker-div.ui-datepicker .ui-datepicker-prev span{margin-top:0;top:0;font-weight:normal;position:relative}#ui-datepicker-div.ui-datepicker .ui-datepicker-next span::after,#ui-datepicker-div.ui-datepicker .ui-datepicker-prev span::after,#ui-datepicker-div.ui-datepicker .ui-datepicker-next span::before,#ui-datepicker-div.ui-datepicker .ui-datepicker-prev span::before{content:'';position:absolute;left:0;margin:0;width:6px;height:2px;background:#e4e4e4}#ui-datepicker-div.ui-datepicker .ui-datepicker-next span::after,#ui-datepicker-div.ui-datepicker .ui-datepicker-prev span::after{-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg);top:8px}#ui-datepicker-div.ui-datepicker .ui-datepicker-next span::before,#ui-datepicker-div.ui-datepicker .ui-datepicker-prev span::before{-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);transform:rotate(-45deg);top:4px}#ui-datepicker-div.ui-datepicker .ui-datepicker-next span:hover::after,#ui-datepicker-div.ui-datepicker .ui-datepicker-prev span:hover::after,#ui-datepicker-div.ui-datepicker .ui-datepicker-next span:hover::before,#ui-datepicker-div.ui-datepicker .ui-datepicker-prev span:hover::before{background:#adadad}#ui-datepicker-div.ui-datepicker .ui-datepicker-next span::after{-webkit-transform:rotate(135deg);-moz-transform:rotate(135deg);-ms-transform:rotate(135deg);-o-transform:rotate(135deg);transform:rotate(135deg)}#ui-datepicker-div.ui-datepicker .ui-datepicker-next span::before{-webkit-transform:rotate(-135deg);-moz-transform:rotate(-135deg);-ms-transform:rotate(-135deg);-o-transform:rotate(-135deg);transform:rotate(-135deg)}#ui-datepicker-div.ui-datepicker table{margin:0;min-width:200px}#ui-datepicker-div.ui-datepicker th{padding:1em 0;color:#c8c8c8;font-size:13px;font-weight:normal;border:none;border-top:1px solid #6d6d6d}#ui-datepicker-div.ui-datepicker td{background:#e1e1e1;border:none;padding:0}#ui-datepicker-div td .ui-state-default{background:transparent;border:none;text-align:center;padding:.6em .8em;margin:0;font-weight:normal;color:#323232;font-size:12px}#ui-datepicker-div .ui-state-disabled{opacity:1}#ui-datepicker-div .ui-state-disabled .ui-state-default{color:#eee}#ui-datepicker-div td .ui-state-active,#ui-datepicker-div td .ui-state-hover{background:#d5d5d5}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-prev-hover,.ui-datepicker .ui-datepicker-next-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month-year{width:100%}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:49%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:bold;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td span,.ui-datepicker td a{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em .6em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.modal.modal-darken-backdrop{background:rgba(2,2,2,0.75)}.modal-full{display:table;min-height:100vh}.modal-full .close{position:fixed;z-index:1;top:0;right:0;margin:.25em;color:#ddd;opacity:1;font-size:4rem;font-weight:300;line-height:.5;padding:.5em;margin:0;text-decoration:none}.modal-full .close:hover,.modal-full .close:focus{color:#eee}@media (max-width:480px){.modal-full .close{font-size:3em;padding:.25em 15px}}.modal-full .modal-content{display:table-cell;vertical-align:middle;font-size:1.125rem;background:none;border:none;box-shadow:none;border-radius:0;color:#fff;padding:30px 0;padding-bottom:60px}.modal-full .modal-content h1,.modal-full .modal-content h2,.modal-full .modal-content h3,.modal-full .modal-content h4,.modal-full .modal-content h5,.modal-full .modal-content h6{color:#FFF}.modal-full .modal-content a,.modal-full .modal-content a:hover,.modal-full .modal-content a:focus{color:#FFF}.modal-full .media .img-container{padding:0 20px}@media (max-width:767px){.modal-full .media .img-container{padding:0 0 25px 0}.modal-full .media .img-container img{max-width:260px}}.modal-full .media img{margin:0 auto}.modal-full .media.layout-img_to_left img,.modal-full .media.layout-img_to_right img{border-radius:50%}a#swipebox-close{background-size:0 0}a#swipebox-close:before{content:" × ";color:#fff;position:fixed;z-index:1;top:0;right:0;margin:.25em;color:#ddd;opacity:1;font-size:4rem;font-weight:300;line-height:.5;padding:.5em;margin:0;text-decoration:none}a#swipebox-close:before:hover,a#swipebox-close:before:focus{color:#eee}@media (max-width:480px){a#swipebox-close:before{font-size:3em;padding:.25em 15px}}@media (min-width:1200px){#swipebox-slider .slide .swipebox-video-container{padding:0}}.goto-wrapper{position:relative}.addad-gopast{position:fixed;width:100%;bottom:0;left:0;text-align:center;pointer-events:none;z-index:100;color:#FFF}.addad-gopast button{width:100%;border:none;background:rgba(255,132,48,0.9);font-weight:400;pointer-events:auto;cursor:pointer;padding:8px 18px;font-size:1.125em}.addad-gopast button .fa{font-size:1.28em;line-height:.75em;vertical-align:-13%;animation-name:point;animation-duration:.75s;animation-iteration-count:6;animation-direction:alternate;animation-timing-function:ease-in-out}.addad-gopast button span{position:relative;display:inline-block;height:100%;font-weight:700}.addad-gopast button img{display:inline;position:absolute;right:100%;height:calc(100% + 10px);width:auto;margin:-5px 0;margin-right:.6em}.addad-gopast[data-start]{opacity:0;visibility:hidden;-webkit-transition:opacity .5s , visibility .5s;-o-transition:opacity .5s , visibility .5s;transition:opacity .5s , visibility .5s}.addad-gopast[data-start].-start{opacity:1;visibility:visible}.addad-gopast.-with-title button .fa{margin:0 .1em 0 .3em}.addad-gopast.-stuck{position:absolute;top:auto;bottom:0;opacity:1;visibility:visible;-webkit-transition:opacity .5s , visibility .5s;-o-transition:opacity .5s , visibility .5s;transition:opacity .5s , visibility .5s}.addad-gopast.-past,.addad-gopast.-start.-past{opacity:0;visibility:hidden}.addad-gopast.goto-button button{width:auto;border-radius:5px 5px 0 0}.addad-gopast.goto-circle{padding-bottom:1.5em}.addad-gopast.goto-circle button{width:auto;border-radius:100%;padding:1em;background:#fff;animation-name:point;animation-duration:.75s;animation-iteration-count:6;animation-direction:alternate;animation-timing-function:ease-in-out}.addad-gopast.goto-circle .fa{position:relative;margin:0;width:1em;color:#ff8430;font-weight:700;animation:none}.addad-gopast.goto-circle .fa::before{content:"\f078"}.addad-gopast.goto-circle button:focus .fa,.addad-gopast.goto-circle button:hover .fa{color:#e35c00}.addad-gopast.goto-link{display:inline-block;position:relative;color:inherit;width:auto}.addad-gopast.goto-link button{background:none;font-size:1em}.addad-gopast.goto-link button .fa{color:#ff8430;font-weight:inherit}.col-xs-5ths,.col-sm-5ths,.col-md-5ths,.col-lg-5ths,.col-xl-5ths{position:relative;min-height:1px;padding-right:10px;padding-left:10px}.col-xs-5ths{width:20%;float:left}@media (min-width:768px){.col-sm-5ths{width:20%;float:left}}@media (min-width:992px){.col-md-5ths{width:20%;float:left}}@media (min-width:1200px){.col-lg-5ths{width:20%;float:left}}@media (min-width:1600px){.col-xl-5ths{width:20%;float:left}}@media (min-width:1600px){html{font-size:106.3%}body{font-size:1rem}}@media (min-width:1200px) and (max-width:1599px){html{font-size:93.8%}body{font-size:1rem}}@media (min-width:1200px){.post-row .content{padding:40px 40px 43px 40px}.post-row .threecol .content{padding:30px}.addad_ad-area-rightcol .addad-ads-row h4.addad_ad-img-title{margin:0 15px}.img_to_top.section-count-1 .img-container,.img_to_top.section-count-1 .text-container{padding:0 20px}.img_to_top.section-count-2 .img-container.img-normal,.img_to_top.section-count-3 .img-container.img-normal,.img_to_top.section-count-2 .img-container.img-circle,.img_to_top.section-count-3 .img-container.img-circle,.img_to_top.section-count-2 .img-container.img-rounded,.img_to_top.section-count-3 .img-container.img-rounded{padding:0 30px}.addad_ad-area-rightcol .addad_ad-img-text .addad_ad-img{padding-right:10px}.addad_ad-area-rightcol .addad_ad-img-text .addad_ad-img+.addad_ad-text{padding-left:10px}.section-count-1.img_to_right .img-container.img-normal,.section-count-1.img_to_left .img-container.img-normal,.section-count-1.img_to_right .img-container.img-circle,.section-count-1.img_to_left .img-container.img-circle,.section-count-1.img_to_right .img-container.img-rounded,.section-count-1.img_to_left .img-container.img-rounded{padding:0 50px}}@media (min-width:992px){.addad_ad-area-rightcol .addad-ads-row img{float:left}.section-row .section-area-sideways .font-size-xxsmall{font-size:.875rem}.section-row .section-area-sideways .font-size-xsmall{font-size:.938rem}.section-row .section-area-sideways .font-size-small{font-size:1rem}.section-row .section-area-sideways .font-size-medium{font-size:1.3rem}.section-row .section-area-sideways .font-size-large{font-size:1.6rem}.section-row .section-area-sideways .font-size-xlarge{font-size:2rem}.section-row-column-background .section-padding-container{padding-left:35px;padding-right:35px}.section-row-column-background .img_to_top .section-padding-container,.section-row-column-background .text_nofullwidth .section-padding-container{max-width:630px;margin:0 auto}.section-row-column-background .section-count-4.img_to_top .img-container.img-normal,.section-row-column-background .section-count-4.img_to_top .img-container.img-circle,.section-row-column-background .section-count-4.img_to_top .img-container.img-rounded{padding:0 20px}}@media (min-width:768px){.widgets-container{padding:0}.section-text-inside{padding:0 10px}.modal-dialog{margin-top:35px;min-height:calc(100vh - 70px)}.section-row .section-area-sideways .v-align-parent{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-ms-flex-align:center;-webkit-box-align:center;-moz-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-moz-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center}.section-row .section-area-sideways .v-align-child{-ms-flex-align:center;-webkit-box-align:center;-moz-box-align:center;-webkit-align-items:center;align-items:center}.section-count-2:not(.img_to_top) .img-thumbnail{padding:2px}.section-row-column-background .container-fluid .section-area:not(.section-count-1) .img-responsive{width:100%}.section-row-column-background .container-fluid .section-area{height:100%;float:none;margin:0;width:100%;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.section-row-column-background .container-fluid .section-area:before,.section-row-column-background .container-fluid .section-area:after{display:inline-block;content:normal}.section-row-column-background .container-fluid .section-area .section-single{float:left;vertical-align:top;padding:0;display:-webkit-flex;display:-ms-flexbox;display:flex}.section-row .section-area-sideways.section-row-column-background .section-count-4 h3{font-size:1.417em}.section-row .section-area-sideways:not(.section-row-column-background) .font-size-small .section-count-3.img_to_left h3,.section-row .section-area-sideways:not(.section-row-column-background) .font-size-small .section-count-3.img_to_right h3{font-size:1.029em}.section-row .section-area-sideways:not(.section-row-column-background) .font-size-small .section-count-3.img_to_left,.section-row .section-area-sideways:not(.section-row-column-background) .font-size-small .section-count-3.img_to_right,.section-row .section-area-sideways:not(.section-row-column-background) .font-size-small .section-count-3.img_to_left p,.section-row .section-area-sideways:not(.section-row-column-background) .font-size-small .section-count-3.img_to_right p{font-size:.929em}.section-row .section-area-sideways:not(.section-row-column-background) .font-size-small .section-count-4.img_to_left h3,.section-row .section-area-sideways:not(.section-row-column-background) .font-size-small .section-count-4.img_to_right h3{font-size:1.029em}.section-row .section-area-sideways:not(.section-row-column-background) .font-size-small .section-count-4.img_to_left,.section-row .section-area-sideways:not(.section-row-column-background) .font-size-small .section-count-4.img_to_right,.section-row .section-area-sideways:not(.section-row-column-background) .font-size-small .section-count-4.img_to_left p,.section-row .section-area-sideways:not(.section-row-column-background) .font-size-small .section-count-4.img_to_right p{font-size:.929em}.section-row .section-area-sideways:not(.section-row-column-background) .font-size-small .section-count-4 h3{font-size:1.417em}.section-row .section-area-sideways:not(.section-row-column-background) .font-size-small .section-count-4,.section-row .section-area-sideways:not(.section-row-column-background) .font-size-small .section-count-4 p{font-size:.929em}}@media (min-width:480px) and (max-width:767px){.section-row-column-background .container-fluid .section-area.section-count-4,.section-row-column-background .container-fluid .section-area.section-count-6{height:100%;float:none;margin:0;width:100%;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.section-row-column-background .container-fluid .section-area.section-count-4:before,.section-row-column-background .container-fluid .section-area.section-count-6:before,.section-row-column-background .container-fluid .section-area.section-count-4:after,.section-row-column-background .container-fluid .section-area.section-count-6:after{display:inline-block;content:normal}.section-row-column-background .container-fluid .section-area.section-count-4 .section-single,.section-row-column-background .container-fluid .section-area.section-count-6 .section-single{float:left;vertical-align:top;display:-webkit-flex;display:-ms-flexbox;display:flex}}@media (max-width:991px){.section_wrapper.fixed-bg,.section-row.fixed-bg{background-attachment:scroll;position:relative}.owl-carousel .owl-controls .owl-buttons div.owl-prev,.section_wrapper:hover .owl-controls .owl-buttons div.owl-prev,.post-slider:hover .owl-controls .owl-buttons div.owl-prev{opacity:.5}.owl-carousel .owl-controls .owl-buttons div.owl-next,.section_wrapper:hover .owl-controls .owl-buttons div.owl-next,.post-slider:hover .owl-controls .owl-buttons div.owl-next{opacity:.5}.footer-row{font-size:.929rem}}@media (min-width:992px) and (max-width:1199px){.post-row .content{padding:30px 20px 33px 20px}.post-row .threecol .content{padding:25px 20px}.addad_ad-area-rightcol .addad-ads-row img{float:left}.section-count-1.img_to_right .img-container.img-normal,.section-count-1.img_to_left .img-container.img-normal,.section-count-1.img_to_right .img-container.img-circle,.section-count-1.img_to_left .img-container.img-circle,.section-count-1.img_to_right .img-container.img-rounded,.section-count-1.img_to_left .img-container.img-rounded{padding:0 40px}.section-row .section-area-sideways .section-count-4.img_to_top .column-icon i{font-size:3.5em}.img_to_top.section-count-2 .img-container.img-normal,.img_to_top.section-count-3 .img-container.img-normal,.img_to_top.section-count-2 .img-container.img-circle,.img_to_top.section-count-3 .img-container.img-circle,.img_to_top.section-count-2 .img-container.img-rounded,.img_to_top.section-count-3 .img-container.img-rounded{padding:0 20px}}@media (max-width:991px){.map-cover{background-color:rgba(36,36,36,0.7);width:70px;height:100%;position:absolute;top:0;right:0;display:block}.dropdown-menu li{border:none}.subNavContainer{display:none}}@media (min-width:768px) and (max-width:991px){.section-count-1.img_to_right .img-container.img-normal,.section-count-1.img_to_left .img-container.img-normal,.section-count-1.img_to_right .img-container.img-circle,.section-count-1.img_to_left .img-container.img-circle,.section-count-1.img_to_right .img-container.img-rounded,.section-count-1.img_to_left .img-container.img-rounded{padding:0 10px}.no-gutter-width-sm,.no-gutter-width-sm [class^="col"]{padding-left:0;padding-right:0}.no-gutter-width-sm .row{margin:0}.addad_ad-area-rightcol .addad_ad-img-text h4{margin-top:0}.post-row .sidebar-left .content{padding:20px}.slides .title_1{font-size:1.281em;line-height:1.4em}.slides .title_2{font-size:1.669em;line-height:1.4em}.slides .link{margin-top:20px;font-size:1rem}.section-row .section-area-sideways .font-size-xxsmall{font-size:.875rem}.section-row .section-area-sideways .font-size-xsmall{font-size:.938rem}.section-row .section-area-sideways .font-size-small{font-size:1rem}.section-row .section-area-sideways .font-size-medium{font-size:1.2rem}.section-row .section-area-sideways .font-size-large{font-size:1.4rem}.section-row .section-area-sideways .font-size-xlarge{font-size:1.6rem}.section-row .section-area-sideways .section-count-4:not(.img_to_top) .column-icon i{font-size:1.3em}.section-row .section-area-sideways .section-count-4.img_to_top .column-icon i{font-size:3.5em}.section-row-column-background .section-padding-container{padding-left:20px;padding-right:20px}}@media (max-width:767px){html{font-size:81.3%}body{font-size:1rem}img.alignleft,img.alignright{max-width:120px}.navbar .container{padding-left:20px;padding-right:20px}.no-gutter-width-xs,.no-gutter-width-xs [class^="col"]{padding-left:0;padding-right:0}.no-gutter-width-xs .row{margin:0}.post-row{padding-top:35px}.post-row .post-slider .bx-pager{bottom:15px}.post-row .content{padding:20px;max-width:500px;margin-left:auto;margin-right:auto}.post-row .meta-container{padding:20px 0 0 0}.map-row{padding:0}.description-row .row{padding:30px 0}.description-row .row h2{text-align:center}h1.standalone{margin:0 0 25px 0}.contact-form-row{padding:25px 0}.hentry{margin-bottom:25px}body{padding:0}h1.standalone{padding-left:20px}.associate-container{max-width:390px;margin-right:auto;margin-left:auto;float:none}.addad_ad-area-rightcol h3{margin-bottom:25px}.addad_ad-area-rightcol .addad_ad-single{margin:0 0 25px 0;max-width:390px;margin-right:auto;margin-left:auto;float:none}.addad_ad-area-rightcol .addad_ad-single.small_img{float:left}.section-count-2 .img-thumbnail,.section-count-3 .img-thumbnail,.section-count-4 .img-thumbnail,.section-count-5 .img-thumbnail{padding:2px}.column-icon i{font-size:2.5em}.section-count-1.img_to_top .column-icon i{font-size:6em}.section-row .section-container{padding:0}.section-row .section-count-1 .section-container{padding:0}.section-row .section-area-sideways .section-count-2.img_to_top .img-container,.section-row .section-area-sideways .section-count-3.img_to_top .img-container,.section-row .section-area-sideways .section-count-4.img_to_top .img-container,.section-row .section-area-sideways .section-count-5.img_to_top .img-container{padding:0}.section-row .section-area-sideways .section-count-2.img_to_top .text-container,.section-row .section-area-sideways .section-count-3.img_to_top .text-container,.section-row .section-area-sideways .section-count-4.img_to_top .text-container,.section-row .section-area-sideways .section-count-5.img_to_top .text-container{padding:0}.section-row .section-area-sideways .section-count-2.textalign_center .section-single:not(.no_image) .text-container,.section-row .section-area-sideways .section-count-3.textalign_center .section-single:not(.no_image) .text-container,.section-row .section-area-sideways .section-count-4.textalign_center .section-single:not(.no_image) .text-container,.section-row .section-area-sideways .section-count-5.textalign_center .section-single:not(.no_image) .text-container{text-align:left}.section-row .section-area-sideways .section-count-3 .hentry p,.section-row .section-area-sideways .section-count-4 .hentry p{font-size:.929em}.section-row .section-area-sideways .section-count-3 h3.section-title,.section-row .section-area-sideways .section-count-4 h3.section-title{font-size:1.475em}.section-row .section-area-sideways .textalign_left.text_and_btn{text-align:center}.section-row .section-area-sideways .textalign_left.text_and_btn .contact-btn{margin-top:15px}.section-row .section-area-sideways .section-padding-container{padding-left:5px;padding-right:5px}.section-row .section-area-sideways.section-row-column-background .section-padding-container{padding-left:0;padding-right:0}.section-row .section-area-sideways .hentry{margin-bottom:0}.section-row .section-area-sideways img.section-with-text,.section-row .section-area-sideways .column_element_custom{margin-bottom:20px}.section-row .section-area-sideways h3{font-size:1.553em}.section-row .section-area-sideways .section-count-1 .section-single{max-width:390px;margin-right:auto;margin-left:auto;float:none}.section-row .section-area-sideways .section-single{padding-bottom:30px;max-width:390px;margin-right:auto;margin-left:auto;float:none}.section-row .section-area-sideways .section-single:last-child{padding-bottom:0}.section-row .section-area-sideways .img_to_top .column-element:not(.col-xs-12) img.section-with-text,.section-row .section-area-sideways .img_to_top .column-icon.section-with-text,.section-row .section-area-sideways .img_to_top .column_element_custom{margin-bottom:0}.section-row .section-area-sideways.section-row-column-background .section-single{max-width:none;padding-bottom:0}.section-row .section-area-sideways.section-row-column-background .section-single img,.section-row .section-area-sideways.section-row-column-background .section-single img.section-with-text,.section-row .section-area-sideways.section-row-column-background .section-single .column-icon.section-with-text,.section-row .section-area-sideways.section-row-column-background .section-single .column_element_custom{margin-bottom:0}.section-row .section-area-sideways .font-size-xxsmall{font-size:.9rem}.section-row .section-area-sideways .font-size-xsmall{font-size:.95rem}.section-row .section-area-sideways .font-size-small{font-size:1rem}.section-row .section-area-sideways .font-size-medium{font-size:1.1rem}.section-row .section-area-sideways .font-size-large{font-size:1.3rem}.section-row .section-area-sideways .font-size-xlarge{font-size:1.5rem}.followus-row .container{padding:10px 20px}.followus-row h3{float:none;margin:0}.addad_ad-area-rightcol{padding:0 20px}.more-news{margin-left:20px}.addad_ad-area-rightcol h4.addad_ad-img-title{max-width:370px}.contact-form-row .container{padding:0 20px}.associates-row{padding-top:30px;padding-bottom:25px}.associates-row .container{padding:0 20px}.associates-row .container h3{text-align:center;margin:0}.footer-row{padding:25px 0}.footer-row .footer-elements-row .footer-element{padding-bottom:.5em}.footer-row .footer-elements-row .footer-element .hentry{margin-bottom:0}.footer-row .footer-elements-row .footer-element:last-child{padding-bottom:0}.footer-row .footer-nav>li{display:block}.footer-row .footer-nav li{float:left;width:100%;margin-bottom:5px;margin-bottom:14px}.footer-row .footer-nav li ul{margin-bottom:-7px;margin-left:7px}.footer-row .container{padding:0 20px}.footer-row .span-right{text-align:left}.footer-row .addad-logo{margin-top:25px;float:left}.contact-form-row ul.contact-info{margin-bottom:30px}.addad_ad-area-rightcol .section-img-text .addad_ad-img{margin-bottom:15px}.associates-row .associate-modal .hentry{margin:0}.addad-logo{float:left}}@media (max-width:767px) and (max-width:480px){.column-icon i{font-size:2.25em}}@media (max-width:767px) and (max-width:480px){.section-area .section-single[data-image-template="img-icon-no-bg"] .column-element{position:relative;float:left;width:16.66666667%;min-height:1px;padding-left:10px;padding-right:10px}.section-area .section-single[data-image-template="img-icon-no-bg"] .column-text{position:relative;float:left;width:83.33333333%;min-height:1px;padding-left:10px;padding-right:10px}.section-count-2 .section-single,.section-count-4 .section-single,.section-count-6 .section-single,.section-count-8 .section-single{width:100%}}@media (max-width:420px){.associates-row .associate-modal .hentry label.gfield_label{width:inherit;float:none;padding:0;text-align:left}.associates-row .associate-modal .hentry input[type="submit"].gform_button{margin-left:0}.associate-modal .hentry .gform_wrapper .gform_body .message-box+.gfield:not(.captcha){-moz-transform:scale(.95);-webkit-transform:scale(.95);transform:scale(.95);width:100%;float:right}.associate-modal .hentry .gform_wrapper .gform_body .message-box+.gfield:not(.captcha) .ginput_container{margin-left:0}}.pageWrapper{min-width:305px}.addadSelection{color:#FFF;background:#ff8430}h1.sections-only-h1{padding-top:0;padding-bottom:0}.section_wrapper.slider-parent .title_1,.section_wrapper.slider-parent .section-row-title{background-color:rgba(255,255,255,0.5);color:#323232}.text_and_btn_wrapper{border-bottom:3px solid #ff8430}@media (min-width:480px){.text_and_btn_wrapper .text_and_btn-text{width:60%;font-weight:400}.text_and_btn_wrapper .text_and_btn-btn{width:40%}.text_and_btn_wrapper .text_and_btn-btn .btn{color:#FFF;background-color:#494949;border-color:#3c3c3c;width:100%;font-size:1.5em;padding-top:1.25em;padding-bottom:1.25em;font-weight:700}.text_and_btn_wrapper .text_and_btn-btn .btn:hover,.text_and_btn_wrapper .text_and_btn-btn .btn:focus,.text_and_btn_wrapper .text_and_btn-btn .btn:active,.text_and_btn_wrapper .text_and_btn-btn .btn.active,.open>.dropdown-toggle.text_and_btn_wrapper .text_and_btn-btn .btn{color:#FFF;background-color:#2f2f2f}.text_and_btn_wrapper .text_and_btn-btn .btn:active,.text_and_btn_wrapper .text_and_btn-btn .btn.active,.open>.dropdown-toggle.text_and_btn_wrapper .text_and_btn-btn .btn{background-image:none}.text_and_btn_wrapper .text_and_btn-btn .btn.disabled,.text_and_btn_wrapper .text_and_btn-btn .btn[disabled],fieldset[disabled] .text_and_btn_wrapper .text_and_btn-btn .btn,.text_and_btn_wrapper .text_and_btn-btn .btn.disabled:hover,.text_and_btn_wrapper .text_and_btn-btn .btn[disabled]:hover,fieldset[disabled] .text_and_btn_wrapper .text_and_btn-btn .btn:hover,.text_and_btn_wrapper .text_and_btn-btn .btn.disabled:focus,.text_and_btn_wrapper .text_and_btn-btn .btn[disabled]:focus,fieldset[disabled] .text_and_btn_wrapper .text_and_btn-btn .btn:focus,.text_and_btn_wrapper .text_and_btn-btn .btn.disabled:active,.text_and_btn_wrapper .text_and_btn-btn .btn[disabled]:active,fieldset[disabled] .text_and_btn_wrapper .text_and_btn-btn .btn:active,.text_and_btn_wrapper .text_and_btn-btn .btn.disabled.active,.text_and_btn_wrapper .text_and_btn-btn .btn[disabled].active,fieldset[disabled] .text_and_btn_wrapper .text_and_btn-btn .btn.active{background-color:#494949;border-color:#3c3c3c}.text_and_btn_wrapper .text_and_btn-btn .btn .badge{color:#494949;background-color:#FFF}}.section_wrapper.custom-bg .btn{color:#FFF;background-color:#ff8430;border-color:#ff8430}.section_wrapper.custom-bg .btn:hover,.section_wrapper.custom-bg .btn:focus,.section_wrapper.custom-bg .btn:active,.section_wrapper.custom-bg .btn.active,.open>.dropdown-toggle.section_wrapper.custom-bg .btn{color:#FFF;background-color:#fc6600}.section_wrapper.custom-bg .btn:active,.section_wrapper.custom-bg .btn.active,.open>.dropdown-toggle.section_wrapper.custom-bg .btn{background-image:none}.section_wrapper.custom-bg .btn.disabled,.section_wrapper.custom-bg .btn[disabled],fieldset[disabled] .section_wrapper.custom-bg .btn,.section_wrapper.custom-bg .btn.disabled:hover,.section_wrapper.custom-bg .btn[disabled]:hover,fieldset[disabled] .section_wrapper.custom-bg .btn:hover,.section_wrapper.custom-bg .btn.disabled:focus,.section_wrapper.custom-bg .btn[disabled]:focus,fieldset[disabled] .section_wrapper.custom-bg .btn:focus,.section_wrapper.custom-bg .btn.disabled:active,.section_wrapper.custom-bg .btn[disabled]:active,fieldset[disabled] .section_wrapper.custom-bg .btn:active,.section_wrapper.custom-bg .btn.disabled.active,.section_wrapper.custom-bg .btn[disabled].active,fieldset[disabled] .section_wrapper.custom-bg .btn.active{background-color:#ff8430;border-color:#ff8430}.section_wrapper.custom-bg .btn .badge{color:#ff8430;background-color:#FFF}.navbar .nav>li>a{text-transform:uppercase;font-weight:700;font-size:.9rem}h3,h4{font-weight:300}.hentry h3,.hentry h4{font-weight:700}.navbar-default .nav>.dropdown .dropdown-toggle,.section_wrapper.slider-parent .link,.text_and_btn_wrapper a.contact-btn,.btn,.button{border-radius:0}.extra_template_fyra-puffar h3{font-weight:700}.footer-row h3,.footer-row .hentry h3{font-size:1.5em}@media (min-width:1200px){body{font-size:16px}}@media (min-width:768px){.main-logo .logo-img{width:217px;height:25px}.section_wrapper.slider-parent .row{text-align:center}.section_wrapper.slider-parent .title_1,.section_wrapper.slider-parent .section-row-title{text-align:center;background:none;float:none;color:#FFF;text-shadow:0 0 6px #1c1c1c;line-height:1.2}.section_wrapper.slider-parent .title_1{font-size:36px;font-weight:300}.section_wrapper.slider-parent .section-row-title{font-weight:900;font-size:64px}.section_wrapper.slider-parent .link{float:none}}@media (min-width:768px) and (max-width:991px){.section_wrapper.slider-parent .title_1{font-size:32px}.section_wrapper.slider-parent .section-row-title{font-size:54px}}@media (min-width:992px){.navbar-default .nav>.dropdown>a{padding-right:41px;z-index:100;position:relative}.navbar-default .nav>.dropdown .dropdown-toggle{margin-left:-35px;margin-top:6px;z-index:200;position:relative}.custom-buttons .nav>li{margin:14px 2px}.custom-buttons .nav>li>a{padding:7px 11px}}@media (max-width:991px){.navbar-collapse{width:100%}}@media (max-width:767px){.main-logo .logo-img{width:190px;height:22px}.slide_container{background:none;text-align:center}.slide_container .container{padding:0 15px}.slide_container .title_1,.slide_container .section-row-title,.slide_container .link{float:none}}#swipe-menu .-close{font-family:sans-serif}@media (max-width:991px){.section-area .section-row-title.section-title{text-align:center}.footer-row .footer-elements-row{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.footer-row .footer-elements-row:before,.footer-row .footer-elements-row:after{display:none}.footer-row .footer-elements-row .footer-element{width:50%;padding-bottom:1em}.footer-row .footer-elements-row .footer-element .hentry .extra-content-wrapper .extra-content-item h3{margin:0 0 .3em}.footer-row .footer-elements-row .footer-element .hentry .extra-content-wrapper .extra-content-item p{padding:.15em 0 0}}@media (max-width:479px){.footer-row .footer-elements-row .footer-element{width:100%}}@media (max-height:299px){.section_cover .addad-gopast{display:none}}.slide-nav-trigger span,.slide-nav-trigger span::before,.slide-nav-trigger span::after{background:#2e3233}/*# sourceMappingURL=addad.css.map */