/***** Global Settings *****/
 
html, body {
	border:0;
	margin:0;
	padding:0;
}
body {
	font:12px Arial, Helvetica, sans-serif; 
	background:#FFF;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}
/***** Common Formatting *****/
 
h1, h2, h3, h4, h5, h6 {
	margin:0;
	padding:0;
	font-weight:normal;
}
#page_title {
	padding:10px 0 0 30px;
	font-size:20px ;
		display:block;
	background:#e1f0c5;
	font-weight:bold;
	height:28px;
	margin:0;
}

h1{margin:10px 0 15px 0;
	font-size:16px;
	font-weight:bold;
	font-family: Arial,Helvetica,sans-serif;
	font-size: 18px;
	color: #f8961d;
	}


h2 {
	margin:0 0 15px 0;
	font-size:14px;
	font-weight:bold;
}
h3 {
	font:12px arial, helvetica, sans-serif;
	font-weight:bold;
}

hr{border:none; background:none; border-top:1px dotted #bdbcbc; padding:0; margin:0 0 15px 0; height:1px}

p, ul, ol {
	margin:0;
	padding:0 0 18px 0;
}
ul, ol {
	padding:0 0 18px 0px;
}
li{margin:0 0 0 15px;}
lh{font-weight:bold}
ol{font-weight:bold}
ol li{margin:0 0 0 18px;}

blockquote {
	margin:22px 40px;
	padding:0;
}
small {
	font-size:0.85em;
}
img {
	border:0;
}
sup {
	position:relative;
	bottom:0.3em;
	vertical-align:baseline;
}
sub {
	position:relative;
	bottom:-0.2em;
	vertical-align:baseline;
}
acronym, abbr {
	cursor:help;
	letter-spacing:1px;
	border-bottom:1px dashed;
}
/***** Links *****/
 
a, a:visited {
	text-decoration:none;
	color:#185eb3;
}



/***** Forms *****/
 
form div {
	margin:0 0 3px 0;

}


.radio_button{float:left; margin:0 3% 0 0; border:none; clear:left }


/***** Tables *****/
/* 
table {
	border:0;
	margin:0 0 18px 0;
	padding:0;
}
table tr td {
	padding:2px;
}

*/
/***** DESIGN *****/
 




#wrap {
	width: 990px;
	margin: auto;
	text-align: left;
	position:relative;
	overflow:hidden
}


#header {
	height:82px;
	margin:0;
	padding:0;
	background:url(../images/header_bkg_tile.png) ;
	position:relative;
	z-index:100;
	width: 990px;
	position:relative;

}
#header_img{margin:0; padding:0}

	#header h1 {
		margin: 0; 
		padding: 10px 0; 
	}
	
#contact{
	width:195px;
	height:42px;
	background:url(../images/bkg_contact.png) no-repeat;
	float:right;
	margin:0 46px 0 0;
	padding:55px 0 0 35px;
	color:#2c95b5;
}

#nav_bar{
	height:32px;
	position:relative;
	z-index:500;
	margin:0; 
	padding:0;
}

#sitelink{font-weight:bold; color:#2c95b5; margin:8px 0 0 0; display:block }

#sitelink:hover{text-decoration:underline}




#nav{
  margin:0;
	padding:0;
	list-style:none;
	display:block;
	float:left;
	height:29px;	
	background:url(../images/nav_bkg.png) repeat-x;
	width:100%;
	position:absolute;
	bottom:0;
	z-index:600;
	
}

	#nav li{
		padding:0;
		margin:0;
		display:inline;
		list-style:none;
		border-right:1px solid #e77918;
		padding-right:5px;
		position:relative;
		float:left;
		
	}

	#nav a{
		font-size:11px;
		color:#FFF;
		font-weight:bold;
		padding:6px 10px;
		display:block;
		float:left;
		line-height:14px;
		height:14px;
	}
		#nav a:hover, #nav a.current{color:#FFF; text-decoration:underline }

	
#nav ul {position:absolute; padding:0; margin: 0; top:-999em;  width:181px; z-index:200; background:#ffcc93; border:1px solid #2f2f2e; z-index:500 }	
	 
#nav ul li{ float:none; padding:0; margin:0;  width:auto; display:block; border:none;   }

