@charset "utf-8";
/* CSS Document */

body  {
	font: 100% Arial, Helvetica, sans-serif;	
	background: #B4AFA4;
	margin: 0; 
	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;
}

h1 {
	font: 150% Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #695E4A;
}
	
h2 {
	font: 120% Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #695E4A;
}

h3 {
	font: 110% Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #788E1E;
	margin-bottom: -10px;
}

h4 {
	font: 105% Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #695E4A;
	margin-bottom: -10px;
}


.thrColFixHdr #container { 
	width: 1024px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #695E4A;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

.thrColFixHdr #mainContent { 
	margin: 0 230px; /* 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: 10px 10px 0 25px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 


.thrColFixHdr #mainContent2 { 
	margin: 0 5px 0 80px; /* 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: 10px 10px 0 230px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 


.thrColFixHdr #header { 
	background: #FFF;
	padding: 0 0 0 0px;
} 

.thrColFixHdr #header h1 {
	margin: 0; 
	padding: 10px 0; 
}

.thrColFixHdr #sidebar1 {
	float: left; 
	width: 220px; 
	background: #fff;
	padding: 0px 10px 10px 15px; 
}

.thrColFixHdr #sidebar2 {
	float: right;
	width: 200px; 
	height: 100%;
	background: #fff; 
	padding: 0px 10px 10px 15px; 
	border-left: 1px solid #666;
}

.thrColFixHdr #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#695E4A;
} 

.thrColFixHdr #footer p {
	margin: 0;
	padding: 5px 0;
	text-align: center;
	color: #FFF;
}

.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-left: 8px;
}

.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}

.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;
}

/* place css box model fixes for IE 5* in this conditional comment */
.thrColFixHdr #sidebar1 { width: 220px; }
.thrColFixHdr #sidebar2 { width: 200px; }


/* place css fixes for all versions of IE in this conditional comment */
.thrColFixHdr #sidebar2, .thrColFixHdr #sidebar1 { padding-top: 0 10px 10px 15px; }
.thrColFixHdr #mainContent { zoom: 1; }
/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */




#navlist {
list-style-type: none;
color: darkgray;
}

#active:hover li {
	display: block;
}

#active li { 
display: none; 
}

#navcontainer {
width: 250px;
}

#navcontainer a {
	color:#695E4A; 
	display: block;
	font:normal 11px verdana,arial,sans-serif; 
	line-height:23px; 
	font-size: 75%;
	text-decoration:none;
	padding:0 5px 0 5px;
	border-bottom: 1px dotted #788E1E;
}

#navcontainer a:active {
	background:#fff url(images/arrow-br.gif) no-repeat right top;
}

#navcontainer a:hover {
	background:#fff; 
	text-decoration: none;
	color: #788E1E;
}

#navcontainer li a.fly {
	background: url(images/arrow-br.gif) no-repeat right top;
}

#navcontainer li a.fly:hover {
	background:#fff url(images/arrow-br.gif) no-repeat right top;
} 

#navcontainer li:hover > a.fly {
	background:#fff url(images/arrow-br.gif) no-repeat right top;
}




/*
#menu {
	width:220px;
	position:relative;
	height: 250px;
}

#menu ul {
	margin:0; 
	list-style:none; 
	white-space:nowrap; 
	text-align:left; 
	background:#fff;
}

#menu li {
	margin:0; 
	padding:3px 0 3px 0; 
	list-style:none;
	display:inline-block;
	display:inline;
	
/*	border-top: 1px dotted #788E1E;
	width:220px;
*//*}

#menu ul ul {
	position:absolute;
	left:-9999px;
}

#menu ul#toplevel {
	position:absolute;
	left:0;
	top:0;
	margin-botttom: 25px;
	color: #695E4A;
}

#menu a {
	display:block; 
	font:normal 11px verdana,arial,sans-serif; 
	color:#695E4A; 
	line-height:25px; 
	font-size: 75%;
	text-decoration:none;
	padding:0 20px 0 0px;
	border-bottom: 1px dotted #788E1E;
} 

#menu ul li:hover > ul {
	left:100%; 
	margin-top:-25px; 
	margin-left:-1px;
}

#menu a:hover ul,
#menu a:hover a:hover ul, 
#menu a:hover a:hover a:hover ul {left:100%;}
#menu a:hover ul ul, 
#menu a:hover a:hover ul ul {left:-9999px;}

#menu li a:hover {
	background:#fff; 
	text-decoration: none;
	color: #788E1E;
}

#menu li:hover > a {
	background:#fff;
	color:#788E1E;
}

#menu li a.fly {
	background: url(images/arrow-br.gif) no-repeat right top;
}

#menu li a.fly:hover {
	background:#fff url(images/arrow-br.gif) no-repeat right top;
} 

#menu li:hover > a.fly {
	background:#fff url(images/arrow-br.gif) no-repeat right top;
}

#menu table {
	position:absolute; 
	left:99%; 
	height:0; 
	width:0; 
	border-collapse:collapse; 
	margin-top:-7px; 
	margin-left:-1px;
}

*/
.largerfont {
	font: 120% Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #FFF;
}


