@charset "utf-8";
/* CSS Document */

/* Color platelette:  
light blue: #aac3d6
dark blue: #2d6690
off-white: #e9eae8
dark grey: #454b50
light grey: #6e797e
*/



/* --------------------------------------------
	FONTS
-------------------------------------------- */

@font-face {
    font-family: 'DejaVuSansExtraLight';
    src: url('fonts/dejavusans-extralight-webfont.eot');
    src: url('fonts/dejavusans-extralight-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/dejavusans-extralight-webfont.woff') format('woff'),
         url('fonts/dejavusans-extralight-webfont.ttf') format('truetype'),
         url('fonts/dejavusans-extralight-webfont.svg#DejaVuSansExtraLight') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'DejaVuSansBook';
    src: url('fonts/dejavusans_0-webfont.eot');
    src: url('fonts/dejavusans_0-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/dejavusans_0-webfont.woff') format('woff'),
         url('fonts/dejavusans_0-webfont.ttf') format('truetype'),
         url('fonts/dejavusans_0-webfont.svg#DejaVuSansBook') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'DejaVuSansCondensedBold';
    src: url('fonts/dejavusanscondensed-bold-webfont.eot');
    src: url('fonts/dejavusanscondensed-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/dejavusanscondensed-bold-webfont.woff') format('woff'),
         url('fonts/dejavusanscondensed-bold-webfont.ttf') format('truetype'),
         url('fonts/dejavusanscondensed-bold-webfont.svg#DejaVuSansCondensedBold') format('svg');
    font-weight: normal;
    font-style: normal;

}


@font-face {
    font-family: 'ChaparralProBold';
    src: url('fonts/chaparralpro-bold-webfont.eot');
    src: url('fonts/chaparralpro-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/chaparralpro-bold-webfont.woff') format('woff'),
         url('fonts/chaparralpro-bold-webfont.ttf') format('truetype'),
         url('fonts/chaparralpro-bold-webfont.svg#ChaparralProBold') format('svg');
    font-weight: normal;
    font-style: normal;

}


/* --------------------------------------------
	RESET DEFAULT BROWSER CSS SETTINGS
-------------------------------------------- */
html, div, span, applet, 
object, iframe, h1, h2, 
h3, h4, h5, h6, p, 
blockquote, pre, a, abbr,
acronym, address, big,
cite, code, del, dfn, em, 
font, 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 			{margin: 0;padding: 0;border: 0;outline: 0;}

h1,h2,h3,h4,h5{
	font-family:DejaVuSansCondensedBold, Helvetica, Arial, sans-serif;
	font-weight:normal;
}
caption, th, td 			{text-align: left;font-weight: normal;}
blockquote:before, 
blockquote:after,q:before, 
q:after 					{content: "";}
blockquote, q 				{quotes: "" "";}

* 							{margin: 0;padding: 0;}

