/* 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;
	border-top:1px solid #444;
	list-style:none;
}

/* these are all the LIs in the menu*/
.dropdown li
{
	margin:0;
	padding-right:15px;
	padding-left:15px;
	background-color:#FFF;
	cursor:pointer;
	border-top:0;
}

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

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

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

.dropdown>li:first-child
{
	/*
border-top:1px solid #444;
*/
}

.subMenuLarge
{
	width:175px;
}

.subMenuMedium
{
	width:150px;
}

.subMenuSmall
{
	width:125px;
}