.notesmodal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}
.notesmodal.fade .notes-modal-dialog {
    -webkit-transition: -webkit-transform .3s ease-out;
    -o-transition: -o-transform .3s ease-out;
    transition: transform .3s ease-out;
    -webkit-transform: translate3d(0, -25%, 0);
    -o-transform: translate3d(0, -25%, 0);
    transform: translate3d(0, -25%, 0);
}
.notesmodal.in .notes-modal-dialog {
    -webkit-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.notes-modal-open .notesmodal {
    overflow-x: hidden;
    overflow-y: auto;
}
.notes-modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
    font-family:Verdana,Arial,Helvetica;
    margin: 60px auto !important;
    width: 500px !important;
}
.notes-modal-content {
    position: relative;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 6px;
    outline: 0;
    -webkit-box-shadow: 0 3px 9px rgba(0,0,0,.5);
    box-shadow: 0 3px 9px rgba(0,0,0,.5);
}
.notes-modal-header {
    background: #028a83;
    min-height: 16.43px;
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
}
.notes-modal-header .notes-close {
    margin-top: -2px;
}
.notes-modal-title {
    margin: 0;
    line-height: 1.42857143;
    color: #fff;
    background: url(../images/close.png) no-repeat right center;
}
.notes-modal-body {
    position: relative;
    padding: 15px;
}
.notes-close {
    float: right;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    filter: alpha(opacity=20);
    opacity: .2;
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
}
.notes-close:hover, .notes-close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    filter: alpha(opacity=50);
    opacity: .5;
}
.notes-img{
    margin-left: -12px;
    margin-bottom: -8px;
}
.disabled-notes{
    opacity: 0.3;
}
.notes-modal-header button.notes-close {
    padding: 3px 6px; }
.notes-modal-header button.notes-close span {
      opacity: 0; }
.notes-modal-body table {
    margin-bottom: 30px; }
