*{
	margin:0;
	padding:0;
	font-family: arial;
	-moz-user-select:-moz-none;
	-moz-user-select:none;
	-o-user-select:none;
	-khtml-user-select:none;
	-webkit-user-select:none;
	-ms-user-select:none;
	user-select:none;
	
	cursor: url("../img/cursor/static/normal_select.cur"), default;
}

html, body {
    height:100%;
} 

body{
	background:url(../img/others/background.jpg);
	background-repeat:no-repeat;
	display:none;
	overflow:hidden;
	background-position-x:center;
    background-size: 1425px;
}

body.loaded{
	display:block;
}

button{
	cursor: url("../img/cursor/static/link_select.cur"), default;
	background: url("../img/others/btn-bg.png");
	border-radius:5px;
	height:20px;
	border:1px solid #adadad;
	box-sizing: border-box;
	line-height:7px;
	outline:none;
	text-shadow:1px 1px 2px rgba(0,0,0,0.4);
	color:#313131;
	font-size:12px;
}

button:hover{
	background: url("../img/others/btn-bg-h.png");
}

button:active{
	text-shadow:1px 1px 2px rgba(0,0,0,0.4), -1px -1px 2px #fff;
}

button.warning{
	box-shadow: 0px 0px 10px 0px gold inset;
	-webkit-animation: warningButton 2s ease infinite;
	-moz-animation: warningButton 2s ease infinite;
	animation: warningButton 2s ease infinite;
}

@-webkit-keyframes warningButton {
    0%{box-shadow: 0px 0px 10px 0px gold inset}
    50%{box-shadow: 0px 0px 20px 0px gold inset}
    100%{box-shadow: 0px 0px 10px 0px gold inset}
}
@-moz-keyframes warningButton {
    0%{box-shadow: 0px 0px 10px 0px gold inset}
    50%{box-shadow: 0px 0px 20px 0px gold inset}
    100%{box-shadow: 0px 0px 10px 0px gold inset}
}
@keyframes warningButton { 
    0%{box-shadow: 0px 0px 10px 0px gold inset}
    50%{box-shadow: 0px 0px 20px 0px gold inset}
    100%{box-shadow: 0px 0px 10px 0px gold inset}
}

.scene{
	margin:0 auto;
	top:10px;
	width:-webkit-calc(100%-20px);
	height:760px;
	padding:20px;
	position:relative;
	overflow:hidden;
}

.arena{
	position: absolute;
	left: 50%;
	margin-left: -260px;
	width: 500px;
	height: 700px;
	z-index:0;
	box-shadow: 0px 0px 25px 3px #ddd inset, 0px 3px 7px -2px #444;
	padding:10px;
	border-radius:3px;
}

.log{
	background:rgba(90,90,90,0.5);
	position: absolute;
	left: 50%;
	margin-left: -251px;
	width:480px;
	height:180px;
	border-top:none;
	margin-top:-1px;
	padding:10px;
	margin-top:501px;
	z-index:-1;
	border-radius: 0px 0px 3px 3px;
}

.log .title{
	color:#fff;
}

.log .box{
	overflow:auto;
	height:145px;
    border-top: 1px solid #1d1d1d;
}

.arrow.left{ float:left; }
.arrow.right{ float:right;}

.arrow:hover{
	background:#bbb;
}

.enemy{
	background:rgba(90,90,90,0.5);
	position: absolute;
	width: 480px;
	margin-left: -1px;
	height: 480px;
	margin-top: -1px;
	padding: 10px;
	border-radius: 3px 3px 0px 0px;
}

.enemy .title{
	color:#fff;
}

.enemy .main{
	position:absolute;
	top:50px;
	width: 480px;
	height: 400px;
	background-color:#bbb;
	box-shadow: 0px 2px 2px 0px;
}

.enemy .main .monsterInfo{
	position: absolute;
	right: 10px;
    top: 10px;
	display:none;
	cursor: url("../img/cursor/static/link_select.cur"), default;
}

.monsterInfo.img{
	width:100%;
}

.monsterInfo.img img{
	margin-left:50%;
	transform:translateX(-50%);
}

.lootTitle{
	color: #5a6b9c;
	font-size:12px;
	font-weight: bold;
}

.lootItem{
	float:left;
	padding: 2px 0px;
	clear: both;
}

.mapName{
	position: absolute;
	top: 45px;
	left: 75px;
	font-weight: bold;
	font-size: 12px;
}

.mapImg{
	margin-bottom:10px;
	width: 40px;
	height: 40px;
	background-color: rgba(0,0,0,0.6);
	padding: 5px;
	border-radius: 5px;
	box-shadow: 0px 1px 5px rgba(0,0,0,0.9);
	background-repeat: no-repeat;
	background-position: center center;
}

.lootItem img {
	float:left;
}

.lootItem span{
	float:left;
	font-size:12px;
	line-height: 24px;
	margin-left:5px;
}

.mapItem{
	width: 100%;
	height: 20px;
	color:#fff;
}

.mapInfo{
	margin-left: 10px;
}

.enemy .main .monster{
	display: table-cell;
    vertical-align: middle;
	width:480px;
	height: 370px;
}

.actionButtons{
	position: absolute;
    padding: 0px 10px;
    bottom: 10px;
    box-sizing: border-box;
	width:calc(100% - 20px);
}

.actionButtons button{
	width:70px;
	float:right;
	margin:2px;
}

.actionButtons button:first-child{
	float:left;
}

.enemy .main .monster{
	display:none;
}

.arena .main .npc{
	position:absolute;
	top: 80px;
	left:250px;
	-webkit-filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.5));
}

.arena .main .illust{
	position:absolute;
	bottom: 0px;
	right:0px;
	max-height: 500px;
	z-index:20;
}

.arena .main .npc img{
	cursor: url("../img/cursor/static/link_select.cur"), default;
}

.npc .name{
	color:#94bdf7;
	text-shadow:1px 0px 0px #000, -1px 0px 0px #000, 0px 1px 0px #000, 0px -1px 0px #000;
	font-size: 11px;
    position: absolute;
    white-space: nowrap;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
	display:none;
	z-index:2;
}

.arena .main .npc:hover .name{
	display:block;
}

.enemy .main .monsterImg{
	/*margin-left: 150px;
	margin-right: auto;
	margin-top: 220px;*/
	
	/* margin-left: 150px; */
	margin-right: auto;
	/* margin-top: 220px; */
	position: absolute;
	left: 290px;
	bottom: 150px;
	-webkit-filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.5));
}

.statItem{
	margin:0;
	border-bottom:1px solid #bbb;
}

.logItem:nth-child(odd){
	background:rgba(255,255,255,0.1);
}

.logItem:nth-child(even){
	background:rgba(0,0,0,0.1);
}

.statItem:hover .desc{
    display:block;
}

.statItem .desc{
    width: 150px;
    background: #fff;
    position: absolute;
    top: 0;
    left: calc(100% + 10px);
    display: none;
    padding: 5px;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.9);
    border-radius: 2px;
}

.statItem .desc li:not(last-child){
    margin-bottom:5px;
}

.logItem{
	font-size:15px;
	text-shadow: 1px 1px 1px #000;
	height:18px;
}

.logItem.monsterAttack{
	color:#FF4040;
	animation: redLog 1s 1 ease-out;
	-webkit-animation: redLog 1s 1 ease-out;
	-moz-animation: redLog 1s 1 ease-out;
}

.logItem.playerAttack{
	color:#43FF43;
	animation: greenLog 1s 1 ease-out;
	-webkit-animation: greenLog 1s 1 ease-out;
	-moz-animation: greenLog 1s 1 ease-out;
}

.logItem.death{
	color:black;
	animation: blackLog 1s 1 ease-out;
	-webkit-animation: blackLog 1s 1 ease-out;
	-moz-animation: blackLog 1s 1 ease-out;
}

.logItem.victory{
	color:cyan;
	animation: blueLog 1s 1 ease-out;
	-webkit-animation: blueLog 1s 1 ease-out;
	-moz-animation: blueLog 1s 1 ease-out;
}

.logItem.startBattle{
	color:#FFF900;
	animation: blueLog 1s 1 ease-out;
	-webkit-animation: blueLog 1s 1 ease-out;
	-moz-animation: blueLog 1s 1 ease-out;
}

.logItem.loot{
	color:cyan;
	animation: yellowLog 1s 1 ease-out;
	-webkit-animation: yellowLog 1s 1 ease-out;
	-moz-animation: yellowLog 1s 1 ease-out;
}

