@charset "UTF-8";
/* CSS Document */

body{
	margin: 0;
	padding: 0;
	overflow: hidden;
	height: 100%; 
	max-height: 100%; 
	}
		
#nav{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 136px; /* Width of navigation frame */
	height: 100%;
	overflow: auto; /* Disables scrollbars on the navigation frame. To enable scrollbars, change "hidden" to "scroll" */
	background: #dddddd;
	}
		
main{
	position: fixed;
	top: 0;
	left: 136px; /* Set this to the width of the navigation frame */
	right: 0;
	bottom: 0;
	overflow: auto;
	background: #fff;
	}
		
.innertube{
	margin-top: 15px;
	margin-left: 12px; /* Provides padding for the content */
	}
		
.innertube2{
	margin-top: 20px;
	margin-left: auto;
	margin-right: auto; /* Provides padding for the content */
	}
			
IMG.displayed {
    display: block;
    margin-left: auto;
   	margin-right: auto 
	}
		
h1 {
	margin-left: auto;
	margin-right: auto;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #CCCCCC;
	letter-spacing: 1em;
	word-spacing: 0.5em;
	}
		
.info1 {
	display: block;
	margin-left: auto;
	margin-right: auto;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #cccccc;
	text-align: center;
	}


				
/*IE6 fix*/
* html body{
	padding: 0 0 0 136px; /* Set the last value to the width of the navigation frame */
	}
		
* html main{ 
	height: 100%; 
	width: 100%; 
	}
	
a:link {
	color: #CCCCCC;
	text-decoration: none;
}
a:visited {
	color: #CCCCCC;
	text-decoration: none;
}
a:hover {
	color: #ff0000;
	text-decoration: none;
}
a:active {
	color: #000000;
	text-decoration: none;
}