a 		{color: #2d6690; /* 2e4676 6685a3  003260 */text-decoration: none;}
a:hover, a:focus 			{ color: #2d6690;text-decoration: underline;}
header, nav, article, footer, address {
display: block;
}

hr{
	border:none;
	border-bottom:1px solid #2d6690;
	margin:5px 0px 5px 10px;
}




/* --------------------------------------------
	GLOBAL CLASSES
-------------------------------------------- */
.clear { 
    clear: both; 
} 
img.imgLeft{
	float:left;
}
img.imgRight{
	float:right;
}
.thinBorder{
	border:thin solid #454b50;
}
.dropShadow{
	box-shadow: 0px 0px 8px -1px #000;
	-webkit-box-shadow: 0px 0px 8px -1px #000;
}


hr.diagonal{
	width:100%;
	margin-left:auto; margin-right:auto;
	margin:10px 0px;
	padding:0px;
	border:none;
	height:10px;
	background:url(images/workMenuHandleBG.png) repeat;
}

/* --------------------------------------------v
	LAYOUT SECTIONS AND STYLES
-------------------------------------------- */

html, body {
	text-align: left; font-family:DejaVuSansBook, Helvetica, Arial, sans-serif; font-size: 107%; color: #454b50; height: 100%; line-height: 1em;
}
body{
	background:#e9eae8 url(images/bodyBG_noise.jpg) repeat;
	position:relative;
}


/*
 Top Bar, Nav
 --------------------------------------------------*/
#headerWrapper{
	width:100%;
	background:#aac3d6 url(images/headerBG.jpg) repeat;
	border-bottom:#2d6690 2px solid;
	box-shadow: 0px 0px 10px -1px #6e797e;
	-webkit-box-shadow: 0px 0px 10px -1px #6e797e; /* Safari */
	position:relative;
	top:0px;
	z-index:1000;
}
header{
	max-width:1000px; height:58px;
	margin-left:auto; margin-right:auto;
}
header img{
	padding:2px 0px;
}
nav{
	float:right;
}
nav ul
{
	list-style-type: none;
	float:right;
}
nav ul li
{
	float: left;
	color:#454b50;
	width:113px; height:80px;
	background:url(images/navBG_sprite.png) no-repeat top center;
	background-position:0px -90px; /*mouse-over pos: -10px, mouse-out pos: 90px*/
	font-family:DejaVuSansBook, Helvetica, Arial, sans-serif;
	font-size:1.05em;
	text-align:center;
}
nav ul li a{
	color:#454b50;
	display:block;
	padding:3px 0px 12px;
	line-height:65px;
}
nav ul li a:hover{
	color:#aac3d6;
	text-decoration:none;
}
nav ul li.current{
	background-position:0px -10px;
}
nav ul li.current a{
	color:#aac3d6;
	background-position:0px -10px;
}


/*
 Work Thumbnail Menu
 --------------------------------------------------*/
/*.bluePineOverlay {
	background:#0f1f2a url(images/overlayBG.jpg) repeat;
    opacity:1;
	height:100%;
    left:0;
    position:fixed;
    top:0;
    width:100%;
	z-index:500;
}
.bluePineOverlay-content{
	width:1000px; 
	margin-left:auto; margin-right:auto; 
	padding-top:200px;
}*/


/*
 HERO image slider
 --------------------------------------------------*/

#heroWrapper{
	width:100%;
	height:420px;
	overflow:hidden;
	position:absolute;
}
#hero{
	max-width:2000px;
	height:372px;
	position: relative;
	left:50%;
	margin-left:-1000px;
}

#featured{
	width:100%;
	height:372px;
}
#heroNav{
	width:100%;
	height:36px;
	margin:6px 0px 6px;
	background:url(images/gray-diagonal.png) repeat;
	position:absolute;
}
.bx-window{
	 position:absolute; 
	 overflow:hidden; 
}
.heroContentBumper{
	margin-top:420px;
	width:100%;
	height:1px;
}
#go-prev{
	position:absolute;
	top:186px;
	margin-top:-40px;
	left:10px;
	z-index:100;
	width:81px; height:81px;
	border-radius:41px;
	-moz-border-radius:41px;
	-webkit-border-radius:41px;
	-khtml-border-radius:41px;
	background:url(images/leftArrow_sprite.jpg) no-repeat;
	background-position:0px 0px;
	cursor:pointer;
	box-shadow: 0px 0px 10px -1px #000;
	-webkit-box-shadow: 0px 0px 10px -1px #000;
	border:#e9eae8 4px solid;
}
#go-next{
	position:absolute;
	top:186px;
	margin-top:-40px;
	right:10px;
	z-index:100;
	width:81px; height:81px;
	border-radius:41px;
	-moz-border-radius:41px;
	-webkit-border-radius:41px;
	-khtml-border-radius:41px;
	background:url(images/rightArrow_sprite.jpg) no-repeat;
	background-position:-81px 0px;
	cursor:pointer;
	box-shadow: 0px 0px 10px -1px #000;
	-webkit-box-shadow: 0px 0px 10px -1px #000;
	border:#e9eae8 4px solid;
}

