/*
	CSS layout definitions for GOC website
	V1.0 Full width, fixed side columns with liquid centre.
	©Duncan Weaver, Three Degrees West 2008-2010
*/

#Container {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	background-color: #FFFFFF;
	text-align: left;
}

/* 	Fix the header but let the remainder scroll 
	Will be desirable with drop-down menus to be added later
	This doesn't work well in IE (flicker on hyperlink rollover) so leave out for now
*/

#WrapperFixed {
/*	position: absolute; 
	top: 0;
	left: 0;
	overflow: visible;
	z-index: 4;
	height: 144px;
	width: 100%;
*/
}
#WrapperScroll {
/*	overflow: auto;
	position: absolute; 
	top:144px;
	left:0;
	bottom:0; 
	right:0; 
*/
}

/*	Header Section at top */

#WrapperHeader {
	background-color: #E0E0C2;
	height: 120px;
	margin: 0px;
	padding: 0px;
}
#MenuHeader {
	width:100%;
	height: 24px;
	overflow: hidden;
	margin: 0px;
	padding: 0px;
	background-image: url(/images/GOC/layout/BG_menu.jpg);
	background-repeat: repeat-x;
}
#YouAreHere {
	margin: 0;
	padding: 2px 10px 8px 10px;
}
#Login {
	float: right;
	margin: 0;
	padding: 2px 10px 8px 10px;
	text-align: right;
}

/*	Main section in the middle - navigation - content - customised links */

#WrapperMain {
	width: 100%;
	overflow: hidden;
}

/*	FLOAT POSITIONING */

#ContentPanel {
	margin-left: 160px;
	margin-right: 240px;
	z-index: 1;
	padding: 0;
}

#NavPanel {
	width: 120px;
	float: left;
	margin-bottom: -32000px;
	padding-bottom: 32000px;
	margin-left: 10px;
	z-index: 2;
}
	
#LinkPanel {
	float: right;
	width: 200px;
	margin-right: 10px;
	margin-bottom: -32000px;
	padding-bottom: 32000px;
	z-index: 2;
}


/*	Finally, the footer at the bottom */

#FooterPanel {
	margin: 10px;
	background-color: #E0E0E0;
}

/*	List style for header menu (level 1 links) */
/*	Note this is sized in pixels to properly control spacing */

#NavTop {
	margin: 0 0 0 10px;
	height: 24px;
}
#NavTop ul{
	font-size: 14px;
	line-height: 24px;
	margin: 0;
	padding: 0;
	white-space: nowrap;
}

#NavTop li {
	list-style-type: none;
	display: inline;
}
#NavTop li a {
	color: white;
	text-decoration: none;
	padding: 3px 8px 7px 8px;
}
#NavTop li a:hover {
	color: #000000;
	background-color: #FFFFFF;	/*req for IE6 to honour img below*/
	background-image: url(/images/GOC/layout/BG_menuactive.jpg);
	background-repeat: repeat-x;
}

/*	List style for side navigation (level 2 & 3 links) */

#NavSide {
	margin: 0;
	padding: 0;
}
#NavSide ul{
	list-style: none;
	list-style-image: none;
	margin: 0;
	padding: 0;
	display: block;
}
#NavSide li {
	list-style: none;
	list-style-image: none;
	background-color: transparent;
	padding: 1px 0 1px 7px;
	margin: 0;
	font-size: 12px;
	border-bottom-style: solid;
	border-width: 1px;
	border-color: #E0E0C2;
}
#NavSide li a {
	display: block;
	color: #666633;
	text-decoration: none;
	width: 100px;
}
#NavSide li:hover {
	color: #FFFFFF;
	background-color: #999966;
	text-decoration: none;
}

#NavSide li:hover a {
	color: #FFFFFF;
}

#NavSide li.L0 {
	font-weight: bold;
	background-color: #E0E0C2;
}
#NavSide li.L0:hover {
	background-color: #999966;
}

#NavSide li.L3 {
	padding-left: 21px;
	font-style: italic;
}

/*	FIN */
