@charset "iso-8859-1";

/*
*  rMenu.css : 2006.10.17 : 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 {
	display: block;		
	margin: 0;
	padding: 0;		
        line-height: 20px;
}
ul.rMenu, ul.rMenu li, ul.rMenu ul {
	list-style: none;	
}
ul.rMenu ul {
	display: none;		
	position: absolute;	
}
ul.rMenu li {
	position: relative;	
	margin-top: 10px;
}
ul.rMenu li:hover {
	z-index: 999;		
}
ul.rMenu li:hover > ul {
	display: block;		
}

/*
 * Extended Menu Mechanics
 */
ul.rMenu-hor li {
	float: left;
	width: auto;
}
ul.rMenu-hRight li {
	float: right;	
}
ul.rMenu-ver li {
	float: none;		
}
ul.rMenu-ver, ul.rMenu-ver ul {
	width: 10em;		
}
ul.rMenu-wide {
	width: auto;		
}
ul.rMenu-vRight {
	float: right;		
}
ul.rMenu-lFloat {
	float: left;	
}
ul.rMenu-noFloat {
	float: none;		
}

/*
 * DROP POSITIONS
 */
ul.rMenu-hor ul {
	top: auto;		
	right: auto;
	left: auto;		
	margin-top: -1px;	
}
ul.rMenu-ver ul {
	left: 60%;
	right: auto;
	top: auto;
	margin-top: -0.5em;	
}
ul.rMenu-vRight ul, ul.rMenu-hRight ul.rMenu-ver ul {
	left: -60%;
	right: auto;
	top: auto;
	margin-top: -0.5em;	
}
ul.rMenu-hRight ul {
	left: auto;
	right: 0;		
	top: auto;
	margin-top: -1px;	
}

/*
 * PRESENTATION : General
 */
ul.rMenu-hor li {
	margin-bottom: 0;	
	margin-left: 5px;	
}
ul.rMenu-h {
	padding-left: 1px ;	
}
ul.rMenu-ver li {
	margin-left: 0;
	margin-top: -1px;	
}

ul.rMenu li a {
	padding: 2px 5px 3px;	
}

/*
 * 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;
	background-repeat: no-repeat;
	background-position: 100% 50%;
}
ul.rMenu-vRight li.rMenu-expand a,
ul.rMenu-vRight li.rMenu-expand li.rMenu-expand a,
ul.rMenu-vRight li.rMenu-expand li.rMenu-expand li.rMenu-expand a,
ul.rMenu-hRight li.rMenu-expand a,
ul.rMenu-hRight li.rMenu-expand li.rMenu-expand a,
ul.rMenu-hRight li.rMenu-expand li.rMenu-expand li.rMenu-expand a {
	padding-right: 5px;
	padding-left: 20px;
	background-repeat: no-repeat;
	background-position: -5px 50%;
}
ul.rMenu-hor li.rMenu-expand a {
	padding-left: 5px;	/* reset padding */
	padding-right: 15px;
	background-position: 100% 50%;
}
ul.rMenu li.rMenu-expand li a,
ul.rMenu li.rMenu-expand li.rMenu-expand li a,
ul.rMenu li.rMenu-expand li.rMenu-expand li.rMenu-expand li a {
	background-image: none;
	padding-right: 5px;	/* reset padding */
	padding-left: 5px;	/* reset padding */
}
li.rMenu-expand ul.rMenu-ver li {
	background-color: #ab9e89;
}
/*
 * HACKS : General
 */
* html ul.rMenu {
	display: inline-block;	
	/* \*/ display: block;	
	position: relative;	
	/* \*/ position: static;
}
* html ul.rMenu ul {
	float: left;		
}
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-ver li a {
	min-width: 0;		
}
* html ul.rMenu-ver li a {
	height: auto;		
	/* \*/ height: 100%;	
}
* html ul.rMenu-h {	/* hide from IE Mac \*/
	padding-left: 2px;	
}
* html ul.rMenu-hor li {
	width: 6em;		
	/* \*/ width: auto;	
}

/*
 * HACKS : Suckerfish
 */
* html ul.rMenu li.sfhover {
	z-index: 999;
}
* 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 ^ */
}

/*
 * HACKS : Clearfix
 */
.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}
.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 */ 
}
