
/* 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_PageAccordionNav"> */
.RadPanelBar_PageAccordionNav {
	width: 200px;
	padding: 0 20px;
}

/* 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_PageAccordionNav .rpItem {
	display: block;
	white-space: normal;
	margin: 0 0 12px!important;
}

/* 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_PageAccordionNav .rpText {
	font: normal normal normal 12px/14px Helvetica, Arial, Sans-Serif;
	color: #474747;
	font-weight: bold;
}
.RadPanelBar .rpGroup .rpExpanded .rpExpandHandle, .RadPanelBar .rpGroup .rpExpandable .rpExpandHandle {display: none;}
	.RadPanelBar_PageAccordionNav a.rpLink:hover .rmText {
		color: #474747;
		text-decoration: underline;
	}

/* this is the class used on the container element for the expanded menu item */
.RadPanelBar_PageAccordionNav .expanded {}

/* this is the class used on the text elements for the expanded menu item */
.RadPanelBar_PageAccordionNav .expanded .rpText {}

/* this is the class used on the container element for the selected (clicked) menu item */
.RadPanelBar_PageAccordionNav .rpSelected {}

/* this is the class used on the text elements for the selected (clicked) menu item */
.RadPanelBar_PageAccordionNav .rpSelected .rpText {}

/* this is class used on all the links in the base menu and sub menus */
/* html example: <a href="..." class="link">...</a> */
.RadPanelBar_PageAccordionNav a.rpLink {}

/* this is pseudo class for hover (onmouseover) used on all the links in the base menu and sub menus */
.RadPanelBar_PageAccordionNav a.rpLink:hover {}

.RadPanelBar_PageAccordionNav a.rpSelected:hover {} 
.RadPanelBar_PageAccordionNav a.rpSelected:hover .rpText {}
/* this is the class used on container element of all sub menus */
/* html example: <ul class="group"> */
.RadPanelBar_PageAccordionNav .rpGroup {}

/* this is the class used on the container element for all the menu items in the sub menus */
/* this class overrides .RadPanelBar_PageAccordionNav .rpItem */
/* html example: <li class="item"><a href="..." class="link"><span class="text">...</span></a></li> */
.RadPanelBar_PageAccordionNav .rpGroup .rpItem {
	margin: 0 0 6px;
	padding: 0 0 0 6px;
	background: transparent url(/images/svs2013-nav-bullet.gif) no-repeat 0px 7px scroll;
}

/* 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_PageAccordionNav .rpText */
/* html example: <a href="..." class="link"><span class="text">About Us</span></a> */
.RadPanelBar_PageAccordionNav .rpGroup .rpText {
	color: #575757;
	font-weight: normal;
}

/* this is class used on all the links in the sub menus */
/* this class overrides .RadPanelBar_PageAccordionNav a.rpLink */
/* html example: <a href="..." class="link">...</a> */
.RadPanelBar_PageAccordionNav .rpGroup a.rpLink {}

/* this is pseudo class for hover (onmouseover) used on all the links in the sub menus */
/* this class overrides .RadPanelBar_PageAccordionNav a.rpLink:hover */
.RadPanelBar_PageAccordionNav .rpGroup a.rpLink:hover {}


.RadPanelBar_PageAccordionNav .rpGroup a:link.rpSelected, 
.RadPanelBar_PageAccordionNav .rpGroup a:active.rpSelected, 
.RadPanelBar_PageAccordionNav .rpGroup a:visited.rpSelected, 
.RadPanelBar_PageAccordionNav .rpGroup a:hover.rpSelected {}

.RadPanelBar_PageAccordionNav .rpGroup a.rpSelected:hover {}
.RadPanelBar_PageAccordionNav .rpGroup a.rpSelected:hover .rpText {}
/**************************************************************************************
/* advanced classes
/*************************************************************************************/

/* this is the class used on all first menu items in the base menu and sub menus */
.RadPanelBar_PageAccordionNav .rpFirst .rpText {}

