/* Author: Andrew Myers httplayout://apathetic.atwebhosting.com
 * File: blue-steel.css
 * Description: Colour scheme and Font information for template. Change this file to create custom colour schemes.
 * I have tried to include most elements that you may want to change, but i may have missed some...
 * You can always make your own additions of course.
 */

body {
	color: #0f0f0f;
	border-color: #C0C0C0; /* Sometimes this has to be overridden...not sure why */
	font-family: georgia, serif;
	font-size: 10pt;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
	color: blue;
	font-family: georgia, serif;
	font-weight: bolder;
}

ul, li, p {
	font-family: georgia, serif;
	font-size: 10pt;
}

h1, h2, h3 {
	/* Don't want these bold, they make enough impact as normal text */
	font-weight: normal;
}

#banner p {
	font-family: georgia, serif;
	font-size: larger;
}

#footer {
	font-size: smaller;
	color: #77AACC;
}


/* Navigation Bar */
#navigation {
	color: #FFF;
	background-color: blue;
        font-family: georgia, serif;
	font-weight: bolder;
}


/* Form widgets */
.button {
	background-color: #77AACC;
	color: #FFF;
}

input {
	background-color: #E0E0E0;
	border-color: #C0C0C0;
}

/* Navigation Link Styles */
#navigation a, #navigation a:active, #navigation a:visited {
	color: #FFF;
	background-color: blue;
	border-color: blue;

}

#navigation a:hover, #navigation a:visited:hover {
	color: #CC3333;
        font-family: georgia, serif;
	background-color: #E0E0E0;
	border-color: #757575;
}

/* Standard Link Styles */
a, a:active {
	color: blue;
	text-decoration: underline;
}

a:hover, a:active:hover, a:visited:hover {
	color: #CC3333;
}
/* Author: Andrew Myers http://apathetic.atwebhosting.com
 * File: layout.css
 * Description: CSS Layout for template. Defines how/where elements should be placed.
 * 				Override colours and font information in another file. 
 */

/* Standard Font size and type */
body {
	width: 95%;
	margin: auto;
	margin-top: 0px;
  	font-family: georgia, serif;
	font-size: 10pt; }
}

/* Page Banner Styles */
#banner {
	padding: 1.5%;
	clear: both;
}

#banner h1 {
	margin: 0px;
	margin-top: 0px;
}

/* Sidebar */

#sidebar {
	/* if you want this on the left change the float and clear attributes to left. 
		Also change the float and clear attributes to right on #content  */
	float: left;
	clear: left;
	padding: 5px;
	width: 25%;
	margin: 1px;
}

.box {
	padding: 5px;
	border-width: 1px;
	border-style: solid;
	margin: 1px;
	margin-top: 5px;
}

.box h3 {
	text-align: center;
	margin: 0px;       
}

/* Content */

#content {
	/* if you want this on the right change the float and clear attributes to right. 
		Also change the float and clear attributes to left on #sidebar  */
	padding: 5px;
	float: right;
	clear: right;
	width: 70%
}

#sidebar p {
	text-align: left;
	font-size: 10pt
}
#content p {
	text-align: left;
	font-size: 10pt
}

#sidebar h1 {
	border-bottom: solid thin;
}
#content h1 {
	border-bottom: solid thin;
}
#content h2 {
	margin-top: 15px;
	margin-bottom: 5px;
	border-bottom: solid thin;
	text-align: left;
}

/* Navigation Bar */
#navigation {
	clear: both;
	text-align: center;
	padding: 5px;
}
#navigation a, #navigation a:visited {
	text-decoration: none;
	padding: 2px;
	border-width: 1px;
	border-style: solid;
}
#navigation a:hover, #navigation a:visited:hover {
	border-width: 1px;
	border-style: solid;
}

/* footer styles */
#footer {
	clear: both;
	padding: 5px;
	border-top-width: 1px;
	border-top-style: solid;
	text-align: right;
}

#footer p {
	margin: 0px;
}

/* Other styles */
.left {
	float: left;
	clear: left;
	padding: 5px;
}

.right {
	float: right;
	clear: right;
	padding: 5px;
}

.button {
	padding: 2px;
	padding-left: 5px;
	padding-right: 5px;
	border-width: 1px;
	border-style: solid;
	cursor: pointer;
}

input {
	border-width: 1px;
	border-style: solid;
}

a, a:active {
	cursor: pointer;
}

ol {
	margin-bottom: 5px;
	margin-top: 5px;
ul {
	margin-bottom: 5px;
	margin-top: 5px;
}

acronym {
	cursor: help;
}

