/** ie media queries **/

/** http://blog.keithclark.co.uk/moving-ie-specific-css-into-media-blocks/ **/
/** ie6/ie7 **/
@media screen\9 {
    body { background: red; }
} 
/** ie6/ie7/ie8 **/
@media \0screen\,screen\9 {
    body { background: green; }
} 
/** ie8 **/
@media \0screen {
    body { background: blue; }
} 
/** ie8/ie9/ie10 **/
@media screen\0 {
    body { background: orange; }
} 
/** ie9/ie10 **/
@media screen and (min-width:0\0) {
    body { background: yellow; }
}

/** https://gist.github.com/4025104 **/
/** ie10 modes (both: high contrast (display setting) and default mode ) **/
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
   #ie10 { color: red; }
}


/** ie9-ie10pp4 **/
@media all and (min-width:0) {
    #element { color:pink \0/; }
}
