.btnstyle{
width: 130px;
float: left;
}

.btnstyle:after{ /*Add margin between menu and rest of content in Firefox*/
content: "."; 
display: block; 
height: 0; 
clear: both; 
visibility: hidden;

}

.btnstyle ul#pull{
border: solid black 0px;
width: 150px;
float: left;
padding: 0;
margin: 0;
text-align: center; /*set value to "left", "center", or "right"*/
}

.btnstyle ul#pull li{
display: inline;
}

.btnstyle ul#pull li a{
	color: white;
	text-decoration: none;
	text-transform: uppercase;
}

.btnstyle ul#pull li a:hover{
	color: black;
	text-decoration: none;
	text-transform: uppercase;
}

.btnstyle ul#pull li a[rel]:after{ /*HTML to indicate drop down link*/
content: "";
/*content: " " url(downimage.gif); /*uncomment this line to use an image instead*/
}


/* ######### Style for Drop Down Menu ######### */

.dropmenudiv{
position:absolute;
top: 0;
margin: 9px 0 0 0;
padding: 0 10px 5px 5px;
border: 1px solid black;
border-top: 0px solid black;
font: bold 85% "Trebuchet MS", georgia, helvetica, sans-serif;
text-transform: capitalize;
z-index:100;
background-color: #555e8a;
width: 100px;
visibility: hidden;
}


.dropmenudiv a{
width: auto;
display: block;
text-indent: 3px;
padding: 2px 0;
text-decoration: none;
font-weight: bold;
color: white;
}

* html .dropmenudiv a{ /*IE only hack*/
width: auto;
}

.dropmenudiv a:hover{ /*THEME CHANGE HERE*/
color: black;
}