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

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

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	cursor:pointer;
	text-align: center;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a{
	text-decoration:none;
	font: bold 11px/34px Georgia, "Times New Roman", Times, serif;
	color: #333;
	border-top: 5px solid transparent;
	padding: 0 13px;
}
.dropdown a:hover{
 	color: #fff;
	border-top: 5px solid #fff;
	
}
.dropdown .rightline {
	border-right:1px dotted #fff;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border-top:0;
	background: #cee8f7;
	text-align: left;
	width: 200px;
}
.dropdown ul li ul li{
	border-top:0;
	background: #cee8f7;
	text-align: left;
	position: relative;
	width: 185px;
	left: -15px;
}
/* these are the LIs that contains a submenu*/
.dropdown li.submenu{
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown ul li.submenu{
}
.dropdown ul li a {
	text-decoration:none;
	font: 10px/18px Georgia, "Times New Roman", Times, serif;
	color: #333;
	padding: 4px 0 4px 4px;
	width: 190px;
	border-bottom: 1px dotted #999;
	margin: 0;
	border-left: 4px solid #fff;
	border-top: 1px solid #ccc;
	border-right: 1px solid #ccc;
}
.dropdown ul li a:hover {
	color: #298cc7;
	border-top: 1px solid transparent;
	background: #f4f4f4;
	border-left: 4px solid #298cc7;
}
.dropdown ul {
	
}
.dropdown ul li ul li a {
	text-decoration:none;
	font: 10px/18px Georgia, "Times New Roman", Times, serif;
	color: #333;
	padding: 4px 0 4px 4px;
	width: 175px;
	border-top: 1px solid transparent;
	margin: 0;
}
.dropdown ul li ul li a:hover {
	color: #298cc7;
	border-top: 1px solid transparent;
	background: #f4f4f4;
	border-left: 4px solid #298cc7;
}
.dropdown ul li ul li {
	margin-left: 15px;
}
.dropdown ul li ul {
	margin-top: 0;
}