@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.6.0/css/font-awesome.min.css");
@import url("keyframes.css");

html {
	font-family: sans-serif;
	box-sizing: border-box;
	-webkit-text-size-adjust: 100%;
			-ms-text-size-adjust: 100%;
}

body {
	background: #eee;
	color: #212121;
	font-family: Tahoma, Arial, sans-serif;
	line-height: 1.42857143;
	font-size: 13px;
	overflow-y: scroll;
	margin: 0;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img {
	border: none;
	vertical-align: middle;
}

hr {
	background-color: #000000;
	color: #000000;
	height: 1px;
	border: 0px;
}

a {
	background-color: transparent;
	color: #0072BC;
	text-decoration: none;
	-webkit-transition: color .4s ease;
					transition: color .4s ease;
}

a:hover,
a:active {
  outline: 0;
}

a:hover {
	color: #0072BC;
}

abbr[title] {
  border-bottom: 1px dotted;
}

img {
	border: 0;
	vertical-align: middle;
}

img.attachment {
	border: 1px solid #E9E5D7;
	padding: 2px;
}

hr {
	background-color: #000000;
	color: #000000;
	height: 1px;
	border: 0px;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

.clearfix {
	display: block;
}

.clearfix:before,
.clearfix:after {
	content: "";
	display: table;
}

.clearfix:after {
	clear: both;
}

*::-moz-selection {
  background: #4CAF50;
  color: #fff;
}

*::selection {
  background: #4CAF50;
  color: #fff;
}

a::-moz-selection {
  background: #212121;
  color: #fff;
}

a::selection {
  background: #212121;
  color: #fff;
}

.clear {
	clear: both;
}

.left,
.float_left {
	float: left;
}

.right,
.float_right {
	float: right;
}

.hidden {
	display: none;
	float: none;
	width: 1%;
}

.hiddenrow {
	display: none;
}

.container {
  width: 100%;
  max-width: 1158px;
	min-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
}

.header {
	background-image: url('../images/flat-bg.png');
	background-position: center;
	background-repeat: no-repeat;
	border-top: 4px solid #1976D2;
	height: auto;
	min-height: 288px;
	color: #f5f5f5;
	-webkit-background-size: cover;
					background-size: cover;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0 ,0, 0, 0.24);
					box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0 ,0, 0, 0.24);
}

.navbar {
	background-color: rgba(38, 50, 56, 0.94);
	height: 64px;
	margin-bottom: 32px;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0 ,0, 0, 0.24);
					box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0 ,0, 0, 0.24);
	-webkit-animation: navbar-animation .4s cubic-bezier(0.0, 0.0, 0.2,1);
					animation: navbar-animation .4s cubic-bezier(0.0, 0.0, 0.2,1);
}

.navbar .site-logo {
  float: left;
  margin-right: 16px;
}

.navbar .site-logo > a {
  background-color: rgba(0, 0, 0, 0.32);
  color: #CFD8DC;
  font-size: 24px;
  height: 64px;
  line-height: 64px;
  padding: 0 16px;
  display: block;
  -webkit-transition: color .4s ease;
  				transition: color .4s ease;
}

.navbar .site-logo > a > i {
	-webkit-transition: transform .4s ease;
  				transition: transform .4s ease;
}

.navbar .site-logo > a:hover > i {
	-webkit-transform: rotate(360deg);
					transform: rotate(360deg);
}

.navbar .nav {
  display: block;
}

.navbar .nav > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.navbar .nav > ul.site-menu {
  padding: 16px 0;
}

.navbar .nav > ul.user-panel {
  padding: 16px 0;
	margin-right: -4px;
}

.navbar .nav > ul > li {
  float: left;
}

.navbar .nav > ul.site-menu > li > a {
  padding: 0 16px;
  height: 32px;
  line-height: 32px;
  color: #CFD8DC;
  display: block;
  -webkit-transition: background-color .4s ease, box-shadow .2s ease;
  				transition: background-color .4s ease, box-shadow .2s ease;
}

.navbar .nav > ul.site-menu > li > a:hover {
  background-color: rgba(0, 0, 0, 0.24);
  -webkit-box-shadow: 0 2px 0 #1976D2;
  				box-shadow: 0 2px 0 #1976D2;
}

.navbar .nav > ul.site-menu > li > a:active {
  -webkit-box-shadow: 0 2px 0 #fff;
  				box-shadow: 0 2px 0 #fff;
}

.navbar .nav > ul.user-panel > li > a,
.navbar .nav > ul.user-panel > li > label {
	background-color: #607D8B;
	height: 32px;
	line-height: 32px;
	color: #F5F5F5;
	display: block;
	margin: 0 4px;
	padding: 0 16px 0 40px;
	position: relative;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);
	-webkit-transition: color .4s ease, background-color .4s ease;
					transition: color .4s ease, background-color .4s ease;
	-webkit-border-radius: 4px;
  				border-radius: 4px;
}

.navbar .nav > ul.user-panel > li > a:before,
.navbar .nav > ul.user-panel > li > label:before {
  background-color: rgba(0, 0, 0, 0.32);
	position: absolute;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
	height: 32px;
  width: 32px;
  left: 0;
  top: 0;
  text-align: center;
  line-height: 32px;
	-webkit-border-radius: 4px 0 0 4px;
  				border-radius: 4px 0 0 4px;
}

.navbar .nav > ul.user-panel > li > label.username {
	cursor: pointer;
}

.navbar .nav > ul.user-panel > li > a.login:before {
  content: "\f090";
}

.navbar .nav > ul.user-panel > li > a.register:before {
  content: "\f067";
}

.navbar .nav > ul.user-panel > li > label.username:before {
  content: "\f013";
}

.navbar .nav > ul.user-panel > li > a.pms:before {
  content: "\f0e0";
}

.navbar .nav > ul.user-panel > li > a.logout:before {
  content: "\f08b";
}

.navbar .nav > ul.user-panel > li > a.login:hover {
  background-color: #2196F3;
}

.navbar .nav > ul.user-panel > li > a.register:hover {
  background-color: #43A047;
}

.navbar .nav > ul.user-panel > li > label.username:hover {
  background-color: #2196F3;
}

.navbar .nav > ul.user-panel > li > a.pms:hover {
  background-color: #43A047;
}

.navbar .nav > ul.user-panel > li > a.logout:hover {
  background-color: #F44336;
}

.header-panel {
	width: 100%;
	height: 42px;
	-webkit-border-radius: 4px;
					border-radius: 4px;
}

.header-panel-info,
.header-panel-social,
.header-panel-qs {
	float: left;
}

.header-panel-info,
.header-panel-social {
	margin-right: 16px;
}

.header-panel-info {
	width: calc(100% - 592px);
	background-color: rgba(255, 255, 255, 0.8);
	color: #212121;
	height: 42px;
	line-height: 42px;
	padding: 0 16px;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0 ,0, 0, 0.24);
					box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0 ,0, 0, 0.24);
	-webkit-border-radius: 4px;
					border-radius: 4px;
}

.header-panel-info > i {
	background-color: rgba(38, 50, 56, 0.8);
	color: #FFFFFF;
	height: 42px;
	width: 42px;
	text-align: center;
	line-height: 42px;
	margin: 0 16px 0 -16px;
	font-size: 16px;
	float: left;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
	-webkit-border-radius: 4px 0 0 4px;
					border-radius: 4px 0 0 4px;
}

.header-panel-social > ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.header-panel-social > ul > li {
	float: left;
}

.header-panel-social > ul > li + li {
	margin-left: 16px;
}

.header-panel-social > ul > li > a {
	background-color: rgba(38, 50, 56, 0.8);
	height: 42px;
	width: 42px;
	text-align: center;
	display: block;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0 ,0, 0, 0.24);
					box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0 ,0, 0, 0.24);
	-webkit-transition: background-color .4s ease;
					transition: background-color .4s ease;
	-webkit-border-radius: 100%;
					border-radius: 100%;
}

.header-panel-social > ul > li > a.facebook:hover {
  background-color: rgba(59, 89, 152, 0.94);
}

