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

body,td,th  {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	color: #003333;
	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 */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #336666;
	background-image: url(images/til11.jpg);
	background-attachment: fixed;
}
h1, h2, h3{
text-align:center;
}
#container { /* this will contain all your content*/
	width: 780px;
	margin: 0 auto; /* 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: #FFFFFF;
} 
#container #header { /*This is the top of your design. you can use an image in the rules for the header*/
	background-color: #FF9933;
	text-align: left;
	background-image: url(images/vidLogo.jpg);
	height: 140px;
	padding: 0;
	width: 780px;
	margin: 0px;
} 
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 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*/
}
#container #navbar {/*this is for a horizontal navigation bar*/
	margin: 0px;
	height: 40px;
	width: auto;
	background-image: url(images/navback2.jpg);
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#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*/
	position: relative;
	top: 10px;
}
#container #navbar li {
	float: left;/*normally list items appear on different lines. This will put them on the same line*/
}
#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;
} 
#container #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 130px;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 20px;
	font-size: 0.8em;
	color: #336666;
	line-height: 1.3em;
	background-color: #FFFFFF;
	font-weight: bold;
	clear: both;
}
#container #sidebar1 p {
	border-bottom-width: thin;
	border-bottom-style: dotted;
	border-bottom-color: #660000;
	padding-bottom: 5px;
}
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.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: 12px;
	padding: 0px;
	margin-top: 2px;
	margin-right: 0px;
	margin-bottom: 2px;
}
p {
	font-size: 0.8em;
	line-height: 1.7em;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 12px;
	padding: 0px;
	margin-top: 2px;
	margin-bottom: 2px;
	margin-left: 0px;
}
.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: 0px;
	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: #003333;
}
a:hover {
	color: #003333;
	text-decoration: underline;
}
#footer {
	background-image: url(images/footerGraphic.jpg);
	background-repeat: no-repeat;
	margin: 0px;
	padding: 0px;
	height: 50px;
	width: 780px;
	clear: both;
}

.normal a{
	display:inline;
	text-decoration: none;
}
#container #sidebar1 .normal {
	display: inline;
	margin: 0px;
	padding: 0px;
	font-size: 1em;
	color: #610F0F;
}
.normal a:link, .normal a:visited,.normal a:active {
	color: #660000;
	text-decoration: none;
	display: inline;
}
 .normal a:hover {
	color: #660000;
	text-decoration: underline;
	display: inline;
}

a:link, a:visited, a:active {
	color: #003333;
}
#container #main p a{
	display:inline;
	margin:0;
	font-size: 1em;
	padding: 0px;
	color: #660000;
}
#container #main p a:link, #container #main p a:visited, #container #main p a:active {
	color: #660000;
}
#container #main p a:hover {
	color: #660000;
	text-decoration: underline;
}
#container #rightbox p a{
	display:inline;
	margin:0;
	font-size: 1em;
	padding: 0px;
	color: #660000;
}
#container #rightbox p a:link, #container #rightbox p a:visited, #container #rightbox p a:active {
	color: #660000;
}
#container #rightbox p a:hover {
	color: #660000;
	text-decoration: underline;
}
#main {
	margin:0;
	text-align: left;
	clear: both;
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}
#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: #C6E4E3;
	margin-bottom: 6px;
}
#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 #menu ul {
	list-style-type: none;
	width: auto;
	margin: 0px;
	padding: 0px;
}
#container #menu li {
	margin: 0px;
	padding: 0px;
	text-align: center;
}
#container #menu a {
	margin: 0px;
	padding: 0px;
	font-size: .2em;
}
#container #footer p {
	text-align: center;
}
.menu ul {
	list-style-type: none;
	width: 120px;
	margin: 0px;
	padding: 0px;
}
.menu li {
	margin: 0px;
	padding: 0px;
	text-align: center;
	font-size: .8em;
}
.menu a {
	margin: 0px;
	padding: 0px;
}
h4 {
	font-size: 0.9em;
	text-align: left;
}
