@charset "utf-8";

.modalLayer {
    position: fixed;
    background: rgba(0, 0, 0, 0.7);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 997;
    overflow-y: auto;
}
* html .modalLayer {
    position: absolute;
}
.modalLayer > * {
    cursor: auto;
}


/*--------------------------------------------------
Ajax用ダイアログ
--------------------------------------------------*/
.overlay {
    background   : white;
    border       : 3px solid #ddd;
    border-radius: 5px;
    display      : none;
    left         : 50%;
    position     : fixed;
    top          : 50%;
    z-index      : 998;
}
* html .overlay {
    position: absolute;
}

.overlay .overlayTitle {
    padding: 5px 0 5px 12px;
    margin: 0 0 15px 0;
    font-size: 125%;
    line-height: 34px;
    border-bottom: dotted 1px #888;
    border-left: solid 7px #ffaa00;
}
.overlay dl.overlayOutlines dt:before {
    content:"";
    box-sizing: border-box;
    width: 10px;
    height: 10px;
    border: 10px solid transparent;
    border-left: 10px solid #ffaa00;
    display: inline-block;
    position: relative;
    top: 4px;
}
.overlay dl.overlayOutlines dt {
    font-weight: bold;
    border-bottom: solid 2px #888;
    color: #000;
    margin: 1em 0;
    position:relative;
    line-height: 16px;
    font-size: 16px;
}
.overlay dl.overlayOutlines dd {
    display: list-item;
    font-size: 16px;
    list-style: disc;
    padding: 3px 0;
    white-space: pre-wrap;
    -ms-word-break: break-all;
    word-break: break-all;
}
.overlay .overlayLink {
    cursor: pointer;
    font-size: 14px;
}


.overlayCloseButton {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    line-height: 14px;
    cursor:pointer;
    color: white;
    background-color: #FFAA00;
    border: #985f0d 2px solid;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}
.overlayCloseButton:hover {
    opacity: 0.75;
}
