﻿/* CSS reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}
/* remember to define focus styles! */
:focus {
	outline: 0;
}
body {
	line-height: 1;
	color: black;
	background: #C0C0C0;
}
ol, ul {
	list-style: none;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}


/* CSS layout */
#wrapper {
	border: 1px solid #000000;
	margin-left: auto;
	margin-right: auto;
	width: 700px;
	background-color: #FFFFFF;
}
#header {
	height: 41px;
	background-color: #A20328;
}
#menu {
	height: 20px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-width: 2px;
	border-bottom-width: 2px;
	border-top-color: #999999;
	border-bottom-color: #999999;
	margin-top: 1px;
	margin-bottom: 1px;
}
#content {
}
#table {
	margin-right: 35px;
	margin-left: 35px;
}
#footer {
	margin-top: 50px;
	background-color: #8E0324;
	height: 28px;
}
#mainMenu {
	position: absolute;
	width: 700px;
	height: 20px;
	background-color: #999999;
}
#mainMenu li {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	background-color: #999999;
	position: relative;
	width: 80px;
	height: 20px;
	display: inline;
	float: right;
	list-style-type: none;
	text-align: right;
}
#mainMenu li:hover ul {
	visibility: visible;
}
#mainMenu li a {
	color: #FFFFFF;
	text-decoration: none;
	line-height: 20px;
	width: 70px;
	height: 20px;
	display: block;
	float: right;
	padding-right: 10px;
}
#mainMenu li a:hover {
	border-right-style: solid;
	border-right-width: 3px;
	border-right-color: #A20328;
	padding-right: 3px;
	color: #000000;
	margin-right: 4px;
	vertical-align: middle;
}
#mainMenu li ul {
	position: relative;
	width: 140px;
	height: auto;
	visibility: hidden;
	right: 60px;
}
#mainMenu li ul li {
	width: 140px;
	height: 22px;
	font-size: 0.9em;
}
#mainMenu li ul li a {
	color: #FFFFFF;
	width: 130px;
	padding-right: 10px;
	line-height: 22px;
	vertical-align: bottom;
}
