/*
		 MMould
		 http://www.mggraphics.com
*/

*					{ margin: 0; padding: 0; }
body				{ font-size: 1; font-family: verdana, arial, tahoma; }
.floatLeft 			{ float: left; }
.floatRight			{ float: right; }
.clear				{ clear: both; }
.layoutCenter		{ margin: 0 auto; }
.textCenter			{ text-align: center; }
.textRight			{ text-align: right; }
.textLeft			{ text-align: left; }
.hide				{ display: none; }
.show				{ display: block; }
.invisible			{ visibility: hidden; }

/* the following code hides the horiz. scrollbar all browsers:
*/

html {
overflow-x: hidden;
overflow-y: scroll;
} 

/* this begins the relative / absolute positioning of z-index content
   Read ALL instructions below to do correctly
*/   

div#content		{ width: 702px; margin: 0 auto; position: relative; }

.notice				{   width: 600px; height: 184px; position: absolute; top: 120px; left: 20%; z-index:100; }

.notice2				{   width: 600px; height: 184px; position: absolute; top: 500px; left: 20%; z-index:200; }


/*
	   PURPOSE - ALLOWS FLASH ADS & AUTO CENTERS TO PAGE REGARDLESS OF BROWSER SIZE
	
		 Remember - you can add MORE .classes (div) like .notice above  (different name 
		 for each div class added -
		 works as tested - works in frames - nonframes - FFox & IE7
		 
		 Review related web page (head) for link info to this file
		 (see Courtyard Commons)
		 
		 VERY IMPORTANT!! >> div (parent must contain (enclose/surround) the class <div>
		 with the Flash Ad / Z-index content in order to work - The parent <div> must be 
		 followed with a </div> tag AFTER the class </div> tag in the HTML file!
*/