/* Table of Content
==================================================
	#Reset & Basics
	#Basic Styles
	#Site Styles
	#Typography
	#Links
	#Logo
	#Navigation
	#Lists
	#Auto-Scale Class
	#Buttons
	#Forms
	#Avant Featured Block
	#Avant Bio Block
	#Misc */


/* #Reset & Basics
================================================== */

	html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
		margin: 0;
		padding: 0;
		border: 0;
		font-size: 100%;
		font: inherit;
		vertical-align: baseline; }
	article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
		display: block; }
	body { padding: 0px 0 0 0; line-height: 1; }
	ol, ul {
		list-style: none; }
	blockquote, q {
		quotes: none; }
	blockquote:before, blockquote:after,
	q:before, q:after {
		content: '';
		content: none; }
	br.clear { clear: both; }
	table {
		border-collapse: collapse;
		border-spacing: 0; }


/* #Basic Styles
================================================== */
	body {
		background: #f1f1f1;
		font: 16px Verdana, Arial, sans-serif;
		-webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
		-webkit-text-size-adjust: 100%;
		color: #000;
	}
	
	
	/*HEADER*/
	.headerwrap { 
		background:#000;
		min-height:140px;
		color:#fff;
		padding-top:15px;
	}
 	
	.logo {
		margin: 0px;
		float:left;
	}
	
	#panel{
		display:none;
		text-align:center;
		background:#161514 url(../images/mobilemenu.png);
		background:#292726 url(../images/mobilemenu.png);
		padding-bottom:10px;
		padding-top:8px;
	}
	#panel ul.nav{
		list-style:none;
		margin:0px 0px 10px 0px;
		padding:0px;
		line-height:normal;
		font-size:16px;
		font-weight:bold;
	}
	#panel ul.nav li{
		margin-bottom: 0;
		padding-bottom: 2px;
		padding-top: 2px;
		line-height: normal;
		border-bottom: 1px solid #fff;
	}
	#panel .nav a {
		display: block;
		color: #fff;
		padding: 6px 0;
	}
	#panel .nav a:hover, #panel .nav a.selected { 
		background: #000;
		background: #E55D2B;
		text-decoration: none;
	}
	#panel ul.nav li ul{
		margin:0px;
		padding:2px 0px 0px 0px;
		list-style:none;
		line-height:normal;
		font-size:16px;
		border-top:1px solid #fff;
	}
	#panel ul.nav li ul li:last-child{
		border-bottom:none;
	}
	#panel .quote{
		border: 3px solid #fff;
		display: block;
		color: #FFF;
		padding: 8px;
		width: 50%;
		background: #E55D2B;
		border-radius: 8px;
		margin: 8px auto;
		font-size: 18px;
		font-weight:bold;
		box-shadow: 4px 9px 16px -1px #000;
	}
	#panel .quote:hover{
		background: #C53804;
		box-shadow: inset 1px 3px 8px #7A290C;
		text-decoration: none;
	}
	.mobile{
		display: none;
		text-align: right;
		position: absolute;
		right: 0px;
		top: auto;
		cursor: pointer;
	}
	.mobile img{
		width:34px;
		height:auto;
		margin-right:5px;
	}
	
	
	
	/*NAV*/
	.headerwrap .navwrap { 
		position: relative; 
		top:52px;
		right:0px;
		float:right; 
		color:#fff;
	}
	.navwrap .nav {
		display: block;
		position: relative;
		margin: 0; 
		padding: 0;
		font-family: Verdana, Arial, sans-serif;
		font-size:19px;
		font-weight:bold;
	}
	
	.navwrap .nav ul.nav { display: inline; }
	.navwrap .nav ul.nav li { float: left; display: inline; }
	
	.navwrap ul.nav {
		padding: 5px 10px 5px 10px;
		margin: 10px 0 0 0;
		list-style: none;
		border: none;
		background: transparent; 
		display: block;
	}
	.navwrap ul.nav li { 
		padding: 0px 0px 6px 0px; 
		display: block;
	}
	.navwrap .nav ul {
		margin: 0;
		padding: 0;
		list-style: none;
	}
	.navwrap .nav ul li {
		list-style: none;
		display: block;
		position:relative;
		margin: 0;
		padding: 0;
	}
	.navwrap .nav a {
		display: block;
		color: #fff;
		padding: 8px 9px;
	}
	/*.navwrap .nav li a.nav-selected { color: #931301; }
	.navwrap .nav ul li a.nav-selected { color: #931301; }*/
	.navwrap .nav a:hover, .nav a.nav-selected  { 
		background: #E55D2B;
		text-decoration: none;
		/*color: #e55d2b; */
	}
	
	
	/*Drop Down*/
	.navwrap .nav ul li ul{
		display:none;
		text-align:center;
		position:absolute;
		top:auto;
		left:0px;
		width:98%;
		background:#000;
		font-size: 14px;
		font-weight:normal;
		border:1px solid #e55d2b;
		border-bottom:none;
		border-top:none;
		z-index:101;
	}
	.navwrap .nav li:hover ul{
		display:block;
	}
	.navwrap .nav ul.nav li ul li{
		display: block;
		float:none;
		border-bottom:1px solid #e55d2b;
	}
	.navwrap .nav ul.nav li ul li a{
		color:#fff;
	}
	
	
	
	/*BODY CONTENT*/
	.bodycontent { 
		
	}
	
	
	
	/*SLIDER*/
	.slider{
		margin-bottom:60px;
	}
	.slider .sliderimg img{
		width:100%;
		height:auto;
		display:block;
	}
	.slider .sliderText{
		background:url(../images/steel.jpg);
		color:#fff;
		font-size:20px;
		font-weight:bold;
		text-align:center;
		position:relative;
		min-height:95px;
		min-height:145px;
		padding-top:40px;
	}
	.sliderText .quoteimg{
		position:absolute;
		top:-63px;
		right:0px;
		z-index:200;
	}
	
	
	/*BLOCK*/
	.block{
		width:280px;
		float:left;
	}
	.midblock{
		margin:0 110px;
	}
	.block img{
		margin-bottom:20px;
	}
	.block h3{
		font-size:18px;
		border-left:4px solid #e55d2b;
		padding-left:12px;
		margin-bottom:15px;
		line-height:20px;
	}
	.block p{
		color:#979797;
		font-size:12px;
	}
	.block .more a{
		color:#e55d2b;
		font: 400 14px Myriad Pro, Verdana, Arial, sans-serif;
	}
	
	
	/*Company Profile*/
	
	.profile{
		background:#e55d2b;
		padding:80px 0 60px;
		margin-top:60px;
		color:#fff;
		font-weight:bold;
		text-align:center;
	}
	.profile h2{
		font-size:26px;
		line-height:normal;
		margin-bottom:5px;
	}
	.profile .subhead {
		font-size: 18px;
		display:block;
		padding-bottom: 6px;
		border-bottom: 1px solid #000;
		width: 50%;
		margin: 0 auto 50px;
	}
	.profile .last{
		margin-right:0px;
	}
	.profile .profileimgs{
		margin:0px;
		padding:0px;  
		/*height: 150px;
		overflow: hidden;*/
		display: block;
	}
	.profile li{
		margin:0px 50px 0 0;
		padding:0px;
		display:block;
	}
	.profile p:last-child{
		margin:0px;
		padding:0px;
	}
	.profile img{
		width:195px;
		height:120px;
	}
	/*.profile p{
		border:5px solid #000;
		float:left;
		margin-right:50px;
		background:#fff;
	}
	.profile p a{
		display:block;
		padding:5px;
		border:4px solid #000;
		margin:1px;
	}
	.profile img{
		display:block;
	}*/
	
	
	
	/*INTERIOR*/
	.interiorimg{
		max-height:315px;
		overflow:hidden;
	}
	.interiorimg img{
		width:100%;
		height:auto;
		display:block;
	}
	.pagetitle{
		background:url(../images/steel.jpg);
		color:#fff;
		font-weight:bold;
		position:relative;
		padding:16px 0;
		margin-bottom:45px;
	}
	.pagetitle h1{
		line-height:normal;
		margin-bottom:0px;
	}
	.pagetitle .quoteimg{
		position:absolute;
		top:-39px;
		right:0px;
	}
	
	.content .jobbtn{
		background: #E55D2B;
		border-radius: 5px;
		color: #000;
		border: 2px solid #000;
		width:275px;
		margin:20px auto 10px;
		font-size: 20px;
	}
	.content .jobbtn a{
		color: #000;
		display:block;
		padding: 5px 10px;
	}
	.content .jobbtn:hover{
		background: #C53804;
	}
	.content .jobbtn a:hover{
		color: #fff;
	}
	

	
	
	
	
	
	
	
	/*PREFOOTER*/
	.prefooter{
		background:url(../images/footer_bg.jpg);
		min-height:200px;
		color:#fff;
		padding-top:15px;
		border-top:19px solid #000;
	}
	.prefooter .container{
		width:820px;
	}
	.prefooter .column{
		width:233px;
		float:left;
	}
	.prefooter .midspace{
		margin:0 60px;
	}
	.prefooter .column h4{
		font-size:18px;
		line-height:normal;
		margin-bottom:30px;
	}
	.prefooter .column p{
		margin-bottom:4px;
		font-size:12px;
	}
	.prefooter .column a{
		color:#fff; 
	}
	
	
	
	/*FOOTER*/
	.footerwrap { 
		background:#000;
		color:#fff;
		font-size:10px;	
		text-align:center;
		padding:8px 0;
		font-family: Arial, Verdana, sans-serif;
	}
	.footerwrap span{
		color:#e55d2b;
	}
	.footerwrap p{
		margin-bottom:2px;
	}
	.footerwrap .copyright a,
	.footerwrap .copyright{
		color:#a8a8a8
	}

	
	.ie{
		display:none;
	}
	
	

	
