body, html {
	height: 100%;
}

body {
	padding: 0;
	margin: 0;
	min-width: 760px; /* Doesn't work in IE6 */
	color: #036;
	background: url( "/pictures/right.png" ) repeat-y 100% 0;
}

.clear {
	clear: both;
}

#main {
	min-height: 100%;
	background: url( "/pictures/left.png" ) repeat-y 0 0;
}

#mainContainer {
	min-height: 100%;
}

.outer {
	padding-left: 130px; /*** Same width as margin-left for the float-wrap div ***/
	padding-right: 165px; /*** Our right column width ***/
}

.inner {
	width: 100%;
	padding-bottom: 55px; /*** Padding-bottom value is the same value as the total height of the footer ***/
}

/* Header */

#header {
	height: 80px;
}

#logo {
	margin: 20px 30px 15px;
}

.float-wrap {
	float: left;
	width: 100%;
	margin-left: -130px; /*** Same length as .outer padding-left but with negative value ***/
}

/* Main center coloumn */

.contentWrap {
	padding: 2.2em 20px 100px 7px;
}

#content {
	float: right;
	margin-right: -130px; /*** Same length as .outer padding-left but with negative value ***/
	width: 100%;
	padding: 2px;
}

/*** div.left is in div.float-wrap, and when div.float-wrap is neg margined to the left, div.left is carried over into the proper position.***/

#left {
	float: left;
	width: 100px; 
	height: 535px;
	font-family: verdana, arial, helvetica, sans-serif;
	font-size: .65em;
	padding: 2px;
}

/* Right coloumn */

#right {
	float: right;
	width: 145px;
	font-size: .6em;
	padding: 4.5em 0 6em; 
	margin-right: -145px; /** This negative margin-right value is the same as the right column width (width + padding). ***/
}

/* Footer style definitions */

#footer {
	height: 43px;
	margin-top: -55px;
	clear: left;
	text-align: center;
	border-top: 2px solid #036;
	font-size: .7em;
	padding-top: 10px;
}

/* start: the topmost main horizontal navigation list */

#navcontainer {
	background: #036 url( "/pictures/m1.bmp" ) repeat 0 0;
	font-family: verdana,arial,helvetica,sans-serif;
	font-size: 10px;
	font-weight: bold;
	height: 2.3em;
	padding-left: 20px;
}

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

#navlist li { 
	float: left;
	position: relative;
}

#navlist li a {
	display: block;
	padding: .5em 1.4em;
	text-decoration: none;
	color: #fff;
	border-right: 2px solid #fff;
}

#navlist li a:hover {
	background-color: #369;
}

#navlist li a img {
	width: 15px;
	height: 8px;
	border: none;
}


			
/* end: the topmost main horizontal navigation list */