@charset "UTF-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #000000;
	background-image:url(../images/common/tbc.gif);
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}

p {
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	line-height: 18px;
	color: #000000;
}

p a, p a:visited {
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	line-height: 18px;
	color: #000000;
	font-weight: bold;
	text-decoration: none;
}

p a:hover, p a:active {
	text-decoration: underline;
}

h1 {
	font: 17px Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #000000;
}

h2 {
	font: 14px Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #000000;
	margin-top: 22px;
}

h3 {
	font: 11px Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #000000;
	background-color:#ffaa00;
	line-height: 18px;
	padding-left: 5px;
	width:145px;
	margin-bottom:-10px;
}

h4 {
	font: 11px Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #000000;
	line-height: 18px;
	width:145px;
	margin-bottom:-10px;
}

a img {
	border: none;
}

.bulletedlist li {
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	line-height: 18px;
	color: #000000;
	margin-right: 45px;
	/* list-style-image:url(../images/common/bullet.gif); */
	list-style:none; 
	background-image:url(../images/common/bullet.gif);
	background-repeat:no-repeat;
	background-position: 0px 4px;
	padding-left: 18px;
}

.bulletedlist li a, .bulletedlist li a:visited {
	color: #000000;
	text-decoration: none;
	font-weight: bold;
}

.bulletedlist li a:hover, .bulletedlist li a:active {
	text-decoration: underline;
}


#container { 
	width: 892px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

#header { 
	padding: 0 20px 0 10px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	position: relative;
	width: 732px;
} 

#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 155px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 15px 10px 15px 10px; /* padding keeps the content of the div away from the edges */
}

#sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 155px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 15px 10px 15px 10px; /* padding keeps the content of the div away from the edges */
}

#mainContent { 
	margin: 0 190px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 15px 20px 15px 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 

#footer { 
	padding: 0px 10px 0px 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background-color: #000000;
}
 
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 10px;
	color: #FFFFFF;
	text-align: center;
	
}

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-right: 10px;
	margin-left: 10px;
	margin-top: 5px;
}

.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 10px;
	margin-top: 5px;
}

.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}


/* OUTER CANVAS WRAP */

#canvascontainer {
	margin-top:15px;
	width:900px;
	margin-left:auto;
	margin-right:auto;
}

#canvastop {
	background-image:url(../images/common/canvas/canvas_t.gif);
	width:900px;
	height:12px;
	margin:0px;
	padding:0px;
	font-size:1px;
}

#canvasmid {
	background-image:url(../images/common/canvas/canvas_m.gif);
	width:900px;
	height:100%;
	margin:0px;
	padding:0px;
	background-repeat:repeat-y;
}

#canvasbottom {
	background-image:url(../images/common/canvas/canvas_b.gif);
	width:900px;
	height:12px;
	margin:0px;
	padding:0px;
	font-size:1px;
}

/* END OUTER CANVAS WRAP */


/* TOP NAV LINKS */

#topnav {
	position: absolute;
	top: 140px;
	right: -112px;
	font-size: 10px;
	color: #000000;
	text-align: right;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

#topnav a:link, #topnav a:visited {
	text-decoration: none;
	color: #000000;
}

#topnav a:hover, #topnav a:active {
	text-decoration: underline;
}

/* END TOP NAV LINKS */


/* LEFT NAV MENU */

.leftnav{
	list-style-type: none;
	margin: 10px 0;
	padding: 0;
	width: 160px; /* width of menu (don't forget to add border with below!) */
}

.leftnav li{
	border-bottom: 1px solid #6a6a6a; /* Gray border beneath each menu item */
}

.leftnav li a{
	background: white url(../images/common/leftnav/leftnav.gif) repeat-y left top; /* Background image positioned to the left(v) top(h) corner initially */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
	display: block;
	color: #000000;;
	width: auto;
	padding: 3px 3px 5px 24px; /* Vertical (top/bottom) padding for each menu link */
	text-decoration: none;
}

.leftnav li a:visited, .leftnav li a:active{
	color: #333333;
}

.leftnav li a:hover, .leftnav li.selectedmenuitem a{
	background-position: -387px 0; /* Shift background image horizontally 387px, or the start of the 2nd background image */
	color: #333333;
}

/* LEFT NAV MENU */


/* CURRENT ACTS BOX */

.randomiser{
	visibility: hidden;
	background-color: #999999;
	color: #000000;
	width: 130px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	padding: 5px 10px 5px 10px;
	line-height: 16px;
}

.commentsource {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	font-weight: bold;
	line-height: 13px;
}

#currentactsbox_top {
	background-image:url(../images/common/rightnav/currentactsbox_t.gif);
	height:8px;
	width: 150px;
	font-size: 0px;
	margin-top: 10px;
}

#currentactsbox_bottom {
	background-image:url(../images/common/rightnav/currentactsbox_b.gif);
	height:8px;
	width: 150px;
	font-size: 0px;
}

/* END CURRENT ACTS BOX */

/* TESTIMONIALS */

.randomiser_main{
	visibility: hidden;
	background-color: #999999;
	color: #000000;
}

/* END TESTIMONIALS BOX */

/* HEADER PROMO BOX */

#headerpromo_container {
	display: table;
	height: 70px;
	width: 390px;
	position: absolute;
	bottom: 50px;
	left: 185px;
	overflow: hidden;
	background-image:url(../images/indexpage/header_promo_bg.png);
}

#headerpromo_contentwrap {
	#position: absolute;
	#top: 50%;
	display: table-cell;
	vertical-align: middle;
}

#headerpromo_content {
	#position: relative;
	#top: -50%;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	line-height: 16px;
	font-size: 11px;
	font-weight: bold;
	color:#003366;
	text-align: center;
	width: 370px;
	padding: 7px 10px 10px 10px;
}

#headerpromo_content a:link, #headerpromo_content a:visited {
	color:#003366;
	text-decoration:none;
}

#headerpromo_content a:hover, #headerpromo_content a:active {
	text-decoration:underline;
}

/* END HEADRER PROMO BOX */


/* FORM ELEMENTS */

form {
	
}


fieldset {
	position: relative;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #000000;
	padding: 10px;
	border: none;
}

#radiobutton {
	background: #f9f9f9;
}

#singleline {
	background: #f9f9f9;
}

#multipleline {
	background: #f9f9f9;
}

#checkbox {
	background: #f9f9f9;
}

#submit_clear {
	background: #f9f9f9;
}

#radiobutton input, #checkbox input {
	margin-left: 10px;
}

#singleline input, #multipleline textarea{
	margin-left: 200px;
}

#singleline label, #multipleline label {
	position: absolute;
	left: 100px;
}

#radiobutton label, #checkbox label {
	font-weight: bold;
	margin-left: 70px;
}

#submit_clear {
	position: relative;
	margin-left: 2px;
	padding-bottom: 10px;
	padding-left: 210px;
	width: 288px;
}

/* END FORM ELEMENTS */
