@font-face{
	font-family: visitor;
	src: url('visitor.woff');
}

a:link {
	text-decoration:none;
	color:#000000;
}
a:visited {
	text-decoration:none;
	color:#000000;
}
a:hover {
	text-decoration:none;
	color:#000000;
}

* {
	margin:0px;
	padding:0px;
}

body {
	color:#ffffff;
	text-align:center;
	font-family:"Lucida Sans Unicode";
	font-size:12px;
	background-color:#04060c;
	display:flex;
	justify-content:center;
	flex-direction:column;
    align-items:center;
}

#logo, #logo > * {
	width:100vw;
	max-height:256px;
	max-width:1024px;
	display:flex;
	align-items:center;
	justify-content:center;
}
	#logoIcon {
		flex:1;
	}
	#logoText {
		box-sizing:border-box;
		padding:9px;
		flex:3;
	}

#main {
	display:flex;
	flex-direction:column;
	max-width:1024px;
	margin:auto;
	padding-top:8px;
	padding-bottom:22px;
	margin-top:16px;
}

#achievementsContainer {
	display:flex;
}

#achievementsContainer > div {
	flex:1;
	display:flex;
	flex-direction: column;
}

.subheader {
	background-color:#fff;
	color:#000;
	box-shadow:#ccc 4px 4px 0px;
	font-family:visitor;
	font-size:32px;
	text-shadow:#999 1px 1px 2px;
	padding:4px;
	width:300px;
}

.maintext {
	background-color:#fff;
	box-shadow:#ccc 4px 4px 0px;
	font-family: "Exo 2";
	font-size:16px;
	text-align:left;
	color:#000;
	/*text-shadow:#999 1px 1px 2px;*/
	padding:8px;
	box-sizing:border-box;
	margin-bottom:16px;
}

.achievement {
	margin:0px 8px 12px 8px;
	cursor:pointer;
}

.achievement img {
	image-rendering: -o-crisp-edges;
	image-rendering: -moz-crisp-edges;
	image-rendering: -webkit-optimize-contrast;
	-ms-interpolation-mode: nearest-neighbor;
	image-rendering: pixelated;
	height:32px;
	width:32px;
	display:inline-block;
}

.description {
	border-left:3px dashed #ccc;
	border-right:3px dashed #ccc;
	margin:0px 1em;
	padding:0px 1em;
	font-size:.9em;
	max-height:0px;
	overflow:hidden;
	color:#222;
	transition:max-height .8s;
}

.titleAndInfo {
	margin-left:4px;
	display:inline-block;
}

.achievementTitle {
	font-weight:600;
}

.additionalInfo {
	font-size:12px;
	color:#333;
}

.locked {
	background:#999;
	color:#222;
	box-shadow:#666 4px 4px 0px;
}

.locked img {
	filter:grayscale(100%);
}
.locked img:hover {
	filter:grayscale(0%);
}

.locked .description {
	border-left:3px dashed #666;
	border-right:3px dashed #666;
}

.epic {
	background-color:#ffcd1e;
	box-shadow:#ad8a13 4px 4px 0px;
}
.epic .description {
	border-left:3px dashed #ad8a13;
	border-right:3px dashed #ad8a13;
}

.epic.locked {
	filter: grayscale(100%);
}
.epic.locked:hover {
	filter: grayscale(0%);
}

#template {
	display:none;
}

ul {
	list-style-type:square;
	margin-top:0px;
	margin-bottom:0px;
}

table {
	background-color:#eeeeee;
	vertical-align:top;
	padding:1px;
}

tr:nth-child(odd) {background: #ddd}

tr {
	vertical-align:top;
}

td {
	vertical-align:top;
	padding-right:15px;
}

::-webkit-scrollbar {
    width: 7px;
}
 
/* Track */
 
/* Handle */
::-webkit-scrollbar-thumb {
    background: #ffffff; 
	
}
::-webkit-scrollbar-thumb:window-inactive {
	background: #000000; 
}