@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 */
}

#main_container {
	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 */
	/*left: 121px;
	top: -42px;*/
}

	#main_container .content_wrapper {
		margin-left:auto;
		margin-right:auto;
		width:90%;
	}
	
	#main_container .spacer { /* spacer w/ fixed height; give space to the content and fixed bar */
		height:30px;
	}

#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:30px; /* fix bar's height */
	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;
	/*left: -49px;*/
	left: -8px;
	
}

	#nav_menu_wrapper .nav_menu { /* the menu itself */
		height:30px; /* fix bar's height */
		width:950px; /* fixed width */

		/* center this div */
		margin-left:auto;
		margin-right:auto;	
		
		/* add effect */
		/*background-color:#f1f1f1;*/
		background-color:#E5E5E5;
		border:#B5B5B5 solid 1px;padding-left:10px;
		overflow:hidden; padding-top:5px;
	}
		#nav_menu_wrapper .nav_menu .nav_menuCon{ float:left; width:800px;}
		#nav_menu_wrapper .nav_menu .ConvertTool{ float:right; width:100px; text-align:right; padding-right:5px;}
		#nav_menu_wrapper .nav_menu .ConvertTool img{ margin-right:10px;}
	
	/*
	 * menu links and link effects
	 */
		#nav_menu_wrapper .nav_menu .nav_menuCon ul {
			list-style:none;
		}
		
		#nav_menu_wrapper .nav_menu .nav_menuCon li {
			display:inline;
		}
		
		#nav_menu_wrapper .nav_menu .nav_menuCon li a {
			padding-top:2px;
			padding-bottom:2px;
			padding-left:9px;			
			padding-right:9px; 
		}
		
		#nav_menu_wrapper .nav_menu .nav_menuCon a:link, #nav_menu_wrapper .nav_menu .nav_menuCon a:visited {
			font-family:Verdana, Arial, Helvetica, sans-serif;
			font-size:11px;
			color:#333333;
			text-decoration:none;
			/*background-color:#EEEEEE;*/
		}

		#nav_menu_wrapper .nav_menu .nav_menuCon a:hover {
			font-family:Verdana, Arial, Helvetica, sans-serif;
			font-size:11px;
			color:#fff;
			text-decoration:none;
			background-color:#8E0906;
		}