.bx-pager{
	position:relative;
	z-index:10;
	top:385px;
	max-width:1000px;
	margin-left:auto; margin-right:auto;
	text-align:center;
}
.bx-pager a{
	display:inline-block;
	width:21px; height:21px;
	background:url(images/bulletBG.png) no-repeat center center;
	margin-left:15px;
}
.bx-pager a:first-child{
	margin-left:0px;
}
.bx-pager a:hover{
	background:url(images/bulletBG_hover.png) no-repeat center center;
}
.bx-pager a.pager-active{
	background:url(images/bulletBG_selected.png) no-repeat center center;
}
.bx-pager a.pager-active:hover{
	background:url(images/bulletBG_selected.png) no-repeat center center;
}




/*
 Main Area, Content
 --------------------------------------------------*/
#content{
	max-width:1000px;
	margin-left:auto; margin-right:auto;
	font-family:DejaVuSansBook, Helvetica, Arial, sans-serif;
	font-size:1em;
	color: #454b50;
	min-height:375px;
	position:relative;
	z-index:1;
	padding:10px 0px;
}
#content h1{
	font-family:DejaVuSansCondensedBold, Helvetica, Arial, sans-serif;
	font-size:3.1em;
	padding:40px 0px 20px;
	line-height:1em;
	text-shadow: 1px 1px white;
}
#content h2{
	font-family:DejaVuSansCondensedBold, Helvetica, Arial, sans-serif;
	font-size:2em;
	padding:20px 0px 10px;
	line-height:1.2em;
	text-shadow: 1px 1px white;
}
#content h3{
	font-family:DejaVuSansCondensedBold, Helvetica, Arial, sans-serif;
	font-size:1.5em;
	padding:10px 0px;
	line-height:1em;
	text-shadow: 1px 1px white;
}
#content p{
	line-height:1.8em;
	padding:10px 0px;
}
#content .half-col-left{
	width:48%;
	margin:0px 4% 0px 0px;
	float:left;
}
#content .half-col-right{
	width:48%;
	float:left;
}
#content ul{
	padding:0px 5px 10px 30px;
	list-style:none;
	list-style-image:url(images/contentBullet.png);
	overflow:hidden;
}
#content ul li{
	padding:4px 0px;
}
#content ul.serviceList{
	padding:20px 0px 10px 0px;
	list-style:none;
	list-style-image:none;
	overflow:visible;
}
#content ul.serviceList li{
	font-family:DejaVuSansCondensedBold, Helvetica, Arial, sans-serif;
	font-size:1.2em;
	padding:8px 0px;
	text-align:center;
	border-bottom:1px dotted #454b50;
	position:relative;
}
#content ul.serviceList li:first-child{
	border-top:1px dotted #454b50;
}

