/*==============================
// common.css
// Written by Andy Konwinski
// this is a css for the styles that all pages share
===============================*/

body {
	background-color:#000000;
	font-family:Arial,Helvetica,sans-serif;
	font-size:10pt
}
img {border-style:none} /*this is to keep all images that are used as links from having that ugly blue border*/
a {
	color: #663399;
	text-decoration: none;
}

#pageholder {
  position: relative;
  margin: 0 auto;
  text-align: left;
  width: 744px;
}

#header {
	background-color: #666666;
	background-image: url(../images/New%20Header.png);
	background-repeat: no-repeat;
	height: 130px;
}

.navmenutop {
  background-color: #000000;
  border-top: 1px solid #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
  padding-top: 7px;
  padding-bottom: 7px;
  padding-left: 40px;
  text-align: left;
}

.navmenutop ul {
  margin: 0;
  padding: 0;
}

.navmenutop li {
	margin: 0 8px 0 8px;
	padding: 0;
	color: #FFFFCC;
	display: inline;
	font-weight: bold;
}

.navmenutop a {
	margin: 0;
	color:#FFFFCC;
	text-decoration:none;
	cursor: pointer;
}

.navmenutop a:hover {
	font-weight:bolder;
	color:#8894A3;
}

.navmenutop a:visited{
  text-decoration:none;
}

.navmenusub {
	margin: 0;
	padding: 0;
	position: absolute;
	top: 162px;
	visibility: hidden;
	background-color: #4C4C4C;
	border-right: 1px solid #FFFFFF;
	border-left: 1px solid #FFFFFF;
	border-bottom: 1px solid #FFFFFF;
	color:#FFFFCC;
	text-align: center;
	font-weight: normal;
	font-size: 12px;
	font-variant: normal;
	width: 150px; /*default width, override with id style*/
	z-index: 9; /*I am intentionally making this high so that I have room to play with layers while keeping these menus on top*/  
}

.navmenusub li {
  margin: 0;
  padding: 1px;
  list-style: none;
}

.navmenusub ul {
  margin: 2px 5px 5px 5px;
  padding: 0;
}

.navmenusub a {
	color:#FFFFCC;
	text-decoration:none;
}

.navmenusub a:hover {
	font-weight:bolder;
	color:#8894A3;
}

.navmenusub a:visited{
  text-decoration:none;
}

#menupane {
}

#menuservices {
  left: 284px;
  width: 110px;
}

#menucustomerservice {
  left: 384px;
  width: 115px;
}

#menucompany {
  left: 507px;
  width: 110px;
}

.content {
	padding-bottom:0;
}

#footer {
	background-color: #666666;
	position: relative;
	/* border-top: 1px solid #FFFFFF;*/
  height: 16px;
	padding: 2px 0 2px 0;
	vertical-align: middle;
	text-align: center;
	font-size: 0.85em;
	color: #FFFFFF;
	font-weight: bold;
	margin-top: 1px;
	border-top: thin #000000;
}

#footer a {
  color:#FFFFFF;
  text-decoration:none;
}

#footer a:hover {
  font-weight:bolder;
  color:#CCCCCC;
}

#footer a:visited{
  text-decoration:none;
}

