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

}

/* these are the inner menus*/
.dropdown2 ul{
	margin:0;
	padding:0;

	list-style:none;	
}

/* these are all the LIs in the menu*/
.dropdown2 li{
	margin:0;
	padding:5px;
	width:60px;
	cursor:pointer;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown2 a{

	font-size: 12px;
	color: #000;
}

.dropdown2 a:hover{
	text-decoration:none;
	
}

/* these are the LIs that only belong to submenu*/
.dropdown2 ul li{
		background-color:#fff;
	border-top:0;
	margin-left:-1px;
}

/* these are the LIs that contains a submenu*/
.dropdown2 li.submenu2{

	width:60px;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown2 ul li.submenu2{


	padding:5px;
	width:120px;
}