/* =Fonts
------------------------------------------------------- */
@font-face {
  font-family: "Gunplay";
  src: url(../fonts/Gunplay.ttf) format("truetype");
}

@font-face {
  font-family: "Crass";
  src: url(../fonts/Crass.ttf) format("truetype");
}

@font-face {
  font-family: "Stencilia-Bold";
  src: url(../fonts/Stencilia-Bold.ttf) format("truetype");
}

@font-face {
  font-family: "Stencilia-A";
  src: url(../fonts/Stencilia-A.ttf) format("truetype");
}

@font-face {
  font-family: "StencilGothic";
  src: url(../fonts/StencilGothic.ttf) format("truetype");
}

/* =Reset
------------------------------------------------------- */

* {
	margin: 0;
	padding: 0;
}


/* =Global
------------------------------------------------------- */

html {
	background: gray url(../images/bg.png) top center;
	color: white;
	height: 100%;
	min-width: 950px;
	max-width: 1400px;
	margin: 0 auto;
}

body {
	position: relative;
	display: table;
	margin: 0 auto;
	height: 100%;
	width: 100%;
	font: normal normal normal 1em 'Trebuchet MS', Trebuchet, 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
	background:  
		url(../images/bg_left.png) top left repeat-y,
		url(../images/bg_right.png) top right repeat-y,
		url(../images/bg2.png) top center;
	background-color: black;
}

header, article, section, footer {
	display: block;
}

h1 {font-size: 1.3em}
h2 {font-size: 1.2em}
h3 {font-size: 1.1em}
h4 {font-size: 1.1em}

h1, h2, h3, h4 {
	text-shadow: 1px 1px 1px #666;
	color: rgb(230, 210, 170);
	font-weight: bold;
	line-height: 1.1;
}

h1 a, h2 a, h3 a {
	color: #99ccff;
}

h1 a:hover, h2 a:hover, h3 a:hover {
	color: #99ccff;
}

h1 a:visited , h2 a:visited , h3 a:visited  {
	color: #99ccff;
}

a {
	color: #99ccff;
	text-decoration: none;
}

a:hover {
	color: #ccccff;
}

a:visited {
	color: #99cccc;
}

a img{
	border:none;
}


article section {
	padding: 0.5em 1em;
}

	article section * {
		padding: 0.5em 0;
	}

	article section blockquote {
		padding: 0 0 0 1em;
		border-left: 3px solid #ccc;
		margin: 0 0 0.5em 1em;
	}
	
	article section ul, article section ol {
		margin-left: 2em;
		padding: 0;
	}

	article section li {
		padding: 0;
	}
	
p.title {
	font-size: 0.8em;
	background: rgba(96,96,112,0.2);
	text-align: left;
	font-weight: bold;
	padding: 3px 5px;
	display: block;
	-webkit-border-radius: 5px;
	-webkit-border-bottom-right-radius: 0;
	-moz-border-radius: 5px;
	-moz-border-radius-bottomright: 0;
	border-radius: 5px;
	border-bottom-right-radius: 0;
}

p.author {
	font-size: 0.8em;
	text-align: right;
	background: rgba(64,64,80,0.2);
	padding: 3px;
	margin: 0 0 3px 130px;
	border: 2px solid rgba(76,76,92,0.2);
	border-top: 0;
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-bottomright: 5px;
	-moz-border-radius-bottomleft: 5px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
}

	p.author em {
		font-family: Georgia, serif;
	}

.biggen {
	font-size: 3em;
	margin-bottom: 30px;
}
	
