@charset "utf-8";

body { 
	background-attachment:		fixed;
	background-color:			#333;
	background-image:			url(../img/bg.jpg); 
	background-position:		top left; 
	background-repeat:			no-repeat; 
	width-max:1024px;
	margin:						0;
	padding:					0;

	background-size:			cover;
	-moz-background-size:		cover;
	-webkit-background-size:	cover;
	
}
#itunes{ position:absolute;left:75%; top:40%;}
@media only all and (max-width: 320px) and (max-height: 240px) {
	body {		
		background-size:			320px 240px;
		-moz-background-size:		320px 240px;
		-webkit-background-size:	320px 240px;
	}
}
.viewport width_minus_border{ background:#FF9900}
/*
	The next 2 definitions are for support in iOS devices.
 	Since they don't recoginze the 'cover' keyword for background-size
 	we need to simulate it with percentages and orientation
*/

@media only screen and (orientation: portrait) and (device-width: 320px), (device-width: 240px) {
	body {
		-webkit-background-size: auto 100%;
	}
}

@media only screen and (orientation: landscape) and (device-width: 320px), (device-width: 240px) {
	body {
		-webkit-background-size: 100% auto;
	}
}
/* All of the following styles only get used when background-size isn't supported */

img#expando { 
	display:	none;
	position:	absolute; 
	z-index:	1;
	 
	-ms-interpolation-mode: bicubic; 
} 

.wide img#expando, 
.tall img#expando { 
	display: 	block; 
} 

.wide img#expando { 
	height: 	auto;
	width: 		100%; 
} 

.tall img#expando { 
	height:		100%;
	width:		auto; 
}