.red {
	color: #EE3B34;
}

.whitebold {
	color: #FFF;
	font-weight: bold;
}


.bullet {
	font-size: 80%;
	font-weight: bold;
	padding-left: 150px;
	margin-left: 0;
}

.bullet li {
	list-style: url(images/bullet-br.jpg);
	list-style-position: outside;
	padding-bottom: 20px;
	padding-left: 5px;
}

.bullet li a {
	text-decoration: none; 
	color: #695E4A;
}

.bullet li a:hover {
	text-decoration: none;
	color: #788E1E;
}


.bullet2 {
	padding-left: 40px;
	margin-left: 0;
	color: #333;
}

.bullet2 li {
	list-style: url(images/bullet-sml.jpg);
	list-style-position: outside;
}

.bullet3 {
	padding-left: 40px;
	color: #333;
	font-family: Arial, Helvetica, sans-serif;
	font-style: normal;
	line-height: 10px;
}

.bullettick {
	color: #333;
	font-family: Arial, Helvetica, sans-serif;
	font-style: normal;
	line-height: 10px;
}

.bullettick li {
	list-style-position: outside;
	list-style-image: url(images/tick.jpg);
}




p {
	color: #333;
	font:Arial, Helvetica, sans-serif;
	font-size: 80%;
	text-align: left;
	line-height: 1.5em;
} 

p a:link {
	color: #798F3C;
	font-weight: bold;
}

p a:hover {
	color: #695E4A;
	text-decoration: underline;
	font-weight: bold;
}

p a:visited {
	color: #798F3C;
	font-weight: bold;
}

p a:active {
	color: #695E4A;
	font-weight: bold;
}

p.footer {
	color: white;
	font-size: 70%
} 

p.footer a:link {
	color: white;
	text-decoration: none;
} 

p.footer a:hover{
	color: #B4AFA4;
} 

.centre {
	text-align:center;
}

p.belowfooter {
	color: #695E4A;
	text-align: right;
	font-size: 70%;
	margin: 3px 6px 4px 0;
}

p.belowfooter a:link {
	color: #695E4A;
	text-decoration: none;
}

p.belowfooter a:hover{
	color: #788E1E;
}

.descriptionshead {
	color: #788E1E;
	font:Arial, Helvetica, sans-serif;
	font-weight: bold;
} 

.descriptions {
	color: #333;
	font:Arial, Helvetica, sans-serif;
	font-size: 80%;
	line-height: 1.3em;
} 

.anchors {
	color: #333;
	font:Arial, Helvetica, sans-serif;
	font-size: 70%;
	line-height: 1.3em;
} 


.readmore {
	color: #695E4A;
	font:Arial, Helvetica, sans-serif;
	font-weight: bold;
} 

.bold {
	font-weight: bold;
} 

.bolditalics {
	font-weight: bold;
	font-style: italic;
} 

.italics {
	font-style: italic;
} 

.right {
	text-align: right;
} 

.topofpage {
	font-size: 70%;
	text-decoration: underline;
	font-weight: bold;
	text-align: right;
} 

.topofpage a:link {
	color: #695E4A;
}

.topofpage a:hover{
	color: #788E1E;
}

.greenitalic {
	color: #788E1E;
	font:Arial, Helvetica, sans-serif;
	text-align: left;
	line-height: 1.5em;
	font-style:italic;
	font-weight: bold;
} 

.icons {
	padding-right: 5px;
	padding-left: 5px;
	text-align: left;
}

