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

/* 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;
	padding-top:1px;
}

/* 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:#B9B9B9;
	width:100%;
}

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

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	height:35px;
	border-top:0;
	margin-left:-5px;
	margin-top:-10px;
	width:100px;
	background-image: url(../images/bullet_arrow_down.png);
	background-repeat: no-repeat;
	background-position: left top;
	
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down{
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.submenu-left{
	padding-right:20px;
	width:105px;
}

.linkSK {

	padding-left:5px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
	color:#666666;
}