/* Style Sheet: Screen */

@import url("/matt/extras/accessibility.css");
/*@import url("splash.css");*/
@import url("header.css");
@import url("body.css");
@import url("footer.css");

* {
	font-family: verdana, tahoma, arial, sans-serif;
}
.border {
	border: 1px solid rgb(0,0,0);
}
.red {
	color: rgb(153,0,0);
}
.bold {
	font-weight: bold;
}
.italic {
	font-style: italic;
}
.underline {
	text-decoration: underline;
}
.caps {
	text-transform: uppercase;
}
.lower {
	text-transform: lowercase;
}
.center {
	text-align: center;
}
.left {
	text-align: left;
}
.right {
	text-align: right;
}
.float-left {
	float: left;
	margin-right: 10px;
}
.float-right {
	float: right;
	margin-left: 10px;
}
.clear {
	clear: both;
}
.clear-left {
	clear: left;
}
.clear-right {
	clear: right;
}
.block {
	display: block;
}
.hidden {
	display: none;
}
.inline {
	display: inline;
}
.invisible {
	visibility: hidden;
}
.visible {
	visibility: visible;
}
div#wrapper {
	background: rgb(255,255,255) url("layout/content.jpg") repeat-y scroll top right;
	border-color: rgb(0,0,0);
	border-style: solid;
	border-width: 15px 2px 25px 2px;
	margin: auto;
	max-width: 636px;
	padding: 0;
	width: 636px;
}
div#wrapper * {
	text-align: left;
}

/* structure */
body {
	background: rgb(119,170,221) url("layout/background.jpg") repeat-x fixed top center;
	margin: 25px 0;
	padding: 0;
	text-align: center;
}

/* text */
address, blockquote, div, h1, h2, h3, h4, h5, h6, p, pre {
	cursor: default;
}
blockquote {
	background-color: rgb(240,240,240);
	border: 1px dotted rgb(153,153,204);
	padding: 0 25px;
}
blockquote p {
	margin-right: auto !important;
}
code {
	font-family: "courier new", courier, monospace !important;
}
h3 {
	font-size: 175%;
	margin-bottom: 0;
}
h4 {
	color: rgb(136,17,17);
	font-size: 100%;
	margin-bottom: 0;
	margin-top: 10px;
}
p {
	font-size: 80%;
}

/* list */
dl, ol, ul {
	cursor: default;
}
li {
	font-size: 80%;
}
li li {
	font-size: 100%;
}

/* hypertext */
a {
	color: rgb(17,85,136);
	text-decoration: none;
}
a:link, a:visited {
	color: rgb(17,85,136);
}
a:active {
	text-decoration: underline;
}
a:hover {
	color: rgb(136,17,17);
	text-decoration: underline;
}

/* presentation */
sub {
	vertical-align: bottom;
}
sup {
	vertical-align: top;
}

/* tables */
caption, td, th {
	cursor: default;
}

/* image */
img {
	border: 1px solid rgb(0,0,0);
}

/* Style Sheet/CSS 2.1. (c) 2005. All rights reserved. */