/* CSS Document */
div.borderless {
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	position: absolute;
	z-index: 0;
	overflow: hidden
}
div.absolute {
	z-index: 1;
	position: absolute;
}
body.nomarginhidden {
	margin: 0px;
	padding: 0px;
	overflow: hidden
}
img.full100 {
	width: 100%;
	height: 100%;
}
.Cblue {
	background-color: white;
	color: blue
}
.center {
	text-align: center
}
p {
	font-family: "Century Gothic"
}
pre {
	font-family: "Century Gothic"
}
table {
	font-family: "Century Gothic"
}
p.sansserif {
	font-family: sans-serif
}
a:link {
	color: blue;
	text-decoration: underline;
}
a:visited {
	color: purple;
	text-decoration: underline;
}
a:hover {
	color: white;
	background-color:blue;
	text-decoration: none;
}
a:active {
	color: red;
	text-decoration: underline;
}

ul {
/*this applies to all ul tags*/
	margin: 0;
	padding: 0;
/*stops them moving around too much*/
}
ul#menu li {
	list-style: none;
	float: left;
	padding: 0px;
}
ul#menu li ul {
	display: none;
/*hide the submenu*/
}
/*now we need to show it on hover*/
ul#menu li:hover ul {
	display: block;
}
/*now we style the sub menus li's*/
ul#menu li ul li {
	display: block;
	float: none;
	padding: 0px;
/*makes them appear on top of each other*/
}
strong.maint {
	font-size: 175%;
	font-weight: bold;
	color: red;
	background: transparent;
	text-decoration: blink;
}