/* CSS code for left nav bar*/
/* width is width of each box of text */
.buttonscontainer {width: 100px;}

/*
margin is space between link text
width is % of buttoncontainer width to use
border is size of border around each box of text
border-color is for each side of the border so u can get a shadow effect
background color is behind letters in each box - 4e9258 is Forest Green
*/
.buttons a {color: #000066;
border: 5px solid;
background-color: #4E9258;
padding: 2px;
padding-left: 3px;
font: 10px Arial, sans-serif;
font-weight: bold;
text-decoration: none;
border-color: #4E9258 #000033 #000033 #4E9258;
display: block;
margin: 0px;
width: 100%;
text-align: left;}

/* 
background-color is when mouse is over link - 3EA99F is Light Sea Grass
color is text when mouse is over link
border is size of border around each box of text 
*/
.buttons a:hover {border: 5px solid;
padding-left: 4px;
padding-top: 3px;
padding-bottom: 1px;
padding-right: 1px;
background-color: #3EA99F;
border-color: #000033 #4E9258 #4E9258 #000033;
color: #FFFFFF;
text-decoration: none;}

