/*
 * General CSS
 */

/* resetting styles */
*									{ outline: none; }
html, body							{ margin: 0; padding: 0; height: 100%; }

/* body is used to set the default font size, has to be redefined in some cases though */
body								{
	color: #303;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12pt;
	line-height: 1.2em;
}

/* main container div, will be centered */
#container							{ margin: 0 auto -120px auto; width: 950px; 
									/* required for footer */ 
									min-height: 100%; height: auto !important; height: 100%; 
									/* allow absolute positioning within the container */ 
									position: relative;  }


/*
 * Basic styles
 */

/* content elements */
 ul									{ margin: 0 0 10px 0; padding: 0; }
 ul li								{ list-style-type: none; padding-left: 8px; 
									/*background: url("bullet.gif") no-repeat 5px 7px;*/ }
 ul ul								{ margin-bottom: 0; }

/* tables */
table								{ margin: 0 0 10px 0; border-collapse: collapse; /* tables don't always inherit from body */ }
table td							{ padding: 0; }

/* base link styles */
a									{ text-decoration: none; }
a:hover								{ text-decoration: underline; }

/* images */
img									{ color: #606; }
img.no-border						{ border: none; }
img.left							{ float: left; clear: left; margin: 2px 15px 15px 0; }
img.right							{ float: right; clear: right; margin: 2px 0 15px 15px; }

/* header div */
#header								{ height: 105px; }

/*
 * Menu
 */

/* menu is placed after the main content, so bring it back to top */
#menu								{
									position: absolute;
									left: 242px; top: 91px;
									margin: 0; padding: 0;
									width: 495px; height: 30px;
									background: transparent url("menu_bg.png") no-repeat left top;
									font:Verdana, Geneva, sans-serif; font-size: 11px;
									}

/* first level */
#menu li							{
									float: left;
									margin-left: 0px; padding: 0;
									background: none;
									text-align: center;
									}
								
#menu li a							{
									display: block;
									float: left; padding: 0;
									width: 82px; height: 29px; line-height: 29px;
									color: #FFF; text-decoration: none;
									font-weight: bold;
									}
									
#menu li a.submenu					{
									cursor: default;
									width: 82px; height: 30px;
									}

#menu li a.menu_open				{
									background: url("SubHover.png") no-repeat left top !important; 
									color: #66746C;
}
#menu li a.menu_blank				{
									background: url("blank.png") no-repeat left top !important;
									color: #66746C;
}
#menu li a:visited:hover,
#menu li a:link:hover				{
									text-decoration: none;
									cursor: pointer;
									color: #FFF;
									}

#menu li a.menu_open:link:hover		{
									text-decoration: none;
									cursor: pointer;
									color: #66746C;
									}

/* second level */
#menu ul							{
	visibility: hidden;
	z-index: 100;
	margin: 0; padding: 0 5px 5px 0px;
	text-indent: 4px;
	position: absolute;
	top: 30px;
	background: url("dropbg.png") no-repeat left bottom;
	/*background: transparent url("dropbg.png") no-repeat left bottom;*/
}

/*#menu ul li							{ float: none; margin-left: 0; border-top: 1px solid #E1E5E5; }*/
#menu ul li							{ float: none; margin-left: 0; text-align:left; }
#menu ul li:hover					{ background: transparent url("hlight.png") no-repeat left; text-align:left; text-indent: 4px; }
#menu ul li:first-child				{ border-top: none; }
#menu ul li a						{
	float: none;
	width: 160px;
	height: auto;
	line-height: 1.2em;
	padding: 4px 5px;
	font-weight: normal;
	color: #57645C;
}
#menu ul li a:hover					{
									background:transparent url("hlight.png") no-repeat left;
									text-align:left;
									text-indent: 4px;
									width: 152px;
									}

/*
 * Main content
 */

/* margin-top is to clear space for the teaser image and crumbtrail */
#content							{
	width: 942px;
	float: right;
	margin-top: 75px; /* 30px from footer, 10px is part of footer height, 10px is handled by margin-bottom */
	margin-bottom: 10px;
	font-size:12px;
}

/*
 * Homepage
 */
/* overwrite default styles for #content */
#homepage #content					{ margin-top: 0; font-size:12px; }
#homepage #content h1				{ margin-bottom: 0; }

/*
 * Footer
 */
#footer								{ position: relative; z-index: 5; margin-top: 10px; width: auto; height: auto; }
#footer ul							{ width: 950px; margin: 0 auto; }
#footer ul li						{ float: left; margin-top: 16px; padding: 0; background: none; }
#footer img							{ border-color: #A0ACA5; margin: 1px 15px 0 0; }
#footer a:hover img					{ border-color: #66746C; }
#footer p							{ width: 195px; margin: 0; }

#container #content 				{
									font-family: Arial, Helvetica, sans-serif;
									font-size: 12px; color:#333;
									position: absolute;
									left: 5px;
									top: 124px;
									height: auto;
									margin-top: 10px;
									}
									
#homepage #container #content {
	margin-left:auto;
	margin-right:auto;
}
