/******************************************/	
/* CSS powered by clock - www.clock.co.uk */
/******************************************/	

/**
 * structure.css
 
 * Change the values to alter the overall layout/structure of the Web site.
 * If you change the container width, you must also change other width values so the sum equals the conatiner value
 * Example - if this Web site is a three column layout, consisting of (going across - #navigation, #main-content, #utility), then the sum of these three columns must equal the width of the container
 */
body { 
	background-color: #000000;
}
#container {
	margin: 0px auto 0px auto;
	padding: 0px 0px 0px 0px;
	text-align: left;
	width: 980px;
}
#wrapper {
}

/* header */
#header {
	float: left;
	width: 980px;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}
/* navigation */
#navigation {
	float: left;
	width: 154px;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}
/* main-content */
#main-content {
	float: left;
	width: 727px;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}
/* utility */
#utility {
	float: left;
	width: 170px;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}
/* footer */
#footer {
	clear: both;
	width: 980px;
}



/**
 * 100% #container height fix
 * Un-comment the below so the central column (#container) is 100% of screen height.
 */
 
/**
html {
  height: 100%;
}
body {
  height: 100%;
}
#container {
  height: 100%;
	min-height: 100%; 
}
html>body #container {
	height: auto;
}
 */
