


/*pop up*/

.show{
	text-align: right;
	font-size: 15px;
	padding: 10px;
	text-decoration: underline;
	color: #ed6977;
}
.layer {
	display: none;
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-color: black;
	opacity: 0.20;
	z-index:999998;
}
.popup {
	overflow: scroll;
	background-color: #fff;
	border-radius: 5px;
	text-align: center;
	z-index: 999999;
	padding: 5%;
	overflow: scroll;
	overflow-x: hidden;
}
.popup * {
	font-size:14px;
	text-align:left;
}
.popup h1,
.popup h2,
.popup strong{
	font-weight:bold;
}
.popup h1{
  font-size: 30px;
  line-height: 1.4;
  margin: 0 auto 15px;
}
@media only screen and (max-width: 751px) {
	.popup h1{
	  font-size: 18px;
	}
}

.popup h2{
	font-size:16px;
	margin:0 auto 15px;
    text-indent: -20px;
    padding-left: 20px;
}
.popup h2::before{
	content: "";
	width: 13px;
	height: 13px;
	display: inline-block;
	border: 1px solid #000;
	margin: 0 5px 0 0;
}
.popup .red{
	color:red;
}
.popup .blue{
	color:blue;
}
.popup ul,
.popup ol{
    width:95%;
    margin:auto;
}
.popup ul{
    list-style-type: circle;
}
.popup ol{
    list-style-type: decimal
}
.popup li{
	margin:0 auto 10px;
}
.popup .content{
	margin:0 auto 50px;
}
.popup .content .block{
	border:1px solid #eee;
	border-radius:5px;
	padding:5%;
	box-sizing:border-box;
	margin:30px 0;
}
.popup .content .block.bg{
	background:#eee;
}
.popup dl{
	margin: 20px 0;
}
.popup dt,
.popup dd{
	font-weight:bold;
}
.popup dt{
    background: #eee;
    padding: 5px 10px;
    display: inline;
}
.popup dd{
	margin:10px 0 0;
}
.popup a{
    position: static;
    font-size: 25px;
}
#close{
    position: fixed;
    z-index: 99999999;
    right: 5%;
    top:9%;
    width: 45px;
    height: 45px;
    background: #000;
}
#close:before,
#close:after{
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    width: 20px;
    height: 2px;
    background: #fff;
}
#close:before{
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}
#close:after{
	transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
}
