/*
#nav{
			position: absolute;
			top: 90px;
			left: 0;
			height: 25px;
			z-index: 100;
		}
		
			#nav li{
				float: left;
				padding-right: 2px;
			}
			
			#nav li a{
				float: left;
				padding: 5px 8px 0 8px;
				height: 20px;
				color: #fff;
				font-weight: bold;
				background: url('/images/restyle/nav-passive.gif') top left repeat-x;
			}
			
			#nav li a:hover, #nav li.active a{
				text-decoration: none;
				color: #000;
				background: url('/images/restyle/nav-active.gif') top left repeat-x;
			}
			*/

/* this is the main UL element*/
.dropdown{
	display:none;
	margin:0;
	padding:0;
	list-style:none;
	position: absolute;
	top: 90px;
	left: 0;
	height: 25px;
	z-index: 100;	
}

/* these are the inner menus*/
.dropdown ul{
	margin: 3px 0 0 0;
	padding:0;
	list-style:none;
}

/* these are all the LIs in the menu*/
.dropdown li{
	float: left;
	padding-right: 2px;
}

.dropdown li a{
	float: left;
	padding: 5px 8px 0 8px;
	height: 20px;
	color: #fff;
	font-weight: bold;
	background: url('/images/restyle/nav-passive.gif') top left repeat-x;
}

.dropdown li a:hover {
	text-decoration: none;
	color: #000;
	background: url('/images/restyle/nav-active.gif') top left repeat-x;
}

.dropdown ul li a{
	width: 175px;
	text-align: left;
}

.dropdown ul li a:hover {
	text-decoration: none;
	color: #000;
	background: url('/images/restyle/nav-active.gif') top left repeat-x;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website
.dropdown a{
	float: left;
	padding: 5px 8px 0 8px;
	height: 20px;
	color: #fff;
	font-weight: bold;
	background: url('/images/restyle/nav-passive.gif') top left repeat-x;
}

.dropdown a:hover{
	text-decoration: none;
	color: #000;
	background: url('/images/restyle/nav-active.gif') top left repeat-x;
}
*/
/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down{
	
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.submenu-left{
	background:#000 url('expand_right.gif') center right no-repeat;
	padding-right:20px;
	width:105px;
}