/*
** menuh.css 
** CSS - horizontal menu with drop down
** Source: http://sperling.com/examples/menuh/
** Author: Gordon HACK
** Date: 12.11.08
*/


#main_menu
{
	width: 100%;
	height: 33px;
	background-image: url('../img/menubar_bg.jpg');
	background-repeat: repeat-x;
	border-bottom: 1px solid black;
}



#menuh
{
	/*border: 1px solid red;*/
	width: 911px;
	margin: 0 auto;
	height: 33px;
	
}

#menuh a
{
	text-align: center;
	display: block;
	white-space: nowrap;
	margin: 1px 0 0 0;
	height: 22px;
	padding: 9px 8px 0px 0px;
	text-decoration: none;
	color: #000;
	font-size: 0.75em;
}


#menuh a:hover	/* menu at mouse-over  */
{
	color: #000000;
	text-decoration: underline;
}	

a.selected
{
	font-weight: bold;
}

#menuh ul
{
	list-style:none;
	margin: 0;
	padding: 0;
	float:left;
}

#menuh li
{
	position:relative;
    min-height: 1px; 	/* for IE7 */
    vertical-align: bottom; /* for IE7 */
	width: auto;
	padding: 0 20px 0 20px;
	float: left;
}

li#list_spacer
{
	width: 54px;
	height: 33px;
	float: left;
}
div#footer_menu
{
	width: 911px;
	margin: 0 auto;
	height: 22px;
	
}

div#footer_menu a
{
	text-align: center;
	display: block;
	white-space: nowrap;
	margin: 1px 0 0 0;
	height: 10px;
	padding: 9px 8px 0px 8px;
	text-decoration:none;
	color: #000;
	font-size: 0.6em;
	font-weight: bold;
}


div#footer_menu a:hover	/* menu at mouse-over  */
{
	color: #000000;
	text-decoration: underline;

}	

div#footer_menu ul
{
	list-style:none;
	margin: 0;
	padding: 0;
	float:left;	
}

div#footer_menu li
{
	position:relative;
    min-height: 1px; 	/* for IE7 */
    vertical-align: bottom; /* for IE7 */
	width: auto;
	padding: 0 1px 0 1px;
	float: left;
}
/* end of file */







