/* CSS Document */

/* global declarations (styles that apply to more than one object, or change the default behaviour of tags) */

div, body { /* by default, body and divs get no margin (allows easier formatting) */
	margin: 0px 0px 0px 0px;
	padding: 0px;
}

body {	
	height: 100%;
	background-image: url('../img/bg_grad/bg.png');
	
}

table {
	border-collapse: collapse; 
}

td {
	text-align: left;
}

img {
	border-width: 0 0 0 0;
	border-style: none;
	margin: 0 0 0 0;
}

font {
	color: #000044;
	font-family: arial, helvetica, sans-serif; /* firefox on mac has to use arial because of a bug in font rendering (renders italics incor.) */
	line-height: 20px;
}

p {
	color: #000044;
	font-family: arial, helvetica, sans-serif; /* order is important, see above */
	line-height: 20px;
}

a:link {
	text-decoration: none;
	font-weight: normal;
	color: #0000FF;
	line-height: 20px;
	/* border-bottom: dotted 1px #0000cc; */
}

a:visited {
	text-decoration: none;
	font-weight: normal;
	color: #0000ff;
	line-height: 20px;
}

a:hover {
	text-decoration: none;
	font-weight: normal;
	color: #B28E00;
	border-bottom: dotted 1px #B28E00;
	line-height: 20px;
}

/* end defaults */

div.page_container {
	width: 750px; /* padding does not count into the width (actual width = 706) */
	padding: 3px 3px 3px 3px;
	text-align: left;
	z-index: 2;
	
	background-color: #ffcc00; 
	/* background-color: #000066; */
}

font.last_updated {
	color: white;
	font-size: 12px;
}

div.banner_div {
	background-color: #FFFFFF;
}

div.button_box {
	height: 30px;
	width: 136px;
}

#menu_bg {
	/* height: 40px; */
	width: 100%;
		
	background-image: url('../img/topmenu_bg.png');
	
	text-align: left;
	
	height: 40px;
}

/* begin menu */

#menu {
	position: absolute;
	width: 700px;
	z-index: 10;
	text-align: center;
}

#menu li {
}


#menu ul {
	list-style: none;
	
	margin: 0;
	padding: 0;
	
	display: block;
	float: left;
	
	width: 136px;
	border: 0;
}

#menu h2, #menu a {
	display: table-cell; 
	vertical-align: middle; 
	width: 136px;
	height: 40px;
	margin: 0;
	text-decoration: none;
	border: none;
	padding: 0;
	
	line-height: 14px;
	font-size: 14px;
	
	color: #000066;
	
	font-weight: normal;
	
	font-family: arial, helvetica, sans-serif;
	
	text-align: center;
}

#menu ul li ul a {
	text-align: left;
	padding-left: 15px;
}

#menu ul li ul a {
	background-image: url('../img/topitem.png');
}

#menu ul li ul a:hover {
	background-image: url('../img/topitem_mouseover.png');
	color: #ffcc00;
}

#menu ul:hover li h2 {
	background-image: url('../img/topbutton_mouseover.png');
}

#menu a,
#menu a:hover,
#menu a:visited {
	line-height: normal;
}

#menu ul ul {
	width: 136px;	
	display: none; 
	z-index: 500;
}

#menu ul:hover ul {
	display: block;
}

#menu ul:hover li {
	display: block;
}

#menu ul {
}

.menu_left {
	text-align: left;
	
}

/* end menu */

div.content_div {
	/* overriden in disable_submenu.css */
	width: auto; 
	
	margin-right: 0px;
	margin-left: 0;
	margin-top: 3px;
	
	/* padding: 0px 0px 0px 0px; */
	padding-top: 20px;
	padding-left: 39px;
	padding-right: 39px;
	padding-bottom: 25px;
	
	/* background-color: #CCCCCC; */
	background-image: url('../img/bg_color.png');
}

div.copyright_box_div {
	margin-top: 10px;
}

font.copyright {
	color: #ffcc00;
}

td.menu_valign_td {
	vertical-align: middle;
	width: 136px;
	height: 40px;
	text-align: center;
	/* padding-left: 15px; */
}

td.menu_valign_left_td {
	vertical-align: middle;
	width: 136px;
	height: 40px;
	text-align: left;
	/* padding-left: 15px; */
}

/* content stylings */
div.page_heading { /* provides a long underline */

	border-bottom-width: 2px;
	border-bottom-style: dotted;
	border-bottom-color: #FFCC00;
	font-size: 30px;
	font-family: Arial, Helvetica, sans-serif;
	color: #000044;
	text-align: center;
	
}

a.bottom_link {
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif;
	color: #ffffff;
}

a.bottom_link:visited {
	color: #ffffff;
}