.header-panel-social > ul > li > a.twitter:hover {
	background-color: rgba(85, 172, 238, 0.94);
}

.header-panel-social > ul > li > a.google-plus:hover {
	background-color: rgba(211, 72, 54, 0.94);
}

.header-panel-social > ul > li > a.youtube:hover {
	background-color: rgba(229, 45, 39, 0.94);
}

.header-panel-social > ul > li > a.steam:hover {
	background-color: rgba(125, 161, 14, 0.94);
}

.header-panel-social > ul > li > a > i {
	line-height: 42px;
	font-size: 16px;
	color: #fff;
}

.header-panel-qs {
	float: right;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0 ,0, 0, 0.24);
					box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0 ,0, 0, 0.24);
	-webkit-border-radius: 4px;
					border-radius: 4px;
}

.header-panel-qs > form > .textbox {
	height: 42px;
	width: 244px;
	line-height: 42px;
	padding: 0 16px;
	background-color: rgba(255, 255, 255, 0.8);
	color: #212121;
	border: 0;
	float: left;
	-webkit-border-radius: 4px 0 0 4px;
					border-radius: 4px 0 0 4px;
}

.header-panel-qs > form > .textbox::-webkit-input-placeholder {
   color: #212121;
}

.header-panel-qs > form > .textbox:-moz-placeholder {
   color: #212121;
}

.header-panel-qs > form > .textbox::-moz-placeholder {
   color: #212121;
}

.header-panel-qs > form > .textbox:-ms-input-placeholder {
   color: #212121;
}

.header-panel-qs > form > .textbox:focus {
	background-color: #fff;
}

.header-panel-qs > form > .button {
	background: none;
  background-color: rgba(38, 50, 56, 0.8);
	float: left;
	height: 42px;
	width: 42px;
	text-align: center;
	line-height: 42px;
	border: 0;
	color: #fff;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: 16px;
	text-rendering: auto;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
	-webkit-transition: background-color .4s ease;
					transition: background-color .4s ease;
	-webkit-border-radius: 0 4px 4px 0;
	b					order-radius: 0 4px 4px 0;
}

.header-panel-qs > form > .button:hover {
	background-color: rgba(0, 150, 136, 0.8);
}

.content {
	margin-top: -114px;
	z-index: 2;
	position: relative;
}

.wrapper {
	background-color: #FAFAFA;
	padding: 16px;
	-webkit-border-radius: 4px;
					border-radius: 4px;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0, 0, 0, 0.24);
					box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0, 0, 0, 0.24);
}

.forum-rules-info-box {
	background-color: #607D8B;
	color: rgba(255, 255, 255, 0.94);
	padding: 16px 160px 16px 16px;
	position: relative;
	margin-bottom: 18px;
	-webkit-border-radius: 4px;
					border-radius: 4px;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0, 0, 0, 0.24);
					box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0, 0, 0, 0.24);
}

.forum-rules-info-box:before {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	text-rendering: auto;
	content: "\f071";
	position: absolute;
	top: calc(50% - 48px);
	right: 32px;
	font-size: 96px;
	color: rgba(255, 255, 255, 0.80);
}

.forum-rules-info-box-title {
	color: #fff;
	font-size: 16px;
	margin: 0;
	padding: 0;
}

.forum-rules-info-box-content {
	margin: 0;
	padding: 16px 0;
}

.forum-rules-info-box-button {
	height: 38px;
	line-height: 38px;
	background-color: #03A9F4;
	color: #f5f5f5;
	text-transform: uppercase;
	padding: 0 16px;
	display: inline-block;
	-webkit-border-radius: 4px;
					border-radius: 4px;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0, 0, 0, 0.24);
					box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0, 0, 0, 0.24);
	-webkit-transition: box-shadow .4s ease;
					transition: box-shadow .4s ease;
}

.forum-rules-info-box-button:hover {
	color: #f5f5f5;
	-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.18),
											0 4px 8px rgba(0, 0, 0, 0.36);
					box-shadow: 0 0 3px rgba(0, 0, 0, 0.18),
											0 4px 8px rgba(0, 0, 0, 0.36);
}

.forum-rules-info-box-button > i {
	margin-left: 4px;
}

.main-alert {
	padding: 0 64px 0 16px;
	height: 48px;
	line-height: 48px;
	position: relative;
	color: #FAFAFA;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-bottom: 18px;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0, 0, 0, 0.24);
					box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0, 0, 0, 0.24);
	-webkit-border-radius: 4px;
					border-radius: 4px;
}

.main-alert:before {
	background-color: rgba(0, 0, 0, 0.24);
	font: normal normal normal 14px/1 FontAwesome;
	text-rendering: auto;
	position: absolute;
	top: 0;
	right: 0;
	height: 48px;
	line-height: 48px;
	width: 48px;
	text-align: center;
	font-size: 16px;
	-webkit-border-radius: 0 4px 4px 0;
					border-radius: 0 4px 4px 0;
}

.main-alert-success {
	background-color: #4CAF50;
}

.main-alert-success:before {
	content: "\f00c";
}

.main-alert-info {
	background-color: #2196F3;
}

.main-alert-info:before {
	content: "\f05a";
}

.main-alert-warning {
	background-color: #FF9800;
}

.main-alert-warning:before {
	content: "\f06a";
}

.main-alert-danger {
	background-color: #F44336;
}

.main-alert-danger:before {
	content: "\f00d";
}

table {
	color: #212121;
	font-size: 13px;
}

.tborder {
	background: #FFFFFF;
	width: 100%;
	margin: auto auto;
	overflow: hidden;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0, 0, 0, 0.24);
					box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0, 0, 0, 0.24);
	-webkit-border-radius: 4px;
					border-radius: 4px;
}

.tfixed {
	table-layout: fixed;
	word-wrap: break-word;
}

.thead {
	background: rgb(0, 137, 123);
	background: -webkit-linear-gradient(90deg, #E65100 0, #009688 100%);
	background: 				linear-gradient(90deg, #E65100 0, #009688 100%);
	color: #FFFFFF;
	padding: 0 16px;
	height: 42px;
	line-height: 42px;
	text-transform: uppercase;
	border-bottom: 4px solid rgba(38, 50, 56, 0.32);
	-webkit-border-radius: 4px 4px 0 0;
					border-radius: 4px 4px 0 0;
}

.thead a:link,
.thead a:visited,
.thead a:hover,
.thead a:active {
	color: #FFFFFF;
	text-decoration: none;
}

.thead strong {
	background-color: rgba(38, 50, 56, 0.32);
	height: 42px;
	line-height: 42px;
	display: block;
	float: left;
	padding: 0 16px;
}

.tcat {
  background: rgba(38, 50, 56, 0.24);
  padding: 8px 16px;
  font-size: 12px;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
}

.tcat a:link,
.tcat a:visited,
.tcat a:hover,
.tcat a:active {
	color: #212121;
}

.tcat .expcolimage {
	margin: -8px 0;
}

.tcat .expcolimage img {
  margin: 8px 0;
}

.trow_shaded {
	background-color: #FFCDD2;
}

.no_bottom_border {
	border-bottom: 0;
}

.post.unapproved_post {
	background: #ffdde0;
}

.post.unapproved_post .post_author {
	border-bottom-color: #ffb8be;
}

.post.classic.unapproved_post .post_author {
	border-color: #ffb8be;
}

.post.unapproved_post .post_controls {
	border-top-color: #ffb8be;
}

.trow_deleted,
.post.deleted_post {
	background-color: #E1BEE7;
}

.trow_selected,
tr.trow_selected td {
	background-color: #C8E6C9 !important;
}

.trow_sep {
	background-color: #EEEEEE;
  color: #212121;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: bold;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
}

.tfoot {
  padding: 12px 16px;
  background: rgba(38, 50, 56, 0.24);
  color: #212121;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
}

.tfoot a:link,
.tfoot a:visited,
.tfoot a:hover,
.tfoot a:active {
	color: #212121;
	text-decoration: none;
}

.thead input.textbox,
.thead select {
	border: 1px solid #263c30;
}

.tfoot input.textbox,
.tfoot select {
  border-color: #B0BEC5;
}

.preferred-threads-box {
	margin: 0 -8px 18px -8px;
}

.preferred-thread {
	background-color: #fff;
	float: left;
	margin: 0 8px;
	width: calc(50% - 16px);
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0, 0, 0, 0.24);
					box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0, 0, 0, 0.24);
	-webkit-border-radius: 4px;
					border-radius: 4px;
}

