/*------------------------------------------------------------------------

        Name: Full Width Slider 2.0
        Design and Develpment: eightyclouds
        Author URI: http://www.eightyclouds.com
        Version: 1.0

--------------------------------------------------------------------------

   01. CSS Reset
   02. Slider Styles
   03. Media Query Max Width 1300, Min Width 720
   04. Media Query Max Width 719
   
*/

/* ------------------------------- 1. Resets ------------------------------- */


body { line-height: 1; }

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { display: block; }

nav ul {list-style: none;}

blockquote, q { quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after { content: ''; content: none; }

a { margin: 0; padding: 0; font-size: 100%; vertical-align: baseline; background: transparent; }

abbr[title], dfn[title] { border-bottom: 1px dotted; cursor: help; }

table { border-collapse: collapse; border-spacing: 0; }

input, select { vertical-align: middle; }

img {max-width:100%;}

/* ------------------------------- 2. Header Styles ------------------------------- */

#header {
	width:100%;
	height:100px;
	position:absolute;
	top:0;
	left:0;
	z-index:11;
	background: -moz-linear-gradient(left, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.9) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(255,255,255,0.9)), color-stop(100%,rgba(255,255,255,0.9))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(left, rgba(255,255,255,0.9) 0%,rgba(255,255,255,0.9) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(left, rgba(255,255,255,0.9) 0%,rgba(255,255,255,0.9) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(left, rgba(255,255,255,0.9) 0%,rgba(255,255,255,0.9) 100%); /* IE10+ */
background: linear-gradient(to right, rgba(255,255,255,0.9) 0%,rgba(255,255,255,0.9) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6ffffff', endColorstr='#e6ffffff',GradientType=1 ); /* IE6-9 */
-webkit-box-shadow: 0px 2px 30px rgba(50, 50, 50, 0.75);
-moz-box-shadow:    0px 2px 30px rgba(50, 50, 50, 0.75);
box-shadow:         0px 2px 30px rgba(50, 50, 50, 0.75);
}
.header_box {
	width:90%;
	height:100%;
	margin:0 5%;
}
.logo {
	width:80px;
	margin-top:20px;
	margin-left:2.5%;
}

.nav_main {
	position:relative;
	margin-left:30px;	
}
.nav_main right {

}
.menu_ul_mainnav {
	text-align: right;
}
.nav_main ul {
	
}
.nav_main li {
	padding-top: 40px;
	padding-bottom:21px;
	list-style: none;
	display: inline-block;
}
.nav_main a {
	padding-left: 18px;
	padding-right: 18px;
	height: 100%;
	font-family:Arial, Helvetica, sans-serif;
	background-position: left;
	background-repeat: no-repeat;
	font-size: .9em;
	font-weight:bold;
	text-decoration: none;
	color: #0168b3;
	line-height: 100%;
}
.nav_main active {

}
.nav_main #active {
	border-top:solid #8dc33d 4px;
}
.nav_main #active a {
	color:#8dc33d;
	padding-left: 0;
}
.nav_main a.first {
	margin-left: 28px;
}
.first {
margin-left: 28px;
}
.next {
}
#contact_us p {
	font-size: 11px;
	margin-top: 12px;
	color:#999999;
}
.search {
	position:relative;
	margin-top:4px;
}
#siteSearchSubmit {
	width:24px;
	height:23px;
	background:url("../images/search-icon.jpg") no-repeat center center;
	border-radius:0px;
}
button, input[type="reset"], input[type="submit"], input[type="button"], .btnLink {
	-webkit-appearance: none;
-moz-border-radius: 0px;
-webkit-border-radius: 0px;
-moz-background-clip: padding;
-webkit-background-clip: padding;
background-clip: padding-box;
border-radius: 0px;
background: #0168b3;
border: 1px solid;
border-color: #0168b3;
cursor: pointer;
color: #FFFFFF;
font: bold 12px/1.2 Arial, sans-serif;
outline: 0;
overflow: visible;
padding: 3px 10px 4px;
text-shadow: 0px 0px 0px #fff;
width: auto;
}
textarea, select, input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="email"], input[type="month"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="time"], input[type="url"], input[type="week"] {
-webkit-appearance: none;
-moz-border-radius: 0px;
-webkit-border-radius: 0px;
border-radius: 0px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-moz-background-clip: padding;
-webkit-background-clip: padding;
background-clip: padding-box;
background-color: #fff;
border: 1px solid;
border-color: #848484 #c1c1c1 #e1e1e1;
color: #000;
outline: 0;
padding: 2px 3px;
font-size: 13px;
font-family: Arial, sans-serif;
height: 1.8em;
margin-top: 5px;
}

