@charset "utf-8";
body {
	font: 100%/1.4  'Lato', Arial, Helvetica, sans-serif;
	background-color: #315c7c;
	margin: 0;
	padding: 0;
	color: #000;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	/* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
	line-height:100%;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color:#414958;/* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #4E5869;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
.container {
	width: 100%;
	max-width: 1260px;
	min-width: 400px;
	margin: 0 auto;
}
.container_fixed {
	width: 100%;
	max-width: 1260px;
	min-width: 1000px;
	margin: 0 auto;
}


.widecontainer {
	width: 100%;
	min-width:400px;
	margin: 0 auto;
	
}
.header_out {
	width: 100%;
	background-color:#fff;
}
.header {
	padding-top:0px;
	padding-bottom: 10px;
	display:block; 
	min-height:100px;
	z-index:1000;
	position:relative;
	margin:0 auto;
	width:80%; 
	min-width:400px;
	max-width:1260px;
}


/*Strip the ul of padding and list styling*/
ul {
	list-style-type:none;
	margin:0;
	padding:0;
	position: absolute;
	width: 45%;
}

/*Create a horizontal list with spacing*/
li {
	display:inline-block;
	float: right;
	margin-right: 1px;
	text-decoration:none;
}

/*Style for menu links*/
li a {
	display:block;
	min-width:130px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	font-family:'Lato', Arial, Helvetica, sans-serif;
	font-size:18px;
	color: #ffffff;
	text-decoration:none;
}

/*Hover state for top level links*/
li:hover a {
	color:#2080bf;
}

/*Style for dropdown links*/
li:hover ul a {
	background-color: #d0dde5;
	color: #3b4145;
	height: 40px;
	line-height: 40px;
	width: 130px;
	font-size:15px;
	text-align:center;
}

/*Hover state for dropdown links*/
li:hover ul a:hover {
	color: #60b5e9;
}

/*Hide dropdown links until they are needed*/
li ul {
	display: none;
}

/*Make dropdown links vertical*/
li ul li {
	display: block;
	float: none;
}

/*Prevent text wrapping*/
li ul li a {
	width: auto;
	min-width: 100px;
	padding: 0 20px;
}

/*Display the dropdown on hover*/
ul li a:hover + .hidden, .hidden:hover {
	display: block;
}

/*Style 'show menu' label button and hide it by default*/
.show-menu {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-decoration: none;
	color: #fff;
	background-color: #8c8c8c;
	text-align: center;
	padding: 10px 0;
	display: none;

}


/*Hide checkbox*/
input[type=checkbox]{
    display: none;
}

/*Show menu when invisible checkbox is checked*/
input[type=checkbox]:checked ~ #menu{
    display: block;
}

.phone {
	text-align:center; 
	background-color:#2080bf;
	float:right;
	width:25%;
	color:#ffffff;
	max-width:250px;
}
.contactsm {
	display:none;
}
	.logotop {
		width:30%;
		float:left;
	}
	
.menumenu {
		float:left;
		width:45%; 
		min-height:40px;
		margin-top:30px;
	}
	
.headshot {
	width:17%; 
	float:left;
}

.bio {
	width:80%; 
	float:left; 
	font-size:12px; 
	padding-left:3%;
}
.wide {
	width:100%; 
	float:left; 
	font-size:16px; 
	margin-bottom:10px;
	background-color:#ffffff;
}
.carriers {
	width:140px;
	height:auto;
	padding:0px 10px;}
/*Responsive Styles*/
.portal {
	float:left;
	width:30%;
}
.spacer {
	float:left;
	width:5%;
}
.portaltitle {
	color:#ffffff; font-size:18px;
}

.traininglinks {
	padding-left:15px; color:#333; font-size:14px;
}
.content_static {
	width:90%; 

}
@media screen and (max-width : 990px){
	.header {
	width:90%; 

}
	.footer {
	width:90%; 

}
.content {
	width:90%; 

}/*Make dropdown links appear inline*/
	ul {
		position: static;
		display: none;
		width:100%;
		
	}
	/*Create vertical spacing*/
	li {
		margin-bottom: 1px;
		text-align:center;

	}
	/*Make all menu links full width*/
	ul li, li a {
		width: 100%;
		text-align:center;
		font-size:30px;
	}
	li:hover ul a {
	width: 100%;
	padding: 0px;
	font-size:30px;
}
	li:hover ul a:hover {
	width:100%;
	padding: 0px;
}
	/*Display 'show menu' link*/
	.show-menu {
		display:block;
		font-size:30px;
		font-family:'Lato', Arial, Helvetica, sans-serif;
		text-transform:uppercase;
		
	}
	.menumenu {
		margin-top:0px;
	}

	.phone {
		display:none;
		
		
	}
	.contactsm {
	display:block;
	width:100%; text-align:center; 
	background-color:#2080bf;
	color:#ffffff;
	font-size:28px;
}
	.logotop {
		width:100%;
		float:left;
		text-align:center;
	}
	.menumenu {
		float:left;
		width:100%; 
		min-height:40px;
	}
	.portaltitle {
	font-size:18px;
}
.traininglinks {
	padding-left:15px; color:#333; font-size:14px;
}
}

@media screen and (max-width : 600px){
	.logotop {
		width:100%;
		float:left;
	}
	#left {
		display:none;
	}
	.phone {
		width:100%;
		text-align:center;
	}
	.portal {
	float:left;
	width:100%;
	padding-bottom:20px;
}
.spacer {
	display:none;
}
.portaltitle {
	font-size:20px;
}
.traininglinks {
	font-size:20px;
}

	
}

.content_out {
	width: 100%;
	background-color:#fff;
}
.content {
	padding: 30px 0px 30px 0px;
	z-index:1;
	width:80%; 
	min-width:400px;
	max-width:1260px;
	margin: 0 auto;
	overflow:auto;
}
.grey_out {
	width: 100%;
	background-color:#e9eff2;
}

.phone { 
	
}
.title_out {
	width: 100%;
	background-color:#efefef;
}
.title {
	padding: 10px 0;
	z-index:1;
	width:100%;
	margin: 0 auto;
	color:#fff;
	line-height:100%;
	padding-top:30px;
}

.highlight_out {
	width: 100%;
	background-color:#f5f5f5;
	border-bottom:20px solid #fff;
}
.highlight {
	padding: 30px 0;
	z-index:1;
	width:80%; 
	min-width:400px;
	max-width:1260px;
	margin: 0 auto;
	color:#749845;
	line-height:100%;
	text-align:center;
}
.left {
	width: 260px;
	float:right;
	background-color:#eeeeee;
	margin: 0px 0px 0px 20px;
	padding:20px;
	color: #749845;
}
#left {
	width: 260px;
	float:right;
	background-color:#eeeeee;
	margin: 0px 0px 0px 20px;
	padding:20px;
	color: #749845;
}
.left h1, h2, h3 {
	text-transform:uppercase;
	padding:0px;
	color:#315c7c;
}
.left h4, h5 {
	font-style: italic;
	padding:0px;
	color:#749845;
}
.left p { padding:0px;
}
.left hr {
	margin-top:-10px;
}

.content ul, .content ol { 
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

/* ~~ The footer ~~ */
.footer_out {
	padding: 10px 0;
	color: #fff;
	font-size:12px;
	line-height:100%;
}
.footer {
	padding: 10px 0;
	margin: 0 auto;
	width:80%; 
	min-width:400px;
	max-width:1260px;
	}

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}