/* Body Properties */
body
{
margin: 0; /* Sets the margins for the entire site */
padding: 0; /* Sets the padding for the entire site */
background-image: url(../images/background.jpg); /* Image is used as a background */
background-repeat: repeat; /* Sets the background so it does not repeat itself */
background-attachment: fixed; /* Sets the background so it scrolls with the web page */
text-align: center; /* Centers the container for IE 5* browsers. */
}
/* End Body Properties */

/* Container Properties */
#container
{
text-align: left; /* This overrides the "text-align:center" on the body properties */
}
/* End Container Properties */

/* Link Properties */
a:link, a:visited
{
color: #ffffff; /* Sets the link color to white before and after it is clicked on */
text-decoration: none; /* Sets it so the links don't have underlines or other decorations */
background-color: #1b7a42;
}
a:hover
{
color: #ffffff; /* Sets the link color to white while the mouse pointer is hovering over the link */
text-decoration: none; /* Sets it so the links are underlined while the mouse pointer is hovering over the link */
background-color: #00f393;
display: block;
}
a:active
{
color: green;
text-decoration: none; /* Sets it so the links don't have underlines or other decorations */
}
/* End Link Properties*/

/* Table Properties */
table, tr , td
{
margin: 0; /* Sets the table margins to 0 */
padding :0; /* Sets the padding to 0 */
border: 1px solid white; /* Sets the table border to 1 pixel around with a solid white border color */
border-collapse: collapse; /* Sets the table so it doesn't have double borders in or around the table */
width: 800px; /* Sets the table width to 800 pixels */
}
table#center
{
margin-left: auto; /* Sets the left margin of the table to auto so it is centered */
margin-right: auto; /* Sets the right margin of the table to auto so it is centered */
}
td.bg_color
{
background-color: #1b7a42; /*Sets the table cell color to a light green */
}
/* End Table Properties */

/* Drop Down Menu */
#menu ul 
{
margin: 0;
padding: 0;
}
#menu li ul a 
{
margin-left: 0;
}
#menu li
 {
float: left;
width: 9em;
position: relative;
list-style-type: none;
}
#menu li ul
{
visibility: hidden;
position: absolute;
width:8.9em;
}
#menu li:hover ul
{
visibility: visible;
background-color: #1b7a42;
border: 1px solid #ffffff;
}
/* End Drop Down Menu */