/* ------------------------------- 3. Slider Styles ------------------------------- */

.wrapper_blue {
	width:100%;
	background: rgb(0,77,131); /* Old browsers */
background: -moz-linear-gradient(left, rgba(0,77,131,1) 0%, rgba(1,104,179,1) 20%, rgba(1,104,179,1) 80%, rgba(0,77,131,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(0,77,131,1)), color-stop(20%,rgba(1,104,179,1)), color-stop(80%,rgba(1,104,179,1)), color-stop(100%,rgba(0,77,131,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(left, rgba(0,77,131,1) 0%,rgba(1,104,179,1) 20%,rgba(1,104,179,1) 80%,rgba(0,77,131,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(left, rgba(0,77,131,1) 0%,rgba(1,104,179,1) 20%,rgba(1,104,179,1) 80%,rgba(0,77,131,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(left, rgba(0,77,131,1) 0%,rgba(1,104,179,1) 20%,rgba(1,104,179,1) 80%,rgba(0,77,131,1) 100%); /* IE10+ */
background: linear-gradient(to right, rgba(0,77,131,1) 0%,rgba(1,104,179,1) 20%,rgba(1,104,179,1) 80%,rgba(0,77,131,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#004d83', endColorstr='#004d83',GradientType=1 ); /* IE6-9 */
}
#fwslider {
    position: relative;
    background:#000;
    width:90%;
	margin:80px 5% 0 5%;
}

#fwslider .slider_container {
}

#fwslider .slide {
    display: none;
    position: absolute;
    top:0;
    left:0;
    z-index: 0;
    width:100%;
}

#fwslider .slide img {
    width:100%;
}

#fwslider .slidePrev {
    background:#000;
    width:22px;
    height:40%;
    position: absolute;
    top:30%;
    left:-22px;
    opacity:0.5;
    z-index: 10;
}

#fwslider .slidePrev span {
    background-image:url("../images/left_arrow.png");
    width:20px;
    height:100%;
    float:left;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    cursor: pointer;
}

#fwslider .slideNext {
    background:#000;
    width:22px;
    height:40%;
    position: absolute;
    top:30%;
    right:-22px;
    opacity:0.5;
    z-index: 10;
}

#fwslider .slideNext span {
    background-image:url("../images/right_arrow.png");
    width:20px;
    height:100%;
    float:right;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    cursor: pointer;
}

#fwslider .timers {
    height:4px;
	width:100%;
    position: absolute;
    bottom:0px;
    right:0;
    z-index: 3;
}

#fwslider .timer {
    height:4px;
    width:33.33%;
    background-color: #cbcbcb;
    float:left;
    margin-right:0px;
}

#fwslider .progress {
    height:4px;
    width:0%;
    background-color: #0168b3;
    float:left;
}

#fwslider .slide_content {
    top:0;
    left:0;
    position: absolute;
    width:100%;
    height:100%;
}

#fwslider .slide_content_wrap { /* Slider Text Content Container Style */
    max-width:1000px;
	margin-right:15%;
    margin-top:10%;
}

#fwslider .title {  /* Slider Title Style */
    color:#fff;     
    font-size:36px;
	transform:scale(1,1.1); /* W3C */
    -webkit-transform:scale(1,1.1); /* Safari and Chrome */
    -moz-transform:scale(1,1.1); /* Firefox */
    -ms-transform:scale(1,1.1); /* IE 9 */
    -o-transform:scale(1,1.1); /* Opera */
    background: -moz-linear-gradient(top, rgba(41,94,128,0.5) 0%, rgba(41,94,128,0.5) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(41,94,128,0.5)), color-stop(100%,rgba(41,94,128,0.5))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(41,94,128,0.5) 0%,rgba(41,94,128,0.5) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(41,94,128,0.5) 0%,rgba(41,94,128,0.5) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(41,94,128,0.5) 0%,rgba(41,94,128,0.5) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(41,94,128,0.5) 0%,rgba(41,94,128,0.5) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#80295e80', endColorstr='#80295e80',GradientType=0 ); /* IE6-9 */
	opacity: 0.5;
    padding:10px 16px;
    float:left;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
	margin-bottom:.25%;
}

