/****** FILE: themes/ew2017/css/editor.css *****/
/**
 * This support file is used to style the WYSIWYG editor in the CMS
 */
@import "typography.css";
body.mceContentBody{font-size:16px;line-height: 1.2em;}
body.mceContentBody p{padding-bottom: 0px;}
body.mceContentBody h2{line-height: 1.2em;}

/****** FILE: themes/ew2017/css/owl.carousel.css *****/
.owl-carousel .owl-wrapper:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0
}

.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)
}

.grabbing {
    cursor: url(../images/grabbing.png) 8 8, move
}

.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-item.loading {
    min-height: 150px;
    background: url(../images/AjaxLoader.gif) no-repeat center center
}

.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
}

.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
}

.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
}

.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
}

.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
}

@-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)
    }
}

/****** FILE: themes/ew2017/css/owl.controls.css *****/
.owl-theme .owl-controls .owl-buttons div{
	position:absolute;
	top:50%;	
	background:url(../images/prev.png) no-repeat;
	width:32px; 
	height:32px;	
}
.owl-theme .owl-controls .owl-buttons div.owl-prev { 
	left:15px;
	-webkit-transform:translateY(-50%);
	    -ms-transform:translateY(-50%);
	        transform:translateY(-50%);
}
.owl-theme .owl-controls .owl-buttons div.owl-next { 
	right:15px; 
	-webkit-transform:translateY(-50%) rotate(180deg);
	    -ms-transform:translateY(-50%) rotate(180deg);
	        transform:translateY(-50%) rotate(180deg);
}


.owl-theme .owl-controls .owl-pagination {	
	text-align: center;
	position:absolute; 
	left:0; 
	bottom:0; 
	right:0;
}
.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: 0 7px;
	border-radius: 50%;
	background: #869791;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	background:#000;
}

/****** FILE: themes/ew2017/font/font.css *****/
@charset "utf-8";
/* CSS Document */



/****** FILE: themes/ew2017/css/font-awesome.min.css *****/


/****** FILE: themes/ew2017/css/menu-icon.css *****/
button.lines-button {
    display: none;
    margin: 0 0;
    padding:15px 0;
    border: none;
    background: none;
    position:relative;
    z-index:999999;
}
button.lines-button span {
    display: inline-block;
}
.lines-button {
    padding: 0;
    transition: .3s;
    cursor: pointer;
    user-select: none;
    border-radius: 0.57143rem;    
}
.lines {
    display: inline-block;
    width: 50px;
    height: 7px;    
    transition: 0.3s;
    position: relative;
}
.lines:before, .lines:after {
    display: inline-block;
    width: 50px;
    height: 7px;        
    position: absolute;
    left: 0;
    content: '';
	-webkit-transition: all .3s ease-in-out;	   	     
	        transition: all .3s ease-in-out;
    -webkit-transform-origin: 0.28571rem center;
    		transform-origin: 0.28571rem center;
}
.lines:before {
    top: 12px;
    background: inherit;
}
.lines:after {
    top: -12px;
    background: inherit;
}

.lines-button.open .lines:before {
    top: 12px;
}
.lines-button.open .lines:after {
    top: -12px;
}
.lines-button.open {
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
       -moz-transform: scale3d(0.8, 0.8, 0.8);
    		transform: scale3d(0.8, 0.8, 0.8);
}
.lines-button.x.open .lines {
    background: transparent;
}
.lines-button.x.open .lines:before, .lines-button.x.open .lines:after {    
    top: 0;
    width: 4rem;
	-webkit-transform-origin: 50% 50%;
    		transform-origin: 50% 50%;
}
.lines-button.x.open .lines:before {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    		transform: rotate3d(0, 0, 1, 45deg);
}
.lines-button.x.open .lines:after {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    		transform: rotate3d(0, 0, 1, -45deg);
}



