/* scrim */
.trScrim {
  position: fixed;
  z-index: 19001;
  top: 0px;
  left: 0px;
  background-color: #000;
  filter: alpha(opacity=75);
  -moz-opacity: 0.75;
  opacity: 0.75;
  height: 100%;
  width: 100%;
}
.trScrim.trActivity {
  z-index: 19009;
}

* html .trScrim { /* ie6 hack */
  position: absolute;
  height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
}

/* activity indicators */
.trActivityIndicator {
  display: none;
  position: absolute;
}
.trActivityIndicatorScrim {
  display: none;
  z-index: 19002;
  position: fixed;
  top: 45%;
  left: 48%;
}

/* notifications */
#trNotificationChain {
  display: block;
  position: fixed;
  top: 30px;
  left: 0px;
  width: 100%;
  color: #333;
}
.trNotification {
  border: 1px solid #111;
  border-right: 0px;
  border-bottom: 0px;
  -webkit-box-shadow: 1px -1px 1px #555;
  text-align: center;
  font-size: 1.25em;
  padding: 7px 80px;
  cursor: pointer;
  z-index: 19009;
  font-family: Tahoma;
  border-radius: 10px 0px 0px 0px;
  -moz-border-radius: 10px 0px 0px 0px;
  -webkit-border-radius: 10px 0px 0px 0px;
  text-shadow: 1px 1px 1px #FFF;
  position: relative;
}
.trNotification.error {
  background-color: #ED3A3A;
  color: #FFF;
  text-shadow: 1px 1px 1px #000;
}
.trNotification.ok { background-color: #60ED3A }
.trNotification.warning { background-color: #EDC93A }
.trNotification.neutral {
  background-color: #417BC7;
  color: #FFF;
  text-shadow: 1px 1px 1px #000;
}
.trNotification .trCount {
  font-size: 0.6em;
  text-shadow: 0px 0px 0px #000;
  background: #FFF;
  opacity: 0.85;
  padding: 0 5px;
  color: #333;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  position: absolute;
  left: 10px;
}

/* lightbox */
.trLightbox-wrapper {
  position: fixed;
  top: 0px;
  left: -10000px;
  width: auto;
  height: auto;
  z-index: 19002;
  color: #000000;
  background-color: #fff;
}

.trLightbox-wrapper a.close {
  font-family: Tahoma;
  font-weight: 700;
  font-size: 0.75em;
  cursor: pointer;
  z-index: 19003;
  position: absolute;
  right: 10px;
  top: 10px;
  color: #FFF;
  text-decoration: none;
}

.trLightbox {
  margin: 0 auto;
  width: auto;
  height: auto;
  overflow: visible;
  background-color: #fff;
  position: relative;
  border:1px solid black;
}

.trLightbox-wrapper.trailer {
  background-color: #FFF;
  padding: 40px;
  height: 360px !important;
}
.trLightbox-wrapper.trailer .trLightbox-title {
  display: none;
}
.trLightbox-wrapper.trailer a.close {
  top: 0px;
  right: 0px;
}

.trLightbox-title {
  padding: 5px 0;
  background-color: #23262e;
  color: #d2d2d2;
  font-weight: normal;
  font-size: 14px;
  text-align: center;
  position: relative;
}

.trLightbox-content {
  padding: 40px 20px;
  margin: 0 auto;
}

.trLightbox a {
  color: black;
}

/* tooltip */
.trTooltip {
  margin: 0 0 0 25px;
  width: 280px;
  position: absolute;
  z-index: 19002;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  border-radius: 14px;
  -webkit-box-shadow: 5px 5px 30px #000;
  -moz-box-shadow: 15px 10px 30px #000;
   box-shadow: 15px 10px 30px #000;
}
.trTooltip.right {
  -webkit-box-shadow: -15px 10px 30px #000;
  -moz-box-shadow: -15px 10px 30px #000;
  -box-shadow: -15px 10px 30px #000;
  margin: 0 25px 0 0;
}
.trTooltip-stem { /* try a div */
  position: absolute;
  top: 102px; /* 62 */
  left: -20px;
  border-color: transparent #f2f2f2 transparent transparent;
  border-style: solid;
  border-width: 20px 20px 20px 0px;
}
.trTooltip.right .trTooltip-stem {
  left: auto;
  right: -20px;
  border-color: transparent transparent transparent #FFF;
  border-width: 20px 0px 20px 20px;
}
.trTooltip-title {
  padding: 10px 20px;
  background: #b70f15;
  color: black;
  position: relative;
  -moz-border-radius: 14px 14px 0 0;
  -webkit-border-radius: 14px 14px 0 0;
  border-radius: 14px 14px 0 0;
  font-size: 1.1em;
}

.trTooltip-title h2 {
  font-weight: 700;
  font-size: 1.3em;
  letter-spacing: 1px;

  color: black;
  line-height: 1;
  font-weight: bold;
  text-decoration: none;
}

.trTooltip-content {
  background: #f2f2f2;
  color: black;
  padding: 10px 20px;
  -moz-border-radius: 0 0 14px 14px;
  -webkit-border-radius: 0 0 14px 14px;
  border-radius: 0 0 14px 14px;
  min-height: 190px;
}

