@charset "utf-8";
body  {
	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: #000066;
	background-color: #F0F6FA;
	font-family:Arial, Helvetica, sans-serif;
	font-size: 90%;
	background-attachment: fixed;
	background-image: url(../images/back_blue.png);
	background-repeat: repeat-x;
}
 #container {
	width: 950px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #FFFFFF;
	background-image: url(../images/waveslogo2009bk.jpg);
	background-repeat: no-repeat;
	background-position: right top;
} 
 #header {

} 
 #header 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: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.imgheadercentre {
	text-align: center;
}

 #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 150px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 0px 15px 20px;
	margin-top: 10px;
}
#sidebar1 ul.topul{
	list-style-type:none;
	margin-left:0px;
	padding-left:0px;
	margin-top:0px;
	padding-top:0px;
}
#sidebar1 li.topli{
	margin:0px 1px 5px 0px;
	text-decoration:none;
	/*background-color:#CCCCCC;*/
	border-bottom:dashed 1px #cccccc;
	padding:0px 2px 5px 2px;
}
#sidebar1 li a{
	text-decoration:none;
}
#sidebar1 li a:link{
	text-decoration:none;
	color: #1F41E1;
}
#sidebar1 li a:visited{
	text-decoration:none;
	color: #2141EE;
}
#sidebar1 li a:hover{
	text-decoration:underline;
	color: #C8034A;
}
#sidebar1 li a:active{
	text-decoration:none;
	color:#C8034A;
}
#siderbar1 ul.subul{
list-style-type:circle;
}
li.subli{
	border-bottom:none;
	font-size:90%;
	margin-left:-15px;
	padding-right:3px;
}
 #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 120px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 10px 15px 20px;
	margin-top: 10px;
}
 #mainContent {
	margin: 10px 160px; /* 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: 0px 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
#sidebar2 h3 {
	font-size: 110%;
	margin-top:0px;
	padding-top:0px;
}

 #footer {
	margin:5px 0px 5px 0px;
	background-color: #FFFFFF;
	border-top:solid 1px #666666;
} 
 #footer p {
	font-size: 70%;
	text-align: center;
	padding-bottom: 5px;

}
.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;
}
h1 {
	font-size: 130%;
	color: #CA024A;
	margin:0px;
	padding:0px;
}
h2 {
	font-size: 110%;
	color: #CA024A;
}

.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;
}
.imgnoborder{
	border:none;
}
.centre {
	text-align: center;
}
.wrap {
	word-wrap:break-word;
}
