/*
jQuery Plugin boxes v0.3
by zzbaivong
http://devs.forumvi.com/
*/
.zzBoxes, .zzBoxes * {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    margin: 0;
    padding: 0;
}
.zzBoxes_overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: none no-repeat center center #111;
    opacity: 0.8;
}
.zzBoxes_inner {
    background-color: #FFF;
    color: #444;
    width: auto;
    border: 3px solid #333;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: -150px;
    margin-top: -100px;
    -webkit-transition: margin .3s;
    transition: margin .3s;
}

.zzBoxes.confirm .zzBoxes_inner {
    border-color: #2F83BA;
}
.zzBoxes.confirm .zzBoxes_title {
    color: #2F83BA;
}
.zzBoxes_title {
    font-size: 1.3em;
    line-height: 1.5em;
	font-family:Dotum;
}
.zzBoxes_content {
    padding: 20px 15px;
    margin: 0;
}
.zzBoxes_mess {
    overflow: auto;
    white-space: pre-line;
	padding-top:5px;
}
.zzBoxes_content img {
    max-width: 100%;
	padding-bottom:0;
	margin-bottom:0;
}
.zzBoxes_button {
    text-align: right;
    background: #F4F4F4;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
}
.zzBoxes_button > div {
    display: inline-block;
    min-width: 70px;
    margin: 10px 0 10px 10px;
    background-color: #016AA7;
    color: #FFF;
    padding: 5px 14px;
    text-align: center;
    -webkit-transition: background .3s;
    transition: background .3s;
}
.zzBoxes_button > div:first-child {
    margin-left: 0;
	font-size: 0.9em;
}
div.zzBoxes_cancel {
    background-color: #D3527E;
	font-size: 0.9em;
}
.zzBoxes_close {
    position: absolute;
    width: 30px;
    height: 20px;
    right: 2px;
    top: 2px;
    text-indent: -9999px;
    background: url(/template/2/img/close.png) no-repeat center center #D3527E;
    opacity: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.zzBoxes_inner:hover .zzBoxes_close {
    opacity: 1;
}
.zzBoxes_button > div:hover, .zzBoxes_close:hover {
    background-color: #333;
    cursor: pointer;
}
.comment {
	text-align:right;
	padding-top:8px;
	font-size:1em;
	margin:0;
}
.joinIcon {
	 vertical-align: -30%;
}