
		body{
		  
			margin: 0;
			padding: 0;
			overflow: hidden;
			height: 100%; 
			max-height: 100%; 
			font-family:Sans-serif;
			line-height: 1.5em;
		}
		
		#nav{
			position: absolute;
			top: 0;
			bottom: 0; 
			left: 0;
			width: 200px; /* Width of navigation frame */
			height: 100%;
			overflow: scroll; /* Disables scrollbars on the navigation frame. To enable scrollbars, change "hidden" to "scroll" */
			background: #000;
			border:4px solid grey;
		}
		
		main{
			position: fixed;
			top: 0; 
			left: 200px; /* Set this to the width of the navigation frame */
			right: 0;
			bottom: 0;
			overflow: auto; 
			background: #000;
			background-image: url("https://cortok.neocities.org/images/bg.png")
		}
		
		.innertube{
			margin: 15px; /* Provides padding for the content */
		}
		
		.center {
      display: block;
      margin-left: auto;
      margin-right: auto;
      width: 50%;
    }

		nav ul {
			list-style-type: none;
			margin: 0;
			padding: 0;
		}
		
		nav ul a {
		  font-family: Trebuchet MS;
			color: grey;
			text-decoration: none;
		}
		
		a:hover {
      color: white;
    }
    
    a:link {
      color: lightgrey;
      background-color: transparent;
      text-decoration: none;
    }
    
    a:visited {
      color: grey;
      background-color: transparent;
      text-decoration: none;
    }
    
				
		/*IE6 fix*/
		* html body{
			padding: 0 0 0 200px; /* Set the last value to the width of the navigation frame */
		}
		
		* html main{ 
			height: 100%; 
			width: 100%; 
		}
		
    h1 {
      font-family: Trebuchet MS;
      color: white;
    }
    
    h2 {
      font-family: Trebuchet MS;
      color: orange;
    }
    
    h3 {
      font-size: 20px;
      font-family: Trebuchet MS;
      color: orange;  
    }
    
    p {
      font-family: Lucida Sans Unicode;
      font-size: 20px;
      color: #e4e2e4;
    }
    
    marquee {
      font-size: 20px;
      color: white
      }
        
    figure {
      border: 1px #cccccc solid;
      padding: 4px;
      margin: 10px;
    }
    
    figcaption {
      background-color: black;
      color: white;
      font-style: italic;
      padding: 2px;
      text-align: center;
    }
    
    