/* Minify_CSS_UriRewriter::$debugText

*/

/* flashblock.css */

/* 1   */ /**
/* 2   *|  * SoundManager 2 + useFlashBlock
/* 3   *|  * ------------------------------
/* 4   *|  * Flash positioning and flashblock / clicktoflash handling
/* 5   *|  */
/* 6   */
/* 7   */ #sm2-container {
/* 8   */  /**
/* 9   *|   * where the SM2 flash movie goes. by default, relative container.
/* 10  *|   * set relative or absolute here, and don't touch it later or bad things will happen (see below comments.)
/* 11  *|   */
/* 12  */  position: absolute;
/* 13  */  width: 1px;
/* 14  */  height: 1px;
/* 15  */  overflow: hidden;
/* 16  */  /* screw IE 6, just make it display nice */
/* 17  */  _overflow: hidden;
/* 18  */ }
/* 19  */
/* 20  */ #sm2-container object,
/* 21  */ #sm2-container embed {
/* 22  */  /**
/* 23  *|   * the actual SWF movie bit.
/* 24  *|   * important: The SWF needs to be able to be moved off-screen without display: or position: changes.
/* 25  *|   * changing display: or position: or overflow: here or on parent can cause SWF reload or other weird issues after unblock
/* 26  *|   * e.g., SM2 starts but strange errors, no whileplaying() etc.
/* 27  *|   */
/* 28  */  width: 48px;
/* 29  */  height: 48px;
/* 30  */  /* some flash blockers may also respect this rule */
/* 31  */  max-width: 48px;
/* 32  */  max-height: 48px;
/* 33  */ }
/* 34  */
/* 35  */ #sm2-container.swf_timedout {
/* 36  */  /* expand to show the timed-out SWF content */
/* 37  */  position: relative;
/* 38  */  width: 48px;
/* 39  */  height: 48px;
/* 40  */ }
/* 41  */
/* 42  */ #sm2-container.swf_timedout,
/* 43  */ #sm2-container.swf_timedout object,
/* 44  */ #sm2-container.swf_timedout embed {
/* 45  */  /**
/* 46  *|   * when SM2 didn't start normally, time-out case. flash blocked, missing SWF, no flash?
/* 47  *|   * 48px square flash placeholder is typically used by blockers.
/* 48  *|   */
/* 49  */  min-width: 48px;
/* 50  */  min-height: 48px;

/* flashblock.css */

/* 51  */ }
/* 52  */
/* 53  */ #sm2-container.swf_unblocked {
/* 54  */  /* SWF unblocked, or was never blocked to begin with; try to collapse container as much as possible. */
/* 55  */  width: 1px;
/* 56  */  height: 1px;
/* 57  */ }
/* 58  */
/* 59  */ #sm2-container.swf_loaded object,
/* 60  */ #sm2-container.swf_loaded embed,
/* 61  */ #sm2-container.swf_unblocked object,
/* 62  */ #sm2-container.swf_unblocked embed {
/* 63  */  /* hide flash off-screen (relative to container) when it has loaded OK */
/* 64  */  left: -9999em;
/* 65  */  top: -9999em;
/* 66  */ }
/* 67  */
/* 68  */ #sm2-container.swf_error {
/* 69  */  /* when there is a fatal error (flash loaded, but SM2 failed) */
/* 70  */  display: none;
/* 71  */ }
/* 72  */
/* 73  */ #sm2-container.high_performance,
/* 74  */ #sm2-container.high_performance.swf_timeout {
/* 75  */  /* "high performance" case: keep on-screen at all times */
/* 76  */  position: absolute;
/* 77  */  position: fixed;
/* 78  */ }
/* 79  */
/* 80  */ #sm2-container.high_performance {
/* 81  */  overflow: hidden;
/* 82  */  _top: -9999px; /* IE 6 hax, no position:fixed */
/* 83  */  _left: -9999px;
/* 84  */  bottom: 0px;
/* 85  */  left: 0px;
/* 86  */  /**
/* 87  *|   * special case: show at first with w/h, hide when unblocked.
/* 88  *|   * might be bad/annoying.
/* 89  *|   * try to stay within ClickToFlash "invisible" limits (so it won't be blocked.)
/* 90  *|   */
/* 91  */  z-index: 99; /* try to stay on top */
/* 92  */ }
/* 93  */
/* 94  */ #sm2-container.high_performance.swf_loaded,
/* 95  */ #sm2-container.high_performance.swf_unblocked {
/* 96  */  z-index: auto;
/* 97  */ }
/* 98  */
/* 99  */ #sm2-container.high_performance.swf_loaded,
/* 100 */ #sm2-container.high_performance.swf_unblocked,

/* flashblock.css */

/* 101 */ #sm2-container.high_performance.swf_unblocked object,
/* 102 */ #sm2-container.high_performance.swf_unblocked embed {
/* 103 */  /**
/* 104 *|   * 8x8px is required minimum to load in fx/win32 in some cases(?)
/* 105 *|   * 6x6+ good for fast performance, even better when on-screen via position:fixed
/* 106 *|   * also, clickToFlash (Safari <5.1) may auto-load "invisible" SWFs at this size
/* 107 *|   */
/* 108 */  height: 8px;
/* 109 */  width: 8px;
/* 110 */ }
/* 111 */
/* 112 */ #sm2-container.high_performance.swf_loaded {
/* 113 */  /* stay bottom/left */
/* 114 */  top: auto;
/* 115 */  bottom: 0px;
/* 116 */  left: 0px;
/* 117 */ }
/* 118 */
/* 119 */ #sm2-container.high_performance.swf_loaded object,
/* 120 */ #sm2-container.high_performance.swf_loaded embed,
/* 121 */ #sm2-container.high_performance.swf_unblocked object,
/* 122 */ #sm2-container.high_performance.swf_unblocked embed {
/* 123 */  /* high-performance case must stay on-screen */
/* 124 */  left: auto;
/* 125 */  top: auto;
/* 126 */ }
/* 127 */
/* 128 */ #sm2-container.high_performance.swf_timedout {
/* 129 */  z-index: 99; /* try to stay on top */
/* 130 */ }
