﻿#dropdown {
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
    clear:right;
}

#dropdown li {
	float: left;
	width: 190px;
	margin-right:35px;	
}

#dropdown li ul {
	position: absolute;
	background: #fdd;
	width: 190px;
	padding-bottom:3px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#dropdown li:hover ul, #dropdown li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}

.droplink {
  padding: 0;
  margin: 0;
  list-style: none;
  line-height: 1;
  display:block;
  border:solid 1px #000;
}

.droplink li a {
  color:black;
  display:block;
  width:190px;
  text-indent:4px;
  text-decoration:none;
}

.droplink li a:hover {
  color:white;
  background:black;
}

.button {
  background: url('images/plainb.gif') no-repeat scroll top left;
  height:35px;
  width:200px;
  text-decoration:none;
  display:block;
  text-align:center;
  line-height:24px;
  color:#fff;
  text-indent:-5px;
}
.button:hover {
  color:white;
}