/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
}



/* iPAD potrait*/
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : portrait) {
}


/* iPAD landscape*/
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : landscape) {
}






/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
	.normalsi{
		display:none;	
	}
	.responsivesi{
		display:block;	
	}
}
/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {
}