#widePageWrapper{
	width:100%;
	position:relative;
	top:-20px;
	overflow:hidden;
}
.widePage{
	position:relative;
	width:3000px;
	left:0px;
}
#contactLeft{
	float:left;
	width:1000px; 
	position:relative;
	left:0px;
}
#contactRight{
	float:left;
	width:1000px; 
	position:absolute;
	left:2000px;
	
}
#contactGoNext{
	position:absolute;
	top:25%;
	margin-top:-41px;
	right:10px;
	z-index:100;
	width:81px; height:81px;
	border-radius:41px;
	-moz-border-radius:41px;
	-webkit-border-radius:41px;
	-khtml-border-radius:41px;
	background:url(images/rightArrow_sprite.jpg) no-repeat;
	background-position:-81px 0px;
	cursor:pointer;
	box-shadow: 0px 0px 10px -1px #000;
	-webkit-box-shadow: 0px 0px 10px -1px #000;
	border:#e9eae8 4px solid;
}
#contactGoPrev{
	position:absolute;
	top:25%;
	margin-top:-41px;
	left:10px;
	z-index:100;
	width:81px; height:81px;
	border-radius:41px;
	-moz-border-radius:41px;
	-webkit-border-radius:41px;
	-khtml-border-radius:41px;
	background:url(images/leftArrow_sprite.jpg) no-repeat;
	background-position:0px 0px;
	cursor:pointer;
	box-shadow: 0px 0px 10px -1px #000;
	-webkit-box-shadow: 0px 0px 10px -1px #000;
	border:#e9eae8 4px solid;
}
.facebookIconSmall{
	width:42px; height:42px;
	background:url(images/facebookIconSm_sprite.gif) no-repeat;
	background-position:0px -42px;
	box-shadow: 0px 0px 5px -1px #000;
	-webkit-box-shadow: 0px 0px 5px -1px #000;
	border:#e9eae8 4px solid;
	border-radius:10px;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	-khtml-border-radius:10px;
	float:left;
	margin:5px;
	display:block;
}
.facebookIconSmall:hover{
	box-shadow: 0px 0px 4px 0px #2d6690;
	-webkit-box-shadow: 0px 0px 4px 0px #2d6690;
	border:#fff 4px solid;
}
.youtubeIconSmall{
	width:42px; height:42px;
	background:url(images/youtubeIconSmall_sprite.gif) no-repeat;
	background-position:0px -42px;
	box-shadow: 0px 0px 5px -1px #000;
	-webkit-box-shadow: 0px 0px 5px -1px #000;
	border:#e9eae8 4px solid;
	border-radius:10px;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	-khtml-border-radius:10px;
	float:left;
	margin:5px;
	display:block;
}
.youtubeIconSmall:hover{
	box-shadow: 0px 0px 4px 0px #2d6690;
	-webkit-box-shadow: 0px 0px 4px 0px #2d6690;
	border:#fff 4px solid;
}
.socialIcon{
	width:92px; height:92px;
	background-position:0px 0px;
	box-shadow: 0px 0px 5px -1px #000;
	-webkit-box-shadow: 0px 0px 5px -1px #000;
	border:#e9eae8 4px solid;
	border-radius:10px;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	-khtml-border-radius:10px;
	float:left;
	margin:5px;
	display:block;
}
.facebookIcon{
	background:url(images/facebookIcon_sprite.gif) no-repeat;
}
.youtubeIcon{
	background:url(images/youtubeIcon_sprite.gif) no-repeat;
}
.twitterIcon{
	background:url(images/twitterIcon_sprite.gif) no-repeat;
}
.linkedInIcon{
	background:url(images/linkedinIcon_sprite.gif) no-repeat;
}
.googlePlusIcon{
	background:url(images/googlePlusIcon_sprite.gif) no-repeat;
}




/*
 Forms
 --------------------------------------------------*/




