/*-----------------------------------------*/
/* DYNAMENU BLOCK ACTIVE MENU STYLE SHEETS */
/*-----------------------------------------*/
/* Note: the "redundant" declarations of font size, styles, etc... for the various
   ANCHOR (a) objects are to compensate for the fact that many free/commercial
	 themes do not take advantage of the "cascading" nature of style sheets and
	 hard-code properties into the theme's default anchor objects, thus overiding other
	 uses of them in your theme.  Ideally, you should be able to specify the font
	 style, size, etc... in the first ".blahitem a" element and then just the color
	 in subsequent "states" of the anchor object (hover, visited, etc...) If your
	 theme is more in line with proper CSS techniques, feel free to make those adjustments
	 to the styles below */ 
	 

/*-------------------------------------*/
/*   Horizontal Drop-Down Menu Style   */
/*-------------------------------------*/

.menucontainer {
        background-color: #451647;
}  

.horbar	{   /* Color of main horizontal menubar and border */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #DDDDDD;
	
		
	padding-left: 20px;
	
	background-color: #451647;
}

.horizitem	{          /* Behaviour of main horizontal menu items, leave as is for proper operation */
	float: left;
	white-space: nowrap;

}

.horizitem a {              /* Font style, size of main menu items */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #DDDDDD;	
	text-decoration: none;
	

	line-height: 18px;
	
	position: relative;	
	display: block;	

}

.horizitem a:link, .horizitem a:visited 	{      /* Font style & color of main menu items */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #DDDDDD;	
	text-decoration: none;
	
	
}

.horizitem a:hover	{       /* Font style & color, background menu color of main menu item when hovered over */
	
	background-color: #451647;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #DDDDDD;	
	text-decoration: none;

}

.horizitem a:active	{       /* Font style & color, background menu color of main menu item when clicked */
	
	background-color: #451647;	
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #DDDDDD;	
	text-decoration: none;

}

.horizsubmenu	{       /* Behaviour of sub-menu items - leave as is for proper operation of submenus */
	position: absolute;
	left: 0;
	top: 0;
	visibility: hidden;
}

.horizsubframe	{      /* Color of submenu item and border */
	background-color: #451647;
	border: 0px solid;
	
	position: relative;
	display: block;	
}

.horizsubitem	{       /* Behaviour of sub-menu items - leave as is for proper operation of submenus */
	text-align: left;
	white-space: nowrap;
}

.horizsubitem a {            /* Font style, size of submenu items */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #DDDDDD;	
	text-decoration: none;

	line-height:18px;
	padding-right: 6px;
	padding-left: 6px;
	
	position: relative;
	display: block;	
}

.horizsubitem a:link, .horizsubitem a:visited	{       /* Font color, style of submenu items */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #DDDDDD;		
	text-decoration: none;

}

.horizsubitem a:hover	{      /* Font color, style, background submenu color of submenu item when hovered over */

	background-color: #3D5C42;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #DDDDDD;	
	text-decoration: none;

}

.horizsubitem a:active	{      /* Font color, style, background submenu color of submenu item when clicked */
	background-color: #451647;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #DDDDDD;		
	text-decoration: none;

}

.horizsubitem .horizfwdarr, .horizitem .horizfwdarr	{      /* Positioning of right arrow for submenus */
	position: absolute;
	top: 5px;
	right: 8px;
}

.horizsubseparator	{   /* Style for line-separator in horizontal submenus - Use '---' for Link title to display */
	background-color: #ff0000;
	border-top: 1px solid #cdcecd;
	border-bottom: 1px solid #ffffff;
	margin: 2px 0px 2px 0px;	/* top right bottom left */
	height: 0px;
	font-size: 1px;
	line-height: 0px;
}

