
/* 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 {padding-bottom: 16px;}

/* 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 .item {
	display: block;
	white-space: normal;
	width: 169px;
	

}

/* 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 .text {
	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:link.link, .RadMenu_LeftSimple a:active.link, .RadMenu_LeftSimple a:visited.link {
	cursor: pointer;
	cursor: hand;
	font: bold 12px Arial, Verdana, Sans-Serif;
	color: #fff;
	border-bottom: solid 1px #fff;
	display: block;
	padding: 5px;
	text-decoration: none;
}

/* this is pseudo class for hover (onmouseover) used on all the links in the base menu and flyout menus */
.RadMenu_LeftSimple a.link:hover {
	cursor: pointer;
	cursor: hand;
	background-color: #CA9B5B;
	color: #000;
	
	
}

/* these are the pseudo classes for on the current page link in the menu */
/* these classes override .RadMenu_LeftSimple a.link */
.RadMenu_LeftSimple a:link.aselected, .RadMenu_LeftSimple a:active.aselected, .RadMenu_LeftSimple a:visited.aselected, .RadMenu_LeftSimple a:hover.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.link */
.RadMenu_LeftSimple a:link.expanded, .RadMenu_LeftSimple a:active.expanded, .RadMenu_LeftSimple a:visited.expanded, .RadMenu_LeftSimple a:hover.expanded {}

/* this is the class used on container element of all flyout menus */
/* html example: <ul class="group"> */
.RadMenu_LeftSimple .group {
	border-top: solid 1px #CA9B5B;
	border-bottom: solid 1px #CA9B5B;
	width: 170px;
}

/* this is the class used on the container element for all the menu items in the flyout menus */
/* this class overrides .RadMenu_LeftSimple .item */
/* html example: <li class="item"><a href="..." class="link"><span class="text">...</span></a></li> */
.RadMenu_LeftSimple .group .item {
	display: block;
	width: 170px;
	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 .text */
/* html example: <a href="..." class="link"><span class="text">About Us</span></a> */
.RadMenu_LeftSimple .group .text {width: 170px;
	
}

/* this is class used on all the links in the flyout menus */
/* this class overrides .RadMenu_LeftSimple a.link */
/* html example: <a href="..." class="link">...</a> */
.RadMenu_LeftSimple .group a:link.link, .RadMenu_LeftSimple .group a:active.link, .RadMenu_LeftSimple .group a:visited.link {
	display: block;
	color: #000;
	border-top: 0;
	background: none;
	background-color: #fff;
	border-left: solid 1px #CA9B5B;
	border-right: solid 1px #CA9B5B;
	border-bottom: 0px;
	padding: 3px;
}

/* this is pseudo class for hover (onmouseover) used on all the links in the flyout menus */
/* this class overrides .RadMenu_LeftSimple a.link:hover */
.RadMenu_LeftSimple .group a.link:hover {
	background: none;
	background-color: #000;
	color: #CA9B5B;
	text-decoration: none;
	padding: 3px;
}

/* these are the pseudo classes for on the current page link in the flyout menus */
/* these classes override .RadMenu_LeftSimple .group a.link */
.RadMenu_LeftSimple .group a:link.aselected, .RadMenu_LeftSimple .group a:active.aselected, .RadMenu_LeftSimple .group a:visited.aselected, .RadMenu_LeftSimple .group a:hover.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 .group a.link */
.RadMenu_LeftSimple .group a:link.expanded, .RadMenu_LeftSimple .group a:active.expanded, .RadMenu_LeftSimple .group a:visited.expanded, .RadMenu_LeftSimple .group a:hover.expanded {}

/* this is class used to indicate that the menu item has an associated flyout menu */
.RadMenu_LeftSimple .expandRight, 
.RadMenu_LeftSimple .expandLeft {
	background: transparent url(Img/invertedGroupImage.gif) right center no-repeat;
	margin-right: 5px;
	padding-right: 15px;
}


/**************************************************************************************
/* advanced classes
/*************************************************************************************/

/* this is the class used on all first menu items in the base menu and flyout menus */
.RadMenu_LeftSimple .first {}

/* this is the class used on all first menu items in the flyout menus */
/* this class overrides .RadMenu_LeftSimple .first */
.RadMenu_LeftSimple .group .first {}

/* this is the class used on all last menu items in the base menu and flyout menus */
.RadMenu_LeftSimple .last {}

/* this is the class used on all last menu items in the flyout menus */
/* this class overrides .RadMenu_LeftSimple .last  */
.RadMenu_LeftSimple .group .last {}

/* these classes allow you to access all elements starting at a particular level */
/* the base menu classes */
.RadMenu_LeftSimple {}
.RadMenu_LeftSimple .item {}			/* all menu items */
.RadMenu_LeftSimple a.link {}			/* all links */
.RadMenu_LeftSimple .text {}			/* all text */
.RadMenu_LeftSimple .first {}			/* all first menu items */
.RadMenu_LeftSimple .first a.link {}	/* all first links */
.RadMenu_LeftSimple .first .text {}		/* all first text */
.RadMenu_LeftSimple .last {}			/* all last menu items */
.RadMenu_LeftSimple .last a.link {}		/* all last links */
.RadMenu_LeftSimple .last .text {}		/* all last text */
/* first level flyout classes */
.RadMenu_LeftSimple .level1 {}
.RadMenu_LeftSimple .level1 .item {}			/* all menu items */
.RadMenu_LeftSimple .level1 a.link {}			/* all links */
.RadMenu_LeftSimple .level1 .text {}			/* all text */
.RadMenu_LeftSimple .level1 .first {}			/* all first menu items */
.RadMenu_LeftSimple .level1 .first a.link {}	/* all first links */
.RadMenu_LeftSimple .level1 .first .text {}		/* all first text */
.RadMenu_LeftSimple .level1 .last {}			/* all last menu items */
.RadMenu_LeftSimple .level1 .last a.link {}		/* all last links */
.RadMenu_LeftSimple .level1 .last .text {}		/* all last text */
/* second level flyout classes */
.RadMenu_LeftSimple .level2 {}
.RadMenu_LeftSimple .level2 .item {}			/* all menu items */
.RadMenu_LeftSimple .level2 a.link {}			/* all links */
.RadMenu_LeftSimple .level2 .text {}			/* all text */
.RadMenu_LeftSimple .level2 .first {}			/* all first menu items */
.RadMenu_LeftSimple .level2 .first a.link {}	/* all first links */
.RadMenu_LeftSimple .level2 .first .text {}		/* all first text */
.RadMenu_LeftSimple .level2 .last {}			/* all last menu items */
.RadMenu_LeftSimple .level2 .last a.link {}		/* all last links */
.RadMenu_LeftSimple .level2 .last .text {}		/* all last text */
/* second level flyout classes... etc... */
