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: 300px; /* Width of navigation frame */
    height: 100%;
    overflow: hidden; /* Disables scrollbars on the navigation frame. To enable scrollbars, change "hidden" to "scroll" */
    background: #eee;
}

main{
    position: fixed;
    top: 0;
    left: 300px; /* Set this to the width of the navigation frame */
    right: 0;
    bottom: 0;
    overflow: auto;
    background: #fff;
}

.innertube{
    margin: 15px; /* Provides padding for the content */
}

p {
    color: #555;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul a {
    color: darkgreen;
    text-decoration: none;
}

nav a:link,nav a:visited, nav a:hover, nav a:focus, nav a:active {
    text-decoration: none;
    color: #000000;
        }

/*IE6 fix*/
* html body{
    padding: 0 0 0 230px; /* Set the last value to the width of the navigation frame */
}

* html main{
    height: 100%;
    width: 100%;
}
