/* this is the main UL element*/
.dropdown{
	visibility:hidden;
	margin:0;
	padding-left:30px;
	list-style:none;color:#333333;
	padding-top:20px;
	padding-bottom:40px;
	background:url(../img/tv.png) top left no-repeat;
}

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding:0;
	list-style:none;
		
	
}

.dropdown ul li{
margin:0;
padding:0;
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding:5px;
	cursor:pointer;
	border-bottom:3px solid #ccc;
	
}
.dropdown li:hover{
	border-bottom:3px solid #fff;
	
}

/* these are anchor in the menu */
.dropdown a{
	margin:0;
	padding:0;
	text-decoration:none;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	width:100%;
	font-size:12px;
	font-weight:bold;
	text-align:center;
	color:#fff;
}

.dropdown a:hover{
	text-decoration:none;
	color:#fff;

}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{

	padding:0;
	margin-left:-1px;
	width:235px;
	text-align:left;
	background: url(../img/dark_transparent.png) repeat;
	color:#6a5b51;
	border:none;
}
.dropdown ul li:hover{
	border:none;
}
.dropdown ul li a{
	padding-top:5px;
	padding-bottom:5px;
	margin:0;
	text-align:left;
	color:#fff;
	
}
.dropdown ul li a:hover{
	color:#333333;
	background:#ccc;
}
/* 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 themselves*/
.dropdown ul li.submenu{


}