/* this is the main UL element*/
.dropdown{
        float:left;
        display:none;
	margin:0;
        margin-right:0px;
	padding:0;
	list-style:none;
	border-bottom:0px;
}

/* 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;
	padding-right: 10px;
	padding-left: 45px;
	padding-bottom: 6px;
	padding-top: 15px;
	background-color: #0e95da;
	cursor:pointer;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a{
    font-family: Arial,Helvetica,sans-serif;
	text-decoration:none;
	color:#FFFFFF;
    font-size: 14px;
    
    font-weight: bold;
}

.dropdown a:hover{
	text-decoration:underline;
}

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

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down{
        margin-left:10px;
	background:#0e95da center left no-repeat;
	padding-right: 10px;
	padding-left: 10px;
	padding-bottom: 10px;
	padding-top: 10px;
	width:250px;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.submenu-left{
	background:#000 url('expand_right.gif') center right no-repeat;
	padding-right:10px;
	width:250px;
}