/* this is the main UL element*/
.dropdown {
	margin:					0 0 15px 0;
	padding:				0;
	list-style:				none;
	background:				#E1EFF6;
	visibility:				hidden;
}

/* these are the inner menus*/
.dropdown ul {
	margin:					0;
	border-top:				1px solid #FFF;
	padding:				0;
	list-style:				none;
}

/* these are all the LIs in the menu*/
.dropdown li {
	margin:					0;
	border-right:			15px solid #FFF;
	padding:				3px 5px;
	width:					120px;
	height:					34px;
	background-color:		#E1EFF6;
	cursor:					pointer;
}

.dropdown li:hover {
	background-color:		#D4ECFB;
}

.dropdown li#cpage {
	background-color:		#C2DFED;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a {
	width:					100%;
	color:					#849BA7;
	font-size:				12px;
	font-weight:			bold;
	text-decoration:		none;
}

.dropdown a:hover {
	text-decoration:		underline;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li {
	margin-left:			-1px;
	border:					1px solid #FFF;
	border-top:				0;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu {
	/*background-image:url('../images/expand_down.gif');
	background-position:center left;
	background-repeat:no-repeat;*/
	width:					120px;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown ul li.submenu{
	/*background-image:url('../images/expand_right.gif');
	background-position:center right;*/
	padding:				3px 5px;
	width:					120px;
	height:					34px;
}