/* vertical flyout (left/right navigation) */

/**************************************************************************************
/* update the following classes to change the appearance of the base menu and all 
/* associated flyout menus
/*************************************************************************************/

/* this is the class used on the container element of the base menu */
/* html example: <div class="RadMenu_LeftSimple"> */
.RadMenu_LeftSimple {
	border: solid 2px #0d0d0c;
	background-color: #fffeed;
	
}

/* this is the class used on the container element for all the menu items in the base menu and flyout menus */
/* html example: <li class="item"><a href="..." class="link"><span class="text">...</span></a></li> */
.RadMenu_LeftSimple .rmItem {
	display: block;
	white-space: normal;
	width: 115px;
}

/* this is the class used on the container element of the text for all the menu items in the base menu and flyout menus */
/* html example: <a href="..." class="link"><span class="text">About Us</span></a> */
.RadMenu_LeftSimple .rmText {
	display: block;	
}

/* this is class used on all the links in the base menu and flyout menus */
/* html example: <a href="..." class="link">...</a> */
.RadMenu_LeftSimple a.rmLink:link {
	cursor: pointer;
	cursor: hand;
	font-size: 12px;
	font-weight: bold;
	text-align: left;
	padding-left: 25px;
	padding-top: 16px;
	padding-bottom: 14px;
	margin-left: 0px;
	color: #242;
	display: block;
	border-bottom: solid 1px #0d0d0c;
	text-decoration: none;
}

.RadMenu_LeftSimple a.rmLink:visited {
	cursor: pointer;
	cursor: hand;
	font-size: 12px;
	font-weight: bold;
	text-align: left;
	padding-left: 25px;
	padding-top: 16px;
	padding-bottom: 14px;
	margin-left: 0px;
	color: #242;
	display: block;
	border-bottom: solid 1px #0d0d0c;
	text-decoration: none;
}

.RadMenu_LeftSimple a.rmLink:hover {
	cursor: pointer;
	cursor: hand;
	color: #242;
	background-color: #fcd09b;
	border-bottom: solid 1px #0d0d0c;
}

.RadMenu_LeftSimple a.rmLink:active {
	cursor: pointer;
	cursor: hand;
	font-size: 12px;
	font-weight: bold;
	text-align: left;
	padding-left: 25px;
	padding-top: 16px;
	padding-bottom: 14px;
	margin-left: 0px;
	color: #242;
	display: block;
	border-bottom: solid 1px #0d0d0c;
	text-decoration: none;
}

/* these are the pseudo classes for on the current page link in the menu */
/* these classes override .RadMenu_LeftSimple a.rmLink */
.RadMenu_LeftSimple a:link.aselected {}
.RadMenu_LeftSimple a:visited.aselected {}
.RadMenu_LeftSimple a:hover.aselected {}
.RadMenu_LeftSimple a:active.aselected {}

/* these are the pseudo classes for on the breadcrumb highlighting in the menu as you expand child menus */
/* these classes override .RadMenu_LeftSimple a.rmLink */
.RadMenu_LeftSimple a:link.rmExpanded {} 
.RadMenu_LeftSimple a:visited.rmExpanded {}
.RadMenu_LeftSimple a:hover.rmExpanded {}
.RadMenu_LeftSimple a:active.rmExpanded {}  

/* this is the class used on container element of all flyout menus */
/* html example: <ul class="group"> */
.RadMenu_LeftSimple .rmGroup {
	border-top: solid 1px #0d0d0c;
	border-bottom: solid 1px #0d0d0c;
}

/* this is the class used on the container element for all the menu items in the flyout menus */
/* this class overrides .RadMenu_LeftSimple .rmItem */
/* html example: <li class="item"><a href="..." class="link"><span class="text">...</span></a></li> */
.RadMenu_LeftSimple .rmGroup .rmItem {
	display: block;
	width: 200px;
	white-space: normal;
}

/* this is the class used on the container element of the text for all the menu items in the flyout menus */
/* this class overrides .RadMenu_LeftSimple .rmText */
/* html example: <a href="..." class="link"><span class="text">About Us</span></a> */
.RadMenu_LeftSimple .rmGroup .rmText {
	
}

/* this is class used on all the links in the flyout menus */
/* this class overrides .RadMenu_LeftSimple a.rmLink */
/* html example: <a href="..." class="link">...</a> */
.RadMenu_LeftSimple .rmGroup a.rmLink:link {
	display: block;
	color: #242;
	border-top: 0;
	background-color: #fffeed;
	border-left: solid 1px #0d0d0c;
	border-right: solid 1px #0d0d0c;
	text-align: center;
	padding: 0px;
	margin: 0px;
	font-size: 10px;
	font-weight: bold;
}

.RadMenu_LeftSimple .rmGroup a.rmLink:visited {
	display: block;
	color: #242;
	border-top: 0;
	background-color: #fffeed;
	border-left: solid 1px #0d0d0c;
	border-right: solid 1px #0d0d0c;
	text-align: center;
	padding: 0px;
	margin: 0px;
	font-size: 10px;
	font-weight: bold;
	
}

