@charset "UTF-8";
/* CSS Document */

body  {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #A4C4AA;
	background-repeat: repeat;
}
#container { /* this will contain all your content*/
	width: 780px; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #F5EBE2;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
} 
#container #header { /*This is the top of your design. you can use an image in the rules for the header*/
	background-color: #89A48E;
	text-align: left;
	height: 200px;
	padding: 0;
	width: 780px;
	margin: 0px;
	background-image: url(images/headerREDO.jpg);
} 
#container #footer {
	background-image: url(images/footer.jpg);
	height: 100px;
	width: 780px;
	margin: 0px;
	padding: 0px;
	background-position: bottom;
}
#header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	text-align: center;
	text-indent: -6000px; /* you can "hide" the h1 from the viewer but not from Google by this text-indent trick. An alternative would be to use display:none*/
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
}
#container #navbar {/*this is for a horizontal navigation bar*/
	background-color: #A4C4AA;
	margin: 0px;
	padding: 0px;
	height: 22px;
	width: auto;
	border-bottom-width: medium;
	border-bottom-style: solid;
	border-bottom-color: #4D2661;
	border-top-width: medium;
	border-top-style: solid;
	border-top-color: #4D2661;
}
#container #navbar ul {
	list-style-type: none; /*takes the bullets off*/
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 240px;/* moves your buttons over to the right to make them appear centered*/
}
#container #navbar li {
	float: right;/*normally list items appear on different lines. This will put them on the same line*/
	text-decoration: none;
	margin: 0px;
	padding: 0px;
}
#container #menu { /* this is a div for a vertical menu of buttons. Here I have the names of my pictures*/
	width: 120px;
	float: left;
	padding-top: 6px;
	padding-right: 0px;
	padding-bottom: 6px;
	padding-left: 0px;
	border-right-width: thin;
	border-right-style: solid;
	border-right-color: #000000;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #000000;
	background-color: #CCCCFF;
	clear: both;
}
#container #menu p {
	text-align: center;
	margin: 0px;
	padding-top: 0px;
	padding-right: 9px;
	padding-bottom: 4px;
	padding-left: 9px;
	font-size: .8em;
	font-style: oblique;
	color: #990000;
}
#container #rightbox {
	border-left-width: thin;
	border-left-style: dashed;
	border-left-color: #660033;
	width: auto;  /*to avoid the 3 pixel jog bug  */
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 170px;/*this will put the right div a good bit over from the left side of the container div*/
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
} 
#footer p {
	margin: 0;
	height: 62px;
	width: 760px;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
a{
	display:block;
	margin:0;
	padding-top: 3px;
	padding-right: 16px;
	padding-bottom: 4px;
	padding-left: 16px;
	width:auto; /*avoids Extra Whitespace in List Links Bug*/
	font-size: .8em;
	text-decoration: none;
}
a:link, a:visited, a:active {
	color: #000099;
	
}
a:hover {
	color: white;
	text-decoration: underline;
	background-color: #77957C;
}
#main {
	margin:0;
	text-align: left;
	clear: both;
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}
#container #menu ul {
	list-style-type: none;
	width: auto;
	margin: 0px;
	padding: 0px;
}
#container #menu li {
	margin: 0px;
	padding: 4px;
	text-align: center;
	height: auto;
}
#container #menu a {
	margin: 0px;
	padding: 0px;
}
#container #footer p {
	text-align: center;
}