#nav ul li a{ background-image:none; text-indent:0;  color:#2f2f2e; font-size:10px; padding:4px 0; margin:0 12px -1px 12px; display:block; float:none; border:none; border-bottom:1px dotted #2f2f2e; text-transform:uppercase ; line-height:16px; height:18px; }

#nav ul li a:hover{ color:#2f2f2e;   }
#nav ul li a:hover li{ background:#f8961d;  }

#nav ul li img{margin:0 6px -6px 0}
#nav li:hover ul, /* this pure CSS hover is overridden by the .superfish rules below which are applied only when JavaScript is available. This way, the menu degrades to regular CSS dropdown when JavaScript is unavailable */
ul#nav li.sfHover ul /* this is the familiar IE6 hover support. With Superfish, all browsers use this rule when JS is available. This is because the JS needs to be able to control hide and reveal delays and animations without the pure CSS rule intruding. Note the tag selector ul.nav instead of just .nav - this gives it the most specificity of all and makes it trump all other positioning rules, including the .superfish overrides below */
{
	left:0px; /* position first submenu directly under parent li */
	top:26px; /* VARIABLE. This is calculated by adding 1em text height to top and bottom anchor element padding (original skin: .75em top + .75em bottom + 1em text height = 2.5em) */
	z-index:150;
}

/**** Very important ****/
/* this negates the pure CSS hovers so submenu remains hidden and JS controls when and how it appears. This is in turn is overridden by the .sfHover rules above as they have greater specificity */
/* notice there are three selectors here. You need three for a four tier menu system. If you had a five tier system you would copy the last selector of these three and paste it below to create a fourth selector and add another li just after the .superfish part. On the other hand if you only had a three tiered menu you could delete the third line here and save some file size.*/
.superfish li:hover ul,
.superfish li li:hover ul,
.superfish li li li:hover ul {
	top: -999em; /* hide submenu in screen-reader and search-engine friendly way */
}

