/* CSS Document */
<style type="text/css">

/*AIO added - aligns submenu with top level(???)*/
.rightanglemenu a{
margin: 0;
padding: 0;
list-style-type: none;
}

.rightanglemenu ul{
margin: 0;
padding: 0;
list-style-type: none;
background-color: #D9F2E6; 
}

/*Top level list items*/
.rightanglemenu ul li{
position: relative;
display: inline;
float: left;
font-size: 11px;
font-family: verdana, arial, helvetica;
letter-spacing: .04em;
text-align: center;
}

/*Top level menu link items style*/
.rightanglemenu ul li a{
display: block;
width: 110px; /*Width of top level menu link items*/
height: 14px;
padding: 1px 8px;
border: 1px solid gray;
border-left-width: 0;
text-decoration: none;
color: black;
}
	
/*1st sub level menu*/
.rightanglemenu ul li ul{
left: 0;
position: absolute;
top: 1em; /* no need to change, as true value set by script */
display: block;
visibility: hidden;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.rightanglemenu ul li ul li{
display: list-item;
list-style-type: none;
float: none;
border-top: 1px solid white;
background-color: #ffffff; 
}

/*All subsequent sub menu levels offset after 1st level sub menu */
.rightanglemenu ul li ul li ul{ 
left: 159px; /* no need to change, as true value set by script */
top: 0;
}

/* Sub level menu links style */
.rightanglemenu ul li ul li a{
display: block;
width: 114px; /*width of sub menu levels*/
color: black;
text-decoration: none;
padding: 1px 5px;
border: 1px solid gray;
}

.rightanglemenu ul li a:hover{
background-color: white;
font-weight: normal;
color: black;
}

.rightanglemenu ul li ul li a:hover{
background-color: white;
font-weight: normal;
color: #c00;
}

/*Background image for top level menu list links */
.rightanglemenu .mainfoldericon{
background: #D9F2E6 url(media/arrow-down.gif) no-repeat center right;
}

/*Background image for subsequent level menu list links */
.rightanglemenu .subfoldericon{
background: #D9F2E6 url(media/arrow-right.gif) no-repeat center right;
}

* html p#iepara{ /*For a paragraph (if any) that immediately follows rightangle menu, add 1em top spacing between the two in IE*/
padding-top: 1em;
}
	
/* Holly Hack for IE \*/
* html .rightanglemenu ul li { float: left; height: 1%;}
* html .rightanglemenu ul li a { height: 1%;}
* html .rightanglemenu ul li ul li { float: left;}
/* End */

</style>

