/* Mobile specific targeting */
@media only screen and (max-device-width: 480px) {

}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
/*Tablets and smaller screens*/

}
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
/* Put your iPhone 4g styles in here */
}


/* Following Android targeting from:*/

@media only screen and (-webkit-device-pixel-ratio:.75){

/* Put CSS for low density (ldpi) Android layouts in here */

}

@media only screen and (-webkit-device-pixel-ratio:1){

/* Put CSS for medium density (mdpi) Android layouts in here */

}

@media only screen and (-webkit-device-pixel-ratio:1.5){
/* Put CSS for high density (hdpi) Android layouts in here */
}