/* 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: 101%; }
}

/* 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;       
}

.box p {
	text-align: left;
	margin: 10px;
}

/* 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%
}

#content p {
	text-align: left;
	font-size: 1.0em;
}

#sidebar td {
	font-size: 1.0em;
}

#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;
}

#table p {
       margin: 0px;
       padding-left: 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;
}