#fwslider .description { /* Slider Description Style */
    opacity: 0;
    color:#FFF;
    font-size:28px;
    background:;
    padding:0px;
    clear:both;
    float:left;
    margin-top:20px;
    line-height:24px;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
	display:none;
}


.dark { /* Slider Description Style */
    color:#353535;
}

#fwslider .readmore { /* Slider Read More button Style */
    opacity: 0;
    clear:both;
    float:left;
    text-transform:uppercase;
    font-size:14px;
    color:#FFF;
	border:1px solid #fc5f5a;
	border-bottom:1px solid #b33b3c;
	-webkit-border-radius: 6px;
        border-radius: 6px;
    background: rgb(217,52,48); /* Old browsers */
background: -moz-linear-gradient(left, rgba(217,52,48,1) 0%, rgba(255,59,51,1) 50%, rgba(217,52,48,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(217,52,48,1)), color-stop(50%,rgba(255,59,51,1)), color-stop(100%,rgba(217,52,48,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(left, rgba(217,52,48,1) 0%,rgba(255,59,51,1) 50%,rgba(217,52,48,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(left, rgba(217,52,48,1) 0%,rgba(255,59,51,1) 50%,rgba(217,52,48,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(left, rgba(217,52,48,1) 0%,rgba(255,59,51,1) 50%,rgba(217,52,48,1) 100%); /* IE10+ */
background: linear-gradient(to right, rgba(217,52,48,1) 0%,rgba(255,59,51,1) 50%,rgba(217,52,48,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d93430', endColorstr='#d93430',GradientType=1 ); /* IE6-9 */
    padding:10px 30px;
    text-decoration: none;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: bold;
}

#fwslider .readmore:hover {
	border:1px solid #fc5f5a;
	border-top:1px solid #830502;
	-webkit-border-radius: 6px;
        border-radius: 6px;
    background: #be1713; /* Old browsers */
background: -moz-linear-gradient(left, #be1713 0%, #9e0b0f 50%, #be1713 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, right top, color-stop(0%,#be1713), color-stop(50%,#9e0b0f), color-stop(100%,#be1713)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(left, #be1713 0%,#9e0b0f 50%,#be1713 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(left, #be1713 0%,#9e0b0f 50%,#be1713 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(left, #be1713 0%,#9e0b0f 50%,#be1713 100%); /* IE10+ */
background: linear-gradient(to right, #be1713 0%,#9e0b0f 50%,#be1713 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#be1713', endColorstr='#be1713',GradientType=1 ); /* IE6-9 */
    padding:10px 30px;
    text-decoration: none;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: bold;
}
/*---------------------------- END SLIDER STYLES ---------------------------*/

/*---------------------------- HOMEPAGE STYLES -----------------------------*/
#big_buttons {
	height:74px;
	width:85%;
	margin:0 7.5%;
	background: #2d2d2d; /* Old browsers */
background: -moz-linear-gradient(left, #2d2d2d 0%, #414141 50%, #2d2d2d 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, right top, color-stop(0%,#2d2d2d), color-stop(50%,#414141), color-stop(100%,#2d2d2d)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(left, #2d2d2d 0%,#414141 50%,#2d2d2d 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(left, #2d2d2d 0%,#414141 50%,#2d2d2d 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(left, #2d2d2d 0%,#414141 50%,#2d2d2d 100%); /* IE10+ */
background: linear-gradient(to right, #2d2d2d 0%,#414141 50%,#2d2d2d 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2d2d2d', endColorstr='#2d2d2d',GradientType=1 ); /* IE6-9 */
}

.box_buttons {
	height:100%;
	width:33%;
	margin-right:.5%;
	background:black;
}
.content h1 {
	margin:0;
}

.lastButton {
	margin-right:0px;
}

.footer {
    width:100%;
    float:left;
    text-align:center;
}

.footer p {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size:12px;
    margin-top:20px;
}
/* Flexible iFrame */

.Flexible-container {
    position: relative;
    padding-bottom: 28%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.Flexible-container iframe,   
.Flexible-container object,  
.Flexible-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
tbody td {
	padding-bottom:6px;
}
b {
	line-height:140%;
}
.greyBucket a {
	height:100%;
	width:100%;
}
.greyBucket a p {
	font-weight:normal;
}
#header .mobile {
	visibility:hidden;
}
.dropdown 
{
color: #555;
margin: 3px 0 0 0;
width: 124px;
position: relative;
height: 17px;
text-align:left;
}
.submenu
{
background: #fff;
position: absolute;
top: -4px;
left: -20px;
z-index: 100;
width: 135px;
display: none;
margin-left: 10px;
padding: 40px 0 5px;
border-radius: 6px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}
.dropdown li {
	list-style:none;
}
.dropdown li a 
{
color: #555555;
display: block;
font-family: Helvetica, sans-serif;
font-size:1em;
font-weight: bold;
padding: 6px 15px;
cursor: pointer;
text-decoration:none;
text-transform:uppercase;
}

.dropdown li a:hover
{
background:#d0d0d0;
color: #FFFFFF;
text-decoration: none;
}
a.account 
{
font-size: 11px;
line-height: 16px;
color: #d0d0d0;
position: absolute;
z-index: 110;
display: block;
padding: 10px 0 0 75px;
height: 28px;
margin: -11px 0 0 0px;
text-decoration: none;
cursor:pointer;
	font-size:36px;
	line-height:1em;
	font-weight:bold;
}
a.account img {
	width:40px;
	max-width:40px;
	ma
}
.root
{
list-style:none;
margin:0px;
padding:0px;
font-size: 11px;
padding: 11px 0 0 0px;
border-top:1px solid #dedede;
}
input[type="text"] {
	width:60%;
	min-width:140px;
	max-width:340px;
}
input#email.req-email {
min-width: 183px;
max-width: 183px;
}
.redText {
	color:#F00;	
}
#menu_ul_mainnav li:hover{
background: rgb(237,237,237);
background: -moz-linear-gradient(top, rgba(237,237,237,1) 1%, rgba(250,250,250,1) 16%, rgba(250,250,250,1) 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,rgba(237,237,237,1)), color-stop(16%,rgba(250,250,250,1)), color-stop(100%,rgba(250,250,250,1)));
background: -webkit-linear-gradient(top, rgba(237,237,237,1) 1%,rgba(250,250,250,1) 16%,rgba(250,250,250,1) 100%);
background: -o-linear-gradient(top, rgba(237,237,237,1) 1%,rgba(250,250,250,1) 16%,rgba(250,250,250,1) 100%);
background: -ms-linear-gradient(top, rgba(237,237,237,1) 1%,rgba(250,250,250,1) 16%,rgba(250,250,250,1) 100%);
background: linear-gradient(to bottom, rgba(237,237,237,1) 1%,rgba(250,250,250,1) 16%,rgba(250,250,250,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ededed', endColorstr='#fafafa',GradientType=0 );
}
#cellTitles th{padding-bottom:10px;color:#ccc; border-bottom:4px solid #e8e8e8;}
.jobsInformation td {padding-top:14px; padding-bottom:14px;}
.pause {
display: none;	
}
.jobType h1 {
	margin-top:10px;
	width:60%
}
.jobType li{
list-style-image: url("../images/icon-red-arrow.png");
}
a.appDownload {
float: right;
text-transform: uppercase;
font-size: 14px;
color: #FFF;
border: 1px solid #fc5f5a;
border-bottom: 1px solid #b33b3c;
-webkit-border-radius: 6px;
border-radius: 6px;
background: rgb(217,52,48);
background: -moz-linear-gradient(left, rgba(217,52,48,1) 0%, rgba(255,59,51,1) 50%, rgba(217,52,48,1) 100%);
background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(217,52,48,1)), color-stop(50%,rgba(255,59,51,1)), color-stop(100%,rgba(217,52,48,1)));
background: -webkit-linear-gradient(left, rgba(217,52,48,1) 0%,rgba(255,59,51,1) 50%,rgba(217,52,48,1) 100%);
background: -o-linear-gradient(left, rgba(217,52,48,1) 0%,rgba(255,59,51,1) 50%,rgba(217,52,48,1) 100%);
background: -ms-linear-gradient(left, rgba(217,52,48,1) 0%,rgba(255,59,51,1) 50%,rgba(217,52,48,1) 100%);
background: linear-gradient(to right, rgba(217,52,48,1) 0%,rgba(255,59,51,1) 50%,rgba(217,52,48,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d93430', endColorstr='#d93430',GradientType=1 );
padding: 10px 30px;
text-decoration: none;
font-family: 'Open Sans';
font-style: normal;
font-weight: bold;
}
a.appDownload:hover {
border:1px solid #fc5f5a;
	border-top:1px solid #830502;
	-webkit-border-radius: 6px;
        border-radius: 6px;
    background: #be1713; /* Old browsers */
background: -moz-linear-gradient(left, #be1713 0%, #9e0b0f 50%, #be1713 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, right top, color-stop(0%,#be1713), color-stop(50%,#9e0b0f), color-stop(100%,#be1713)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(left, #be1713 0%,#9e0b0f 50%,#be1713 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(left, #be1713 0%,#9e0b0f 50%,#be1713 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(left, #be1713 0%,#9e0b0f 50%,#be1713 100%); /* IE10+ */
background: linear-gradient(to right, #be1713 0%,#9e0b0f 50%,#be1713 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#be1713', endColorstr='#be1713',GradientType=1 ); /* IE6-9 */
    padding:10px 30px;
    text-decoration: none;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: bold;	
}
.content li{
	list-style-image: url("../images/icon-red-arrow.png");
	margin-bottom: 10px;
}
.jobDescription li, .homeGreyContentText li{
	list-style-image:none;
	margin-bottom:0;
}
.teamTable strong, .contactHeader{
	line-height:240%;
}
.teamTable {
	width:675px;
}
.teamTable td {
	width:45%;
	margin-right:5%;
}
p.feedTitle {
	margin-top:8px;
	margin-bottom:10px;
}
.formBuilderField {
	margin-bottom:14px;
}
.phoneBar {width:100%; height:30px; background: rgb(0,77,131);
background: -moz-linear-gradient(left, rgba(0,77,131,1) 0%, rgba(1,104,179,1) 20%, rgba(1,104,179,1) 80%, rgba(0,77,131,1) 100%);
background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(0,77,131,1)), color-stop(20%,rgba(1,104,179,1)), color-stop(80%,rgba(1,104,179,1)), color-stop(100%,rgba(0,77,131,1)));
background: -webkit-linear-gradient(left, rgba(0,77,131,1) 0%,rgba(1,104,179,1) 20%,rgba(1,104,179,1) 80%,rgba(0,77,131,1) 100%);
background: -o-linear-gradient(left, rgba(0,77,131,1) 0%,rgba(1,104,179,1) 20%,rgba(1,104,179,1) 80%,rgba(0,77,131,1) 100%);
background: -ms-linear-gradient(left, rgba(0,77,131,1) 0%,rgba(1,104,179,1) 20%,rgba(1,104,179,1) 80%,rgba(0,77,131,1) 100%);
background: linear-gradient(to right, rgba(0,77,131,1) 0%,rgba(1,104,179,1) 20%,rgba(1,104,179,1) 80%,rgba(0,77,131,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#004d83', endColorstr='#004d83',GradientType=1 );
}


/* Smartphones (portrait and landscape) ----------- */
@media only screen
and (max-width : 686px) {
	.logo {
margin-left: 7.5%;
}
	#fwslider .title { display:none; }
    #fwslider .timers { display:none; }
    #fwslider .slide_content {cursor: pointer;}
	.bucketText {padding-top: 0px;}
	.header_box {
width: 100%;
height: 100%;
margin: 0;
}
.desktop, th.desktop, td.desktop {display:none;}
.mobile {display:block;}
#contact_us p {
display:none;
}
#fwslider {
width: 100%;
margin-left:0px;
margin-right:0px;
margin-top:100px;
}
.homeBucketBox {
width: 100%;
margin-left:0px;
margin-right:0px;
}
.homeWelcomeBox {
width: 100%;
margin-left: 0%;
}
.content .WelcomeText h1{
font-size:24px;
}
.homeWelcomeBoxContent {
width: 100%;
}
.WelcomeText {
width: 85%;
margin-left: 7.5%;
}
.homeGreyBox {
padding-bottom: 40px;
}
.homeGreyContent {
padding-top: 20px;
padding-bottom: 20px;
}
.content h1, .content h2, .content h3{
font-size: 18px;
}
.homeGreyH h4 {
font-size: 18px;
}
.homeGreyIcon {
width: 30px;
margin-top:7px;
}
.contentBox ul {
margin-left: 6px;
font-size:14px;
}
.applicationUL li {
padding-bottom: 6px;
}
.footnav {
	display:none;
}
.Flexible-container {
    padding-bottom: 50%;
	margin-top:0px;
}
.spacer {
	padding-top:20px;
}
.readmore {
	margin-left:28%;
	width:40%;
	text-align:center;
	margin-top:5%;
}
.readmore:hover {
	margin-left:28%;
	width:40%;
	text-align:center;
	margin-top:5%;
}
#header {
	top:30px;
}
#header .mobile {
	visibility:visible;
}
#header .mobile{
	display:block;
	position:absolute;
	top:23px;
	right:3%;
}	
#mobileNavWrap{
	margin:0;	
	width:100%;
	text-align:left;
}
#mobileNavMenuTitle{
	background:#d0d0d0;
	color:#fff;
	padding:1px 10px;
	cursor:pointer;
	text-align:center;
	font-size:34px;
	line-height:1em;
	text-transform:uppercase;
	margin-bottom:10px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
}

/* Mini Tablets (portrait and landscape) ----------- */
@media only screen
and (min-width : 686px)
and (max-width : 767px) {
	.phoneBar.mobile{
display:none;
}
		.logo {
margin-left: 7.5%;
}
	#fwslider .slide_content_wrap { margin-left:54px; margin-top:6%;}
    #fwslider .title { font-size:24px; }
    #fwslider .description {  font-size:12px;}
	.bucketText {padding-top: 0px;}
	.nav_main a {
padding-left: 6px;
padding-right: 6px;
}
.header_box {
width: 100%;
height: 100%;
margin: 0;
}
.homeWelcomeBox {
width: 100%;
margin-left: 0%;
}
.homeGreyIcon {
width: 30px;
margin-top:7px;
}
.homeGreyH h4 {
font-size: 18px;
}
.desktop, th.desktop, td.desktop {display:none;}
.mobile {display:block;}
#contact_us p {
display:none;
}
#fwslider {
width: 100%;
margin-left:0px;
margin-right:0px;
margin-top:100px;
}
.homeBucketBox {
width: 100%;
margin-left:0px;
margin-right:0px;
}
.homeJobBox {
width: 30%;
position: absolute;
margin-top: 30px;
right: 2%;
}
.footnav {
	display: block;
}
.Flexible-container {
	margin-top:0px;
}
.spacer {
	padding-top:20px;
}
.readmore {
	margin-top:2%;
}
.readmore:hover {
	margin-top:2%;
}
#header .mobile {
	visibility:visible;
}
#header .mobile{
	display:block;
	position:absolute;
	top:23px;
	right:3%;
}	
#mobileNavWrap{
	margin:0;	
	width:100%;
	text-align:left;
}
#mobileNavMenuTitle{
	background:#d0d0d0;
	color:#fff;
	padding:1px 10px;
	cursor:pointer;
	text-align:center;
	font-size:34px;
	line-height:1em;
	text-transform:uppercase;
	margin-bottom:10px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
}

