@charset "utf-8";
/* CSS Document */

body {
			margin: 0;
			padding: 0;
			overflow: hidden;
			height: 100%; 
			max-height: 100%; 
			font-family:Sans-serif;
			line-height: 1.5em;
		}
		
		main {
			position: fixed;
			left: 230px; /* Width of the nav bar */
			bottom: 50px; /* Set this to the height of the footer */
			right: 0;
			top: 0;
			bottom: 60px;
			overflow: auto; 
			background: #e9edff;
		}
		
		#nav {
			position: absolute; 
			left: 0;
			top: 0;
			bottom: 5px; 
			width: 230px;
			overflow: auto;
			background: #d5d9ec; 		
		}

		#footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 10px;
  background-color: #4e5776;
  text-align: center;
  color: #d5d9ec;
  height: 50px;
}
		
		#logo {
			padding:10px;
		}
						
		.innertube {
			margin: 15px; 
		}
		
		p {
			color: #555;
		}

		nav ul {
			list-style-type: none;
			margin: 0;
			padding: 0;
		}
		
		nav ul a {
			color: #4e5776;
			text-decoration: none;
		}
				
		/*IE6 fix*/
		* html body{
			padding: 0 0 100px 230px; 
		}
		
		* html main{ 
			height: 100%; 
			width: 100%; 
		}
		
		 img {
			 float: left;
			 padding-right: 20px;
			 }
			 
		  a {
			  color: black;
			  
			  }	 