﻿#load-overlay-pane
{
    background-color: #000000;
    position: fixed;
    z-index: 1000;
    text-align: center;
    filter: alpha(opacity=70);
    opacity: 0.7;
    top: 0;
    left: 0;
    display: none;
}

.modal
{
    display:none;
    top: -100%;
    width: 50%;
    left: 25%;
    position: fixed;
    border: 1px solid;
    z-index: 1050;
    background-color: #FFFFFF;
    border-radius: 6px;
    margin-top: 30px;
}

.modal-container
{
    position:relative;
    z-index: 1050;
    
    height: 100%;
    width: 100%;
}
.modal-header
{
    border-bottom: 1px solid #eee;
    width: 100%;
    padding-top: 10px;
    height: 40px;
    -webkit-border-radius: 6px 6px 0px 0px;
    border-radius: 6px 6px 0px 0px;
}

#email-modal .modal-detail
{
    height: 275px;
    overflow: auto;    
}

.modal-footer
{
    width: 100%;
    height: 40px;
    -webkit-border-radius: 0 0 10px 10px;
    border-radius: 0 0 6px 6px;
    position: absolute;
    bottom: 0;
    padding-top: 14px;
    margin-bottom: 0;
    text-align: right;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
}

.modal-close
{
    display:inline-block;
    display:inline;
    width:auto;
    float: right;
    font-size: 20px;
    font-weight: bold;
    line-height: 20px;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .2;
    padding-right: 20px;
    cursor: pointer;
}
.modal-close :hover
{
    opacity: .4;
}

.modaltext
{
    font-size: 14px;
    padding: 20px;
}

.modal-header h3
{
    padding-left: 20px;
    display: inline-block;
    display:inline;
    margin-top: 10px;
    width:auto;
}




.btn
{
    border-left: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #a2a2a2;
    display: inline-block;
    display: inline;
    padding: 4px 12px;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 20px;
    color: #333;
    text-align: center;
    text-shadow: 0 1px 1px rgba(255,255,255,0.75);
    vertical-align: middle;
    cursor: pointer;
    background-color: #f5f5f5;
    background-repeat: repeat-x;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
    margin-right: 10px;
    background-image: linear-gradient(to bottom,#fff,#e6e6e6);
}

.btn-success
{
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
    background-color: #5bb75b;
    background-repeat: repeat-x;
    background-image: linear-gradient(to bottom,#62c462,#51a351);
    border-left-color: #51a351;
    border-right-color: #51a351;
    border-top-color: #51a351;
    border-bottom-color: #387038;
}

.btn-danger
{
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
    background-color: #da4f49;
    background-repeat: repeat-x;
    background-image: linear-gradient(to bottom,#ee5f5b,#bd362f);
    border-left-color: #bd362f;
    border-right-color: #bd362f;
    border-top-color: #bd362f;
    border-bottom-color: #802420;
}

.btn:hover
{
    color: #333;
    text-decoration: none;
    background-position: 0 -15px;
    -webkit-transition: background-position .1s linear;
    -moz-transition: background-position .1s linear;
    -o-transition: background-position .1s linear;
    transition: background-position .1s linear;
    background-color: #e6e6e6;
}

.btn-success:hover, .btn-success:active, .btn-success.active, .btn-success.disabled, .btn-success[disabled]
{
    color: #fff;
    background-color: #51a351;
}

.btn-danger:hover, .btn-danger:active, .btn-danger.active, .btn-danger.disabled, .btn-danger[disabled]
{
    color: #fff;
    background-color: #bd362f;
}

#notifications-modal
{
    width: 600px;
    height: 200px;
    left: 30%;
}

#submit-modal
{
    width: 700px;
    height: 250px;
    left: 25%;
}

#recall-modal, #confirmation-modal
{
    width: 600px;
    height: 200px;
    left: 30%;
}

#email-modal
{
    width: 50%;
    height: 400px;
    left: 30%;
}

.hidden
{
    display: none !important;
}

.redtext
{
    color: #ff0000;
}

.disabledlink {
    text-decoration: none !important;
    cursor: default !important;
    color:#a2a2a2 !important
}

.emailbody {
    text-decoration: underline;
    cursor: pointer;
}

.modal-padding
{
    padding: 10px;
}