/* iOS in general */
@media only screen and (max-device-width: 1024px), only screen and (max-device-width: 480px), only screen and (-webkit-min-device-pixel-ratio: 2) {

}
	
/* all iPhone and iPod Touch */
@media only screen and (max-device-width: 480px), only screen and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
	
	body {
		font-size: 8pt;
	}

	#subheader {
		font-size: 8pt;
	}
	
	#userbox {
		position: relative;
		top: -8pt;
	}
	
	#userbox .text {
		display: none;
	}
	
	.details {
		display: none;
	}
	
}

@media only screen and (max-device-width: 480pt) and (orientation:portrait), only screen and (-webkit-min-device-pixel-ratio: 2) and (orientation:portrait) {
	
	#content > div > div {
		margin: 2pt 0 2pt 0;
	}
	
	#content > div > .title {
		margin: 2pt 0 2pt 0;
	}
		
}



/* iPad */
@media only screen and (max-device-width: 1024pt) {

}

/* iPhone and iPod Touch (320x480) */
@media only screen and (max-device-width: 480pt) {

}

/* iPhone 4 (Retina) */
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
	
}

@media (orientation:landscape) {

}

@media (orientation:portrait) {

}
