/*-------------------------------------*/
/*   Horizontal Drop-Down Menu Style   */
/*-------------------------------------*/
.horbar	{   /* Color of main horizontal menubar and border */
}
.horizitem	{          /* Behaviour of main horizontal menu items, leave as is for proper operation */
	float: left;
	white-space: nowrap;
}
.horizitem a {              /* Font style, size of submenu items */
	font-family: Verdana, Arial, sans-serif;
	font-size: 12px;
        font-weight: bold;	
	text-decoration: none;
	position: relative;	
	display: block;
	color: #ffffff;
        padding: 8px;	
}
.horizitem a:link 	{      /* Font style & color of main menu items */
	color: #ffffff;
	text-decoration: none;
        padding: 8px;	
}
.horizitem a:hover	{       /* Font style & color, background menu color of main menu item when hovered over */
	color: #2b74b4;
        background-color: #ffffff;
	text-decoration: none;
        padding: 8px;
}
.horizitem a:active	{       /* Font style & color, background menu color of main menu item when clicked */
	color: #2b74b4;	
	text-decoration: none;
        padding: 8px;
}
.horizsubmenu	{       /* Behaviour of sub-menu items - leave as is for proper operation of submenus */
	position: absolute;
	left: 10px;
	top: 0;
	visibility: hidden;
}
.horizsubframe	{      /* Color of submenu item and border */
	background-color: #ffffff;
	border: 1px solid #2b74b4;	
	position: relative;
	width: 200px;
	display: block;	
}
.horizsubitem {       /* Behaviour of sub-menu items - leave as is for proper operation of submenus */
	text-align: left;
	border-bottom: 1px solid #2b74b4;
	white-space: nowrap;
}
.horizsubitem a {            /* Font style, size of submenu items */
	font-family: Verdana, Arial, sans-serif;
	font-size: 12px;
        font-weight: bold;	
	text-decoration: none;	
	position: relative;
	display: block;
	padding:8px;
        color: #2b74b4;	
}
.horizsubitem a:link	{       /* Font color, style of submenu items */
	color: #2b74b4;
	font-size: 12px;
        font-weight: bold;	
	text-decoration: none;
}
.horizsubitem a:hover	{      /* Font color, style, background submenu color of submenu item when hovered over */
	color: #2b74b4;
	background-color: #cccccc;
        font-weight: bold;
	text-decoration: none;
}
.horizsubitem a:active	{      /* Font color, style, background submenu color of submenu item when clicked */
	color: #2b74b4;
	background-color: #ffffff;		
	text-decoration: none;
}
.horizsubitem .horizfwdarr, .horizitem .horizfwdarr	{      /* Positioning of right arrow for submenus */
	position: absolute;
	top: 5px;
	right: 8px;
}
.dmselected {   /* Style override for selected category tree */
        font-weight: bold;
}
.horbar .dmselected {   /* Style override for selected root category */
}