.formElement
{
	margin:20px 0px 5px;
}
.leftLabel
{
	width:100%;
	margin:0px;
	padding:7px 0px 2px;
	text-align:left;
}
.rightElement
{
	width:100%;
	margin:0px;
	padding:7px 0px 2px;
	text-align:left;
}
.error
{
	color:#CD2218;
}
button, input[type=submit]
{
	border-radius:12px;
	-moz-border-radius:12px;
	-webkit-border-radius:12px;
	-khtml-border-radius:12px;
	padding:10px;
	color:#e9eae8;
	background:#2d6690 url(images/buttonBG_bluegray.gif) repeat;
	font-family:inherit;
	font-size:1em;
	border:4px #e9eae8 solid;
	box-shadow: 0px 0px 5px -1px #000;
	-webkit-box-shadow: 0px 0px 5px -1px #000;
	/*-moz-box-shadow:    inset 0 0 10px #000000;
    -webkit-box-shadow: inset 0 0 10px #000000;
    box-shadow:         inset 0 0 10px #000000;*/
	margin:5px;
}
button:hover, input[type=submit]:hover
{
	border:4px #fff solid;
	color:#fff;
	box-shadow: 0px 0px 4px 0px #2d6690;
	-webkit-box-shadow: 0px 0px 4px 0px #2d6690;
}
#content fieldset
{
	border:4px #e9eae8 solid;
	border-radius:15px;
	-moz-border-radius:15px;
	-webkit-border-radius:15px;
	-khtml-border-radius:15px;
	background:#454b50 url(images/fieldsetBG.gif) repeat;
	box-shadow: 0px 0px 10px -1px #000;
	-webkit-box-shadow: 0px 0px 10px -1px #000;
	padding:10px 20px;
	margin:20px 0px;
	color:#e9eae8;
}
#content fieldset .fieldsetHalfColLeft{
	width:48%;
	margin:0px 4% 0px 0px;
	float:left;
}
#content fieldset .fieldsetHalfColRight{
	width:48%;
	float:left;
}
form
{
	border:none;
	font-size:1em;
}
form label{
	font-family:DejaVuSansCondensedBold, Helvetica, Arial, sans-serif;
	text-transform:uppercase;
}
form input,select,textarea
{
	font-family:DejaVuSansBook, Helvetica, Arial, sans-serif;
	font-size:1em;
	color:#454b50;
	box-sizing: border-box;
  	-moz-box-sizing: border-box;
  	-webkit-box-sizing: border-box;
	width:456px;
	border:0px;
	padding:9px;
	margin:3px;
	background:#e9eae8;
	-moz-box-shadow:    inset 0 0 10px #6e797e;
    -webkit-box-shadow: inset 0 0 10px #6e797e;
    box-shadow:         inset 0 0 10px #6e797e;
}
form input:focus,select:focus,textarea:focus{
	background:#aac3d6;
	border:none;
	outline:none;
}
.form-validate label{
	width:195px;
	float:left;
	margin:0px;
	padding:7px 5px 2px 0px;
	text-align:left;
}

#content .selectbox{
	width:456px;
	box-sizing: border-box;
  	-moz-box-sizing: border-box;
  	-webkit-box-sizing: border-box;
	background:#e9eae8 url(images/selectBoxArrow.png) no-repeat right center;
}
#content .selectbox:focus{
	background-color:#aac3d6;
}
#content div.selectbox-wrapper ul {
  list-style-type:none;
  width:456px;
  position:absolute;
  background:#aac3d6;
  color:#454b50;
  padding:0px;
  margin:0px 3px;
}
#content div.selectbox-wrapper ul li.selected { 
  background-color: #EAF2FB;
}
#content div.selectbox-wrapper ul li.current { 
  background-color: #CDD8E4;
}
#content div.selectbox-wrapper ul li {
  list-style-type:none;
  display:block;
  margin:0;
  padding:7px;
  cursor:pointer;
}

/*
 Footer, Bottom
 --------------------------------------------------*/
footer{
	max-width:1000px;
	margin-left:auto; margin-right:auto;
	margin-top:10px;
	padding-bottom:10px;
}
footer p{
	text-align:right;
	font-size:.65em;
	line-height:1.6em;
	padding:6px 0px;
}
footer img.footerIcon{
	float:right;
	padding:0px 0px 0px 13px;
}


/*
Jquery UI Dialog
--------------------------------------------------*/

.dialogBox ul{
	padding:0px 5px 10px 30px;
	list-style:none;
	list-style-image:url(images/contentBullet.png);
	overflow:hidden;
}
.dialogBox ul li{
	padding:4px 0px;
}
.dialogBox h2{
	font-family:DejaVuSansCondensedBold, Helvetica, Arial, sans-serif;
	font-size:2em;
	padding:20px 0px 10px;
	line-height:1.2em;
	text-shadow: 1px 1px white;
}
.dialogBox h3{
	font-family:DejaVuSansCondensedBold, Helvetica, Arial, sans-serif;
	font-size:1.5em;
	padding:10px 0px;
	line-height:1em;
	text-shadow: 1px 1px white;
}
.dialogBox p{
	line-height:1.8em;
	padding:10px 0px;
}
/*footer .dreamhost{
	position:absolute;
	bottom:-80px;
	left:700px;
	
}*/

