
/* vertical accordion (left/right navigation) */

/**************************************************************************************
/* update the following classes to change the appearance of the base menu and all 
/* associated sub menus
/*************************************************************************************/

/* this is the class used on the container element of the base menu */
/* html example: <div class="RadPanelbar_LeftAccordionNav"> */
.RadPanelBar_LeftAccordionNav {
	margin-top:10px;
	width: 154px;
}

/* this is the class used on the container element for all the menu items in the base menu and sub menus */
/* html example: <li class="item"><a href="..." class="link"><span class="text">...</span></a></li> */
.RadPanelBar_LeftAccordionNav .rpItem {
	display: block;
	white-space: normal;
	margin: 0;
	padding: 0;
}

/* this is the class used on the container element of the text for all the menu items in the base menu and sub menus */
/* html example: <a href="..." class="link"><span class="text">About Us</span></a> */
.RadPanelBar_LeftAccordionNav .rpText {
	display: block;
	padding: 5px;
	padding-left:0px;
	font: normal normal normal 12px/13px Helvetica, Arial, sans-serif;
}

/* this is the class used on the container element for the expanded menu item */
.RadPanelBar_LeftAccordionNav .expanded {}

/* this is the class used on the text elements for the expanded menu item */
.RadPanelBar_LeftAccordionNav .expanded .rpText {
	
}

/* this is the class used on the container element for the selected (clicked) menu item */
.RadPanelBar_LeftAccordionNav .rpSelected {}

/* this is the class used on the text elements for the selected (clicked) menu item */
.RadPanelBar_LeftAccordionNav .rpSelected .rpText 
{
	color:#F20002; 
}

/* this is class used on all the links in the base menu and sub menus */
/* html example: <a href="..." class="link">...</a> */
.RadPanelBar_LeftAccordionNav a.rpLink {
	display: block;
}

.RadPanelBar_LeftAccordionNav a.rpLink[href*="column"] {display: none;}

/* this is pseudo class for hover (onmouseover) used on all the links in the base menu and sub menus */
.RadPanelBar_LeftAccordionNav a.rpLink:hover {

	text-decoration: underline;
}

.RadPanelBar_LeftAccordionNav a.rpSelected:hover {text-decoration:none; } 
.RadPanelBar_LeftAccordionNav a.rpSelected:hover .rpText {cursor:text;}
/* this is the class used on container element of all sub menus */
/* html example: <ul class="group"> */
.RadPanelBar_LeftAccordionNav .rpGroup {}

/* this is the class used on the container element for all the menu items in the sub menus */
/* this class overrides .RadPanelBar_LeftAccordionNav .rpItem */
/* html example: <li class="item"><a href="..." class="link"><span class="text">...</span></a></li> */
.RadPanelBar_LeftAccordionNav .rpGroup .rpItem {
	display: block;
	white-space: normal;
	margin: 0;
	padding: 0;
}

/* this is the class used on the container element of the text for all the menu items in the sub menus */
/* this class overrides .RadPanelBar_LeftAccordionNav .rpText */
/* html example: <a href="..." class="link"><span class="text">About Us</span></a> */
.RadPanelBar_LeftAccordionNav .rpGroup .rpText {padding-left:5px; font-size:11px;}

/* this is class used on all the links in the sub menus */
/* this class overrides .RadPanelBar_LeftAccordionNav a.rpLink */
/* html example: <a href="..." class="link">...</a> */
.RadPanelBar_LeftAccordionNav .rpGroup a.rpLink {
	display: block;
}

/* this is pseudo class for hover (onmouseover) used on all the links in the sub menus */
/* this class overrides .RadPanelBar_LeftAccordionNav a.rpLink:hover */
.RadPanelBar_LeftAccordionNav .rpGroup a.rpLink:hover {
	text-decoration: underline;
}


.RadPanelBar_LeftAccordionNav .rpGroup a:link.rpSelected, .RadPanelBar_LeftAccordionNav .rpGroup a:active.rpSelected, .RadPanelBar_LeftAccordionNav .rpGroup a:visited.rpSelected, .RadPanelBar_LeftAccordionNav .rpGroup a:hover.rpSelected {
		color: #F20002;
}

