/* CSS Document */

/* hide from ie on mac \*/
html {
	height: 100%;
	overflow: hidden;
}
/* end hide */

body {
	height: 100%;
	margin: 0;
	padding: 0;
	background-color: #000000;
	color: #ffffff;
}
	
#container{
	height: 100%;
	width: 100%;
	display: table; 
	#position: relative; 
	overflow: hidden;
} 

#bannerContainer{
	#position: absolute; 
	#top: 50%;
	display: table-cell; 
	vertical-align: middle;
	width: 100%;
} 

#banner{
	background-image:url(images/background.jpg);
	background-repeat:repeat-x;
	background-color: #121010;
	height: 250px;
	#position: relative; 
	#top: -50%;
	width: 100%;
} 
	