/* this is the class used on all first menu items in the sub menus */
/* this class overrides .RadPanelBar_PageAccordionNav .rpFirst */
.RadPanelBar_PageAccordionNav .rpGroup .rpFirst .rpText {}

/* this is the class used on all last menu items in the base menu and sub menus */
.RadPanelBar_PageAccordionNav .rpLast .rpText {}

/* this is the class used on all last menu items in the sub menus */
/* this class overrides .RadPanelBar_PageAccordionNav .rpLast  */
.RadPanelBar_PageAccordionNav .rpGroup .rpLast .rpText {}

/* these classes allow you to access all elements starting at a particular level */
/* the base menu classes */
.RadPanelBar_PageAccordionNav {}
.RadPanelBar_PageAccordionNav .rpItem {}			/* all menu items */
.RadPanelBar_PageAccordionNav a.rpLink {}			/* all links */
.RadPanelBar_PageAccordionNav .rpText {}			/* all text */
.RadPanelBar_PageAccordionNav .rpFirst {}			/* all first menu items */
.RadPanelBar_PageAccordionNav .rpFirst a.rpLink {}	/* all first links */
.RadPanelBar_PageAccordionNav .rpFirst .rpText {}		/* all first text */
.RadPanelBar_PageAccordionNav .rpLast {}			/* all last menu items */
.RadPanelBar_PageAccordionNav .rpLast a.rpLink {}		/* all last links */
.RadPanelBar_PageAccordionNav .rpLast .rpText {}		/* all last text */
/* first level sub classes */
.RadPanelBar_PageAccordionNav .rpLevel1 {}
.RadPanelBar_PageAccordionNav .rpLevel1 .rpItem {}			/* all menu items */
.RadPanelBar_PageAccordionNav .rpLevel1 a.rpLink {}			/* all links */
.RadPanelBar_PageAccordionNav .rpLevel1 .rpText {}			/* all text */
.RadPanelBar_PageAccordionNav .rpLevel1 .rpFirst {}			/* all first menu items */
.RadPanelBar_PageAccordionNav .rpLevel1 .rpFirst a.rpLink {}	/* all first links */
.RadPanelBar_PageAccordionNav .rpLevel1 .rpFirst .rpText {}		/* all first text */
.RadPanelBar_PageAccordionNav .rpLevel1 .rpLast {}			/* all last menu items */
.RadPanelBar_PageAccordionNav .rpLevel1 .rpLast a.rpLink {}		/* all last links */
.RadPanelBar_PageAccordionNav .rpLevel1 .rpLast .rpText {}		/* all last text */
/* second level sub classes */
.RadPanelBar_PageAccordionNav .rpLevel2 {}
.RadPanelBar_PageAccordionNav .rpLevel2 .rpItem {}			/* all menu items */
.RadPanelBar_PageAccordionNav .rpLevel2 a.rpLink {}			/* all links */
.RadPanelBar_PageAccordionNav .rpLevel2 .rpText {}			/* all text */
.RadPanelBar_PageAccordionNav .rpLevel2 .rpFirst {}			/* all first menu items */
.RadPanelBar_PageAccordionNav .rpLevel2 .rpFirst a.rpLink {}	/* all first links */
.RadPanelBar_PageAccordionNav .rpLevel2 .rpFirst .rpText {}		/* all first text */
.RadPanelBar_PageAccordionNav .rpLevel2 .rpLast {}			/* all last menu items */
.RadPanelBar_PageAccordionNav .rpLevel2 .rpLast a.rpLink {}		/* all last links */
.RadPanelBar_PageAccordionNav .rpLevel2 .rpLast .rpText {}		/* all last text */
/* second level sub classes... etc... */
.RadPanelBar_PageAccordionNav .rpLevel2 .rpItem {}
.RadPanelBar_PageAccordionNav .rpLevel2 .rpText{}	