.preferred-thread-header {
	height: 128px;
	color: #FFFFFF;
	position: relative;
	padding: 16px;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
					background-size: cover;
	-webkit-border-radius: 4px 4px 0 0;
					border-radius: 4px 4px 0 0;
}

.preferred-thread-header .thread-badge {
	background-color: #607D8B;
	position: absolute;
	top: 0;
	right: 0;
	height: 32px;
	line-height: 32px;
	padding: 0 16px;
	text-transform: uppercase;
	font-size: 11px;
	-webkit-border-radius: 0 4px 0 4px;
					border-radius: 0 4px 0 4px;
}

.preferred-thread-header .thread-title {
	background-color: rgba(38, 50, 56, 0.80);
	width: 100%;
	margin: 0;
	padding: 12px 16px;
	font-size: 16px;
	font-weight: normal;
	position: absolute;
	left: 0;
	bottom: 0;
	color: #eee;
	text-transform: uppercase;
}

.preferred-thread-desc {
	margin: 0;
	padding: 16px;
}

.preferred-thread-link {
	background-color: #607D8B;
	display: block;
	height: 38px;
	line-height: 38px;
	padding: 0 16px;
	text-align: center;
	color: #f5f5f5;
	-webkit-border-radius: 0 0 4px 4px;
						border-radius: 0 0 4px 4px;
	-webkit-transition: background-color .4s ease, color .4s ease;
					transition: background-color .4s ease, color .4s ease;
}

.preferred-thread-link:hover {
	background-color: #3F51B5;
	color: #f5f5f5;
}

.expcolimage {
	background-color: rgba(38, 50, 56, 0.32);
	float: right;
	display: block;
	padding: 0 16px;
}

.expcolimage > img {
	margin: 13px 0;
}

.forum  {
	background-color: #FEFEFE;
	-webkit-transition: background-color .4s ease;
					transition: background-color .4s ease;
}

.forum:hover {
	background-color: #FAFAFA;
}

.forum > td  {
	border-bottom: 1px solid #DDD;
}

.forum:last-child > td {
	border-bottom: 0;
}

.forum:last-child > td:first-child {
	-webkit-border-radius: 0 0 0 4px;
					border-radius: 0 0 0 4px;
}

.forum:last-child > td:last-child {
	-webkit-border-radius: 0 0 4px 0;
					border-radius: 0 0 4px 0;
}

.forum-rss {
	background-color: #eee;
	color: #212121;
	height: 30px;
	width: 30px;
	display: block;
	-webkit-border-radius: 100%;
	border-radius: 100%;
	-webkit-transition: background-color .4s ease, color .2s ease;
					transition: background-color .4s ease, color .2s ease;
}

.forum-rss:hover {
	background-color: #f26522;
	color: #f5f5f5;
}

.forum-rss > i {
	line-height: 30px;
}

.forum-stats-threads,
.forum-stats-posts {
	background-color: #eee;
	padding: 0 8px 0 40px;
	height: 32px;
	line-height: 32px;
	min-width: 100px;
	display: block;
	position: relative;
	text-align: center;
	-webkit-border-radius: 4px;
					border-radius: 4px;
}

.forum-stats-threads:before,
.forum-stats-posts:before {
	background-color: #E0E0E0;
	position: absolute;
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	height: 32px;
	width: 32px;
	left: 0;
	top: 0;
	text-align: center;
	line-height: 32px;
	-webkit-border-radius: 4px 0 0 4px;
					border-radius: 4px 0 0 4px;
}

.forum-stats-threads:before {
  content: "\f040";
}

.forum-stats-posts:before {
  content: "\f086";
}

.forum-lastpost-never-button {
  background-color: #eee;
	color: #212121;
	height: 30px;
	width: 30px;
	display: inline-block;
	position: relative;
	text-indent: -9999px;
	margin-left: 8px;
	-webkit-border-radius: 100%;
	border-radius: 100%;
	-webkit-transition: background-color .4s ease, color .2s ease;
					transition: background-color .4s ease, color .2s ease;
}

.forum-lastpost-never-button:hover {
	color: #f5f5f5;
  background-color: #607D8B;
}

.forum-lastpost-never-button:before {
  content: "\f067";
	position: absolute;
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	left: calc(50% - 5.1094px);
	top: 50%;
	text-indent: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-transform: translateY(-50%);
					transform: translateY(-50%);
}

.forum-status {
	height: 30px;
	width: 30px;
	display: block;
	position: relative;
	color: #fff;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.32);
	-webkit-border-radius: 100%;
					border-radius: 100%;
}

.forum-status:before {
	content: "\f0e6";
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: 16px;
	text-rendering: auto;
	top: 50%;
	left: 50%;
	margin-left: -8px;
	margin-top: -8px;
	position: absolute;
}

.forum-status-on {
	background-color: #2196F3;
}

.forum-status-off {
	background-color: #FF9800;
}

.forum-status-offlock {
	background-color: #F44336;
}

.forum-status-offlink {
	background-color: #4CAF50;
}

.subforumicon {
	height: 10px;
	width: 10px;
	display: inline-block;
	margin: 0 5px;
	background: url('../../images/mini_status_sprite.png') no-repeat 0 0;
}

.subforum_minion {
	background-position: 0 0;
}

.subforum_minioff {
	background-position: 0 -10px;
}

.subforum_miniofflock {
	background-position: 0 -20px;
}

.subforum_miniofflink {
	background-position: 0 -30px;
}

.breadcrumb {
	margin: -16px -16px 16px -16px;
	background-color: rgba(38, 50, 56, 0.94);
	color: #f5f5f5;
	-webkit-border-radius: 4px 4px 0 0;
					border-radius: 4px 4px 0 0;
}

.breadcrumb > ol {
	margin: 0;
	padding: 0;
	list-style: none;
	vertical-align: baseline;
}

.breadcrumb > ol > li {
	float: left;
	margin-right: 4px;
}

.breadcrumb > ol > li > a,
.breadcrumb > ol > li > span {
	background-color: rgba(0, 0, 0, 0.32);
	padding: 0 16px;
	line-height: 48px;
	color: #CFD8DC;
	display: block;
}
.breadcrumb > ol > li > a {
	-webkit-transition: color .4s ease, box-shadow .4s ease;
					transition: color .4s ease, box-shadow .4s ease;
}

.breadcrumb > ol > li > a:hover {
	color: #FFFFFF;
	-webkit-box-shadow: inset 0 -3px 0 #1976D2;
					box-shadow: inset 0 -3px 0 #1976D2;
}

.breadcrumb > ol > li > span {
	color: #212121;
	background-color: #FAFAFA;
	font-weight: bold;
}

.breadcrumb > ol > li:first-child > a,
.breadcrumb > ol > li:first-child > span {
	-webkit-border-radius: 4px 0 0 0;
					border-radius: 4px 0 0 0;
}

.index-boardstats {
	margin: 0 -8px;
}

.index-boardstats-stats {
	background-color: #607D8B;
	height: 48px;
	width: calc(20% - 16px);
	margin: 0 8px;
	float: left;
	cursor: help;
	-webkit-border-radius: 4px;
					border-radius: 4px;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0 ,0, 0, 0.24);
					box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0 ,0, 0, 0.24);
	-webkit-transition: background-color .4s ease;
					transition: background-color .4s ease;
}

.index-boardstats-numposts:hover {
	background-color: #3F51B5;
}

.index-boardstats-numthreads:hover {
	background-color: #E84E40;
}

.index-boardstats-numusers:hover {
	background-color: #03A9F4;
}

.index-boardstats-onlinecount:hover {
	background-color: #8CC34A;
}

.index-boardstats-recordcount:hover {
	background-color: #009688;
}

.index-boardstats-stats-info,
.index-boardstats-stats-icon {
	height: 48px;
}