/* =Forms
------------------------------------------------------- */
form {
	overflow: hidden;
}

	form fieldset {
		border: 0;
		margin-top: 1.8em;
		position: relative;
	}
	
	form legend {
		position: absolute;
		top: -0.8em;
		left: 1.0em;
		line-height: 1em;
		border-radius: 5px;
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		background-color: rgb(33, 33, 33);
		z-index: 100;
		padding: 0.2em 0.5em;
	}

		form legend a, form legend a:hover , form legend a:active{
			color: white;
		}
	
	form ol {
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		border-radius: 5px;
		display: table;
		width: 100%;
		border: 2px solid rgba(96,96,112,0.2);
		border-spacing: 0;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}
	
		form ol li {
			display: table-row;
			overflow: hidden;
			position: relative;
		}
		
			form ol li label {
				padding: 10px;
				display: table-cell;
				width: 200px;
				min-width: 200px;
				text-align: right;
				vertical-align: top;
				background-color: rgba(64,64,80,0.2);
				overflow: hidden;
			}
			
			form ol li .input {
				background-color: rgba(96,96,112,0.2);
				display: table-cell;
				vertical-align: top;
				padding: 10px;
				width: 100%;
				text-align: center;
			}
			
				form ol li .input input {
					width: 100%;
					background-color: rgba(255,255,255,0.2);
					color: white;
					border: 1px solid gray;
					font-size: 1.2em;
				}
				
					form ol li .input input[type="checkbox"] {
						width: 1em;
					}
					
				form.narrow ol li .input {
					width: 200px;
					min-width: 200px;
				}
				
				form ol li .input textarea {
					width: 100%;
					background-color: rgba(255,255,255,0.2);
					color: white;
					border: 1px solid gray;
					height: 300px;
					resize: vertical;
				}
				
			form ol li .info {
				display: table-cell;
				background-color: rgba(64,64,80,0.2);
				width: 200px;
				min-width: 200px;
				padding: 10px;
				position: relative;
			}
			
			form.narrow ol li .info {
				width: 100%;
			}
			
		form ol li.nosoupforyou {
			display: none;
		}
			
	form input[type="submit"] {
		display: block;
		margin: 10px auto;
		font-size: 1.5em;
		padding: 10px;
	}

/* =Tables
------------------------------------------------------- */
	
table.default {
	border-spacing: 0;
	text-align: left;
	width:100%;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	border: 2px solid rgba(96,96,112,0.2);
}

	table.default tr {
	}
	
	table.default thead tr {
		background: rgba(96,96,112,0.2);
	}
	
	table.default tbody tr:nth-child(odd) {
		background-color: rgba(64,64,80,0.2);
	}
	
	table.default tbody tr:nth-child(even) {
		background: rgba(96,96,112,0.2);
	}
	

	table.default th {
		padding: 3px 10px;
		font-size: 0.8em;
	}
	
	table.default td {
		padding: 3px 10px;
	}


/* =Header
------------------------------------------------------- */
#body_header {
	position: relative;
	display: table-row;
	height: 150px;
	width: 100%;
	background:  url(../images/fan.png) 70% 150% no-repeat, url(../images/mobo.png) top right no-repeat, url(../images/header.png) top left no-repeat;
}

	#body_header a#home {
		position: absolute;
		display: block;
		height: 72px;
		width: 320px;
		left: 51px;
		top: 15px;
	}

	#body_header .photo{
		position: absolute;
		top: -35px;
		right: 10px;
		z-index: 0;
	}

/* =Navigation
------------------------------------------------------- */

#body_header nav {
	position: relative;
	display: table-cell;
        padding-left: 385px;
}

#nav_panel {
	#position: relative;
	padding-top: 2px;
	width: 100px;
	list-style: none;
	behavior:url(-ms-transform.htc);
	-moz-transform:rotate(-1deg);
	-webkit-transform:rotate(-1deg);
	-o-transform:rotate(-1deg);
	-ms-transform:rotate(-1deg);
}

	#nav_panel li {
		#border-right: 1px solid #333;
	}

		#nav_panel li a, #nav_panel li a:visited {
			display: block;
			text-shadow: 1px 1px 1px #666;
			font-weight: bold;
			color: white;
		}
		
		#nav_panel li a span{
			display: none;
		}

		#nav_panel li a:hover span{
			display: inline;
		}
		
#user_panel {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	position: absolute;
	right: 200px;
	top: 10px;
	background-color: rgba(0,0,0,0.8);
	text-align: right;
	font-size: 0.8em;
	padding: 5px 10px;
	list-style: none;
}

	#user_panel li {
		display: inline;
		padding: 0 5px;
		display: inline;
		padding: 5px;
	}
	
		#user_panel li a{
			color: #99ccff;
		}


/* =Main
------------------------------------------------------- */
#main {
	display: table;
	table-layout: fixed;
	margin: 0 auto;
	padding: 0 30px;
}

