/*
	--------------------------------------
	    HORIZONTAL MENU
	--------------------------------------
*/
	div#pageMenu
	{
		padding-left: 15px;
	}
	
	.hmenu
	{
		width:100%;								/* DO NOT EDIT; Width of the menu */
		height: 35px;							/* Height of menu area */
		/*background-color: #eee;*/				/* Background color of menu area */
	}
	
	li a
	{
		color: #474747 !important;
	}
	
	.hmenu div.menuItem
	{	
		background-image: url(../gfx/gfx_menu_bg.gif);
		background-repeat: repeat-x;
		background-position: 0% 0%;
	}
	
	.hmenu a
	{
		color:#474747;								/* Text decoration for linked menu items */						
		display: block;							/* DO NOT EDIT; How to display the items (<li>) */
		border-width: 0px;						/* Border width for menu item */
		border-style: solid;					/* Border style for menu item */
		border-color: #ccc black black #ccc;	/* Border color for menu item (top, right, bottom, left) */
		/*white-space: nowrap;*/					/* Whether to word wrap item text or not (normal, pre, nowrap) */
		margin:0;								/* Margin of menu items */					
		padding: 9px 0 9px 9px;							/* Padding of menu items */
	}
	
	
	.hmenu ul ul a
	{
		font: verdana;
		/*background:red;*/						/* Background color for linked menu items */
		text-decoration:none;					/* Text decoration for linked menu items */
		background-color:white;
		border-width: 0px 1px 1px 1px;
		border-style: solid;
		border-color: #eee;
		/*background-image: url(../gfx/gfx_menu_bg.gif);
		background-repeat: repeat-x;
		background-position: 0% 0%;*/
		color:#FFF;
	}
	
	.hmenu a:visited
	{
		font: verdana;
		font-size: 11px;
		color:#FFF;								/* Font color for visited menu item links */
	}
	
	.hmenu a:hover
	{
		font: verdana;
		font-size: 11px;
		color:#FFF;								/* Font color for hovered menu item links */
		/*background:red;*/						/* Background color for hovered menu item links */
	}
	
	.hmenu a:active
	{
		font: verdana;
		font-size: 11px;
		color:#FFF;								/* Font color for active menu item links */
		/*background:red;*/						/* Background color for active menu item links */
	}
	
	.hmenu ul
	{
		list-style:none;						/* DO NOT EDIT; List style type (none, square, upper-alpha, decimal, lower-roman) */
		margin:0;								/* DO NOT EDIT; Margin of entire menu tree (only this branch) */
		padding:0;								/* DO NOT EDIT; Padding of entire menu tree (only this branch) */
		float:left;								/* DO NOT EDIT; Float left */
		width:140px;							/* DO NOT EDIT; Width of 0-level menu branch */
	}
	
	.hmenu li
	{
		position:relative;						/* DO NOT EDIT; Position of menu items */
	}
	
	.hmenu ul ul
	{
		position: absolute;						/* DO NOT EDIT; Position of sub <ul> */
		z-index: 500;							/* DO NOT EDIT; Z index of sub ul */
		top: auto;								/* DO NOT EDIT; Position from top */
		display: none;							/* DO NOT EDIT; Default displaying of sub ul */	
		width:180px !important;					/* Width of menu branch */		
	}
	
	.hmenu ul li ul
	{
			
	}
	
	.hmenu ul ul ul
	{
		top:0;									/* DO NOT EDIT; Position from top */
		left:100%;								/* DO NOT EDIT; How far to push from left */
	}
	
	/* Begin non-anchor hover selectors */
	
	/* Enter the more specific element (div) selector
	on non-anchor hovers for IE5.x to comply with the
	older version of csshover.htc - V1.21.041022. It
	improves IE's performance speed to use the older
	file and this method */
	
	div.hmenu h2:hover
	{
		/*background:#000 url(/css/images/expand3.gif) no-repeat -999px -9999px;*/
	}
	
	div.hmenu li:hover
	{
		cursor:pointer;
		z-index:100;
	}
	
	div.hmenu li:hover ul ul,
	div.hmenu li li:hover ul ul,
	div.hmenu li li li:hover ul ul,
	div.hmenu li li li li:hover ul ul
	{display:none;}
	
	div.hmenu li:hover ul,
	div.hmenu li li:hover ul,
	div.hmenu li li li:hover ul,
	div.hmenu li li li li:hover ul
	{display:block;}
	
	/* End of non-anchor hover selectors */
	
	/* Styling for Expand */
	
	.hmenu a.x, .hmenu a.x:visited
	{
		color:#000;
		/*background:#eee url(/css/images/expand3.gif) no-repeat 100% 100%;*/
	}
	
	.hmenu a.x:hover
	{
		color:#a00;
		background:#ddd;
	}
	
	.hmenu a.x:active
	{
		color:#060;
		background:#ccc;
	}
	
	/* End CSS Popout Menu */