/* CSS based on templates from blog.html.it/layoutgala/ 
 * Modifications by Tim North: info@scribe.com.au 
 */

/* COLOUR SCHEME
 * #f2cf30: orange
 * #06C: light blue
 * #333: dark gray
 */


/* TAGS */

html, body {
	 margin: 0;
	 padding: 0;
	}

body {
	background: #FFF; 
	color: #333;
	font-family: Verdana, Georgia, Arial, Helvetica, sans-serif;
	}

	
p {
	margin: 0 10px 10px 10px;
	}

div#header {
	background:  #06C;
	color:  #FFF;
	margin: 0;
	border-bottom: 2px solid black;
	border-top:    2px solid black;
	}

div#header h1 {
	font-size: 150%;
	margin:  0;
    padding: 5px 10px 5px 10px;
	}

div#header h2 {
	font-size: 110%;
	font-style: italic;
	margin:  0;
    padding: 0 10px 10px 10px;
	}

div#content h1,
div#content h2,
div#content h3 {
	background: #FFF; 
	color: #06C; 
    padding: 0 10px 0 10px;
	}

div#content p {
	line-height: 1.25;
	}

div#navigation {
	background: #f2cf30;
	color: #FFF;
	}

div#navigation h4 {
	background: #FFF; 
	color: #06C;
	font-weight: bold;
	margin:  0.5em   0    0.25em 0;
	padding: 0.25em 5px 0.25em 5px; 
	}

div#navigation a {
	background: #f2cf30;
	border: 0;	
	color: #06C; 
	display: block; 
	font-weight: bold;
	padding: 0.2em 2px 0.5em 8px; 
	text-decoration: none;
	}

div#extra {
	background: #FFF;
	color:  #333;
	}
	
div#extra img {
	padding: 25px 5px 10px 45px;
	}

div#footer {
	background:  #06C;
	color:  #333;
	border-bottom: 2px solid black;
	border-top:    2px solid black;
	}

div#footer p {
	font-size: 80%;
	margin: 0 0 0 200px;
	padding: 5px 10px;
	}

div.fltright {
	clear: both;
	float: right; 
	padding-left: 1em; 
	}

table tr {
	vertical-align: top; 
	background: #FFF;
	color: #333;
	}

table#cntct h4 {
	background: #FFF; 
	color: #06C; 
	font-weight: bold; 
	margin: 0; 
	padding-left: 10px;
	}



/* STRUCTURE (Don't fiddle!) */


div#wrapper {
	float: left;
	width: 100%;
	}

div#content {
	margin:  0 200px;
	}

div#navigation {
	float: left;
	width: 200px;
	margin-left: -100%;
	}

div#extra {
	float: left;
	width: 200px;
	margin-left: -200px;
	}

div#footer {
	clear: left;
	width: 100%;
	}


