@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; /* hide browser's main scrollbar */
	padding: 0px;
}

#main_container {
	width:100%;
	text-align: center;
	background:#cccccc url('../image/background.jpg') repeat-y top center; /* 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 */
	margin: 0px;
	padding: 0px;
}

	#main_container .content_wrapper {
		margin-left:auto;
		margin-right:auto;
		width:90%;
		text-align:left;
	}
	
	#main_container .spacer { /* spacer w/ fixed height; give space to the content and fixed bar */
		height:70px;
	}

#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:90px; /* fix bar's height */
	width:100%; /* use 100% of width */
	
	/* the code below will PUT the bar at the bottom */	
	padding-bottom:20px;
	bottom: 0px;
	position:absolute;
	text-align: center;
	z-index: 1000;
	/* hide scrollbar for this wrapper */
	overflow:hidden;
  background:  url('../image/bgbar-2.png') repeat-x bottom left;
}

	#nav_menu_wrapper .nav_menu { /* the menu itself */
		height:90px; /* fix bar's height */
		width:1024px; /* fixed width */

		/* center this div */
		margin: 0px auto;
		display: block;
		text-align: center;
		padding: 0px;
		/* add effect */
	}
	
	/*
	 * menu links and link effects
	 */
		#nav_menu_wrapper .nav_menu ul {
			margin-top:5px;
			list-style:none;
		}
		
		#nav_menu_wrapper .nav_menu li {
			display:inline;
		}
		
		#nav_menu_wrapper .nav_menu li a {
			padding-top:3px;
			padding-bottom:5px;
			padding-left:9px;			
			padding-right:9px;
		}
		
		#nav_menu_wrapper .nav_menu a:link, #nav_menu_wrapper .nav_menu a:visited {
			font-family:Verdana, Arial, Helvetica, sans-serif;
			font-size:13px;
			color:#333333;
			text-decoration:none;
			background-color:#EEEEEE;
		}

		#nav_menu_wrapper .nav_menu a:hover {
			font-family:Verdana, Arial, Helvetica, sans-serif;
			font-size:12px;
			color:#FFFFFF;
			text-decoration:none;
			background-color:#0099FF;
		}
		
		#nav_menu_wrapper .logos {
		width: 1024px;
		margin: 0px auto;
		height: 100px; 
		background: url('../image/logos.png') no-repeat top left;
		
		}