/* iPads (portrait and landscape) ----------- */
@media only screen
and (min-width : 768px)
and (max-width : 1024px) {
	.mobile {display:none;}
	#fwslider .slide_content_wrap { margin-left:54px; margin-top:9%;}
    #fwslider .title { font-size:24px; }
    #fwslider .description {  font-size:16px; line-height:18px;}
	.homeWelcomeBox {
width: 90%;
margin-left: 5%;
}
	.homeBucketBox{width:90%; margin-left:5%;}
	.emailUs img{ display:none;}
	.bucketText {padding-top: 0px;}
		.nav_main a {
padding-left: 6px;
padding-right: 6px;
}
.nav_main {
margin-left: 20px;
}
#contact_us p {
display:none;
}
.search {
position: relative;
margin-top: 26px;
}
.mainSerch, #q {
	width:110px;	
}
.homeJobBox {
width: 27%;
position: absolute;
margin-top: 30px;
right: 7%;
}
.homeGreyIcon {
margin-top:5px;
}
.homeGreyH h4 {
padding-top:0;
}
.footnav {
	display: block;
}
.Flexible-container {
	margin-top:20px;
}
.spacer {
	padding-top:20px;
}
.readmore {
	margin-top:2%;
}
.readmore:hover {
	margin-top:2%;
}
}

