/* CSS RESET */

body, div, dl, dt, dd, li, pre,form, fieldset, input, textarea, p, blockquote, th, td, button { margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0; padding: 0; font-size: 100%; font-weight: normal; }
address, caption, cite, code, dfn, em, strong, var { font-style: normal; font-weight: normal; }
ol, ul, li { list-style: none; margin: 0; padding: 0; }
table { border-collapse: collapse; border-spacing: 0; } 
caption, th { text-align: left; font-weight: normal; font-style: normal; }
acronym, abbr, fieldset, img, hr { border: 0; }
:focus { outline: 0; }

/*
	<div id="container">
		<h1 id="logo">2010 BIG EAST Basketball Championship</h1>
		<h2 id="heading">Official Mobile Application</h2>
		<h3>Feed your fanhood!</h3>
		<ul id="main_features">
			<li>LIVE play by play</li>
			<li>LIVE stats</li>
			<li>LIVE audio broadcast</li>
		</ul>
		<p id="misc_features">Also includes the tournament schedule, results, and Twitter feed!</p>
		<h3 id="main_cta" class="cta">Download it through the Android Market!</h3>
		<p id="other_devices">Also on <a href="../iphone">iPhone</a> and <a href="../blackberry">Blackberry</a>!</p>
	</div>
*/

html {
	background: #0e0f13;
}

body {
	background: url(../images/bg.png) repeat-x;
	text-align: center;
	font-size: 10px;
}

#container {
	position: relative;
	overflow: hidden;
	margin: 0 auto;
	text-align: left;
	width: 1024px;
	height: 768px;
	background: url(../images/android.jpg) no-repeat;
}
#logo {
	text-indent: -999px;
}
#heading {
	text-indent: -999px;
}
h3 {
	text-indent: -999px;
}
#main_features {
}
	#main_features li {
		text-indent: -999px;
	}
#misc_features {
	text-indent: -999px;
}
#main_cta {
	text-indent: -999px;
}
#other_devices {
	position: absolute;
	left: 0px;
	bottom: 50px;
	font-family: Verdana;
	font-size: 1.6em;
	color: #fff;
	text-align: center;
	width: 100%;
}
	#other_devices a {
		color: #fcff00;
	}
	#other_devices a:hover {
		color: #999f00;
	}
	
.notext {
	text-indent: -999px;
}


