/* SITE STRUCTURE */
* {
	margin:0;
	padding:0;
}

/* must declare 0 margins on everything, also for main layout components use padding, not 
vertical margins (top and bottom) to add spacing, else those margins get added to total height 
and your footer gets pushed down a bit more, creating vertical scroll bars in the browser */

html, body, #wrap {
	height: 100%;
	background-color: #FAFAFA;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 1.3;
	color: #333333;
}

body > #wrap {
	height: auto; min-height: 100%;
}

#main {
	padding-bottom: 40px;
}  /* must be same height as the footer */

/* clearfix*/
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.clearfix {
	display: inline-block;
}
/* Hides from IE-mac \*/
* html .clearfix {
	height: 1%;
}
.clearfix {
	display: block;
}

/* End hide from IE-mac */



/* TEXT & LINK ATTRIBUTES */
a:link, a:visited {
	text-decoration: none;
	color: #F8681E;
}
a:hover, a:active {
	text-decoration: underline;
	color: #2A5F79;
}

p {
	font-size: 13px;
	font-weight: normal;
	line-height: 1.3;
}
h1 {
	font-size: 24px;
	font-weight: normal;
}
h2 {
	font-size: 20px;
	font-weight: normal;
}
h3 {
	font-size: 14px;
	font-weight: normal;
}
h4 {
	font-size: 11px;
	font-weight: normal;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
h5 {
	font-size: 17px;
	font-weight: normal;
}


/* CONTENT STRUCTURE */
#header {
	background-color: #FFFFFF;
	background-image: url(../images_final/BGs/BG_Header.png);
	background-repeat: repeat-x;
	background-position: top;
}
#headerCentre {
	height: 150px;
	width: 960px;
	margin-right: auto;
	margin-left: auto;
	background-image: url(../images_raw/Header/swirl.png);
	background-repeat: no-repeat;
	background-position: center top;
}
#headerCentreAdmin {
	height: 135px;
	width: 960px;
	margin-right: auto;
	margin-left: auto;
	background-image: url(../images_raw/Header/swirl.png);
	background-repeat: no-repeat;
	background-position: center top;
}
#welcome {
	height: 180px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 0px;
	margin-bottom: 0px;
	background-image: url(../images_final/BGs/BG_WelcomeBand.png);
	background-repeat: repeat-x;
}
#welcomeCentre {
	height: 180px;
	margin-right: auto;
	margin-left: auto;
	width: 900px;
	background-image: url(../images_final/BGs/BG_Welcome.png);
	background-repeat: no-repeat;
	background-position: center top;
	padding-right: 30px;
	padding-left: 30px;
	padding-top: 6px;
	margin-top: 0px;
	margin-bottom: 0px;
}
#contentArea {
	width: 900px;
	margin-right: auto;
	margin-left: auto;
	background-image: url(../images_final/BGs/BG_ContentArea.png);
	background-repeat: repeat-y;
	padding-top: 20px;
	padding-right: 30px;
	padding-bottom: 0px;
	padding-left: 30px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #E6E6E6;
	margin-top: 0px;
	margin-bottom: 0px;
}
#colFull {
	float: left;
	width: 858px;
	background-color: #FAFAFA;
	padding: 20px;
	display: inline;
	border: 1px solid #E6E6E6;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
}
.colLeft {
	float: left;
	width: 600px;
	margin: 0px;
	padding: 0px;
	display: inline;
}
.colLeftDiv {
	float: left;
	width: 558px;
	background-color: #FCFCFC;
	display: inline;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
	padding-top: 15px;
	padding-right: 20px;
	padding-bottom: 30px;
	padding-left: 20px;
	background-image: url(../images_final/BGs/BG_div_left.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #CCCCCC;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #FFFFFF;
}
.colRight {
	display: inline;
	float: left;
	width: 280px;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 20px;
}
.colRightDiv {
	display: inline;
	float: left;
	width: 238px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
	padding-top: 15px;
	padding-right: 20px;
	padding-bottom: 30px;
	padding-left: 20px;
	background-image: url(../images_final/BGs/BG_div_right.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-color: #FCFCFC;
	border: 1px solid #FFFFFF;
}
#colClearAll {
	clear: left;
	margin: 0px;
	padding: 0px;
	height: 1px;
}

#footer {
	position: relative;
	margin-top: -40px; /* negative value of footer height */
	height: 28px;
	clear:both;
	background-color: #FFFFFF;
	text-align: center;
	padding-top: 12px;
}
form {
	margin: 0px;
	padding: 0px;
}

/* FORM ITEMS */
input.textBox {
	font-family: Arial, Helvetica, sans-serif;
	margin-top: 3px;
	margin-right: 0px;
	margin-bottom: 2px;
	margin-left: 0px;
	background-color: #FFFFFF;
	font-size: 12px;
	padding-top: 3px;
	padding-right: 3px;
	padding-bottom: 3px;
	padding-left: 3px;
	border: 1px solid #CCCCCC;
	color: #666666;
}
textarea.textBox {
	font-family: Arial, Helvetica, sans-serif;
	margin-top: 3px;
	margin-right: 0px;
	margin-bottom: 2px;
	margin-left: 0px;
	background-color: #FFFFFF;
	font-size: 12px;
	padding-top: 3px;
	padding-right: 3px;
	padding-bottom: 3px;
	padding-left: 3px;
	border: 1px solid #CCCCCC;
	color: #666666;
}

/* CLASSES */
.textWhite {
	color: #FFFFFF;
}
.textOrange {
	color: #F8681E;
}
.textBlue {
	color: #214E64;
}
.textRed {
	color: #FF0000;
}
.img_x {
	position: relative;
	z-index: 10;
	top: 0px;
	right: 0px;
	float: left;
}
.photoBorderStdL {
	padding: 0px;
	margin-top: 3px;
	margin-right: 10px;
	margin-bottom: 10px;
	margin-left: 0px;
	border: 1px solid #CCCCCC;
}
.photoBorderStdR {
	padding: 0px;
	margin-top: 3px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 10px;
	border: 1px solid #CCCCCC;
}
.photoBorderWhite {
	margin: 0px;
	padding: 0px;
	border: 2px solid #FFFFFF;
}
.photoBorderDark {
	margin: 0px;
	padding: 0px;
	border: 1px solid #CCCCCC;
}
.photoBorderForum {
	padding: 0px;
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 0px;
	margin-left: 0px;
	border: 1px solid #CCCCCC;
}
.horzLine {
	width: 100%;
	padding: 0px;
	background-image: url(../images_final/BGs/BG_HorzLine.png);
	background-repeat: repeat-x;
	margin: 0px;
	height: 10px;
}
.tdLine {
	margin: 0px;
	padding: 0px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
}
.divDark {
	background-color: #00CCFF;
}