/* #Typography
================================================== */
	.container h1, .container h2, .container h3, .container h4, .container h5, .container h6 {
		font-family: Verdana, Arial, sans-serif;
		font-weight: bold;}
	h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { font-weight: inherit; }
	h1 { font-size: 35px; line-height: 50px; margin-bottom: 12px;}
	h2 { font-size: 30px; line-height: 40px; margin-bottom: 8px;}
	h3 { font-size: 25px; line-height: 34px; margin-bottom: 6px;}
	h4 { font-size: 21px; line-height: 30px; margin-bottom: 4px;}
	h5 { font-size: 17px; line-height: 21px; }
	h6 { font-size: 14px; line-height: 18px; }

	p { margin: 0 0 10px 0;}
	p img { margin: 0; }

	em { font-style: italic; }
	strong { font-weight: bold; }
	small { font-size: 80%; }

	.container hr { 
		border: solid #ddd; 
		border-width: 1px 0 0; 
		clear: both; 
		margin: 21px 0; 
		height: 0; 
	}


/* #Links
================================================== */
	a, a:visited { text-decoration: none; outline: 0; }
	a:hover, a:focus { text-decoration: underline; }
	p a, p a:visited { line-height: inherit; }
	.content a{
		color:#e55d2b;
	}


/* #Lists
================================================== */
	ul, ol { margin-bottom: 20px; }
	ul { list-style: disc inside; margin-left: 12px; }
	ol { list-style: decimal; }
	ol, ul.square, ul.circle, ul.disc { margin-left: 30px; }
	ul.square { list-style: square outside; }
	ul.circle { list-style: circle outside; }
	ul.disc { list-style: disc outside; }
	ul ul, ul ol,
	ol ol, ol ul { margin: 4px 0 5px 30px; font-size: 90%;  }
	ul ul li, ul ol li,
	ol ol li, ol ul li { margin-bottom: 6px; }
	li { line-height: 18px; margin-bottom: 12px; }
	ul.large li { line-height: 21px; }
	li p { line-height: 21px; }

