/*************************************************************************
* This is the SKIN style definition for the CSS menu.                    *
* Feel free to customize this section.                                   *
*************************************************************************/

/*
 * Menu container settings
 * Applies to the first level menu container
 */
.simple {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 80%;
	font-weight: normal;
	text-align: left;
}

/*
 * Menu container settings
 * Applies to second (or more) level menu containers
 */
.simple ul {
	border: none;
}

/*
 * Menu items settings
 * Applies to all menu items in all menu containers
 */
.simple li {
	background-color: #f0e7cf;
	width: 211px;
	border-bottom: 2px solid #FFFFFF;
}

/*
 * Menu items settings
 * Applies to second (or more) level menu items
 */
.simple ul li {
	border-left: none;
	margin: 0px;
 }

/*
 * Menu link settings
 * Applies to links that are to be found within the menu items, no matter the menu level
 */
.simple a {
	text-decoration: none;
	color: #000000;
	padding: 3px 6px;
	cursor: pointer;
}

/*
 * Menu link settings
 * Applies to links located in the second (or more) level menu items
 */
.simple ul a {
	border: none;
	color: #541900;
	padding-left: 20px;
	background-color: #e1d09f;
}

/***************************************************************************
* In this section, we will define what happens when mouse-overing an item  *
***************************************************************************/

/*
 * Mouse over on menu items
 * Applies to all menu items in all menu containers
 */
.simple li.hover {
	font-weight: normal;
	background-color: #541900;
}
  
/*
 * Mouse over on menu items
 * Applies to second (or more) level menu items
 */
.simple ul li.hover {
	background-color: #B38808;
}

/*
 * Mouse over on links
 * Applies to all links in all menu items
 */
.simple a.hover {
	color: #fff !important;
	
}

/*
 * Mouse over on links
 * Applies to links located in the second (or more) level menu items
 */
.simple ul a.hover {
	color: #fff !important;
	font-weight: normal;
	background-color: #B38808;
}

/*****************************************************************************
* In this section, we will define what happens when a menu item is selected  *
*****************************************************************************/

/*
 * Selected menu item
 * Applies to selected menu items in all menu containers
 */
.simple li.selected {
	}

/*
 * Selected menu item
 * Applies to second (or more) level selected menu items
 */
.simple ul li.selected {
	}

/*
 * Selected links
 * Applies to selected links in all menu items
 */
.simple a.selected {
	color: #fff;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	background-color: #541900;
}

/*
 * Selected links
 * Applies to selected links located in the second (or more) level menu items
 */
.simple ul a.selected {
	color: #fff;
	font-weight: bold;
	background: #B38808;
}


/******************************************************************************
* In this section, we will define the menu arrows behavior                    *
* An arrow is inserted next to the menu item when the menu item has sub-menus *
******************************************************************************/

/* 
 * Define the arrow
 * Applies to all menu items that have sub-menus
 */
.simple .arrow {
	background-image:url(../corporate_red/img/grey_arrow.gif);
	background-repeat: no-repeat;
	background-position: right;
}

/* 
 * Define the arrow
 * Applies to all menu items that have sub-menus located in the second (or more) level
 */
.simple .hover ul .arrow,
.simple ul .arrow {
	background-image:url(../corporate_red/img/grey_arrow.gif);
	background-position: right;
}

/* 
 * Define the arrow on mouse over
 * Applies to all menu items that have sub-menus on mouse over
 */
.simple .hover .arrow {
	background-image:url(../corporate_red/img/white_arrow_horizontal.gif);
	background-position: right;
}

/* 
 * Define the arrow on mouse over
 * Applies to all menu items that have sub-menus located in the second (or more) level on mouse over
 */
.simple ul .hover .arrow {
	background-image:url(../corporate_red/img/red_arrow.gif);
}

/*************************************************************************
* This is the LAYOUT style definition for the CSS menu                   *
* DO NOT alter this section, unless you know what you're doing           *
*************************************************************************/
div.expandable {
	clear: both;
}
div.expandable br {
	clear: both;
}
div.expandable ul {
	margin: 5px;
	padding: 0px;
	display: block;
	float: left;
	clear: both;
}
div.expandable li {
	list-style-type: none;
	display: block;
	float: left;
	clear: both;
	text-align: left;
    position: relative;
}
div.expandable li img {
	border: none;
}
div.expandable a {
	clear: both;
	float: none;
	display: block;
	margin: 0px;
}
div.expandable ul li ul {
	position: static;
	visibility: visible;
	display: block;
	clear: both;
	margin: 0px;
	margin-top: -5000px;
}
div.expandable ul li ul li ul {
	display: none;
}
div.expandable ul li ul li {
	clear: both;

}
div.expandable ul li ul li a {
	clear: both;
}
.hasImg,
.hasImg a {
	padding: 0px !important;
	margin:	0px	!important;
	border:	none !important;
	outline: none !important;
	background:	transparent !important;
	width: auto !important;
}