/* Desktops and laptops ----------- */
@media only screen
and (min-width : 1025px)
and (max-width : 1280px) {
	.mobile {display:none;}
	#fwslider .slide_content_wrap { margin-left:54px; margin-top:10%;}
    #fwslider .title { font-size:29px; }
    #fwslider .description {  font-size:16px; line-height:18px;}
	#fwslider {
	width:85%;
	margin-left:7.5%;
	margin-right:7.5%;
}
	.header_box {
	width:85%;
	margin:0 7.5%;
}
.homeBucketBox{width:85%; margin-left:7.5%;}
			.nav_main a {
padding-left: 12px;
padding-right: 12px;
}
.homeGreyIcon {
margin-top:5px;
}
.homeGreyH h4 {
padding-top:0;
}
.emailUs img{ padding-top:9px; width:20px;}
.footnav {
	display: block;
}
.Flexible-container {
	margin-top:20px;
}
.spacer {
	padding-top:20px;
}
.readmore {
	margin-top:2%;
}
.readmore:hover {
	margin-top:2%;
}
}


@media only screen
and (min-width : 1280px) {
	.mobile {
display:none;
}
th.desktop, td.desktop {display: table-cell;}
	.desktop {
display:block;
}
	.header_box {
width: 1140px;
margin: 0 auto;
}
.emailUs img {
padding-top: 10px;
}
	#fwslider {
width: 1140px;
margin-left: auto;
margin-right: auto;
}
	#fwslider .slide_content_wrap {
