
/**
 * @author			Eddie Leffler
 * @email			ed.leffler@beamland.com
 * @version			1.0
 *
 * @history
 * 09.21.2009		eleffler		+ Initial Version
 * 10.31.2009       elavidor		+ Added No Flash styles
 */
 
/* CSS IMPORTS
-------------------------------------------------------------- */
@import "meyer-reset.css";


/* BASIC ELEMENTS
-------------------------------------------------------------- */
	html 
	{
		width: 100%;
		height: 100%;
	}
	
	body 
	{
		font: 62.5% Arial, Verdana, Helvetica, sans-serif;
		width: 100%;
		height: 100%;
		color: #636466;
		background-color: #000;
	}

	#wrapper
	{
		height: 100%;
		width: 100%;
		min-height: 600px;
		min-width: 1000px;
	}
	
	#flash
	{
		width: 100%;
		height: 100%;
	}
	
	
/* NO FLASH
-------------------------------------------------------------- */
	#horizon { 
		display: block; 
		position: absolute; 
		top: 50%; 
		left: 0px; 
		width: 100%; 
		height: 1px; 
		visibility: visible; 
		overflow: visible; 
		text-align: center; 
	}
	#noFlash, #notFound { 
		position: absolute; 
		top: -50px; 
		left: 50%; 
		width: 305px; 
		height: 100px; 
		padding: 3px 0 0 125px; 
		margin-left: -215px; 
		color: white; 
		background: url(../_img/noflash.gif) no-repeat top left; 
		visibility: visible; 
		text-align: left; 
	}
		#noFlash { 
			visibility: hidden; 
		}
		#noFlash h1, #notFound h1 { 
			font-size: 16px; 
			font-weight: bold; 
			text-transform: uppercase; 
			margin-bottom: 3px; 
		}
		#noFlash p, #notFound p { 
			line-height: 15px; 
			margin-bottom: 8px; 
		}	
		#noFlash a, #notFound a { 
			color: #f0ce11; 
			text-transform: uppercase; 
			font-weight: bold; 
			font-size: 12px; 
		}
			#noFlash a:hover, #notFound a:hover { 
				text-decoration: none; 
			}
		#noFlash img { 
			visibility: hidden;
		}
		#notFound { 
			padding: 0;
			width: 305px;
			height: 100px;
			background: none;
			margin-left: -153px;
			text-align: center;
		}
	