.index-boardstats-stats-info {
	float: left;
	width: calc(100% - 48px);
	text-align: center;
	padding: 16px;
	line-height: 16px;
	-webkit-border-radius: 4px 0 0 4px;
					border-radius: 4px 0 0 4px;
}

.index-boardstats-stats-info > .key,
.index-boardstats-stats-info > .val {
	float: left;
}

.index-boardstats-stats-info > .key {
	color: rgba(255, 255, 255, 0.64);
	font-size: 13px;
	text-transform: uppercase;
	border-right: 2px solid rgba(255, 255, 255, 0.24);
	padding-right: 8px;
	margin-right: 8px;
}

.index-boardstats-stats-info > .val {
	color: rgba(255, 255, 255, 0.80);
	font-size: 16px;
}

.index-boardstats-stats-icon {
	background-color: rgba(0, 0, 0, 0.24);
	float: right;
	width: 48px;
	text-align: center;
	-webkit-border-radius: 0 4px 4px 0;
					border-radius: 0 4px 4px 0;
}

.index-boardstats-stats-icon > i {
	font-size: 24px;
	line-height: 48px;
	color: #CFD8DC;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.24);
}

.index-boardstats-menu {
	float: right;
	margin: -12px -16px;
	height: 32px;
	line-height: 32px;
	font-size: 11px;
}

.index-boardstats-menu > ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.index-boardstats-menu > ul > li {
	float: left;
}

.index-boardstats-menu > ul > li > a {
	display: block;
	padding: 0 16px;
	-webkit-transition: background-color .4s ease;
					transition: background-color .4s ease;
}

.index-boardstats-menu > ul > li:last-child > a {
	-webkit-border-radius: 0 0 4px 0;
					border-radius: 0 0 4px 0;
}

.index-boardstats-menu > ul > li > a:hover {
	background-color: #FFFFFF;
}

.bottom-menu {
	margin: 16px -16px -16px -16px;
	background-color: rgba(38, 50, 56, 0.94);
	-webkit-border-radius: 0 0 4px 4px;
					border-radius: 0 0 4px 4px;
}

.bottom-menu > ul {
	margin: 0;
	padding: 0;
	list-style: none;
	vertical-align: baseline;
}

.bottom-menu > ul > li {
	float: left;
}

.bottom-menu > ul > li > a {
	height: 38px;
	line-height: 38px;
	padding: 0 16px;
	color: #CFD8DC;
	display: block;
	-webkit-transition: background-color .4s ease, color .4s ease;
					transition: background-color .4s ease, color .4s ease;
}

.bottom-menu > ul > li > a:hover {
	background-color: #1976D2;
	color: #FFFFFF;
}

.current-time {
	line-height: 38px;
	margin-right: 16px;
	color: #CFD8DC;
}

.footer {
	background-image: url('../images/flat-bg.png');
	background-position: center;
	background-repeat: no-repeat;
	height: auto;
	color: #fff;
	position: relative;
	margin-top: -64px;
	z-index: 1;
	padding-top: 96px;
	-webkit-background-size: cover;
					background-size: cover;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0 ,0, 0, 0.24);
					box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0 ,0, 0, 0.24);
}

.footer-panel {
	background-color: rgba(38, 50, 56, 0.94);
	height: 48px;
	color: #CFD8DC;
	position: relative;
}

.copyright {
	float: left;
	line-height: 48px;
}

.copyright > a {
	color: #CFD8DC;
	-webkit-transition: color .4s ease;
	transition: color .4s ease;
}

.copyright > a:hover {
	color: #FFFFFF;
	text-decoration: none;
	border-bottom: 1px solid #FFFFFF;
}

.erdalmedet {
	float: right;
	color: #CFD8DC;
	line-height: 48px;
	-webkit-transition: color .4s ease;
	transition: color .4s ease;
}

.erdalmedet:hover {
	color: #FFFFFF;
}

.erdalmedet > .fa-code {
	color: #1976D2;
}

.erdalmedet > .fa-heart {
	color: #E91E63;
}

.returntop {
	position: absolute;
	height: 48px;
	width: 48px;
	text-align: center;
	color: #CFD8DC;
	background-color: #1976D2;
	left: calc(50% - 24px);
	top: -24px;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0, 0, 0, 0.24);
					box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0, 0, 0, 0.24);
	-webkit-transition: color .4s ease;
					transition: color .4s ease;
	-webkit-border-radius: 100%;
					border-radius: 100%;
}

.returntop:hover {
	color: #FFFFFF;
}

.returntop > i {
	line-height: 48px;
	font-size: 16px;
}

.quick-login-form {
	margin: 0 8px;
}

.quick-login-form > label {
	cursor: pointer;
}

.quick-login-form > input[type="text"],
.quick-login-form > input[type="password"] {
	background-color: #CFD8DC;
	color: #212121;
	border: 0;
	outline: 0;
	padding: 0 16px;
	height: 42px;
	font-size: 16px;
	width: 100%;
	-webkit-transition: background-color .4s ease;
					transition: background-color .4s ease;
}

.quick-login-form > input[type="text"]::-webkit-input-placeholder,
.quick-login-form > input[type="password"]::-webkit-input-placeholder {
   color: #212121;
}

.quick-login-form > input[type="text"]:-moz-placeholder,
.quick-login-form > input[type="password"]:-moz-placeholder {
   color: #212121;
}

.quick-login-form > input[type="text"]::-moz-placeholder,
.quick-login-form > input[type="password"]::-moz-placeholder {
   color: #212121;
}

.quick-login-form > input[type="text"]:-ms-input-placeholder,
.quick-login-form > input[type="password"]:-ms-input-placeholder {
   color: #212121;
}

.quick-login-form > input[type="text"]:focus,
.quick-login-form > input[type="password"]:focus {
	background-color: #B0BEC5;
}

.quick-login-form > .quick-remember {
	background-color: #009688;
	padding: 8px 16px;
	color: #CFD8DC;
	display: block;
	margin-bottom: 8px;
	-webkit-transition: color .4s ease;
					transition: color .4s ease;
}

.quick-login-form > .quick-remember:hover {
	color: #FFFFFF;
}

.quick-login-form > .quick-remember > input[type="checkbox"] {
	vertical-align: middle;
}

.quick-login-form > .quick-login-bottom {
	position: relative;
	margin: 8px -8px;
}

.quick-login-form > .quick-login-bottom > input[type="submit"],
.quick-login-form > .quick-login-bottom > .quick-register {
	height: 40px;
	width: calc(50% - 8px);
	color: #CFD8DC;
	padding: 0 16px;
	text-align: center;
	line-height: 40px;
	text-transform: uppercase;
	-webkit-transition: color .4s ease;
					transition: color .4s ease;
}

.quick-login-form > .quick-login-bottom > input[type="submit"] {
	background: #3F51B5;
	border: 0;
	margin: 0;
	float: left;
}

.quick-login-form > .quick-login-bottom > .quick-register {
	background-color: #43A047;
	display: block;
	float: right;
}

.quick-login-form > .quick-login-bottom > input[type="submit"]:hover,
.quick-login-form > .quick-login-bottom > .quick-register:hover {
	color: #FFFFFF;
}

.quick-login-form > input[type="text"],
.quick-login-form > input[type="password"],
.quick-login-form > .quick-remember,
.quick-login-form > .quick-login-bottom > input[type="submit"],
.quick-login-form > .quick-login-bottom > .quick-register {
	-webkit-border-radius: 4px;
					border-radius: 4px;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0, 0, 0, 0.24);
					box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0, 0, 0, 0.24);
}

.forumdisplay-nothreads {
  background-color: #607D8B;
	padding: 12px 16px 12px 48px;
  position: relative;
  color: #FAFAFA;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0, 0, 0, 0.24);
  				box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0, 0, 0, 0.24);
  -webkit-border-radius: 4px;
  				border-radius: 4px;
}

.forumdisplay-nothreads:before {
  font: normal normal normal 14px/1 FontAwesome;
  text-rendering: auto;
  position: absolute;
  content: "\f06a";
  top: calc(50% - 8px);
  left: 16px;
  text-align: center;
  font-size: 16px;
  -webkit-border-radius: 4px 0 0 4px;
  				border-radius: 4px 0 0 4px;
}

