@charset "utf-8";

body {
	font: 100% 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;
}
#container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header {
	background: #fff;
	padding: 5px 10px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
}
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
}
#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#f0f0f0;
	font-size: xx-small;
	clear:both;
}
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
#container #header img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#mainMenu {
	list-style-type:none;
	margin:4px 0;
	padding:0;
	float:left;
	width:744px;
	text-align:center;
	border-width:1px 0 1px 1px;
	border-color:black;
	border-style:solid;
}

#mainMenu li {
	display:inline;
	padding:0;
	margin: 0;
}
#mainMenu a:link,
#mainMenu a:visited {
	font-size:small;
	font-weight:bold;
	text-decoration:none;
	color:#000;
	background:#559CBE;
	padding:5px 5px 5px 5px;
	float:left;
	width:113px;
/*	border:1px solid #000;
	border-width:1px 0; */
	border-right:1px solid #000;
}
#mainMenu a:hover {
	color:#fff;
	background:#727454;
}
}
#home #nav-news a,
#about #nav-products a,
#archive #nav-services a,
#lab #nav-resources a,
#reviews #nav-sendfiles a,
#contact #nav-getquote a {
		background:#e35a00;
		color:#fff;
		text-shadow:none;
	}
#home #nav-news a:hover,
#about #nav-products a:hover,
#archive #nav-services a:hover,
#lab #nav-resources a:hover,
#reviews #nav-sendfiles a:hover,
#contact #nav-getquote a:hover {
		background:#e35a00;
	}
	#nav a:active {
		background:#e35a00;
		color:#fff;
	}
#breadCrumbs {
	font-size: small;
	text-align: left;
}
.newsItem {
	clear:both;
}
.dateline {
	font-style:italic;
	font-size:80%;
}
.float_right {
	float:right;
	border-style:none;
	margin-left:10px;
	margin-right:10px;
}
a {
	text-decoration:none;
	border:none;
}
h1 {
	margin-top:12px;
}
h1, h2 {
	color:#559CBE;
}
.minHeightPanel {
	min-height: 450px;
}
.sidebar {
	position: absolute;
	top: 200px;
	right: 10px;
	border: 1px black solid;
}