@keyframes redLog {	0%{background: #FF8686;} 100%{background: transparent;} }
@-webkit-keyframes redLog {	0%{background: #FF8686;} 100%{background: transparent;} }
@-moz-keyframes redLog { 0%{background: #FF8686;} 100%{background: transparent;} }

@keyframes greenLog { 0%{background: #77FF7A;} 100%{background: transparent;} }
@-webkit-keyframes greenLog { 0%{background: #77FF7A;} 100%{background: transparent;} }
@-moz-keyframes greenLog { 0%{background: #77FF7A;} 100%{background: transparent;} }

@keyframes blackLog { 0%{background: #000;} 100%{background: transparent;} }
@-webkit-keyframes blackLog { 0%{background: #000;} 100%{background: transparent;} }
@-moz-keyframes blackLog { 0%{background: #000;} 100%{background: transparent;} }

@keyframes blueLog { 0%{background: #95E2D4;} 100%{background: transparent;} }
@-webkit-keyframes blueLog { 0%{background: #95E2D4;} 100%{background: transparent;} }
@-moz-keyframes blueLog { 0%{background: #95E2D4;} 100%{background: transparent;} }

@keyframes yellowLog { 0%{background: #FFFC7F;} 100%{background: transparent;} }
@-webkit-keyframes yellowLog { 0%{background: #FFFC7F;} 100%{background: transparent;} }
@-moz-keyframes yellowLog { 0%{background: #FFFC7F;} 100%{background: transparent;} }


.title{
	font-weight:bold;
	margin:0;
	margin-bottom:5px;
	color:#5a6b9c;
	font-family:calibri;
}

.alert{
	height:30px;
	padding:2px;
	position:absolute;
	left:50%;
	top:16%;
	min-width:150px;
	transform:translateX(-50%);
	background:#fff;
	z-index:101;
	border-radius:5px;
	box-shadow:0px 1px 5px rgba(0,0,0,0.9);
	animation: alert 3s 1 ease-in;
	-webkit-animation: alert 3s 1 ease-in;
	-moz-animation: alert 3s 1 ease-in;
	opacity:0;
	display:none;
}

.alert:last-child{
	display:block;
}

@keyframes alert { 0%{transform:translateX(-50%);} 20%{opacity:1;} 80%{opacity:1;} 100%{transform:translateX(-50%) translateY(-100px); opacity:0;} }
@-webkit-keyframes alert { 0%{transform:translateX(-50%);} 20%{opacity:1;} 80%{opacity:1;} 100%{transform:translateX(-50%) translateY(-100px); opacity:0;} }
@-moz-keyframes alert { 0%{transform:translateX(-50%);} 20%{opacity:1;} 80%{opacity:1;} 100%{transform:translateX(-50%) translateY(-100px); opacity:0;} }

.alert img{
	position:absolute;
	left:6px;
	top:4px;
}

.alert .content{
	padding:5px 35px;
	border:1px solid #c6c6c6;
	border-radius:5px;
	text-align:center;
	color:#000;
	text-shadow:1px 1px 1px rgba(0,0,0,0.4);
	font-size:14px;
	line-height:20px;
	height:18px;
	font-family:calibri;
}

.alert .error{
	color:#ff0000;
	font-family:calibri;
	font-size:14px;
}

.combat{
	padding:2px;
	position:absolute;
	border:1px solid #000;
	height:30px;
	bottom:2px;
	margin-left: 45px;
	width: 404px;
}

.combatItem{
	float:left;
	border:1px solid #000;
	margin:2px;
	padding:2px;
	cursor:pointer;
}

.boxInfo{
	background:rgba(255,255,255,1);
	width:221px;
	padding:10px;
	padding-top:25px;
	margin-bottom:5px;
	clear:right;
	transition:opacity 0.2s ease;
	-webkit-transition:opacity 0.2s ease;
	-moz-transition:opacity 0.2s ease;
	position:relative;
	z-index:2;
	display:none;
	position:absolute;
	box-shadow:0px 2px 4px rgba(0,0,0,0.9);
	border-radius:4px 4px 4px 4px;
	border:1px solid #cecece;
}

.boxInfo.minimize{
	height: 0px !important;
    padding-top: 5px;
    overflow: hidden;
	z-index:1;
}

.boxInfo.minimize ul{
	margin-top:25px;
}

.boxInfo.minimize .content{
	display:none;
}

.boxInfo.playerInfo{top:70px; left:20%;}
.boxInfo.playerStats{top:355px; left:20%;}
.boxInfo.playerEquip{top:70px; right:20%;}
.boxInfo.playerInventory{top:330px; right:20%;}
.boxInfo.mapAbout{ left:50%; margin-left:-110px; top:20%; }

.boxInfo.monsterStats{top:150px; right:25%;}

.boxInfo.dialogOptions{
	top:210px; left:50%; margin-left:-340px;
}

.boxInfo.quests, .boxInfo.skills{
	top:250px;
	left:50%;
	margin-left:-200px;
	width: 400px;
	height: 301px;
}

.boxInfo.skills{
	width:325px;
	height:150px;
}

.boxInfo.macros, .boxInfo.importExport{
	top:210px; left:50%; margin-left:-135px;
	width:270px;
}

.boxInfo.importExport{z-index:999}

.boxInfo.dialogConfirm{
	width:auto !important;
	z-index:99999999;
}

.dialogConfirmMask{
	position:fixed;
	width:100%;
	height:100%;
	z-index:9999999;
	background:rgba(0,0,0,0.7);
	display:none;
	top:0;
	left:0;
}

.boxInfo.options{top:250px; left:50%; margin-left:-125px; z-index:9999;}

.boxInfo.insertCard{
	top:350px; left:50%; margin-left:-115px; width:240px;
}

.boxInfo.shop{
	width:300px;
	top:185px; left:50%; margin-left:-220px;
}

.curZeny{
	float:right;
}

.boxInfo.options ul li{
	margin:5px 0px;
}

.boxInfo.mapAbout ul *{
	font-size:12px;
	cursor: url("../img/cursor/static/link_select.cur"), default;
}

.boxInfo.mapAbout .content
{
	max-height: 400px;
	overflow-y: auto;
}
.boxInfo.mapAbout ul li{
	padding:5px;
}

.boxInfo.mapAbout ul li:hover{
	background: #ccdeff;
}

.boxInfo.mapAbout ul li .extra{
	padding:0;
}

.boxInfo.mapAbout ul li .name{ padding:0; }
.boxInfo.mapAbout ul li .level{ float:right; }
.boxInfo.mapAbout ul li .density{  }

.boxInfo.mapAbout ul li{
	border-top:1px solid #ccc;
}

.boxInfo.options button{
	width:100%;
}

.boxInfo.active{
	display:block;
}

.boxInfo p.info{
	position:absolute;
	width: calc(100% + 2px);
	border-top:1px solid #8494ce;
	border-right:1px solid #8494ce;
	border-bottom:1px solid #000;
	left:-1px;
	top:-1px;
	box-sizing: border-box;
	border-radius:4px 4px 0px 0px;
	padding:2px 18px;
	font-size:12px;
	height:17px;
	line-height: 12px;
	background: url("../img/others/infoBall.png"), url("../img/others/infobg.png");
	background-repeat: no-repeat, repeat;
	background-position: 5px 2px, 0px 0px;
	text-shadow:1px 1px #fff;
}

.boxInfo p.info img{
	top:3px;
	position:absolute;
	cursor: url("../img/cursor/static/link_select.cur"), default;
}

.boxInfo p.info img.close{
	right:3px;	
}

.boxInfo p.info img.minimize{
	right:18px;	
}

.boxInfo.activeDrag{
	opacity:0.7;
}

.boxInfo ul{
	margin:0;
	padding:0;
}

.boxInfo.insertCard, .boxInfo.shop, .boxInfo.dialogOptions, .boxInfo.dialogConfirm, .boxInfo.macros, .boxInfo.importExport{
	padding:0;
}

.boxInfo.insertCard .info, .boxInfo.shop .info, .boxInfo.dialogOptions .info, .boxInfo.dialogConfirm .info{
	z-index:3;
}

.boxInfo.shop .content{
	height:250px;
	overflow:auto;
	padding-bottom:15px;
}

.boxInfo.insertCard .content{
	height:150px;
	overflow:auto;
	padding-bottom:15px;
}

.boxInfo.insertCard .content ul, .boxInfo.shop .content ul{
    padding: 0px 5px;
    padding-top: 30px;
}

.boxInfo.dialogOptions .content ul, .boxInfo.dialogConfirm .content ul{
	padding: 0px 5px;
}

.boxInfo.insertCard .content ul li, .boxInfo.shop .content ul li{
	padding:10px;
	position:relative;
}

.boxInfo.dialogOptions .content ul, .boxInfo.dialogConfirm .content ul{
	max-height: 95px;
    overflow: auto;
	margin-bottom:5px;
}

.boxInfo.dialogOptions .content ul li.dialogItem{
	font-size:12px;
	padding:5px;
}

.boxInfo.dialogOptions .content .message{
	border: 1px solid #cecece;
    margin: 5px;
    margin-top: 22px;
    padding: 5px;
    border-radius: 5px;
    font-size: 12px;
}

.boxInfo.dialogConfirm .content .message, .boxInfo.importExport .content .message{
    margin: 5px;
    margin-top: 22px;
    padding: 15px 10px;
    border-radius: 5px;
    font-size: 12px;
}

.boxInfo.macros .message{
	border-bottom: 1px solid #cecece;
    margin: 5px;
    margin-top: 22px;
    padding: 5px;
    font-size: 12px;
}

.boxInfo.dialogOptions .content .message p, .boxInfo.dialogConfirm .content .message p{
	padding: 3px 0px;
}

.boxInfo.insertCard .content ul li.selected, .boxInfo.shop .content ul li.selected{
	background: #739cef;
}

.boxInfo.dialogOptions .content ul li.selected{
	background: #ccdeff;
}

.boxInfo.insertCard .content ul li img{
	top: 8px;
	left: 3px;
    position: absolute;
}

.boxInfo.shop .content ul li img{
	top: 8px;
	left: 24px;
    position: absolute;
}

.boxInfo.insertCard .content ul li span{
	margin-left:30px;
	font-size:12px;
}

.boxInfo.shop .content ul li span.name{
	margin-left:50px;
	font-size:12px;
}

.boxInfo.shop .content ul li span.qnt{
	font-size:10px;
}

.boxInfo.shop .content ul li span.value{
	font-size:12px;
	float:right;
	margin-top: 3px;
}

.boxInfo.insertCard .buttons,
.boxInfo.shop .buttons,
.boxInfo.dialogOptions .buttons,
.boxInfo.macros .buttons,
.boxInfo.dialogConfirm .buttons,
.boxInfo.importExport .buttons{
	border-top:1px solid #cecece;
	height: 30px;
}

.boxInfo.shop .buttonsQnt{
	height:30px;
}

.boxInfo.shop .buttonsQnt .qnt{
	width: 40px;
    float: right;
    display: none;
    margin-right: 10px;
    margin-top: 6px;
    border: none;
    background: #efefef;
    padding: 2px;
	outline:none;
}

.boxInfo.shop .buttonsQnt button{
	display:none;
}

.boxInfo.insertCard .buttons button,
.boxInfo.shop .buttons button,
.boxInfo.shop .buttonsQnt button, 
.boxInfo.dialogOptions .buttons button,
.boxInfo.dialogConfirm .buttons button,
.boxInfo.macros .buttons button,
.boxInfo.importExport .buttons button
{
	width:50px;
	float:right;
	margin:5px;
	margin-left:0;
}

.boxInfo.shop .buttons .zenyShop, .boxInfo.shop .buttons .zenyCur{
	float:left;
	font-size:12px;
	margin-top: 9px;
    margin-left: 9px;
}

.boxInfo.shop .buttons .zenyShop{
	clear:both;
}

ul li{
	list-style:none;
}

.playerStats .statItem, .playerEquip .equipItem, .monsterItem{
	width:100%;
	margin-bottom:5px;
	border-bottom:1px solid #bbb;
	height:20px;
	font-size:13px;
}

.playerStats .statItem.lst{
	border-bottom:1px solid transparent;
}

.monsterItem{
	min-width:200px;
}

.monsterItem span.left{
	line-height:normal;
}

.playerStats .statItem, .playerEquip .equipItem .equip{
	font-size:12px;
	line-height: 16px;
}

.playerInfoList li .info{
	line-height: 20px;
	font-size:12px;
}

.playerStats .statItem .point, .playerStats .statItem .cost, .playerStats .statItem .add, .playerEquip .equipItem .equip, ul li span.right{
	float:right;
}

.playerStats .statItem .point{
	margin-right:20px;
}

.playerStats .statItem .bonus{
	position:absolute;
	margin-right:10px;
	left:180px;
	font-size:10px;
}

.playerStats .statItem .cost{
	margin-left:2px;
	margin-top:1px;
	font-size:10px;
	width: 10px;
}

ul li  .label, ul li span.left{
	float:left;
	font-size:13px;
	line-height: 20px;
}

ul li.monsterItem  .label{
	line-height:16px;
}

.playerStats .statItem div.add{
	border: 1px solid #bbb;
	border-bottom:none;
	border-top:none;
	padding: 0 2px;
	margin-left: 5px;
	height: 27px;
	margin-top:-6px;
	width: 15px;
	text-align: center;
	padding: 0;
	line-height: 15px;
	position:relative;
}

.playerStats .statItem div.add .arrowst{
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 4px;
	border-color: #97ABFF #97ABFF transparent transparent;
	transform: rotate(45deg);
	position: absolute;
	cursor: url("../img/cursor/static/link_select.cur"), default;
	top:9px;
	left:1px;
}

.boxInfo.playerInventory{
	margin-bottom:0px !important;
	height: 266px;
	width: 230px;
}

.boxInfo.playerInventory table{
	border-collapse:collapse;
}

.boxInfo.playerInventory .header{
	width:208px;
	font-size:12px;
	text-align:left;
}

.boxInfo.playerInventory .content{
	height:210px;
	overflow-y:auto;
	overflow-x:visible;
	border-bottom: 1px solid #cecece;
}

.boxInfo.playerInventory .sell, .macro{
	margin-top:10px;
	cursor: url("../img/cursor/static/link_select.cur"), default;
	background: url("../img/others/btn-bg2.png");
	height:26px;
	width: 140px;
	border: 1px solid #adadad;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
    color: #313131;
    font-size: 12px;
	border-radius: 5px;
	box-sizing: border-box;
	float:right;
}

.boxInfo.playerInventory .macro
{
	width: 80px;
    margin-left: 10px;
}

.boxInfo.playerInventory .sell:hover, .boxInfo.playerInventory .macro:hover{
	background: url("../img/others/btn-bg-h2.png");
}

.boxInfo.playerInventory .sell *, .boxInfo.playerInventory .macro *{
	float:left;
	font-size:12px;
	cursor: url("../img/cursor/static/link_select.cur"), default;
}

.boxInfo.playerInventory .sell p, .boxInfo.playerInventory .macro p{
	margin-top:6px;
}

.boxInfo.playerInventory .content .itemInv{
	background: #f1f1f1;
    border-radius: 3px;
    width: 25px;
    height: 25px;
    float: left;
    margin: 5px;
    border-radius: 50%;
}

.boxInfo.playerInventory .content .itemInv.selected{
	background: #ccdeff;
}

.hoverName, .skillName
{
	padding: 5px;
    font-size: 11px;
    position: absolute;
    background: rgba(0,0,0,0.5);
    text-shadow: 1px 1px 1px #000;
    color: #fff;
	display:none;
	white-space: nowrap;
	pointer-events: none;
	margin-top:-15px;
}

.itemInv:hover .hoverName {
	display:block;
	z-index:3;
}

.boxInfo.playerEquip .equipItem .itemEquip{
	width:24px;
	height:24px;
	float:right;
	margin-top:-4px;
	margin-left: 5px;
}

.boxInfo.playerEquip .equipItem .itemEquip:hover .hoverName{
	display:block;
}


.boxInfo.playerInventory .content .itemInv img, .boxInfo.playerEquip .equipItem .itemEquip img{ 
	cursor: url("../img/cursor/static/link_select.cur"), default;
}

.itemInv .amount, .skillBar .amount
{
	float:right;
	margin-top:-10px;
	text-shadow:1px 0px 0px #fff, -1px 0px 0px #fff, 0px 1px 0px #fff, 0px -1px 0px #fff;
	font-family: Lucida Console;
	font-size: 10px;
}

.playerInfoList li{
	height:20px;
	border-bottom:1px solid #bbb;
}

.playerInfoList li .info{
	float:right;
}

.debug{
	display:none;
}

.contextMenu, .contextCard{
	position:absolute;
	border:1px solid #bbb;
	z-index:4;
	border-radius:6px;
	background:#fff;
	box-shadow: 0px 2px 4px rgba(0,0,0,0.9);
	padding:2px;
	display:none;
	min-width:150px;
	transition:opacity 0.2s ease;
	-webkit-transition:opacity 0.2s ease;
	-moz-transition:opacity 0.2s ease;
}

.contextMenu.activeDrag, .contextCard.activeDrag{
	opacity:0.7;
}
.contextMenu .content, .contextCard .content{
	border:1px solid #c6c6c6;
	border-radius:5px;
	padding:5px;
}

.contextMenu .slots{
	position:absolute;
	bottom: -35px;
	height:27px;
	padding:2px;
	position:absolute;
	background:#fff;
	border-radius:5px;
	width: 100%;
    box-sizing: border-box;
    left: 0;
	box-shadow: 0px 2px 4px rgba(0,0,0,0.9);
}

.contextMenu .slots .slot{
	float:left;
	background: url(../img/others/slot2.gif);
	width:18px;
	height:13px;
	margin-left: 5px;
    margin-top: 4px;
}

.contextMenu .slots .slot.open{
	background: url(../img/others/slot.gif);
}

.contextMenu .slots .slot.card{
	background: url(../img/item/card.gif);
	background-position: -3px;
}

.contextMenu .slots .slot.card:hover .hoverName{
	display:block;
	margin-top: -25px;
}

.contextMenu .slots .cont{
	border:1px solid #c6c6c6;
	border-radius:5px;
	height:100%;
	box-sizing: border-box;
}

.slotNum{
	position:absolute;
	color:#333;
	font-size:12px;
	padding:5px;
}

.contextMenu  p, .contextCard p{
	margin-bottom:5px;
	font-size:11px;
}

.contextMenu p.title, .contextCard p.title{
	border-bottom:1px solid #999;
	font-size:12px;
	padding-top: 3px;
    padding-bottom: 7px;
	padding-right:34px;
}

.contextMenu .close, .contextCard .close{
	position:absolute;
	top: 3px;
    right: 3px;
	cursor: url("../img/cursor/static/link_select.cur"), default;
}

.contextMenu .content img, .contextCard .content img{
	position:absolute;
	right: 15px;
    top: 7px;
}

.contextMenu  p .value, .contextCard p .value{
	color:#999;
}

.contextMenu button, .contextCard button{
	width:100%;
	margin-bottom:2px;
	font-size:11px;
}

.hpBar, .spBar{
	width:58px;
	height:3px;
	background:#10189c;
	padding:1px;
	margin-top: 10px;
	margin-left:150px;
	position:relative;
	margin-top:105px;
}

.spBar{
	margin-top: -1px;
}

.hpBar.monsterBar{
	position:absolute;
	right: 140px;
	bottom: 136px;
}

.hpBar .hpLeft, .spBar .spLeft{
	width:100%;
	height:3px;
	background:#10ef21;
	float:left;
	transition:1s all ease;
}
.spBar .spLeft{
	background: #1c5ebb;
}

.hpBar .hpLost, .spBar .spLost{
	width:100%;
	height:3px;
	background:#424142;
}

.screenHpBar{
	position:absolute;
	right:5px;
	color:#fff;
	text-align:right;
	top:5px;
	font-size:12px;
}

.modalChar{
	position:absolute;
	width:490px;
	top:150px;
	left:50%;
	margin-left:-250px;
	height:320px;
	background:#fff;
	box-shadow:0px 4px 10px 1px #000;
	padding:5px;
	border:1px solid #000;
	z-index:100;
	border-radius:5px;
}

.modalChar .title{
	margin-left:10px;
	margin-top:5px;
	font-size:16px;
}

.modalChar .slotContent{
	width:480px;
	height:150px;
}

.modalChar .slotContent .slotArrow{
	position:absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px;
    border-color: #97ABFF #97ABFF transparent transparent;
    cursor: url("../img/cursor/static/link_select.cur"), default;
	top:100px;
	display:none;
}

.modalChar .slotContent .slotArrow.leftSlot{
	left:5px;
	transform:rotate(225deg);
}

.modalChar .slotContent .slotArrow.rightSlot{
	right:5px;
	transform:rotate(45deg);
}

.modalChar .slotContent .slot{
	width:146px;
	height:146px;
	margin-left:10px;
	float:left;
	border:2px solid #dbddea;
	border-radius:3px;
	cursor: url("../img/cursor/static/link_select.cur"), default;
	display:none;
}

.modalChar .slotContent .slot.show{
	display:block;
}

.selection .statsTable{
	display:none;
	position:absolute;
	bottom:48px;
	left:15px;
	width:300px;
	font-size:12px;
	border-spacing: 1px;	
}

.selection .statsTable td:nth-child(3), .selection .statsTable td:nth-child(1){
	font-weight: bold;
	background:#C6CFE7;
	width:50px;
	color:#213863;
	padding-left:5px;
	text-align: left;
}
.selection .statsTable td:nth-child(2), .selection .statsTable td:nth-child(4){
	width:95px;
	background:#EFEFF7;
	padding-left:5px;
	text-align: left;
}

.btnModal{
	margin-top: 113px;
	margin-left:10px;
	width:110px;
	padding:5px;
}

.btnModal:not(first-child){
	margin-right: -4px;
}

.btnModal.delete, .btnModal.play{
	display:none;
}


.btnModal.left{
	float:left;
	margin:5px;
}

.creation{
	display:none;
}

.creation .charContent{
	height: 146px;
    width: 37px;
    position: relative;
    margin-left: 350px;
    margin-top: 117px;
}

.creation .statsTable{
	position:absolute;
	top:20px;
	right:20px;
	width:150px;
	font-size:12px;
	border-spacing: 1px;	
}

.creation .statsTable td:first-child{
	font-weight: bold;
	background:#C6CFE7;
	width:50px;
	color:#213863;
	padding-left:5px;
}
.creation .statsTable td:last-child{
	background:#EFEFF7;
	text-align: center;
}

.creation .charContent .head{
	width: 29px;
	height: 27px;
	position:absolute;
	background-image:url("../img/char/head1.png");
	background-position: -10px -11px;
	z-index:5;
	margin-left: 2px;
}
.creation .charContent .body{
	width: 36px;
	height: 72px;
	position: absolute;
	background-image:url("../img/char/0x00000001.png");
	background-position: 0px -1px;
	z-index:4;
	margin-top: 20px;
}

.btnHair{
	width:70px;
	left:-17px;
	top: 10px;
	position:absolute;
	z-index:2;
}

.btnHair .btnNext{
	float:right;
	width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px;
    border-color: #97ABFF #97ABFF transparent transparent;
    transform: rotate(45deg);
    cursor: url("../img/cursor/static/link_select.cur"), default;
    top: 9px;
    left: 1px;
}

.btnHair .btnPrev{
	float:left;
	width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px;
    border-color: #97ABFF #97ABFF transparent transparent;
    transform: rotate(225deg);
    cursor: url("../img/cursor/static/link_select.cur"), default;
    top: 9px;
    left: 1px;
}

.charInfo{
	float:left;
	margin:5px;
}

.charInfo .name{
	width: 143px;
    padding: 2px 3px;
    border: 1px solid #bbb;
    border-radius: 3px;
    margin-left: 5px;
}

.charInfo h3{
	font-size:13px;
}

.mask{
	position:fixed;
	width:100%;
	height:100%;
	z-index:99;
	/*background:#fff;*/
	background:url(../img/others/login.jpg);
	opacity:1;
}

.mask .logo{
	margin:20px;
	-webkit-filter: drop-shadow(5px 5px 15px rgba(0,0,0,0.9)) blur(0px);
  	filter: drop-shadow(5px 5px 15px rgba(0,0,0,0.9));
    width:230px;
}

/*hexagon*/

.statsHexagon{
	width:250px;
	height:250px;
	position:absolute;
	left:0;
	top:0;
}

.hexAtrib .desc{
	position:absolute;
	display:none;
	z-index:10;
	width:150px;
	background:#fff;
	left:50px;
	text-align:left;
	padding:5px;
    box-shadow:0px 2px 4px rgba(0,0,0,0.9);
}

.hexAtrib:hover .desc{
	display:block;
}

.hexAtrib .desc li:not(last-child){
    margin-bottom:5px;
}

.hexAtrib span{
	position:absolute;
	z-index:2;
	cursor: url("../img/cursor/static/link_select.cur"), default;
}

.hexAtrib .triangle{
	position:absolute;
	z-index:1;
	width: 0; 
	height: 0; 
	border-left: 18px solid transparent;
	border-right: 18px solid transparent;
	
	border-bottom: 35px solid #8B92A5;
	bottom:0;
	left:-6px;
	cursor: url("../img/cursor/static/link_select.cur"), default;
}

.hexAtrib .triangle:after{
	content: "";
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-bottom: 35px solid #C6CFE7;
    position: absolute;
    top: 0px;
    left: -17px;
	-webkit-filter: blur(2px);
}

.hexAtrib.str .triangle{
	top:-22px;
	left:-6px;
}

.hexAtrib.int .triangle{
	transform:rotate(180deg);
	top:0;
	left:-8px;
}

.hexAtrib.agi .triangle{
	transform:rotate(300deg);
	bottom:-22px;
	left:-12px;
}

.hexAtrib.vit .triangle{
	transform:rotate(60deg);
	bottom:-20px;
	left:-3px;
}

.hexAtrib.dex .triangle{
	transform:rotate(240deg);
	top:-10px;
	left:-10px;
}

.hexAtrib.luk .triangle{
	transform:rotate(120deg);
	top:-10px;
	left:0px;
}

.hexAtrib{
	position:absolute;
	font-size:12px;
	text-align:center;
	
	font-weight: bold;
    color: #213863;
}

#svg{
	margin:50px 53px;
	margin-bottom:0;
}

.hexAtrib.str{
	top: 43px;
	left: 141px;
}

.hexAtrib.int{
	top: 244px;
	left: 144px;
}

.hexAtrib.agi{
	top: 90px;
	left: 50px;
}

.hexAtrib.dex{
	top: 200px;
	left: 48px;
}

.hexAtrib.vit{
	top: 90px;
	left: 234px;
}

.hexAtrib.luk{
	top: 200px;
	left: 232px;
}

.noChar{
	position: absolute;
	width: 100px;
	left: 50%;
	top: 100px;
	margin-left: -50px;
	display:none;
}

.slot .charContent{
	height: 92px;
	width: 37px;
	position:relative;
	margin-left: 55px;
	margin-top: 30px;
	cursor: url("../img/cursor/static/link_select.cur"), default;
}

.slot .charContent .head{
	width: 29px;
	height: 27px;
	position:absolute;
	background-image:url("../img/char/head1.png");
	background-position: -10px -11px;
	z-index:5;
	margin-left: 2px;
	cursor: url("../img/cursor/static/link_select.cur"), default;
}
.slot .charContent .body{
	width: 36px;
	height: 72px;
	position: absolute;
	background-position: -1px 0px;
	z-index:4;
	margin-top: 20px;
	cursor: url("../img/cursor/static/link_select.cur"), default;
}

/*jobs*/

/*Novice*/
.slot .charContent.class_0x00000001 .body{
	background-image: url("../img/char/0x00000001.png");	
}

/*Swordman*/
.slot .charContent.class_0x00000002 .body{
	background-image: url("../img/char/0x00000002.png");
	background-position: -1px -3px;
	width: 36px;
	top: 2px;
}
	
/*end jobs*/

.slot .name{
	text-align: center;
	margin-top: 6px;
	overflow: hidden;
	height: 14px;
	font-size:12px;
}

.slotContent .slot.selected{
	background:#fff;
	border-color:#476BC1;
}

/*battle animation*/

.battleAnimation{
	position:relative;
	width:51px;
	height:90px;
}

.player{
	position: absolute;
	top: 155px;
}

.player .emotion{
	position:absolute;
	bottom:90px;
	right:40px;
	animation: emotion 2s 1 linear;
	-webkit-animation: emotion 2s 1 linear;
	-moz-animation: emotion 2s 1 linear;
}

@keyframes emotion { 0%{ opacity:0; } 30%{ opacity: 1; } 60%{ opacity: 1; } 100%{ opacity:0;} }
@-webkit-keyframes emotion { 0%{ opacity:0; } 30%{ opacity: 1; } 60%{ opacity: 1; } 100%{ opacity:0;} }
@-moz-keyframes emotion { 0%{ opacity:0; } 30%{ opacity: 1; } 60%{ opacity: 1; } 100%{ opacity:0;} }

#sprite .kineticjs-content{
	-moz-transform: scaleX(-1);
	-o-transform: scaleX(-1);
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
	filter: FlipH;
	-ms-filter: "FlipH";
	-webkit-filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.5));
}

#sprite{
	position: absolute;
    right: 0;
}

.player .playerImg{
	margin-left: 155px;
	height:90px;
	width:65px;
	margin-top: 4px;
	position:absolute;
}

.player .playerImg .body, .player_s .body{
    width: 56px;
    height: 57px;
    background-position: -296px -26px;
    margin-top: 23px;
    position: absolute;
	-webkit-filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.5));
}

.player .playerImg.dead .body{
	width: 65px;
	height: 53px;
	background-position: -724px -430px;
}

.player .playerImg .head, .player_s .head{
	background-image:url("../img/char/head1.png");
	width: 29px;
	height: 40px;
	background-position: -49px -8px;
	margin-left: 18px;
	position:absolute;
}

.player .playerImg.dead .head{
	background-image:url("../img/char/head1.png");
	width: 30px;
	height: 25px;
	margin-top: 21px;
	margin-left: 34px;
	background-position: -561px -10px;
}

/* jobs */

/* Novice */
.player .playerImg.class_0x00000001 .body, .player_s.class_0x00000001 .body{
	background-image: url("../img/char/0x00000001.png");
	background-position: 1735px -1px;
}

.player .playerImg.class_0x00000001.dead .body{
	background-position: 1735px -1px;
}

.player .playerImg.class_0x00000001.dead .body{
	background-position: 269px -3px;
}

/* Swordman */
.player .playerImg.class_0x00000002 .body, .player_s.class_0x00000002 .body{
	background-image: url("../img/char/0x00000002.png");
	background-position: 2851px -2px;
	top: 20px;
	left: 3px;
}

.player .playerImg.class_0x00000002.dead .body{
	background-position: 1391px -3px;
	width: 73px;
}

.player .playerImg.class_0x00000002 .head, .player_s.class_0x00000002 .head{
	top: 20px;
}

.player .playerImg.class_0x00000002.dead .head{
	margin-left: 43px;	
}

/* end jobs*/

.expInfo{
	position:absolute;
	bottom:2px;
	left:2px;
}

.expInfo .lvBar, .expInfo .jobBar {
	float:right;
}

.jobBar{
	margin-left:5px;
}

.expInfo .expBar{
	width: 474px;
	height:	6px;
	background:rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.6);
	position:relative;	
}

.expInfo .expBar:last-child{
	border-top:none;
}

.expInfo .expBar:last-child{
	padding-top:0;
}

.expInfo .expBar .expEarned{
	position:absolute;
	width:0%;
	height:6px;
	background: rgba(84,84,255,1);
	background: linear-gradient(237deg, #2085d7, #00b3d0);
	-webkit-animation: expBarAnim 2s ease infinite;
	-moz-animation: expBarAnim 2s ease infinite;
	animation: expBarAnim 2s ease infinite;
	background-size: 400% 400%;
	transition:1s all ease-out;
}

.expInfo .expBar .jobEarned{
	position:absolute;
	width:20%;
	height:6px;
	background: rgba(210,255,150,1);
	background: linear-gradient(237deg, #6dea49, #aaff00);
	-webkit-animation: expBarAnim 2s ease infinite;
	-moz-animation: expBarAnim 2s ease infinite;
	animation: expBarAnim 2s ease infinite;
	background-size: 400% 400%;
	transition:1s all ease-out;
}

@-webkit-keyframes expBarAnim {
    0%{background-position:94% 0%}
    50%{background-position:7% 100%}
    100%{background-position:94% 0%}
}
@-moz-keyframes expBarAnim {
    0%{background-position:94% 0%}
    50%{background-position:7% 100%}
    100%{background-position:94% 0%}
}
@keyframes expBarAnim { 
    0%{background-position:94% 0%}
    50%{background-position:7% 100%}
    100%{background-position:94% 0%}
}

.barContent:hover .expTooltip{
	display:block;
}

.expTooltip{
	background: #fff;
    color: #000;
    width: 120px;
    z-index: 1;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
	font-size:12px;
	display:none;
	box-shadow:0px 2px 4px rgba(0,0,0,0.9);
	border-radius:2px;

	-webkit-animation: toolTipFloat 1.5s ease-out infinite;
	-moz-animation: toolTipFloat 1.5s ease-out infinite;
	animation: toolTipFloat 1.5s ease-out infinite;
}

.expTooltip::after{
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    bottom: -10px;
    left: 50%;
    box-sizing: border-box;
    
    border: 5px solid black;
	margin-left:-5px;
    border-color: transparent transparent #fff #fff;
    
    transform-origin: 0 0;
    transform: rotate(-45deg);
    
    box-shadow: -3px 3px 3px 0 rgba(0, 0, 0, 0.6);
}

@-webkit-keyframes toolTipFloat {
    0%{bottom: 30px}
    50%{bottom: 35px}
    100%{bottom: 30px}
}
@-moz-keyframes toolTipFloat {
    0%{bottom: 30px}
    50%{bottom: 35px}
    100%{bottom: 30px}
}
@keyframes toolTipFloat { 
    0%{bottom: 30px}
    50%{bottom: 35px}
    100%{bottom: 30px}
}


.expTooltip li{
	padding: 5px;
}

.expTooltip li span{
	float:right;
}

.expTooltip li:last-child{
	padding-top:0;
}

.expInfo .expLabel{
	color:#fff;
	font-size: 12px;
	text-shadow: 1px 1px 1px #000;
	padding: 0px 5px;
}

.expInfo .lvlUp, .expInfo .jobUp{
	text-align: center;
	color: #fff;
	position: absolute;
	top: -7px;
	width: 100%;
	font-size: 20px;
	text-shadow: 0px 2px 1px #000;
	transition:1s all ease-out;
	opacity:0;
}

.expInfo .lvlUp.active, .expInfo .jobUp.active{
	top: -30px;
	opacity:1;
}

.expInfo .lvlUp.active2, .expInfo .jobUp.active2{
	top: -60px;
	opacity:0;
}

.damage{
	text-shadow: 0 0 4px black, 0 0 4px black, 0 0 4px black, 0 0 4px black, 0 0 4px black, 0 0 4px black, 0 0 4px black, 0 0 4px black, 0 0 4px black, 0 0 4px black, 0 0 4px black, 0 0 4px black, 0 0 4px black, 0 0 4px black, 0 0 4px black, 0 0 4px black, 0 0 4px black, 0 0 4px black, 0 0 4px black, 0 0 4px black;
	color:#fff;
	width:100px;
	height:58px;
	position:absolute;
	top:-60px;
}

.damage .dd{
	position:absolute;
	text-align:center;
	width:68px;
	height:58px;
	line-height:65px;
	opacity:0;
}

.damage.critical .dd{
	color:yellow;
	background-image: url(../img/others/critical.png);
}

.hpBar.playerBar .damage{ 
	right:0;
	animation: damageRight 1s 1 linear;
	-webkit-animation: damageRight 1s 1 linear;
	-moz-animation: damageRight 1s 1 linear;
	transform-origin: 50% 50%;
}
.hpBar.monsterBar .damage{
	left:0;
	animation: damageLeft 1s 1 linear;
	-webkit-animation: damageLeft 1s 1 linear;
	-moz-animation: damageLeft 1s 1 linear;
	transform-origin: 50% 50%;
}

.hpBar.playerBar .damage .dd{
	top: 0px; right:-40px;
	animation: damageRight2 1s 1 linear;
	-webkit-animation: damageRight2 1s 1 linear;
	-moz-animation: damageRight2 1s 1 linear;
}
.hpBar.monsterBar .damage .dd{
	top: 0px; left:-40px;
	animation: damageLeft2 1s 1 linear;
	-webkit-animation: damageLeft2 1s 1 linear;
	-moz-animation: damageLeft2 1s 1 linear;
}

@keyframes damageLeft { 0%{ transform: rotate(0deg);} 100%{transform: rotate(180deg);} }
@-webkit-keyframes damageLeft { 0%{ transform: rotate(0deg);} 100%{transform: rotate(180deg);} }
@-moz-keyframes damageLeft { 0%{ transform: rotate(0deg);} 100%{transform: rotate(180deg);} }

@keyframes damageLeft2 { 0%{opacity:0; transform:scale(2) rotate(0deg);} 50%{opacity:1; transform:scale(1.2) rotate(-90deg);} 100%{opacity:0; transform:scale(1) rotate(-180deg);} }
@-webkit-keyframes damageLeft2 { 0%{opacity:0; transform:scale(2) rotate(0deg);} 50%{opacity:1; transform:scale(1.2) rotate(-90deg);} 100%{opacity:0; transform:scale(1) rotate(-180deg);} }
@-moz-keyframes damageLeft2 { 0%{opacity:0; transform:scale(2) rotate(0deg);} 50%{opacity:1; transform:scale(1.2) rotate(-90deg);} 100%{opacity:0; transform:scale(1) rotate(-180deg);} }

@keyframes damageRight { 0%{ transform: rotate(0deg);} 100%{transform: rotate(-180deg);} }
@-webkit-keyframes damageRight { 0%{ transform: rotate(0deg);} 100%{transform: rotate(-180deg);} }
@-moz-keyframes damageRight { 0%{ transform: rotate(0deg);} 100%{transform: rotate(-180deg);} }

@keyframes damageRight2 { 0%{opacity:0; transform:scale(2) rotate(0deg);} 50%{opacity:1; transform:scale(1.2) rotate(90deg);} 100%{opacity:0; transform:scale(1) rotate(180deg);} }
@-webkit-keyframes damageRight2 { 0%{opacity:0; transform:scale(2) rotate(0deg);} 50%{opacity:1; transform:scale(1.2) rotate(90deg);} 100%{opacity:0; transform:scale(1) rotate(180deg);} }
@-moz-keyframes damageRight2 { 0%{opacity:0; transform:scale(2) rotate(0deg);} 50%{opacity:1; transform:scale(1.2) rotate(90deg);} 100%{opacity:0; transform:scale(1) rotate(180deg);} }

.heal{
	text-shadow: 0 0 4px black, 0 0 4px black, 0 0 4px black, 0 0 4px black, 0 0 4px black, 0 0 4px black, 0 0 4px black, 0 0 4px black, 0 0 4px black, 0 0 4px black, 0 0 4px black, 0 0 4px black, 0 0 4px black, 0 0 4px black, 0 0 4px black, 0 0 4px black, 0 0 4px black, 0 0 4px black, 0 0 4px black, 0 0 4px black;
	color:#0DEB09;
	position:absolute;
	right:20px;
	opacity:0;
	animation: heal 1s 1 linear;
	-webkit-animation: heal 1s 1 linear;
	-moz-animation: heal 1s 1 linear;
}

.heal.sp{
	color:#3c54ef;
}

@keyframes heal { 0%{ top:-60px; opacity:0;} 50%{ top:-100px; opacity:1;} 100%{ top:-140px; opacity:0;} }
@-webkit-keyframes heal { 0%{ top:-60px; opacity:0;} 50%{ top:-100px; opacity:1;} 100%{ top:-140px; opacity:0;} }
@-moz-keyframes heal { 0%{ top:-60px; opacity:0;} 50%{ top:-100px; opacity:1;} 100%{ top:-140px; opacity:0;} }

#angel{
	position:absolute;
	z-index:10;
	top: -75px;
	left: 30px;
	
	animation: lvlup 1s 1 linear;
	-webkit-animation: lvlup 1s 1 linear;
	-moz-animation: lvlup 1s 1 linear;
	
	display:none;
	opacity:0;
}

@keyframes lvlup { 0%{ top:-75px; opacity:0;} 50%{ top:-100px; opacity:1;} 100%{ top:-125px; opacity:0;} }
@-webkit-keyframes lvlup { 0%{ top:-75px; opacity:0;} 50%{ top:-100px; opacity:1;} 100%{ top:-125px; opacity:0;} }
@-moz-keyframes lvlup { 0%{ top:-75px; opacity:0;} 50%{ top:-100px; opacity:1;} 100%{ top:-125px; opacity:0;} }

.minimap{
	width:40px;
	height:40px;
	position:absolute;
	left:20px;
	top:20px;
	cursor: url("../img/cursor/static/link_select.cur"), default;
	padding:5px;
	background-repeat:no-repeat;
	background-position:center center;
}

.mapImage{
	width:40px;
	height:40px;
	position:absolute;
	left:0px;
	top:0px;
	cursor: url("../img/cursor/static/link_select.cur"), default;
	background-color:rgba(0,0,0,0.6);
	padding:5px;
	border-radius:5px;
	box-shadow:0px 1px 5px rgba(0,0,0,0.9);
	background-repeat:no-repeat;
	background-position:center center;
}

.minimap .maps{
	left:65px;
	position:absolute;
	top:10px;
	height:40px;
	width:360px;
}

.minimap .info{
	position:absolute;
    top: -10px;
    left: 70px;
    white-space: nowrap;
    text-shadow: 1px 0px 0px #fff, -1px 0px 0px #fff, 0px 1px 0px #fff, 0px -1px 0px #fff;
	color: #5a6b9c;
	font-weight: bold;
}

.minimap .maps .moveMap{
	width:40px;
	height:40px;
	float:left;
	margin-right:10px;
	cursor: url("../img/cursor/static/link_select.cur"), default;
	background-color:rgba(0,0,0,0.6);
	padding:5px;
	border-radius:5px;
	box-shadow:0px 1px 5px rgba(0,0,0,0.9);
	background-repeat:no-repeat;
	background-position:center center;
	transform:scale(0.9);
	transition:0.3s all ease;
}

.minimap .maps .moveMap:hover{
	transform:scale(0.9) translateY(-10px) ;
}

.minimap .btnMap, .minimap .btnMapQuest{
	position:absolute;
	bottom: -25px;
	left:-15px;
	width:70px;
}

.minimap .btnMapQuest{
	bottom: -50px;
}

.moveMap:hover .hoverName{
	display:block;
	z-index:3;
}

.fullmap{
	background:rgba(255,255,255,0.8);
	width:820px;
	left:50%;
	margin-left:-410px;
	height:500px;
	top:100px;
	position:absolute;
	box-shadow: 0px 0px 15px;
	padding:5px;
	border-radius:3px;
	display:none;
}

.map{
	overflow-y:scroll;
	width:820px;
	height:440px;
	position:relative;
}

.fullmap .smap{
	cursor: url("../img/cursor/static/link_select.cur"), default;
}

.fullmap .inMap{
	position: absolute;
	width:40px;
	height:40px;
	border-radius:3px;
	top:0;
	left: -40px;
	background-color: rgba(255,0,0,0.5);
	z-index:2;
}

.mapInfo.label.monsters{
	max-width: 410px;
}

.footer{
	position: absolute;
    bottom: 25px;
    width: 490px;
    font-size: 10px;
    left: 50%;
    margin-left: -245px;
    text-align: center;
}

/*macro*/

.settings{
	width:50%;
	box-sizing: border-box;
	float:left;
}

.macroSection{
	font-size:12px;
	height:100px;
}

.macroTitle{
	font-weight: bold;
    margin: 0;
	margin-left:5px;
    margin-bottom: 5px;
    color: #5a6b9c;
}

.macroValue, .macroItem{
	font-size:11px;
}

.macroItem p{
	float:left;
	margin-right: 10px;
}

.macroItem .dropItem{
	width: 24px;
    height: 24px;
    border: 1px solid #cecece;
    float: left;
    box-shadow: 0px 0px 20px -10px inset;
}

.macroField{
	height: 26px;
	padding:5px;
}

.activeMacro{
	width:100%;
	float:right;
}

/*import export*/
.dataField{
	width: calc(100% - 20px);
	margin:5px 10px;
	margin-top:25px;
	height:100px;
	resize:vertical;
	outline:none;
	padding:3px;
	box-sizing: border-box;
}

/* range */
input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  margin: 0px 0;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 10px;
  cursor: pointer;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  background: #d7dbe7;
  border-radius: 1.3px;
  border: 0.2px solid #dadae4;
}
input[type=range]::-webkit-slider-thumb {
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  border: 1px solid #5d76af;
  height: 10px;
  width: 30px;
  border-radius: 3px;
  background: #99aedb;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -1px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #e7e9f1;
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 10px;
  cursor: pointer;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  background: #d7dbe7;
  border-radius: 1.3px;
  border: 0.2px solid #dadae4;
}
input[type=range]::-moz-range-thumb {
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  border: 1px solid #5d76af;
  height: 10px;
  width: 30px;
  border-radius: 3px;
  background: #99aedb;
  cursor: pointer;
}
input[type=range]::-ms-track {
  width: 100%;
  height: 10px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: #c7cddd;
  border: 0.2px solid #dadae4;
  border-radius: 2.6px;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
}
input[type=range]::-ms-fill-upper {
  background: #d7dbe7;
  border: 0.2px solid #dadae4;
  border-radius: 2.6px;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
}
input[type=range]::-ms-thumb {
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  border: 1px solid #5d76af;
  width: 30px;
  border-radius: 3px;
  background: #99aedb;
  cursor: pointer;
  height: 10px;
}
input[type=range]:focus::-ms-fill-lower {
  background: #d7dbe7;
}
input[type=range]:focus::-ms-fill-upper {
  background: #e7e9f1;
}

/*boxinfo with tabs*/
.boxInfo .tabs{
	width: 20px;
    position: absolute;
    left: -27px;
}

.boxInfo .tabs .tab{
	width: 20px;
    letter-spacing: 5px;
    word-break: break-all;
    background: #F3F3F3;
    text-align: center;
    margin-bottom: 0px;
    padding: 4px 2px;
    border: 1px solid #cecece;
    border-radius: 4px 0px 0px 4px;
	box-shadow: -2px 2px 4px -2px rgba(0,0,0,0.6);
	cursor: url("../img/cursor/static/link_select.cur"), default;
}

.boxInfo .tabs .tab:hover, .boxInfo .tabs .tab.active{
	border-right: 2px solid #fff;
	background: #fff;
}

.boxInfo .content .empty{
	position:absolute;
	width: 150px;
    height: 20px;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	text-align:center;
	display:none;
}

/*quest*/

.boxInfo.quests .content{
	height:100%;
	overflow-y: auto;
}

.boxInfo.quests .content.main_c{
	display:none;
}

.boxInfo.quests .content .info_c{
	text-align:center;
}

li.quest {
	border-bottom:1px solid #ccc;
	box-shadow: 0px 0px 20px -10px inset;
	border-radius: 5px;
}

li.quest:not(:last-child){
	margin-bottom:5px;
}

.quest .header:hover{
	background: #ccdeff;
}

.quest .header{
	height: 20px;
	cursor: url("../img/cursor/static/link_select.cur"), default;
	padding:10px;
	font-size:12px;
	font-weight: bold;
	line-height: 22px;
	border-radius: 5px;
}

.questTitle{
	float:left;
	cursor: url("../img/cursor/static/link_select.cur"), default;
}

.questStatus{
	float:right;
	cursor: url("../img/cursor/static/link_select.cur"), default;
}

.questInfo{
	padding:10px;
	font-size:12px;
	position:relative;
	display:none;
}

.questInfo li{
	padding:5px;
	border-top:1px solid #ccc;
	height:55px;	
}

.questInfo img{
	max-height:40px;
	clear:both;
}

.questInfo .desc, .questInfo img{
	float:left;
	cursor: url("../img/cursor/static/link_select.cur"), default;
}

.questInfo .status{
	float:right;
}

.questMap, questReward{
	padding: 5px 0px;
}

.questSpeech{
	margin-top:10px;
}

.btnQuestAction{
	position:absolute;
	right:10px;
	
	cursor: url("../img/cursor/static/link_select.cur"), default;
	background: url("../img/others/btn-bg2.png");
	height:26px;
	width: 115px;
	border: 1px solid #adadad;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
    color: #313131;
    font-size: 12px;
	border-radius: 5px;
	box-sizing: border-box;
	line-height: 25px;
}

.btnQuestAction:hover{
	background: url("../img/others/btn-bg-h2.png");
}

.btnQuestAction *{
	float:left;
	font-size:12px;
	cursor: url("../img/cursor/static/link_select.cur"), default;
}

.timer{
	position:absolute;
	left:5px;
	bottom:10px;
	height:10px;
	width:100px;
	border-radius:10px;
	border:1px solid #ccc;
}

.timerIn{
	animation: timerRun 30s 1 linear;
	-webkit-animation: timerRun 30s 1 linear;
	-moz-animation: timerRun 30s 1 linear;
	height:10px;
	width:0px;
	border-radius:10px;
}

@keyframes timerRun {	0%{width: 0px; background-color: #10EF21;} 50%{background-color: #FF0;} 100%{width: 100px; background-color:#F00; } }
@-webkit-keyframes timerRun  {	0%{width: 0px; background-color: #10EF21;}  50%{background-color: #FF0;} 100%{width: 100px;background-color: #F00;} }
@-moz-keyframes timerRun  {	0%{width: 0px; background-color: #10EF21;}  50%{background-color: #FF0;} 100%{width: 100px; background-color:#F00;} }

/* skills */
.boxInfo.skills .content{
	width: 100%;
    height: 100%;
}

.boxInfo.skills .content.class_c{

}

.boxInfo.skills .content.extra_c{
	display:none;
}

.boxInfo.skills .content footer{
	box-sizing: border-box;
	width:100%;
	padding:5px;
	border-top:1px solid #ccc;
	position:absolute;
	bottom:0;
	left:0;
}

.boxInfo.skills .content footer button{
	width:50px;
	float:right;
	margin-left:5px;
}

.player_s{
	position: absolute;
    bottom: 95px;
    transform: rotateY(180deg);
    left: 70px;
}

.player_s .head{
	z-index:2;
}

.skill{
	float:left;
	margin-left:10px;
	margin-bottom:10px;
	width:55px;
	height:55px;
	font-size:11px;
	color:#666;
	white-space: nowrap;
	text-align:center;
	position:relative;
}

.skill p.name{
	overflow: hidden;
}

.skill img{
	margin-top: 2px;
}

.skill .actionMask{
	position:absolute;
	top: 14px;
    left: 16px;
	width:24px;
	height:24px;
	background: #aac2e4;
	opacity:0;
}

.skill .level{
	font-weight: bold;
	color: #636363;
}


.skill:hover .actionMask, .skill.hover .actionMask{
	background: #f4c0cd;
	opacity:0.3;
}

/*available*/
.skill.available img{
	box-shadow: 2px 0px 0px #aac2e4, -2px 0px 0px #aac2e4, 0px 2px 0px #aac2e4, 0px -2px 0px #aac2e4, 0px 0px 0px 24px #aac2e4 inset;
}

.skill.available .actionMask{
	opacity:0.3;
}

.skill:hover img, .skill.hover img{
	box-shadow: 2px 0px 0px #f4c0cd, -2px 0px 0px #f4c0cd, 0px 2px 0px #f4c0cd, 0px -2px 0px #f4c0cd, 0px 0px 0px 24px #f4c0cd inset;
}

/*disabled*/
.skill.disabled img{
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}
.skill.disabled:hover img{
	box-shadow: none;
}
.skill.disabled:hover .actionMask{
	opacity:0;
}

.skills footer p{
	float: left;
    font-size: 12px;
    margin-left: 65px;
    margin-top: 4px;
}

.skills .noskills{
	text-align: center;
    font-size: 12px;
	margin-top: 5px;
}

.reqlv{
	position:absolute;
	right:8px;
	bottom:15px;
	color:#fff;
	text-shadow: 1px 0 0 #000, -1px 0 0 #000, 0 1px 0 #000, 0 -1px 0 #000, 1px 1px #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;
}

.skill.staging .level{
	color: #7b39ff;
}

.debugLog{
	position:absolute;
	z-index:9999;
	width:200px;
	height:200px;
	left:50%;
	top:50%;
	transform:translate(-50%, -50%);
	display:none;
	background:#fff;
}

.debugLog div{
	width:100%;
	height:100%;
}

.skillBar{
    background: #fff;
    position: absolute;
    width: 276px;
    bottom: 25px;
    left: 10px;
    box-shadow: 0px 1px 2px rgba(0,0,0,0.7);
    border-radius: 4px 4px 4px 4px;
    border: 1px solid #656565;
    padding: 5px;
}

.skillBar .skill_slot{
	float:left;
	width:24px;
	height:24px;
	border:1px solid #cecece;
	box-shadow: 0px 0px 20px -10px inset;
	margin-right:5px;
	position:relative;
}

.skillBar .skill_slot:last-child{
	margin:0;
}

.skillBar .skill_slot .slot_num{
	position: absolute;
    font-size: 10px;
    color: #999;
	top: 0;
    right: 0;
}

.hotkey:hover .hoverName{
	display:block;
	z-index:3;
}

.skillEffect{
	width: 1px;
    height: 1px;
    position: absolute;
    top: 50px;
    left: 30px;
	border-radius:50%;
}

.skillEffect.bash{
	width: 150px;
    height: 150px;
	top: -20px;
    left: -50px;
	background:url(../img/others/rays.png);
	background-position:center center;
	background-size:100% 100%;
	opacity:0;
	animation: bash 0.8s 1 ease-in;
	-webkit-animation: bash 0.8s 1 ease-in;
	-moz-animation: bash 0.8s 1 ease-in;
}

@keyframes bash { 0%{ transform: rotate(0deg) scale(0.3); opacity: 0; } 50% { opacity: 0.8; } 100%{ transform: rotate(90deg) scale(1.2); opacity:0;} }
@-webkit-keyframes bash { 0%{ transform: rotate(0deg) scale(0.3); opacity: 0; } 50% { opacity: 0.8; } 100%{ transform: rotate(90deg) scale(1.2); opacity:0;} }
@-moz-keyframes bash { 0%{ transform: rotate(0deg) scale(0.3); opacity: 0; } 50% { opacity: 0.8; } 100%{ transform: rotate(90deg) scale(1.2); opacity:0;} }

.skillEffect.magnumbreak{
	background:orange;
	animation: magnumbreak 0.3s 1 ease-in;
	-webkit-animation: magnumbreak 0.3s 1 ease-in;
	-moz-animation: magnumbreak 0.3s 1 ease-in;
}

@keyframes magnumbreak {	0%{ transform: scale(0); opacity:1; } 100%{ transform: scale(250); opacity:0;} }
@-webkit-keyframes magnumbreak {	0%{ transform: scale(0); opacity:1; } 100%{ transform: scale(250); opacity:0;} }
@-moz-keyframes magnumbreak {	0%{ transform: scale(0); opacity:1; } 100%{ transform: scale(250); opacity:0;} }

.skillName{
	position:absolute;
	top: 0;
	display:block;
	left: 50%;
    transform: translateX(-50%);
}

.skill .description{
	display:none;
	background:#fff;
	width: 150px;
    background: #fff;
    position: absolute;
    top: 0;
    left: calc(100% + 10px);
    display: none;
    padding: 5px;
    box-shadow: 0px 1px 3px rgba(0,0,0,0.9);
    border-radius: 2px;
	text-align:left;
	z-index:3;
	white-space: normal;
}

.skill .description p{
	margin-bottom:5px;
}

.skill:hover .description{
	display:block;
}

.skill .description p:last-child{
	color:#999;
}

.skill .description p:last-child b{
	color:#666;
}

/*inv division*/
.playerInventory .content{
	margin-top: 19px;
	border:1px solid #ccc;
}

.invTabs{
	height:20px;
	position:absolute;
}

.invTab{
	cursor: url("../img/cursor/static/link_select.cur"), default;
	float:left;
    margin-left: 2px;
    font-size: 12px;
    border: 1px solid #ccc;
    padding: 2px 8px;
    color: #444;
	height:20px;
	box-sizing: border-box;
	background: #f3f3f3;
	border-radius: 2px 2px 0px 0px;
}

.invTab.active{
	background:#fff;
	border-bottom: 1px solid #fff;
}

/*state*/

.statePanel
{
    line-height: 40px;
    margin-top: -5px;
}

.stateImg{
	float:left;
	width:40px;
	height:40px;
	background:url(../img/others/poringSleep.gif);
}

.musicImg{
	float:right;
	width:40px;
	height:40px;
	background:url(../img/others/dropsMusic.gif);
	cursor: url("../img/cursor/static/link_select.cur"), default;
}

.musicImg.mute{
	background:url(../img/others/dropsCry.gif);
}

.stateImg.attack{
	background:url(../img/others/poringActive.gif);
}

.label.state{
	color:#fff;
	font-weight: bold;
	font-size:13px;
}

::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: transparent;
}

::-webkit-scrollbar
{
	width: 6px;
	background-color: transparent;
}

::-webkit-scrollbar-thumb
{
	background-color: #F5F5F5;
	cursor: url("../img/cursor/static/link_select.cur"), default;
}

.buffs{
	position: absolute;
    bottom: 75px;
    height: 32px;
    left: 10px;
}