/* =News
------------------------------------------------------- */
#main #news {
	display: table-cell;
	width: 100%;
	padding-right: 15px;
}

	#main #news article {
		display: block;
		margin-bottom: 5px;
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		border-radius: 5px;
		border: 2px solid rgba(96,96,112,0.2);
	}
	
		#main #news article header {
			width: 100%;
			border-bottom: 2px solid rgba(96,96,112,0.2);
			display: table;
		}

			#main #news article header h1 {
				display: table-cell;
				vertical-align: middle;
				height: 100%;
				background: rgba(64,64,80,0.2);
			}
			
				#main #news article header h1 a {
					display: block;
					padding: 10px;
				}
				
			#main #news article header h2 {
				display: table-cell;
				background-color: rgba(96,96,112,0.2);
				text-align: right;
				font-size: 1.0em;
				width: 150px;
				padding: 10px;
				vertical-align: middle;
			}
			
				#main #news article header h2 time {
					font-size: 0.6em;
				}

		#main #news article section {
			display: none;
			background-color: rgba(64,64,80,0.2);
			overflow: auto;
			#padding: 1em 1em 0 1em;
		}

		#main #news article:first-child section {
			display: block;
		}
		
		#main #news article section *{
			padding-bottom: 1em;
		}

		#main #news article footer {
			background-color: rgba(96,96,112,0.2);
			padding: 10px;
			display: none;
		}
		
		#main #news article:first-child footer {
			display: block;
		}
		
			#main #news article footer p{
				font-size: 0.8em;
				text-align: right;
			}



/* =Info
------------------------------------------------------- */
#main #info {
	display: table-cell;
	width: 415px;
	padding-left: 15px;
	vertical-align: top;
}

	#main #info h1 {
		margin-bottom: 10px;
	}

	#main #info img {
		margin-bottom: 10px;
	}
	
	#main #info p {
		line-height: 1.5em;
		text-align: justify;
		padding: 0 10px 10px 10px;
	}

		#main #info p.title {
			padding: 3px 5px;
		}

		#main #info p.author {
			padding: 3px;
			text-align: right;
		}

/* =Forum
------------------------------------------------------- */
#forum {
	background: url('../images/forum_bg.png') top right no-repeat;
}

	#forum #categories {
		table-layout: fixed;
		text-align: left;
		width: 100%;
	}

		#forum #categories td {
			padding: 5px;
		}

	
		#forum #categories .category {
			width: 100%;
		}

			#forum #categories .category .title {
				width: 50%;
				padding: 8px;
				background: rgba(96,96,112,0.2);
				-webkit-border-radius: 5px;
				-webkit-border-bottom-right-radius: 0;
				-moz-border-radius: 5px;
				-moz-border-radius-bottomright: 0;
				border-radius: 5px;
				border-bottom-right-radius: 0;
			}

			#forum #categories .category .info {
				margin-left: 30px;
				background: rgba(64,64,80,0.2);
				padding: 8px;
				border: 2px solid rgba(76,76,92,0.2);
				-webkit-border-bottom-right-radius: 5px;
				-webkit-border-bottom-left-radius: 5px;
				-moz-border-radius-bottomright: 5px;
				-moz-border-radius-bottomleft: 5px;
				border-bottom-right-radius: 5px;
				border-bottom-left-radius: 5px;
			}
		
		#forum #categories .last_post {
			width: 400px;
		}

	#forum #threads {
	}

		#forum #threads td .time_passed {
			font-size: 0.8em;
		}
		
		#forum #threads .title{
			width: 100%;
		}

		#forum #threads .author{
			white-space: nowrap;
			text-align: right;
		}

		#forum #threads .created{
			white-space: nowrap;
			text-align: right;
		}

		#forum #threads .last_post{
			white-space: nowrap;
			text-align: right;
		}

		#forum #threads .replies{
			white-space: nowrap;
			text-align: center;
		}
	
	#forum .thread header:first-child p {
		font-size: 0.8em;
		padding: 0 5px 5px 10px;;
	}
	
	#forum .post {
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		border-radius: 5px;
		border: 2px solid rgba(96,96,112,0.2);
		display: block;
		margin-bottom: 10px;
	}
	
		#forum .post header {
			background-color: rgba(96,96,112,0.2);
			font-size: 0.8em;
			padding: 10px;
		}
		
			#forum .post header h2{
				font-size: 0.8em;
			}
			
		#forum .post section {
			background-color: rgba(64,64,80,0.2);
			word-break: break-all;
		}
		
		#forum .post footer {
			background-color: rgba(96,96,112,0.2);
			text-align: right;
			padding: 5px;
			font-size: 0.8em;
		}
		
		#forum .post footer ul {
			list-style: none;
		}
		
			#forum .post footer ul li {
				display: inline;
			}

	#forum .bottom_links {
		text-align: right;
		padding: 1em;
	}
	
		#forum .bottom_links a {
			-webkit-border-radius: 5px;
			-moz-border-radius: 5px;
			border-radius: 5px;
			background-color: rgba(96,96,112,0.2);
			padding: 0.5em;
			display: inline-block;
		}