.RadPanelBar_LeftAccordionNav .rpGroup a.rpSelected:hover {text-decoration:none;}
.RadPanelBar_LeftAccordionNav .rpGroup a.rpSelected:hover .rpText {cursor:text;}
/**************************************************************************************
/* advanced classes
/*************************************************************************************/

/* this is the class used on all first menu items in the base menu and sub menus */
.RadPanelBar_LeftAccordionNav .rpFirst .rpText {
}

/* this is the class used on all first menu items in the sub menus */
/* this class overrides .RadPanelBar_LeftAccordionNav .rpFirst */
.RadPanelBar_LeftAccordionNav .rpGroup .rpFirst .rpText {}

/* this is the class used on all last menu items in the base menu and sub menus */
.RadPanelBar_LeftAccordionNav .rpLast .rpText {
}

/* this is the class used on all last menu items in the sub menus */
/* this class overrides .RadPanelBar_LeftAccordionNav .rpLast  */
.RadPanelBar_LeftAccordionNav .rpGroup .rpLast .rpText {}

/* these classes allow you to access all elements starting at a particular level */
/* the base menu classes */
.RadPanelBar_LeftAccordionNav {}
.RadPanelBar_LeftAccordionNav .rpItem {}			/* all menu items */
.RadPanelBar_LeftAccordionNav a.rpLink {}			/* all links */
.RadPanelBar_LeftAccordionNav .rpText {}			/* all text */
.RadPanelBar_LeftAccordionNav .rpFirst {}			/* all first menu items */
.RadPanelBar_LeftAccordionNav .rpFirst a.rpLink {}	/* all first links */
.RadPanelBar_LeftAccordionNav .rpFirst .rpText {}		/* all first text */
.RadPanelBar_LeftAccordionNav .rpLast {}			/* all last menu items */
.RadPanelBar_LeftAccordionNav .rpLast a.rpLink {}		/* all last links */
.RadPanelBar_LeftAccordionNav .rpLast .rpText {}		/* all last text */
/* first level sub classes */
.RadPanelBar_LeftAccordionNav .rpLevel1 {}
.RadPanelBar_LeftAccordionNav .rpLevel1 .rpItem {}			/* all menu items */
.RadPanelBar_LeftAccordionNav .rpLevel1 a.rpLink {}			/* all links */
.RadPanelBar_LeftAccordionNav .rpLevel1 .rpText {}			/* all text */
.RadPanelBar_LeftAccordionNav .rpLevel1 .rpFirst {}			/* all first menu items */
.RadPanelBar_LeftAccordionNav .rpLevel1 .rpFirst a.rpLink {}	/* all first links */
.RadPanelBar_LeftAccordionNav .rpLevel1 .rpFirst .rpText {}		/* all first text */
.RadPanelBar_LeftAccordionNav .rpLevel1 .rpLast {}			/* all last menu items */
.RadPanelBar_LeftAccordionNav .rpLevel1 .rpLast a.rpLink {}		/* all last links */
.RadPanelBar_LeftAccordionNav .rpLevel1 .rpLast .rpText {}		/* all last text */
/* second level sub classes */
.RadPanelBar_LeftAccordionNav .rpLevel2 {}
.RadPanelBar_LeftAccordionNav .rpLevel2 .rpItem {}			/* all menu items */
.RadPanelBar_LeftAccordionNav .rpLevel2 a.rpLink {}			/* all links */
.RadPanelBar_LeftAccordionNav .rpLevel2 .rpText {}			/* all text */
.RadPanelBar_LeftAccordionNav .rpLevel2 .rpFirst {}			/* all first menu items */
.RadPanelBar_LeftAccordionNav .rpLevel2 .rpFirst a.rpLink {}	/* all first links */
.RadPanelBar_LeftAccordionNav .rpLevel2 .rpFirst .rpText {}		/* all first text */
.RadPanelBar_LeftAccordionNav .rpLevel2 .rpLast {}			/* all last menu items */
.RadPanelBar_LeftAccordionNav .rpLevel2 .rpLast a.rpLink {}		/* all last links */
.RadPanelBar_LeftAccordionNav .rpLevel2 .rpLast .rpText {}		/* all last text */
/* second level sub classes... etc... */
.RadPanelBar_LeftAccordionNav .rpLevel2 .rpItem {padding-left: 5px; }
.RadPanelBar_LeftAccordionNav .rpLevel2 .rpText{font-weight: normal;}	