#content_all{background:url(../images/content_bkg.png) repeat-y; clear:left; 	 }
#content{position:relative; float:left; width:785px; padding:0 0 0 10px; ; }
#column{float:right; width:149px; padding:13px 21px; color:#FFFFFF; overflow:hidden }
	
	#column ul li {list-style-type:none; background:url(../images/col_divider.png) bottom no-repeat; padding:8px 0 ; margin:0; background:url(../images/arrow.png) center left no-repeat; background-position:0 25%;}
	
	#column ul li a{font-size:16px; text-transform:uppercase; color:#FFFFFF;  padding:0 0 0 18px; line-height:22px}
	
	#column .testimonial h2 {font-size:16px; text-transform:uppercase; color:#FFFFFF; background:url(../images/arrow.png) no-repeat; background-position:0 12px; padding:0 0 0 18px; line-height:35px; margin:20px 0 0 0;  font-weight:normal}
	
	#column .testimonial{margin:-16px 0 0 0; font:11px}

	.cta_b, .cta_o{width:167px; height:82px; margin:10px 0 0 -10px; text-align:center; display: table; #position: relative; overflow: hidden}
	.cta_b{background:url(../images/cta_bkg_b.png) no-repeat; }
	.cta_o{background:url(../images/cta_bkg_o.png) no-repeat; }
	
	.cta_b a, .cta_o a, .cta_a a:visited, .cta_b a:visited{ font-size:16px; text-transform:uppercase; color:#FFFFFF; padding:0; width:167px; }
	.ctalink {color:#FFFFFF;}
	
	.addl{display:block; text-align:left; font-size:12px; text-transform:none; text-align:center }
	
#target{width:782px; margin:0 auto; border-right:wpx solid #efefef; border-left:wpx solid #efefef}
#copyright{text-align:center; color:#9fd7e1; margin:10px 0}


#footer {
	background:url(../images/bkg_footer.png); 
	height:67px;
	margin:0 0 10px 0; 
	padding:12px 12px;
	clear:left;
	color:#fcc57b;
	font-size:10px
}
#footer a{color:#fcc57b;}
#footer a:hover{text-decoration:underline}

#footer form{margin:0 0 10px 0}

#footer .login_input{margin:0 0 0 5px}

.login_button{margin-bottom:-5px}

.upload_button{margin:0 0 12px 0}

	#email_action, #client_action, #news{
		width:330px;
		height:172px;
		float:left;
		padding:12px 0 0 32px;
		color:#b0d9e4;
		font-size:11px;
	
	}
	#news{width:233px; }
	
	#footer label {text-transform:uppercase; color:#2f2f2e; font-size:9px; margin:0 10px 0 0 }


#portfolio_thumbs_area{text-align:center;}
.portfolio_thumbs{border:4px solid #71bacf; margin:0 15px 15px 0 }
.portfolio_thumbs_current{border:4px solid #97ee6c; margin:0 15px 15px 0 }

.button{margin:2px 0 -3px 0; width:62px; height:17px; float:right}

#col_main_inner {
	margin:9px 200px 9px 30px;
	position:relative;
}
	#col_main_inner h1 {font:16px Arial, Helvetica, sans-serif; color:#000000}
	
	
/* Miscellaneous classes for reuse */
.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 */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
/***** Global Classes *****/
 
.clear {
	clear:both;
}

.clear-left {
	clear:left;
}
.clear-right {
	clear:right;
}

.float-left {
	float:left;
}
.float-right {
	float:right;
}
.text-left {
	text-align:left;
}
.text-right {
	text-align:right;
}
.text-center {
	text-align:center;
}
.text-justify {
	text-align:justify;
}
.bold {
	font-weight:bold;
}
.italic {
	font-style:italic;
}
.underline {
	border-bottom:1px solid;
}
.highlight {
	background:#ffc;
}
.wrap {
	width:960px;
	margin:0 auto;
}
.img-left {
	float:left;
	margin:4px 15px 4px 0;
	border:1px solid #bdbcbc;
}
.img-right {
	float:right;
	margin:4px 0 4px 10px;
	border:1px solid #bdbcbc;
}
.nopadding {
	padding:0;
}
.noindent {
	margin-left:0;
	padding-left:0;
}
.nobullet {
	list-style:none;
	list-style-image:none;
}
.midgray{
	color:#666666;
	font-weight:normal
}
.img_title{
	padding: 8px 0 0 0 ;
	color:#666666;
	font-weight:normal 
}
.img_caption{
	color:#666666;
	font-weight:normal;
	font-size:10px;
	margin:0 0 8px 0;
}
.two_col_img {border:1px solid #bdbcbc; float:right; margin:0 0 0 15px;}
.bottom_pad {margin-bottom:15px}
.img_border{border:1px solid #bdbcbc}
.not_bold{font-weight:normal}


#file_table {
width:100%;

float:left;
}
#file_table th{margin:0 0 3px 0; font:12px Arial, Helvetica, sans-serif; color:#999999; font-weight:bold}

#file_table td{ margin:0 0 3px 0;  color:#333333;}
.grid_headers{  margin:0 0 3px 0; font:12px Arial, Helvetica, sans-serif; color:#999999; font-weight:bold}

.grid_row{ background-color:#f4f2f2; margin:0 0 3px 0;  color:#333333; }


.grid_row_alt{ background-color:#FFF; margin:0 0 3px 0;  color:#333333; }
.grid_cell{width:23%; padding:4px 5px; float:left; }
.grid_wide{width:33%; padding:4px 5px; float:left; background:none} 
.grid_narrow{width:12%; padding:4px 5px; float:left; background:none;}
.grid_row:hover, .grid_row_alt:hover{background-color:#cce5ff;}
.grid_row a:hover {background-color:#cce5ff;}
.row_hover{background-color:#cce5ff;}
.red{color:#cc0000}
.hidden{display:none}
.form_button_green {background:url(../images/button_bkg_green.gif) repeat-x; border:1px solid #bdbcbc; height:22px; font:12px Arial, Helvetica, sans-serif; color:#000; width:108px; margin:5px 3% 0 0;  padding:0  }
.form_button_silver {background:url(../images/button_bkg_silver.gif) repeat-x; border:1px solid #bdbcbc; height:22px; font:12px Arial, Helvetica, sans-serif; color:#000; width:108px; margin:5px 3% 0 0;  padding:0  } 

/****** FIX FIREFOX ******
:-moz-any-link:focus {
 outline: none;
}
:focus {
	-moz-outline-style: none;
}
*/