		<style type="text/css">
		
		body {
			margin: 0;
			padding: 0;
			overflow: hidden;
			height: 100%; 
			max-height: 100%; 
			font-family:Sans-serif;
			line-height: 1.5em;
		}
		
		#header {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 80px; 
			overflow: hidden; /* Disables scrollbars on the header frame. To enable scrollbars, change "hidden" to "scroll" */
			background: #333333;
		}
		
		#nav {
			position: absolute; 
			top: 80px; 
			left: 0; 
			bottom: 0;
			width: 230px;
			overflow: auto; /* Scrollbars will appear on this frame only when there's enough content to require scrolling. To disable scrollbars, change to "hidden", or use "scroll" to enable permanent scrollbars */
			background: #333333; 		
		}
		
		#logo {
			padding:10px;
		}
		
		main {
			position: absolute;
			top: 80px; /* Set this to the height of the header */
			left: 230px; 
			right: 0;
			bottom: 0;
			overflow: auto; 
			background: #D6D6D6;
			float: left;
		}
		
		nav ul {
			list-style-type: none;
			margin: 0;
			padding: 0;
		}
		
		nav ul a {
			display: block;
			color: white;
			text-indent: 30px;
			text-decoration: none;
		}
		
		nav ul a:hover {
			background-color: #111;
		}
		
		nav h4{
			display: block;
			color: white;
			margin-top:20px;
			margin-bottom:10px;
		}
				
		/*IE6 fix*/
		* html body{
			padding: 100px 0 0 230px; /* Set the first value to the height of the header and last value to the width of the nav */
		}
		
		* html main{ 
			height: 100%; 
			width: 100%; 
						
		}
		
		main h4{
			margin-bottom:1px;
		}
		
		main h3{
			margin-bottom:1px;
		}
		
		ulh {
			list-style-type: none;
			margin: 0;
			padding: 0;
			overflow: hidden;
			background-color: #333333;
		}

		lih {
			float: left;
		}

		lih a {
			display: block;
			font-weight: bold;
			color: white;
			text-align: center;
			padding: 20px 15px;
			text-decoration: none;
		}

		lih a:hover {
			background-color: #111;
		}
		
		.innertube {
			margin: 15px; 
			
		}
				
		p {
			color: #000000;
			text-align: left;
			max-width: 80%;
			margin-top:1px;
		}
		
		/* Old IMG style - delete after fixing new img style
		div img {
			max-width: 45%;
		}
		 */
		
		div.img {
			display: inline-block;
			margin: 5px;
			border: 1px solid #ccc;
			width: 640px;
		}	

		div.img:hover {
			border: 1px solid #777;
		}

		div.img img {
			width: 100%;
			height: auto;
		}

		div.desc {
			padding: 15px;
			text-align: center;
		}
		
		</style>