.forumdisplay-moderatedby,
.forumdisplay-usersbrowsing,
.showthread-usersbrowsing {
  background-color: #EEEEEE;
	padding: 12px 16px 12px 48px;
  position: relative;
  color: #212121;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0, 0, 0, 0.24);
  				box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0, 0, 0, 0.24);
  -webkit-border-radius: 4px;
  				border-radius: 4px;
}

.forumdisplay-moderatedby:before,
.forumdisplay-usersbrowsing:before,
.showthread-usersbrowsing:before {
  font: normal normal normal 14px/1 FontAwesome;
  text-rendering: auto;
  position: absolute;
  top: calc(50% - 8px);
  left: 16px;
  text-align: center;
  font-size: 16px;
  -webkit-border-radius: 4px 0 0 4px;
  				border-radius: 4px 0 0 4px;
}

.forumdisplay-moderatedby:before {
  content: "\f02e";
}

.forumdisplay-usersbrowsing:before,
.showthread-usersbrowsing:before {
  content: "\f06e";
}

.post {
	background-color: #FFFFFF;
	overflow: hidden;
}

.postbit-post-panel {
	background-color: #607D8B;
	color: #FAFAFA;
	height: 40px;
	line-height: 40px;
}

.postbit-post-username {
	float: left;
	width: 224px;
	text-align: center;
	font-size: 16px;
}

.postbit-post-username > a {
	color: #F5F5F5;
}

.postbit-post-head {
    float: right;
    width: calc(100% - 224px);
    padding: 0 16px;
}

.postbit-post-head a {
	color: #F5F5F5;
}

.postbit-post-author {
	border: 0;
	float: left;
	width: 224px;
	padding: 16px;
}

.postbit-post-usertitle {
	text-align: center;
	margin-bottom: 16px;
}

.postbit-post-usertitle > span {
	background-color: #03A9F4;
	color: #FFFFFF;
	padding: 4px 8px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
}

.postbit-post-userstars {
	text-align: center;
	margin-bottom: 16px;
}

.postbit-post-userstars > img {
	margin: 0 1px;
	vertical-align: middle;
}

.postbit-author-avatar {
	position: relative;
	text-align: center;
	margin-bottom: 12px;
}

.postbit-author-avatar > a > img {
	height: 100px;
	width: 100px;
	padding: 4px;
	border: 4px solid #ecf0f1;
	-webkit-border-radius: 100%;
					border-radius: 100%;
	-webkit-transition: transform .4s ease, border .4s ease;
					transition: transform .4s ease, border .4s ease;
}

.postbit-author-avatar > a > img:hover {
	border-color: #607D8B;
	-webkit-transform: rotate(360deg);
  				transform: rotate(360deg);
}

.postbit-buddy-status {
	position: absolute;
	top: 8px;
	right: calc(50% - 50px);
	text-indent: -9999px;
	height: 20px;
	width: 20px;
	border-radius: 100%;
	padding: 4px;
	border: 4px solid #fff;
}

.postbit-online {
	background-color: #27ae60;
}

.postbit-offline {
	background-color: #c0392b;
	cursor: help;
}

.postbit-away {
	background-color: #f39c12;
}

.postbit-author-information {
	text-align: center;
	margin-bottom: 12px;
}

.postbit-author-statistics > ul {
	margin: 0;
	padding: 0;
	list-style: none;
	vertical-align: baseline;
	-webkit-border-radius: 4px;
					border-radius: 4px;
}

.postbit-author-statistics > ul > li {
	font-size: 11px;
	background-color: #ecf0f1;
	margin-bottom: 4px;
	border-radius: 24px;
	height: 24px;
	line-height: 24px;
}

.postbit-author-statistics > ul > li > .key,
.postbit-author-statistics > ul > li > .value {
	width: 50%;
}

.postbit-author-statistics > ul > li > .key {
	text-align: right;
	float: left;
	padding-right: 2px;
}

.postbit-author-statistics > ul > li > .value {
	text-align: left;
	float: right;
	padding-left: 2px;
}

.postbit-post-content {
	float: right;
	width: calc(100% - 224px);
	padding: 16px;
}

.postbit-post-body {
	font-size: 13px;
	padding: 0 0 16px 0;
}

.postbit-post-edit {
	background-color: #F5F5F5;
	padding: 8px 16px;
	margin-bottom: 16px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
}

.postbit-post-edit > .edited-post > .edited-username > a {
	color: #0D47A1;
}

.postbit-post-content .signature {
	border-top: 1px dotted #ddd;
	padding: 16px 0;
}

.postbit-post-meta {
	font-size: 11px;
	color: #999;
}

.postbit-post-meta a:link,
.postbit-post-meta a:visited {
	color: #777;
}

.postbit-post-meta a:hover,
.postbit-post-meta a:active {
	color: #777;
}

.postbit-post-controls {
  background-color: #F5F5F5;
  clear: both;
  overflow: hidden;
}

.postbit-buttons > a:link,
.postbit-buttons > a:hover,
.postbit-buttons > a:visited,
.postbit-buttons > a:active {
	float: left;
	padding: 12px 16px;
	font-size: 11px;
	color: #212121;
	-webkit-transition: background-color .4s ease, box-shadow .2s ease;
	transition: background-color .4s ease, box-shadow .2s ease;
}

.postbit-buttons > a:hover {
	background-color: #FFFFFF;
}

.postbit-buttons > a:active {
	-webkit-box-shadow: inset 0 -2px 0 #1976D2;
	box-shadow: inset 0 -2px 0 #1976D2;
}

.postbit-buttons a span {
	float: left;
	padding-left: 24px;
	float: left;
	height: 16px;
	background-image: url('../../images/buttons_sprite.png');
	background-repeat: no-repeat;
}

.postbit-buttons a.postbit_find span {
	background-position: 0 0;
}

.postbit-buttons a.postbit_reputation_add span {
	background-position: 0 -20px;
}

.postbit-buttons a.postbit_email span {
	background-position: 0 -40px;
}

.postbit-buttons a.postbit_website span {
	background-position: 0 -60px;
}

.postbit-buttons a.postbit_pm span {
	background-position: 0 -80px;
}

.postbit-buttons a.postbit_quote span {
	background-position: 0 -100px;
}

.postbit-buttons a.postbit_multiquote span {
	background-position: 0 -120px;
}

.postbit-buttons a.postbit_multiquote_on span {
	background-position: 0 -140px;
}

.postbit-buttons a.postbit_edit span {
	background-position: 0 -160px;
}

.postbit-buttons a.postbit_qdelete span {
	background-position: 0 -180px;
}

.postbit-buttons a.postbit_qrestore span {
	background-position: 0 -200px;
}

.postbit-buttons a.postbit_report span {
	background-position: 0 -220px;
}

.postbit-buttons a.postbit_warn span {
	background-position: 0 -240px;
}

.postbit-buttons a.postbit_purgespammer span {
	background-position: 0 -540px;
}

.postbit-buttons a.postbit_reply_pm span {
	background-position: 0 -260px;
}

.postbit-buttons a.postbit_reply_all span {
	background-position: 0 -280px;
}

.postbit-buttons a.postbit_forward_pm span {
	background-position: 0 -300px;
}

.postbit-buttons a.postbit_delete_pm span {
	background-position: 0 -320px;
}

a.button {
	text-decoration: none;
	color: #F5F5F5;
	background-color: #3F51B5;
	height: 36px;
	line-height: 36px;
	display: inline-block;
	text-align: center;
	letter-spacing: .5px;
	padding: 0 16px;
	font-size: 14px;
	text-transform: uppercase;
	-webkit-border-radius: 2px;
					border-radius: 2px;
	-webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16),
											0 2px 10px 0 rgba(0, 0, 0, 0.12);
					box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16),
											0 2px 10px 0 rgba(0, 0, 0, 0.12);
	-webkit-transition: all .3s ease-out;
					transition: all .3s ease-out;
}

