/* CSS code for left nav bar*/
/*
width is width of each box of text

*/
.buttonscontainer {width: 156px;}

/*
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 2358B8 for Dodgers
*/
.buttons a {color: #000066;
border: 5px solid;
background-color: #003333;
padding: 2px;
padding-left: 3px;
font: 13px Arial, sans-serif;
font-weight: bold;
text-decoration: none;
border-color: #347235 #000033 #000033 #347235;
display: block;
margin: 0px;
width: 100%;
text-align: left;}

/* 
background-color is when mouse is over link
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: #6AFB92;
border-color: #000033 #347235 #347235 #000033;
color: #FFFFFF;
text-decoration: none;}
