/*URL: http://www.dynamicdrive.com/style/ */

/* main container for position and z-index */
#menucontainer {
	position:relative; 
	float:left; 
	width:236px;
	height:270px; 
	left:0px; 
	top:0px;
	z-index: 500;
	xborder: 2px dotted red;
	background-color:#BE9E70;
}

/* items border */
#menucontainer ul {
	xborder-top: 2px solid red;
	xborder-left: 2px solid red;
}

#menucontainer li {
	xborder-right: 2px solid blue;
	xborder-bottom: 2px solid blue;
	width:196px;
}

/* div around the sub menus for frame style */
div.level0 {
	position:absolute;
	z-index: 100;
	xborder: 3px dotted #778;
	padding:16px 20px 10px 20px;
	width: 200px;
}

div.level1 {
	position:absolute;
	z-index: 200;
	xborder: 3px dotted #778;
	width: 200px;
}
div.level2 {
	position:absolute;
	z-index: 300;
	xborder: 3px dotted #778;
	width: 350px;
}

/* list style for each level */
.level0, .level1, .level2 {
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size:18px;
	font-weight:bold;
}

/* style for items and folders (a-tag), hold is the style for activated folders */
.item0, .item1, .item2, .folder0, .folder1, .hold0, .hold1 {
	display: block;
	overflow: auto; /*force hasLayout in IE7 */
	color: #ffffff;
	text-decoration: none;
	padding:6px 6px 6px 30px;
	background-color:#766149;
	line-height: 70%;
	margin-bottom:4px;
}

/* additional image for folders */
.item0, .folder0, .folder1 {
	background-image: url(../img/arrow-black.jpg);
	background-repeat: no-repeat;
	background-position: 3px 50%;
}

/* style mouse over item */
.item0:hover, .item1:hover, .item2:hover {
	background-image: url(../img/arrow-yellow.jpg);
	background-repeat: no-repeat;
	background-position: 3px 50%;
	background-color:#990000;
}

/* style mouse over folder */
.folder0:hover, .folder1:hover, .hold0, .hold1 {
	background-image: url(../img/arrow-yellow.jpg);
	background-repeat: no-repeat;
	background-position: 3px 50%;
	background-color:#990000;
}
/* Holly Hack for IE */
* html .menu div ul li { float: left; height: 1%;}
* html .menu div ul li a { height: 1%; }
/* End */
