@charset "utf-8";
/* CSS Document */

.plainmodal-close {
cursor: pointer;
}


.box {
width: 300px;
padding-top:45px;
color: #fff;
background-color: #888888;
border-radius: 10px;
display: none;
	font-family: "微軟正黑體", Arial;
}
.box:after { /* clearfix */
content: "";
clear: both;
display: block;
}
.box .plainmodal-close {
position: absolute;
width: 45px;
height: 45px;
right: 0px;
top: 0px;
background: url('plainmodal-close.png') no-repeat;
}
.box .plainmodal-close:hover {
background-position: -45px 0;
}

/*.......................................*/

.box .plainmodal-content {
width:100%;
height:auto;
font-size: 23px;
background:#ffffff;
color:#000000;
padding:15px 18px;
text-align:center;
	-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}
.box .plainmodal-send {
width:100%;
height:auto;
font-size: 22px;
background:#dddddd;
padding:10px;
border-radius: 0px 0px 10px 10px;
	-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}


