DIV.raveModalBackground {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
  background-color: black;
  opacity: 0.8;
  filter: alpha(opacity=80); }

DIV.raveModalButtonsWrapper {
  display: none;
  width: auto;
  margin: 10px; }
  DIV.raveModalButtonsWrapper A.raveModalContinueButton {
    display: none;
    float: left; }
  DIV.raveModalButtonsWrapper A.altRaveModalCloseButton {
    display: none;
    float: right;
    margin-right: 0 !important; }

DIV.raveModal {
  display: none;
  position: absolute;
  left: 400px;
  top: 200px;
  background-color: white;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  overflow: hidden; }
  DIV.raveModal DIV.raveModalHeader {
    position: relative;
    color: white;
    height: 36px;
    line-height: 36px;
    background-color: #888888;
    background-image: -moz-linear-gradient(top, #888888 0%, #5f5f5f 100%);
    /* FF3.6 */
    background-image: -ms-linear-gradient(top, #888888 0%, #5f5f5f 100%);
    /* IE10 */
    background-image: -o-linear-gradient(top, #888888 0%, #5f5f5f 100%);
    /* Opera 11.10+ */
    background-image: -webkit-linear-gradient(top, #888888 0%, #5f5f5f 100%);
    /* Chrome 10+, Saf5.1+ */
    background-image: linear-gradient(top, #888888 0%, #5f5f5f 100%); }
    DIV.raveModal DIV.raveModalHeader SPAN {
      font-weight: bold;
      font-size: 20px;
      margin-left: 10px; }
    DIV.raveModal DIV.raveModalHeader A.close {
      float: right;
      display: inline-block;
      background: url(modal_close.png) no-repeat center center;
      width: 22px;
      height: 23px;
      margin: 0;
      top: 7px; }
  DIV.raveModal.warning DIV.raveModalHeader {
    background-color: #ccbb00;
    background-image: -moz-linear-gradient(top, #ccbb00 0%, #aa9900 100%);
    /* FF3.6 */
    background-image: -ms-linear-gradient(top, #ccbb00 0%, #aa9900 100%);
    /* IE10 */
    background-image: -o-linear-gradient(top, #ccbb00 0%, #aa9900 100%);
    /* Opera 11.10+ */
    background-image: -webkit-linear-gradient(top, #ccbb00 0%, #aa9900 100%);
    /* Chrome 10+, Saf5.1+ */
    background-image: linear-gradient(top, #ccbb00 0%, #aa9900 100%);
    color: #333; }
  DIV.raveModal.error DIV.raveModalHeader {
    background-color: #880000;
    background-image: -moz-linear-gradient(top, #aa0000 0%, #880000 100%);
    /* FF3.6 */
    background-image: -ms-linear-gradient(top, #aa0000 0%, #880000 100%);
    /* IE10 */
    background-image: -o-linear-gradient(top, #aa0000 0%, #880000 100%);
    /* Opera 11.10+ */
    background-image: -webkit-linear-gradient(top, #aa0000 0%, #880000 100%);
    /* Chrome 10+, Saf5.1+ */
    background-image: linear-gradient(top, #aa0000 0%, #880000 100%);
    color: white; }
  DIV.raveModal DIV.raveModalContent {
    margin: 10px; }
    DIV.raveModal DIV.raveModalContent DIV.raveModalButtonSet {
      border-top: 1px solid gray;
      margin-top: 10px;
      padding-top: 10px; }
  DIV.raveModal A.raveModalButton {
    display: inline-block;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    overflow: hidden;
    margin-right: 16px;
    height: 26px;
    line-height: 26px;
    background: gray;
    color: white;
    font-weight: bold;
    font-size: 12px;
    text-decoration: none;
    padding: 0 5px; }
    DIV.raveModal A.raveModalButton:hover {
      text-decoration: underline; }
