/*
<!-- 2008/12/12 (C)Copyright OmniX Web Design(Matthew David Xerri) -->
<!-- The visual format for the WHOLE website containing Identification and Class Tags. -->

	background-color:	; 
	border: 			; 
	border-color: 		; 
	border-style:  		;	
	color: 				;
	font-family: 		;
	font-size: 			;
	font-style:			;
	font-weight:		;
	height:				;
	margin: 			;
	padding: 			;
	text-decoration:	;
	text-align: 		;
	width:				;
	vertical-align:		;
*/

/* 
	Cant use full CSS to make border as it is not cross browser compatable.
	Only can use CSS for EAST and WEST but HTML IMG for NORTH and SOUTH.

	TRBL = The Ritch Bitch Loses
	NESW = Never Eat Sogy Weatbixs
	. = class
	# = id
*/

* {
	background-color:	; 
	border: 			; 
	border-color: 		; 
	border-style:  		;	
	color: 				;
	font-family: 		Arial, Helvetica, sans-serif;
	font-size: 			13px;
	font-style:			;
	font-weight:		;
	height:				;
	margin: 			0px;
	padding: 			0px;
	text-decoration:	none;
	text-align: 		;
	width:				;
	vertical-align:		;

	/* scrollbars attributes */
	scrollbar-base-color: 		#000000; 	/* color of the scrollbar 						*/
	scrollbar-arrow-color: 		#FF0000; 	/* color of the arrow 							*/
	scrollbar-face-color: 		; 			/* color of the arrow covers 					*/
	scrollbar-highlight-color: 	#FF0000; 	/* color of the scrollbar's border 				*/
	scrollbar-shadow-color: 	#FF0000; 	/* color of the scrollbar's shadow 				*/
	scrollbar-3dlight-color: 	; 			/* color of the scrollbar's 3d shadow 			*/
	scrollbar-darkshadow-color: ; 			/* color of the scrollbar's darkshadow 			*/
	scrollbar-track-color: 		#000000; 	/* color of the scrollbar's background color	*/
}

/* Global Tags */
body {
  	background-color: #000000;
}

/* h1= 3.0em, h2 = 2.5em, h3 = 2.0em, h4 1.5em, h5 = 1.0em, h6 = 0.75em */
h1 {
	color:				#FF0000;
	font-family:		"Monotype Corsiva", "Times New Roman", Arial;
	font-size:			3em;
}			

h2 {
	color:				#FF0000;
	font-family:		"Monotype Corsiva", "Times New Roman", Arial;
	font-size:			2.5em;
}			

h3 {
	color:				#FF0000;
	font-family:		"Monotype Corsiva", "Times New Roman", Arial;
	font-size:			2em;
}

h4 {
	color:				#FF0000;
	font-family:		"Monotype Corsiva", "Times New Roman", Arial;
	font-size:			1.5em;
}

h5 {
	color:				#FF0000;
	font-family:		"Monotype Corsiva", "Times New Roman", Arial;
	font-size:			1.0em;
}

h6 {
	color:				#FF0000;
	font-family:		"Monotype Corsiva", "Times New Roman", Arial;
	font-size:			0.75em;
}

/* Global Classes */
/* Single Properties */
.color_black {
	color:				#000000;
}

.color_red {
	color:				#FF0000;
}

.color_white {
	color:				#FFFFFF;
}

.display_inline {
	display:			inline;
}

.font_arial {
	font-family:		Arial;
}

.font_bold {
	font-weight:		bold;
}

.font_times {
	font-family: 		"Times New Roman";
}

.vertical_middle {
	vertical-align:		middle;
}

/* Multiple Properties */
.input_submit {
	background-color:	#000000;
	border: 			3px solid #FFFFFF; 
	border-style:  		outset;	
	color: 				#FFFFFF;
	font-weight:		bold;
	text-align:			center;
	width: 				100px; 

	cursor:				pointer;
}

.input_submit:hover {
	background-color:	#000000;
	border: 			3px solid #FF0000; 
	border-style:  		inset;	
	color: 				#FF0000;
	font-weight:		bold;
	text-align:			center;
	width: 				100px; 

	cursor:				pointer;
}

.input_text {
	border-style: 		inset; 
	margin:				5px;
	vertical-align:		middle;
	width:				150px;
}

/* Specific Tags */
/* Classes */

/* IDS */
div#container {
	/* Dimensions of Inner Box */
	width: 				860px;
	height: 			400px;

	float: left;
	background-color: 	#FFFFFF;
}

/* Navigation Bar */			
div#header {
	/* Layout */
	height:				30px;
	width:				;

	/* Graphics */
	background-color: 	#000000;
}

div#footer {
	/* Layout */
	height: 			20px;
	width				;

	/* Graphics */
	background-color: 	#000000;
	color:				#FF0000;
	font-family:		"Monotype Corsiva", "Times New Roman", Arial;
	text-align:			center;
}

div#main {
	height: 			350px; /* main = container - header - footer */
	width:				;
}
			
div#border_north {
	/*	background-image: url('../images/borders/border_north.png');	*/
	width: 				1000px;
	height: 			190px;
}

div#border_east {
	background-image: url('../image/border/border_east.png');	
	width: 				70px;
	height: 			400px;
			
	float: 				right;
}

div#border_south {		
	/*	background-image: url('../images/borders/border_south.png');	*/
	width: 				1000px;
	height: 			130px;
}

div#border_west {
	background-image: 	url('../image/border/border_west.png');	
	width: 				70px;
	height: 			400px;

	float: 				left;
}

div#wrapper {
	/* Dimensions of Outer Box */
  	/* Layout */
	position: 			absolute; 
   	left: 				50%; 
   	width:	 			1000px; 
   	margin-left: 		-500px; /* minus half width */ 
   	top: 				50%; 
   	height: 			80px; 
   	margin-top: 		-400px; /* minus half height */ 
	   	
	/* Graphics */
	background: 		#FFFFFF; 
}

img#copyright {
	height:				15px;
	width:				15px;
	vertical-align:		middle;
}