margin-left: 54px;
margin-top: 10%;
}
#fwslider .title {
margin-bottom: .5%;
}
	.readmore {
	margin-top:3%;
}
.readmore:hover {
	margin-top:3%;
}
.homeBucketBox {
width: 1140px;
margin-left: auto;
margin-right: auto;	
}
.homeWelcomeBox {
width: 1140px;
margin-left: auto;
margin-right: auto;	
}
.homeWelcome {
width: 1140px;
margin-left:auto;
margin-right:auto;
position:relative;
}
.content {
background: rgb(201,201,201);
background: -moz-linear-gradient(top, rgba(201,201,201,1) 0%, rgba(237,237,237,1) 16%, rgba(237,237,237,1) 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(201,201,201,1)), color-stop(16%,rgba(237,237,237,1)), color-stop(100%,rgba(237,237,237,1)));
background: -webkit-linear-gradient(top, rgba(201,201,201,1) 0%,rgba(237,237,237,1) 16%,rgba(237,237,237,1) 100%);
background: -o-linear-gradient(top, rgba(201,201,201,1) 0%,rgba(237,237,237,1) 16%,rgba(237,237,237,1) 100%);
background: -ms-linear-gradient(top, rgba(201,201,201,1) 0%,rgba(237,237,237,1) 16%,rgba(237,237,237,1) 100%);
background: linear-gradient(to bottom, rgba(201,201,201,1) 0%,rgba(237,237,237,1) 16%,rgba(237,237,237,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c9c9c9', endColorstr='#ededed',GradientType=0 );	
}
.bucketText {
padding-top: 8px;
}
.homeJobBox {
width: 28%;
position: absolute;
margin-top: 30px;
right: 2.5%;
}
.homeGreyBox {
width: 1140px;
margin-left: auto;
margin-right: auto;
}
.homeGreyH h4 {
padding-top:0;
}
h4 {
margin-top: 4px;
}
.callout p {
width: 80%;
margin-left: 2.5%;
padding-top: 16px;
padding-bottom: 16px;
}
.Flexible-container {
margin-top: 20px;
}
.footerBox {
width: 1140px;
margin-left: auto;
margin-right: auto;
}
}


