@charset "UTF-8";
@import url(http://fonts.googleapis.com/css?family=Alegreya+Sans+SC:700,700italic);
@import url(http://fonts.googleapis.com/css?family=Lato:400,700);
@import url(https://fonts.googleapis.com/css?family=Droid+Sans:400,700);
@import url(https://fonts.googleapis.com/css?family=Poppins:500,600);
@import url(https://fonts.googleapis.com/css?family=Roboto:400,600);
@import url(https://fonts.googleapis.com/css?family=Oxanium:400,600,900);
@import url(https://fonts.googleapis.com/css?family=Nova+Square:400,700);
@import url('https://fonts.googleapis.com/css?family=Maven+Pro:400,500,700,900&subset=latin-ext,vietnamese');

:root {
--main-border-color: #000000;
--primary-font: 'Poppins', sans-serif;
--secondary-font: 'Oxanium', sans-serif;
--tertiary-font: 'Nova Square', sans-serif;
--main-table-color-scheme-a: #d0d0d0;
--main-table-color-scheme-b: #c0c0c0;
--main-table-color-scheme-c: #b0b0b0;
--main-color-scheme-a: #c62828; /* Primary red for main interface*/
--main-color-scheme-b: #990202; /* Secondary red for hovers and highlights */
--main-color-scheme-c: #e1e1e1; /* Light grey for content panels */
--main-color-scheme-d: #888; /* Light grey for content panels */
--default-font-color: #222;
--secondary-font-color: #fff;
}

body {
	color:var(--default-font-color);
	font-family: var(--primary-font);
	font-size:12px;
	line-height:16px;
	background-color:#bfbfbf;
	background-image: url('/images/textures/zig-zag.png');
}

body,html {
	margin:0;
	padding:0;
}


html {
	overflow-y:scroll;
}

a:visited,a:active,a:hover,a:link {
	text-decoration: none;
}

a {
	outline : none;
}

a img {
	outline : none;
}

img {
	border : 0;
}

table,tr,td,textarea {
	line-height:18px;
}

table {
	border-spacing:0px;
	border:none;
}						

p {
	display: inline;
}

/* Scrollbar */

::-webkit-scrollbar {
	width: 16px;
}

/* Track */

::-webkit-scrollbar-track {
	background: var(--main-color-scheme-c);
}

/* Handle */

::-webkit-scrollbar-thumb {
	border: 4px solid var(--main-color-scheme-c);
	background-clip: padding-box;
	background-color: var(--main-color-scheme-a);
	border-radius:12px;
}

/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
	background: var(--main-color-scheme-b);
}

/* Emoticons */

#emoticons a {
	margin-left:4px;
}

#emoticons a:hover {
	cursor:pointer;
}

/* Tooltips */

.tooltip_icon {
	border-radius:2px;
	padding:10px;
	width:16px; height:16px;
}

.tooltip_element_icon {
	padding:6px;
	width:28px; height:28px;
}

.tooltip_icon_small {
	border-radius:6px;
	padding:3px;
	background-color:rgba(20,20,20,1);
	width:20px; height:20px;
}

/* Talents */

.talent_container {
	position: relative;
	display:inline-block;
	text-align: center;
}

.talent_points_display {
	font-weight:bold;
	text-shadow:0px 0px 3px #000;
	padding:2px 2px 2px 2px;
	position:absolute;
	right:0;
	bottom:0;
}

.talent_points_arrow_plus {
	position:absolute;
	top:5px;
	right:0;	
}

/* Stars */

span.stars, span.stars span {
    display: block;
    background: url(/images/stars.png) 0 -16px repeat-x;
    width: 80px;
    height: 16px;
}

span.stars span {
    background-position: 0 0;
}

/* Forum */

.forum-active {
	font-size:24px;
	color:var(--main-color-scheme-a);
}

.forum-inactive {
	font-size:24px;
	color:var(--main-color-scheme-a);
}

.forum-pin, .forum-lock, .forum-pin-large, .forum-lock-large {
	display:inline-block;
	font-family:'Lato', sans-serif;
	border-radius:2px;
	text-align: center;
	vertical-align: top;
	font-weight:bold;
	color:#fff;
}

.forum-pin, .forum-pin-large {
	background-image: linear-gradient(#1d791f, #29ab29);
}

.forum-lock, .forum-lock-large {
	background-image: linear-gradient(#b22d2d, #d43030);
}

.forum-pin, .forum-lock {
	height:16px;
	padding-left:10px;
	padding-right:10px;
	margin-right:3px;
	border:1px solid rgba(255,255,255,0.1);
	margin-bottom:3px;
	font-size:10px;
	line-height:16px;
}

.forum-pin-large, .forum-lock-large {
	outline: none;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	min-width:50px;
	height:30px;
	padding: 8px 15px;
	border:1px solid #111;
	box-shadow:inset 0px 1px 0px 0px rgba(255,255,255,0.1);
	font-size:11px;
	line-height:14px;
}

.forum-icon {
	text-align:center; 
	vertical-align:middle; 
	padding:30px !important; 
	width:1%; 
}

/* Stat Meter */

.meter { 
	display: inline-block;
	height: 9px;
	position: relative;
	background: #555;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 1px;
	padding:2px;
	width:100px;
	text-align:left;
}

.meter > span {
	display: block;
	height: 100%;
	-moz-border-radius: 1px;
	-webkit-border-radius: 1px;
	border-radius: 1px;
	position: relative;
	overflow: hidden;	
}

.green-meter > span {
	background-color: rgb(0,150,75);
	background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, rgb(0,150,75)), color-stop(1, rgb(84,240,84)));
	background-image: -moz-linear-gradient(center bottom, rgb(0,150,75) 37%, rgb(84,240,84) 69%);
	-webkit-box-shadow: inset 0 2px 9px  rgba(255,255,255,0.3), inset 0 -2px 6px rgba(0,0,0,0.4);
	-moz-box-shadow: inset 0 2px 9px  rgba(255,255,255,0.3), inset 0 -2px 6px rgba(0,0,0,0.4);
	box-shadow: inset 0 2px 9px  rgba(255,255,255,0.3), inset 0 -2px 6px rgba(0,0,0,0.4);	
}

.orange-meter > span {
	background-color: #f1a165;
	background-image: -moz-linear-gradient(top, #f1a165, #f36d0a);
	background-image: -webkit-gradient(linear, left top,left bottom,color-stop(0, #f1a165),color-stop(1, #f36d0a));
	background-image: -webkit-linear-gradient(#f1a165, #f36d0a); 
}

.red-meter > span {
	background-color: #fa7575;
	background-image: -moz-linear-gradient(top, #fa7575, #b00000);
	background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #fa7575),color-stop(1, #b00000));
	background-image: -webkit-linear-gradient(#fa7575, #b00000);
}

.yellow-meter > span {
	background-color: #ffde00;
	background-image: -moz-linear-gradient(top, #ffde00, #c0a700);
	background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #ffde00),color-stop(1, #c0a700));
	background-image: -webkit-linear-gradient(#ffde00, #c0a700);
}

.meter-style-one {
	width:calc(100% - 3px) !important;
	height:8px !important;
	padding:0px !important;
	box-shadow:inset 0px 1px 0px 0px rgba(255,255,255,0.1);
}

.meter-style-two {
	width:50% !important;
	height:16px !important;
	padding:3px !important;
	box-shadow:inset 0px 1px 0px 0px rgba(255,255,255,0.1);
}

@-webkit-keyframes move {
	0% {
	   background-position: 0 0;
	}
	100% {
	   background-position: 50px 50px;
	}
}