a.button:hover {
	-webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18),
											0 4px 15px 0 rgba(0, 0, 0, 0.15);
					box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18),
											0 4px 15px 0 rgba(0, 0, 0, 0.15);
}

.pagination {
	font-size: 11px;
}

.pagination .pages,
.pagination_first,
.pagination_previous,
.pagination_page,
.pagination_current,
.pagination_next,
.pagination_last,
.go_page {
	float: left;
	margin-right: 4px;
	font-weight: bold;
	height: 28px;
	line-height: 28px;
	display: inline-block;
	padding: 0 8px;
	color: #F5F5F5 !important;
	-webkit-border-radius: 2px;
					border-radius: 2px;
	-webkit-transition: all .3s ease-out;
					transition: all .3s ease-out;
}

.pagination_previous i,
.pagination_next i,
.go_page i {
	line-height: 28px;
	font-size: 10px;
}

.pagination_previous:hover,
.pagination_first:hover,
.pagination_page:hover,
.pagination_next:hover,
.pagination_last:hover,
.go_page:hover {
	background-color: #455A64;
}

.pagination .pages {
	background-color: #607D8B;
}

.pagination_page {
	background-color: #009688;
}

.pagination_first,
.pagination_last {
	background-color: #4CAF50;
}

.pagination_current {
	background-color: #3F51B5;
}

.pagination_previous,
.pagination_next,
.go_page {
	background-color: #2196F3;
}

.pagination_breadcrumb {
	background-color: #efefef;
	border: 1px solid #FFFFFF;
	outline: 1px solid #ccc;
	padding: 5px;
	margin-top: 5px;
	font-weight: normal;
}

.pagination_breadcrumb_link {
	vertical-align: middle;
	cursor: pointer;
}

span.thread_views {
  line-height: 42px;
  padding: 0 16px;
}

.oldest_newest_thread {
	float: left;
}

.oldest_newest_thread a {
	background-color: #3F51B5;
	float: left;
	height: 28px;
	width: 28px;
	text-align: center;
}

.oldest_newest_thread a i {
	line-height: 28px;
	color: #F5F5F5;
	font-size: 10px;
}

.oldest_newest_thread a:first-child {
	margin-right: 2px;
	-webkit-border-radius: 2px 0 0 2px;
					border-radius: 2px 0 0 2px;
}

.oldest_newest_thread a:last-child {
	margin-left: 2px;
	-webkit-border-radius: 0 2px 2px 0;
					border-radius: 0 2px 2px 0;
}

input.textbox {
	font-family: Tahoma, Verdana, Arial, Sans-Serif;
	background: #FFFFFF;
	height: 28px;
	line-height: 28px;
	color: #212121;
	border: 1px solid #CFD8DC;
	padding: 0 8px;
	outline: 0;
	font-size: 13px;
	-webkit-border-radius: 2px;
					border-radius: 2px;
}

textarea {
	font-family: Tahoma, Verdana, Arial, Sans-Serif;
	background: #FFFFFF;
	color: #212121;
	border: 1px solid #CFD8DC;
	padding: 8px !important;
	outline: 0;
	font-size: 13px;
	-webkit-border-radius: 4px;
					border-radius: 4px;
}

select {
	font-family: Tahoma, Verdana, Arial, Sans-Serif;
	background: #FFFFFF;
	padding: 0 8px;
	min-height: 28px;
	line-height: 28px;
	border: 1px solid #CFD8DC;
	outline: 0;
	font-size: 13px;
	-webkit-border-radius: 2px;
					border-radius: 2px;
}

button,
input.button {
	font-family: Tahoma, Verdana, Arial, Sans-Serif;
	background: #3F51B5;
	height: 28px;
	border: 0;
	padding: 0 8px;
	cursor: pointer;
	font-size: 13px;
	color: #F5F5F5;
	outline: 0;
	-webkit-border-radius: 2px;
					border-radius: 2px;
}

blockquote {
	margin: 0;
	background: #FFF3E0;
	padding: 12px 16px;
	-webkit-border-radius: 4px;
					border-radius: 4px;
}

blockquote cite {
	background-color: #FFE0B2;
	font-weight: bold;
	font-style: normal;
	display: block;
	padding: 8px 16px;
	margin: -12px -16px 12px -16px;
	-webkit-border-radius: 4px 4px 0 0;
					border-radius: 4px 4px 0 0;
}

blockquote cite span {
	float: right;
	font-weight: normal;
	font-size: 12px;
	color: #666;
}

blockquote cite span.highlight {
	float: none;
	font-weight: bold;
	padding-bottom: 0;
}

.codeblock {
  background: #F5F5F5;
  padding: 12px 16px;
  overflow: hidden;
	-webkit-border-radius: 4px;
					border-radius: 4px;
}

.codeblock .title {
	display: none;
}

.codeblock code {
	overflow: auto;
	height: auto;
	max-height: 200px;
	display: block;
	font-family: Consolas, Courier, monospace;
	font-size: 13px;
}

.bottommenu {
	background: #efefef;
	color: #333;
	border: 1px solid #4874a3;
	padding: 10px;
}

.smalltext {
	font-size: 11px;
}

.largetext {
	font-size: 16px;
	font-weight: bold;
}

fieldset {
	padding: 12px;
	border: 1px solid #ddd;
	margin: 0;
	-webkit-border-radius: 4px;
					border-radius: 4px;
}

fieldset.trow1,
fieldset.trow2 {
	border-color: #bbb;
}

fieldset.align_right {
	text-align: right;
}

form {
	margin: 0;
	padding: 0;
}

input.error,
textarea.error,
select.error {
	border: 1px solid #f30;
	color: #f30;
}

input.valid,
textarea.valid,
select.valid {
	border: 1px solid #0c0;
}

label.error {
	color: #f30;
	margin: 5px;
	padding: 0px;
	display: block;
	font-weight: bold;
	font-size: 11px;
}

form #message {
	width: 500px;
}

.editor {
	background: #f1f1f1;
	border: 1px solid #ccc;
}

.editor_control_bar {
	background: #FFFFFF;
	border: 1px solid #ccc;
}

.post .editor_control_bar {
	background: #f5f5f5;
}

.scaleimages img {
	max-width: 100%;
}

.popup_menu {
	background: #FFFFFF;
	border: 1px solid #ccc;
	z-index: 2;
}

.popup_menu .popup_item {
	background: #efefef;
	color: #333;
}

.popup_menu .popup_item:hover {
	background: #0072BC;
	color: #FFFFFF;
}

.trow_reputation_positive {
	background: #ccffcc;
}

.trow_reputation_negative {
	background: #ffcccc;
}

.reputation_positive {
	color: green;
}

.reputation_neutral {
	color: #444;
}

.reputation_negative {
	color: red;
}

.repbox {
	font-size:16px;
	font-weight: bold;
	padding:5px 7px 5px 7px;
}

._neutral {
	background-color:#FAFAFA;
	color: #999999;
	border:1px solid #CCCCCC;
}

._minus {
	background-color: #FDD2D1;
	color: #CB0200;
	border:1px solid #980201;
}

._plus {
	background-color:#E8FCDC;
	color: #008800;
	border:1px solid #008800;
}

.selectall {
	background-color: #FFFBD9;
	text-align: center;
}

.smilie {
	vertical-align: middle;
}

.smilie_pointer {
	cursor: pointer;
}

.separator {
	margin: 5px;
	padding: 0;
	height: 0px;
	font-size: 1px;
	list-style-type: none;
}

.popup_menu .popup_item_container {
	margin: 1px;
	text-align: left;
}

.popup_menu .popup_item {
	display: block;
	padding: 4px;
	white-space: nowrap;
	text-decoration: none;
}

.popup_menu a.popup_item:hover {
	text-decoration: none;
}

.subject_new {
	font-weight: bold;
}

.highlight {
	background: #FFFFCC;
	padding-top: 3px;
	padding-bottom: 3px;
}

.pm_alert {
	position: fixed;
	width: 420px;
	bottom: 16px;
	right: 16px;
	background-color: #4CAF50;
	color: #F5F5F5;
	text-align: center;
	padding: 8px 16px;
	font-size: 11px;
	z-index: 2;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0, 0, 0, 0.24);
  				box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0, 0, 0, 0.24);
  -webkit-border-radius: 4px;
  				border-radius: 4px;
}

