/* CSS Document */
#button {
width: 175px;
/*width: 13em; /* was 10em */
border-right: 1px solid #000;
padding: 0 0 1em 0;
margin-bottom: 1em;
font-family: 'Trebuchet MS', 'Lucida Grande',
Verdana, Lucida, Geneva, Helvetica,
Arial, sans-serif;
background-color: #CCCCCC;
color: #333;
}

#button ul {
list-style: none;
margin: 0;
padding: 0;
border: none;
}

#button li {
border-bottom: 1px solid #90bade;
margin: 0;
font-family: 'Trebuchet MS', 'Lucida Grande';
font-weight: bold;
}

#button li a {
display: block;
padding: 2px 5px 5px 0.5em;
border-left: 1px solid #CC7B11;
border-right: 1px solid #CC7B11;
background-color: #CC7B11;  /* off orange color   */
color: #fff;
text-decoration: none;
width: 100%;
}

html>body #button li a {
width: auto;
}

#button li a:hover {
border-left: 1px solid #CCCCCC;
border-right: 1px solid #CCCCCC;
background-color: #CCCCCC;
color: #000;
}


