/* CSS Document */

.cssbutton{
background-color: #008ED2;
border: 2px #BFBFFF outset;
padding: 1px 4px;
color: #FFFFFF;
text-decoration: none;
font: bold 90% Verdana, Helvetica, sans-serif;
}

.cssbutton:visited{
color: yellow ;
}

.cssbutton:hover{
border-style: inset;
background-color: #FFD784;
padding: 2px 3px 0 5px; /*shift text 1px to the right and down*/
}

.cssbutton:active{
color: red;
}


#menugbs{
margin: 0;
padding: 0;
float: left;
font: bold 13px Tahoma;
}

#menugbs li{
display: inline;
}

#menugbs li a{
float: left;
border-left: 1px solid #d3bdbe; /*left border style*/
color: steelBlue ;
padding: 8px 11px; /*padding of tabs*/
text-decoration: none;
background: transparent url(images/button.gif) top right no-repeat;
}

#menugbs li a#leftmostitem{ /*Extra CSS for left most menu item*/
border-left: 1px solid #d3bdbe; /*left border style*/
}

#menugbs li a#rightmostitem{ /*Extra CSS for right most menu item*/
border-right: 1px solid #d3bdbe; /*right border style*/
background-position: top left; /*Position background image to the left instead of default right, to hide indented underline for this link*/
}

#menugbs li a:visited{
color: #6B8E23;
}

#menugbs li a:hover{
color: red;
background-image: url(images/button1.gif); /*background image swap on hover*/
}