.pm_alert a {
	color: #FFFFFF;
}

.pm_alert a:hover {
	border-bottom: 1px solid;
}

.red_alert {
	color: #A5161A;
	text-align: center;
	margin-bottom: 18px;
	font-size: 11px;
	background-color: #F44336;
	padding: 12px 16px;
	color: #FAFAFA;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0, 0, 0, 0.24);
  				box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0, 0, 0, 0.24);
  -webkit-border-radius: 4px;
  				border-radius: 4px;
}

.red_alert a {
	color: #FFFFFF;
}

.red_alert a:hover {
	border-bottom: 1px solid;
}

.high_warning {
	color: #CC0000;
}

.moderate_warning {
	color: #F3611B;
}

.low_warning {
	color: #AE5700;
}

div.error {
	background-color: #FF9800;
	font-size: 12px;
	padding: 16px;
	color: #FAFAFA;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0, 0, 0, 0.24);
  				box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0, 0, 0, 0.24);
  -webkit-border-radius: 4px;
  				border-radius: 4px;
}

div.error p {
	margin: 0;
	color: #FFFFFF;
	font-weight: normal;
}

div.error p em {
	font-style: normal;
	font-weight: bold;
	padding-left: 24px;
	display: block;
	background: url('../../images/error.png') no-repeat 0;
}

div.error ul {
	margin-left: 24px;
}

.thread_legend,
.thread_legend dd {
	margin: 0;
	padding: 0;
}

.thread_legend dd {
	padding-bottom: 4px;
	margin-right: 15px;
}

.thread_legend img {
	margin-right: 4px;
	vertical-align: bottom;
}

.forum_legend,
.forum_legend dt,
.forum_legend dd {
	margin: 0;
	padding: 0;
}

.forum_legend dd {
	float: left;
	margin-right: 10px;
	margin-top: 7px;
}

.forum_legend dt {
	margin-right: 10px;
	float: left;
}

.success_message {
	color: #00b200;
	font-weight: bold;
	font-size: 10px;
	margin-bottom: 10px;
}

.error_message {
	color: #C00;
	font-weight: bold;
	font-size: 10px;
	margin-bottom: 10px;
}

#posts_container {
	padding: 0;
}

.ignored_post {
	border-top: 3px solid #333;
	padding: 15px;
}

.ignored_post .show_ignored_post {
	margin-top: -15px;
}

.ignored_post .show_ignored_post a.button span {
	background-position: 0 -400px;
}

.quick_jump {
	background: url('../../images/jump.png') no-repeat 0;
	width: 13px;
	height: 13px;
	padding-left: 13px;
	margin-top: -3px;
	border: none;
}

.pollbar {
	background: url('../../images/pollbar.png') top left repeat-x;
	border: 1px solid #3f3f3f;
	height: 10px;
}

.pollbar .percent {
	display: none;
}

.posticons_label {
	white-space: nowrap;
}

.pms_top_menu {
	background-color: #F5F5F5;
	color: #212121;
	padding: 0;
	border: 0;
	height: 36px;
	line-height: 36px;
	font-size: 12px;
	border: 1px solid #E0E0E0;
	-webkit-border-radius: 4px;
					border-radius: 4px;
}

.pms_top_menu a {
	padding: 0 8px;
	float: left;
	color: #212121;
	display: block;
	border-right: 1px solid #E0E0E0;
	-webkit-transition: background-color .4s ease;
					transition: background-color .4s ease;
}

.pms_top_menu:first-child a {
	-webkit-border-radius: 4px 0 0 4px;
					border-radius: 4px 0 0 4px;
}

.pms_top_menu a:hover {
	background-color: #FFFFFF;
}

.private_read_to {
	margin-bottom: 16px;
}

.member_profile {
	background-image: url('../images/member_profile_bg.png');
	background-color: #EEEEEE;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	height: auto;
	border: 0;
	padding: 0;
	height: 200px;
	position: relative;
	z-index: 1;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0, 0, 0, 0.24);
  				box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0, 0, 0, 0.24);
  -webkit-border-radius: 4px;
  				border-radius: 4px;
}

.member_profile_upper {
	position: absolute;
	height: 64px;
	bottom: 64px;
	left: 0;
	width: 100%;
}

.member_profile_upper img.avatar {
	position: absolute;
	left: 16px;
	bottom: -48px;
	height: 128px;
	width: 128px;
	z-index: 2;
	-webkit-border-radius: 100%;
					border-radius: 100%;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0, 0, 0, 0.24);
  				box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0, 0, 0, 0.24);
}

.member_profile_user_info {
	margin-left: 160px;
	float: left;
}

.member_profile_user_info .formattedname {
  font-size: 24px;
}

.member_profile_user_info .formattedname .usertitle {
	font-size: 13px;
	background-color: rgba(0, 0, 0, 0.64);
	padding: 4px 8px;
	color: #F5F5F5;
	vertical-align: middle;
	margin-left: 4px;
	-webkit-border-radius: 2px;
					border-radius: 2px;
}

.member_profile_status {
	background-color: rgba(0, 0, 0, 0.24);
	height: 40px;
	line-height: 40px;
	color: #F5F5F5;
	margin-top: 8px;
	-webkit-border-radius: 4px 0 0 4px;
					border-radius: 4px 0 0 4px;
}

.member_profile_status a {
	color: #FFFFFF;
}

.member_profile_status a:hover {
	border-bottom: 1px solid;
}

.member_profile_status .online,
.member_profile_status .offline {
	height: 40px;
	line-height: 40px;
	padding: 0 16px;
	display: block;
	float: left;
	text-align: center;
	-webkit-border-radius: 4px 0 0 4px;
					border-radius: 4px 0 0 4px;
}

.member_profile_status .online {
	background-color: #1B5E20;
}

.member_profile_status .offline {
	background-color: #263238;
}

.member_profile_lower {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 64px;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.64);
	-webkit-border-radius: 0 0 4px 4px;
  				border-radius: 0 0 4px 4px;
}

.member_profile_forum_info {
	margin-left: 160px;
	float: left;
}

.member_profile_forum_info ul {
	margin: 16px -16px;
	padding: 0;
	list-style: none;
	vertical-align: baseline;
}

.member_profile_forum_info ul li {
	float: left;
	height: 32px;
	margin: 0 16px;
	color: #F5F5F5;
}

.member_profile_forum_info ul li .key {
	height: 16px;
	display: block;
	text-transform: uppercase;
	font-size: 11px;
}

.member_profile_forum_info ul li .value {
	height: 16px;
	display: block;
	color: #E0E0E0;
}

.member_profile_banned,
.member_profile_away {
	background-color: #F44336;
	border: 0;
	padding: 16px;
	color: #F5F5F5;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0, 0, 0, 0.24);
  				box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0, 0, 0, 0.24);
}

.member_profile_banned {
	background-color: #F44336;
}

.member_profile_away {
	background-color: #FF9800;
}

.member_profile_banned legend,
.member_profile_away legend {
	padding: 12px 16px;
	background-color: #FAFAFA;
	text-transform: uppercase;
	-webkit-border-radius: 4px;
					border-radius: 4px;
}

.member_profile_banned legend {
	color: #B71C1C;
}

.member_profile_away legend {
	color: #E65100;
}

.member_profile_banned a,
.member_profile_away a {
	color: #FFFFFF;
}

.member_profile_banned a:hover,
.member_profile_away a:hover {
	border-bottom: 1px solid;
}

.index-whosonline-icon,
.index-birthdays-icon,
.index-week-promise-icon,
.index-legal-warning-icon {
	height: 30px;
	width: 30px;
	display: block;
	position: relative;
	text-indent: -9999px;
	color: #fff;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.32);
	-webkit-border-radius: 100%;
					border-radius: 100%;
}

.index-whosonline-icon {
	background-color: #4CAF50;
}

.index-birthdays-icon {
	background-color: #9C27B0;
}

