/** http://css.dzone.com/articles/ie10-meets-modern-mobile-html5 **/
/** 1024px viewport default in ie10   **/
/** ie10 windows8 rt portrait default viewport 1024px if current browser windows is narrow than that width, therefore every site will be zoomed out by default   **/
/** snap mode only works in landscape mode and when device is a minimum of 1366px width  **/
/** fill mode shares active screen with win8 store apps in snap mode and ie takes up 3/4 of the screen (filled). only works in landscape mode and when device is minimum of 1366px  **/
/** in snap mode, device&#45;width WILL NOT BE device's width, but the current window's width **/



/** if already responsive, use this to target snap view mode **/
@-ms-viewport { width: device-width; }


/** if not responsive, use this to target snap view mode **/
@media only screen and (max-width: 400px) {
  @-ms-viewport { width: 320px; }
}

