/*
	design.css (extends core.css)
	contains all design specific colors, images and text formatting
	
	All style rule attributes in alpha-numeric order starting from 0-9 A-Z
	x = horizontal, y = vertical
	property: trbl, tb rl, t rl b, t r b l;
	
	-- START ALL STYLES --
*/


/* color glossary
-----------------------------------------------------------------------------
	
	#hex (desc)
	
*/

/* import additional sheets
----------------------------------------------------------------------------- */

@import url("core.css");

/* design specific presentational elements
----------------------------------------------------------------------------- */

body{
	background: #E5E5E5 url(img/body.gif) no-repeat center top;
	color: #373737;
	font: normal normal 12px "Arial", Sans-Serif;
}

/* global text presentation
----------------------------------------------------------------------------- */

code, samp, kbd, var{ font-family: "Courier New", "Courier", Monospace; }

h1, h2, h3, h4, h5, h6, b, strong{ font-weight: bold; }
i, em, cite, dfn, ins{ font-style: italic; }
del, code, samp, kbd, var{ font-style: inherit; }

del{ text-decoration: line-through; }
ins{ text-decoration: none; }

abbr, acronym{ border: 0; cursor: help; text-decoration: none; }

h1{ font-size: 24px; }
h2{ font-size: 20px; }
h3{ font-size: 18px; }
h4{ font-size: 16px; }
h5{ font-size: 14px; }
h6{ font-size: 13px; }

ul, dl{ list-style: square; }
ol{ list-style: decimal; }

li, dt, dd,
p, pre, address,
legend, label, input, textarea, 
select, option, optgroup,
th, td{ font: inherit; }

small{ font-size: 10px; } 	/* 2px smaller, than body base */
big{ font-size: 14px; } 	/* 2px larger, than body base */

img.float-left,
img.float-right{
	background: #FFF;
	border: 1px solid #999;
	margin: 0 10px 5px;
	padding: 3px;
}

img.no{ border: 0; padding: 0; }

img.float-left{ margin-left: 0; }
img.float-right{ margin-right: 0; }

/* hyperlinks
----------------------------------------------------------------------------- */

a{ text-decoration: underline; }
.no-decor a{ text-decoration: none; }

#content-wrap a:link, 
#content-wrap a:visited{ color: #9B3C08; }

#content-wrap a:hover, 
#content-wrap a:active{ color: #102467; }

#content-wrap a:link.more,
#content-wrap a:visited.more,
#content-wrap a:link.archive,
#content-wrap a:visited.archive{
	background: transparent url(img/learn_more.gif) no-repeat 0 0;
	display: block;
	height: 20px;
	text-indent: -13000em;
	width: 90px;
}

#content-wrap a:link.archive,
#content-wrap a:visited.archive{
	background-image: url(img/archives.gif);
	height: 22px;
	width: 122px;
}

/* forms
----------------------------------------------------------------------------- */

fieldset.float-clear{ 
	padding: 10px 0; 
}

fieldset.float-clear label,
fieldset.float-clear input{ float: left; }

fieldset.float-clear label{ 
	background: #EEE;
	display: block;
	padding: 4px 5px 4px;  
	width: 100px; 
}

label{
	font-size: 12px;
	font-weight: bold;
}

input,
select,
textarea{
	background: #FFF;
	border: 1px solid;
	border-color: #AAA #CCC #CCC #AAA;
	padding: 3px 5px;
	width: 300px;
}

textarea{ height: 150px; width: 450px; }

select,
.button input,
.chad input{ width: auto; }

fieldset.button{ padding: 10px 0; }

	.button input{
		background: #000;
		border: 0;
		color: #FFF;
		text-transform: uppercase;
	}

	.chad input{ 
		background: transparent;
		border: 0;
		vertical-align: middle; 
	}

/* design specific presentational ID's
----------------------------------------------------------------------------- */

#wrap{
	margin: 0 auto;
	width: 858px;
}

#inner-wrap{ background: transparent url(img/wrap.png) repeat-y 0 0; }

#header h1 a:link,
#header h1 a:visited{
	display: block;
	height: 52px;
	text-indent: -13000em;
	width: 219px;
}

#masthead{ 
	padding: 0 14px 2px;
	width: 830px;
}

	#mhinner{ 
		height: 305px;
		width: 830px; 
	}
	
#mh-careers,
#mh-customer_support,
#mh-gsa_schedule,
#mh-security_solutions,
#mh-about{
	background: transparent url(img/bg/services_head.jpg) no-repeat 0 0; 
	height: 150px;
	width: 830px;
}

	#mh-careers{ background-image: url(img/bg/careers_head.jpg); }
	#mh-customer_support{ background-image: url(img/bg/customer_support_head.jpg); }
	#mh-gsa_schedule{ background-image: url(img/bg/gsa_schedule_head.jpg); }
	#mh-security_solutions{ background-image: url(img/bg/security_solutions_head.jpg); }
	#mh-about{ background-image: url(img/bg/about_head.jpg); }

