@charset "utf-8";
/* CSS Document */

body {
	background: #939598;
	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: #939598;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
}
img {
	border:0; 
}
.category {
	float:left;
	height:220px;
	width:236px;
	margin-right:14px;
	margin-bottom:20px;
	background: #BDBEC0;
}
.category h2 {
	font-size:90%;
	margin:0;
	padding-left:14px;
	padding-top:12px;
	color: #008C99;		
}
.category h2 a {
	color: #008C99;	
	text-decoration:none;
}
.category p {
	font-size:80%;
	margin:0;
	padding-left:14px;
	padding-top:3px;
	
}

#container {
	width: 1016px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header {  /* 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. */
	padding-top: 0;
	padding-bottom: 0;
	clear:both;
	background:#008C99; 
	text-align:center; 
	height:30px;
}

#mainContent {
	padding: 0 15px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	min-height:615px;
	position:relative;
}

#mainContent-grey {
	padding: 0 15px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #BDBEC0;
} 
 
#footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #939598 url(../images/outline.gif) no-repeat top center;
	height:70px;
	width:996px;
	clear:both;
}
#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 */
	
}

#footer ul.footer-right {
	float:right;
	width:60%;
	text-align: right;	
		 
}

#footer ul.footer-left {
	float:left;	
	width:40%;	 
}
#footer ul {
	margin:0;
	padding:0;
	margin-top:10px;
}
#footer li {
	float:left;
	font-size:80%;
	color: #FFFFFF;
	list-style-type: none;
	padding:7px;
	margin:0;
	background-image: url(../images/devider-teal.gif);
	background-repeat: no-repeat;
	background-position: right center;
}
#footer ul.footer-right li  {
	display:inline;
	float:right;
	text-align:right;	
}
#footer li a {
	color: #FFFFFF;
	text-decoration:none;
}
#whiteboard {
	width:100%;
	position:relative;
}

#left-column {
float:left;
width:317px;
margin-top:0;
padding-bottom:10px;
}
#right-column {
float:right;
width:317px;
margin-top:0;
padding-bottom:10px;
}
#centre-column {
margin-left:342px;
margin-right:342px;
padding-top:0;
padding-bottom:10px;
}

#mainContent h1 {
	margin:0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding-top:26px;padding-bottom:13px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	position:relative;
	z-index:50;
	font-size:70%;
} 
#mainContent h1 a.title-text {
	z-index:-5;
	position:absolute;
	top:35px;
	left:35px;
		
}
#mainContent h2 {
	font-size:85%;
	color:#008C99;
	margin-top:0;
	margin-bottom:0;
	padding-top:10px;
}
#mainContent h3 {
	font-size:85%;
	margin-top:0;
	margin-bottom:0;
	padding-top:10px;
	color: #008C99;
}
#mainContent p {
	font-size:80%;
	text-align: justify;
	margin-top:0;
	margin-bottom:0;
	padding-top:5px;
	padding-bottom:5px;	
}
#mainContent li {
	margin-top:0;
	margin-bottom:0;
	font-size:80%;
	text-align: justify;
	list-style-image:url(../images/bullet-teal.gif);
	padding-top:5px;
	padding-bottom:5px;	
}
#mainContent ul, #mainContent ol  {
	padding-left:15px;
	padding-bottom:10px;
	margin-top:0;
	margin-bottom:0;
	padding-top:5px;
	padding-bottom:5px;	
}
#whiteboard .left-arrow {
	position:absolute;
	top:225px;
	left:10px;
}
#whiteboard .right-arrow {
	position:absolute;
	top:225px;
	right:10px;
}
#whiteboard .right-arrow {

}
#ripped-edge {
	background-color: #FFFFFF;
	background-image: url(../images/outline-two.gif);
	background-repeat: no-repeat;
	background-position: center top;
	width:100%;
	height:18px;
}

#mainContent h3 {
	font-size:85%;
	margin-top:0;
	margin-bottom:0;
	padding-top:10px;
	color: #008C99;
}

#right-column a, #centre-column a, #left-column a {
	color:#008C99;
	text-decoration:none;
}
#mainContent a:hover {
	text-decoration:underline;
}
.category p a {
	color:#FFFFFF;
	text-decoration:none;
}
.blue-telephone {color: #008C99;font-weight:bold;}
.white-telephone {color: #FFFFFF;font-weight:bold;}

/* hack for float issue required */ 
.clearItem:after {
content: ".";
clear: both;
height:0;
visibility:hidden;
display:block;
}
.clearItem {display:inline-block;}
/* Start Commented Backslash Hack \*/
* html .clearItem, * html .clearItem * {height:1%;}
.clearItem {display:block;}
/* Close Commented Backslash Hack */

.MenuBarHorizontal a#selected {
	color: #5B585A;
}
#image-centre {
	min-height:439px;
	height:457px;
	width:985px;
	display: table-cell; 
	vertical-align: middle;
}
.sitemap {
font-size:80%;
}
#anchor {
	position:absolute;
	width:100%;
	height:30px;
	z-index: 20;
	bottom: 40px;
}

#links a {
	color: #939598; 
}