/****** FILE: themes/ew2017/css/typography.css *****/
@charset "utf-8";
/* CSS Document */
.typography {
    font-family: "proxima-nova",sans-serif;
}
.typography .Summary { font-weight:300; font-size:24px; color:#020202; line-height:36px;}
.typography .Quote { font-weight:500; font-size:24px; font-style: italic;  color:#020202; line-height:36px;margin:30px 50px 30px 30px;padding-left:20px; border-left: 3px #dcd6d4 solid;}
.typography .QuotePerson { font-size:18px; font-weight:bold; padding-top:20px;}
.typography .PulloutTextNoItalic { font-weight:500; font-size:32px; font-style: normal;  color:#020202; line-height:36px;margin:30px 20px 30px 10px;padding-left:20px; border-left: 3px #dcd6d4 solid;}
.typography p:before, .typography p:after {
    display:table;
    content:"";
}
.typography p:after  {
    clear:both;
}

/* HEADERS */
.typography h1,
.typography h2,
.typography h3,
.typography h4,
.typography h5,
.typography h6 {   
	font-weight:700;
}
.typography h1 { font-size:45px; padding-bottom:17px;line-height:45px;}
.typography h2 { font-size:36px; padding-bottom:16px;line-height:36px;}
.typography h3 { font-size:30px; padding-bottom:15px;line-height:30px;}
.typography h4 { font-size:26px; padding-bottom:14px;line-height:26px;}
.typography h5 { font-size:22px; padding-bottom:12px;line-height:22px;}
.typography h6 { font-size:18px; padding-bottom:10px;line-height:18px;}
.typography h2 a,
.typography h3 a,
.typography h4 a,
.typography h5 a,
.typography h6 a { color:#00a5d7;}
.typography h2 a:hover,
.typography h3 a:hover,
.typography h4 a:hover,
.typography h5 a:hover,
.typography h6 a:hover { text-decoration:underline;}





/* PARAGRAGHS */
.typography p { font-size:18px; font-weight:300; color:#020202; line-height:1.4em; padding-bottom:10px; }
.typography p a { color:#00a5d7; font-weight:700;}
.typography p a:hover { text-decoration:underline;}

.typography img { margin-bottom:15px;}

.typography .full { float:left; width:100%; margin-bottom:2%;}
.typography .half { margin-left:2%; float:left; width:48%; margin-bottom:2%;}

.typography .caption { font-size:16px; color:#231f20; padding:10px 0 44px; line-height:20px; display:block;}
.typography .caption strong { display:block;}

.typography.sidebar { background:#00a5d7; border-top:10px solid #fce302;}
.typography.sidebar > ul { padding-bottom:30px;}
.typography.sidebar > ul > li { background:none; padding:0; }
.typography.sidebar ul li { background:none; padding:0;}
.typography.sidebar ul li + li { margin-top:0;}
.typography.sidebar > ul > li > a { display:block; padding:12px 30px; border-bottom:1px solid #fff;color:#fff;}
.typography.sidebar > ul > li > a:hover { color:#fce302;text-decoration: none;}
.typography.sidebar > ul > li.current > a, .typography.sidebar > ul > li.section > a { color:#fce302;}
.typography.sidebar > ul > li > ul { padding:0 30px 30px 30px;border-bottom:1px solid #fff;}
.typography.sidebar > ul > li > ul > li { background:none; }
.typography.sidebar > ul > li > ul > li > a { display:block; font-weight:700; font-size:18px; color:#fff; padding:12px 20px; border-bottom:1px solid #fce302;}
.typography.sidebar > ul > li > ul > li > a:hover { color:#fce302;}
.typography.sidebar > ul > li > ul > li.current > a, .typography.sidebar > ul > li > ul > li.section > a { color:#fce302;}
.typography.sidebar > ul > li > ul > li > ul { padding:0 30px;}
.typography.sidebar > ul > li > ul > li > ul > li { background:none;}
.typography.sidebar > ul > li > ul > li > ul > li > a { display:block; padding:7px 0;}
.typography.sidebar > ul > li > ul > li > ul > li > a:hover { color:#519644;}
.typography.sidebar > ul > li > ul > li > ul > li.current > a, .typography.sidebar > ul > li > ul > li > ul > li.section > a { color:#519644;}

/* LIST STYLES
-------------------------------------------- */
.typography ul, 
.typography ol,
.typography dl { padding:0 0 15px 0;  }

.typography ul li { padding:0 0 0 45px; background:url(../images/bullet.png) no-repeat 20px 9px; font-size:18px; color:#0b0a0f; line-height:28px; } 
.typography ul li + li { margin-top:0px; }
.typography ul li a {color:#00a5d7; font-weight:700; }
.typography ul li a:hover { text-decoration:underline;}
.typography ul li ul li { }


.typography em { font-style: italic; }

::selection,
::-moz-selection { /* Applies style to highlighted portion of a page */
    background: #13b80f;
    color: #fff;
    text-shadow: none;
}

/* LINKS */
.typography a, 
.typography a.intro { }
.typography a:hover { }
.typography a:focus { }

.typography p a, 
.typography p.intro a {  }
.typography a:hover { text-decoration:underline; }



/* TABLE STYLES
-------------------------------------------- */
.typography table {
    width:100%;
    border-collapse: collapse; /* borders are collapsed into a single border when possible */
    border: 1px solid #d4d4d4;
    border-spacing: 0; /* The border-spacing property sets the distance between the borders of adjacent cells - acts as a backup to border-collapse: collapse */
    margin: 0 0 10px;
    text-align: left;
    font-size: 18px;
}
.typography table tr:nth-child(even) {
    background-color: #ededed
}
.typography table tr.even,
.typography table th,
.typography thead td {
    background-color: #ededed
}
.typography table td,
.typography table th {
    padding: 10px 20px;
    border: 1px solid #d4d4d4;
    vertical-align: top;
}
.typography table th {
    font-weight: bold;
}


/* WYSIWYG EDITOR ALIGNMENT CLASSES 
-------------------------------------------- */
.typography .left {
    text-align: left
}
.typography .center {
    text-align: center
}
.typography .right {
    text-align: right
}



/* IMAGES 
-------------------------------------------- */
.typography img {
    border: none;
    height: auto; 
}
.typography img.left {
    float: left;
    max-width: 362px;
    margin: 5px 20px 10px 0;
}
.typography img.right {
    float: right;
    max-width: 362px; /* Responsive width */
    margin: 5px 0 10px 20px;
}
.typography img.leftAlone {
    float: left;
    margin-right: 100%;
    margin-bottom: 10px;
    clear: both;
}
.typography img.center {
    float: none;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-bottom: 10px;
    clear: both;
}
.typography img.full { float:left; width:100%; margin-bottom:2%;}
.typography img.half { margin-left:2%; float:left; width:48%; margin-bottom:2%;}

.typography .captionImage { width: 100%; margin-top: 5px; }
.typography .captionImage img { margin: 0; }
.typography .captionImage.left {
    float: left;
    margin: 5px 30px 20px 0px;
}
.typography .captionImage.right{
    float: right;
    margin: 5px 0 20px 30px;
}
.typography .captionImage.left[style],
.typography .captionImage.right[style] {
    max-width: 50%; /* Overides core width to make responsive */
}
.typography .captionImage.left img,
.typography .captionImage.right img {
    float: none;
    max-width: none;
    width: 100%;
}
.typography .captionImage.left img {
    margin-right: -10px;
}
.typography .captionImage.right img {
    margin-left: -10px;
}
.typography .captionImage.right p {
    margin-left: -10px;
    text-align: left;
    margin-left: -10px;
}
.typography .captionImage.leftAlone{
    float:none;
    margin: 0 20px 20px 0px;
}
.typography .captionImage.center{
    margin: 0 auto 20px;
}
.typography .captionImage p {
    clear: both;
    margin: 5px 0;
    font-style: italic;
    color: #000;
}



.light { background:#f5f2f0; padding:50px 0;}
.white {  padding:50px 0;}
.pad-top { padding-top:0;}
.panel { margin:0 0 0 -2%; }
.panel .column1 { width:98%; margin:0 2% 0 2%; float:left; }
/* .panel .column1.pad { padding:0 100px;}  */
.panel .column2 { width:46%; margin:0 2% 0 2%; float:left;}
.panel .column2_3 { width:65%; margin:0 2% 0 2%; float:left;}
.panel .column1_3 { width:27%; margin:0 2% 0 2%; float:left;}
.panel .column1_2 { width:46%; margin:0 2% 0 2%; float:left; padding-right:10px;}
.panel:before, .panel:after { display:table; content:"";}
.panel:after { clear:both;}
.light .title { font-size:36px; padding-bottom:17px; font-weight:700;}
.white .title { font-size:36px; padding-bottom:17px; font-weight:700;}

/****** FILE: themes/ew2017/css/form.css *****/
/* Custom FORMS Styles */

/* HEADERS */

.typography form h1 { font-size:45px; padding-bottom:17px;line-height:45px;}
.typography form h2 { font-size:36px; padding-bottom:16px;line-height:36px;}
.typography form h3 { font-size:30px; padding-bottom:15px;margin-bottom:15px; line-height:30px;border-bottom: solid #fff 1px;}
.typography form h4 { font-size:26px; padding-bottom:14px;line-height:26px;}
.typography form h5 { font-size:22px; padding-bottom:12px;line-height:22px;}
.typography form h6 { font-size:18px; padding-bottom:10px;line-height:18px;}

.typography form { background:#d7dfe5; padding:40px 30px; border:0px;}
.typography form .inpt_bx { background:#fff; border-radius:5px; padding:0 25px; height:48px; font-size:14px; color:#bec2c4; font-family: "source-sans-pro",sans-serif; text-transform:uppercase; margin-bottom:20px;}
.typography form .half { float:left;  } 
.typography form .half + .half { float:right; } 
.typography form .full { width:100%; } 
.typography form .sbt { font-size:16px; color:#005333; font-family: 'titillium_bdbold'; padding:0 75px; border:2px solid #fff; line-height:48px; background:none;}
.typography form .sbt:hover { background:#fff; color:#575455;}
/* FORMS  */


.typography fieldset {
    border: 0;
    margin: 0;
    padding: 0;
    font-size:16px;
}

.typography form label.right {
        font-size: 14px;
        color: #888;
    }
.typography form .bad label, form .required label{
       
    }
    
.typography form input.text,
.typography form .textajaxuniquetext,   
.typography form select {width: 100%; background:#fff; border-radius:5px; padding:0 25px; height:48px; font-size:18px; color:#666666; font-family: "source-sans-pro",sans-serif; margin-bottom:20px;}
.typography form input.text,
.typography form .textajaxuniquetext,   
.typography form select {width: 100%; background:#fff; border-radius:5px; padding:0 25px; height:48px; font-size:14px; color:#666666; font-family: "source-sans-pro",sans-serif; }
.typography .ie7 form select { width: 400px; } 

.typography form .textarea {width:100%; border-radius:5px; font-size:14px; color:#666666; font-family: "source-sans-pro",sans-serif; margin-bottom:5px;}
.typography form textarea {padding:15px 10px 15px 25px;}
.typography form .half { float:left; width:48%; } 
.typography form .half + .half { float:right; } 

.typography form input.text:focus,
.typography form textarea:focus,
.typography form .textajaxuniquetext:focus,
.typography form select:focus {
    outline:none;
}
.typography form input[disabled], form textarea[disabled] {
    background-color: #f7f7f7;
    border: 1px solid #dad9d9;
}
.typography textarea {
    resize: vertical; /* forces text area to be resized vertically only */
    padding:10px 25px;
}

.typography form ul li, 
.typography form ol li,
.typography form dl li{ list-style: none;background:none;float:left; width:auto;padding-left: 0px;padding-right: 30px;}

.typography form ul, 
.typography form ol,
.typography form dl{ margin-bottom: 30px;}

/* Radio and Checkbox */
.typography .field .checkbox, .field .radio {
    float: left;  
    margin-right: 6px; 
    margin-top: 6px;
    padding: 0 20px 0 0;
    vertical-align: middle;
}
    .typography .checkbox label.right,
    .typography .radio label.right {
        float: left;
        vertical-align: middle;
    }


/* Messages */
.typography form .requiredField .error {
        border-color: #cf0000;
        color: #b80000;
		font-size: 18px;
    }

.typography .column2 form .userformsgroup {
    margin-bottom:30px;
}
/* ACTIONS */
.typography .Actions {
    margin: 15px 0;
}
    .typography a.btn, button, input[type="submit"], .Actions .action {
        border: 3px solid #fff;    color: #00a5d7;    display: inline-block;    font-size: 18px;    font-weight: 700;    line-height: 18px;    padding: 15px 50px;    text-transform: uppercase; background:none;border-radius:5px;
    }
    .typography a.btn:hover, button, input[type="submit"]:hover, .Actions .action:hover {
        background:#fce302; 
        
    }
    .typography a.btn {
        line-height: 18px;
        margin-bottom: 10px;
    }
    .typography a.btn:after {                     /* creates arrow in button */
        content: '\2192';
        padding-left: 10px;
    }
    .typography .ie7 input.action {
        width: 0;                     /* IE table-cell margin fix */
        overflow: visible;
    }
    .typography input.action[class] {             /* IE ignores [class] */
        width: auto;                  /* cancel margin fix for other browsers */
    }

    .typography .ie7 .Actions .action {
        float: left;
    }
    .typography .Actions:after {
        color: #B94A48;
        display: inline-block;
        font-weight: normal;
        margin-top: 9px;
    }
    .typography #MemberLoginForm_LoginForm .Actions:after {
        display: none;
    }


/* AREA SPECIFIC */
    /* LOGIN and FORGOT PASSWORD */
    .typography #Remember {
        min-height: 20px;
    }
    .typography #ForgotPassword {
        clear: left;
    }
    .typography #MemberLoginForm_LostPasswordForm .Actions:after {
        display: none;
    }

    /* Search / Login */
    .typography .header form .middleColumn {
        /* float: none;
        width: 100% !important; */
    }




/****** FILE: themes/ew2017/css/style.css *****/
@charset "utf-8";
/* CSS Document 
font-family: "proxima-nova",serif;
*/

* {
    margin:0;
    padding:0;
    -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;
}
:before, :after {	
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    font-family: sans-serif;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}
body {
    margin:0;
    padding:0;
    font-family: 'proxima-nova', sans-serif;
    font-size: 14px;
    font-weight:400;
    line-height: 1.42857143;
    color: #333;
    background-color: #fff;
}
html, body { 
    height: 100%;
    overflow-x: hidden;
}
:focus {
    outline:none;
}
audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}
ul, li, ol {
    list-style:none;	
}
a {
    text-decoration:none;
    background-color: transparent;
    color:inherit;	
    -webkit-transition: all .6s ease-in-out;	   	     
    transition: all .6s ease-in-out;
}
a,
area,
button,
[role="button"],
input,
label,
select,
summary,
textarea {
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}
a:active, a:hover {
    outline: 0;
}
a img, img {
    border: 0;
    vertical-align:middle;	
    max-width: 100%;
    height: auto;
}
h1, h2, h3, h4, h5, h6 {
    font-weight:normal;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
    display: block;
}
button, input, optgroup, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}
button {
    overflow: visible;
}
button, select {
    text-transform: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
    padding: 0;
    border: 0;
}
input {
    line-height: normal;
}
button, html input[type="button"], input[type="reset"], input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
    border:none;
    -webkit-transition: all .6s ease-in-out;	   	     
    transition: all .6s ease-in-out;
}
button::-moz-focus-inner, input::-moz-focus-inner {
    padding: 0;
    border: 0;
    -webkit-transition: all .6s ease-in-out;	   	    
    transition: all .6s ease-in-out;
}
input[type="checkbox"], input[type="radio"] {
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
input[type="search"], input[type="text"], input[type="email"], input[type="password"], textarea {
    padding:0 10px;
    border:none;
    width:100%;
    -webkit-appearance: textfield;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
textarea {
    padding:10px;
    resize:none;
    overflow: auto;	
}
table {
    border-spacing: 0;
    border-collapse: collapse;
}
td, th {
    padding: 0;
}
input[type="search"]:focus, input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, textarea:focus {
    box-shadow:0 0 2px rgba(0,0,0,0.2);
}
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
.relative {
    position:relative;
}
.img-circle {
    border-radius: 50%;
}
@-webkit-keyframes menuDown {
    0% { opacity: 0; -webkit-transform: translateY(-20px); transform: translateY(-20px);}
    100% { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0);}
}
@keyframes menuDown {
    0% { opacity: 0; -webkit-transform: translateY(-20px); -ms-transform: translateY(-20px); transform: translateY(-20px);}
    100% { opacity: 1; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0);}
}
.menuDown { -webkit-animation-name: menuDown; animation-name: menuDown;}

@-webkit-keyframes menuRight {
    0% { opacity: 0; -webkit-transform: translateX(20px); transform: translateX(20px);}
    100% { opacity: 1; -webkit-transform: translateX(0); transform: translateX(0);}
}
@keyframes menuRight {
    0% { opacity: 0; -webkit-transform: translateX(20px); -ms-transform: translateX(20px); transform: translateX(20px);}
    100% { opacity: 1; -webkit-transform: translateX(0); -ms-transform: translateX(0); transform: translateX(0);}
}
.menuRight { -webkit-animation-name: menuRight; animation-name: menuRight;}

input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; } /* FF 4-18 */
input:focus::-moz-placeholder { color:transparent; } /* FF 19+ */
input:focus:-ms-input-placeholder { color:transparent; } /* IE 10+ */

.menu-icon {
    display:none;
    border:1px solid #ddd;	
    padding:9px 10px;
    background-color:transparent;	
    border-radius:4px;
}
.menu-icon:hover { background-color:#ddd;}
.menu-icon span {
    display:block;
    background-color:#888;
    height:2px;
    width:22px;	
    border-radius:1px;
}
.menu-icon span + span { 
    margin-top:4px;
}
.clearfix {}
.clearfix:before, .clearfix:after {
    display:table;
    content:"";
}
.clearfix:after {
    clear:both;
}
.container {
    width:100%;
    max-width:1210px;
    padding:0 15px;
    margin-right: auto;
    margin-left: auto;	
}
.container:before, .container:after {
    display:table;
    content:" ";
}
.container:after {
    clear:both;
}
#wrap { min-height: 100%;}

hr { border-bottom:1px solid #ababab; border-top:0px; margin:20px 0;padding:0;}

header { }
header .header {}
header .header .logo { float:left; padding:10px 0 20px;}
header .header .right { float:right; text-align:right;padding:30px 0 0px;}
header .header .right .info { padding:10px 0 0; font-size:18px; color:#fce302; font-family: "proxima-nova",serif; font-weight:300;}
header .header .right .info img { vertical-align: bottom; margin-bottom:6px;}
header .header .right .servicenav {float:right;}
header .header .right .servicenav > ul {}
header .header .right .servicenav > ul > li { display:block; float:left; z-index:999; position:relative;}
header .header .right .servicenav > ul > li:last-child a { padding-right:0;}
header .header .right .servicenav > ul > li > a { display:block; padding:10px 9px 20px; font-size:18px; color:#000; font-family: "proxima-nova",serif; font-weight:600;}
header .header .right .servicenav > ul > li > a:hover, 
header .header .right .servicenav > ul > li.current a,
header .header .right .servicenav > ul > li.section a { color:#00a5d7;}
header .header .right .servicenav > ul > li > ul { display:none; background:#519644;/* < make sure this is hidden on mobile*/ width:220px; position:absolute; left:0; top:100%; text-align:left; padding:10px 0;}

header .header .right .servicenav > ul > li > ul > li {}
header .header .right .servicenav > ul > li > ul > li > a { display:block; font-size:16px; color:#fff; font-family: "proxima-nova",serif; font-weight:500; padding:5px 15px;}
header .header .right .servicenav > ul > li > ul > li > a:hover { color:#fce302;}

/* adjusted nav full width*/
.bluecontainer {background-color:#00a5d7;width:100%;padding:30px 15px 22px;margin-right: auto;margin-left: auto;	}
header .header .fullnav {position:relative;display:block;width:100%;}
header .header .fullnav nav {float:right;}
header .header .fullnav nav > ul {}
header .header .fullnav nav > ul > li { display:block; float:left; z-index:999; position:relative;}
header .header .fullnav nav > ul > li:last-child a { padding-right:0;}
header .header .fullnav nav > ul > li > a { display:block; padding:10px 9px 20px; font-size:18px; color:#fff; font-family: "proxima-nova",serif; font-weight:600;}
header .header .fullnav nav > ul > li > a:hover, 
header .header .fullnav nav > ul > li.current a,
header .header .fullnav nav > ul > li.section a { color:#fce302;}
header .header .fullnav nav > ul > li > ul { display:none; background:#519644;/* < make sure this is hidden on mobile*/ width:220px; position:absolute; left:0; top:100%; text-align:left; padding:10px 0;}

header .header .fullnav nav > ul > li > ul > li {}
header .header .fullnav nav > ul > li > ul > li > a { display:block; font-size:16px; color:#fff; font-family: "proxima-nova",serif; font-weight:500; padding:5px 15px;}
header .header .fullnav nav > ul > li > ul > li > a:hover { color:#000;}





#banner {}
#banner #main-banner {z-index:888;}
#banner #main-banner .item { background-position:center center; background-repeat:no-repeat; background-size:cover;}
#banner #main-banner .banner-text { padding:75px 0; }
#banner #main-banner .banner-text .left { float:left;min-height:410px;}
#banner #main-banner .banner-text .right { float:right;min-height:410px;}
#banner #main-banner .banner-text .block { width:100%; max-width:590px;  background:rgba(255,255,255,0.7); padding:41px 38px 55px;}
#banner #main-banner .banner-text .block .cap { display:block; font-weight:700; font-size:14px; color:#2dbdb9; padding-bottom:19px;}
#banner #main-banner .banner-text .block h2 { font-weight:900; font-size:48px; color:#000; font-family: "proxima-nova",serif; padding-bottom:19px;}
#banner #main-banner .banner-text .block p { font-size:20px; color:#000; line-height:30px; padding-bottom:38px;}
#banner #main-banner .banner-text .block .btn {}
#banner #main-banner .banner-text .block .btn a { display:inline-block; background:#00a5d7; padding:12px 42px 10px; border-radius:5px; font-weight:700; font-size:18px; color:#fff; text-transform:uppercase;}
#banner #main-banner .banner-text .block .btn a:hover { background:#000;}
#banner #main-banner .owl-prev { width:29px; height:45px; background:url(../images/prev.png) no-repeat; left:15px;}
#banner #main-banner .owl-next { width:29px; height:45px; background:url(../images/prev.png) no-repeat; right:15px; }

#Panelbanner {}
#Panelbanner #Panel-banner {}
#Panelbanner #Panel-banner .content { background-position:center center; background-repeat:no-repeat; background-size:cover;}
#Panelbanner #Panel-banner .banner-text { padding:50px 0; }
#Panelbanner #Panel-banner .banner-text .block.left { float:left;}
#Panelbanner #Panel-banner .banner-text .block.right { float:right;}
#Panelbanner #Panel-banner .banner-text .block { width:100%; max-width:590px;  background:rgba(255,255,255,0.8); padding:41px 38px 55px;}
#Panelbanner #Panel-banner .banner-text .block .cap { display:block; font-weight:700; font-size:14px; color:#2dbdb9; padding-bottom:19px;}
#Panelbanner #Panel-banner .banner-text .block h2 { font-weight:900; font-size:36px; color:#010101; font-family: "proxima-nova",serif; padding-bottom:19px;}
#Panelbanner #Panel-banner .banner-text .block p { font-size:20px; color:#010101; line-height:30px; padding-bottom:38px;}
#Panelbanner #Panel-banner .banner-text .block p span { font-weight:700; font-size:20px; color:#2dbdb9; text-decoration:underline;}
#Panelbanner #Panel-banner .banner-text .block .btn {}
#Panelbanner #Panel-banner .banner-text .block .btn a { display:inline-block; background:#2dbdb9; padding:12px 42px 10px; border-radius:5px; font-weight:700; font-size:13px; color:#ffffff; text-transform:uppercase;}
#Panelbanner #Panel-banner .banner-text .block .btn a:hover { background:#004E44;}


#cap { padding:50px 0 40px;}
#cap .title { font-weight:300; font-size:22px; color:#020202; padding-bottom:40px;}
#cap .title span { font-weight:700;}
#cap .cap-boxes { margin-left:-3%;}
#cap .cap-boxes .box { float:left; width:30.33%; margin-left:3%; margin-bottom:20px;}
#cap .cap-boxes .box .img {}
#cap .cap-boxes .box .img img { width:100%;}
#cap .cap-boxes .box .img-detail { background:#d7dfe5; padding:31px 21px;}
#cap .cap-boxes .box .img-detail .block {}
#cap .cap-boxes .box .img-detail .block h2 { font-weight:700; font-size:30px; color:#010101; padding-bottom:8px; line-height:30px;}
#cap .cap-boxes .box .img-detail .block p { font-size:18px; color:#231f20; padding-bottom:15px;}
#cap .cap-boxes .box .img-detail .btn {}
#cap .cap-boxes .box .img-detail .btn a { display:block; background:#00a5d7; padding:15px 0; border-radius:5px; font-weight:700; font-size:18px; color:#fff; text-transform:uppercase; text-align:center;}
#cap .cap-boxes .box .img-detail .btn a:hover { background:#000;}

#title { background-repeat:no-repeat; background-position:center center; background-size:cover;}
#title h5 { font-weight:900; font-size:45px; color:#fff; padding:80px 0 78px 0;text-shadow: 1px 1px 3px rgba(10, 10, 10, 1);line-height:1em;}

#scroller { padding:50px 0 50px;}
#scroller .links { text-align:center; padding-bottom:40px;}
#scroller .links ul {}
#scroller .links ul li { display:inline-block; color:#000;}
#scroller .links ul li a { font-weight:700; font-size:21px; color:#2dbdb9;}
#scroller .links ul li + li:before { content:"/"; padding:0 10px;}
#scroller .links ul li a:hover { color:#000;}
#scroller .links ul li.active a { color:#000;}
#Breadcrumbs { padding:15px 0 10px;}
#Breadcrumbs .Breadcrumbs { font-weight:700; font-size:20px; }
#Breadcrumbs .Breadcrumbs a { color:#2dbdb9;}
#Breadcrumbs .Breadcrumbs a:hover { color:#000;}
#Breadcrumbs .Breadcrumbs a.current { color:#000;}
#Breadcrumbs .Breadcrumbs a.breadcrumb-1 { }
#Breadcrumbs .Breadcrumbs a.breadcrumb-2 { }

#scroller p { font-weight:300; font-size:24px; color:#020202; line-height:36px; text-align:center;}
#scroller .white, #scroller .light { padding:0px; background-color:#fff;}

#Newssidebar { background:#e8e4e2; border-top:5px solid #000;padding:30px;}

footer {}
footer .top { background-color:#00a5d7; padding:50px 0;}
footer .top .links { width:50%; float:left;}
footer .top .links ul { float:left; width:50%;}
footer .top .links ul li {}
footer .top .links ul li + li { margin-top:5px;}
footer .top .links ul li a { display:inline-block; font-weight:500; font-size:22px; color:#fff; font-family: "proxima-nova",serif;}
footer .top .links ul li a:hover { color:#fce302;}
footer .top .testimonial { padding:35px 0 10px; background:url(../images/coma-top.png) no-repeat left top,url(../images/coma-bot.png) no-repeat right bottom; font-family: "proxima-nova",serif; width:50%; float:right;}
footer .top .testimonial p { font-weight:500; font-size:24px; color:#fff; line-height:36px;padding-right:25px;}
footer .top .testimonial span { display:block; font-weight:900; font-size:18px; padding-top:15px;padding-right:45px;color:#fff;}
footer .bot { background:#222222; padding:20px 0;}
footer .bot .logo { display:inline-block; margin-right:20px;}
footer .bot p { display:inline-block; color:#fff; font-size:16px; padding-top:13px; vertical-align:top;}
footer .bot p span { padding:0 10px;}
footer .bot p a:hover { color:#2dbdb9;}
/** search results **/

.highlight {
    background-color: #519644;
    padding:0 5px;
    color: #fff;
}


/****** FILE: themes/ew2017/css/responsive.css *****/
@charset "utf-8";
/* CSS Document */
@media only screen and (max-width: 1260px) {
	#banner #main-banner .banner-text .block.left { margin:0 40px;}
	#banner #main-banner .banner-text .block.right {margin:0 40px; }
}
@media only screen and (max-width: 1200px) {	

	header .header .logo { width:250px; padding:20px 0 20px;}
	#fsd .left { width:60%;}
}
@media only screen and (max-width: 992px) {	
	#search .left { width:52%;}
	#fsd .left { width:60%;}
	#fsd .left h2 { font-size:40px;}
	#fsd .right { width:38%;}
	#cap .cap-boxes .box { width:47%;}
}
@media (min-width: 901px) {
    header .header .fullnav nav > ul > li:hover > ul { display:block; }	
    nav ul li ul {}
    nav ul li ul li ul {}
    nav { display:block !important;}		
}
@media (max-width: 870px) {
    header .header .logo { width:190px; padding:23px 0 0px 0;}		
}
@media only screen and (max-width: 900px) {
	.container { width:100%; }	
	header .header .fullnav nav ul{ display:block; }
	header .header .servicenav {display:none;}
	header .header .right { padding:0px;}
	.bluecontainer {padding:0px; }
	button.lines-button { display: block; vertical-align:top; padding:25px 0 15px; }	
    button.lines-button { display: block; margin:0 auto; text-align:center;}
	.lines { background: #fce302;}
	.lines-button.open .lines:before,
	.lines-button.open .lines:after { background:#fff;}
	.lines-button.open { position:fixed; top:10px; right:23px; margin:0;}
	button.lines-button span.text {  display:block; font-size:20px; font-weight:700;color: #fff;}
	button.lines-button.open span.text { color:#fff; font-size:32px; margin-top:-27px; display:none;}
	
	
    nav { position:fixed; left:0; top:0; right:0; bottom:0; z-index:99999; display:none; text-align:left;
	background:rgba(0,164,213,0.95);}
    nav > ul { position:absolute; top:50%; left:20px;  min-width:280px; text-align:left; right:20px;
	-webkit-transform:translate(0,-50%);
		-ms-transform:translate(0,-50%);
			transform:translate(0,-50%); }
    nav > ul > li { float:none; width:100%; vertical-align:top;}
	nav > ul > li.submenu::after { display:none;}
    nav > ul > li + li { margin:10px 0 0 0;}
    header .header .fullnav nav > ul > li > a { display:block; padding:5px 9px 5px; font-size:24px; color:#fff; font-family: "proxima-nova",serif; font-weight:400;}
	header .header .fullnav nav > ul > li > a { color:#fff; padding:10px 0; display:inline-block;} 
	header .header .fullnav nav > ul > li + li { margin-top:0;}
    nav > ul > li.submenu > span { width:20px; height:43px; background:url(../images/plus.png) no-repeat 0 center; display:inline-block; cursor:pointer; margin-left:10px; vertical-align:top;}
	header .header .fullnav nav > ul > li > ul { position:relative; width:100%;}
    nav > ul > li.submenu.open > span { background:url(../images/minus.png) no-repeat 0 center; width:21px; height:43px;}

    nav > ul > li:hover > a, nav > ul > li.active > a  {}

    nav ul li ul { width:100%; position:static; background:none; padding:0 20px; margin-top:10px;  border-bottom:none; background:none;
	-webkit-transform:translateX(0); -ms-transform:translateX(0); transform:translateX(0); }
	nav ul li ul:after { display:none;}
    nav ul li ul li { display:block; position:relative; }
    nav ul li ul li a { color:#fff; display:block;}
    nav ul li ul li a:hover { background-color:transparent;}
    nav ul li ul li ul { position:static;}
    nav > ul > li.current > a, nav > ul > li.section > a { color:#ffffff;}
    nav .close { position:absolute; right:20px; top:20px; display:block;}
    nav .close a { color:#fff; font-size:30px; font-weight:700; font-family:Arial, Helvetica, sans-serif;}	
	header .header .right .info { display:none;}
	header .header .logo { width:190px; padding:15px 0;}
	#search .left { display:none;}
	#search .right { float:none; text-align:center; padding:15px 0; }
	#search .right .input-text { display:inline-block; float:none; width:235px;}
	#search .right .btn { display:inline-block; float:none; vertical-align:top;}

	#banner #main-banner .banner-text .block.left { padding:20px;min-height:300px;}
	#banner #main-banner .banner-text .block.right { padding:20px;min-height:300px;}
	#banner #main-banner .banner-text .block .cap { padding-bottom:0; line-height:36px;}
	#banner #main-banner .banner-text .block h2 { padding-bottom:20px; line-height:36px;}
	#banner #main-banner .banner-text .block p { font-size:16px; line-height:25px; padding-bottom:20px;}
	#banner #main-banner .owl-prev { width:20px; height:40px; left:5px;}
	#banner #main-banner .owl-next { width:20px; height:40px; right:5px; }
	#fsd { padding:20px 0;}
	#fsd .left { width:100%;}
	#fsd .left h2 { font-size:40px; padding-bottom:20px; font-size:8vw;}
	#banner #main-banner .banner-text .block h2 { font-size:26px; padding-bottom:15px;}
	#fsd .left p { display:none;} 
	#fsd .right { width:100%; padding:20px;}
	#fsd .right .options { padding:10px 0;}
	#cap { padding:30px 0 20px;}
	#cap .title { font-size:24px;}
	#cap .title span { display:block;}
	#cap .cap-boxes .box .img-detail { padding:15px;}
	#cap .cap-boxes .box .img-detail .block h2 { font-size:26px; line-height:28px; padding-bottom:10px;}
	#cap .cap-boxes .box .img-detail .block p { font-size:16px; padding-bottom:10px;}
	#cap .cap-boxes .box { margin-bottom:20px;}
	#title h1 { font-size:5vw;}
	#scroller p br { display:none;}
	#scroller { padding:30px 0;}
	#team { padding:30px 0;}
	#team .team .box { width:47%;}	
	.agency { padding:30px 0;}
	.panel .column2_3 { width:96%; margin-bottom:20px;}
	.panel .column1_3 { width:96%;}
	.typography img.left { max-width:100%;}
	.typography .caption { padding:0 0 20px;}
	.typography p { font-size:16px; line-height:20px;}
	#community-safety .left { width:100%; margin-bottom:20px;}
	#community-safety .right { width:100%;}
	.white { padding:30px 0;}
	.light { padding:30px 0;}
	#result .result-list .box .cap { float:none;}
	#result .result-list .box .cap-detail { overflow:visible;}
	#result h2 { font-size:26px;}
	footer .top .links { width:100%;}
	footer .top .links ul { width:50%;}
	footer .top .testimonial { width:100%; margin-top:20px;}
	footer .bot .logo { display:block; text-align:center; margin-right:0;}
	footer .bot p { display:block; text-align:center;}
	footer .bot p span { display:block; height:0; opacity:0;}
	footer .top .testimonial p { font-size:20px; line-height:24px;}
	.panel .column2 { width:94%;}
	.panel .column2 + .column2 { margin-top:20px;}
	.light .title { font-size:26px;}
	.typography h1 { font-size:36px; padding-bottom:17px;}
	.typography h2 { font-size:30px; padding-bottom:16px;}
	.typography h3 { font-size:26px; padding-bottom:15px;}
	.typography h4 { font-size:22px; padding-bottom:14px;}
	.typography h5 { font-size:20px; padding-bottom:12px;}
	.typography h6 { font-size:16px; padding-bottom:10px;}
	.panel .column1_2 { width:100%;}
	.panel .column1_2 + .column1_2 { margin-top:20px;}
	#result .result-list .box { padding:20px;}
	#result h2 { padding-bottom:20px;}
	#services .sub-title { font-size:22px;}
	#services .title { font-size:26px;}
	#community-safety .left .title { font-size:26px;}
}
@media only screen and (max-width: 667px) {
}
@media only screen and (max-width: 640px) {
	#banner #main-banner .banner-text .block.left { float:none; margin:0 auto;width:90%;}
	#banner #main-banner .banner-text .block.right { float:none; margin:0 auto;width:90%;}
}
@media only screen and (max-width: 600px) {
	#community-safety .left .changelog { overflow-x:scroll;}
	#community-safety .left .changelog table { width:600px;}
	#result .result-list .box .cap-detail strong { display:block;}
	#result .pagination ul li { padding:0 2px;}
	#title h1 { font-size:10vw;}
}
@media only screen and (max-width: 568px) {
}
@media only screen and (max-width: 480px) {
}
@media only screen and (max-width: 480px) {
	#cap .cap-boxes .box { width:97%;}
	#cap .cap-boxes .box .img-detail .block { min-height:0 !important;}
	#team .team .box { width:97%;}
	#team .team .box .img img { width:100%;} 
	#team .team .box a .img-detail { min-height:0 !important;}
	.agency .list ul { width:100%;}
	.agency h2 { font-size:7vw; padding-bottom:15px;}
	.agency h5 { font-size:16px;}
	#banner #main-banner .banner-text { padding:35px 0; }
	#banner #main-banner .item { min-height: 385px;}
	#banner #main-banner .banner-text .block p { line-height:22px; padding-bottom:28px;}
}
@media only screen (max-device-width: 480px) and (orientation: landscape) {
	nav ul { max-height: 200px; overflow-y:auto;}
}
@media only screen and (max-width: 375px) {
	#banner #main-banner .owl-prev { display:none;}
	#banner #main-banner .owl-next { display:none; }
	#banner #main-banner .item { min-height: 400px;}
}
@media only screen and (max-width: 360px) {
}
@media only screen and (max-width: 320px) {
}

