/*
 *	CSS			: Style.css
 *	Description	: CSS for the Visitors site
 *	Author		: www.theWebRoom.co.uk
 *	Date		: 01/06/2008
 */

 /*
 * Imports
 */

 @import url("layout.css");				/* handles the main screen structural components */
 @import url("elements.css");			/* handles the main screen elements */
 @import url("template_styles.css");	/* handles the imports for the individual page templates */

 /*
 * Standard Rules
 */

	 html, body {
		text-align: center;
	 }

	 body {
		margin:0px;
		padding: 0px;
		background-color:#ffffff;
		font-size:0.8em;
		height:100%;
		font-family: Arial, Helvetica, Tohoma;
		color: #000000;
	}

	div, td, p, h1, h2, h3, h4, h5, a
	{
		text-align:left;
	}

	ul {
		list-style-type: square;
		padding-left: 60px;
	}

	li {
		padding-bottom: 6px;
	}
	
	h1 {
		font-size: 20px;
		color: #006300;
		font-family: Arial, Helvetica, Tohoma;	
		text-decoration:none;
	}

	h2 {
		font-size: 13px;
		color: black;
		font-family: Arial, Helvetica, Tohoma;
		text-decoration:underline;
		margin-top: 0px;
		margin-bottom: 0px;
	}

	h3 {
		font-size: 12px;
		color: #006300;
		font-family: Arial, Helvetica, Tohoma;	
		text-decoration:none;
	}

	h4 {
		font-size: 10px;
		color: #006300;
		font-family: Arial, Helvetica, Tohoma;	
		text-decoration:none;
	}

	h6 {
		font-size: 20px;
		margin-top: 5px;
		margin-bottom: 15px;
		color: #006300;
		font-family: Arial, Helvetica, Tohoma;	
	}

	p {
	  padding-bottom: 5px;
	}

/**** Constant declarations ****/

	div#fontsize1 {
		font-size: 1px !important;
	}

	a {
		color: #333333;
		text-decoration: none;
		border-bottom: #666666 thin solid;
		cursor: pointer;
	}

	a:hover {
		color: #333333;
		text-decoration: none;
		border-bottom: #666666 thin dashed;
		cursor: pointer;
	}

	.clear {
		clear: both;
	}

	table.indented {
		margin-left: 200px;
		vertical-align: top;
	}

