/**********
 * GENERAL
 **********/
html,body {
	height: 100%;
	padding: 0;
	margin: 0;
	font-size: 90%;
	/*font-family: "Arial Narrow Bold"; ANOTHER NICE FONT IN UBUNTU*/
	font-family: sans-serif;
}
/* wrapper so that we can have gaps at either side, and a mid-width */
div.wrapper {
	margin: 0 auto;
	width: 80%;
	position: relative;
	/* tweaked so header items can never overflow */
	min-width: 610px;
}


/*******************
 * SITE PROPORTIONS
 *******************/
div.leftColumn {
	position: absolute;
	/* advert is 120px wide, but had to increase the column it to make the
	selected menu item's colour bar go all the way to the right column */
	width: 135px;
	top: 97px; /* went for 120px for headerMessage */
	left: 15px;
}
div.rightColumn {
	/* 4 values: top right bottom left */
	margin: 0px 15px 0px 150px;
	/* sometimes rightCol can be shorter than left col (fixed at around 820px)
	so give the rightCol a min height, to keep footer below both... */
	min-height: 820px;
}


/***********
 * FLOATERS
 ***********/
div.logo, div.postedItemTitleLeft {float: left;}
div.searchBar, div.postedItemTitleRight {float: right;}

/*********
 * HEADER
 *********/
div.headerContent {
	height: 76px;
	position: relative;
}
div.header {
	margin-bottom: 15px;
	position: relative;
}
img.centered {
	display: block;
	margin: 0 auto;
}
div.logo {
	left: 3%;
	position: relative;
	top: 12px;
	width: 279px;
}
div.searchBar {
	position: relative;
	top: 30px;
	right: 10px;
	/* have to declare width on floiated items. found by trial and error. */
	width: 300px;
	text-align: right;
}
div.headerMessageBox {
	position: relative;
	text-align: center;
	margin: 8px 15px 8px 150px;
}
div.headerMessage {
	position: relative;
	top: -3px;
}


/*******
 * MENU
 *******/
/* NOTE: cannot use star images as the bullet point style
   as cannot get brown bar behind them... */
ul.menu {
	/* 4 values: top right bottom left */
	margin: 9px 0 0 5px;
	/* get rid of ul bullet points */
	list-style: none;
	/* NEED this for positioning */
	padding: 0;
	/* fix for webkit browsers to get rid of gap */
	width: 100%;
}
li.menuItem, li.menuItemSelect, li.rss {
	font-size: 1.05em;
	display: block;
}
/* this was for before we introduced the hover color bar
li.menuItem {
	padding-left: 25px;
	height: 21px;
	top: 5px;
}
div.unselectedPos {padding-top: 2px;}
*/
li.menuItemSelect {font-weight: bold;}
li.rss {margin-top: 16px;}
span.vAlignTop {vertical-align: top;}


/****************
 * TEMPLATE CODE
 ****************/
div.outerBrownBox {
	position: relative; /* needed for ie */
	padding: 2px 8px 8px 8px;
}
div.innerBrownBox {
	position: relative; /* needed for ie */
	border: thin solid;
	padding: 8px;
	/* this needs a min height so that the colour bar coming from the selected
	menu item always connects to the main content block */
	min-height: 150px;
}
div.titleBar {
	min-width: 100px;
	height: 20px;
	font-size: 1.1em;
}
div.postedItemTitleLeft {
	width: 50%;
	position: relative; /* needed for ie */
}
div.postedItemTitleRight {
	width: 45%;
	text-align: right;
	position: relative; /* needed for ie */
}
a {text-decoration: none;}
p {margin-bottom: 0px;}
/* get rid of nasty blue border around img links */
a img {border:0;}
div.readMorePositioner {
	position: relative;
	margin-top: 10px;
}
div.formSpacer {margin-bottom: 5px;}
/* a couple more useful ones (used in about.php and javascriptRequired.php) */
div.pageTitle {
	font-weight: bold;
	font-size: 1.1em;
	margin: 3px 0 10px 0;
}
div.pageText {margin-left: 7px;}

/********************
 * ADVERT AND FOOTER
 ********************/
div.ubuntu-countdown {
	position: absolute;
	left: -56px;/* -30px */
	top: -160px;
}
div.advertBox {
	position: relative;
	width: 120px;
	height: 600px;
	/* had to add this extra 1px left margin, to compensate as had to make left-col
	wider by 2px so that selected menu item colour bar reached the richt-col */
	margin: 170px 0 0 0; /* top: 15px */
	/* old advert box...
	padding: 4px;
	margin: 15px;
	background-color: #c5dbe5;
	text-align: center;*/
}
div.footer {
	/*margin: 0 auto; NO MARGINS ANYMORE, SO NO NEED FOR CENTERING*/
	text-align: center;
	font-size: 13px;
	padding-top: 35px;
}
