/*-------------------------------------------------------------------	
	The spec sez (?) import statements must come first in a CSS file.
	Dumb rule, but Mozilla observes it will IE is more flexible.
-------------------------------------------------------------------*/	

@import url("std_settings.css");
@import url("text_menu.css");

.page_layout_div
{
	width					: 720px;
	background-color	   	: black;

	margin-top				: 10px;
	margin-bottom			: 20px;

	text-align				: center;
	scrollbar-face-color   	: black;
	scrollbar-track-color  	: grey;
	scrollbar-arrow-color  	: blue;

	border-width			: 1px;
	border-color			: white;
	border-style			: solid;
}

.text_menu_table
{
	margin-top		: 10px;
	margin-bottom	: 10px;
}

.faq_entry_title_div
{
	width		: 500px;
	text-align	: left;
	margin-top	: 10px;
	margin-left	: auto;
	margin-right: auto;

	color		: red;
  	font-size   : 20px;
  	line-height : 24px;
  	font-weight	: normal; 
  	font-family	: serif, Tahoma, Arial, Helv, serif; 
}

.faq_entry_text_div
{
	width		: 500px;
	margin-left	: auto;
	margin-right: auto;
	padding-left: 20px;
	text-align	: left;

	color		: white;
  	font-size   : 12px;
  	line-height : 16px;
  	font-weight	: normal; 
  	font-family	: Tahoma, Arial, Helv, serif; 
}

