/*
   To change colours, simply change the value of all the strings containing some kind of
   a colour (blue, red, black, etc.) or the hex values (#fff, #000, #eee, etc.)

*/





body{
 background-color: #fff;
 position: absolute;
 left: 50%; top: 15px;
 width: 750px; height: auto;
 margin: 0 0 0 -475px; padding: 0;
 font: 1em arial, sans-serif;
 color: #000;
}







 /* The header at the top. */
#header{
	position: relative;
	left: 0;
	top: 0px;
	width: 900px;
	height: 115px;
	background-color: #fff;
	text-align: left;
	z-index: 2;
	font-family: Arial, Helvetica, sans-serif;
	float: none;
	padding: 0px;




}

 /* Styles the <H1> tag which is in the header div. */
#header h1{
 margin: 0; padding: 0 0 0 15px;
 font: 3em Georgia, "Times New Roman", Times, serif;
 background-color: transparent;
 z-index: 3;
}

 /* Styles the word red (#word1) Works only with <H1> and <H2>. */
h1 .word1, h3 .word1{
	color: red;

}

 /* Styles the word black (#word2) Works only with <H1> and <H2>. */
h1 .word2, h3 .word2{
	color: black;

}









 /* Styles the menu-holder. */
#menu{
 position: absolute;
 left: 0px; top: 290px;
 width: 150px; height: auto;
 padding: 1px 0 0 0;
 background-color: #eee;
 z-index: 1;
}

 /* Styles the list holder. */
#menu ul{
 margin: 0; padding: 0;
 list-style: none;
 font: 0.8em verdana, sans-serif;
 background-color: #eee;
}

 /* Styles each "list-item" (or "button") with the same style. */
#menu ul li{
 display: block;
 margin: 0 0 1px 0; padding: 3px 3px 3px 3px;
 background-color: #fff;
}

 /* Gives the button a hover-effect. */
#menu ul li:hover{
 margin: 0 0 1px 0; padding: 2px 3px 2px 3px;
 border-top: 1px #ccc solid; border-bottom: 1px #ccc solid;
 background-color: #fff;
}

 /* Styles the link within the button. */
#menu ul li a{
 display: block;
 color: red;
 text-decoration: none;
}

 /* Gives the link a hover-effect. */
#menu ul li a:hover{
 color: black;
}











 /* Styles and positions the content-holder. */
#content{
	position: absolute;
	left: 150px;
	top: 115px;
	width: 750px;
	height: 415px;
	background-color: #fff;
	border-left: 1px solid #ccc;
	border-top: 1px solid #ccc;
	padding-bottom: 4px;
	z-index: 0;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #ccc;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ccc;


}

 /* Styles the Header (<h3>). */
#content h3{
 display: block;
 font: 1.6em Georgia, "Times New Roman", Times, serif;
 color: #000;
 margin: 1em 0 0 1em; padding: 0 0 .4em 0;
 border-bottom: 1px #ddd solid;
}

 /* Styles the paragraphs (<p>) in #content. */
#content p{
 display: block;
 margin: 0.6em 1.9em 0; padding: 0 0 0.6em;
 font: .9em/1.5em arial, sans-serif;
 text-align: justify;
 text-indent: 0em;
}

 /* Styles the links within the #content. */
#content a{
 color: black;
 text-decoration: none;
 border-bottom: 1px red solid;
}

 /* Gives the links a hover effect. */
#content a:hover{
 color: red;
 text-decoration: none;
 border-bottom: none;
}









 /* The footer. */
#footer{
	position: absolute;
	width: 725px;
	height: auto;
	font: 0.6em verdana, sans-serif;
	color: #bbb;
	padding: 25px;
	text-align: right;
	border-top: thin none;
	left: auto;
	top: 403px;
	margin: 0px;



}










 /* Styles the <acronym> tag. */
acronym{
 border-bottom: 1px #000 dotted;
 cursor: help;
}

