
/* Not Tablet (PC)*/

@media only
screen and (min-device-width : 1025px){
}
@media only
screen and (max-width : 1100px){
}

@media only
screen and (max-width : 1100px),
			 and (min-width : 1051px){

}

@media only
screen and (max-width : 1050px),
			 and (min-width : 1001px){

}

@media only
screen and (min-width : 1151px){

}


/* Tablet */

@media only 
screen and (min-device-width : 768px) 
			 and (max-device-width : 1024px) 
			 and (orientation : landscape),
screen and (min-device-width : 768px) 
			 and (max-device-width : 1024px) 
			 and (orientation : portrait){
	BODY{
		background-position:bottom left;
		background-attachment:fixed;
		background-image:url(../images/backgroundMobile.jpg);
	}
}
@media only 
screen and (min-device-width : 766px) 
			 and (max-device-width : 1024px) 
			 and (orientation : landscape){
}
@media only 
screen and (min-device-width : 766px) 
			 and (max-device-width : 1024px) 
			 and (orientation : portrait){
}

	
/* Mobile */

@media only 
screen and (max-device-width : 765px) 
			 and (orientation : landscape),
screen and (max-device-width : 765px) 
			 and (orientation : portrait){
	BODY{
		background-position:bottom left;
		background-attachment:fixed;
		background-image:url(../images/backgroundMobile.jpg);
	}
}


/* Mobile landscape */

@media only 
screen and (max-device-width : 765px) 
			 and (orientation : landscape){
	BODY{
		font-size:7px;
	}
	H4{
		font-size:3em;
	}
}

/* Mobile portrait */

@media only 
screen and (max-device-width : 765px) 
			 and (orientation : portrait){
	H1{
		font-size:4em;
	}

	.mobileHide{
		display:none;
	}
	.mobileShow{
		display:block;
	}
}