/*
		HORIZONTAL MENU Example
		more menu exmaples here: http://css.maxdesign.com.au/listamatic/
*/
#menu_horizontal ul {
	list-style-image:none;
	list-style-type:none;	
	display:inline;
	margin: 0px;
	padding:0px;
	font-size: 12px;
}

#menu_horizontal ul li {	
	display: inline;
}

#menu_horizontal ul li.level0 a{	
	float: left;
	padding: 4px 13px 4px 11px;
	text-decoration: none;
	color: gray;
	background-color: silver;

	margin-right:1px;
}

#menu_horizontal ul li.level0current a{
	float: left;	
	padding: 4px 13px 4px 11px;
	text-decoration: none;
	color: white;
	background-color:gray;
	margin-right:1px;
	font-weight: bold;	
}


#menu_horizontal ul li.level0 a:hover,
#menu_horizontal ul li.level0current a:hover {
	color:white;
	
}

/*
		VERTICAL MENU Example
*/

#menu_vertical ul {
	list-style-image:none;
	list-style-type:none;
	list-style-position:outside;
	margin: 0;
	padding: 0;
	text-align: left;
}

#menu_vertical ul li {
	list-style-image:none;
	list-style-type:none;
	list-style-position:outside;
	}

#menu_vertical ul li.level1 a {		
	display: block;
	background: silver url(gfx/vmenuarrow.gif) no-repeat center left;	
	color: gray;
	padding: 5px 0 5px 19px;
	margin: 0 0 1px 0;
	text-decoration: none;
	font-weight: bold;
}

#menu_vertical ul li.level2 a {
	display: block;
	background: silver;
	color: gray;
	padding: 5px 0 5px 19px;
	margin: 0 0 1px 0;
	text-decoration: none;
	text-indent: 5px;
}

#menu_vertical ul li.level1current a {
	display: block;	
	padding: 5px 0 5px 19px;
	margin: 0 0 1px 0;
	text-decoration: none;	
	background: black url(gfx/vmenuarrowhover.gif) no-repeat center left;	
	font-weight: bold;	
	color: white;
}

#menu_vertical ul li.level2current a {
	display: block;	
	padding: 5px 0 5px 19px;
	margin: 0 0 1px 0;
	text-decoration: none;	
	background: silver url(gfx/vmenuarrowhover.gif) no-repeat center left;
	font-weight: bold;	
	color: gray;
	text-indent: 5px;
}


#menu_vertical ul li.level1 a:hover,
#menu_vertical ul li.level1current a:hover {
	background-color: gray;
	color: white;
}

#menu_vertical ul li.level2 a:hover {
	color: black;
}