h2 {
        color: #922d46;
        font-family: "Times New Roman", Times, serif;
        font-weight: bold;
        font-size: 1.85em;
}
/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */
.submenu {
width:950px;
}

.submenu ul{
/*display: table;
margin:0 auto;*/
padding: 0;
list-style-type: none;
}

/*Top level list items*/
.submenu ul li{
position: relative;
display: inline;
float: left;
background-color: #922D46; /*overall menu background color*/
}

/*Top level menu link items style*/
.submenu ul li a{
display: block;
width: 150px; /*90px Width of top level menu link items*/
padding: 4px 10px;
border: 1px solid white;
text-decoration: none;
color: #FFFFFF;
}
	
/*1st sub level menu*/
.submenu 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)*/
.submenu ul li ul li{
display: list-item;
float: none;
}

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

/* Sub level menu links style */
.submenu ul li ul li a{
display: block;
width: 150px; /*width of sub menu levels*/
color: #FFFFFF;
text-decoration: none;
padding: 4px 5px;
border: none;
}

.submenu ul li a:hover{
background-color: #F3F3F3;
color: #922D46;
}

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

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

* 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;
}
	
/* Holly Hack for IE \*/
* html .submenu ul li { float: left; height: 1%; }
* html .submenu ul li a { height: 1%; }
/* End */

.container {clear:both; text-decoration:none;}
* html .container {display:inline-block;}


