@charset "UTF-8";

/*******************************************************************************
*  rMenu.css : 2008.09.30 : ruthsarian@gmail.com
* ------------------------------------------------------------------------------
* Ruthsarian Menus - A CSS-based dropdown menu system
* ------------------------------------------------------------------------------
*  This stylesheet is released into the public domain.
*******************************************************************************/
/*******************************************************************************

 */
ul.rMenu,
ul.rMenu ul,
ul.rMenu li,
ul.rMenu a
{
	display: block;	/* make these objects blocks so they're easier
					   to deal with */
	margin: 0;
	padding: 0;		/* get rid of padding/margin values that these
					   elements may have by default */

}
ul.rMenu,
ul.rMenu li,
ul.rMenu ul
{
	list-style: none;	
}
ul.rMenu ul
{
	display: none;		/* hide the sub-menus until needed */
}
ul.rMenu li
{
	position: relative;	/* so sub-menus position relative to their 
						   parent LI element */
	z-index: 1;
}
ul.rMenu li:hover
{
	z-index: 999;		/* make sure this and any sub-menus that pop 
						   appear above everything else on the page */
}
ul.rMenu li:hover > ul/* hide from IE5.0 because it gets confused by this selector */
{
	display: block;		/* show the sub-menu */
	position: absolute;	/* remove the sub-menus from the flow of the
						   layout so when they pop they don't cause any
						   disfiguration of the layout.
						*/
}

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: 15em;	
}
ul.rMenu-wide
{
	width: 100%;	
}
ul.rMenu-vRight
{
	float: right;	/* use this to float a vertical menu right. */
}
ul.rMenu-lFloat
{
	float: left;	/* use this to float a vertical menu left. */
}
ul.rMenu-noFloat
{
	float: none;	
}

div.rMenu-center ul.rMenu
{
	float: left;
	position: relative;
	left: 50%;
}
div.rMenu-center ul.rMenu li
{
	position: relative;
	left: -50%;
}
div.rMenu-center ul.rMenu li li
{
	left: auto;
}

/*******************************************************************************
 * DROP POSITIONS
 */
ul.rMenu-hor ul
{
	top: auto;		
	right: auto;
	left: auto;		
	margin-top: -1px;
}
ul.rMenu-ver ul
{
	left: 100%;
	right: auto;
	top: auto;
	margin-top: -29px;
}
ul.rMenu-vRight ul,
ul.rMenu-hRight ul.rMenu-ver ul,
ul.rMenu-dRight,
ul.rMenu-dRight 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 li a
{
	border: solid 1px rgb(26,23,27);
	color: white;
}
ul.rMenu-hor li
{
	margin-bottom: -1px;	
	margin-left: -1px;	
}
ul.rMenu-hor
{
	padding-left: 1px ;	
}
ul.rMenu-ver li
{
	margin-left: 0;
	margin-top: -1px;	
}
ul.rMenu-ver
{
	border-top: solid 1px #fff;	
}
ul.rMenu li a {
padding: 4px 10px;
}
ul.rMenu li a:link,
ul.rMenu li a:hover,
ul.rMenu li a:visited,
ul.rMenu li a:active
{
	text-decoration: none;
}
ul.rMenu li.sfhover a:active,
ul.rMenu li:hover a:active
{
	color: #fff;
	background-color: rgb(32,32,32);
}
ul.rMenu li
{
	background-color: rgb(97,97,97);	
}
ul.rMenu li:hover,
ul.rMenu li.sfhover
{
 background-color: #323232;
}
ul.rMenu li a:hover
{
	background-color: #323232;
	color: gold;
}

/*******************************************************************************
 * 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: 5px;
	background-image: url("https://www.airplane-pictures.net/images/expand-right.gif");
	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: 2px;
	padding-left: 25px;
	background-image: url("https://www.airplane-pictures.net/images/expand-left.gif");
	background-repeat: no-repeat;
	background-position: -5px 50%;
}
ul.rMenu-hor li.rMenu-expand a
{
	padding-left: 14px;
	padding-right: 30px;
	background-image: url("https://www.airplane-pictures.net/images/expand-down.gif");
	background-position: 95% 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: 10px;	/* reset padding */
	padding-left: 5px;	/* reset padding */
}

/*******************************************************************************
 * HACKS : General
 */
* 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: #080307;	
}
* html ul.rMenu-ver li,
* html ul.rMenu-hor li ul.rMenu-ver li
{
					
	width: 100%;
	float: left;
	clear: left;	
}
*:first-child+html ul.rMenu-ver > li:hover ul/* hide from IE5.0 because it gets confused by this selector */
{
	min-width: 0;	
}
ul.rMenu li a
{
	position: relative;	
	min-width: 0;		
}
* html ul.rMenu-hor li
{
	width: 6em;	
	/* \*/ width: auto;	
}
* html div.rMenu-center
{
	position: relative;
	z-index: 1;		/* IE 6 and earlier need a little help with
					   z-indexes on centered menus */
}
html/* */:not([lang*=""]) div.rMenu-center ul.rMenu li a:hover {
	height: 100%;	/* for Netscape 6 */
}
html:/* */not([lang*=""])  div.rMenu-center ul.rMenu li a:hover {
	height: auto;	/* reset for Netscape 7 and better */
}

/*******************************************************************************
 * HACKS : Suckerfish w/Form Field Support (for IE 5.5 & 6.x)
 */
* html ul.rMenu ul
{
	display: block;
	position: absolute;	/* ovewrite original functionality of hiding
				   element so we can hide these off screen */
}
* 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;		/* move menus off screen. note we're ovewriting
				   the dropdown position rules that use the 
				   LEFT property, thus all the selectors. */
}
* html ul.rMenu li.sfhover
{
	z-index: 999;		/* not totally needed, but keep the menu 
				   that pops above all other elements within
				   it's parent menu system */
}
* html ul.rMenu li.sfhover ul
{
	left: auto;		/* pull the menus that were off-screen back 
				   onto the screen */
}
* html ul.rMenu li.sfhover ul ul,
* html ul.rMenu li.sfhover ul ul ul
{ 
	display: none;		/* IE/Suckerfish alternative for browsers that
				   don't support :hover state on LI elements */
}
* 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
{
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;		
}
/*******************************************************************************
 * 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 */ 
}

/******************************************************************************/
