/* this is the main UL element*/
.dropdown{
	display:none;
	margin:0;
	padding:0;
	list-style:none;
}

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

/* these are all the LIs in the menu*/
.dropdown li{
	cursor:pointer;
	margin:0px;
	padding:0px;
	/*width: 200px;*/
}
.dropdown ul li{
	width:200px;
	background-color:#FFFFFF;
	border-bottom:1px solid #969696;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a{
	padding: 11px 20px 12px 20px;
	text-decoration:none;
	color:#C61A1E;
	font-size:14px;
	font-weight:bold;
	width:100%;
}

.dropdown a:hover{
	color:#000000;
}

/* these are the LIs that contains a submenu*/
.dropdown li .submenu-down{
	background-image: url(../img/expand_down.gif);
	background-position:right;
	background-repeat:no-repeat;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li .submenu-left{
	background-image: url(../img/expand_right.gif);
	background-position:right;
	background-repeat:no-repeat;
}