﻿/* Default Resolution(s) 1024x768, 1280x1024 */
#dvContent {
    height: 620px;
    width: 960px;
}

#map {
	height: 500px;
	width: 620px;
}

/* Small 480 x 320 */
@media only screen and (min-width: 320px) and (max-width: 480px) {
    #dvContent {
        height: 620px;
        width: 300px;
    }
    #map {
        height: 300px;
        width: 300px;
    }
}

/* Standard HDMI display 1920 x 1080 */
@media only screen and (min-width : 1281px) and (max-width : 1920px) and (min-height : 800px) and (max-height : 1080px) {
    #map {
        height: 800px;
        width: 1000px;
    }
}

/* iPad w/Retina & other high-res displays */
@media only screen and (min-width : 1921px) and (min-height : 1081) {
    #map {
        height: 100%;
        width: 100%;
    }
}

/* iPhone 5 1136 x 640 */
/* iPhone 4 960 x 640 */
@media only screen and (min-device-width : 960px) and (max-device-width : 1136px) and (orientation : portrait) {
    #dvContent {
        height: 620px;
        width: 620px;
    }
}