@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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;
	background-color: #001A40;
}
#container { 
	width: 1000px;  /* 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 */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header {
	margin: 10px;
	padding: 0;
	background-image: url(images/headerStripe2.gif);
	background-repeat: repeat-x;
	height: 163px;
} 
#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 */
}

#header img.words {
	float: right;
}

#header img.title {
	float: left;
	padding-top: 20px;
	padding-left: 5px;
}

#header ul.navbar {
	clear: left;
	text-align: left;
	list-style-type:none;
	padding-top: 20px;
	margin-left: -50px;
}

#header li.navbar {
	display: inline;
	font-size: 12px;
	padding-left: 20px;
}

#header a {
	color: #003077;
	font-size: 16px;
}

#addressDetails {
	font-size: 80%;
	font-weight: bold;
	float: right;
	width: 350px;
	margin-right: 10px;
	margin-top: 49px;
	color: #003366;
	text-align: right;
	padding-bottom: 0;
	margin-bottom: 0;
}

#addressDetails p {
	margin-bottom: 1px;
}	

#sidebar {
	float: right; /* since this element is floated, a width must be given */
	width: 270px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 10px;
	margin-right: 10px;
	background-color: #C1DAFF;
}

#sidebar h1 {
	color: #003366;
	background-color:#FFA928;
	font-size: 16px;
	padding: 5px;
	text-align: left;
	background-image:url(images/camera.png);
	background-repeat:no-repeat;
	background-position: right;
}

#sidebar p {
	font-size: 75%;
}

#sidebar img.highlight {
	float: right;
	padding: 3px;
}

#mainContent { 
	margin: 0 300px 0px 0px; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 

#mainContent img.main 
{
 border: 1px solid #333;
}

#mainContent h1 {
	font-size: 16px;
	color: #003366;
	background-color: #C1DAFF;
	margin-right: 5px;
	padding: 5px;
	text-align: left;
	background-image:url(images/camera.png);
	background-repeat:no-repeat;
	background-position: right;	
}

#mainContent h2 {
	margin-left: 5px;
	font-weight: bold;
	color: #003366;
	font-size: 14px;
}

#mainContent p {
	font-size: 75%;
}

#mainContent table.diary {
	width: 675px;
	font-size: 75%;
	border: 1px solid #003366;
	border-collapse:collapse;
}

#mainContent table.diary tr {
	border: 1px solid #003366;
	margin:0;
}

#mainContent table.diary td, table.diary th{
	border: 1px solid #003366;
	padding: 5px;
}

#mainContent table.diary td.member, .member {
	color: #336600;
}

#mainContent table.diary td.comp, .comp {
	color: #FF6600;
}

#mainContent table.diary td.speaker, .speaker {
	color: #003366;
}

#mainContent ul.links {
	font-size: 90%
}

#mainContent li.links {
	padding-top: 5px;
}

#mainContent a.links {
	color: #000033;
}

#contactForm {
	float: left;
	width: 300px;
	margin-right: 30px;
	margin-left: 10px;
	padding-left: 20px;
	border: solid 1px #004080;
}

#thumbnails {
	width: 675px; 
	margin-left: 10px;
}

#thumbnails ul {
	list-style-type: none; 
	margin: 0; 
	padding: 0;
}

#thumbnails li {
	display: inline;
}

#thumbnails img {
	padding: 10px;
	border: solid 1px #000033;
}

#thumbnails a {
	border: none;
}

#footer {
	margin: 10px;
	padding: 0 10px 0 20px;
	background-image: url(images/footerStripe.gif);
	background-repeat: repeat-x;
	background-position: bottom;
} 
#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: #666666;
	text-align: center;
}

#footer a {
	color: #666666;
}

.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;
}

.centreText {
	text-align: center;
}

.small {
	font-size: 10px;
}

.thanks {
	font-size: 14px;
	color: #CC0000;
	font-weight: bold;
}
