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

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


.dropdown ul li ul {
	padding-left: 0px;
	padding-top: 1px;
}
/* these are all the LIs in the menu*/

.dropdown li:hover {
	background: #a12233;
}
.dropdown ul li:hover a {
	color: #fff;
}
.dropdown ul li:hover ul li a {
	color: #333;
}

.dropdown li {
	background: #fff;
}

.dropdown li a {
	font: 12px "tahoma","arial";
	font-weight: normal;
	color: #333;
}

.dropdown li.parent:hover .parentlink {
	color: #fff;
}

.dropdown li {
	margin:0;
	padding:5px;
	width:120px;
	cursor:pointer;
	
}

.dropdown li.parent{
	margin:5px;
	padding:0;
	width:140px;
	height:80px;
	background: url('/images/button.png');
	cursor:pointer;
}

.dropdown li.parent:hover{
	background: url('/images/button_sel.png');
}

.dropdown li.parent .parentlink {
	color: #545454;
	font: 14px "trebuchet ms","trebuchet","DejaVu Sans Mono","LMSans 9","sans-serif";
	font-weight: bold;
	text-decoration: none;
	text-transform: uppercase;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a{
	text-decoration:none;
	width:100%;
}

.dropdown a:hover{
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border:1px solid #444;
//	border-top:0;
	margin-left:-1px;
	margin-top: -1px;
}

/* these are the LIs that contains a submenu*/


/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.submenu-left{
	padding-right:20px;
	width:105px;
}

.dropdown ul li ul li:hover a {
	color: #fff;
}

