@charset "utf-8";
/* CSS Document */
.cf-modal {
    background: #FFF;
    border: solid #CCC 1px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    -webkit-border-radius: 3px;
	border-radius: 3px;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    padding: 50px 10px 10px 10px;
    top: 20px;
    left: 0;
    z-index: 2;
}
#cf-modal-close-btn {
    width: 20px;
    height: 20px;
    position: absolute;
    display: inline-block;
    overflow: hidden;
    top: 7px;
    right: 10px;
    cursor: pointer;
}
#cf-modal-close-btn:after {
    content: "+";
    width: 30px;
    height: 30px;
    position: absolute;
    color: #111;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    display: block;
    font-size: 30px;
    line-height: 1em;
    z-index: 3;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
#cf-modal-close-btn:hover:after {
    color: #FF0099;
}
#cf-modal-screen-overlay {
    background: #000;
    position: fixed;
    top: 0px;
    left: 0px;
    display: none;
    z-index: 1;
    opacity: 0.85;
    filter: alpha(opacity=85);
	overflow: hidden;
	height: 100%;
}
#dwin {
    width: 400px;
    height: 200px;
    background: #333;
    padding: 10px;
    color: #CCC;
    position: absolute;
    left: 0px;
    bottom: 0px;
    line-height: 1.1em;
    border: solid #000 1px;
    overflow-y: scroll;
    display: block;
}
.cf-modal > .modal-header {
    width: 100%;
    height: 30px;
    background: #666;
    position: absolute;
    top: 0px;
    left: 0px;
    color: #FFF;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    text-align: center;
    padding: 8px 0 0 0;
    z-index: 1;
    display: block;
    margin: 0 0 20px 0;
}
