

ul{
	margin:0;
	padding:0;
}

ul.container{

}

li{
	list-style:none;
	text-align:left;
}

li.menu{
	/* The main list elements */
	padding:5px 5px;
	width:100%;
}

li.button a{
	/* The section titles */
	display:block;
	font-size:12px;
	height:19px;
	overflow:hidden;
	padding:5px 10px 0;
	position:relative;
	width:200px;
	font-weight:bold;
	color:#fff;
}

li.button a:hover,li.button a:link,li.button a:visited,li.button a:active{
	/* Removing the inherited underline from the titles */
	text-decoration:none;
	color:#fff;
}

li.button a span{
	/* This span acts as the right part of the section's background */
	height:24px;
	position:absolute;
	right:0;
	top:0;
	width:4px;
	display:block;
	color:#fff;
}

/* Setting up different styles for each section color */

li.button a{background:url(../images/blue.png) repeat-x top left; color:#fff;}
li.button a span{ background:url(../images/blue.png) repeat-x top right;}


/* The hover effects */

li.button a:hover{ background-position:bottom left;}
li.button a:hover span{ background-position:bottom right;}

.dropdown{
	/* The expandable lists */
	display:none;
	padding-top:5px;
	width:220px;
}

.dropdown li{
	/* Each element in the expandable list */
	background-color:#484848;
	border:1px solid #666;
	color:#CCCCCC;
	margin:5px 0;
	padding:4px 18px;
}
.dropdown li a{
	color:#fff;
}