/* MENU */

.buttons ul {
	margin:0;
	padding: 0px;
	list-style-type: none;
	z-index:100000;
}

/*Top level list items*/
.buttons ul li {
	position: relative;
	display: inline;
	float: left;
	z-index:100000;
}

/*Top level menu link items style*/
.buttons ul li a {
	color: #FFFFFF;
	text-decoration: none;
	padding: 0px 9px;
	font-size:12px;
	border-right: 1px solid #CCCCCC;	
	z-index:100000;
}
	
/*1st sub level menu*/
.buttons ul li ul {
	left: 0;
	position: absolute;
	top: 1em; /* no need to change, as true value set by script */
	display: block;
	visibility: hidden;
	background-color:#e3e8ec;
	z-index:100000;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.buttons ul li ul li {
	display: list-item;
	float: none;
	background-color:#0e2d6d;
	z-index:100000;
}

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

/* Sub level menu links style */
.buttons ul li ul li a {
	display: block;
	width: 150px; /*width of sub menu levels*/
	color: #7c278c;
	text-decoration: none;
	height:18px;
	padding-bottom:5px;
	padding-top:5px;
	border:0px;
	text-align:left;
	font-size:12px;
	list-style-image:none;
	border-top: 1px solid #CCCCCC;
	z-index:100000;
}

.buttons ul li ul li a:hover {
	color:#FFFFFF;
	background-color:#8d9aab;
	z-index:100000;
}

.buttons ul li a:hover {
	color: #7c278c;
	z-index:100000;
}

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

/*Background image for subsequent level menu list links */
.buttons .subfoldericon {
	background-image:url(../images/menu-arrow.gif);
	background-position:right;
	background-repeat:no-repeat;
	z-index:100000;
}

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

/* Holly Hack for IE \*
* html .buttons ul li { float: left; height: 1%;}
* html .buttons ul li a { height: 1%;}
* html .buttons ul li ul li { float: left;}
/* End */




/* TEXT  SIZES  */

#sizeMedium .buttons ul li a, #sizeLarge .buttons ul li a {
	padding: 0px 5px;
	font-size:13px;
}

#sizeMedium .buttons ul li ul li a, #sizeLarge .buttons ul li ul li a {
	width: 160px; /*width of sub menu levels*/
}

/* DYSLEXIC */

#dyslexic .buttons ul li a {
	color: #fa4400;
}

/* TEXT ONLY */

#textOnly .buttons .subfoldericon {
	background:none;
}

#textOnly .buttons ul li ul li {
	background-color:#000000;
}

#textOnly .buttons ul li ul li a {
	border: 0px;
}

#textOnly .buttons ul li ul li a:hover {
	background-color:#FFFFFF;
}

