/*
	Use this stylesheet for your custom theme styling
*/

/* ============================== */
/* ! Layout for desktop version   */
/* ============================== */

	body {	}
	
	#logo{float:left; margin-top:1%;}

/* ======================================== */
/* ! Layout for tablet version, e.g. iPad   */
/* ======================================== */

@media handheld, only screen and (max-device-width: 768px) {

	/* ipad and tablet css here */
	#logo img{width:60%; margin-top:1%;}

}


/* ========================================== */
/* ! Layout for mobile version, e.g. iPhone   */
/* ========================================== */

@media only screen and (max-device-width: 480px) {

	/* phone browser css here */
	
	
}


/* ========================================== */
/* ! Provide higher res assets for iPhone 4   */
/* ========================================== */

@media only screen and (-webkit-min-device-pixel-ratio: 2) { 

/*	.logo {
		background: url(logo2x.jpg) no-repeat;
		background-size: 212px 303px;
	}*/

}