
.underlinemenu{
font-weight: bold;
width: 100%;
}

.underlinemenu ul{
padding: 6px 0 7px 0; /*6px should equal top padding of "ul li a" below, 7px should equal bottom padding + bottom border of "ul li a" below*/
margin: 0;
text-align: right; //set value to "left", "center", or "right"*/
}

.underlinemenu ul li{
display: inline;
}

.underlinemenu ul li a{
color: white;
padding: 6px 3px 1px 3px; /*top padding is 6px, bottom padding is 1px*/
margin-right: 8px; /*spacing between each menu link*/
text-decoration: none;
border-bottom: 0px solid white; /*bottom border is 1px*/
}

.underlinemenu ul li a:hover, .underlinemenu ul li a.selected{
border-bottom-color: white;
}




/** Second menu for side **/


/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.wireframemenu{
padding:8px;
text-align:left; 
background-color:#0097ad;
width:260px;

}

* html .wireframemenu{ /*IE only rule. Original menu width minus all left/right paddings */
width: 244px;
}

.wireframemenu ul{
padding: 0;
padding-top:12px;
padding-right:12px;
margin: 12px;
width:230px;
background-color:white;
border:1px solid black;
 list-style-type:none;
}

.wireframemenu a{
font: bold 17px 'Trebuchet MS';
padding: 12px;
display: block;
width: 100%; /*Define width for IE6's sake*/
color: #005192;
list-style-type:disc; list-style-position:outside;
border-bottom: 3px solid #0097ad;
line-height:20px;

}

.wireframemenu a:visited{
color: #005192;
 text-decoration:none;
}

html>body .wireframemenu a{ /*Non IE rule*/
width: auto;
}

.wireframemenu a:hover{
background-color: #eeeeee;
color: #005192;
 text-decoration:none;
}

