/*This is a blue style I created.
  It is based almost entirely off my favorite color.

  This is the most detailed stylesheet I have ever made.*/

/*Main tags*/

* {
	padding: 0;
	margin: 0;
}

body {
	background-color: #bfe0ff;
	text-align: center;
	color: #002040;
	font-size: small;
	font-family: sans-serif;
}

.art {
	display: none;
}

.art:target, .art.sftarget {
	display: block;
}


/*Page header*/

#header {
	color: #E0F0FF;
	height: 100px;
	background-color: #0080FF;
	background-image: url(./header-back.png);
	border: 0;
}

#header a:link {
	color: #E0F0FF;
	text-decoration: none;
}

#header a:visited {
	color: #C0E0FF;
	text-decoration: none;
}

#header a:active {
	color: #C0E0FF;
	text-decoration: underline;
}

#header-left {
	background: url(header-left.png) top left;
	width: 20px;
	height: 100px;
	float: left;
}

#header-right {
	background: url(header-right.png) top right;
	width: 20px;
	height: 100px;
	float: right;
}

#banner {
	/*	height: 100px;
	background-color: #bfe0ff;*/
	display: none;
}


/*Main body div*/

#main {
	margin-left: auto;
	margin-right: auto;
	padding-left: 1em;
	padding-right: 1em;
	padding-bottom: 0.75em;
	text-align: justify;
	background-color: #bfe0ff;
	width: auto;
}


/*Page content*/

#content {
	margin-top: 1em;
	text-align: justify;
	background-color: #a0d0ff;
	padding: 0 0 1em 0;
}

h1 {
	font-size: medium;
	font-variant: small-caps;
	font-weight: bold;
	text-decoration: underline;
	text-align: center;
	color: #000000;
}

#content p {
	margin: 1em 0.5em 0 0.5em;
}

#content a img {
	border-top: 1px dashed blue;
	border-bottom: 1px dashed blue;
	border-left: 0;
	border-right: 0;
}

.img {
	text-align: center;
}

#top-left {
	background-image: url(top-left.jpg);
	background-repeat: no-repeat;
	height: 10px;
	width: 10px;
	float: left;
	position: relative;
	top: 0px;
}

#top-right {
	background-image: url(top-right.jpg);
	background-repeat: no-repeat;
	height: 10px;
	width: 10px;
	float: right;
	position: relative;
	top: 0px;
}


/*Footer*/

#footer {
	font-size: x-small;
	border-top: 2px groove #a0d0ff;
	color: #003060;
	background-color: #a0d0ff;
	text-align: center;
	display: block;
}

#bottom-left {
	background: url(bottom-left.jpg) bottom left no-repeat;
	display: block;
}

#bottom-right {
	background: url(bottom-right.jpg) bottom right no-repeat;
	font-size: x-small;
	display: block;
}


/*Navigation*/

#nav, #nav ul {
	list-style: none;
	text-align: center;
}

#nav li {
	float: left;
	position: relative;
	width: 7.5em;
	text-align: center;
	padding-top: 1px;
}

#nav li ul {
	position: absolute;
	top: 1em;
	left: -999em;
}

#nav li ul li {
	padding: 0.25em;
	text-align: left;
}

#nav li:hover ul, #nav li.sfhover ul {
	display: block;
	left: 0em;
	top: 1em;
	border-left: 1px solid blue;
	border-right: 1px solid blue;
	border-top: 1px solid blue;
	border-bottom: 1px solid blue;
	background-color: #0080FF;
}

#nav li ul li:hover, #nav li ul li.sfhover {
	background-color: #0069D2;
}

#nav li ul ul {
	margin: -1.325em 0 0 7.5em;
}

#nav li:hover ul ul, #nav li.sfhover ul ul, #nav li li.sfhover ul ul, #nav li li:hover ul ul {
	left: -999em;
}

#nav li:hover ul, #nav li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li ul li:hover ul, #nav li li ul li.sfhover ul {
	display: block;
	left: 0em;
	top: 1.25em;
}


/*Printing Styles*/

@media print {

	#header, #footer, #banner {
		display: none;
	}

	#content p, h1 {
		color: black;
	}
}

