@CHARSET "UTF-8";

/*******************************************************************************
*  rMenu.css : 2007.06.08 : ruthsarian@gmail.com
* ------------------------------------------------------------------------------
* Ruthsarian Menus - A CSS-based dropdown menu system
*
* ------------------------------------------------------------------------------
*  This stylesheet is released into the public domain.
*******************************************************************************/

/*******************************************************************************
 * General Menu Mechanics
 *
 */
ul.rMenu, ul.rMenu ul, ul.rMenu li, ul.rMenu a, ul.rMenu p
{
	display: block;
	margin: 0;
	padding: 0;
}
ul.rMenu, ul.rMenu li, ul.rMenu ul
{
	list-style: none;
}
ul.rMenu ul
{
	display: none;
}
ul.rMenu li
{
	position: relative;
	z-index: 1;
}
ul.rMenu li:hover
{
	z-index: 999;
}
ul.rMenu li:hover > ul
{
	display: block;
	position: absolute;
}

/*******************************************************************************
 * Extended Menu Mechanics
 *
 * These rules exist only for specific menu types, such as horizontal or
 * vertical menus, right or left aligned menus.
 */
ul.rMenu-hor li
{
	float: left;
	width: auto;
}
ul.rMenu-ver li
{
	float: none;
}
ul.rMenu-ver, ul.rMenu-ver ul
{
	width: 190px;
}

/*******************************************************************************
 * DROP POSITIONS
 *
 */
ul.rMenu-hor ul
{
	top: auto;
	right: auto;
	left: auto;
	margin-top: 0;
}
ul.rMenu-ver ul
{
	left: 60%;
	right: auto;
	top: auto;
	margin-top: -0.5em;
}
ul.rMenu-ver ul
{
	left: -60%;
	right: auto;
	top: auto;
	margin-top: -0.5em;	
}

/*******************************************************************************
 * PRESENTATION : General
 *
 */
ul.rMenu li a
{
	border: 0;
}
ul.rMenu-hor li
{
	margin-bottom: -1px;
	margin-left: -1px;
}
ul.rMenu-hor
{
	padding-left: 1px ;
}
ul.rMenu-ver li
{
	margin-left: 0;
	border-top: solid 1px #ccd1c5;
	border-bottom: solid 1px #ccd1c5;
	margin-top: -1px;
}
ul.rMenu-ver
{
	/* border-top: solid 1px #fff;*/
}
ul.rMenu li a, ul.rMenu li p
{
	padding: 3px 5px 1px;
}

ul.rMenu li.sfhover p.dropdown, ul.rMenu li:hover p.dropdown
{
	color: #000000;
}
ul.rMenu li
{
	background-color: #d4d4d4;	/* default background color of mainmenu items */
}

ul.rMenu li ul.rMenu-ver
{
	margin-top: -2px;
	border-top: 3px solid #d4d4d4;
}

ul.rMenu li ul.rMenu-ver li
{
	background-color: #dee2da;
}
ul.rMenu li ul.rMenu-ver li a:link, ul.rMenu li ul.rMenu-ver li a:visited, ul.rMenu li ul.rMenu-ver li a:hover, ul.rMenu li ul.rMenu-ver li a:active
{
	font-family: helvetica, verdana, arial, sans-serif;
	font-size: 12px;
	color: #fff;
	font-weight: normal;
	text-decoration: none;
}
ul.rMenu li ul.rMenu-ver li a:hover, ul.rMenu li ul.rMenu-ver li a:active
{
	color: #000;
}

/*******************************************************************************
 * PRESENTATION : Expand
 *
 */
 
ul.rMenu li.rMenu-expand a,
ul.rMenu li.rMenu-expand li.rMenu-expand a,
ul.rMenu li.rMenu-expand li.rMenu-expand li.rMenu-expand a
{
	padding-right: 25px;
}

ul.rMenu-hor li.rMenu-expand a
{
	padding-left: 14px;
	padding-right: 14px;
}
ul.rMenu-hor li.rMenu-expand p.dropdown, ul.rMenu-hor li.rMenu-expand p.selected{
	padding-left: 14px;
	padding-right: 14px;	
}
ul.rMenu li.rMenu-expand p, ul.rMenu li.rMenu-expand a:link, ul.rMenu li.rMenu-expand a:hover, ul.rMenu li.rMenu-expand a:visited, ul.rMenu li.rMenu-expand a:active
{
	font-family: helvetica, verdana, arial, sans-serif;
	font-size: 12px;
	color: #fff;
	font-weight: normal;
	text-decoration: none;
}
ul.rMenu li.rMenu-expand a:hover, ul.rMenu li.rMenu-expand a:active
{
	color: #000000;
}
ul.rMenu li.rMenu-expand p.selected 
{
	color: #000000;
}



/*******************************************************************************
 * HACKS : General
 *
 * These are rules specifically targeted to resolve bugs/quirks that some
 * browser exhibit.
 */
* html ul.rMenu
{
	display: inline-block;
	/* \*/ display: block;
	position: relative;
	/* \*/ position: static;
}
* html ul.rMenu ul
{
	float: left;
	/* \*/ float: none;	
}
ul.rMenu ul
{
	background-color: #fff;
}
* html ul.rMenu-ver li,
* html ul.rMenu-hor li ul.rMenu-ver li
{
	width: 100%;
	float: left;
	clear: left;
}
ul.rMenu li a
{
	position: relative;
}
* html ul.rMenu-hor li
{
	width: 6em;
	/* \*/ width: auto;
}
* html div.rMenu-center
{
	position: relative;
	z-index: 1;
}

/*******************************************************************************
 * HACKS : Suckerfish w/Form Field Support (for IE 5.5 & 6.x)
 *
 */
* html ul.rMenu ul
{
	display: block;
	position: absolute;
}
* html ul.rMenu ul,
* html ul.rMenu-hor ul,
* html ul.rMenu-ver ul,
* html ul.rMenu-vRight ul, 
* html ul.rMenu-hRight ul.rMenu-ver ul,
* html ul.rMenu-hRight ul
{
	left: -10000px;
}
* html ul.rMenu li.sfhover
{
	z-index: 999;
}
* html ul.rMenu li.sfhover ul
{
	left: auto;
}
* html ul.rMenu li.sfhover ul ul, 
* html ul.rMenu li.sfhover ul ul ul
{ 
	display: none;
}
* html ul.rMenu li.sfhover ul, 
* html ul.rMenu li li.sfhover ul, 
* html ul.rMenu li li li.sfhover ul
{
	display: block;		/* ^ ditto ^ */
}

* html ul.rMenu-ver li.sfhover ul
{
	left: 60%;
}
* html ul.rMenu-vRight li.sfhover ul, 
* html ul.rMenu-hRight ul.rMenu-ver li.sfhover ul
{
	left: -60%;		/* ^ ditto ^ */
}
* html ul.rMenu iframe
{
	filter: progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=0);
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}

/*******************************************************************************
 * HACKS : Clearfix
 *
 * Clearfix provides a means to for an element to contain all it's floated 
 * children even if it's not normally tall enough to do so. For more information
 * on clearfix please see:
 * http://www.positioniseverything.net/easyclearing.html
 */
.clearfix:after
{
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
    padding-bottom: 1px;
    margin-bottom: -1px;	/* fix to get rid of a 1px overlap in FireFox */
}
.clearfix
{
	min-width: 0;		/* trigger hasLayout for IE7 */
	display: inline-block;
	/* \*/	display: block;	/* Hide from IE Mac */
}
* html .clearfix
{
	/* \*/  height: 1%;	/* Hide from IE Mac */ 
}

/******************************************************************************/
