  #orax_alert {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    width: 600px;
    height: 400px;
    margin-left: -300px;
    margin-top: -200px;
    font-size: 15px;
    padding-top: 20px;
    background: #ffffff;
    border: 1px solid #767573;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 900;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
  
  #orax_alert_parameterContent {
    position: absolute;
    top: 1px;
    left: 20px;
    right: 20px;
  }
  
  
  #orax_alert .content {
    position: absolute;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    left: 0;
    right: 0;
    bottom 0;
    padding: 0px 25px 25px 25px;
    height: 345px;
    background: transparent;  
    border-width: 1px 0 1px 0;
    border-radius: 0 0 10px 10px;
    overflow-y: auto;
    margin-bottom: 20px;
  }
  
  #orax_alert_background {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    filter: alpha(opacity=40); /* For IE8 and earlier */
    z-index: 899;
    background: #C3C3C3;
  }  
  
  
  #orax_alert .active_button  {
     color: #fff;
     text-shadow: none;
     background-image: -webkit-linear-gradient(top, #D0D037 0%, #AFAF29 100%);
     background-image: -o-linear-gradient(top, #D0D037 0%, #AFAF29 100%);
     background-image: -webkit-gradient(linear, left top, left bottom, from(#D0D037), to(#AFAF29));
     background-image: linear-gradient(to bottom, #D0D037 0%, #AFAF29 100%);   
     background-repeat: repeat-x;
     border-color: #EC5C17;
     background-color: #DE5412;
  }   
  


  #orax_alert .active_button:hover {
    background-color: #AFAF29;
    background-position: 0 -15px; 
  } 
  
  
