/*! HTML5 Boilerplate v4.3.0 | MIT License | http://h5bp.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html,
button,
input,
select,
textarea {
    color: #222;
}

html {
    font-size: 1em;
    line-height: 1.4;
}

input.text,
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="button"],
input[type="submit"],
.input-checkbox, textarea, select {
-webkit-appearance: none;

}

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between images, videos, audio and canvas and the bottom of
 * their containers: h5bp.com/i/440
 */

audio,
canvas,
img,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Browse Happy prompt
   ========================================================================== */

.browsehappy {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles - GK 3/2015 autocreditexpress.com
   ========================================================================== */
 @keyframes cssAnimation {
    from { transform: translateY(0px); }
    to { transform: translateY(100px); }
    }
    @-webkit-keyframes cssAnimation {
    from { -webkit-transform: translateY(0px); }
    to { -webkit-transform: translateY(100px); }
    }
    @-moz-keyframes cssAnimation {
    from { -moz-transform: translateY(0px); }
    to { -moz-transform: translateY(100px); }
    }
    @-o-keyframes cssAnimation {
    from { -o-transform: translateY(0px); }
    to { -o-transform: translateY(100px); }  
    }


@keyframes cssAnimation_md {
    from { transform:  translateY(0px); }
    to { transform:   translateY(120px); }
    }
    @-webkit-keyframes cssAnimation_md {
    from { -webkit-transform:  translateY(0px); }
    to { -webkit-transform:   translateY(120px); }
    }
    @-moz-keyframes cssAnimation_md {
    from { -moz-transform:    translateY(0px); }
    to { -moz-transform:   translateY(120px); }
    }
    @-o-keyframes cssAnimation_md {
    from { -o-transform:    translateY(0px); }
    to { -o-transform:    translateY(120px); }  
    }

@keyframes cssAnimation_sm {
    from { transform:  translateY(0px); }
    to { transform:   translateY(160px); }
    }
    @-webkit-keyframes cssAnimation_sm {
    from { -webkit-transform:  translateY(0px); }
    to { -webkit-transform:   translateY(160px); }
    }
    @-moz-keyframes cssAnimation_sm {
    from { -moz-transform:    translateY(0px); }
    to { -moz-transform:   translateY(160px); }
    }
    @-o-keyframes cssAnimation_sm {
    from { -o-transform:    translateY(0px); }
    to { -o-transform:    translateY(160px); }  
    }




body {font-family: 'Karla', sans-serif; 
      position: relative;
        top: -100px;
}

body.slideup {
	top:0;
}

.slidedown {
       
    -webkit-animation: cssAnimation 1s;
    -moz-animation: cssAnimation 1s;
    -o-animation: cssAnimation 1s;
    animation: cssAnimation 1s;
    animation-name: cssAnimation;
    animation-duration: 2s;
    -webkit-animation-delay: 2s; /* Chrome, Safari, Opera */
    animation-delay: 2s;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
     animation-fill-mode: forwards;
}

   

h1 {
	font-family: 'Montserrat', sans-serif;
	font-size: 60px;
	line-height: 1;
	color: #385571;
	margin: 0
}

h1 span{display: block; color: #000}

h2 {
	font-family: 'Karla', sans-serif;
	font-size: 36px;
	line-height: 1;
	color: #000;
	font-weight: 400;
}

h3 {
	font-family: 'Montserrat', sans-serif;
	font-size: 30px;
	line-height: 1;
	color: #385571;
	margin: 4% 0 2%;
}

h4 {
	font-family: 'Montserrat', sans-serif;
	font-size: 24px;
	line-height: 1.2;
	color: #385571;
	margin:0;
}

h4 span{
	color: #000;
}

p{
	font-family: 'Karla', sans-serif;
	font-size: 14px;
	line-height: 2;
	color: #000;
	margin: 2% 0 20px;
}


/* --------- nav ------------*/

.homeicon {
    width: 15px;
    top: -2px;
    position: relative;
}

/* --------- modal ------------*/


.modalDialog {
	position: fixed;
	font-family: 'Karla', sans-serif;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
	z-index: 999;
	opacity:0;
	-webkit-transition: opacity 400ms ease-in;
	-moz-transition: opacity 400ms ease-in;
	transition: opacity 400ms ease-in;
	pointer-events: none;
}


.modalDialog:target {
	opacity:1;
	pointer-events: auto;
}

.modalDialog > div {
	width: 80%;
	position: relative;
	margin: 5% auto;
	padding: 5px 20px 13px 20px;
	border-radius: 10px;
	background: #fff;
	z-index: 999;
}

.close {
	font-family: 'Karla', sans-serif;
	background: #ff0000;
	border: 2px solid #000;
	color: #FFFFFF;
	line-height: 25px;
	position: absolute;
	right: -12px;
	text-align: center;
	top: -10px;
	width: 24px;
	text-decoration: none;
	font-size: 12px;
	font-weight: bold;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	-moz-box-shadow: 1px 1px 3px #000;
	-webkit-box-shadow: 1px 1px 3px #000;
	box-shadow: 1px 1px 3px #000;
}

.close:hover { background: #346a98; }






/* --------- columns ------------*/

.row {
	width: 100%;
	display: block;
	font-size: 0;
	margin: 5% 0;
	position: relative;
	z-index:800;
	opacity:0;
}

.toprow {
	width: 100%;
	display: block;
	font-size: 0;
	background: #0d4b7f; 
   
}

.toprowm {
	width: 100%;
	display: block;
	font-size: 0;
	background-image: url("/www/Images/Info/mainimage8.jpg");
	background-repeat: no-repeat;
	background-position: top left;
}

.toprowim {
	width: 100%;
	display: block;
	font-size: 0;
	background-image: url("/www/Images/Info/mainimage9.jpg");
	background-repeat: no-repeat;
	background-position: top left;
}

.toprowsd {
	width: 100%;
	display: block;
	font-size: 0;
	background-image: url("/www/Images/Info/mainimage10.jpg");
	background-repeat: no-repeat;
	background-position: top left;
}

.toprowlm {
	width: 100%;
	display: block;
	font-size: 0;
	background-image: url("/www/Images/Info/mainimage11.jpg");
	background-repeat: no-repeat;
	background-position: top left;
}

.toprowbk {
	width: 100%;
	display: block;
	font-size: 0;
	background-image: url("/www/Images/Info/mainimage12.jpg");
	background-repeat: no-repeat;
	background-position: top left;
}

.toprowct {
	width: 100%;
	display: block;
	font-size: 0;
	background-image: url("/www/Images/Info/mainimage13.jpg");
	background-repeat: no-repeat;
	background-position: top left;
    
    
}


.bluerow {
	width: 100%;
	display: block;
	font-size: 0;
	background: #385571; 
	margin: 5% 0 0 0;
	text-align:center;
	z-index:700;
	position: relative;
	padding: 4% 0;
	opacity:0;
}

.bluerow h2{
	font-family: 'Montserrat', sans-serif;
	font-size: 40px;
	font-weight: 400;
	color: #fff;
	display: inline-block;
}

.bluerow h2 span{
	color: #dcdcdc;
	display: inline-block;
}

.toprow:after {
	content:'';
    position: fixed;
    height: 100%;
    width: 70%;
    left: 30%;
	top:0;
    background: #fff;
	z-index: 2;
}

.container {
	width: 80%;
	margin: 0 auto;
	display: block;
	max-width: 1280px;
	z-index:800;
	position: relative;
}

.container.navbar {
	width: 100%;
	background: #0d4b7f; 
	background-image: url("/www/Images/Info/header.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	max-width: none;
}

.navbar a {
	color: #fff;
	text-decoration: none;
	padding: 0 3% 0 0;
	font-family: "Montserrat",sans-serif;
	
}

.navbar p {
	font-size: 14px;
    line-height: 2;
    margin: 2% 0;
}

nav ul {padding: 0; margin: 0}

nav ul li {
	display: inline;
	vertical-align: middle;
}

nav li a {
	border: medium none;
    color: #fff;
    font-family: "Montserrat",sans-serif;
    display: inline-block;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    margin: 0;
    text-decoration: none;
    width: 12%;
    transition: background-color 0.25s ease 0s;
    vertical-align: middle;
    display: inline-block;
	padding: 2%;
	text-align: center;
	min-height: 35px;
}

nav li a:hover {
	background: #0f81c0; 
	text-decoration: none;
	vertical-align: middle;
}

header {padding: 0 0 2% 0;}

header .logo {width: 40%; padding: 1% 0 0 10%}

.mainpage{
	background-image: url("/www/Images/Info/mainimage.png");
	background-position: bottom left;
	background-size: contain;
	background-repeat: no-repeat;
	z-index: 800
}

.secondary {
	background-image: none;
}

.desking {
	background-image: none;
}

.lmt {
	background-image: none;
}

.bk {
	background-image: none;
}


.contact {
	background-image: none;
}

.contactform {margin: 0 auto 10%}

footer {
	background-image: url("/www/Images/Info/footerback.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: 700;
	position: relative;
	font-size: 0;
	padding: 7% 0 0 0;
}

footer h2{
	font-family: 'Montserrat', sans-serif;
	font-size: 40px;
	font-weight: 400;
	color: #385571;
	display: inline-block;
	margin: 0;
}

footer h2 span{
	color: #000;
	display: inline-block;
}

footer .logo {width: 65%; margin: 0 auto }
footer .sublogo {width: 30%}

.bottomrow {
	width: 100%;
	display: block;
	font-size: 0;
	background: #385571; 
	min-height: 300px;
	position: relative;
	z-index: 2;
}

.footernav{
	margin: 5% 0 0 0;
}

.footernav p {text-align: center; margin: 0; font-size: 12px; line-height: 1.5}

.bottomnav {
    display: inline-block;
    list-style: outside none none;
    padding: 0;
    vertical-align: top;
    width: auto;
	position: relative;
	z-index: 1;
	font-size: 12px;
}

.bottomnav li {
    display: inline;
    vertical-align: top;
}

.bottomnav a {
    color: #fff;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    margin: 0 10px 15px 0;
    text-decoration: none;
    width: 160px;
	text-align: center;
    padding: 10px;
    border: 1px solid;
    border-radius: 10px;
}

.disclaimer {color: #fff}

.disclaimer span {display: inline-block}

footer .footdisclaim {vertical-align: middle; margin: 0 0 2% 0}

footer .middle {vertical-align: middle}

.blue {
	background: #385571; 
	min-height: 100px;
	height: 100%;
	padding: 30px 0 0 0;
}


.bluefoot {
	background: #385571; 
	height: 100%;
	padding:2% 0 2% 0;
    vertical-align: middle;
    text-align: center;
}

.dropdown {
    width: 96%;
    z-index: 999;
    background-color: #e2e2e2;
    height: 100px;
    position: relative;
    top: -100px;
    display: block;
    font-size: 0;
   vertical-align: middle;
    padding: 0 2% 0;
    margin: 0 auto;
}

.dropdown p {
    margin: 10px 0 0 0;
    line-height: 1;
}

.dropdown .c40 {
    vertical-align: middle;
}

.dropdown .c20 {
    vertical-align: bottom;
}

.dropdown p>span{
    text-align: right;
}

.dropdown .moved {
    font-size:34px;  
    margin: 10px 0 0 0;
    font-family: 'Montserrat', sans-serif; 
    font-weight: 700;
}

.loginpic {max-width: 540px; vertical-align: bottom}

.c100 { 
	margin: 0; 
	width: 100%;
	display: block;
	vertical-align: top;
}

.c90 { 
	margin: 0; 
	width: 90%;
	display: block;
	vertical-align: top;
}

.c80 { 
	margin: 0 auto; 
	width: 80%;
	display: inline-block;
	vertical-align: top;
}

.c70 { 
	margin: 0 auto; 
	width: 70%;
	display: inline-block;
	vertical-align: top;
}

.c50:only-of-type{
	width: 50%;
	display: block;
}

.c50{
	width: 46%;
	margin: 0 2% 0 2%;
	display: inline-block;
	vertical-align: top;
}

.c50 ~ .c50{
	width: 46%;
	margin: 0 2% 0 2%;
}

.c33{
	width: 32%;
	display: inline-block;
	vertical-align: top;
	margin: 0 2% 0 0;
}

.c33 ~ .c33 ~ .c33{
	width: 32%;
	margin:0;
}

.c33 ~ .c66{
	width: 66%;
	display: inline-block;
	margin: 0;
}

.c66 ~ .c33{
	width: 32%;
	margin: 0;
}

.c66{
	width: 66%;
	display: inline-block;
	vertical-align: top;
	margin: 0 2% 0 0;
}

.c60{
	width: 60%;
	display: inline-block;
	vertical-align: top;
}

.c40{
	width: 40%;
	vertical-align: top;
	display: inline-block;
	
}

.c30{
	width: 30%;
	display: inline-block;
	vertical-align: top;
	min-height: 50px;
}

.c25{
	width: 25%;
	display: inline-block;
	vertical-align: top;
	min-height: 100px;
}

.c75{
	width: 75%;
	display: inline-block;
	vertical-align: top;
	min-height: 100px;
}

.c20{
	width: 20%;
	display: inline-block;
	vertical-align: top;	
	
}
.c10{
	width: 10%;
	display: inline-block;
	vertical-align: top;
}

.bottom {vertical-align: bottom;}

.push70 {margin-left: 70%}
.push60 {margin-left: 60%}
.push50 {margin-left: 50%}
.push40 {margin-left: 40%}
.push30 {margin-left: 30%}
.push25 {margin-left: 25%}
.push20 {margin-left: 20%}
.push10 {margin-left: 10%}
.push5 {margin-left: 5%}

.padding2 {padding: 2%}
.padding5 {padding: 5%}
.padding10 {padding:10%}
.padding25 {padding: 2% 5%}

.i100 {width: 100%; display: inline-block}
.i80 {width: 80%; display: inline-block}
.i60 {width: 60%; display: inline-block}
.i50 {width: 50%; display: inline-block}
.i40 {width: 40%; display: inline-block}
.i30 {width: 30%; display: inline-block}

#button {opacity:0;}

.btn {
	transition: background-color 0.25s ease;
	width: 60%;
	background: #385571; 
	color: #fff;
	font-weight: 700;
	font-size: 24px;
	line-height: 18px;
	border: none;
	padding: 25px;
	text-align: center;
	margin: 4% 0;
	display: block;
	text-decoration: none;
	vertical-align: middle;
	font-family: 'Montserrat', sans-serif;
	border-radius: 5px;
	
}



.cta {
	width: 80%;
	padding: 8% 10%;
	margin: 0
}

.login {
	font-size: 12px;
	width: 20%;
	margin: 0;
	font-weight: 400;
	display: inline;
}


.btn:hover {
	background: #063d5c; 
	text-decoration: none;
	vertical-align: middle;
}


.bottomnav li .active {
	color: #fff;
	background-color: #01355d; 
	text-decoration: none;
	vertical-align: middle;
	font-weight: 400;
   
}

#submit {-webkit-appearance: none;}

.right {text-align: right}
.center {text-align: center}

.margintop10 {margin-top: 10%}
.marginbottom10 {margin-bottom: 10%}
.marginbottom20 {margin-bottom: 20%}
.marginbottom30 {margin-bottom: 30%}
.marginmiddle {margin: 0 auto}

.nominheight {
	min-height: 0;
}


.dispdesk {visibility: visible; display: inline-block}
.dispmobile {visibility: hidden; display: none}
.dispdesk320 {visibility: visible; display: inline-block}
.dispmobile320 {visibility: hidden; display: none}


form label {
    cursor: pointer;
    display: block;
    font-size: 1rem;
    line-height: 1.625em;
    margin: 2% 0 1%;
}

.field .input {
    background: none repeat scroll 0 0 #fff;
    border: 1px solid #7b7b7b;
    border-radius: 4px;
    font-size: 1rem;
    height: 36px;
    line-height: 34px;
    padding: 0 10px;
    position: relative;
	width: 90%;
	
}

.field .xnarrow {
    width: 13.3333%;
	margin: 0 2% 0 0
}

.field .narrow {
    width: 30.6667%;
}

form textarea {
    height: 150px;
}


element.style {
    width: 100%;
}
form textarea {
    height: 150px;
}

textarea {
    border: 1px solid #7b7b7b;
    cursor: text;
    letter-spacing: normal;
    margin: 1px 0;
    padding: 0 1px;
    resize: both;
    text-align: start;
    text-indent: 0;
    text-rendering: optimizelegibility;
    text-shadow: none;
    text-transform: none;
    vertical-align: text-bottom;
    word-spacing: normal;
    word-wrap: break-word;
	width: 93%;
	font-size:16px;
}

.centered {margin: 4% auto}

.byline {
    display: block;
    font-weight: 600;
    font-style: italic;
}

.datapartner {width: 10%}

.footerlogo {margin: 0 auto; display: block; width: 40%}

/* ==========================================================================
   backgrounds
   ========================================================================== */





/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Image replacement
 */

.ir {
    background-color: transparent;
    border: 0;
    overflow: hidden;
    /* IE 6/7 fallback */
    *text-indent: -9999px;
}

.ir:before {
    content: "";
    display: block;
    width: 0;
    height: 150%;
}

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */

.hidden {
    display: none !important;
    visibility: hidden;
}

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*
 * Hide visually and from screenreaders, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */

.clearfix {
    *zoom: 1;
}



/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
       (-o-min-device-pixel-ratio: 5/4),
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */

@media print {
    * {
        background: transparent !important;
        color: #000 !important; /* Black prints faster: h5bp.com/s */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links for images, or javascript/internal links
     */

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group; /* h5bp.com/t */
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}


@media only screen and (max-width: 1500px) {
	header .logo { padding: 2% 0 0 10%;}
}

@media only screen and (max-width: 1200px) {
	header .logo { padding: 3% 0 0 10%;}
}


@media only screen and (max-width: 1070px) {
    .dropdown .moved {font-size: 28px;}
}


@media only screen and (max-width: 1050px) {
	h1 {font-size: 50px; margin: 1% 0}
	h2 {font-size: 30px; margin: 1% 0 2%}
	header .logo { padding: 4% 0 0 10%;}
}

@media only screen and (max-width: 900px) {
	.container {width: 90%}
	nav li a {
		min-height: 0; 
		width: 43%; 
		padding: 1% 2%;
		line-height: 14px;
		margin: 1%;
	}
	
 }

@media only screen and (max-width: 850px) {
	h1 {font-size: 40px; margin: 1% 0}
	h2 {font-size: 24px; margin: 1% 0 2%}
	h3 {font-size: 24px; margin: 4% 0 1%}
	p {line-height: 1.5}
	header .logo { padding: 5% 0 0 10%;}
}

@media only screen and (max-width: 785px) {
	header .logo { padding: 3% 0 0 20%; width: 50%; }
	.dropdown .moved {font-size: 22px;}
}

@media only screen and (max-width: 715px) {
    .bottomnav a {width: 80%}
}

@media only screen and (max-width: 680px) {
	.dispdesk {visibility: hidden; display: none}
	.dispmobile {visibility: visible; display: block}
	.btn {padding: 15px; font-size: 18px}
	.login {font-size: 12px; padding: 10px}
	.container {width: 95%}
	form ul {padding: 0}
    footer .logo {width: 40%}
}


@media only screen and (max-width: 650px) {
    
    .slidedown {
    -webkit-animation: cssAnimation_md 1s;
    -moz-animation: cssAnimation_md 1s;
    -o-animation: cssAnimation_md 1s;
    animation: cssAnimation_md 1s;
    animation-name: cssAnimation_md;
    animation-duration: 2s;
    -webkit-animation-delay: 2s; /* Chrome, Safari, Opera */
    animation-delay: 2s;
        -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
     animation-fill-mode: forwards;
    }
    
    body {top: -120px;}
    .dropdown {top: -120px; height: 120px}
    .dropdown .moved { font-size: 20px; }
    
    
}

@media only screen and (max-width: 600px) {
	.bluerow h2 {font-size: 30px}
	footer h2 {font-size: 30px}
	footer .logo {width: 40%}
    footer .sublogo {width: 80%}
	header .logo {width: 60%}
	.mainpage {background-size: 40%}
	.desking .c50.push50 {margin-left: 30%; width: 70%}
	.secondary .c50.push50 {margin-left: 30%; width: 70%}
	.lmt .c50.push50 {margin-left: 30%; width: 70%}
	.bk .c50.push50 {margin-left: 30%; width: 70%}
	h3 {font-size: 18px}
	h1 {font-size: 36px;}
	nav li a {
		width: 90%; 
		padding: 1% 2%;
		margin: 1%;
	}
	p {font-size: 12px}
	.secondary, .desking, .lmt, .bk { background-image: none; }
}

@media only screen and (max-width: 500px) {
	h1 {font-size: 30px;}
	h2 {font-size: 20px;}
	header .logo { padding: 10px 0 0 10%; width: 90%; }
	.datapartner {width: 25%}
}

@media only screen and (max-width: 450px) {
	header .c33 {width: 32%}
	header .c66 {width: 66%}
	footer .c33 {width: 32%}
	.c50 {width: 96%; margin: 2%}
	.c33 {width: 100%}
	.c33 ~ .c33 ~ .c33 {width: 100%}
	.c50 ~ .c50 {width: 96%; margin: 2%}
	.dispmobile320 {visibility: visible; display: inline-block}
	.dispdesk320 {visibility: hidden; display: none}
	.bottomnav a {margin: 5px 0; width: 80%}
	.blue {min-height: 130px;}
	.bluerow h2 {font-size: 24px}
	footer h2 {font-size: 24px}
	.cta {padding: 5%; font-size: 14px}
	.c50.push50 {margin-left: 40%; width: 60%}
    .c50:only-of-type {width: 100%; margin: 0}
    
    .slidedown {
    -webkit-animation: cssAnimation_sm 1s;
    -moz-animation: cssAnimation_sm 1s;
    -o-animation: cssAnimation_sm 1s;
    animation: cssAnimation_sm 1s;
    animation-name: cssAnimation_sm;
    animation-duration: 2s;
    -webkit-animation-delay: 2s; /* Chrome, Safari, Opera */
    animation-delay: 2s;
        -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
     animation-fill-mode: forwards;
    }
    
    
    body {top: -160px;}
    .dropdown {top: -160px; height: 160px}
    .dropdown .moved { font-size: 20px; }
    
    
}

@media only screen and (max-width: 400px) {
	.mainpage { background-size: 30% auto; }
	.push30 { margin-left: 25%; }
	h1 {font-size: 26px;}
	h2 {font-size: 18px;}
	.bluerow h2 { font-size: 18px; }
	footer h2 {font-size: 20px}
	.bottomnav a {margin: 5px auto; width: 100%; font-size: 12px; padding: 10px 0}
	.footernav p {display: block; font-size: 11px}
	.toprow:after {width: 75%; left: 25%}
	header .logo { width: 100%; }
	header .c33 { width: 28%; }
	.desking .c50.push50 {margin-left: 25%; width: 70%}
	.secondary .c50.push50 {margin-left: 25%; width: 70%}
	.lmt .c50.push50 {margin-left: 25%; width: 70%}
	.bk .c50.push50 {margin-left: 25%; width: 70%}
	.toprowm .c50.push50 {margin-left: 35%; width: 60%}
}

@media only screen and (max-width: 320px) {
}