/* 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: 100%;
	margin: auto;
	margin-bottom: 50px;
	margin-top: 10px;
	background-color: #f0f0f0;
}

#bodycontent {
	width: 650px;
	background-color: #ffffff;
	border: 1px solid #c0c0c0;
	margin : 10px auto 10px auto;
	padding: 10px;
}

img { border : 0px;}

/* Page Banner Styles */
#banner {
	padding: 1.5%;
	clear: both;
}

#banner h1 {
	margin: 0px;
	margin-top: 5px;
}

/* 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: right;
	clear: right;
	padding: 5px;
	padding-left: 15px;
	width: 250px;
	margin: 1px;
	margin-bottom: 1.5%;
	margin-top: 1.5%;
	border-left: 1px solid #9F9F9F;
}

.box {
	width: 220px;
	padding: 0.5em;
	border: 1px solid #9F9F9F;
	margin: auto;
	margin-bottom: 10px;
	margin-top: 10px;
}

.box h3 {
	text-align: center;
	margin: 0px;       
}

.box p {
	text-align: justify;
}	

/* 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  */
	float: left;
	clear: left;
	padding: 10px;       
	width: 350px;
	margin-bottom: 1.5%;
	margin-top: 1.5%;
}

#content p {
	text-align: justify;
	padding: 2px;
}

#content h3 {
	margin-top: 15px;
	margin-bottom: 5px;
}

/* Navigation Bar */
#navigation {
	clear: both;
	text-align: right;
	padding: 5px;
}

#navigation a, #navigation a:visited {
	text-decoration: none;
	padding: 2px;
}

#navigation a:hover, #navigation a:visited:hover {
	text-decoration:underline;
}

/* footer styles */
#footer {
	clear: both;
	padding: 5px;
	border-top: 1px solid #9F9F9F;
	text-align: right;
	margin-bottom:10px;
}

#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;
}

ul {
	margin-bottom: 5px;
	margin-top: 5px;
} 


acronym {
	cursor: help;
}


/* COLORS */
body {
	color: #000000;
	border-color: #C0C0C0; /* Sometimes this has to be overridden...not sure why */
	font-size: 10pt;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;	
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
	color: #77AACC;
	font-family: Tahoma, Arial, sans, sans-serif;
	font-weight: bolder;
}

h1, h2, h3{
	/* Don't want these bold, they make enough impact as normal text */
	font-weight: normal;
}

#banner p {
	font-family: Tahoma, Arial, sans, sans-serif; 
	font-size: larger;
}

.box h3 {
	background-color: #C0C0C0;	
	color: #FFF; 
}

#footer {
	font-size: smaller;
}


/* Navigation Bar */
#navigation {
	color: #FFF;
	background-color: #C0C0C0;
	font-family: Tahoma, Arial, Helvetica, sans, sans-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;
}

#navigation a:hover, #navigation a:visited:hover {
	color: #CC3333;
}

/* Standard Link Styles */
a, a:active {
	color: #77AACC;
	text-decoration: underline;
}

a:hover, a:active:hover, a:visited:hover {
	color: #CC3333;
}