/* styles to create fixed width column centred on gray page  */

/* base style for text declared here also  */
body {
	font-family: Verdana,Arial,Helvetica,sans-serif;
	font-size: 80%;
	color: #151515;
	line-height: 1.5em;
	background: #f3f3f3 url(../images/d0d0d0f3f3f360.png) repeat-x;
}

#outer {
	max-width: 1200px;
	margin-top: 10px;
	margin-bottom: 2px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 20px;
	border: thin inset #DDDDFF; /* next 3 lines give drop shadow effect */
	/* The first value describes the x-offset (could be a negative value as well), 
	the second the y-offset, the third the radius of the shadow and the fourth the color of it. */ 
	-moz-box-shadow: -7px 7px 7px #aaa;
	-webkit-box-shadow: -7px 7px 7px #aaa;
	box-shadow: -7px 7px 7px #aaa;
	background: #FFF;
}

#header {
	height: 86px;
	margin: 10px 0 0;
	text-align: left;
	background-color:#FFFFFF;
}

#sidebar {
	float: left;
	width: 16%;
	font-size: 0.9em;
	padding-top: 60px;
	padding-bottom: 10px;
	background: #FFF;
}

#content {
	min-height: 580px;
	padding: 10px 0 20px 10px;
	width: 80%;
	float: right;
	border-left: 3px solid #EEF;
	background: #FFF;
}

#footer {
	clear: both;
	margin: 10px 0px;
	height: 60px;
	line-height: 1.3em;
	color: #000080;
	font-size: xx-small;
	background-color:#78fdfe;
}

#right {
	float:right;
	width: 260px;
} /*image in footer*/

#left {
	float:left;
	padding: 18px 0 0 10px;
	width: 360px;
} /*text in footer*/

/*code below is to force IE6 to position boxes correctly - all other browsers work fine*/
* html body{ /*IE6 hack*/
		padding: 20px 10% 0 10%; 
}

* html #outer { /*IE6 hack*/
		height: 100%; 
		width: 100%; 
}

* html #content { /*IE6 hack*/
		height: 70%; 

}