#menu{ list-style: none; }

	#menu li{ background: transparent; float: left; }
	
	#menu li a:link,
	#menu li a:visited{
		background: transparent url(img/menu_home.png) no-repeat 0 0;
		display: block;
		height: 45px;
		text-indent: -13000em;
		width: 62px;
	}
	
		#menu li.home a:link,
		#menu li.home a:visited{
			background-image: url(img/menu_home.png);
			width: 62px;
		}
	
		#menu li.security-solutions a:link,
		#menu li.security-solutions a:visited{
			background-image: url(img/menu_security_solutions.png);
			width: 147px;
		}
	
		#menu li.gsa_schedule a:link,
		#menu li.gsa_schedule a:visited{
			background-image: url(img/menu_gsa_schedule.png);
			width: 109px;
		}
	
		#menu li.careers a:link,
		#menu li.careers a:visited{
			background-image: url(img/menu_careers.png);
			width: 72px;
		}
	
		#menu li.customer_support a:link,
		#menu li.customer_support a:visited{
			background-image: url(img/menu_customer_support.png);
			width: 143px;
		}
	
		#menu li.about a:link,
		#menu li.about a:visited{
			background-image: url(img/menu_about.png);
			width: 69px;
		}
	
		#menu li.start_career a:link,
		#menu li.start_career a:visited{
			background-image: url(img/menu_start_career.png);
			width: 256px;
		}
		
	#menu li a:hover,
	#menu li a:active{ background-position: 0 -45px; }
	
	#menu li a:link.act,
	#menu li a:visited.act{ background-position: 0 -90px; }

#content-wrap{ 
	background: transparent url(img/content_wrap.png) no-repeat 0 0; 
	padding: 10px 0 0;
}

#content-inner{ background: transparent url(img/content_bg.png) no-repeat 0 0; }

	#content-inner h2{
		color: #273C84;
		font-size: 18px;
		font-weight: normal;
		margin: 3px 0 15px;
		text-transform: uppercase;
	}
	
	#content-inner h3{
		color: #273C84;
		font-size: 16px;
		font-weight: normal;
		margin: 15px 0;
	}
	
	#content-inner p{
		line-height: 1.5;
		margin: 15px 0;
	}

#sidebar,
#column{ float: left; }

#sidebar{
	padding: 14px;
	width: 240px;
}

	#sidebar ul{
		border: solid #ECECEC;
		border-width: 1px 0;
		list-style: none;
		margin: 15px 0;
	}
	
		#sidebar ul li{ 
			padding: 8px 5px;
			position: relative; 
		}
		
		#sidebar ul li.alt{ background: #F2F2F2; }
		
			#sidebar ul li span{
				color: #C3C3C3;
				font-size: 10px;
				position: absolute;
				right: 8px;
				text-transform: uppercase;
				top: 8px;
			}

#column{
	background: transparent url(img/column_bg.gif) no-repeat 100% 1px;
	padding: 14px 14px 14px 20px;
	width: 550px;
}

	#column ul{ list-style: circle; margin: 15px 0 15px 30px; }
	
	#column ul.affiliates{
		list-style: none;
		margin: 15px 0;
	}
	
		#column ul.affiliates li{ 
			border-bottom: 1px solid #CCC;
			padding: 10px 5px; 
		}
		
			#column ul.affiliates li.aci{ 
				background: transparent url(img/aci_logo.gif) no-repeat 0 5px; 
				padding-left: 40px;
			}
		
			#column ul.affiliates li.aaae{ 
				background: transparent url(img/aaae_logo.gif) no-repeat 5px 10px; 
				padding-left: 45px;
			}
			
			#column ul.affiliates li.ss{ 
				background: transparent url(img/safeskies_logo.gif) no-repeat 5px 10px; 
				padding-left: 50px;
			}
	
	#column .vcard{ 
		background: #F9F9F9; 
		border: 1px solid;
		border-color: #EEE #CCC #CCC #EEE;
		padding: 10px;
		width: 145px;
	}
	
		#column .vcard .dl{
			display: block;
			margin-top: 10px;
		}

#footer{
	background: transparent url(img/footer.gif) no-repeat 0 0;
	padding: 15px;
}

	#footer p{ color: #A0A0A0; }
	
	#footer ul{ 
		list-style: none; 
		margin: 5px 0;
	}
	
		#footer ul li{ 
			display: inline;
			font-size: 11px;
			margin-right: 5px;
			text-transform: uppercase; 
		}
		
		#footer a:link,
		#footer a:visited{
			color: #273C84;
			text-decoration: none;
		}

		#footer a:hover,
		#footer a:active{ color: #A0A0A0; }
		

/* design specific presentational classes
----------------------------------------------------------------------------- */

.half-box{ float: left; width: 250px; }

.news-wrap{
	border-bottom: 1px solid #CCC;
	margin-bottom: 25px;
}

/*
	-- /END ALL STYLES --
	
	- Please do not steal my code!
	- "I cannot abide useless people"
	- Thank you, I appreciate it.
*/