/* Large screens ----------- 
@media only screen
and (min-width : 1281px) 
and (max-width : 1500px){
	.mobile {display:none;}
	#fwslider .slide_content_wrap { margin-left:70px; margin-top:;}
	#fwslider .title { font-size:40px; padding:13px 16px; }
	#fwslider .description {  font-size:22px; line-height:24px;}
	#fwslider .readmore { 
    font-size:18px;
}
	.header_box {
	width:85%;
	margin:0 7.5%;
}
	#fwslider {
	width:85%;
	margin-left:7.5%;
	margin-right:7.5%;
}
.emailUs img{ padding-top:9px; width:20px;}
h4{margin-top:12px;
	}
	.content h1 {
font-size:18;
}
.homeGreyIcon {
margin-top:5px;
}
.homeGreyH h4 {
font-weight: bold;
padding-top: 0;
font-size: 18px;
}
.footnav {
	display: block;
}
.Flexible-container {
	margin-top:20px;
}
.spacer {
	padding-top:20px;
}
.readmore {
	margin-top:2%;
}
.readmore:hover {
	margin-top:2%;
}
}

 Largest screens ----------- 
@media only screen
and (min-width : 1500px){
	p {
font-size: 18px;
line-height:140%;
}
.nav_main a {
padding-left: 20px;
padding-right: 20px;
}
.nav_main {
margin-left: 30px;
}
	.mobile {display:none;}
	#fwslider .slide_content_wrap { margin-left:80px; margin-top:;}
	#fwslider .title { font-size:46px; padding:18px 24px; }
	#fwslider .description {  font-size:24px; line-height:26px;}
	#fwslider .readmore { 
    font-size:24px;
    margin-top:4%;
}
#fwslider .readmore:hover {
	font-size:24px;
    margin-top:4%;
}
.bucketText p {
font-size: 18px;
margin-top: 4px;
}
.homeGreyIcon {
margin-top:3px;
}
h4{margin-top:14px;
	}
#header {
	width:100%;
	height:120px;
}
	.header_box {
	width:85%;
	margin:0 7.5%;
}
	#fwslider {
	width:85%;
	margin-left:7.5%;
	margin-right:7.5%;
}
#fwslider {
	margin-top:95px;
}
.logo {
	width:100px;
	margin-left:4%;
}
.emailUs img{ padding-top:13.5px; width:21px;}
.nav_main li {
	padding-top: 47px;
	padding-bottom:24px;
	list-style: none;
	display: inline-block;
}
.nav_main a {
	padding-left: 24px;
	padding-right: 24px;
	height: 100%;
	font-family:Arial, Helvetica, sans-serif;
	background-position: left;
	background-repeat: no-repeat;
	font-size: 1.4em;
	font-weight:bold;
	text-decoration: none;
	color: #0168b3;
	line-height: 100%;
}
.nav_main {
	position:relative;
	margin-left:50px;	
}
#contact_us p {
	font-size: 14px;
	margin-top: 14px;
}
.search {
	position:relative;
	margin-top:10px;
}
#siteSearchSubmit {
	width:24px;
	height:23px;
	background-color:#0168b3;
	border-radius:0px;
}
.greyBucket{width:33.3333%; height:100px;}
.borderGrey{height:100px;}
.borderDark{height:100px;}
.bucketText {
padding-top: 9px;
}
.bucketText h5 {
font-size: 20px;
}
.bucketText p {
font-size: 16px;
margin-top:4px;
}
.jobBoxTitle p {
font-size: 24px;
padding:20px 0px;
transform: scale(1,1.1);
-webkit-transform: scale(1,1.1);
-moz-transform: scale(1,1.1);
-ms-transform: scale(1,1.1);
-o-transform: scale(1,1.1);
}
.jobFeedBox {
font-size: 18px;
line-height:120%;
padding:20px 0px;
}
.jobLinkTitle p{text-transform:uppercase; color:#0056A5; font-weight:bold; width:180px; margin-top:0;}
.jobLinkImage img {
margin-top:2px;
}
.content h1 {
font-size:26;
}
.homeGreyH h4 {
font-weight: bold;
padding-top: 0;
font-size: 26px;
}
.homeWelcomeBoxContent {
	padding-bottom: 65px;
}
.homeGreyContent {
	padding-top: 40px;
	padding-bottom: 125px;
}
.callout p {
	font-size:24px;
	padding-top: 24px;
	padding-bottom: 24px;
}
.homeGreyContentText ul {
	font-size:16px;
	line-height:140%;
	margin-top:6px;
	margin-left: 20px;
}
.homeWelcomeBox ul {
	font-size:16px;
	line-height:140%;
}
.footnav {
	display: block;
	margin-top:45px;
}
.footer p {
	margin-top:45px;
	font-size:16px;
	line-height:140%;
}
#menu_ul_footnav li a{
	font-size:14px;
}
#cellTitles th {
	padding-bottom:12px;
	color:#999999;
}
.jobsTable {
font-size:18px;
margin-top: 30px;
}
.jobsInformation td {
padding: 8px 2px;
}
.Flexible-container {
	margin-top:25px;
}
.spacer {
	padding-top:25px;
}
}

 iPhone 4 ----------- */
@media
only screen and (-webkit-min-device-pixel-ratio : 1.5),
only screen and (min-device-pixel-ratio : 1.5) {
}

/*--------------- PRINT STYLE SHEET ---------------*/

@media print {
  * { background: transparent !important; color: black !important; box-shadow:none !important; text-shadow: none !important; filter:none !important; -ms-filter: none !important; } 
  a, a:visited { text-decoration: underline; }
  a[href]:after { content: " (" attr(href) ")"; }
  abbr[title]:after { content: " (" attr(title) ")"; }
  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }  /* Don't show links for images, or javascript/internal links */
  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; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3 { page-break-after: avoid; }
  .footnav {
	display: block;
}
}