.index-week-promise-icon {
	background-color: #009688;
}

.index-legal-warning-icon {
	background-color: #F44336;
}

.index-whosonline-icon:before,
.index-birthdays-icon:before,
.index-week-promise-icon:before,
.index-legal-warning-icon:before {
	position: absolute;
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: 16px;
	text-rendering: auto;
	color: #FFFFFF;
	top: 50%;
	text-indent: 0;
	-webkit-transform: translateY(-50%);
					transform: translateY(-50%);
}

.index-whosonline-icon:before {
	content: "\f0ac";
	left: calc(50% - 6.86px);
}

.index-birthdays-icon:before {
	content: "\f06b";
	left: calc(50% - 6.2px);
}

.index-week-promise-icon:before {
	content: "\f02d";
	left: calc(50% - 7.43px);
}

.index-legal-warning-icon:before {
	content: "\f071";
	left: calc(50% - 8px);
}

.pure-user-panel-toggle {
	display: none;
}

.pure-user-panel-toggle-menu {
  display: none;
	position: absolute;
	background-color: rgba(255, 255, 255, 0.98);
	color: #212121;
	margin: 0;
	padding: 0;
	top: 40px;
  left: 4px;
	list-style: none;
	z-index: 3;
	min-width: 200px;
	overflow: hidden;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30),
											0 15px 12px rgba(0, 0, 0, 0.22);
					box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30),
											0 15px 12px rgba(0, 0, 0, 0.22);
}

.pure-user-panel-toggle:checked + .pure-user-panel-toggle-menu {
  display: block;
}

.pure-user-panel-toggle-menu li {
	display: block;
}

.pure-user-panel-toggle-menu li span,
.pure-user-panel-toggle-menu li a {
	padding: 8px 16px;
	display: block;
}

.pure-user-panel-toggle-menu li a {
	color: #212121;
}

.pure-user-panel-toggle-menu li.toggle-menu-title span {
	background-color: #607D8B;
	color: #f5f5f5;
	text-transform: uppercase;
	font-size: 12px;
}

.pure-user-panel-toggle-menu li.toggle-menu-title:first-child span {
	-webkit-border-radius: 4px 4px 0 0;
					border-radius: 4px 4px 0 0;
}

.pure-user-panel-toggle-menu li.toggle-menu-title:last-child a {
	-webkit-border-radius: 0 0 4px 4px;
					border-radius: 0 0 4px 4px;
}

.pure-user-panel-toggle-menu li.toggle-menu-item a {
	-webkit-transition: background-color .4s ease, border .2s ease;
					transition: background-color .4s ease, border .2s ease;
}

.pure-user-panel-toggle-menu li.toggle-menu-item a:hover {
	background-color: #ecf0f1;
  border-left: 4px solid #1976D2;
}

.legal-warning > .site-url {
	font-family: Consolas, monospace;
	background-color: #eee;
	padding: 2px 5px;
	border: 1px solid #ddd;
	-webkit-border-radius: 2px;
					border-radius: 2px;
}

.sceditor-toolbar {
	box-sizing: content-box !important;
}

.div.jqi .jqibuttons button {
	border-radius: 0 !important;
	padding: 0 !important;
}

#goog-fixurl .content {
	margin: 0 !important;
}

.footer-content {
	margin: 0 -16px 56px -16px;
	color: #f5f5f5;
}

.footer-site-desc,
.footer-preferred-cats,
.footer-preferred-threads,
.footer-contact {
	padding: 0;
	margin: 0 16px;
	width: calc(25% - 32px);
	float: left;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.24);
}

.footer-site-desc-title,
.footer-preferred-cats-title,
.footer-preferred-threads-title,
.footer-contact-title {
	font-size: 16px;
	margin: 0 0 12px 0;
	padding: 0 0 12px 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	border-bottom: 2px dashed #eee;
}

.footer-site-desc-content {
	margin: 0 0 12px 0;
	padding: 0;
}

.footer-site-desc-more-link {
	color: #f5f5f5;
	padding: 0 16px;
	border: 2px solid #f5f5f5;
	display: inline-block;
	text-align: center;
	height: 38px;
	line-height: 34px;
	text-shadow: none;
	-webkit-border-radius: 38px;
					border-radius: 38px;
	-webkit-transition: background-color .4s ease, color .2s ease;
  				transition: background-color .4s ease, color .2s ease;
}

.footer-site-desc-more-link:hover {
	background-color: #f5f5f5;
	color: #212121;
}

.footer-preferred-cats-content,
.footer-preferred-threads-content {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-preferred-cats-content > li,
.footer-preferred-threads-content > li {
	margin-bottom: 8px;
}

.footer-preferred-cats-content > li:last-child,
.footer-preferred-threads-content > li:last-child {
	margin-bottom: 0;
}

.footer-preferred-cats-content > li > a,
.footer-preferred-threads-content > li > a {
	color: #f5f5f5;
	border-left: 4px solid #f5f5f5;
	padding-left: 8px;
	-webkit-transition: margin .4s ease;
					transition: margin .4s ease;
}

.footer-preferred-cats-content > li > a:hover,
.footer-preferred-threads-content > li > a:hover {
	margin-left: 16px;
}

.footer-contact-link {
	margin-bottom: 12px;
}

.footer-contact-link > a {
	color: #f5f5f5;
	border-bottom: 1px dotted;
}

.footer-contact-link > a:hover {
	border-bottom: 1px solid;
}

.footer-contact-or-text {
	text-align: center;
	margin-bottom: 12px;
}

.footer-contact-or-text > fieldset {
	border: 0;
	border-top: 1px solid #dfdfdf;
	padding: 0;
	margin: 0 auto;
	width: 100px;
	-webkit-border-radius: 0;
					border-radius: 0;
}

.footer-contact-or-text > fieldset > legend {
	padding: 0 8px;
}

.footer-contact-items {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-contact-items > li {
	margin-bottom: 12px;
	height: 30px;
	line-height: 30px;
	font-size: 16px;
}

.footer-contact-items > li:last-child {
	margin-bottom: 0;
}

.footer-contact-items > li > i {
	height: 30px;
	width: 30px;
	text-align: center;
	line-height: 30px;
	margin-right: 8px;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.32);
	-webkit-border-radius: 100%;
					border-radius: 100%;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0, 0, 0, 0.24);
					box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
											0 1px 2px rgba(0, 0, 0, 0.24);
}

.footer-contact-items > li.phone > i {
	background-color: #009688;
}

.footer-contact-items > li.skype > i {
	background-color: #12A5F4;
}

.showthread-social {
	background-color: #495F6A;
	margin-bottom: 18px;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
 											0 1px 2px rgba(0, 0, 0, 0.24);
					box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
 											0 1px 2px rgba(0, 0, 0, 0.24);
	-webkit-border-radius: 4px;
					border-radius: 4px;
}

.showthread-social > ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.showthread-social > ul > li {
	width: 25%;
	float: left;
}

.showthread-social > ul > li > a {
	display: block;
	height: 42px;
	line-height: 42px;
	padding: 0 16px;
	text-align: center;
	color: #f5f5f5;
	-webkit-transition: background-color .4s ease;
  				transition: background-color .4s ease;
}

.showthread-social > ul > li:first-child > a {
	-webkit-border-radius: 4px 0 0 4px;
					border-radius: 4px 0 0 4px;
}

.showthread-social > ul > li:last-child > a {
	-webkit-border-radius: 0 4px 4px 0;
					border-radius: 0 4px 4px 0;
}

.showthread-social > ul > li > a > i {
	line-height: 42px;
	font-size: 16px;
	-webkit-transition: transform .4s ease;
  				transition: transform .4s ease;
}

.showthread-social > ul > li > a.facebook {
	background-color: #3b5998;
}

.showthread-social > ul > li > a.twitter {
	background-color: #00aced;
}

.showthread-social > ul > li > a.google-plus {
	background-color: #d34836;
}

.showthread-social > ul > li > a.linkedin {
	background-color: #0077b5;
}

.showthread-social > ul > li > a:hover i {
	-webkit-transform: rotate(360deg);
					transform: rotate(360deg);
}
