.modalBox.overlay {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background: #000000;
    z-index: 900;
    opacity: 0.6;
    filter: alpha(opacity = 60);
}
.modalBox.container {
    display: none;
    width: auto;
    position: absolute;
    border: solid 2px #ffffff;
    background: url('../img/10x10black70prc.png');
    color: #ffffff;
    font-size: 12px;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 5px #9d9d9d;
    z-index: 999;
}
.modalBox.group:after {
    content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
.modalBox .close {
    display: inline-block;
    width: 13px;
    height: 13px;
    background: url('../img/popup-close.png') no-repeat center center;
    position: absolute;
    right: 3px;
    top: 3px;
    cursor: pointer;
    z-index: 1000;
}
.modalBox .close:hover {
    background: url('../img/popup-close-hover.png') no-repeat !important;
}
.noStyle {
    background: none !important;
    box-shadow: none !important;
    border: none !important;
}