@charset "utf-8";
/*
 * CSS Document
 * Written by Ryan Yonzon
 * http://ryan.rawswift.com/
 */
 
html, body {
	margin:0px; /* FF hack: or we'll have double scrollbar showing on the browser */
	overflow:hidden;	/* will have a scrollbar at our content containier */
}

#main_container {
	width:100%;
	height:100%;	/* this will make sure that the height will extend at the bottom */
	overflow:scroll;	/* will have a scrollbar at our content containier */
	position:absolute; /* container div must be absolute, for our fixed bar to work */
}


#main_container .spacer { /* spacer w/ fixed height; give space to the content and fixed bar */
	height:62px; }

#nav_menu_wrapper { /* this will ba used as a wrapper for the nav_menu so we can center it (nav_menu). especially for IE */
	height:62px; /* fix bar's height */
	width:100%; /* use 100% of width */
	/* the code below will PUT the bar at the bottom */	
	bottom:15px;
	position:absolute;
	/* hide scrollbar for this wrapper */
	overflow:hidden;
}
