/* ==== TAG STYLES ==== */
/* ==== references standard HTML tags ====*/

body
	{
		background-color: #fff;
		color: 000;
		font-family: helvetica;
		font-size: 75%;
		line-height: 1px;
		position: center;
		padding: 0px;
	}


h1
	{
		
	}


h2
	{
	
	}


p
	{
		
	}
	
a
	{
		text-decoration:none;
		color:#888;
	}
	
a:visited
	{
		color: orange;
	}	

	


/* ==== CLASS STYLES ==== */
/* ==== HTML: <p class="first"> ====*/
/* ==== HTML: <span class="first">content</span> ====*/
/* ==== can be applied repeatedly ====*/

.first
	{
	
	}


p.second
	{
	
	}
	
.center
{
	margin-left:auto;
	margin-right:auto;
	background-color: #00cc00;
}
	



/* ==== ID STYLES ==== */
/* ==== HTML: <p id="whatever"> ====*/
/* ==== can be applied once, most often applied to divs ====*/	
	

div#container
	{
		width: 1100px;
		height: 800px;
		margin: 15px auto;
	}

div#top
	{
		float: left;
		width: 1100px;
		padding: 0px 0px 0px 20px;
	}
	

div#bottom
	{
		position: absolute;
		float: left;
		margin: -15px 0px 0px -50px;
		padding: 0px 0px 0px 20px;
		background-color: 00cc00;
		width: 1100px;
		z-index: -1;
	}


div#flashGALLERY
	{
		padding: 35px 0px 0px 20px;
	}

img#fixedBottomRight
	{
		position: fixed;
		right: 30px;
		bottom: 30px;
	}