/* =Users
------------------------------------------------------- */
#users {
	background: url('../images/users_bg.png') top right no-repeat;
}

	#users ul.details {
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		border-radius: 5px;
		display: table;
		width: 100%;
		border: 2px solid rgba(96,96,112,0.2);
		border-spacing: 0;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}

		#users ul.details li {
			display: table-row;
			overflow: hidden;
			position: relative;
		}

			#users ul.details li .label {
				background-color: rgba(96,96,112,0.2);
				padding: 10px;
				display: table-cell;
				width: 200px;
				min-width: 200px;
				text-align: right;
				vertical-align: top;
				overflow: hidden;
			}
			
			#users ul.details li .value {
				background-color: rgba(64,64,80,0.2);
				display: table-cell;
				vertical-align: top;
				padding: 10px;
				width: 100%;
			}

	#users ul.actions {
		text-align: right;
		list-style: none;
	}
	
		#users ul.actions li {
			display: inline;
		}

/* =Contact
------------------------------------------------------- */
#contact {
	text-align: center;
}

	#contact .vcard{
		text-align: left;
		padding: 20px;
		display: inline-block;
		vertical-align: top;
	}

	#contact .vcard .fn{
		font-weight: bold
	}
	
/* =About
------------------------------------------------------- */
#about {
}
	
/* =Message
------------------------------------------------------- */
#message p {
	margin: 0 auto;
	text-align: center;
	width: 500px;
}


	
/* =Footer
------------------------------------------------------- */
#body_footer {
	position: relative;
	width: 100%;
	height: 168px;
	display: table-cell;
	background: 
		url(../images/footer_bg3.png) bottom right no-repeat,
		url(../images/footer_bg2.png) bottom left no-repeat,
		url(../images/footer_bg1.png) 25% 0% no-repeat;
}

	#body_footer ul{
		font-size: 0.8em;
		text-align: center;
		margin: 125px 200px 0 200px;
		background: rgba(0,0,0,0.7);
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		border-radius: 5px;
		list-style: none;
		padding: 5px;
	}
	
	#body_footer ul li{
		display: inline;
		padding: 5px;
	}

/* =Misc
------------------------------------------------------- */
.dp50 {width:50%;  float:left;  display: inline;  *margin-right:-1px; }
.dp60 {width:60%;  float:left;  display: inline;  *margin-right:-1px; }
.dp40 {width:40%;  float:left;  display: inline;  *margin-right:-1px; }

.clear {
	clear: both;
}

.hide {
	display: hidden;
}

.error {
	color: #c66;
}

.crumbs {
	padding: 0.5em;
}

#cheatsheet {
	position: absolute;
	top: 0;
	right: -350px;
	width: 350px;
	height: 100%;
	background-color: rgb(33, 33, 33);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	overflow: auto;
}

#cheatsheet a {
	position: absolute;
	top: 0;
	right: 0;
}

#cheatsheet article {
	padding: 5px;
}

#cheatsheet p {
	padding: 0;
	font-size: 0.9em;
}

#cheatsheet h2 {
	font-size: 1.2em;
	padding: 5px 0;
}


#cheatsheet h3 {
	font-size: 1em;
	padding: 5px 0;
}

#cheatsheet pre {
	background-color: rgba(255,255,255,0.2);
	line-height: 12px;
	margin-bottom: 5px;
	border: 1px solid #ccc;
	padding: 4px;
}

#body_content {
	display: table-row;
	height: 100%;
}

#body_content div.content {
	padding: 10px 60px;
	height: 100%;
}

