/* Hacks for standards compliant media - quicktime */

/* hide the inner most object tag, second object tag */

/* Ensuring that only IE hides the second object tag */
object.mov {
    display: none;
}

/* Ensuring that only IE hides the second object tag */
* html object.mov {
    display: none;
}

/*important respect whitespace*/

/* exclude IE5, IE5.1 and IE 5.2.2 Mac from parsing declaration */
* html object.mov {
    display/**/: none;
}

/* hides the second object from all versions of IE */
* html object.mov {
    display: none;
}

/* displays the second object in all versions of IE apart from 5 on PC */
* html object.mov/**/ {
    display: inline;
}

/* hides the second object from all versions of IE >= 5.5 */
* html object.mov {
    display/**/: none;
}