.RadMenu_LeftSimple .rmGroup a.rmLink:hover {
	background: none;
	background-color: #fcd09b;
	color: #242;
	text-decoration: none;
	text-align: center;
	padding: 0px;
	margin: 0px;
	font-size: 10px;
	font-weight: bold;
}

.RadMenu_LeftSimple .rmGroup a.rmLink:active {
	display: block;
	color: #242;
	border-top: 0;
	background-color: #fffeed;
	border-left: solid 1px #0d0d0c;
	border-right: solid 1px #0d0d0c;
	text-align: center;
	padding: 0px;
	margin: 0px;
	font-size: 10px;
	font-weight: bold;
	
}

/* these are the pseudo classes for on the current page link in the flyout menus */
/* these classes override .RadMenu_LeftSimple .rmGroup a.rmLink */
.RadMenu_LeftSimple .rmGroup a:link.aselected {}
.RadMenu_LeftSimple .rmGroup a:visited.aselected {} 
.RadMenu_LeftSimple .rmGroup a:hover.aselected {}
.RadMenu_LeftSimple .rmGroup a:active.aselected {} 



/* these are the pseudo classes for on the breadcrumb highlighting in the flyout menus as you expand child menus */
/* these classes override .RadMenu_LeftSimple .rmGroup a.rmLink */
.RadMenu_LeftSimple .rmGroup a:link.rmExpanded {} 
.RadMenu_LeftSimple .rmGroup a:visited.rmExpanded {} 
.RadMenu_LeftSimple .rmGroup a:hover.rmExpanded {}
.RadMenu_LeftSimple .rmGroup a:active.rmExpanded {} 

/* this is class used to indicate that the menu item has an associated flyout menu */
.RadMenu_LeftSimple .rmExpandRight, 
.RadMenu_LeftSimple .rmExpandLeft {
	
}


/**************************************************************************************
/* advanced classes
/*************************************************************************************/

/* this is the class used on all first menu items in the base menu and flyout menus */
.RadMenu_LeftSimple .rmFirst {}

/* this is the class used on all first menu items in the flyout menus */
/* this class overrides .RadMenu_LeftSimple .rmFirst */
.RadMenu_LeftSimple .rmGroup .rmFirst {}

/* this is the class used on all last menu items in the base menu and flyout menus */
.RadMenu_LeftSimple .rmLast {}

/* this is the class used on all last menu items in the flyout menus */
/* this class overrides .RadMenu_LeftSimple .rmLast  */
.RadMenu_LeftSimple .rmGroup .rmLast {}

/* these classes allow you to access all elements starting at a particular level */
/* the base menu classes */
.RadMenu_LeftSimple {}
.RadMenu_LeftSimple .rmItem {}			/* all menu items */
.RadMenu_LeftSimple a.rmLink {}			/* all links */
.RadMenu_LeftSimple .rmText {}			/* all text */
.RadMenu_LeftSimple .rmFirst {}			/* all first menu items */
.RadMenu_LeftSimple .rmFirst a.rmLink {}	/* all first links */
.RadMenu_LeftSimple .rmFirst .rmText {}		/* all first text */
.RadMenu_LeftSimple .rmLast {}			/* all last menu items */
.RadMenu_LeftSimple .rmLast a.rmLink {}		/* all last links */
.RadMenu_LeftSimple .rmLast .rmText {}		/* all last text */
/* first level flyout classes */
.RadMenu_LeftSimple .rmLevel1 {}
.RadMenu_LeftSimple .rmLevel1 .rmItem {}			/* all menu items */
.RadMenu_LeftSimple .rmLevel1 a.rmLink {}			/* all links */
.RadMenu_LeftSimple .rmLevel1 .rmText {}			/* all text */
.RadMenu_LeftSimple .rmLevel1 .rmFirst {}			/* all first menu items */
.RadMenu_LeftSimple .rmLevel1 .rmFirst a.rmLink {}	/* all first links */
.RadMenu_LeftSimple .rmLevel1 .rmFirst .rmText {}		/* all first text */
.RadMenu_LeftSimple .rmLevel1 .rmLast {}			/* all last menu items */
.RadMenu_LeftSimple .rmLevel1 .rmLast a.rmLink {}		/* all last links */
.RadMenu_LeftSimple .rmLevel1 .rmLast .rmText {}		/* all last text */
/* second level flyout classes */
.RadMenu_LeftSimple .rmLevel2 {}
.RadMenu_LeftSimple .rmLevel2 .rmItem {}			/* all menu items */
.RadMenu_LeftSimple .rmLevel2 a.rmLink {}			/* all links */
.RadMenu_LeftSimple .rmLevel2 .rmText {}			/* all text */
.RadMenu_LeftSimple .rmLevel2 .rmFirst {}			/* all first menu items */
.RadMenu_LeftSimple .rmLevel2 .rmFirst a.rmLink {}	/* all first links */
.RadMenu_LeftSimple .rmLevel2 .rmFirst .rmText {}		/* all first text */
.RadMenu_LeftSimple .rmLevel2 .rmLast {}			/* all last menu items */
.RadMenu_LeftSimple .rmLevel2 .rmLast a.rmLink {}		/* all last links */
.RadMenu_LeftSimple .rmLevel2 .rmLast .rmText {}		/* all last text */
/* second level flyout classes... etc... */