/*
=============================================== 
 SiteMaster Simple CMS
 © 2008 SiteMaster.com.au  
 Fonts CSS
 $Revision: 1.00 $
===============================================
 All rights reserved.							
 Use of this code is covered by the terms and	
 conditions in the license agreement. No		
 unauthorized duplication or distribution is	
 permitted. SiteMaster's copyright notices must	
 remain in the PHP and HTML sections of the code.		
===============================================

 * We must define some layout properties - to set header background and such
 * Do not change these options unless you know EXACTLY what you are doing
 */
 
/* ------------------------------ */
/* first we set the content centered in the browser window */
/* ------------------------------ */
body {
	font-family:Arial, Helvetica, sans-serif;
	font-size:100%;
	color:#333333;
	width:50em;  /*set the site width - not below 750*/
	text-align:left; /* For IE*/
	margin:0 auto; /*For Mozilla & Opera*/
	background-color: #456789;
	background-repeat: repeat-x;
}
.wrapper {
	background-color: #FFFFFF;
	height: auto;
	padding: 0px;
	color: #333333;
}
/* ------------------------------ */
/*  padding for the div holders */
/* ------------------------------ */
.header, .menu, .spampoison, .footer, .content {
	padding: 4px;
}
/* ------------------------------ */
/*  font Sizes  */
/* ------------------------------ */
.content {
	font-size:100%;
	color: #333333;
}
.footer {
	font-size: 0.69em;
	color: #333333;
}
.p {
	font-size:100%;
	color: #333333;
}
/* ------------------------------ */
/*  Links  */
/* ------------------------------ */
a:link {
	color: #0000ff;
	background-color:inherit;
}     /* unvisited link */
a:visited {
	color:#0000ff;
	background-color:inherit;
}  /* visited link */
a:hover {
 color: #0066ff;
 background-color:inherit;
 text-decoration:underline;
}   /* mouse over link  when the mouse hovers over a link, it will display an underline */
a:active {
	color: #0000ff;
	background-color:inherit;
}   /* selected link */
a.grey:link {
	color: #999999;
	background-color:inherit;
	text-decoration:none;
}     /* unvisited link */
a.grey:visited {
	color:#999999;
	background-color:inherit;
	text-decoration:none;
}  /* visited link */
a.grey:hover {
	color: #0066ff;
	background-color:inherit;
	text-decoration:underline;
}   /* mouse over link  when the mouse hovers over a link, it will display an underline */
a.grey:active {
	color: #999999;
	background-color:inherit;
	text-decoration:none;
}   /* selected link */
/* ------------------------------ */
/*  Headers  */
/* ------------------------------ */
.header {
	margin-top: 10px;
	margin-right: 10px;
	margin-bottom: 0px;
	margin-left: 10px;
	padding: 6px;
}
.h1 {
	color: #CC3300;
	size: 148px;
	font-weight:bold;
}
/* ------------------------------ */
/*  General  */
/* ------------------------------ */
.topBanner {
	height:256px;
}
.thinBorder {
	border:1px solid #cccccc;
	margin-top: 10px;
	margin-right: 10px;
	margin-bottom: 10px;
	margin-left: 10px;
	padding: 10px;
}
.greytext {
	color: #333333;
}
.redtext {
	color: #FF0000;
}
.redtext2 {
	color: #FF0000;
	font-size:18px;
}
.whitetext {
	color: #FFF;
	font-size:6px
}
.red {
	color: #CC0000;
}
/* ------------------------------ */
/*  2 box layouts  */
/* ------------------------------ */

#box2left {
	width:222px;
	float:left;
	padding-left: 10px;
	padding-right: 10px;
}
#box2right {
	width:540px;
	float:right;
	padding-right: 10px;
	text-align: left;
	padding-top: 3px;
}
