/* Menu */
#menu {
	padding: 2px;
	border-top: 1px solid black;
	/*background-color: #94846F;*/
	background-image: url(../images/menubg.png);
}

#menu li.current a {
	color: #E6D7AE;
	text-decoration: underline;
}

#menu a {
	color: #FFFFE0;
	font-weight: bold;
	text-decoration: none;
}

#menu a:hover {
	text-decoration: underline;
}

#menu ul {
	margin-left: 0px;
	padding-left: 0px;
	
	display: inline;
}

#menu ul li {
	margin-left: 0px;
	padding: 3px 10px;

	display: inline;
	border-left: 1px solid #000;
	list-style: none;
}

#menu ul li.first {
	border-left: none;
}

/* 
	Submenu 
*/
#leftside {
	width: 150px;
	float: left;
	
	padding: 0px;	
	margin: 0px;
}

#ads {
	text-align: center;
	margin-top: 50px;
}

#submenu {
	width: 150px;

	margin-top: 0px;
	padding-top: 6px;
	
	border: 1px solid gray;
	border-top: 0px;
	border-bottom: 3px solid silver;
	
	background-color: #F5F5F5;	
	
}

#submenu ul {
	margin: 0px auto 5px 0px;
	padding-left: 0px;
}

#submenu ul li {
	padding-left: 0px;
	margin-left: 0px;
	
	list-style: none;
	
	border: 1px solid #F5F5F5;
	border-left: 2px solid #F5F5F5;
	border-right: 2px solid #F5F5F5;
	
	/* stupid Internet Explorer hover fix */
	/* REMOVED TEMPORARILY behavior: url(javascript/submenu-hover.htc); */
}

#submenu ul li:hover {
	background-color: #ddd;
	
	border: 1px solid Silver;
	border-left: 2px solid #ddd;
	border-right: 2px solid #ddd;
}

#submenu ul li.current, #submenu ul li.current:hover {
	border-left: 2px solid #94846F;
	border-right: 2px solid #94846F;
	
	background-image: url(../images/currentmenu-arrow.gif);
	background-repeat: no-repeat;
	background-position: right;
}

#submenu a {
	width: 100%;
	display: block;
	
	text-decoration: none;
	text-indent: 5px;
	color: black;
}

#submenu a:hover {
	color: darkred;
}

#submenu h3 {
	font-size: 80%;
	font-weight: bolder;
	color: gray;
	
	text-align: center;
	text-transform: uppercase;
	
	border-top: 1px solid silver;
	border-bottom: 1px solid gray;

	padding-left: 5px;
	padding-right: 10px;
	
	margin: 10px auto 4px auto;

	background-position: center;
	background-image: url(../images/submenu_seperator.png);
}

#menu ul li.selected {
	background-color: gray;
}