/* #Auto-scale Class: Apply to images or similar media
================================================== */
	.scale-with-grid img {
		max-width: 100%;
		height: auto !important; }

		iframe.youtube-player{
			max-width:100%;
		}
/* #Forms
================================================== */
	.container .nav select {
		min-width: 110px;
		margin: 0 0 10px 0;
		height: 24px;
		padding: 8px 0 4px 10px;
		border: 0;
		background: #fff;
		outline: none;
		font: 14px 'Helvetica Neue', Helvetica, Arial, sans-serif;
		-moz-appearance:    none;
		-webkit-appearance: none;
		appearance:         none;
		-moz-box-sizing:    content-box;
		-webkit-box-sizing: content-box;
		box-sizing:         content-box;
		-moz-border-radius:    5px;
		-webkit-border-radius: 5px;
		border-radius:         5px;
		-moz-box-shadow:    0 1px 1px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.5);
		-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.5);
		box-shadow:         0 1px 1px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.5);
		behavior: url(PIE.htc);
	}
	.container .nav select option { 
		background: #ededed;
		height: 24px;
		width: 100%; font-weight: bold;
		padding: 10px 0 2px 10px;
		border-bottom: 1px solid #ccc;
		border-top: 1px solid #fff;
		-moz-appearance:    none;
		-webkit-appearance: none;
		appearance:         none;
		-moz-box-sizing:    content-box;
		-webkit-box-sizing: content-box;
		box-sizing:         content-box;
	}

