/* 
Title: Vertical CSS menu with a behavior file.
Author: Stefan Vervoort
Blog: http://www.divitodesign.com/blog/ 
Article: http://www.divitodesign.com/blog/2008/01/vertical-css-menu-with-a-behavior-file/
*/

body {
	behavior: url(csshover.htc);
}
 
#vertmenu a {
	color: #B36000;
	text-decoration: none;
	}

#vertmenu ul {
	list-style: none;
	margin: 0 0 0 0px;
	padding: 0px 0 0 0px;
	width:180px;
	}

#vertmenu ul li {
	font: bold 10px verdana,sans-serif;
	height:30px;
	width:180px;
	background:#B36000 url("images/template/button04.png") no-repeat;
	position: relative;
	float:left;
	}
	
#vertmenu ul li ul li{
	background:#B36000 url("images/template/button04.png") no-repeat;
	}

#vertmenu ul li a{
	display:block;
	text-align:center;
	line-height:30px;
	height:30px;
	padding: 0px 0 0 0px;
	}

#vertmenu ul li a:hover {
	color: black;
	padding: 0px 0 0 15px;
	font-size:110%;
	line-height:30px;
	height:30px;
	width:180px;
	background: #B36000 url("images/template/button06.png") no-repeat;
	}

#vertmenu ul li ul li a:hover{
	padding: 0px 0 0 15px;
	background: #B36000 url("images/template/button06.png") no-repeat;
	/*	border: solid #BF8C5F 1px 0px 0px 1px;   */
}

#vertmenu ul ul {
	position: absolute;
	top: 5px;
	display:none;
}

#vertmenu ul li:hover ul{
	display: block;
	left:180px;
}

/* ************************************************************************* */

#links a {
	color:purple;
	}

#links ul {
	text-align:left;
	list-style-type:disc;
	padding-left:0px;
	border:solid red 0px;
	}

#links ul li {
	font-size:80%;
	}
