/*===========================================================================================*
 * SITE LAYOUT / ID POSITIONING                                                              *
 * Sets positioning of xhtml elements  on the web page. No FAC!                              *
 * Optix Solutions Ltd / Tom Harman 2005                                                     *
 *===========================================================================================*/


/* =ALLOW 100% HEIGHT WITH HEADER AND FOOTER : CONTAINER EQUALS ALL HEIGHT - FOOTER **********/

html, body 	{
	height: 100%;  /* required*/
}

#container, #footer {
	width: 754px; /* Width of the content site framework / container */
	margin: 0;
	position: relative;
	text-align: left;
}

#container {
	min-height: 100%;
	background: #fff url(../i/layout/bg-sidebar.gif) 5px top repeat-y;
	padding-left: 5px;
}

* html #container {
	height: 100%;
}

/* important for stopping footer overlapping body content */
#content {
	padding-bottom: 1.7em;
}

/* =PAGE LAYOUT IDS **************************************************************************/
/* main container positioning at the top of page */

/* =HEADER CONTAINER */

#branding-logo {
	height: 136px;
	background: url(../i/layout/header.jpg) left top no-repeat;
}

/* =MAIN CONTAINER */
	
div#main {
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0;    
	text-align: left;
}	
	
/* =nav */

div#nav {
	float: left; 
	width: 205px;
	display: inline;
	margin-left: -760px;
	margin-top: 100px;
	line-height: 350%;
}

div#nav li {
	margin-left: 20px;
	
	margin-bottom: 20px;
}

div#nav li a {
	text-decoration: none;
	color: #000;
	text-indent:0;
	padding-left: 46px;
	margin: 0;
	margin-left: 0;
	padding-top: 10px;
	padding-bottom: 10px;
	background: url(../i/layout/bullet-1.gif) left top no-repeat;
	font-size: 90%;
}

div#nav li a:hover {
	color: #066;
	background: url(../i/layout/bullet-2.gif) left top no-repeat;
	text-decoration: underline;
}

/* =content main */

div#content {
	float: left;
	width: 520px;
	text-align: right;
	display: inline;
	background-image: url(../i/layout/bg-content.gif);
	background-position: 1px top;
	background-repeat: no-repeat;
	margin-left: 200px;
	padding-left: 30px;
	padding-top: 60px;
	margin-right:0;
	line-height: 150%;
}

