@CHARSET "ISO-8859-1";
html,body {
	margin: 0;
	overflow: hidden;
	overflow-y:auto; 
}
#Body {
	width: 100%;
	background-color: #FFFFFF;
	/* DO NOT REMOVE THIS; or you'll have issue w/ the scrollbar, when the mouse pointer is on a white space */
	height: 100%;
	/* this will make sure that the height will extend at the bottom */
	overflow: auto; /* will have a scrollbar at our content containier */
	position: absolute;
	/* container div must be absolute, for our fixed bar to work */
}

#nav_menu_wrapper {
	/* this will ba used as a wrapper for the nav_menu so we can center it (nav_menu). especially for IE */
	width: 100%; /* use 100% of width */
	/* the code below will PUT the bar at the bottom */
	bottom: 0px;
	position: absolute;
	/* hide scrollbar for this wrapper */
	overflow: hidden;
}

#nav_menu_wrapper .nav_menu { /* the menu itself */
	width: 800px; /* fixed width */ /* center this div */
	margin:0 auto;
	/* add effect */
	background-color: #E5E5E5;
	background-image: url("../images/f_footer.gif");
	background-repeat: repeat-x;
}

.nav_menu .parts{
    padding: 7px 0;
}
.nav_menu .parts .body{
    padding-left:10px;
}
#nav_menu_wrapper div.parts{
    margin-bottom:0;
}
.nav_menu .parts .body p{
    text-align: center;
}
