@import url('https://fonts.googleapis.com/css2?family=Nanum+Gothic:wght@400;700;800&display=swap');

html {scrollbar-3dLight-Color: #555; scrollbar-arrow-color: #333; scrollbar-base-color: #333; scrollbar-Face-Color: #333; scrollbar-Track-Color: #333;
    scrollbar-DarkShadow-Color: #555; scrollbar-Highlight-Color: #555; scrollbar-Shadow-Color: #555}
/* Chrome, Safari용 스크롤 바 */
::-webkit-scrollbar {width: 3px;height: 0px;/* border: 4px solid #ffffff; */}
::-webkit-scrollbar-button:start:decrement, ::-webkit-scrollbar-button:end:increment {display: block; height: 10px; background: #111}
::-webkit-scrollbar-track {background: #666666;-webkit-border-radius: 10px;border-radius: 2.5px;-webkit-box-shadow: inset 0 0 4px rgba(0,0,0,.2);}
::-webkit-scrollbar-thumb {height: 50px;width: 5px;background: #333333;-webkit-border-radius: 4px;border-radius: 4px;-webkit-box-shadow: inset 0 0 4px rgba(0,0,0,.1);}

.modal-title {text-align:;height: 30px;line-height: 30px;color: #d3e8e8;}
.modal-title .modal-title_h {font-size:16px !important;color: #ddd; }
.modal-title span {font-size:12px;color: #f98a13;margin-left: 20px;}

.money_top{height:38px;color:#ffffff;/*font-weight:bold;*/}
.money_inp{border:1px solid #ffffff;border-radius:7px;height:20px;width:250px;background-color:#031831;color:#fff;/*font-weight:bold;*/}
.money_tb_top{height:38px;color:#ffffff;font-size: 12px;text-align:center;/*font-weight:bold;*/border-right: 1px solid #191919;background: black;}
.money_tb_top_end{height:38px;color:#ffffff;text-align:center;/*font-weight:bold;*/background:url('../img/bg/game_top_bg.jpg') center right repeat-x}
.money_tb_cont{height:35px;color:#ffffff;font-size: 12px;/*font-weight:bold;*/text-align:center;background-color:#313131;border-right: 1px solid #252525;border-bottom: 1px solid #252525;}
.money_tb_cont_cash{height:35px;color:#e0b40a;/*font-weight:bold;*/text-align:center;background-color:#313131;border-right:1px solid #545454;border-bottom:1px solid #1a1a1a}
.money_tb_cont_cancle{height:35px;color:#fa1e07;/*font-weight:bold;*/text-align:center;background-color:#313131;border-right:1px solid #545454;border-bottom:1px solid #1a1a1a}
.money_tb_cont_del{height:35px;color:#fa1e07;/*font-weight:bold;*/text-align:center;background-color:#313131;border-bottom:1px solid #1a1a1a}
.money_context{padding-left:150px;color:#fe0000;/*font-weight:bold;*/}
.money_info{color:#ffffff;/*font-weight:bold;*/}
.money_info td{height:35px;color:#ffffff;/*font-weight:bold;*/padding-left:20px}
.money_tb_cont a {color: #FFEB3B;text-decoration: none;}

.modal-go {text-align:center;}

.md-perspective,
.md-perspective body {
	height: 100%;
	overflow: hidden;
}

.md-perspective body  {
	background:;
	-webkit-perspective: 600px;
	-moz-perspective: 600px;
	perspective: 600px;
}

.container {
	background: #e74c3c;
	min-height: 100%;
}

.md-modal {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 100%;
	max-width: 700px;
	min-width: 350px;
	height: auto;
	z-index: 2000;
	visibility: hidden;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}

.md-show {
	visibility: visible;
}

.md-overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	visibility: hidden;
	top: 0;
	left: 0;
	z-index: 1001;
	opacity: 0;
	background: rgba(0, 0, 0, 0.73);
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.md-show ~ .md-overlay {
	opacity: 1;
	visibility: visible;
}

/* Content styles */
.md-content {
	color: #fff;
	position: relative;
	border-radius: 5px;
	border: solid 1px #444;
	margin: 0 auto;
	background-color: #252525;
	overflow-y: auto;
	text-align: center;
}

.md-content h3 {
	margin: 0;
	padding: 0.4em;
	text-align: center;
	font-size: 1.5em;
	font-weight: 300;
	opacity: 0.8;
	background: rgb(26, 26, 26);
	border-radius: 3px 3px 0 0;
	zoom: 102%;
}

.md-content > div {
	padding: 15px 5px 30px;
	margin: 0;
	font-weight: 300;
}

.md-content > div p {
	margin: 0;
	padding: 10px 0;
}

.md-content > div ul {
	margin: 0;
	padding: 0 0 30px 20px;
	list-style:none;
}

.md-content > div ul li {
	padding: 5px 0;
	list-style:none;
}

.md-content button {
	display: block;
	margin: 0 auto;
	font-size: 0.8em;
}

/* Individual modal styles with animations/transitions */

/* Effect 1: Fade in and scale up */
.md-effect-1 .md-content {
	-webkit-transform: scale(0.7);
	-moz-transform: scale(0.7);
	-ms-transform: scale(0.7);
	transform: scale(0.7);
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.md-show.md-effect-1 .md-content {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

/* Effect 2: Slide from the right */
.md-effect-2 .md-content {
	-webkit-transform: translateX(20%);
	-moz-transform: translateX(20%);
	-ms-transform: translateX(20%);
	transform: translateX(20%);
	opacity: 0;
	-webkit-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
	-moz-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
	transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}

.md-show.md-effect-2 .md-content {
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
	opacity: 1;
}

/* Effect 3: Slide from the bottom */
.md-effect-3 .md-content {
	-webkit-transform: translateY(20%);
	-moz-transform: translateY(20%);
	-ms-transform: translateY(20%);
	transform: translateY(20%);
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.md-show.md-effect-3 .md-content {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}

/* Effect 4: Newspaper */
.md-effect-4 .md-content {
	-webkit-transform: scale(0) rotate(720deg);
	-moz-transform: scale(0) rotate(720deg);
	-ms-transform: scale(0) rotate(720deg);
	transform: scale(0) rotate(720deg);
	opacity: 0;
}

.md-show.md-effect-4 ~ .md-overlay,
.md-effect-4 .md-content {
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.md-show.md-effect-4 .md-content {
	-webkit-transform: scale(1) rotate(0deg);
	-moz-transform: scale(1) rotate(0deg);
	-ms-transform: scale(1) rotate(0deg);
	transform: scale(1) rotate(0deg);
	opacity: 1;
}

/* Effect 5: fall */
.md-effect-5.md-modal {
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.md-effect-5 .md-content {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: translateZ(600px) rotateX(20deg);
	-moz-transform: translateZ(600px) rotateX(20deg);
	-ms-transform: translateZ(600px) rotateX(20deg);
	transform: translateZ(600px) rotateX(20deg);
	opacity: 0;
}

.md-show.md-effect-5 .md-content {
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	-webkit-transform: translateZ(0px) rotateX(0deg);
	-moz-transform: translateZ(0px) rotateX(0deg);
	-ms-transform: translateZ(0px) rotateX(0deg);
	transform: translateZ(0px) rotateX(0deg);
	opacity: 1;
}

/* Effect 6: side fall */
.md-effect-6.md-modal {
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.md-effect-6 .md-content {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: translate(30%) translateZ(600px) rotate(10deg);
	-moz-transform: translate(30%) translateZ(600px) rotate(10deg);
	-ms-transform: translate(30%) translateZ(600px) rotate(10deg);
	transform: translate(30%) translateZ(600px) rotate(10deg);
	opacity: 0;
}

.md-show.md-effect-6 .md-content {
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	-webkit-transform: translate(0%) translateZ(0) rotate(0deg);
	-moz-transform: translate(0%) translateZ(0) rotate(0deg);
	-ms-transform: translate(0%) translateZ(0) rotate(0deg);
	transform: translate(0%) translateZ(0) rotate(0deg);
	opacity: 1;
}

/* Effect 7:  slide and stick to top */
.md-effect-7{
	top: 0;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.md-effect-7 .md-content {
	-webkit-transform: translateY(-200%);
	-moz-transform: translateY(-200%);
	-ms-transform: translateY(-200%);
	transform: translateY(-200%);
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
	opacity: 0;
}

.md-show.md-effect-7 .md-content {
	-webkit-transform: translateY(0%);
	-moz-transform: translateY(0%);
	-ms-transform: translateY(0%);
	transform: translateY(0%);
	border-radius: 0 0 3px 3px;
	opacity: 1;
}

/* Effect 8: 3D flip horizontal */
.md-effect-8.md-modal {
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.md-effect-8 .md-content {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: rotateY(-70deg);
	-moz-transform: rotateY(-70deg);
	-ms-transform: rotateY(-70deg);
	transform: rotateY(-70deg);
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.md-show.md-effect-8 .md-content {
	-webkit-transform: rotateY(0deg);
	-moz-transform: rotateY(0deg);
	-ms-transform: rotateY(0deg);
	transform: rotateY(0deg);
}

/* Effect 9: 3D flip vertical */
.md-effect-9.md-modal {
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.md-effect-9 .md-content {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: rotateX(-70deg);
	-moz-transform: rotateX(-70deg);
	-ms-transform: rotateX(-70deg);
	transform: rotateX(-70deg);
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	opacity: 0;
}

.md-show.md-effect-9 .md-content {
	-webkit-transform: rotateX(0deg);
	-moz-transform: rotateX(0deg);
	-ms-transform: rotateX(0deg);
	transform: rotateX(0deg);
	opacity: 1;
}

/* Effect 10: 3D sign */
.md-effect-10.md-modal {
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.md-effect-10 .md-content {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: rotateX(-60deg);
	-moz-transform: rotateX(-60deg);
	-ms-transform: rotateX(-60deg);
	transform: rotateX(-60deg);
	-webkit-transform-origin: 50% 0;
	-moz-transform-origin: 50% 0;
	transform-origin: 50% 0;
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.md-show.md-effect-10 .md-content {
	-webkit-transform: rotateX(0deg);
	-moz-transform: rotateX(0deg);
	-ms-transform: rotateX(0deg);
	transform: rotateX(0deg);
	opacity: 1;
}

/* Effect 11: Super scaled */
.md-effect-11 .md-content {
	-webkit-transform: scale(2);
	-moz-transform: scale(2);
	-ms-transform: scale(2);
	transform: scale(2);
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.md-show.md-effect-11 .md-content {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

/* Effect 12:  Just me */
.md-effect-12 .md-content {
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	transform: scale(0.8);
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.md-show.md-effect-12 ~ .md-overlay {
	background: #e74c3c;
}

.md-effect-12 .md-content h3,
.md-effect-12 .md-content {
	background: transparent;
}

.md-show.md-effect-12 .md-content {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

/* Effect 13: 3D slit */
.md-effect-13.md-modal {
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.md-effect-13 .md-content {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: translateZ(-3000px) rotateY(90deg);
	-moz-transform: translateZ(-3000px) rotateY(90deg);
	-ms-transform: translateZ(-3000px) rotateY(90deg);
	transform: translateZ(-3000px) rotateY(90deg);
	opacity: 0;
}

.md-show.md-effect-13 .md-content {
	-webkit-animation: slit .7s forwards ease-out;
	-moz-animation: slit .7s forwards ease-out;
	animation: slit .7s forwards ease-out;
}

@-webkit-keyframes slit {
	50% { -webkit-transform: translateZ(-250px) rotateY(89deg); opacity: .5; -webkit-animation-timing-function: ease-out;}
	100% { -webkit-transform: translateZ(0) rotateY(0deg); opacity: 1; }
}

@-moz-keyframes slit {
	50% { -moz-transform: translateZ(-250px) rotateY(89deg); opacity: .5; -moz-animation-timing-function: ease-out;}
	100% { -moz-transform: translateZ(0) rotateY(0deg); opacity: 1; }
}

@keyframes slit {
	50% { transform: translateZ(-250px) rotateY(89deg); opacity: 1; animation-timing-function: ease-in;}
	100% { transform: translateZ(0) rotateY(0deg); opacity: 1; }
}

/* Effect 14:  3D Rotate from bottom */
.md-effect-14.md-modal {
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.md-effect-14 .md-content {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: translateY(100%) rotateX(90deg);
	-moz-transform: translateY(100%) rotateX(90deg);
	-ms-transform: translateY(100%) rotateX(90deg);
	transform: translateY(100%) rotateX(90deg);
	-webkit-transform-origin: 0 100%;
	-moz-transform-origin: 0 100%;
	transform-origin: 0 100%;
	opacity: 0;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.md-show.md-effect-14 .md-content {
	-webkit-transform: translateY(0%) rotateX(0deg);
	-moz-transform: translateY(0%) rotateX(0deg);
	-ms-transform: translateY(0%) rotateX(0deg);
	transform: translateY(0%) rotateX(0deg);
	opacity: 1;
}

/* Effect 15:  3D Rotate in from left */
.md-effect-15.md-modal {
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.md-effect-15 .md-content {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: translateZ(100px) translateX(-30%) rotateY(90deg);
	-moz-transform: translateZ(100px) translateX(-30%) rotateY(90deg);
	-ms-transform: translateZ(100px) translateX(-30%) rotateY(90deg);
	transform: translateZ(100px) translateX(-30%) rotateY(90deg);
	-webkit-transform-origin: 0 100%;
	-moz-transform-origin: 0 100%;
	transform-origin: 0 100%;
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.md-show.md-effect-15 .md-content {
	-webkit-transform: translateZ(0px) translateX(0%) rotateY(0deg);
	-moz-transform: translateZ(0px) translateX(0%) rotateY(0deg);
	-ms-transform: translateZ(0px) translateX(0%) rotateY(0deg);
	transform: translateZ(0px) translateX(0%) rotateY(0deg);
	opacity: 1;
}

/* Effect 16:  Blur */
.md-show.md-effect-16 ~ .md-overlay {
	background: rgba(180,46,32,0.5);
}

.md-show.md-effect-16 ~ .container {
	-webkit-filter: blur(3px);
	-moz-filter: blur(3px);
	filter: blur(3px);
}

.md-effect-16 .md-content {
	-webkit-transform: translateY(-5%);
	-moz-transform: translateY(-5%);
	-ms-transform: translateY(-5%);
	transform: translateY(-5%);
	opacity: 0;
}

.md-show.md-effect-16 ~ .container,
.md-effect-16 .md-content {
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.md-show.md-effect-16 .md-content {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}

/* Effect 17:  Slide in from bottom with perspective on container */
.md-show.md-effect-17 ~ .container {
	height: 100%;
	overflow: hidden;
	-webkit-transition: -webkit-transform 0.3s;
	-moz-transition: -moz-transform 0.3s;
	transition: transform 0.3s;
}

.md-show.md-effect-17 ~ .container,
.md-show.md-effect-17 ~ .md-overlay  {
	-webkit-transform: rotateX(-2deg);
	-moz-transform: rotateX(-2deg);
	-ms-transform: rotateX(-2deg);
	transform: rotateX(-2deg);
	-webkit-transform-origin: 50% 0%;
	-moz-transform-origin: 50% 0%;
	transform-origin: 50% 0%;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.md-effect-17 .md-content {
	opacity: 0;
	-webkit-transform: translateY(200%);
	-moz-transform: translateY(200%);
	-ms-transform: translateY(200%);
	transform: translateY(200%);
}

.md-show.md-effect-17 .md-content {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
	-webkit-transition: all 0.3s 0.2s;
	-moz-transition: all 0.3s 0.2s;
	transition: all 0.3s 0.2s;
}

/* Effect 18:  Slide from right with perspective on container */
.md-show.md-effect-18 ~ .container {
	height: 100%;
	overflow: hidden;
}

.md-show.md-effect-18 ~ .md-overlay {
	background: rgba(143,27,15,0.8);
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.md-show.md-effect-18 ~ .container,
.md-show.md-effect-18 ~ .md-overlay {
	-webkit-transform-style: preserve-3d;
	-webkit-transform-origin: 0% 50%;
	-webkit-animation: rotateRightSideFirst 0.5s forwards ease-in;
	-moz-transform-style: preserve-3d;
	-moz-transform-origin: 0% 50%;
	-moz-animation: rotateRightSideFirst 0.5s forwards ease-in;
	transform-style: preserve-3d;
	transform-origin: 0% 50%;
	animation: rotateRightSideFirst 0.5s forwards ease-in;
}

@-webkit-keyframes rotateRightSideFirst {
	50% { -webkit-transform: translateZ(-50px) rotateY(5deg); -webkit-animation-timing-function: ease-out; }
	100% { -webkit-transform: translateZ(-200px); }
}

@-moz-keyframes rotateRightSideFirst {
	50% { -moz-transform: translateZ(-50px) rotateY(5deg); -moz-animation-timing-function: ease-out; }
	100% { -moz-transform: translateZ(-200px); }
}

@keyframes rotateRightSideFirst {
	50% { transform: translateZ(-50px) rotateY(5deg); animation-timing-function: ease-out; }
	100% { transform: translateZ(-200px); }
}

.md-effect-18 .md-content {
	-webkit-transform: translateX(200%);
	-moz-transform: translateX(200%);
	-ms-transform: translateX(200%);
	transform: translateX(200%);
	opacity: 0;
}

.md-show.md-effect-18 .md-content {
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
	opacity: 1;
	-webkit-transition: all 0.5s 0.1s;
	-moz-transition: all 0.5s 0.1s;
	transition: all 0.5s 0.1s;
}

/* Effect 19:  Slip in from the top with perspective on container */
.md-show.md-effect-19 ~ .container {
	height: 100%;
	overflow: hidden;
}

.md-show.md-effect-19 ~ .md-overlay {
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.md-show.md-effect-19 ~ .container,
.md-show.md-effect-19 ~ .md-overlay {
	-webkit-transform-style: preserve-3d;
	-webkit-transform-origin: 50% 100%;
	-webkit-animation: OpenTop 0.5s forwards ease-in;
	-moz-transform-style: preserve-3d;
	-moz-transform-origin: 50% 100%;
	-moz-animation: OpenTop 0.5s forwards ease-in;
	transform-style: preserve-3d;
	transform-origin: 50% 100%;
	animation: OpenTop 0.5s forwards ease-in;
}

@-webkit-keyframes OpenTop {
	50% {
		-webkit-transform: rotateX(10deg);
		-webkit-animation-timing-function: ease-out;
	}
}

@-moz-keyframes OpenTop {
	50% {
		-moz-transform: rotateX(10deg);
		-moz-animation-timing-function: ease-out;
	}
}

@keyframes OpenTop {
	50% {
		transform: rotateX(10deg);
		animation-timing-function: ease-out;
	}
}

.md-effect-19 .md-content {
	-webkit-transform: translateY(-200%);
	-moz-transform: translateY(-200%);
	-ms-transform: translateY(-200%);
	transform: translateY(-200%);
	opacity: 0;
}

.md-show.md-effect-19 .md-content {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
	-webkit-transition: all 0.5s 0.1s;
	-moz-transition: all 0.5s 0.1s;
	transition: all 0.5s 0.1s;
}

@media screen and (max-width: 32em) {
	body { font-size: 75%; }
}

.msg_sound_only,.sound_only{display:inline-block !important;position:absolute;top:0;left:0;margin:0 !important;padding:0 !important;font-size:0;line-height:0;border:0 !important;overflow:hidden !important}
.text_bank{padding:10px 10px 8px 10px;line-height:20px;background:#454545}
.bank_list{padding:10px 10px 10px 10px;background:#777777;list-style:none}
.bank_list ul{list-style:none;color:#ffffff}
.bank_list li{padding:0px 5px 5px 0px}
.bank_list .name01{display:inline-block;text-align:right;/*font-weight:bold;*/width:80px;text-align:right}
.bank_list .time{display:inline-block;padding-left:10px}
.btnWrap{overflow:hidden;width:190px;margin:0 auto}
.btnWrap a{width:60px;height:27px;line-height:27px;color:#fff;display:inline-block;text-align:center;margin-bottom:5px;border-radius:3px;background:-moz-linear-gradient(top,#4a4a4a 0%,#444 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#4a4a4a),color-stop(100%,#444));background:-webkit-linear-gradient(top,#4a4a4a 0%,#444 100%);background:-o-linear-gradient(top,#4a4a4a 0%,#444 100%);background:-ms-linear-gradient(top,#4a4a4a 0%,#444 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#4a4a4a',endColorstr='#444',GradientType=0 );background:linear-gradient(to bottom,#4a4a4a 0%,#444 100%);border-top:1px solid #4f4f4f}
.btnWrap a:active{color:#fff;background:-moz-linear-gradient(top,#535353 0%,#4f4f4f 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#535353),color-stop(100%,#4f4f4f));background:-webkit-linear-gradient(top,#535353 0%,#4f4f4f 100%);background:-o-linear-gradient(top,#535353 0%,#4f4f4f 100%);background:-ms-linear-gradient(top,#535353 0%,#4f4f4f 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#535353',endColorstr='#4f4f4f',GradientType=0 );background:linear-gradient(to bottom,#535353 0%,#4f4f4f 100%);border-top:1px solid #555}
.sub-article{position:relative;padding:18px 7px 20px}
.ui-tab{position:relative;margin-bottom:5px}
.ui-tab ul{overflow:hidden;margin:-2px -2px}
.ui-tab li{float:left;padding:2px 2px;-webkit-box-sizing:border-box;box-sizing:border-box;list-style:none}
.ui-tab li a,.ui-tab li span{display:block;height:36px;font-family:HelveticaNeue,AppleSDGothicNeo,Sans-serif;color:#ffffff;border-radius:1px;background-image:linear-gradient(to bottom,#192019,#192019);line-height:36px;text-align:center;-webkit-box-sizing:border-box;box-sizing:border-box}
.ui-tab li a, .ui-tab li span { background-image: linear-gradient(to bottom, #192019, #192019); border-radius: 1px; box-sizing: border-box; color: #ffffff; display: block; font-family: 'Nanum Gothic', sans-serif !important; height: 36px; line-height: 36px; text-align: center; -webkit-box-sizing: border-box; }
.ui-tab li.on a{background:#c27c06;background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#c27c06),color-stop(100%,#c27c06));background:-webkit-linear-gradient(top,#c27c06 0%,#c27c06 100%);background:-ms-linear-gradient(top,#c27c06 0%,#c27c06 100%);color:#fff}
.ui-tab.ui-col1 li{width:100%}
.ui-tab.ui-col2 li{width:50%}
.ui-tab.ui-col3 li{width:33.3333%}
.ui-tab.ui-col4 li{width:16.6666%}
#right_notice{width:200px;height:135px;border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;border:1px solid #ae967a;padding:10px;background:url('../img/right_notice_bg.jpg') repeat}
#icon_box{width:1200px;margin:0 auto}
.icon_wrap{width:357px;height:1px;float:right;position:relative;top:-50px;left:120px}
#img_ball{height:300px;text-align:center}
#retroclockbox5{margin:0 auto;text-align:center}
.table{width:100%;margin: 0px;font-size: 13px;color: #fff;}
.table td{/* border-top: 1px solid #333; *//* width: 30%; *//* height:35px; *//* line-height: 35px; *//* list-style: circle; */}
.tr_last{border-bottom: 1px solid #333;}
.table .subject{background-color:#1A1A1A;text-align:center;border-right: 1px solid #333;border-left: 1px solid #333;width:130px;padding-left:0px;color:#ffffff;}
.table .subject_first{background-color:#1A1A1A;color:#ffffff;text-align:center;border-right: 1px solid #333;width:130px;padding-left:10px;background-size:100% -1px;}
.bank_yo{background: #138a11;background: -moz-linear-gradient(to bottom,#00a205 0%,#0b7900 100%);background: -webkit-linear-gradient(to bottom,#00a205 0%,#0b7900 100%);background: linear-gradient(to bottom,#00a205 0%,#0b7900 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff6600',endColorstr='#ff3300',GradientType=0 );color:#ffffff;border-radius: 20px;width: 80px;height: 25px;line-height: 25px;text-align:center;display:inline-block;cursor:pointer;}

.modal_charge {width:100%;height:100%; max-height:750px;}

.now_btn{
	font-size: 14px;
	margin-top:10px;
	width:284px;
	border-radius: 5px;
	height:40px;
	color:#fff;
	background: rgb(245,52,52);
	background: -moz-linear-gradient(top, rgb(245,52,52) 0%, rgb(186,25,25) 100%);
	background: -webkit-linear-gradient(top, rgb(245,52,52) 0%,rgb(186,25,25) 100%);
	background: linear-gradient(to bottom, rgb(245,52,52) 0%,rgb(186,25,25) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f53434', endColorstr='#ba1919',GradientType=0 );
	border: 1px solid #131313;
	outline: none;
	display:inline-block;
	cursor:pointer;
	transition-duration:0.4s;
	box-shadow: 1px 1px 1px rgba(0,0,0,0.3);
}
.now_btn:hover, .now_btn:focus, .now_btn:active {
	background: rgb(245,52,52);
	background: -moz-linear-gradient(to bottom, rgb(245,52,52) 0%, rgb(186,25,25) 100%);
	background: -webkit-linear-gradient(to bottom, rgb(245,52,52) 0%, rgb(186,25,25) 100%);
	background: linear-gradient(to bottom, rgb(245,52,52) 0%, rgb(186,25,25) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f53434', endColorstr='#ba1919',GradientType=0 );
	border: 0px solid #131313;
	outline: none;
	/* text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.83); */
}


#container_box{width: 100%;margin: 10px auto;}
ul.tabs{padding:0px;float:left;list-style:none;height:32px;border-bottom:1px solid #0F2E52;border-left:1px solid #0F2E52;width:100%;font-size:13px;margin:0px auto}
ul.tabs li{float:left;text-align:center;cursor:pointer;width:100px;height:31px;line-height:31px;border:1px solid #0F2E52;border-left:none;/*font-weight:bold;*/overflow:hidden;position:relative;color:#ffffff}
ul.tabs li.active{background-color:#1A1A1A;color:#ffffff;border-bottom:1px solid #1A1A1A}
.tab_container{border:1px solid #0F2E52;border-top:none;clear:both;float:left;width:100%}
.tab_charge_content{padding:20px;font-size:12px;display:none;background-color:#1A1A1A;color:#ffffff}
.tab_container .tab_charge_content ul{width:100%;margin:0px;padding:0px}
.tab_container .tab_charge_content ul li{padding:5px;list-style:none}

.title_div{color:#ffffff;clear:both;width: 100%;/* margin-left:20px; *//* margin-top:30px; */margin-bottom:10px;display:inline-block;}
.title_div li:first-child{float:left;font-size: 14px;font-weight:700;}
.title_div li:first-child img{vertical-align:middle;margin-right:10px;width: 25px;}
.title_div li:last-child{float:right;text-align:right}
.small_table_line{width: 100%;border-collapse:collapse;}
.small_table_line td{color:#ffffff;border-top: 1px solid #222;border-bottom: 1px solid #353535;border-right: 1px solid #222;padding:5px;height:25px;text-align:center;font-size: 12px;}
.small_table_line td:last-child{border-top: 1px solid #222;border-bottom: 1px solid #353535;border-right:none;padding:5px;height:25px;text-align:center;}
.small_table_line > thead > tr:first-child{background-color: #1d1d1d;}
.small_table_line_level{width:90%;border-collapse:collapse;font-size:12px}
.small_table_line_level td{border-top:1px solid #cccccc;border-bottom:1px solid #cccccc;border-right:1px solid #cccccc;padding:5px;height:25px;text-align:center}
.small_table_line_level td:first-child{border-top:1px solid #cccccc;border-bottom:1px solid #cccccc;border-right:1px solid #cccccc;padding:5px;height:25px;text-align:center}
.small_table_line_level td:last-child{border-top:1px solid #cccccc;border-bottom:1px solid #cccccc;border-right:none;padding:5px;height:25px;text-align:center}


input:focus {
	outline: none;
}

.input_number {
	background: #252525;
	border: 0.5px solid #3a3a3a;
	border-radius: 3px;
	color: #fff;
	float: left;
	font-size: 13px;
	height: 30px;
	margin: 0;
	padding: 0 10px 0 10px;
	width: 120px;
}

.input_number:focus {
	-webkit-animation: glow 800ms ease-out infinite alternate;
	-moz-animation: glow 800ms ease-out infinite alternate;
	-o-animation: glow 800ms ease-out infinite alternate;
	-ms-animation: glow 800ms ease-out infinite alternate;
	animation: glow 800ms ease-out infinite alternate;
	background: #222922;
	border-color: #393;
	outline: none;
}
.button {
	display: inline-block;
	vertical-align: top;
	padding: 0px 10px;
	line-height: 30px;
	/*font-family: inherit;*/
	font-family: 'Nanum Gothic', sans-serif !important;
	font-size: 12px;
	color: #fff;
	text-align: center;
	text-decoration: none;
	background-color: #ccc;
	background-clip: padding-box;
	border: 1px solid;
	border-color: #202020 #1a1a1a #111;
	border-radius: 5px;
	background-image: -webkit-linear-gradient(top, #efefef, #777);
	background-image: -moz-linear-gradient(top, #efefef, #777);
	background-image: -o-linear-gradient(top, #efefef, #777);
	background-image: linear-gradient(to bottom, #efefef, #777);
	-webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.09), 0 1px 1px rgba(0, 0, 0, 0.3);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.09), 0px 1px 1px rgba(0, 0, 0, 0.2);
}
.button:hover {
	background-color: #aaaaaa;
	background-image: -webkit-linear-gradient(top, #ccc, #555);
	background-image: -moz-linear-gradient(top, #ccc, #555);
	background-image: -o-linear-gradient(top, #ccc, #555);
	background-image: linear-gradient(to bottom, #ccc, #555);
}
.button:active, .button.active {
	background-color: #b42f32;
	border-color: #1c1c1c #202020 #222;
	-webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.09);
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.09);
}
.darkGrey {
	color: #fff;
	background-color: #474747;
	border-color: #1c1c1c #202020 #222;
	background-image: -webkit-linear-gradient(to bottom, #a53d00 20%,#803102 100%);
	background-image: -moz-linear-gradient(to bottom, #a53d00 20%,#803102 100%);
	background-image: -o-linear-gradient(to bottom, #a53d00 20%,#803102 100%);
	background-image: linear-gradient(to bottom, #a53d00 20%,#803102 100%);
}
.darkGrey:hover {
	background-color: #363636;
	background-image: -webkit-linear-gradient(top, #823000 5%,#9c3b01 100%);
	background-image: -moz-linear-gradient(top, #823000 5%,#9c3b01 100%);
	background-image: -o-linear-gradient(top, #823000 5%,#9c3b01 100%);
	background-image: linear-gradient(to bottom, #823000 5%,#9c3b01 100%);
}
#Close_btn {
	display: inline-block;
	/*vertical-align: top;*/
	line-height: 30px;
	width: 30%;
	/*font-family: inherit;*/
	font-family: 'Nanum Gothic', sans-serif !important;
	font-size: 12px;
	color: #fff;
	text-align: center;
	text-decoration: none;
	text-shadow: 0 0 2px rgba(0, 0, 0, 0.86);
	background-color: #fd0404;
	background-clip: padding-box;
	border: 1px solid;
	border-color: #202020 #1a1a1a #111;
	border-radius: 5px;
	background-image: -webkit-linear-gradient(top, #0061a7, #0a4c73);
	background-image: -moz-linear-gradient(top, #0061a7, #0a4c73);
	background-image: -o-linear-gradient(top, #0061a7, #0a4c73);
	background-image: linear-gradient(to bottom, #0061a7, #0a4c73);
	-webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.09), 0 1px 1px rgba(0, 0, 0, 0.3);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.09), 0px 1px 1px rgba(0, 0, 0, 0.2);
}
.modal-container {width:100%;height:100%;overflow:hidden;margin:0 auto;padding:0;background: #252525;overflow-y: auto;list-style: none;}
.modal-container-in {width:;height:auto;overflow:hidden;margin:0;padding:10px;}


.css3-tab {
	list-style: none;
	margin: 0 auto;
	padding: 0;
	position: relative;
	width: 100%;
}
.css3-tab input[type='radio'] {
	display: none;
}

.css3-tab .css3-tab-nav {
	display: table;
	table-layout: fixed;
	width: 100%;
}
.css3-tab .css3-tab-nav label {
	display: table-cell;
	background-color: #2b2b2b;
	color: #999;
	font-size: 12px;
	padding: 10px;
	text-align: center;
	transition: all .3s ease 0s;
}
.css3-tab .css3-tab-nav label:hover {
	cursor: pointer;
	background: #444444;
	color: #FFFFFF;
	transition: all .3s ease 0s;
}
.css3-tab .css3-tab-content {
	overflow: hidden;
	padding: 10px;
	font-size: 12px;
	display: none;
	background: #1d1d1d;
	clear: left;
	color: #999;
	box-sizing: border-box;
}
.css3-tab-content ul{
	list-style:none;
	margin:0;
	padding:0;
}
.css3-tab-content li{
	margin: 0;
	padding:0;
	width: 50%;
	border : 0;
	float: left;
	/* font-size: 13px; */
	font-weight: 200;
	line-height: 20px;
	margin-bottom: 5px;
	color: #fdfdfd;
}
.css3-tab input[id='tabOne']:checked ~ .css3-tab-nav label[for='tabOne'] {
	background: #1d1d1d;
	color: #ddd;
	font-size: 12px;
	cursor: default;
}
.css3-tab input[id='tabOne']:checked ~ div.tab-one {
	display: block;
	/* border-top: solid 3px #b6ff00; */
	font-size: 12px;
}
.css3-tab input[id='tabTwo']:checked ~ .css3-tab-nav label[for='tabTwo'] {
	background: #1d1d1d;
	color: white;
	cursor: default;
}
.css3-tab input[id='tabTwo']:checked ~ div.tab-two {
	display: block;
	/* border-top: solid 3px red; */
}
.css3-tab input[id='addNew']:checked ~ .css3-tab-nav label[for='addNew'] {
	background: #1d1d1d;
	color: white;
	cursor: default;
}
.css3-tab input[id='addNew']:checked ~ div.add-new {
	display: block;
	/* border-top: solid 3px red; */
}

.pg_wrap{clear:both;margin: 0px;padding: 0;text-align:center;background: none;}
.pg{
    overflow: hidden;
}
/* .pg_page,.pg_current{display:inline-block;padding: 0 5px;height: 20px;color:#000;font-size: 12px;letter-spacing:0;line-height: 20px;vertical-align:middle;} */
/* .pg a:focus,.pg a:hover{text-decoration:none;color:#000} */
/* .pg a:link,.pg a:visited{text-decoration:none;color: #fff;background: #444;border-radius: 3px;} */
/* .pg_page{background:#e4eaec;text-decoration:none} */
/* .pg_start,.pg_prev{} */
/* .pg_end,.pg_next{} */
/* .pg_current{display:inline-block;color:#fff;border-radius: 3px;width: 30px;height: 28px;margin: 0 2px;line-height: 28px;font-family: NanumGothic;font-size: 12px;font-weight:normal;background:#014492;FILTER:progid:DXImageTransform.Microsoft.Gradient(gradientType=0,startColorStr=#014492,endColorStr=#2264B1);background:-ms-linear-gradient(top,#014492,#2264B1);background:-webkit-linear-gradient(top,#014492,#2264B1);background:-o-linear-gradient(top,#014492,#2264B1);} */
/* .pg_current{display:inline-block;color:#fff;border-radius: 3px;width: 30px;height: 28px;margin: 0 2px;line-height: 28px; font-family: 'Nanum Gothic', sans-serif !important; font-size: 12px;font-weight:normal;background:#014492;FILTER:progid:DXImageTransform.Microsoft.Gradient(gradientType=0,startColorStr=#014492,endColorStr=#2264B1);background:-ms-linear-gradient(top,#014492,#2264B1);background:-webkit-linear-gradient(top,#014492,#2264B1);background:-o-linear-gradient(top,#014492,#2264B1);} */

.text-stroke {
	color: #f00;
	text-shadow:
			-1px -1px 0 #000,
			1px -1px 0 #000,
			-1px 1px 0 #000,
			1px 1px 0 #000;
}
.white_content {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
	z-index: 1;
    background: rgba(0, 0, 0, 0.5);
    opacity:0;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    pointer-events: none;
}
.white_content:target {
    opacity:1;
    pointer-events: auto;
}
.white_content > div {
	position: absolute;
	text-align: center;
    top: 50%;
    left: 50%;
    margin: -175px -175px;
    width: 350;
    height: 150;
    padding: 10px;
    /* border: 16px solid orange; */
    background-color: #252525;
    overflow: hidden;
	box-shadow: 0px 0px 4px 3px #00000057;	
}

.modal_cont {}
.modal_cont ul {overflow: hidden;margin: 0;padding: 0;background: #353535;border-bottom: solid 1px #252525;}
.modal_cont ul li {list-style: none;color: #999;font-size: 12px;line-height: 35px;height: 35px;float: left;}
.modal_cont .subject_first {width: 100px;background: #151515;text-align: center;border-bottom: solid 3px #151515;}
.modal_cont .sub_li {background: #353535;border-bottom: solid 3px #353535;padding-left: 10px;height:auto;}
#money_btn {width:100%;padding:5;}
#money_btn a span{width: 11.99%;background: #d02323;margin: 0;}
/* .modal_cont .sub_li a span { */
    /* width: 30%; */
    /* background: #d02323; */
    /* margin: 5px 0; */
    /* padding: 0; */
/* } */
.small_div_line {}
.small_div_line ul {overflow: hidden;margin: 0;padding: 0;background: #353535;}
.small_div_line ul li {list-style: none;color: #999;font-size: 12px;line-height: 35px;height: 35px;float: left;}
.small_div_line .list_head {background: #151515;float: left;}

@media only screen and (min-width: 1300px) and (max-width: 1600px) {
	.md-modal { max-width:700px;}
}
@media only screen and (max-width: 769px) {
	#modal_charge {width:100%;height:560px;}
}
@media only screen and (max-width: 468px) {
	.md-modal {
	top: 5%;
	left:0;	
	min-width: 320px;
	-webkit-transform: translateX(0%) translateY(0%);
    -moz-transform: translateX(0%) translateY(0%);
    -ms-transform: translateX(0%) translateY(0%);
    transform: translateX(0%) translateY(0%);
	}
	#money_btn {padding-left: 5px;}
	#money_btn a span{width: 23.5%;}
	/* .modal-container {height: 500px;} */
	.modal-container {}
	.md-content > div {padding:0;margin:0}
	.small_div_line ul li {/* float:none; */text-align:center;}
	.css3-tab .css3-tab-nav {display: block;margin:0px;}
	.css3-tab .css3-tab-nav label {box-sizing: border-box;width: 33.3%;padding:10px;}
	.modal-container-in {padding:0px;}
}

@media only screen and (max-width: 321px) {
	#modal_charge {height: 480px;}
}