﻿html, body {
height:100%;

/*Delete default margins */
/*Allows me to create 100% page high with no scrollbar*/
margin:0; 
}

#navig {
	position:absolute; /*Set for IE 6 and lower*/
	width:200px;
	padding-left:10px;
	padding-right:10px;
	left:0; /*for IE (Latest checked with 7)*/

	height: 100%;
}
body > #navig {position:fixed;} /*Child selector used to reset for real browsers*/

#content {

	margin-left:200px;
	padding:10px;
	padding-left:35px;

}

#counter {
	position: relative;
	top: 25px;
	width: 100px;
}
