/**
* global.css
* Main site styles
*/

/*------------ icons ------------*/

.priceBand, 
.priceBand em {
	background-image:url(/images/us/content/price-band.gif);
}

/*------------ mobile app promo media ------------*/

/* iPads (landscape) ----------- */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : landscape) {

    .mob-app {
       background:url('/images/cities/newyork/img-mob/iPad_land_med.jpg') 0 bottom no-repeat;
    }
}

/* iPads (portrait) ----------- */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : portrait) {

    .mob-app {
       background:red url('/images/cities/newyork/img-mob/iPad_port_med.jpg') center top no-repeat;
    }
}

@media only screen and (max-device-width: 480px) and (orientation:portrait) {
/* iPhone 4 ----------- PORTRAIT*/
    .mob-app {
        background:url('/images/cities/newyork/img-mob/iPhone_portrait_med.jpg') 0 0 no-repeat;
    }
}

/* iPhone 4 ----------- LANDSCAPE */
@media only screen and (max-device-width: 480px) and (orientation:landscape) {
    .mob-app {
        background:url('/images/cities/newyork/img-mob/iPhone_landscape_med.jpg') 0 0 no-repeat;
    }
}