/* Styles for the general looks for the Curve theme.
------------------------------------------------------- */
/*
@import url(http://fonts.googleapis.com/css?family=Lato:400,700&subset=latin-ext);
@import url(http://fonts.googleapis.com/css?family=Ubuntu:400,400italic,700italic,700&subset=latin-ext);*/
@import url(https://fonts.googleapis.com/css?family=Lato:400,700,700italic,400italic&subset=latin,latin-ext);

.mobile_only {
	display: none;
}

/* Normal, standard links. */
a:link, a:visited
{
	color: #EEEEEE;
	text-decoration: none;
}
a:hover
{
	text-decoration: underline;
	cursor: pointer;
}

/* Links that open in a new window. */
a.new_win:link, a.new_win:visited
{
	text-decoration: none;
}
a.new_win:hover
{
	text-decoration: underline;
}

/* Tables should show empty cells. */
table
{
	empty-cells: show;
}

/* Set a fontsize that will look the same in all browsers. */
body {
    background-color: #1D1F21;
    /*background-image: url("http://i.imgur.com/Uo9fDfu.png");*/
    background-attachment: fixed;
  	font: 78%/130% Lato, Helvetica, sans-serif;
	line-height: 1.7em;
	margin: 0;
	padding: 0;
}
#main_body {
    background: transparent;
}
::-moz-selection {
	color: #EEE;
	background: #37536A;
}
::selection {
	color: #EEE;
	background: #37536A;
}
/* Help popups require a different styling of the body element. */
body#help_popup
{
	padding: 1em;
}

/* use dark grey for the text, leaving #000 for headers etc */
body, td, th, tr
{
	color: #c5c8c6;
}

/* This division wraps the entire forum when a forum width is set. */
.wrapper
{
	width: 80%;
	max-width: 1100px;
	margin: 0 auto;	
}

/* lets give all forms zero padding/margins */
form
{
	padding: 0;
	margin: 0;
}

/* We can style the different types of input buttons to be uniform throughout different browsers and their color themes.
	.button_submit - covers input[type=submit], input[type=button], button[type=submit] and button[type=button] in all browsers
	.button_reset  - covers input[type=reset] and button[type=reset] throughout all browsers
	.input_check   - covers input[type=checkbox] throughout all browsers
	.input_radio   - covers input[type=radio] throughout all browsers
	.input_text    - covers input[type=text] throughout all browsers
	.input_file    - covers input[type=file] throughout all browsers
*/

input, button, select, textarea
{
	font: 95%/115% verdana, Helvetica, sans-serif;
	color: #c5c8c6;
	background-color: #282A2E;
	border: 1px solid #373B41;
	padding: 4px;
}

/* Select elements look horrible with the extra padding, so leave them unpadded. */
select
{
	padding: 0;
}

/* Add some padding to the options instead. */
select option
{
	padding: 2px;
}

/* The font size of textareas should be just a little bit larger. */
textarea
{
	font: 100%/130% verdana, Helvetica, sans-serif;
}

/* Buttons should be styled a bit differently, in order to make them look more button'ish. */
.button_submit, .button_reset
{
    background: #37536A none repeat scroll 0% 0%;
    cursor: pointer;
    font-weight: normal;
}
#postmodify .button_submit, #postmodify .button_reset, #quick_edit_body_container .button_submit, #quick_edit_body_container .button_reset {
    border: 1px solid rgb(77, 102, 127);
    margin: 0px;
    height: 30px;
    line-height: 18px;
    text-transform: uppercase;
    font-size: 10px;
}
input:hover, textarea:hover, button:hover, select:hover
{
	border: 1px solid #454545;
}
.button_submit:hover, .button_reset:hover
{
    color: #FFF;
    text-decoration: none;
    border-color: #CCC;
}
input:focus, textarea:focus, button:focus, select:focus
{
	border: 1px solid #454545;
}

/* All input elements that are checkboxes or radio buttons shouldn't have a border around them. */
input.input_check, input.input_radio
{
	border: none;
	background: none;
}
h3.catbg input.input_check
{
	margin: 9px 7px 0 7px;
}

/* Give disabled text input elements a different background color. */
input[disabled].input_text
{
    background-color: #282A2E;
    border: 1px solid #884444;
    color: #884444;
}

/* Standard horizontal rule.. ([hr], etc.) */
hr, .hrcolor
{
	height: 1px;
	border: 0;
	color: #999;
	background-color: #989898;
}

/* By default set the color on these tags as #000. */
h1, h2, h3, h4, h5, h6
{
	color: #DCDCDC;
	font-size: 1em;
	margin: 0;
	padding: 0;
}

/* Fieldsets are used to group elements. */
fieldset
{
	border: 1px solid #c4c4c4;
	padding: 1em;
	margin: 0 0 0.5em 0;
}
fieldset legend
{
	font-weight: bold;
	color: #c4c4c4;
}
/* No image should have a border when linked. */
a img
{
	border: 0;
}

/* Define strong as bold, and em as italics */
strong
{
	font-weight: bold;
}

em
{
	font-style: italic;
}
/* Alternative for u tag */
.underline
{
	text-decoration: underline;
}

/* Common classes to easy styling.
------------------------------------------------------- */

.floatright
{
	float: right;
}
.floatleft
{
	float: left;
}

.flow_auto
{
	overflow: auto;
}
.flow_hidden .windowbg, .flow_hidden .windowbg2
{
	margin-top: 2px;
}
.clear
{
	clear: both;
}
#main_admsection .clear {
    clear: unset;
}
#main_admsection .content br.clear {
    clear: both;
}
.clear_left
{
	clear: left;
}
.clear_right
{
	clear: right;
}
#quick_tasks, #quick_tasks ul {
    display: inline-block;
    margin-bottom: 20px;
}
/* Default font sizes: small (8pt), normal (10pt), and large (14pt). */
.smalltext, tr.smalltext th
{
	font-size: 11px;
}
.middletext
{
	font-size: 12px;
	line-height: 1em;
}
.normaltext
{
	font-size: 16px;
	line-height: 1.2em;
}
.largetext
{
	font-size: 18px;
}
.centertext
{
	margin: 0 auto;
	text-align: center;
}
.righttext
{
	margin-left: auto;
	margin-right: 0;
	text-align: right;
}
.lefttext
{
	margin-left: 0;
	margin-right: auto;
	text-align: left;
}
.double_height
{
	line-height: 2em;
}
/* some common padding styles */
.padding
{
	padding: 0.7em;
}
.main_section, .lower_padding
{
	padding-bottom: 0.5em;
}
/* a quick reset list class. */
ul.reset, ul.reset li
{
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 17px;
}

/* Some BBC related styles.
------------------------------------------------------- */

/* A quote, perhaps from another post. */
blockquote.bbc_standard_quote, blockquote.bbc_alternate_quote
{
	font-size: 12px;
	line-height: 1.4em;
	padding: 1.1em 1.4em;
	margin: 0px 0 0.3em 0;
	overflow: auto;
}
.topslice_quote {
    line-height: 16px;
    font-size: 14px;
}
.topslice_quote::before {
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    font-size-adjust: none;
    font-stretch: normal;
    font-feature-settings: normal;
    font-language-override: normal;
    font-kerning: auto;
    font-synthesis: weight style;
    font-variant: normal;
    font-size: inherit;
    text-rendering: auto;
    opacity: 0.2;
    content: "";
    padding-right: 5px;
}

/* The "Quote:" and "Code:" header parts... */
.codeheader, .quoteheader
{
	color: #BBB;
	font-size: 90%;
	font-weight: bold;
	padding: 0.5em;
    border-bottom: 2px dashed #444;
}
.codeheader {
    background-color: #313133;
    border-bottom: 2px dashed #5A5A5A;
}
/* Alterate blockquote stylings */
blockquote.bbc_standard_quote, .quoteheader {
    background-color: #2a2a2a;
}

blockquote.bbc_alternate_quote
{
    background-color: #393A41;
}
.sp-head.sp-closed {
    color: #F8F8F8;
}
/* A code block - maybe PHP ;). */
code.bbc_code
{
	display: block;
	font-family: "dejavu sans mono", "monaco", "lucida console", "courier new", monospace;
	font-size: x-small;
    background-color: #313133;
	border-bottom: 1px solid #5A5A5A;
	line-height: 1.5em;
	padding: 3px 1em;
	overflow: auto;
	white-space: pre;
	/* Show a scrollbar after about 24 lines. */
	max-height: 24em;
}


/* For links to change the code stuff... */
.codeoperation
{
	font-weight: normal;
}

/* Styling for BBC tags */
.bbc_link:link, .bbc_link:visited
{
    font-weight: bold;
    color: #DDD;
    word-break: break-all;
}

.bbc_size
{
	line-height: 1.4em;
}
.bbc_color a
{
	color: inherit;
}
.bbc_img
{
	border: 0;
}
.gif_container {
    display: inline-block;
    position: relative;
}
.gif_icon {
    position: absolute;
    left: calc(50% - 20px);
    top: calc(50% - 20px);
    display: inline-block;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    padding: 0px;
    margin: 0px;
    background-color: #141414;
    font-weight: bold;
    border: 2px solid #BBB;
    color: #BBB;
    border-radius: 50%;
    cursor: pointer;
    -webkit-user-select: none; /* Chrome/Safari */        
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+ */
    transition-duration: 0.8s;
}
.gif_icon:hover {
    transform: rotate(360deg);
    border-color: #E66601;
}
.bbc_table
{
	font: inherit;
	color: inherit;
}
.bbc_table td
{
	font: inherit;
	color: inherit;
	vertical-align: top;
}
.bbc_u
{
	text-decoration: underline;
}
.bbc_list
{
	text-align: left;
}
.bbc_list li {
    list-style-type: none;
}
.bbc_list li::before {
    content: ">";
    padding-right: 5px;
    font-weight: bold;
    transition-duration: 0.3s;  
    cursor: pointer;
    color: #777;
}
.bbc_list li:hover::before {
    color: #E66601;
}
.bbc_tt
{
	font-family: "dejavu sans mono", "monaco", "lucida console", "courier new", monospace;
}

/* Generally, those [?] icons.  This makes your cursor a help icon. */
.help
{
	cursor: help;
}

/* /me uses this a lot. (emote, try typing /me in a post.) */
.meaction
{
	color: red;
}

/* Highlighted text - such as search results. */
.highlight
{
	font-weight: bold;
	color: #ff7200 !important;
	font-size: 1.1em;
}

/* A more discreet highlight color, for selected membergroups etc. */
.highlight2
{
	background-color: rgb(28, 56, 79);
    border-color: rgb(230, 102, 1);
	color: #000 !important;
}

#admincenter tr {
    transition-duration: 0.4s;
}
#admincenter tr:hover {
    background-color: #292D33;
    color: #FFF;
}
/* Generic, mostly color-related, classes.
------------------------------------------------------- */

.titlebg, .titlebg2, tr.titlebg th, tr.titlebg td, tr.titlebg2 td
{
	color: #fff;
	font-family: Lato,helvetica,sans-serif;
	font-size: 1.1em;
	font-weight: bold;
	background-color: #282a2e;
	
}
.catbg, .catbg2, tr.catbg td, tr.catbg2 td, tr.catbg th, tr.catbg2 th
{
	color: #e0e3e1;
	font-family: Lato,helvetica,sans-serif;
	font-size: 1.1em;
	font-weight: bold;
	background-color: #37536A;
}

/* adjust the table versions of headers */
tr.titlebg th, tr.titlebg2 th, td.titlebg, td.titlebg2, tr.catbg th, tr.catbg2 th, td.catbg, td.catbg2
{
	padding: 0 6px;
}
tr.titlebg th a:link, tr.titlebg th a:visited, tr.titlebg2 td a:link, tr.titlebg2 td a:visited
{
	color: #fff;
}
tr.catbg th a:link, tr.catbg th a:visited, tr.catbg2 td a:link, tr.catbg2 td a:visited
{
	color: #e0e3e1;
}
.catbg select
{
	height: 1.5em;
	font-size: 0.85em;
}

/* Alternating backgrounds for posts, and several other sections of the forum. */
.windowbg, #preview_body
{
	background-color: #373b41;
}
.windowbg2
{
	background-color: #373b41;
}
.windowbg3
{
	background-color: #373b41;
}

/* the page navigation area */
.pagesection
{
	font-size: 0.9em;
	padding: 0.2em;
	overflow: hidden;
	margin-bottom: 5px;
}
.pagesection .pagelinks.floatleft {
    display: none;
}
#bottom_topic_buttons {
    display: flex;
    flex-wrap: wrap-reverse;
    justify-content: space-between;
}
.who_viewing_list {
    background-color: rgb(50, 53, 58);
    border: 1px solid #444;
    margin: 15px 0px;
    padding: 5px;
    opacity: 0.85;
    transition-duration: 0.3s;
    transition-delay: 0.3s;
}
.viewers_list_header {
    font-size: 14px;
    line-height: 1.6em;
    border-bottom: 1px solid #444;
    padding-left: 10px;
    margin-bottom: 5px;
    color: #BBB;
}
.nick_list {
    padding: 3px 15px;
    line-height: 1.5em;
    font-size: 13px;
}
div.pagesection div.floatright input
{
	margin-top: 3px;
}

.pagelinks
{
	padding: 0.6em 0 0.4em 0;
}

/* Colors for background of posts requiring approval */
.approvebg
{
	color: #000;
	background-color: #87540b;
}
.approvebg2
{
	color: #000;
	background-color: #87540b;
}

/* Color for background of *topics* requiring approval */
.approvetbg
{
	color: #000;
	background-color: #87540b;
}
.approvetbg2
{
	color: #000;
	background-color: #87540b;
}
#messageindex tr:hover td, #messageindex tr:hover td {
    background-color: #4B4F55;
}

/* Sticky topics get a different background */
.stickybg
{
	background: #293c4d;
}
.stickybg2
{
	background: #293c4d;
}
#messageindex tr:hover td.stickybg2, #messageindex tr:hover td.stickybg {
    background-color: #3D5061;
}
/* Locked posts get a different shade, too! */
.lockedbg
{
	background: #463030;
	font-style: italic;
}
.lockedbg2
{
	background: #463030;
	font-style: italic;
}
#messageindex tr:hover td.lockedbg, #messageindex tr:hover td.lockedbg2 {
    background-color: #5A4444;
}
/* Posts and personal messages displayed throughout the forum. */
.post, .personalmessage
{
	overflow: visible;
	line-height: 1.4em;
	padding: 0.1em 0;
}

/* All the signatures used in the forum.  If your forum users use Mozilla, Opera, or Safari, you might add max-height here ;). */
.signature, .attachments
{
	width: 98%;
	overflow: auto;
	clear: right;
	padding: 1em 0 3px 0;
	border-top: 1px solid #999;
	line-height: 1.4em;
	font-size: 0.85em;
}
.custom_fields_above_signature
{
	width: 98%;
	clear: right;
	padding: 1em 0 3px 0;
	border-top: 1px solid #999;
	line-height: 1.4em;
	font-size: 0.85em;
}

/* Sometimes there will be an error when you post */
.error
{
	color: red;
}

/* Messages that somehow need to attract the attention. */
.alert
{
	color: red;
}

/* Calendar colors for birthdays, events and holidays */
.birthday
{
	color: #920ac4;
}

.event
{
	color: #078907;
}

.holiday
{
	color: #000080;
}

/* Colors for warnings */
.warn_mute
{
	color: red;
}

.warn_moderate
{
	color: #ffa500;
}

.warn_watch, .success
{
	color: green;
}

a.moderation_link, a.moderation_link:visited
{
	color: red;
	font-weight: bold;
}

.openid_login {
    width: 149px;
    background-color: #282A2E;
    border: 1px solid #373B41;
}

/* a descriptive style */
.description, .description_board, .plainbox
{
	padding: 0.5em 1em;
	font-size: 0.9em;
	line-height: 1.4em;
	background-color: #282A2E;
	border: 1px solid #373B41;
	color: #f7f7f7;
	margin: 0.2em 1px 1em 1px;
}
.description_board
{
	margin: 2em 0px;
}

/* an informative style */
.information
{
	padding: 0.5em 1em;
    font-size: 12px;
    line-height: 1.7em;
	background-color: #282A2E;
	border: 1px solid #373B41;
	color: #f7f7f7;
	margin: 0.2em 1px 1em 1px;
}
.information a {
    color: burlywood;
    font-weight: bold;
    display: inline-block;
}
.information p
{
	padding: 1em;
	margin: 0;
}
p.para2
{
	padding: 1em 0 3.5em 0;
	margin: 0;
}
/* AJAX notification bar
------------------------------------------------------- */
#ajax_in_progress
{
    color: #E66601;
    text-align: center;
    font-size: 16pt;
    padding: 18px;
    width: 100%;
    height: 27px;
    line-height: 25px;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 164;
    background: rgb(42, 42, 42) none repeat scroll 0% 0%;
    border-bottom: 3px solid #E66601;
}

#ajax_in_progress a
{
	color: orange;
	text-decoration: underline;
	font-size: smaller;
	float: right;
	margin-right: 20px;
}

/* Lists with settings use these a lot.
------------------------------------------------------- */
dl.settings
{
	clear: right;
	overflow: auto;
	margin: 0 0 10px 0;
	padding: 0;
}
dl.settings dt
{
	width: 48%;
	float: left;
	margin: 0 0 10px 0;
	padding: 0;
	clear: both;
}
dl.settings dt.settings_title
{
	width: 100%;
	float: none;
	margin: 0 0 10px 0;
	padding: 5px 0 0 0;
	font-weight: bold;
	clear: both;
}
dl.settings dt.windowbg
{
	width: 98%;
	float: left;
	margin: 0 0 3px 0;
	padding: 0 0 5px 0;
	clear: both;
}
dl.settings dd
{
	width: 48%;
	float: left;
	margin: 0 0 3px 0;
	padding: 0;
}
dl.settings img
{
	margin: 0 10px 0 0;
}
/* help icons */
dl.settings dt a img
{
	position: relative;
	top: 2px;
}

/* Styles for rounded headers.
------------------------------------------------------- */
h3.catbg, h3.catbg2, h3.titlebg, h4.titlebg, h4.catbg
{
	overflow: hidden;
	height: 34px;
	line-height: 34px;
	font-size: 1.2em;
	font-weight: bold;
}
h3.catbg a:link, h3.catbg a:visited, h4.catbg a:link, h4.catbg a:visited, h3.catbg, .table_list tbody.header td, .table_list tbody.header td a
{
	color: #E2E5E3;
}
h3.catbg2 a, h3.catbg2
{
	color: #feb;
}
h3.catbg a:hover, h4.catbg a:hover, .table_list tbody.header td a:hover
{
	text-decoration: underline;
}
h3.catbg2 a:hover
{
	text-decoration: underline;
}
h3.titlebg a, h3.titlebg, h4.titlebg, h4.titlebg a
{
	color: #e0e3e1;
}
h3.titlebg a i, h3.titlebg i, h4.titlebg i, h4.titlebg a i
{
	color: #E66601;
	text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.6);
}
h3.titlebg a:hover, h4.titlebg a:hover
{
	text-decoration: none;
}
h3.catbg img.icon, h4.titlebg img.icon
{
	vertical-align: middle;
	margin: -2px 5px 0 0;
}
h4.catbg a.toggle img
{
	vertical-align: middle;
	margin: -2px 5px 0 5px;
}
h4.catbg, h4.catbg2 , h3.catbg , h3.catbg2 , .table_list tbody.header td.catbg
{
	background-color: #37536A;
	padding-right: 9px;
}
h4.titlebg, h3.titlebg
{
	background-color: #282a2e;
	padding-right: 9px;
}
h4.titlebg img.icon
{
	float: left;
	margin: 8px 8px 0 0;
}
div.cat_bar
{
	background-color: #37536A;
	color: #e0e3e1;
	padding: 5px;
	padding-left: 9px;
	height: 34px;
	overflow: hidden;
	margin-bottom: 1px;
}
div.title_bar
{
	background: #282A2E;
	padding-left: 9px;
	height: 34px;
	overflow: hidden;
	margin-bottom: 1px;
}

/* rounded bars needs a different background here */

div.roundframe div.cat_bar
{
	background-color: #37536A;
	color: #e0e3e1;
}
div.roundframe div.cat_bar h3.catbg
{
	background-color: #37536A;
	color: #e0e3e1;
}
div.title_barIC
{
	background-color: #282a2e;
	padding-left: 9px;
	height: 34px;
	overflow: hidden;
	border-bottom: 2px solid #E66601;
}
div.title_barIC h4.titlebg
{
	background-color: #282a2e;
}
#upshrinkHeaderIC p.pminfo
{
	margin: 0;
	padding: 0.5em;
}
img#upshrink_ic, img#newsupshrink
{
	margin: 10px 5px 0 0;
}
img#upshrink_ic {
	float: right;
}
table.table_list a.unreadlink, table.table_list a.collapse
{
	float: left;
}
table.table_list a.collapse
{
    margin: 8px 5px 0px 0em;
    padding-bottom: 5px;
}
.table_list .display_title a {
    font-size: 22px;
    line-height: 22px;
}
/* The half-round header bars for some tables. */
.table_grid tr.catbg, .table_grid tr.titlebg
{
	font-size: 0.95em;
	border-bottom: 1px solid transparent;
}
.table_grid tr.catbg th, .table_grid tr.titlebg th
{
	height: 31px;
	line-height: 31px;
}
.table_grid th.last_th input
{
	margin: 0 2px;
}
.table_grid th.lefttext
{
	padding: 0 0.7em;
}

/* a general table class */
table.table_grid
{
	border-collapse: collapse;
	margin-top: 0.1em;
}
table.table_grid td
{
	padding: 3px;
	border-bottom: 1px solid #1D1F21;
	border-right: 1px solid #1D1F21;
}

/* GenericList */
.additional_row
{
	padding: 0.5em 0 0.5em 0;
}
table.table_grid thead tr.catbg th
{
	white-space: nowrap;
}

/* table_grid styles for Profile > Show Permissions. */
#permissions table.table_grid  td
{
	padding: 0.4em 0.8em;
	cursor: default;
} 

/* Common styles used to add corners to divisions.
------------------------------------------------------- */
#forumposts .windowbg,#forumposts .windowbg2, .windowbg2.core_posts , .windowbg.core_posts {
	box-shadow: 0px 2px 3px black;
	margin-bottom: 5px;
	border: 1px solid #4a5058;
	margin-left: 2px;
}
#forumposts .windowbg.liked_post,#forumposts .windowbg2.liked_post {
    position: relative;
}
#forumposts .windowbg.liked_post .liked_bar {
    position: absolute;
    left: -53px;
    top: 0px;
    width: 50px;
    background-color: transparent;
    height: 100%;
    border-right: 3px solid #E66601;
}
#forumposts .windowbg:not(.liked_post) .liked_bar {
    display: none;
}
#recent .core_posts {
    background-color: rgb(48, 52, 58);
    border-left: 2px solid transparent;
}
#recent .core_posts:hover {
    border-left-color: rgb(230, 102, 1);
   /* background-color: #373B41;*/
}
#recent .core_posts {
    transition-duration: 0.4s;
}
#recent .topic_details {
	opacity: 0.5;
    transition-delay: 0.3s;
    transition-duration: 0.2s;
}
#recent .topic_details:hover {
    opacity: 1;
}
.windowbg span.topslice
{
	display: block;
	padding-left: 20px;
	background-color: transparent;
}
.windowbg span.topslice span
{
	display: block;
	background-color: transparent;
	height: 11px;
}
.windowbg span.botslice
{
	display: block;
	padding-left: 20px;
	background-color: transparent;
	font-size: 5px;
	line-height: 5px;
	margin-bottom: 0.2em;
}
.windowbg span.botslice span
{
	display: block;
	background-color: transparent;
	height: 11px;
}

.windowbg2 span.topslice
{
	display: block;
	padding-left: 20px;
	background-color: transparent;
}
.windowbg2 span.topslice span
{
	display: block;
	background-color: transparent;
	height: 11px;
}
.windowbg2 span.botslice
{
	display: block;
	padding-left: 20px;
	background-color: transparent;
	font-size: 5px;
	line-height: 5px;
	margin-bottom: 0.2em;
}
.windowbg2 span.botslice span
{
	display: block;
	background-color: transparent;
	height: 11px;
}
.approvebg span.topslice
{
	display: block;
	padding-left: 20px;
	background-color: transparent;
}
.approvebg span.topslice span
{
	display: block;
	background-color: transparent;
	height: 11px;
}
.approvebg span.botslice
{
	display: block;
	padding-left: 20px;
	background-color: transparent;
	margin-bottom: 0.2em;
}
.approvebg span.botslice span
{
	display: block;
	background-color: transparent;
	height: 11px;
}
.postbg
{
	border-left: 1px solid #7f7f7f;
	border-right: 1px solid #7f7f7f;
}

/* Used for sections that need somewhat larger corners.
----------------------------------------------------------- */
.roundframe
{
	padding: 0 0px;
	background: #373B41;
}
.roundframe dl, .roundframe dt, .roundframe p
{
	margin: 0;
}
.roundframe p
{
	padding: 0.5em;
}
#quickReplyOptions p.alert {
    color: #D77;
    border-left: 2px solid #D22;
    display: inline-block;
    padding: 0px 10px;
    width: 100%;
    margin-top: 5px;
}
span.upperframe
{
	padding: 0;
	display: block;
	background: transparent;
	padding-left: 20px;
}
span.upperframe span
{
	padding: 0;
	height: 12px;
	display: block;
	background: transparent;
}
span.lowerframe
{
	padding: 0;
	display: block;
	padding-left: 20px;
	background-color: #373B41;
}
span.lowerframe span
{
	padding: 0;
	height: 12px;
	display: block;
	background-color: #373B41;
}

/* The main content area.
------------------------------------------------------- */
.content
{
	padding: 0.5em 1.2em;
	margin: 0;
	border: none;
}
.content p
{
	margin: 0 0 0.5em 0;
}

/* Styles used by the auto suggest control.
------------------------------------------------------- */
.auto_suggest_div
{
	border: 1px solid #000;
	position: absolute;
	visibility: hidden;
}
.auto_suggest_item
{
	background-color: #ddd;
}
.auto_suggest_item_hover
{
	background-color: #888;
	cursor: pointer;
	color: #eee;
}

/* Styles for the standard dropdown menus.
------------------------------------------------------- */
#main_menu
{
	padding: 0 0.5em;
	float: left;
	margin: 0;
	width: 98%;
}

.dropmenu, .dropmenu ul
{
	list-style: none;
	line-height: 1em;
	padding: 0;
	margin: 0;
}
.dropmenu
{
	padding: 0 0.5em;
}
.dropmenu a
{
	display: block;
	color: #C5C8C6;
	text-decoration: none;
}
.dropmenu a span
{
	display: block;
	padding: 0 0 0 5px;
	font-size: 0.9em;
}
/* the background's first level only */
.dropmenu li a.firstlevel
{
	margin-right: 8px;
}
.dropmenu li a.firstlevel span.firstlevel {
    display: block;
    position: relative;
    height: 28px;
    line-height: 27px;
    padding: 0px 8px;
    font-size: 13px;
}
.dropmenu li
{
	float: left;
	padding: 0;
	margin: 0;
	position: relative;
}
.dropmenu li ul
{
	z-index: 90;
	display: none;
	position: absolute;
	width: 19.2em;
	font-weight: normal;
	border-bottom: 1px solid #373B41;
	background-color: #282A2E;
	padding: 7px 0 0 0;
}
.dropmenu li li
{
	width: 19em;
	margin: 0;
	border-left: 1px solid #666;
	border-right: 1px solid #666;
}
.dropmenu li li a span
{
	display: block;
	padding: 8px;
}
.dropmenu li ul ul
{
	margin: -1.8em 0 0 13em;
}

/* the active button */
.dropmenu li a.active
{
	background-color: #535558;
	color: #fff;
	font-weight: bold;
}
.dropmenu li a.active span.firstlevel
{
	background-color: #535558;
}
/* the hover effects */
.dropmenu li a.firstlevel:hover, .dropmenu li:hover a.firstlevel
{
	background-color: #535558;
	color: #fff;
	cursor: pointer;
	text-decoration: none;
}
.dropmenu li a.firstlevel:hover span.firstlevel, .dropmenu li:hover a.firstlevel span.firstlevel
{
	background-color: #535558;
}
/* the hover effects on level2 and 3 */
.dropmenu li li a:hover, .dropmenu li li:hover>a
{
	background: #373B41;
	color: #fff;
	text-decoration: none;
}
.dropmenu li:hover ul ul, .dropmenu li:hover ul ul ul
{
	top: -999em;
}
.dropmenu li li:hover ul
{
	top: auto;
}
.dropmenu li:hover ul
{
	display: block;
}
.dropmenu li li.additional_items
{
	background-color: #37536A;
	color: #DDD;
}

/* The dropdown menu toggle image */
#menu_toggle
{
	float: right;
	margin-right: 10px;
	padding-top: 3px;
}
#menu_toggle span
{
	position: relative;
	right: 5000px;
}

/* Styles for the standard button lists.
------------------------------------------------------- */

.buttonlist ul
{
	z-index: 100;
	padding: 5px;
	margin: 0 0.2em 5px 0;
}
.buttonlist ul li
{
	margin: 5px 0px;
	padding: 0;
	list-style: none;
	float: left;
}
.buttonlist ul li a
{
	display: block;
	font-size: 10px;
	color: #DDD;
	background-color: #37536A;
	border: 1px solid #4D667F;
    padding: 2px;
	text-transform: uppercase;
	cursor: pointer;
}
.buttonlist ul li a:hover
{
	color: #fff;
	text-decoration: none;
    border-color: #CCC;
}
.buttonlist ul li a span
{
	display: block;
	height: 24px;
	line-height: 23px;
	padding: 0 8px 0 8px;
	position: relative;
}
/* the active one */
.buttonlist ul li a.active
{
	background-color: #1F415E;
	color: #fff;
	font-weight: bold;
}
.buttonlist ul li a.active
{
	font-weight: bold;
}
.buttonlist ul li a.active:hover
{
	color: #ddf;
}
.align_top ul li a, .align_bottom ul li a
{
	margin: 0 12px 0 0;
}

/* the navigation list */
ul#navigation
{
	margin: 0;
	font-size: 0.9em;
	padding: 1em 0.4em;
}
ul#navigation li
{
/*	float: none;*/
	font-size: 0.95em;
	display: inline;
}

#adm_submenus
{
	padding-left: 2em;
}
#adm_submenus, #adm_submenus ul
{
	height: 3em;
}

h3, h4
{
	padding-bottom: 3px;
}

/* The navigation list (i.e. linktree) */
.navigate_section
{
	padding: 0.5em;
	margin: 0 0 0 0;
}
.navigate_section ul {
    margin: 0px;
    list-style: outside none none;
    width: 100%;
    overflow: hidden;
    padding: 0.5em 0px;
    font-family: Lato,Lato,helvetica;
    display: block;
    clear: both;
}
.navigate_section ul li {
    float: left;
    padding: 0px 0.5em 0px 0px;
    font-size: 1.1em;
    opacity: 0.85;
}

select.qaction, input.qaction
{
	font-size: 0.85em;
	padding: 0;
}
#mlist table tbody td.windowbg2
{
	text-align: center;
}

/* Styles for a typical table.
------------------------------------------------------- */
table.table_list
{
	width: 100%;
}
table.table_list p
{
	padding: 0;
	margin: 0;
}
table.table_list td, table.table_list th
{
	padding: 5px;
}
table.table_list tbody.header td
{
	padding: 0;
}
table.table_list tbody.content td.stats
{
	font-size: 120%;
	width: 15%;
	text-align: center;
}
table.table_list tbody.content td.lastpost
{
	line-height: 1.3em;
	font-size: 95%;
	width: 24%;
}
table.table_list tbody.content td.icon
{
	text-align: center;
	width: 6%;
}

/* Styles for the board index.
------------------------------------------------- */

/* the board title! */
.category_header {
    margin-top: 15px;
}
.titlebg.debug {
    padding: 3px 15px;
    color: #AAA;
}
.titlebg.debug a:link, .titlebg.debug a {
    color: #CCC;
}
.titlebg.debug a:hover {
    color:#FAFAFA;
}
#boardindex_table .display_title {
	padding-top: 5px;
    margin-bottom: 2px;
}
#boardindex_table .display_title .unreadlink {
	float: right;
	font-size: 70%;
}
/*a.info_text.empty_subject, #boardindex_table .last_post_board, #board_27 a.info_text, #board_345 a.info_text, .two_columns a.info_text{
    padding-top: 10px;
} */
.info_text p.subject
{
	font-size: 18px;
	color: #81a2be;
	font-weight: bold;
}
.board_avatar img {
    float: right;
    border-radius: 50%;
    height: 48px;
    width: 48px;
    border: 3px solid transparent;
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.7);
    display: none;
    filter: grayscale(20%);
    -webkit-filter: grayscale(20%);
    transition-duration: 0.2s;
}
.old_posts .board_avatar img{ 
    filter: grayscale(80%);
    -webkit-filter: grayscale(80%);
}
.board.info:hover .board_avatar img {
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
}
#boardindex_table:not(.two_columns) .board_avatar img {
    display: unset;
}
a.go_up {
	text-align: center;
	display: block;
	padding: 10px;
	font-size: 20px;
	margin: 10px;
	background: rgba(55, 59, 65, 0.3);
    border-bottom: 2px solid rgba(55, 59, 65, 0.3);
	opacity: 0;
	transition-duration: 0.4s;
}
a.go_up:hover {
	opacity: 1;
	text-decoration: none;
}
a.go_up:active {
	border-bottom: 2px solid #E66601;
}
a.go_up i {
	text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.6);
	margin-right: 5px;
	color: #E66601;
}
.board.info {
    background-color: #373B41;
    float: left;
    padding: 5px;
    box-sizing: border-box;
	transition-duration: 0.5s;
	overflow: hidden;
    width: 100%;
}
.childboard_new_posts a {
    font-weight: bold;
    color: #E66601;
}
.two_columns .board.info {
    min-height: 100px;
    border: medium none;
    box-shadow: none;
    width: 50%;
    margin: 0;
}
#boardindex_table.two_columns tbody.content td, .childboards.two_columns td {
    display: flex;
    flex-wrap: wrap;
}
.two_columns .board.info:nth-child(2n) {
    border-left: 1px solid rgb(74, 80, 88);
}
.two_columns .board.info:nth-child(4n), .two_columns .board.info:nth-child(4n-1) {
    background-color: rgb(44, 47, 52);
}
.two_columns .info_container {
    height: 80px;
    
}
.two_columns .info_container a {
    padding-top: 20px;
}
.two_columns .info_container .info_icon {
    padding-top: 10px;
}
.two_columns .info_text p.subject {
    font-size: 22px;
    line-height: 27px;
    text-align: center;
    line-height: 27px;
}
.two_columns .old_posts .info_text p.subject {
    filter: grayscale(40%);
    -webkit-filter: grayscale(40%);
}
.two_columns .info_container .info_text .about_info {
    opacity: 0.6;
    font-size: 11px;
    display: none;
}
.two_columns .last_post_board {
    opacity: 0.8;
    width: 150px;
    line-height: 27px;
}
.two_columns .board.info:hover .info_container.old_posts .last_post_board, .two_columns .info_container:not(.old_posts) .last_post_div a {
    padding-top: 8px;
}
.two_columns .last_post_board:hover {
    opacity: 1;
}
#boardindex_table:not(.two_columns) .board.info, .childboards:not(.two_columns) .board.info {
    width: 100%;
    height: auto;
    margin: 0px;
    border: medium none;
    box-shadow: none;
    padding: 10px 5px;
}
#boardindex_table:not(.two_columns) .board.info:nth-child(2n), .childboards:not(.two_columns) .board.info:nth-child(2n) {
        background-color: rgba(0,0,0,0.2);
}
#boardindex_table:not(.two_columns) table.table_list tbody.content td, .childboards:not(.two_columns) table.table_list tbody.content td {
    background-color: #373B41;
    border-width: 2px 0px 0px;
    border-color: rgb(153, 153, 153);
    border-style: solid;
    padding-left: 0px;
    padding-right: 0px;
}
.board.info hr {
	background-color: rgba(255,255,255,0.1);
}
.board.info .moderators {
    display: none;
}
.board.info:not(:hover) .info_childboards {
	opacity: 0.4;
}
.info_childboards p.child_link {
    font-size: 12px;
    display: inline-block;
    text-align: center;
    line-height: 13px;
}
.info_childboards {
    font-size: 0px;
}
.board.info:hover .info_childboards p.child_link.new_posts a {
    color: #E66601;
}
.info_childboards p.child_link.new_posts a {
    font-weight: bold;
}
.info_childboards a {
    display: inline-block;
    padding: 7px 5px;
    color: #BBB;
}
.info_childboards a.moderation_link {
    width: 17px;
    color: #F00;
}
.info_childboards p.child_link:hover{
    background: rgba(0,0,0,0.15);
}
.info_childboards a:hover {
    text-decoration: none;
    color: #FFF;
}
.board.info:hover .info_childboards {
    visibility: visible;
    height: auto;
}

.board.info .stats {
	border-left: 2px solid #4A5058;
	border-right: 2px solid #4A5058;
	padding: 10px;
	display: none;
}
#boardindex_table:not(.two_columns) .board.info .stats {
	display: inline-flex;
	min-width: 15%;
}
#boardindex_table:not(.two_columns) .last_post_div {
	width: 24%;
	
}
#boardindex_table:not(.two_columns) .last_post_div i.floatright.normal_font_style {
    text-align: right;
}
#boardindex_table .stats p {
    padding: 6px;
	font-size: 15px;
	margin: auto;
}
.two_columns .board.info .stats {
	display: none;
}
.last_post_board {
	padding: 10px;
	cursor: pointer;
	transition-duration: 0.5s;
}
a.last_post_board {
	text-decoration: none;
    line-height: 18px;
    font-size: 12px;
}
#boardindex_table:not(.two_columns) a.last_post_board {
    opacity: 0.7;
    display: block;
    width: calc(100% - 20px);
}
#boardindex_table:not(.two_columns) .last_post_div:hover a.last_post_board {
    opacity: 1;
}
a.last_post_board i.topic_name {
    font-size: 14px;
}
a.last_post_board .topic_name {
	transition-duration: 0.4s;
    text-align: right;
}
a.last_post_board:hover .topic_name {
	color: #E66601;
}
.two_columns .last_post_board .topic_name, .two_columns .last_post_board .last_post_username, .two_columns .last_post_board .br_last_post {
    display: none;
}

.two_columns .last_post_board .last_post_time {
    font-size: 14px;
	color: #EEE;
    clear: right;
}
.two_columns .last_post_board .floatright.normal_font_style{
    float: left;
}
.two_columns .old_posts .last_post_board .last_post_time {
    color: #777;
    clear: right;
}
.last_post_board .last_board_extra_info{
    display: none;
}
.two_columns .last_post_board .last_board_extra_info {
    display: block;
    text-align: left;
    font-size: 10px;
    transition-delay: 0.2s;
    clear: both;
    line-height: 12px;
}
.old_posts .last_post_board .last_board_extra_info {
    font-size: 0px;
}
.last_post_board:hover .last_board_extra_info .subject {
    color: #E66601;
}
#boardindex_table.two_columns .board.info:hover .last_board_extra_info {
    font-size: 10px;
}
#boardindex_table:not(.two_columns) .board.info:hover .stats {
	border-left-color: #E66601;
	border-right-color: #E66601;
	transition-duration: 0.4s;
}
#boardindex_table td,#boardindex_table tr {
	padding: 0px;
	margin: 0px;
}
.table_list tbody.content td.children
{
	color: #555;
	font-size: 85%;
}
p.moderators
{
	font-size: 0.8em;
	font-family: verdana, sans-serif;
}
/* hide the table header/footer parts - but its here for those needing to style it */
#boardindex_table .table_list thead, #boardindex_table .table_list tfoot
{
	display: none;
}
/* the posting icons */
#posting_icons
{
    line-height: 1.2em;
    padding: 10px;
}
#posting_icons ul
{
	font-size: 0.8em;
}
#posting_icons img
{
	vertical-align: middle;
	margin: 0 0 0 4ex;
}
#postbuttons_upper ul li a span
{
	line-height: 19px;
	padding: 0 0 0 6px;
}
.nextlinks
{
	text-align: right;
	margin-top: -1px;
}
.nextlinks_bottom
{
	clear: right;
	text-align: right;
}
.mark_read
{
	padding: 0 0.5em;
}

/* the newsfader */
#newsfader
{
	margin: 0 2px;
}
#smfFadeScroller
{
	text-align: center;
	padding: 8px 2em;
	overflow: auto;
	margin: 1em 0px;
	border: 1px solid #4A5058;
	background-color: #373B41;
	color: #C5C8C6;
}

/* Styles for the info center on the board index.
---------------------------------------------------- */

#upshrinkHeaderIC {
    margin-top: 4px;
    display: flex;
    flex-wrap: wrap;
}
#general_stats, #users_stats {
    display: none;
}
#users_and_general_stats {
    width: 100%;
    margin: 0px;
}
#users_and_general_stats .forum_stats {
    width: 100%;
}
#users_and_general_stats p.inline.forum_stats {
    max-width: 400px;
    padding-right: 12px;
    margin-right: 5px;
    border-right: 1px solid rgb(102, 102, 102);
}
#users_and_general_stats p.inline.forum_stats span {
    display: inline-block;
}
div.inline.online_list {
    padding: 3px 10px;
}
div.inline.online_list:not(:hover){
    color: #888;
}

#users_and_general_stats.boardindex_stats_category div.title_barIC {
    text-align: center;
    margin-bottom: 10px;
}
#upshrinkHeaderIC #users_and_general_stats p.online_list_link {
    margin: 0px;
    padding: 0px;
}
#upshrinkHeaderIC #users_and_general_stats p.online_list_link a {
    display: block;
}
#upshrinkHeaderIC #users_and_general_stats p.online_list_link a:hover {
    text-decoration: none;
    color: #E66601;
}
.boardindex_stats_category:nth-child(2n-1) {
    margin-right: 10px;
}
.boardindex_stats_category {
    width: calc(50% - 5px);
    margin-bottom: 15px;
}
.boardindex_stats_category div.title_barIC {
    background-color: rgba(0, 0, 0, 0.2);
    border-bottom: 2px dashed #666;
    transition-duration: 0.4s;
}
.boardindex_stats_category .ostatnie_posty .dzial {
    display: none;
}
.boardindex_stats_category div.title_barIC:hover {
    border-bottom: 2px solid #E66601;
}
.boardindex_stats_category div.title_barIC h4.titlebg {
    background-color: transparent;
}
.boardindex_stats_category div.title_barIC h4.titlebg span, .boardindex_stats_category div.title_barIC h4.titlebg span a {
    display: block;
    width: 100%;
}
dl#ic_recentposts
{
	margin: 0 0 0.5em 0;
	padding: 0.5em;
	line-height: 1.3em;
}
dl#ic_recentposts dt
{
	float: left;
}
dl#ic_recentposts dd
{
	text-align: right;
}
#upshrinkHeaderIC p
{
	margin: 0 0 0.5em 0;
	padding: 0.5em;
}
#upshrinkHeaderIC p.last
{
	margin: 0;
	padding: 0.5em;
	border-top: 2px dotted #bbb;
}
#upshrinkHeaderIC p.online_list{
    border-top: 2px solid #4d4d4d; 
    margin-top: 5px;
}
#upshrinkHeaderIC p.inline
{
	border: none;
	margin: 0;
	padding: 0.2em 0.5em 0.2em 0.5em;
}
#upshrinkHeaderIC p.stats
{
	font-size: 1.1em;
	padding-top: 8px;
}
form#ic_login
{
	padding: 0.5em;
	height: 2em;
}
form#ic_login ul li
{
	margin: 0;
	padding: 0;
	float: left;
	width: 20%;
	text-align: center;
}
form#ic_login ul li label
{
	display: block;
}

/* the small stats */
#index_common_stats
{
	display: block;
	margin: 0 0 0.5em 0;
	text-align: right;
	font-size: 0.9em;
	position: relative;
	top: -20px;
	line-height: 1px;
}

img.new_posts
{
	padding: 0 0.1em;
}
/* Styles for the message (topic) index.
---------------------------------------------------- */
div.table_frame .table_list
{
	border-collapse: collapse;
	margin: 2px 0;
}
.table_frame .table_list td.icon, .table_frame .table_list td.info, .table_frame .table_list td.stats
{
	border-right: 2px solid white;
}
#messageindex
{
	clear: both;
}
/* the page navigation area */
.childboards
{
	margin-bottom: 0.2em;
}
#childboards h3
{
	padding-bottom: 0;
}
#childboards .table_list thead
{
	display: none;
}
#childboards .table_list
{
	margin-bottom: 1em;
}
.lastpost img
{
	float: right;
	padding: 4px;
}

/* Styles for the display template (topic view).
---------------------------------------------------- */

#postbuttons div.buttons
{
	padding: 0.5em;
	width: 40%;
	float: right;
}
#postbuttons div.middletext
{
	width: 60%;
}
#postbuttons span
{
	display: block;
	text-align: right;
}
#postbuttons span.lower
{
	clear: right;
}
#postbuttons .buttonlist
{
	float: right;
}
#postbuttons #pagelinks
{
	padding-top: 1em;
}
#moderationbuttons
{
	overflow: hidden;
	margin-bottom: 15px;
}
/* Events */
.linked_events
{
	padding: 1em 0;
}
.edit_event
{
	margin: 0 1em;
	vertical-align: middle;
}
/* Poll question */
#poll
{
	overflow: hidden;
}
#poll .content
{
	padding: 0 1em;
}
h4#pollquestion
{
	padding: 0 0 0.5em 2em;
}

/* Poll vote options */
#poll_options ul.options
{
	border-top: 1px solid #999;
	padding: 1em 2.5em 0 2em;
	margin: 0 0 1em 0;
}
#poll_options div.submitbutton
{
	border-bottom: 1px solid #999;
	clear: both;
	padding: 0 0 1em 2em;
	margin: 0 0 1em 0;
}

/* Poll results */
#poll_options dl.options
{
	border: solid #999;
	border-width: 1px 0;
	padding: 1em 2.5em 1em 2em;
	margin: 0 1em 1em 0;
	line-height: 1.1em !important;
}

#poll_options dl.options dt
{
	padding: 0.3em 0;
	width: 30%;
	float: left;
	margin: 0;
	clear: left;
}

#poll_options dl.options .voted
{
	font-weight: bold;
}
#poll_options dl.options dt, #poll_options dl.options dd {
    line-height: 1.7em;
}
#poll_options dl.options dd
{
	margin: 0 0 0 2em;
	padding: 0.1em 0 0 0;
	width: 60%;
	max-width: 450px;
	float: left;
}

#poll_options dl.options .percentage
{
	display: block;
	float: right;
	padding: 0.2em 0 0.3em 0;
}

/* Poll notices */
#poll_options p
{
	margin: 0 1.5em 0.2em 1.5em;
	padding: 0 0.5em 0.5em 0.5em;
}

div#pollmoderation
{
	margin: 0;
	padding: 0;
	overflow: auto;
}

/* onto the posts */
#forumposts
{
	clear: both;
    position: relative;
}
.topic_stats {
    position: absolute;
    top: -35px;
    right: -200px;
    width: 200px;
    height: 250px;
    opacity: 0.7;
}
.topic_stats p.ts_header {
    font-size: 20px;
    border-bottom: 2px solid #777;
    color: #aaa;
    margin: 0px 8px 8px;
    height: 35px;
}
.topic_stats p {
    padding: 0px 10px;
    margin: 0;
    line-height: 1.8em;
}
.ts_description {
    color: #888;
    display: block;
    font-size: 13px;
    line-height: 1.3em;
}
.ts_content {
    display: block;
    font-size: 17px;
    line-height: 1.3em;
    margin-bottom: 10px;
}
#forumposts .cat_bar
{
	margin: 0 0 2px 0;
}
/* author and topic information */
#forumposts h3 span#author
{
	margin: 0 7.7em 0 0;
}
#forumposts h3 img
{
	float: left;
	margin: 4px 0.5em 0 0;
}
#forumposts h3.catbg
{
	margin-bottom: 3px;
}
p#whoisviewing
{
	margin: 0;
	padding: 0.5em;
}
/* poster and postarea + moderation area underneath */
.post_wrapper
{
	float:left;
	width:100%;
}
.poster
{
	float: left;
	width: 15em;
	text-align: center;
}
.postarea, .moderatorbar
{
	margin: 0 0 0 16em;
}
.postarea div.flow_hidden
{
	width: 100%;
	display: flex;
}
.post_wrapper .poster li.title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.moderatorbar
{
	clear: right;
}
/* poster details and list of items */
.poster .nick, .poster ul
{
	padding: 0;
	margin: 0 1em 0 1.5em;
}
.online_info {
	text-transform: uppercase;
    font-size: 13px;
    font-family: Lato;
    color: #E66601;
}
.poster .nick, .poster .nick .about h4{
	font-size: 16px;
	font-weight: bold;
	margin: 0px;
	padding: 0px;
}
.flow_hidden .autor_post {
	display: none;
	font-size: 14px;
	margin: 0px;
}
.flow_hidden .autor_post a {
	font-weight: bold;
}
.flow_hidden .autor_post i {
	padding: 5px;
	text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.6);
}
.poster ul ul
{
	margin: 0.3em 1em 0 0;
	padding: 0;
}
.poster ul ul li
{
	display: inline;
}
.poster li.stars, .poster li.avatar, .poster li.blurb, li.postcount, li.im_icons ul
{
	margin-top: 0.5em;
}
.poster li.avatar
{
	overflow: hidden;
}
.poster li.warning
{
	line-height: 1.2em;
	padding-top: 1em;
}
.poster li.warning a img
{
	vertical-align: bottom;
	padding: 0 0.2em;
}
.messageicon
{
	float: left;
	margin: 0 0.5em 0 0;
}
.messageicon img
{
	padding: 6px 3px;
}
.keyinfo
{
	flex: 1 1 0%;
	float: left;
}
.keyinfo h5, .keyinfo .messageicon, .keyinfo input {
	display: none;
}
.modifybutton
{
	clear: right;
	float: right;
	margin: 8px 20px 10px 0;
	text-align: right;
	font-size: 130%;
	color: #707880;	
	transition-duration: 0.5s;
}
.modifybutton:hover {
	color: #E0E3E1;	
}
.modifybutton:active, .modifybutton:focus {
	text-shadow: 0px 0px 4px #E66601;
	color: #E0E3E1;	
}
#forumposts .reportlinks, .modifybutton {
	opacity: 0;
	transition-duration: 0.5s;
}
.post_wrapper:hover .modifybutton, #forumposts .post_wrapper:hover .moderatorbar .reportlinks {
	opacity: 1;
}
#recent .topic_details {
	display: flex;
}
/* The quick buttons */
#recent .topic_details .quickbuttons_wrap
{
	padding: 0.2em 0;
}
#recent .topic_details .topic_info {
    flex: 1 1 0%;
	display: flex;
	flex-direction: column;
}
ul.quickbuttons
{
	margin: 0 11px 0 0;
	clear: right;
	float: right;
	text-align: right;
	font: bold 0.85em arial, sans-serif;
	float: right;
}
.postarea div.flow_hidden .keyinfo, .postarea div.flow_hidden .keyinfo a {
    color: #707880;
    transition-duration: 0.3s;
    transition-delay: 0.15s;
}
.postarea div.flow_hidden:hover .keyinfo {
    color:#999;
}
.postarea div.flow_hidden:hover .keyinfo a {
    color: #c5c8c6;
}
.keyinfo span.last_edit_date {
    padding-left: 5px;
}
.post_wrapper:hover .postarea div.flow_hidden, .post_wrapper:hover .postarea div.flow_hidden ul.quickbuttons, .post_wrapper:hover .postarea div.flow_hidden .gpbp_vote {
	opacity: 1;
}
ul.quickbuttons li
{
	float: left;
	display: inline;
	margin: 0 0 0 11px;
    text-transform: uppercase;
}
ul.quickbuttons li a
{
	display: block;
	height: 20px;
	line-height: 18px;
	float: left;
    color: #707880;
	padding: 2px 6px;
}
ul.quickbuttons li a:link {
    text-decoration: none;
    text-transform: uppercase;
}
ul.quickbuttons li.show_more {
    text-transform: uppercase;
    position: relative;
}
ul.quickbuttons li.show_more .more_menu {
    position: absolute;
    line-height: 24px;
    top: 20px;
    flex-direction: column;
    margin: 0px;
    background-color: #282A2E;
    border-top: 1px solid #575B61;
    display: flex;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
}
ul.quickbuttons li.show_more .more_menu .more {
    min-width: 150px;
}
ul.quickbuttons li.show_more .more_menu .more a {
    display: block;
    padding: 5px;
    float: unset;
    text-align: left;
}
ul.quickbuttons li.show_more:hover .more_menu {
    z-index: 2;
    opacity: 1;
    visibility: visible;
}
ul.quickbuttons a:hover
{
    text-decoration: none;
	color: #e0e3e1;
	background-color: rgba(0,0,0,0.15);
}
ul.quickbuttons li.inline_mod_check
{
	margin: 0 0 0 5px;
}

.post
{
	margin-top: 0.5em;
	clear: right;
}
#forumposts .inner {
    min-height: 180px;
}
.inner
{
	padding: 1em 1em 1em 0;
	margin: 0 1em 0 0;
	border-top: 1px solid #525252;
    line-height: 1.7em;
    font-size: 13px;    
    word-wrap: break-word;
}
.inner img.smiley
{
	vertical-align: bottom;
}
#forumposts .modified
{
	float: left;
    display: none;
}
#forumposts .thank_you_hidden {
    display: none;
}
#forumposts .reportlinks
{
	margin-right: 1.5em;
	text-align: right;
	clear: right;
}
#forumposts .signature, .post .signature {
	margin: 1em 0 0 0;
	max-height: 120px;
	overflow: hidden;
    opacity: 0.6;
    transition-duration: 0.3s;
    transition-delay: 0.4s;
    filter: grayscale(60%);
    -webkit-filter: grayscale(60%);
}
#forumposts .moderatorbar.expand .signature {
    max-height: unset;
}
.signature_button {
    display: block;
    padding: 6px;
    width: 98%;
    cursor: pointer;
    margin: 3px 0px 0px;
    opacity: 0.6;
    background: #35373B;
    border-bottom: 2px solid #282A2E;
    border-left: 1px solid #333539;
    border-right: 1px solid #333539;
}
.moderatorbar .signature_button.hide, .moderatorbar .signature .sp-wrap {
    display: none;
}
.moderatorbar.expand .signature_button.expand {
    display: none;
}
.moderatorbar.expand .signature_button.hide, .moderatorbar.expand .signature .sp-wrap {
    display: block;
}
#forumposts .signature:hover, .post .signature:hover {
    opacity: 0.9;
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
}
#forumposts span.botslice
{
	clear: both;
}
.poster .nick a.banned_color, .banned_color {
    color: brown;
}
.poster .avatar img {
    border-radius: 50%;
    height: 80px;
    width: 80px;
    border: 3px solid transparent;
    box-shadow: 0px 4px 5px #000;
	margin-bottom: 5px;
}
.poster .avatar.banned_color img {
    border-color: indianred;
}
img.avatar {
    border-radius: 50%;
    height: 80px;
    width: 80px;
    border: 3px solid transparent;
    box-shadow: 0px 4px 5px #000;
    margin-bottom: 5px;
}
.attachments hr
{
	clear: both;
	margin: 1em 0 1em 0;
}
.attachments
{
	padding: 1em 0 2em 0;
}
.attachments div
{
	padding: 0 0.5em;
}

/* Styles for the quick reply area.
---------------------------------------------------- */

/* The quick-reply area. Horizontal alignments go a bit wonky in IE6 and IE7 but is it really worth worrying about? */

#quickreplybox
{
	padding-bottom: 1px;
}
#quickReplyOptions .roundframe
{
    padding: 0px 2em 20px 16em;
    margin-left: 2px;
    border-bottom: 2px dashed #5E646C;
}
#quickreplybox .poster {
    margin-top: 11px;
}
#quickReplyOptions #postmodify {
    width: 90%;
}
#quickReplyOptions form textarea
{
	height: 100px;
	min-height: 100px;
	max-height: 500px;
	margin: 0.25em 0 1em 0;
	width: 100%;
	min-width: 100%;
	max-width: 100%;
}
/* The jump to box */
#display_jump_to
{
	clear: both;
	padding: 5px;
	margin-top: 6px;
	text-align: right;
}

/* Separator of posts. More useful in the print stylesheet. */
#forumposts .post_separator
{
	display: none;
}

/* Styles for edit post section
---------------------------------------------------- */
form#postmodify .roundframe
{
	padding: 0 12%;
}
#post_header, .postbox
{
	padding: 0.5em;
	overflow: hidden;
}
#post_header dt, .postbox dt
{
	float: left;
	padding: 0;
	width: 15%;
	margin: .5em 0 0 0;
	font-weight: bold;
}
#post_header dd, .postbox dd
{
	float: left;
	padding: 0;
	width: 83%;
	margin: .3em 0;
}
#post_header img
{
	vertical-align: middle;
}
ul.post_options
{
	margin: 0 0 0 1em;
	padding: 0;
	list-style: none;
	overflow: hidden;
}
ul.post_options li
{
	margin: 0.2em 0;
	width: 49%;
	float: left;
}
#postAdditionalOptionsHeader
{
	margin-top: 1em;
}
#postMoreOptions
{
	border-bottom: 1px solid #999;
	padding: 0.5em;
}
#postAttachment, #postAttachment2
{
	overflow: hidden;
	margin: .5em 0;
	padding: 0;
	border-bottom: 1px solid #999;
	padding: 0.5em;
}
#postAttachment dd, #postAttachment2 dd
{
	margin: .3em 0 .3em 1em;
}
#postAttachment dt, #postAttachment2 dt
{
	font-weight: bold;
}
#postAttachment3
{
	margin-left: 1em;
}
#post_confirm_strip, #shortcuts
{
	padding: 1em 0 0 0;
}
.post_verification
{
	margin-top: .5em;
}
.post_verification #verification_control
{
	margin: .3em 0 .3em 1em;
}
/* The BBC buttons */
#bbcBox_message
{
	margin: 0.75em 0.5em;
}
#bbcBox_message div
{
	margin: 0.2em 0;
	vertical-align: top;
}
#bbcBox_message div img {
    margin: 1px 2px 1px 1px;
    vertical-align: top;
    background-image: none !important;
    background-color: rgb(100, 106, 114);
    border: 1px solid rgb(134, 140, 148);
    padding: 2px;
}
#bbcBox_message div img:hover {
    background-image: none !important;
    border-color: #E66601;
    background-color: #444;
}
#bbcBox_message select
{
	margin: 0 2px;
}
/* The smiley strip */
#smileyBox_message
{
	margin: 0.5em;
}

/* Styles for edit event section
---------------------------------------------------- */
#post_event .roundframe
{
	padding: 0 12%;
}
#post_event fieldset
{
	padding: 0.5em;
	clear: both;
}
#post_event #event_main input
{
	margin: 0 0 1em 0;
	float: left;
}
#post_event #event_main div.smalltext
{
	width: 33em;
	float: right;
}
#post_event div.event_options
{
	float: right;
}
#post_event ul.event_main, ul.event_options
{
	padding: 0;
	overflow: hidden;
}
#post_event ul.event_main li
{
	list-style-type: none;
	margin: 0.2em 0;
	width: 49%;
	float: left;
}
#post_event ul.event_options
{
	margin: 0;
	padding: 0 0 .7em .7em;
}
#post_event ul.event_options li
{
	list-style-type: none;
	margin: 0;
	float: left;
}
#post_event #event_main select, #post_event ul.event_options li select, #post_event ul.event_options li .input_check
{
	margin: 0 1em 0 0;
}

/* Styles for edit poll section.
---------------------------------------------------- */

#edit_poll
{
	overflow: hidden;
}
#edit_poll fieldset
{
	padding: 0.5em;
	clear: both;
	overflow: hidden;
}
#edit_poll fieldset input
{
	margin-left: 8.1em;
}
#edit_poll ul.poll_main li
{
	padding-left: 1em;
}
#edit_poll ul.poll_main input
{
	margin-left: 1em;
}
#edit_poll ul.poll_main, dl.poll_options
{
	overflow: hidden;
	padding: 0 0 .7em .7em;
	list-style: none;
}
#edit_poll ul.poll_main li
{
	margin: 0.2em 0;
}
#edit_poll dl.poll_options dt
{
	width: 33%;
	padding: 0 0 0 1em;
}
#edit_poll dl.poll_options dd
{
	width: 65%;
}
#edit_poll dl.poll_options dd input
{
	margin-left: 0; 
}

/* Styles for the recent messages section.
---------------------------------------------------- */

#readbuttons_top .pagelinks, #readbuttons .pagelinks
{
	padding-bottom: 1em;
	width: 60%;
}
#readbuttons .pagelinks
{
	padding-top: 1em;
}
#recent
{
	clear: both;
}

/* Styles for the move topic section.
---------------------------------------------------- */

#move_topic dl
{
	margin-bottom: 0;
}
#move_topic dl.settings dt
{
	width: 40%;
}
#move_topic dl.settings dd
{
	width: 59%;
}
.move_topic
{
	width: 710px;
	margin: auto;
	text-align: left;
}
div.move_topic fieldset
{
	padding: 0.5em;
}

/* Styles for the send topic section.
---------------------------------------------------- */

fieldset.send_topic
{
	border: none;
	padding: 0.5em;
}
dl.send_topic
{
	margin-bottom: 0;
}
dl.send_mail dt
{
	width: 35%;
}
dl.send_mail dd
{
	width: 64%;
}

/* Styles for the report topic section.
---------------------------------------------------- */

#report_topic dl
{
	margin-bottom: 0;
}
#report_topic dl.settings dt
{
	width: 20%;
}
#report_topic dl.settings dd
{
	width: 79%;
}

/* Styles for the split topic section.
---------------------------------------------------- */

div#selected, div#not_selected
{
	width: 49%;
}
ul.split_messages li.windowbg, ul.split_messages li.windowbg2
{
	margin: 1px;
}
ul.split_messages li a.split_icon
{
	padding: 0 0.5em;
}
ul.split_messages div.post
{
	padding: 1em 0 0 0;
	border-top: 1px solid #fff;
}

/* Styles for the merge topic section.
---------------------------------------------------- */
ul.merge_topics li
{
	list-style-type: none;
}
dl.merge_topic dt
{
	width: 25%;
}
dl.merge_topic dd
{
	width: 74%;
}
fieldset.merge_options
{
	clear: both;
}
.custom_subject
{
	margin: 0.5em 0;
}

/* Styles for the login areas.
------------------------------------------------------- */
.login
{
	width: 540px;
	margin: 0 auto;
}
.login dl
{
	overflow: auto;
	clear: right;
}
.login dt, .login dd
{
	margin: 0 0 0.4em 0;
	width: 44%;
	padding: 0.1em;
}
.login dt
{
	float: left;
	clear: both;
	text-align: right;
	font-weight: bold;
}
.login dd
{
	width: 54%;
	float: right;
	text-align: left;
}
.login p
{
	text-align: center;
}

/* Styles for the registration section.
------------------------------------------------------- */
.register_error
{
	border: 1px dashed red;
	padding: 5px;
	margin: 0 1ex 1ex 1ex;
}
.register_error span
{
	text-decoration: underline;
}

/* Additional profile fields */
dl.register_form
{
	margin: 0;
	clear: right;
	/* overflow: auto; */
}

dl.register_form dt
{
	font-weight: normal;
	float: left;
	clear: both;
	width: 46%;
	margin: 0.5em 2% 5px;
	text-align: right;
}

dl.register_form dt strong
{
	font-weight: bold;
}

dl.register_form dt span
{
	display: block;
}

dl.register_form dd
{
	float: left;
	width: 49%;
	margin: 0.5em 0 0 0;
}

#confirm_buttons
{
	text-align: center;
	padding: 1em 0;
}

.coppa_contact
{
	padding: 4px;
	width: 32ex;
	background-color: #fff;
	color: #000;
	margin-left: 5ex;
	border: 1px solid #000;
}

.valid_input
{
	background-color: #f5fff0;
}
.invalid_input
{
	background-color: #fff0f0;
}

/* Styles for maintenance mode.
------------------------------------------------------- */
#maintenance_mode
{
	width: 75%;
	min-width: 520px;
	text-align: left;
}
#maintenance_mode img.floatleft
{
	margin-right: 1em;
}

/* common for all admin sections */
h3.titlebg img
{
	vertical-align: middle;
	margin-right: 0.5em;
	margin-top: -1px;
}
tr.titlebg td
{
	padding-left: 0.7em;
}
#admin_menu
{
	min-height: 2em;
	padding-left: 0;
}
#admin_content
{
	clear: left;
	padding-top: 0.5em;
}
/* Custom profile fields like to play with us some times. */
#admin_content .custom_field
{
	margin-bottom: 15px;
}
#admin_login .centertext
{
	padding: 1em;
}
#admin_login .centertext .error
{
	padding: 0 0 1em 0;
}

/* Styles for sidebar menus.
------------------------------------------------------- */
.left_admmenu, .left_admmenu ul, .left_admmenu li
{
	padding: 0;
	margin: 0;
	list-style: none;
}
#left_admsection
{
	width: 160px;
	float: left;
	padding-right: 10px;
}
.adm_section h4.titlebg
{
	font-size: 95%;
	margin-bottom: 5px;
}
#adm_container
{
	border-bottom: 1px solid #999;
	margin-bottom: 5px;
}
.left_admmenu {
    margin-bottom: 0.5em;
    border-width: 0px 1px 1px;
    border-style: solid;
    border-color: transparent #373B41 #373B41;
}
.left_admmenu li a:hover {
    color: #E66601;
    background-color: rgba(0,0,0,0.2);
    text-decoration: none;
}
.left_admmenu li a {
	padding: 0 0 0 0.5em;
    display: block;
    padding: 3px 6px;
    transition-duration: 0.4s;
}
.adm_section {
    margin-bottom: 15px;
    background-color: rgb(40, 42, 46);
}
#main_admsection
{
	margin-left: 172px;
}

tr.windowbg td, tr.windowbg2 td, tr.approvebg td, tr.highlight2 td
{
	padding: 0.3em 0.7em;
}
#mlist tr:hover td {
    background-color: #31353B;
}
tr.highlight2 td {
    border-bottom-color: #E66601;
}
#credits p
{
	padding: 0;
	font-style: italic;
	margin: 0;
}

/* Styles for generic tables.
------------------------------------------------------- */
.topic_table table
{
	width: 100%;
}
.topic_table .icon1, .topic_table .icon2, .topic_table .stats
{
	text-align: center;
}
#topic_icons
{
	margin: 1em 0 0 0;
}
#topic_icons .description
{
	margin: 0;
}
.topic_table table thead
{
	border-bottom: 1px solid transparent;
}
/* the subject column */
.topic_table td
{
	font-size: 1em;
}
.newicon {
	padding: 5px;
	background-color:rgba(0, 0, 0, 0.3);
}
.newicon:hover, .newicon:hover i{
	text-decoration: none;
	color: #E66601;
	background-color:rgba(0, 0, 0, 0.6);
}
#messageindex .pages, #unread .pages {
    color: transparent;
    margin: 3px;
}
#messageindex .pages .dots, #unread .pages .dots {
    color: #CDCDCD;
}
#messageindex .pages a, .navigate_section ul a.navPages, .navigate_section ul span.navPages, #unread .pages a {
    padding: 5px 8px;
    background-color: #32353A;
    cursor: pointer;
    font-size: 13px;
    color: #999;
    font-weight: bold;
    border-radius: 1px;
}
.navigate_section ul span.navPages.current {
    padding-bottom: 2px;
    border-bottom: 2px solid rgb(230, 102, 1);
    cursor: default;
}
.navigate_section ul span.navPages .nawias {
    display: none;
}
#messageindex .pages a:hover, .navigate_section ul a.navPages:hover {
	border-color: #E66601;
	text-decoration: none;
	color: #E66601;
}
table.table_grid td.subject {
	padding: 0px;
}
#unread table.table_grid td.subject {
    padding: 5px 10px;
}
.all_td_link {
	display: block;
	padding: 10px 5px 5px 10px;
	margin: 0px;
}
a.all_td_link:hover {
	text-decoration: none;
}
a.all_td_link:hover i,.topic_table td.lastpost i:hover, .topic_table .all_td_link:hover .last_message_date, .topic_table .all_td_link:hover .message_link {
	color: #E66601;
	text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.6);
}
a.all_td_link:hover i.fa-check {
    color: #00E600;
}
.last_message_date {
	display: block;
}
.topic_table td.subject p, .topic_table td.stats
{
	font-size: 0.9em;
	padding: 0;
	margin: 0;
}
.topic_table td.stats {
	font-size: 1.1em;
}
.topic_table td.stats i, #boardindex_table .stats p i {
	font-size: 120%;
	padding: 5px;
	text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.6);
    color: #C5C8C6;
}
.topic_table td.lastpost i {
	font-size: 15px;
	padding: 5px;
	text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.6);
}
.topic_table td.lastpost
{
	font-size: 0.9em;
	line-height: 1.3em;
	padding: 4px;
}
.half_of_max_lenght {
	max-width: 50%;
}
.message_index_legend {
	padding: 5px;
	font-size: 13px;
	color: #C5C8C6;
	border-top: 1px solid;
}
.message_index_legend i {
	color: #e0e3e1;
	padding: 3px;
	text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.6);
}
.topic_table td.subject i, .topic_icon
{
	font-size: 120%;
	padding: 3px;
	text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.6);
}
.topic_table td.lastpost
{
	background-image: none;
}
span.message_link {
	position: relative;
    font-size: 15px;
}
p.topic_started_by {
    opacity: 0.6;
}
a.all_td_link.new_big_icon {
    line-height: 12px;
    margin: 5px;
    background: rgba(0,0,0,0.3);
    padding: 12px 5px;
    border-radius: 3px;
}
span.message_link i.new {
	color: #E66601;
}
.fob {
    padding: 16px;
    font-size: 30px;
	background-color: #4b5058;
	color: #e0e3e1;
	border-radius: 50%;
	position: fixed;
	bottom: 40px;
	right: 40px;	
	z-index: 2;
    transition: transform 0.5s ease 0s;
	cursor: pointer;
	box-shadow: 0px 4px 5px black;
	box-sizing: border-box;
}
.fob:hover {
	background-color: #E66601;
	color: #FFF;
}
.fob:active {
	background-color: #E66601;
	color: #eee;
	box-shadow: 0px 4px 8px black;
}
.title_icon {
	padding: 5px;
	font-size: 80%;
	text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.8);
    cursor: default;
}
span.message_link .post_preview {
	background: none repeat scroll 0 0 #282a2e;
    border: 1px solid #4b5058;
    color: #BCBCBC;
	font-weight: normal;
    margin: 0 auto;
    position: absolute;
	min-width: 150px;
    top: 15px;
    display: block;
    padding:10px;
	z-index: -1;
	list-style: outside none none;	
	left: 0px;
	opacity: 0;
}
span.message_link.post_preview:hover {
	opacity: 0;
	z-index: -1;
}

span.message_link:hover .post_preview:not(:hover){
	display: block;
	z-index: 1;
	opacity: 1;
}
/* Styles for (fatal) errors.
------------------------------------------------- */

#fatal_error
{
	width: 80%;
	margin: auto;
}

.errorbox
{
	padding: 1em;
	border: 1px solid #cc3344;
	color: #000;
	background-color: #ffe4e9;
	margin-bottom: 1em;
}
.errorbox h3
{
	padding: 0;
	margin: 0;
	font-size: 1.1em;
	text-decoration: underline;
}
.errorbox p
{
	margin: 1em 0 0 0;
}
.errorbox p.alert
{
	padding: 0;
	margin: 0;
	float: left;
	width: 1em;
	font-size: 1.5em;
}

/* Styles for the profile section.
------------------------------------------------- */

dl
{
	overflow: auto;
	margin: 0;
	padding: 0;
}

/* The basic user info on the left */
#basicinfo
{
	width: 20%;
	float: left;
}
#basicinfo .windowbg .content
{
	padding-left: 20px;
	text-align: center;
}
#detailedinfo
{
	width: 79.5%;
	float: right;
}
#basicinfo h4
{
	font-size: 135%;
	font-weight: 100;
	line-height: 105%;
	white-space: pre-wrap;
	overflow: hidden;
}
#basicinfo h4 span.position
{
	font-size: 80%;
	font-weight: 100;
	display: block;
}
#basicinfo img.avatar
{
	display: block;
	margin: 10px 0 0 0;
}
#basicinfo ul
{
	list-style-type: none;
	margin: 10px 0 0 0;
}
#basicinfo ul li
{
	display: block;
	float: left;
	margin-right: 5px;
	height: 20px;
}
#basicinfo span#userstatus
{
	display: block;
	clear: both;
}
#basicinfo span#userstatus img
{
	vertical-align: middle;
}
#detailedinfo div.content dl, #tracking div.content dl
{
	clear: right;
	overflow: auto;
	margin: 0 0 18px 0;
	padding: 0 0 15px 0;
	border-bottom: 1px #999 solid;
}
#detailedinfo div.content dt, #tracking div.content dt
{
	width: 35%;
	float: left;
	margin: 0 0 3px 0;
	padding: 0;
	font-weight: bold;
	clear: both;
}
#detailedinfo div.content dd, #tracking div.content dd
{
	width: 65%;
	float: left;
	margin: 0 0 3px 0;
	padding: 0;
}
#detailedinfo div.content dl.noborder
{
	border-bottom: 0;
}
#detailedinfo div.content dt.clear
{
	width: 100%;
}
.signature, .custom_fields_above_signature
{
	border-top: 1px solid #525252;
}
.signature h5
{
	font-size: 0.85em;
	margin-bottom: 10px;
}
#personal_picture
{
	display: block;
	margin-bottom: 0.3em;
}
#avatar_server_stored div
{
	float: left;
}

#main_admsection #basicinfo, #main_admsection #detailedinfo
{
	width: 100%;
}
#main_admsection #basicinfo h4
{
	float: left;
	width: 35%;
}
#main_admsection #basicinfo img.avatar
{
	float: right;
	vertical-align: top;
}
#main_admsection #basicinfo ul
{
	clear: left;
}
#main_admsection #basicinfo span#userstatus
{
	clear: left;
}
#main_admsection #basicinfo p#infolinks
{
	display: none;
	clear: both;
}
#main_admsection #basicinfo .botslice
{
	clear: both;
}

/* Simple feedback messages */
div#profile_error, div#profile_success
{
	margin: 0 0 1em 0;
	padding: 1em 2em;
	border: 1px solid;
}
div#profile_error
{
	border-color: red;
	color: red;
	background: #fee;
}

div#profile_error span
{
	text-decoration: underline;
}

div#profile_success
{
	border-color: green;
	color: green;
	background: #efe;
}

/* Profile statistics */
#generalstats div.content dt
{
	width: 50%;
	float: left;
	margin: 0 0 3px 0;
	padding: 0;
	font-weight: bold;
	clear: both;
}
#generalstats div.content dd
{
	width: 50%;
	float: left;
	margin: 0 0 3px 0;
	padding: 0;
}

/* Activity by time */
#activitytime
{
	margin: 6px 0;
}
.activity_stats
{
	margin: 0;
	padding: 0;
	list-style: none;
    display: inline-block;
    width: 100%;
}
.activity_stats li
{
	margin: 0;
	padding: 0;
	width: 4.16%;
	float: left;
}
.activity_stats li span
{
	display: block;
	border: solid #000;
	border-width: 1px 1px 0 0;
	text-align: center;
}
.activity_stats li.last span
{
	border-right: none;
}
.activity_stats li div.bar
{
	margin: 0 auto;
	width: 15px;
}
.activity_stats li div.bar div
{
	background: #6294CE;
}
.activity_stats li div.bar span
{
	position: absolute;
	top: -1000em;
	left: -1000em;
}

/* Most popular boards by posts and activity */
#popularposts
{
	width: 49.5%;
	float: left;
}
#popularactivity
{
	width: 49.5%;
	float: right;
}

#popularposts div.content dt, #popularactivity div.content dt
{
	width: 65%;
	float: left;
	margin: 0 0 3px 0;
	padding: 0;
	font-weight: bold;
	clear: both;
}
#popularposts div.content dd, #popularactivity div.content dd
{
	width: 35%;
	float: left;
	margin: 0 0 3px 0;
	padding: 0;
}

.profile_pie
{
	background-image: url(../images/stats_pie.png);
	float: left;
	height: 20px;
	width: 20px;
	margin: 0 1em 0 0;
	padding: 0;
	text-indent: -1000em;
}

/* View posts */
.topic .time
{
	float: right;
}

.counter
{
	margin: 0 0 0 0;
	line-height: 46px;
	padding: 0px 10px 0px 0px;
	font-size: 2.2em;
	font-weight: bold;
	color: #CDCDCD;
	float: left;
}
.list_posts
{
	padding-top: 5px;
	margin-top: 6px;
	overflow: auto;
}
#recent .content {
	padding: 0px 10px;
}
.topic_details {
	border-bottom: 1px solid #525252;
	padding-bottom: 5px;
	padding-right: 10px;
	padding-left: 10px;
}
.core_posts
{
	margin-bottom: 3px;
}

.topic h4
{
	margin: 3px 0;
}

.topic .post
{
	margin: 0 1em;
	min-height: 80px;
	height: auto !important;
	height: 80px;
}

.topic .mod_icons
{
	text-align: right;
	margin-right: 1em;
}

#tracking div.content dl
{
	border-bottom: 0;
	margin: 0;
	padding: 0;
}

#creator dl
{
	margin: 0;
}
#creator dt
{
	width: 40%;
	float: left;
	clear: both;
	margin: 0 0 10px 0;
	text-align: right;
	padding-right: 20px;
}
#creator dd
{
	float: left;
	width: 55%;
	margin: 0 0 10px 2px;
}

.ignoreboards
{
	margin: 0 2%;
	padding: 0;
	width: 45%;
}
.ignoreboards a
{
	font-weight: bold;
	border-bottom: 1px solid #c4c4c4;
	padding: 0.1em 0;
}
.ignoreboards a:hover
{
	text-decoration: none;
	border-bottom: 1px solid #334466;
}
.ignoreboards ul
{
	margin: 0;
	padding: 0;
}
.ignoreboards li
{
	list-style: none;
	float: left;
	clear: both;
}
.ignoreboards li.category
{
	margin: 0.7em 0 0 0;
	width: 100%;
}
.ignoreboards li ul
{
	margin: 0.2em 0 0 0;
}
.ignoreboards li.category ul li.board
{
	width: 93%;
}

#theme_settings
{
	overflow: auto;
	margin: 0;
	padding: 0;
}

#theme_settings li
{
	list-style: none;
	margin: 10px 0;
	padding: 0;
}
/* Paid Subscriptions */
#paid_subscription
{
	width: 100%;
}
#paid_subscription dl.settings
{
	margin-bottom: 0;
}
#paid_subscription dl.settings dd, #paid_subscription dl.settings dt
{
	margin-bottom: 4px;
}
/* Pick theme */
#pick_theme
{
	width: 100%;
	float: left;
}
/*Issue a warning*/
#warn_body{
	width: 80%;
	font-size: 0.9em;
}

/* Styles for the statistics center.
------------------------------------------------- */
#statistics
{
	padding: 0.5em 0;
}
#statistics div.title_bar
{
	margin: 4px 0 -2px 0;
	background-color: #282A2E;
	padding-left: 9px;
	height: 34px;
	overflow: hidden;
	border-bottom: 2px solid #E66601;
}
#statistics h4.titlebg img.icon {
	display: none;
}
#statistics h3.catbg
{
	text-align: center;
}
#statistics div.content
{
	min-height: 210px;
}
#statistics div.top_row
{
	min-height: 150px;
}
#stats_left, #top_posters, #top_topics_replies, #top_topics_starter
{
	float: left;
	width: 49.5%;
}
#stats_right, #top_boards, #top_topics_views, #most_online
{
	float: right;
	width: 49.5%;
}
dl.stats
{
	clear: both;
	overflow: hidden;
	margin: 0;
	padding: 0;
}
dl.stats dt
{
	width: 49%;
	float: left;
	margin: 0 0 4px 0;
	line-height: 16px;
	padding: 0;
	clear: both;
	font-size: 1em;
}
dl.stats dd
{
	text-align: right;
	width: 50%;
	font-size: 1em;
	float: right;
	margin: 0 0 4px 0;
	line-height: 16px;
	padding: 0;
}
.statsbar div.bar
{
	float: left;
	background: transparent linear-gradient(to bottom, #3FA4F0 0%, #0F71BA 100%) repeat scroll 0% 0%;
	display: block;
	margin: 0 4px;
	height: 20px;
	border-radius: 5px;
}
.statsbar div.bar div
{
	position: relative;
	right: -4px;
	padding: 0 4px 0 0;
	background: transparent linear-gradient(to bottom, #3FA4F0 0%, #0F71BA 100%) repeat scroll 0% 0%;
	height: 20px;
	border-radius: 5px;
}
tr.windowbg2 th.stats_month
{
	width: 25%;
	padding: 0 2em;
	text-align: left;
}
tr.windowbg2 td.stats_day
{
	padding: 0 3.5em;
	text-align: left;
}

/* Styles for the personal messages section.
------------------------------------------------- */

#personal_messages h3 span#author, #personal_messages h3 span#topic_title
{
	float: left;
}
#personal_messages h3 span#author
{
	margin: 0 0 0 0.5em;
}
#personal_messages h3 span#topic_title
{
	margin: 0 0 0 9em;
}
#personal_messages div.labels
{
	padding: 0 1em 0 0;
}
#personal_messages .capacity_bar
{
	background: #f0f4f7;
	display: block;
	margin: 0.5em 0 0 1em;
	height: 1em;
	border: 1px solid #adadad;
	width: 10em;
}
#personal_messages .capacity_bar span
{
	border-right: 1px solid #adadad;
	display: block;
	height: 1em;
}
#personal_messages .capacity_bar span.empty
{
	background: #a6d69d;
}
#personal_messages .capacity_bar span.filled
{
	background: #eea800;
}
#personal_messages .capacity_bar span.full
{
	background: #f10909;
}
#personal_messages .reportlinks
{
	padding: 0.5em 1.3em;
}
#searchLabelsExpand li
{
	padding: 0.3em 0.5em;
}
#manrules div.righttext
{
	padding: 0.3em 0.1em;
}
dl.addrules dt.floatleft
{
	width: 15em;
	color: #CCC;
	padding: 0 1.25em 0.5em 1.25em;
}
#addrule fieldset
{
	clear: both;
}

/* Styles for the calendar section.
------------------------------------------------- */
.calendar_table
{
	margin-bottom: 0.7em;
}

/* Used to indicate the current day in the grid. */
.calendar_today
{
	background-color: #fff;
}

#month_grid
{
	width: 200px;
	text-align: center;
	float: left;
}
#month_grid div.cat_bar
{
	height: 25px;
}
#month_grid h3.catbg
{
	height: 25px;
	line-height: 27px;
}
#month_grid table
{
	width: 200px;
}
#main_grid table
{
	width: 100%;
	padding-bottom: 4px;
}
#main_grid table h3.catbg
{
	text-align: center;
	height: 29px;
	border-top: 2px solid #fff;
	border-bottom: none;
}
#main_grid table.weeklist td.windowbg
{
	text-align: center;
	height: 49px;
	width: 25px;
	font-size: large;
	padding: 0 7px;
	border-bottom: 2px solid #fff;
}
#main_grid table.weeklist td.weekdays
{
	height: 49px;
	width: 100%;
	padding: 4px;
	text-align: left;
	vertical-align: middle;
	border-bottom: 2px solid #fff;
}
#main_grid h3.weekly
{
	text-align: center;
	padding-left: 0;
	font-size: large;
	height: 29px;
}
#main_grid h3 span.floatleft, #main_grid h3 span.floatright
{
	display: block;
	font-weight: bold;
}
#main_grid table th.days
{
	width: 14%;
	padding: 4px 0;
}
#main_grid table.weeklist h4.titlebg
{
	margin: 0 0 0 0;
	height: 23px;
	line-height: 27px;
}
#main_grid table td.weeks
{
	vertical-align: middle;
	text-align: center;
	font-weight: bold;
	font-size: large;
}
#main_grid table td.days
{
	vertical-align: top;
	text-align: center;
}

a.modify_event
{
	color: red;
}

span.hidelink
{
	font-style: italic;
}

#calendar_navigation
{
	text-align: center;
}

/* Styles for the memberlist section.
------------------------------------------------- */
#mlist_search
{
	margin: auto;
	width: 500px;
}

/* Styles for the basic search section.
------------------------------------------------- */
#searchform, #simple_search p
{
	padding: 0.5em;
	margin: 0;
}
#simple_search, #simple_search p, #advanced_search
{
	text-align: center !important;
	margin: 0;
}
#search_error
{
	font-style: italic;
	padding: 0.3em 1em;
}
#search_term_input
{
	font-size: 115%;
	margin: 0 0 1em;
}

/* Styles for the advanced search section.
------------------------------------------------- */
#searchform fieldset
{
	text-align: left;
	padding: 0;
	border: none;
}
#advanced_search dl#search_options
{
	margin: 0 auto;
	width: 600px;
	padding-top: 1em;
	overflow: hidden;
}
#advanced_search dt
{
	clear: both;
	float: left;
	padding: 0.2em;
	text-align: right;
	width: 20%;
}
#advanced_search dd
{
	width: 75%;
	float: left;
	padding: 0.2em;
	margin: 0 0 0 0.5em;
	text-align: left;
}
#searchform p.clear
{
	clear: both;
}

/* Styles for the search results page.
------------------------------------------------- */
.topic_table td blockquote, .topic_table td .quoteheader
{
	margin: 0.5em;
}
.search_results_posts
{
	overflow: hidden;
}
.search_results_posts .buttons
{
	padding: 5px 1em 0 0;
}

/* Styles for the help section.
------------------------------------------------- */

#help_container
{
	margin: 4px 0 0 0;
	padding: 0 0 8px 0;
}
#helpmain {
	padding: 0 1em;
    font-size: 14px;
    line-height: 1.7em;
}
.helpmenu.titlebg {
    font-size: 17px;
    line-height: 1.7em;
    border-bottom: 2px solid #7F3326;
}
.helpmenu.titlebg .error {
    padding-left: 20px;
    color: #DDD;
}
/* Samples should be easily distinguishable. */
#helpmain .help_sample
{
	border: 1px solid #999;
	background: #fff;
	padding: 1em;
	overflow: auto;
	margin-bottom: 1em;
}
#helpmain .help_sample .navigate_section
{
	margin: 0;
}
#helpmain .help_sample .navigate_section ul
{
	padding-top: 0;
	border: none;
}

/* We need some air between the lines */
#helpmain p
{
	margin: 0 0 1.5em 0;
	line-height: 1.5em;
}
#helpmain ol
{
	font-weight: bold;
	list-style-type: disc;
	margin-bottom: 1em;
	margin-top: 1em;
	line-height: 1.5em;
}
#helpmain ol.la
{
	font-weight: normal;
	list-style-type: circle;
	margin: 0.5em 0 1em 0;
	padding-left: 1.5em;
}
ul.basic_helplist
{
	padding: 0.8em 1.5em;
	line-height: 1.5em;
}
#helpmain #messageindex
{
	clear: right;
}

/* Styles for print media.
------------------------------------------------------- */
@media print
{
	#headerarea
	{
		display: none;
	}

	.tborder
	{
		border: none;
	}
}

.new_win{width: 400px; height: 400px;}

/* Inferno Styles */
#header {
	height: 182px;
}
#logo a {
    float: left;
    margin: 0px auto;
    display: inline;
    width: 934px;
    height: 182px;
    background: transparent url("http://themodders.org/Themes/inferno_mod2/images/bszp.png") no-repeat scroll 0% 0%;
}
/*Swieta
#logo a {
	background: transparent url("http://themodders.org/Themes/inferno_mod2/images/angelina.jpg") no-repeat scroll 0% 0%;
}
.board_nr_2, .board_nr_3 {
	background: url(http://i.imgur.com/eWtfMME.png) no-repeat;
	background-attachment: fixed;
	background-size: cover;
}
.board_nr_1, .board_nr_4 {
	background: url(http://i.imgur.com/l2g8Q8Z.jpg) no-repeat;
	background-attachment: fixed;
	background-size: cover;
}*/
#header .user {
    float: right;
    height: 80px;
    padding: 10px;
    color: #999;
    display: flex;
    margin-top: -150px;
	background: rgba(0,0,0,0.5);
}
#header .user .header_profile_link{
	display: flex;
    width: 200px;
}
#header .user .header_profile_link a.profile_link_bar, #header .user .header_profile_link a.profile_link_bar:link, .header_profile_link .more{
    color: #E0E3E1;
    background-color: rgba(0, 0, 0, 0.15);
    display: block;
    padding: 5px 9px;
    text-decoration: none;
    line-height: 16px;
	position: relative;
}
#header .user .header_profile_link a.profile_link_bar, #header .user .header_profile_link a.profile_link_bar:link {
	flex: 1 1 0%;
    border: 1px solid #373B41;
}
.header_profile_link .more {
    border: 1px solid #373B41;
	cursor: pointer;
}
.header_profile_link .more a, .header_profile_link .more a:link {
    font-weight: normal;
    line-height: 30px;
    margin: 0px;
    font-weight: normal;
    text-transform: none;
    font-size: 12px;
    padding: 0px 16px;
	color: rgb(112, 120, 128);
	display: block;
    width: 200px;
}
.header_profile_link .more a:hover {
    background-color: #373B41;
    color: #DDD;
    text-decoration: none;
}
.header_profile_menu {
    position: absolute;
    right: -1px;
    top: 26px;
    background: rgb(32, 32, 32) none repeat scroll 0% 0%;
    width: 200px;
    z-index: 100;
	max-height: 0px;
	overflow: hidden;
	transition: max-height 0.4s ease-in-out 0s;
}
.header_profile_link .more:hover .header_profile_menu {
	max-height: 500px;
}

#header .user img.avatar, .comment_poster img.avatar, #basicinfo img.avatar {
	border-radius: 50%;
	border: 3px solid transparent;
	box-shadow: 0px 4px 5px #000;
}
#header .user img.avatar {
	width: 65px;
	height: 65px;
	margin-bottom: 5px;
    background-color: #32353A;
}
#header .user ul {
	margin: 0;
	padding-left: 10px;
	min-width: 180px;
	flex: 1 1 0%;
}
#header .user ul.profile_notify_buttons li {
	float: right;
}
#header .user ul li {
	margin-bottom: 2px;
}
#header .user ul li.greeting {
	font-size: 1.3em;
	font-weight: bold;
	line-height: 1.5em;
}
#header .user input.input_text, #header .user input.input_password {
	background: #282828;
	border: 1px solid #171717;
	outline: none;
	padding: 4px;
	color: #ccc;
}
#header .user input.button_submit {
    background: #37536A;
	color: #ccc;
    margin: 0px;
    padding: 5px;
    border-radius: 3px;
}
#header .user input.button_submit:hover {
    background-color: #284A67;
    color: #EEE;
}
#guest_form {
	text-align: right;
}
#guest_form .info {
	padding: 6px 0;
}
#guest_form #openid_url {
    display: none;
}
#toolbar {
	background-color: #282a2e;
	border-top: 1px solid #373b41;
	border-bottom: 3px solid #E66601;
	height: 46px;
    font-family: Arial,"Liberation Sans","Droid Sans",Tahoma,"Lucida Sans","Lucida Sans Unicode","Lucida Grande","Trebuchet MS",Verdana,Helvetica,sans-serif;
}
#topnav {
	position: relative;
	height: 46px;
	z-index: 1000;
	padding: 0;
	margin: 0;
}
#topnav ul {
	margin: 0;
	padding: 0;
}
#topnav li, .profile_notify_buttons li {
	float: left;
	margin: 0;
	padding: 0 0 0 2px;
	position: relative;
	list-style: none;
}
#topnav li a, .profile_notify_buttons li a {
	display: block;
	line-height: 46px;
	padding: 0 16px;
	color: #707880;
	font-size: 12px;
	font-weight: bold;
}
#topnav li a.active {
	background-color: rgba(255,255,255,0.2);
	color: #fff;
	font-weight: bold;
}
#topnav li a:hover, #topnav li:hover a, #topnav li.sfhover a, .profile_notify_buttons li:hover a {
	color: #fff;
	text-decoration: none;
}
#topnav li:hover li a, #topnav li ul li a:hover {
	color: #ddd;
	background-color: #373B41;
}
.profile_notify_buttons li a:hover {
	color: #ddd;
}
#topnav li li {
	width: 200px;
	height: auto;
	padding: 0;
}
#topnav li li a, #topnav li li a:hover, #topnav li li a, #topnav a.active li a, #topnav li:hover li a, #topnav li.sfhover li a {
	background: none;
	height: 30px;
	line-height: 30px;
	margin: 0;
	font-weight: normal;
	text-transform: none;
	font-size: 12px;
	color: #777;
}
#topnav li ul {
	background: #202020;
	position: absolute;
	width: 200px;
	left: -999em;
	margin-left: -1px;
}
#topnav li ul ul {
	margin: -27px 0 0 195px;
}
#topnav ul li li:hover, #topnav ul li li.hover {
	position: static;
}
#topnav li:hover ul ul, #topnav li:hover ul ul ul, #topnav li.sfhover ul ul, #topnav li.sfhover ul ul ul {
	left: -999em;
}
#topnav li:hover ul, #topnav li.sfhover ul {
	left: 3px;
}
#topnav li li:hover ul, #topnav li li li:hover ul, #topnav li li.sfhover ul, #topnav li li li.sfhover ul {
	left: 0;
}
#header {
	background-color: #1d1f21;	
}
#main_body .wrapper {
	padding: 10px 0;
}
#inferno_tools {
	background: #ffffff;
	margin: 0 6px;
	height: 40px;
	overflow: hidden;
}
#search {
	float: right;
	margin: 10px 0 0 0;
	padding-right: 10px;
	height: 28px;
	width: 214px;
	background: url(../images/custom/search.png) 0 0 no-repeat;
	overflow: hidden;
}
#search .inputbox {
	background: none;
	color: #ccc;
	padding: 5px 7px;
	border: none;
	outline: none;
	margin: 2px 0 0;
	width: 200px;
	height: 14px;
	font-size: 13px;
	font-family: Arial;
}
#time {
	padding: 16px 0 0 10px;
	color: #990000;
	font-weight: bold;
}
#time span {
	color: #444;
	padding-right: 15px;
}
#main_content {
	padding: 0 8px 5px;
}
footer {
	text-align: right;
	border-right: 2px solid #373b41;
	color: #555;
	padding-right: 5px;
	font-size: 12px;
	transition-duration: 0.5s;
    margin-bottom: 20px;
}
footer a, footer ul li a, footer a:link, footer a:visited {
	color: #555;
	transition-duration: 0.5s;
}
footer:hover {
	color: #797979;
    border-right-color: #E66601;
}
footer:hover a:link, footer:hover a:visited {
	color: #cdcdcd;
}
footer ul li {
	display: inline;
	padding-right: 5px;
}
footer ul li a {
	font-size: 12px;
	font-family: Arial;
}
footer ul li.copyright {
	display: block;
}
footer p {
	margin: 0;
}
.topic_of_day_bar, .topic_of_day_content {
	margin: 10px;
}
.topic_of_day_content {
	margin-top: 0px;
}
.topic_of_day_content .topic_of_day_subject, .topic_of_day_content span {
	display: block;
	padding: 5px;
	font-size: 12px;
	font-weight: normal;
}
.topic_of_day_content .topic_of_day_subject {
	font-weight: bold;
}
.topic_of_day_content:hover, .topic_of_day_content:hover a {
	background-color: rgba(0, 0, 0, 0.2);
	text-decoration: none;
	
}
.autor {
    width: 15%;
}
.dzial {
    width: 20%;
}
.czas {
    width: 25%;
}
.ostatnie_posty {
    width: 98%;
}
.ostatnie_posty tr {
    border-bottom: 1px solid #4d4d4d;
}
#ostatnie_posty:hover {
    background-color: rgba(0, 0, 0, 0.2);
}
#ostatnie_posty td {
    padding: 0px;
}
#ostatnie_posty td a{
	display: block;
	border-bottom: 2px solid transparent;
    padding: 5px;
}
#ostatnie_posty td a:hover{
	color: #E66601;
	text-decoration: none;
}
#ostatnie_posty td a span.floatright, .recent_post_board {
    opacity: 0.7;
}
.text_right {
    text-align: right;
}
.text_center {
    text-align: center;
}
.text_left {
    text-align: left;
}
.normal_font_style {
	font-style: normal;
}
.naglowek_ostatnie_posty td {
    color: #bcbcbc;
    text-align: center;
    border-bottom: 1px solid #bcbcbc;
}

.poster ul ul li a, .about .reset li a  {
	font-size: 16px;
    color: #BCBCBC;
    transition: transform 0.5s ease 0s;
	padding: 3px;
}
#forumposts .poster .nick .about.windowbg2 {

    border-width: 1px;
    border-style: solid;
    box-shadow: 0px 2px 3px rgba(0,0,0,0.5);

}
.poster ul ul li a:hover, .about .reset li a:hover, ul.quickbuttons li a:hover > i, ul.quickbuttons li.post_options:hover > i, ul.quickbuttons li a:hover i {
	color: #E66601;	
}
.poster .nick, .buddy_base_info {
	position: relative;
    color: #BCBCBC;
}
.poster .nick a {
    transition-duration: 0.3s;
    color: #BCBCBC;
    display: block;
}
.poster .nick a:hover {
    text-decoration: none;
}
.poster .nick a:not(.banned_color):hover {
    color: #E66601;
}
.poster .nick .about .reset li {
    float: left;
}
.poster .nick .about {
	background: none repeat scroll 0 0 #373B41;
    border: 1px solid #4b5058;
    color: #BCBCBC;
	font-weight: normal;
    min-height: 100px;
    margin: 0 auto;
    position: absolute;
	text-align: left;
	top: 25px;
	display: block;
	z-index: -1;
	list-style: outside none none;
	min-width: 300px;
	opacity: 0;
	transition-duration: 0.6s;
	font-size: 12px;
}
.poster .nick .about .avatar img {
	margin: 5px 10px 5px 5px;
}
.poster .nick .about .nick {
	font-size: 16px;
    font-weight: bold;
}
.poster .nick .about .about_next_to_avatar {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 150px;
}
.poster .nick:hover .about, .buddy_base_info:hover .buddy_about{
	display: block;
	z-index: 1;
	opacity: 1;
}
.buddy_base_info {
	padding: 10px;
}
.buddy_base_info .avatar {
	margin-bottom: 10px;
}

.buddy_about {
	background: none repeat scroll 0 0 #282a2e;
    border: 1px solid #4b5058;
    color: #BCBCBC;
	font-weight: normal;
    min-height: 100px;
    margin: 0 auto;
    position: absolute;
    text-align: center;
    right: 100px;
	top: 0px;
	line-height: 22px;
    display: block;
    padding:5px 10px;
	z-index: -1;
	list-style: outside none none;	
	min-width: 175px;
	opacity: 0;
	transition-duration: 0.6s;
}
.buddy_base_info i {
	margin-right: 5px;
}
.buddy_base_info .online, .autor_post .online {
	color: #E66601;
}

.poster_field 
{
	text-align: right;
	width: 70px;
	display: inline-block;
	text-transform: uppercase;
	vertical-align: top;
	margin-right: 4px;
}

.poster_field:after {
	content: ":";
	display: inline-block;
} 

.poster_value
{
	display: inline-block;
	text-align: left;
	width: 70px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	
}
.poster .poster_value a.bbc_link {
    display: inline-block;
}
/*
.information_2 {
	background: #F8F8F8;
	overflow: auto;
	padding: 12px 9px 8px 9px;
	box-sizing: border-box;
}*/
.display_title
{
    font-family: Lato,Lato,helvetica;
    font-weight: 400;
    font-size: 30px;
    line-height: 1.2em;
    margin-bottom: 0.25em;
    color: #D4D4D4;
}

.information_2 .display_title
{
    font-size: 32px;
    line-height: 2em;
    color: #AAA;
    font-weight: normal;
    margin-left: 2px;
    margin-bottom: 0px;
    margin-top: 30px;
    border-bottom: 2px solid #7F3326;
    display: flex;
    justify-content: space-between;
}
.title_text {
    max-width: 80%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.title_icons {
	font-size: 65%;
    min-width: 20%;
    text-align: right;
}
.title_icons span:last-child{
    margin-left: 10px; 
}
.title_icons i {
	padding: 3px;
}
.odstep {
	margin: 10px;
}


table.ncode_imageresizer_warning {
    padding: 3px;
    color: #eee; /* the font color */
    cursor: pointer;
}
table.ncode_imageresizer_warning td {
    font-size: 10px;
    vertical-align: middle;
    text-decoration: none;
    color: lightgrey;
}

table.ncode_imageresizer_warning td.td1 {
    display: none;
}
/*
table.ncode_imageresizer_warning {
  background: rgba(0, 0, 0, 0.47);
  position: relative;
  bottom: -30px;
  height: 30px;
  cursor: pointer;
}*/
table.ncode_imageresizer_warning {
    background: rgba(0, 0, 0, 0.25) none repeat scroll 0% 0%;
    position: relative;
    bottom: 0px;
    height: 30px;
    cursor: pointer;
    border-width: 1px 1px 2px;
    border-style: solid solid dashed;
    border-color: #555 #555 #BBB;
    text-align: center;
}
table.ncode_imageresizer_warning td.td1 {
    display: none;
}
.childboards .top_info {
    display: block;
}
.top_info{
	line-height: 25px;
}
.about_info {
	padding: 5px;
}
.info_text {
	min-height: 50px;
    flex: 1 1 0%;
}
#boardindex_table:not(.two_columns) a.info_text.empty_subject {
    padding-top: 10px;
}
a.info_text, a.info_text:hover, .board.info .top_info:hover {
	text-decoration: none;
}
.info_container {
	display: flex;
}
.info_icon {
	float: left;
	padding-right: 5px;
	align-content: center;
	width: 50px;
}
.info_container .info_text .about_info {
    display: unset;
    opacity: 0.7;
}
.info_container .about_info {
    display: none;
}
.board_icon_off, .board_icon_on, .board_icon_redirect {
	width: 48px;
    height: 48px;
    display: block;
}
.board_icon_off {
	background-image: url(http://themodders.org/forumicons/offtop_off.gif);
}
.board_icon_on {
	background-image: url(http://themodders.org/forumicons/offtop.gif);
}
.board_icon_redirect {
	background: transparent url(../images/redirect.png) no-repeat;
}
/*Problematyka*/
#board_32 .board_icon_off,#board_432 .board_icon_off {
	background-image: url(http://themodders.org/forumicons/problematyka_off.gif);
}
#board_32 .board_icon_on,#board_432 .board_icon_on  {
	background-image: url(http://themodders.org/forumicons/problematyka.gif);
}
/*Zapowiedzi modyfikacji*/
#board_14 .board_icon_off, #board_259 .board_icon_off {
	background-image: url(http://themodders.org/forumicons/tworczosc_off.gif);
}
#board_14 .board_icon_on, #board_259 .board_icon_on {
	background-image: url(http://themodders.org/forumicons/tworczosc.gif);
}
/*Ukończone modyfikacje*/
#board_27 .board_icon_off, #board_266 .board_icon_off, #board_437 .board_icon_off  {
	background-image: url(http://themodders.org/forumicons/ukonczonemodyfikacje_off.gif);
}
#board_27 .board_icon_on, #board_266 .board_icon_on, #board_437 .board_icon_on {
	background-image: url(http://themodders.org/forumicons/ukonczonemodyfikacje.gif);
}
/*Samouczki*/
#board_36 .board_icon_off, #board_259 .board_icon_off, #board_464 .board_icon_off, #board_219 .board_icon_off, #board_37 .board_icon_off {
	background-image: url(http://themodders.org/forumicons/tutoriale_off.gif);
}
#board_36 .board_icon_on, #board_259 .board_icon_on, #board_464 .board_icon_on, #board_219 .board_icon_on, #board_37 .board_icon_on{
	background-image: url(http://themodders.org/forumicons/tutoriale.gif);
}
/*Narzedzia*/
#board_261 .board_icon_off, #board_443 .board_icon_off {
	background-image: url(http://themodders.org/forumicons/download_off.gif);
}
#board_261 .board_icon_on, #board_443 .board_icon_on {
	background-image: url(http://themodders.org/forumicons/download.gif);
}
/*Targowisko*/
#board_44 .board_icon_off {
	background-image: url(http://themodders.org/forumicons/targowisko_off.gif);
}
#board_44 .board_icon_on {
	background-image: url(http://themodders.org/forumicons/targowisko.gif);
}

/*3D*/
#board_220 .board_icon_off {
	background-image: url(http://themodders.org/forumicons/3d_off.gif);
}
#board_220 .board_icon_on {
	background-image: url(http://themodders.org/forumicons/3d.gif);
}
/*2D*/
#board_219 .board_icon_off {
	background-image: url(http://themodders.org/forumicons/2d_off.gif);
}
#board_219 .board_icon_on {
	background-image: url(http://themodders.org/forumicons/2d.gif);
}
/*Game art*/
#board_462 .board_icon_off {
	background-image: url(http://themodders.org/forumicons/ga_off.gif);
}
#board_462 .board_icon_on {
	background-image: url(http://themodders.org/forumicons/ga.gif);
}
/*Teczki*/
#board_446 .board_icon_off {
	background-image: url(http://themodders.org/forumicons/teczki_off.gif);
}
#board_446 .board_icon_on {
	background-image: url(http://themodders.org/forumicons/teczki.gif);
}
/*Developing*/
#board_95 .board_icon_off {
	background-image: url(http://themodders.org/forumicons/developing_off.gif);
}
#board_95 .board_icon_on {
	background-image: url(http://themodders.org/forumicons/developing.gif);
}
/*filmy*/
#board_134 .board_icon_off {
	background-image: url(http://themodders.org/forumicons/filmy_off.gif);
}
#board_134 .board_icon_on {
	background-image: url(http://themodders.org/forumicons/filmy.gif);
}
/*muzyka*/
#board_172 .board_icon_off {
	background-image: url(http://themodders.org/forumicons/muzyka_off.gif);
}
#board_172 .board_icon_on {
	background-image: url(http://themodders.org/forumicons/muzyka.gif);
}
/*pisarstwo*/
#board_51 .board_icon_off {
	background-image: url(http://themodders.org/forumicons/pisarstwo_off.gif);
}
#board_51 .board_icon_on {
	background-image: url(http://themodders.org/forumicons/pisarstwo.gif);
}
/*webmastering*/
#board_232 .board_icon_off {
	background-image: url(http://themodders.org/forumicons/webmastering_off.gif);
}
#board_232 .board_icon_on {
	background-image: url(http://themodders.org/forumicons/webmastering.gif);
}
/*forum*/
#board_200 .board_icon_off {
	background-image: url(http://themodders.org/forumicons/forum_off.gif);
}
#board_200 .board_icon_on {
	background-image: url(http://themodders.org/forumicons/forum.gif);
}
/*gry*/
#board_60 .board_icon_off {
	background-image: url(http://themodders.org/forumicons/gry_off.gif);
}
#board_60 .board_icon_on {
	background-image: url(http://themodders.org/forumicons/gry.gif);
}
/*sprzet*/
#board_398 .board_icon_off {
	background-image: url(http://themodders.org/forumicons/sprzet_off.gif);
}
#board_398 .board_icon_on {
	background-image: url(http://themodders.org/forumicons/sprzet.gif);
}

#header[data-board-number='32'] #logo a, #header[data-board-number='146'] #logo a, #header[data-board-number='147'] #logo a, #header[data-board-number='352'] #logo a, 
#header[data-board-number='14'] #logo a, #header[data-board-number='502'] #logo a, #header[data-board-number='17'] #logo a, #header[data-board-number='421'] #logo a, 
#header[data-board-number='23'] #logo a, #header[data-board-number='510'] #logo a, #header[data-board-number='525'] #logo a, #header[data-board-number='27'] #logo a, 
#header[data-board-number='514'] #logo a, #header[data-board-number='15'] #logo a, #header[data-board-number='19'] #logo a, #header[data-board-number='67'] #logo a, 
#header[data-board-number='484'] #logo a, #header[data-board-number='471'] #logo a, #header[data-board-number='493'] #logo a, #header[data-board-number='224'] #logo a, 
#header[data-board-number='36'] #logo a, #header[data-board-number='53'] #logo a, #header[data-board-number='54'] #logo a, #header[data-board-number='466'] #logo a, 
#header[data-board-number='52'] #logo a, #header[data-board-number='465'] #logo a, #header[data-board-number='416'] #logo a, #header[data-board-number='415'] #logo a, 
#header[data-board-number='271'] #logo a, #header[data-board-number='128'] #logo a, #header[data-board-number='190'] #logo a, #header[data-board-number='69'] #logo a, 
#header[data-board-number='375'] #logo a, #header[data-board-number='477'] #logo a, #header[data-board-number='417'] #logo a {
    background: url("http://i.imgur.com/qUOpSlf.png");
}
#header[data-board-number='26'] #logo a, #header[data-board-number='60'] #logo a {
    background: url("http://i.imgur.com/NnID4R4.png");
}
.nextlinks, .nextlinks_bottom, #display_jump_to{
	display: none;
}

.gpbp_vote span {
    background: #707880 none repeat scroll 0% 0%;
	border-radius: 4px;
	color: #DDD;
    font-weight: 800;
    position: relative;
	transition-duration: 0.5s;
    padding: 3px 7px;
    white-space: nowrap;
    display: inline-block;
}
.gpbp_vote span:hover{
    background: #D35B00 none repeat scroll 0% 0%;
	
}
.gpbp_vote_img {
	color: #D35B00;
    font-size: 18px;
    line-height: 23px;
    padding: 0px 2px;
}
.gpbp_vote_img:hover {
	color: #B34B00;
	text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.6);
}
.gpbp_vote {
	margin: 0px;
}
.gpbp_vote select {
    display: none;
}
.Propsuj {
	color:#707880;
}
.Propsuj:hover {
	color: #cdcdcd;
	text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.6);
}
#topnav .notify_button a{
	display: block;
	line-height: 46px;
	padding: 0px 16px;
	font-size: 13px;
	font-weight: bold;
}
.notify_button a i {
	color:#707880;
	padding-right: 5px;
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.6);
}

.notify_button:hover i, .notify_button.new a i{
	color: #E66601;
}
#topnav ul.floatright li.notify_button a {
    padding: 0px 5px;
}
#topnav .firstlevel i {
    font-size: 16px;
    padding-right: 5px;
}
#topnav .firstlevel:hover i {
    color: #E66601;
}
#button_pm, #button_profile {
	display: none;
}

.comment {
	background: #373B41;
	box-shadow: 0px 2px 3px #000;
	border-bottom: 2px dashed #4A5058;
	transition-duration: 0.4s;
}
.comment:nth-child(2n){
    background: #32353A;
}
.comment:active {
    border-color: #E66601;
}
#profile_comments_catbar {
	margin-top: 15px;
}
.pageindex {
    padding: 5px;
    float: right;
}
.header_profile_link .more:hover i{
	color: #E66601;
}
.comment_content, .comment_header {
	padding: 3px;
	display: flex;
}
.comment_header {
    margin: 0px 1em 0px 0px;
}
.comment_header .comment_rest {
	padding: 3px 0px 0px 0px;
}
.comment_content {
    margin: 0px 1em 0px 0px;
    border-top: 1px solid #525252;
}
.comment_content .comment_rest {
	padding: 1em 1em 1em 0px;
}
.comment_poster {
    text-align: center;
    width: 150px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.comment_content .comment_poster{
    margin-bottom: 10px;
}
.comment_rest {
	flex: 1 1 0%;
}
.comment_content .comment_rest {
	padding: 5px 20px;
    font-size: 13px;
    line-height: 1.7em;
}
.comment_poster img.avatar {
    width: 60px;
    max-height: 60px;
    display: block;
    margin: 5px calc(50% - 30px);
}
.floatright.comment_options a {
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    float: left;
    color: #707880;
	margin-left: 5px;
    height: 20px;
    line-height: 18px;
    font-weight: bold;
    text-align: right;
    font: bold 0.85em arial,sans-serif;
}
.comment_options a:hover {
    color: #E0E3E1;
}
.comment_header .comment_poster a {
    font-size: 16px;
    color: #BCBCBC;
    text-decoration: none;
}
.comment_options a:hover i {
    color: #E66601;
}
.comment_poster span.smalltext {
    padding: 0px;
    list-style: outside none none;
    line-height: 25px;
}
.floatright.comment_options {
    margin-top: 3px;
}
.flex_container {
	display: flex;
}
.flex_child_rest_of_space {
	flex: 1 1 0%;
}
.flex_column {
	flex-direction: column;
}
.profile_info_container {
	background-color: #282a2e;
    border-top: 1px solid #575B61;
}
.profile_info_category {
	padding-bottom: 20px;
	margin: 0 10px;
	flex: 1 1 0%;
}
.basic_info {
	padding: 5px;
}
.basic_info .username {
	text-align: left;
	font-size: 12px;
}
.basic_info .username strong {
	font-size: 22px;
	display: block;
}
.basic_info .smaller {
	font-size: 10px;
}
.basic_info .last_status {
	padding-right: 5px;
}
.basic_info .avatar {
	border-radius: 50%;
	border: 3px solid transparent;
	box-shadow: 0px 4px 5px #000;
    height: 80px;
    width: 80px;
	margin: 5px;
	margin-right: 10px;
}
.basic_info .Online, .basic_info .Offline {
	text-transform: uppercase;
	font-weight: 100;
	line-height: 105%;
}
.profile_info_container h4, .topic_of_day_bar {
	border-left: 2px solid #C5C8C6;
	color: #C5C8C6;
	padding: 3px;
	font-size: 15px;
	padding-left: 20px;
	background-color: transparent;
	transition: background-color 0.4s ease-in-out 0s;
}
.profile_info_category:hover h4, #upshrinkHeaderIC:hover .topic_of_day_bar {
	background-color: rgba(0,0,0,0.1);
	border-left-color: #E66601;
}
.basic_info .icon_links {
	display: block;
}
.basic_info .icon_links a {
    padding: 7px;
    color: #AAA;
	transition: background-color 0.4s ease-in-out 0s;
}
.basic_info .icon_links a:hover{
	color: #E66601;
}
.profile_info_container .poster_field, .profile_info_container .poster_value {
	flex: 1 1 0%;
    width: 41%;
    max-width: 400px;
}
.profile_info_container .profile_info_line:hover {
    border-bottom: 1px solid #555;
    border-top: 1px solid #555;
}
.profile_info_container .profile_info_line:active {
    border-bottom: 1px solid #E66601;
    border-top: 1px solid #E66601;
}
.profile_info_container .profile_info_line {
    display: flex;
    border-bottom: 1px solid transparent;
    border-top: 1px solid transparent;
    line-height: 160%;
	transition-duration: 0.5s;
}
.profile_info_container .poster_field {
    font-weight: bold;
    color: #9b9b9b;
	padding-right: 10px;
}

.basic_info .Online {
	color: #E66601;
}
#profile_comments_catbar.cat_bar {
	background-color: transparent;
	border-left: 2px solid #7f7f7f;
	transition-duration: 0.4s;
}
#profile_comments_catbar.cat_bar h3.catbg, #profile_comments_catbar.cat_bar h3.catbg a {
	background-color: transparent;
	color: #7f7f7f;
}
#detailedinfo:hover #profile_comments_catbar.cat_bar {
	background-color: rgba(0,0,0,0.1);
	border-left-color: #E66601;
}
#detailedinfo:hover #profile_comments_catbar.cat_bar h3.catbg, #detailedinfo:hover #profile_comments_catbar.cat_bar h3.catbg a {
	color: #E2E5E3;
}
/*Nchat*/
#nchat_editor #nchat_color,#nchat_editor  #italic,#nchat_editor  #underline,#nchat_editor  #bold {
	display: none;
}
.lof-slidecontent {
    overflow: hidden;
    width: 892px;
    height: 300px;
    position: relative;
    border: 1px solid #4A5058;
    background-color: #373B41;
}
.lof-navigator li div {
	border-top: 1px solid #4A5058;
	background: #282A2E;
	color:#888;
	border-right: 3px solid transparent;
}

.lof-navigator li.active{
	background: transparent;
	color:#BBB;
}

.lof-navigator li.active div{
	background: rgba(0, 0, 0, 0.5) none repeat scroll 0% 0%;
	color:#bbb;
	border-right: 3px solid #E66601;
}
fieldset.admin_group legend {
    border: 1px solid rgb(55, 59, 65);
    padding: 1px 5px;
    border-radius: 3px;
    background: rgb(40, 42, 46) none repeat scroll 0% 0%;
}
.hidden_item {
	display: none;
}
#yshout {
	font-size: 13px;
	overflow: hidden;
	background: #373B41 none repeat scroll 0% 0%;
}
#yshout #yshout-toollinks { /* tool links (History, Commands, etc.) */
	display: block;
	padding: 5px;

}
#yshout #shouts { /* main shouts area */
    background-color: #282A2E;
    border-top: 1px solid #575B61;
    padding: 5px 10px;
    min-height: 200px;
    overflow-x: hidden;
    max-height: 250px;
}
#yshout #shouts .shout { /* one shout */
	float: none;
	margin: 0 0 0; /* Top Bottom Linespacing */
	line-height: 160%;
	border-bottom: 1px solid transparent;
	border-top: 1px solid transparent;
	transition-duration: 0.5s;
	text-overflow: ellipsis;
	overflow: hidden;
	word-wrap: break-word;
	max-height: 3em;
}
.shoutbox_warning {
	padding: 5px 15px;
	background: #373B41 none repeat scroll 0% 0%;
	font-size: 13px;
}
#yshout #shouts .shout:hover {
	border-bottom: 1px solid #555;
	border-top: 1px solid #555;
}
#yshout .shout-timestamp {
	font-style: normal;
	font-weight: normal;
	float: right;
}
#yshout .shout-adminlinks { /* del and ban buttons */
	font-size: 6pt;
	color: #141414;
}
#yshout #shout-form {
	margin: 0;
	padding: 0;
}
#yshout #shout-form fieldset {
	border: none;
}
#yshout #forum-name {
	display: none;
}
#yshout #shout-text {
	margin-right: 5px;
	width: calc(100% - 80px);
}
#yshout #shout-button {
	width: 55px;
	cursor: pointer;
}
#yshout #shout-button:hover {
	background-color: #284A67;
	color: #EEE;
}
#yshout .shout-invalid { /* invalid shout (shout textbox) */
	background: #FFFDD1;
}
#welcome {
    padding: 5px 10px;
}
#manage_boards li:hover {
    background-color: rgba(0,0,0,0.2);
}
#personal_messages .postarea div.flow_hidden ul.quickbuttons {
    opacity: 1;
}
#nchat_input {
    margin-left: 10px;
    margin-right: 10px;
    width: calc(100%-120px) !important;
}
.sb_shout {
	line-height: 1.5em;
	border-bottom: 1px solid transparent;
	border-top: 1px solid transparent;
	transition-duration: 0.5s;
	text-overflow: ellipsis;
	overflow: hidden;
	word-wrap: break-word;
	max-height: 4em;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 13px;
}
.sb_shout span.nick {
    width: 100px;
    display: inline-block;
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sb_shout span:nth-child(2) {
    vertical-align: top;
}
div.sb_shout:nth-child(2n) {
    background-color: rgba(0, 0, 0, 0.2);
}
.sb_shout span.floatright {
    opacity: 0.7;
}
/*
.sb_shout:hover {
	border-bottom: 1px solid #555;
	border-top: 1px solid #555;
}
*/
#nchat_admin_shoutbox {
    padding-top: 5px;
    padding-bottom: 5px;
    border-left-width: 1px;
    border-left-color: transparent;
    border-top: 1px solid #575B61;
}
#nchat_shoutbox .title_barIC {
    background-color: rgb(55, 59, 65);
    border-bottom-color: transparent;
}
#nchat_shoutbox .titlebg {
    background-color: transparent;
    font-weight: normal;
    font-size: 14px;
}
.moderatorbar .gpbp_vote {
    display: block;
    width: 100%;
}
.moderatorbar .gpbp_vote span {
    display: inline-block;
    background: transparent none repeat scroll 0% 0%;
    color: rgb(153, 153, 153);
    font-size: 12px;
}
.moderatorbar .gpbp_voterslist_div {
    display: unset;
    position: unset;
    top: unset;
    right: unset;
    padding: 0px 5px;
    border: unset;
    background: unset;
    z-index: unset;
    max-width: unset;
    min-width: 100px;
    overflow-x: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    line-height: 160%;
}
.gpbp_vote .help:hover .gpbp_voterslist_div.active_props_list:not(:hover) {
    display: inline;
    max-width: 200px;
    min-width: 100px;
    overflow-x: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    line-height: 160%;
}
.sp-head {
    cursor: pointer;
    color: #FFF;
    font-size: 13px;
    line-height: 22px;
    min-height: 20px;
    margin-top: 10px;
}
#pick_theme .windowbg {
    margin-left: -3px;
    border-left: 3px solid #E66601;
}
#pick_theme .flow_hidden.content:hover .floatright img {
    border-color: rgb(230, 102, 1);
}
#pick_theme .floatright img {
    box-shadow: 0px 4px 5px #000;
    border-radius: 50%;
    height: 110px;
    width: 110px;
    border: 3px solid transparent;
    padding: 0px;
    transition-duration: 0.3s;
}
#pick_theme .flow_hidden.content {
    min-height: 130px;
}

#personal_messages .signature, #personal_messages .poster li.stars, #personal_messages .im_icons, #personal_messages .postcount, #personal_messages .custom, #personal_messages li.profile, #personal_messages .blurb, #personal_messages .title {
    display: none;
}
#personal_messages .poster ul.reset li {
    line-height: 12px;
}
#personal_messages .inner {
    min-height: 80px;
}
#personal_messages .poster h4 a {
    font-size: 16px;
    font-weight: bold;
    color: #BCBCBC;
}
#personal_messages .windowbg2.clear, #personal_messages .windowbg.clear {
    clear: both;
    min-height: 165px;
}
#sp_footer div.shoutbox_info {
    display: none;
}
#sp_footer .shoutbox_list_compact li:nth-child(2n) {
    background-color: rgba(0,0,0,0.2);
}
#sp_footer .shoutbox_list_compact li {
    border-left: 0px solid transparent;
    border-bottom: 0px solid transparent;
    font-size: 13px;
    padding-left: 48px;
}
#sp_footer span.smalltext.shoutbox_time {
    text-align: right;
    width: 100%;
    display: inline-block;
    margin-left: -10px;
    color: #777;
}
#sp_footer .shoutbox_list_compact > .smalltext > img:nth-of-type(1) {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    position: relative;
    margin-right: -22px;
    margin-bottom: -25px;
    right: 40px;
}
#sp_footer .shoutbox_container input.shoutbox_input {
    margin-left: 10px;
    width: 90%;
    font-size: 12px;
    padding: 4px;
}
#sp_footer .shoutbox_container .sp_float_right.button_submit {
    float: unset;
    width: calc(100% - 90% - 31px);
    font-size: 12px;
    padding: 3px;
}
#sp_footer .shoutbox_list_compact {
    border-top: 1px solid #575B61;
    border-bottom: 1px solid #575B61;
}
#sp_footer .shoutbox_body {
    text-align: left;
    padding: 0px;
    background-color: #282A2E;
}
#sp_footer {
    margin-top: 20px;
}
#sp_footer div.sp_block {
    padding: 0px;
}

#forumposts .windowbg, #forumposts .windowbg2, .windowbg2.core_posts, .windowbg.core_posts, #recent .windowbg.core_posts {
    margin-left: 2px;
    background-color: rgb(55, 59, 65);
    box-shadow: none;
    margin-bottom: 0px;
    border-width: 0px 0px 2px;
    border-style: solid solid dashed;
    border-color: #5E646C;
}
#recent .windowbg.core_posts{
    margin-left: 3px;
    border-color: #A9AFB7;
}
#recent .windowbg.core_posts:hover{
    border-left: 3px solid #E66601;
    margin-left: 0px;
}
#forumposts .windowbg.alternate_bg, .windowbg.alternate_bg, #recent .windowbg.core_posts.alternate_bg, .windowbg2.core_posts {
    background-color: #32353A;
}
.two_columns .board.info:nth-child(1), .two_columns .board.info:nth-child(2) {
    border-top: 2px solid rgb(153, 153, 153);
}
ul.quickbuttons li.thank_you_success a {
    color: #E66601;
}
ul.quickbuttons li.thank_you_button, ul.quickbuttons li.thank_you_success {
    background: unset;
}
.pomarancz {
    color: #D35B00;
}
.thanks_list {
    position: relative;
    cursor: pointer;
    margin: 0px 11px 0px 0px;
}
.thanks_list span.thanks_counter {
    display: none;
}
.thanks_list span.thanks_counter.visible{
    display: inline;
    padding: 3px 6px;
    border-radius: 50%;
    background-color: #707880;
    color: #DDD;
    font-weight: bold;
    font-size: 14px;
}
.thanks_list .users {
    display: none;
    position: absolute;
    padding: 10px;
    text-align: center;
    background: #282A2E none repeat scroll 0px 0px;
    border: 1px solid #4B5058;
    color: #BCBCBC;
    z-index: 1;
    transition-duration: 0.5s;
    font-weight: normal;
    font-size: 12px;
    top: 100%;
    left: -50px;
    width: 100px;
    line-height: 17px;
}
.thanks_list:hover .users.visible:not(:hover){
    display: inline;
} 

#leinnan_qr_container {
    padding: 20px 5px 5px;
    width: 90%;
}
#leinnan_qr_container .tytul {
    float: right;
    line-height: 1.6em;
    font-size: 15px;
    font-weight: bold;
}
#leinnan_qr_container .category_container {
    display: inline-block;
    padding: 0px 5px;
    border-right: 2px solid #666;
}
#leinnan_qr_container i {
    padding: 2px;
    display: inline-block;
    font-size: 14px;
    color: #CCC;
    border: 1px solid transparent;
    transition-duration: 0.3s;
    line-height: 20px;
    min-width: 20px;
    text-align: center;
    margin-right: 5px;
}
#leinnan_qr_container i:hover {
    border-color: #ccc;
    background-color: #555;
    color: #DDD;
    cursor: pointer;
}
#leinnan_qr_container i.active, #leinnan_qr_container i:active  {
    background-color: #555;
    border-color: #E66601;
    color: #FFF;
}
.float_menu {
    position: fixed;
    top: -50px;
    margin: 0px auto;
    width: 100%;
    padding: 0px;
    background-color: #282A2E;
    z-index: 999;
    font-size: 15px;
    line-height: 1.6em;
    box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.5);
    height: 37px;
    transition: all 0.5s ease 0s;
}
#main_body .float_menu .wrapper {
    padding: 0;
}
.float_menu .title, .float_menu .change_site {
	display: inline-block;
    padding-bottom: 5px;
    padding-top: 5px;
}


.float_menu .title {
    font-weight: bold;
    cursor: pointer;
    padding-left: 18px;
}
.float_menu .title span {
    display: none;
    font-weight: normal;
    transition-duration: 0.5s;
}
.float_menu .title span {
    opacity: 0.6;
}
.float_menu .title[data-view-type='1'] #replies_number, .float_menu .title[data-view-type='2'] #views, .float_menu .title[data-view-type='3'] #watchers, .float_menu .title[data-view-type='0'] #topic_float_icons {
    display: inline-block;
    padding-left: 10px;
    font-size: 0.9em;
    line-height: 1.78em;
}
#topic_float_icons i {
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.8);
    font-size: 120%;
    padding-right: 10px;
}
#topic_float_icons .fa-lock {
    color: #D55;
}
.float_menu .change_site {
	float: right;
	padding-right: 18px;
    color: #999;
    font-size: 0px;
}
.change_site .dots {
    display: none;
}
.change_site a {
    padding: 2px;
    line-height: 22px;
    opacity: 1;
}
.change_site a, .change_site strong {
    font-size: 15px;
    padding: 2px;
    display: inline-block;
}
.change_site a:hover {
    text-decoration: none;
    cursor: default;
}
.change_site a:not(.current):hover {
    color: #E66601;
    cursor: pointer;
}
.float_menu #site_progress {
	height: 3px;
	border: none;
    background-color: gray;
    position: absolute;
    bottom: 0px;
    z-index: 999;
}
.float_menu progress {
	width: 100%;
	height: 3px;
	background-color: transparent;
	border: none;
	color: #E66601;
    position: absolute;
    bottom: 0px;
    -webkit-appearance: none;
    appearance: none;
    z-index: 1000;
}
.float_menu progress::-webkit-progress-bar {
  background-color: transparent;
}

.float_menu progress::-webkit-progress-value {
  background-color: #E66601;
}

.float_menu progress::-moz-progress-bar {
  background-color: #E66601;
}


/* Simple Portal */
.sp_fullwidth.sp_articles tbody {
    display: flex;
}
.sp_articles tr {
    width: 100%;
    display: block;
    margin: 0px 10px;
    padding: 5px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.3);
}

.ignored .poster ul.reset.smalltext, #forumposts .ignored .poster .nick .about.windowbg2, #forumposts .ignored .inner, #forumposts .ignored .signature {
    display: none;
}

.ignored .post_wrapper {
    transition-duration: 0.5s;
}
.ignored .post_wrapper:not(:hover) {
    opacity: 0.4;
}

/* Tutoriale start */
#tutorial_index h2 {
    font-size: 32px;
    line-height: 2em;
    color: #AAA;
    font-weight: normal;
    text-align: center;
    margin-top: 30px;
    border-bottom: 2px solid #7F3326;
}
#tutorial_index .boards_container {
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
}
.board_tutorial {
    background-color: #373B41;
    margin: 10px 1%;
    box-shadow: 0px 4px 5px #000;
    display: block;
    width: 23%;
}
.board_tutorial.hidden {
    display: none;
}
.board_tutorial:hover {
    text-decoration: none;
}
.tutorial_icon, .tutorial_name {
    padding: 10px 15px;
    justify-content: center;
    display: flex;
    flex-direction: row;
}
.board_tutorial .tutorial_icon img {
    transition-duration: 0.5s;
    width: 100px;
    height: 100px;
    margin: 5px;
}
.board_tutorial:not(:hover) .tutorial_icon img {
    transform: matrix(0.75, 0, 0, 0.75, 0, 0);
    -webkit-filter: grayscale(100%); 
    filter: grayscale(100%);
}
.tutorial_name {
    background-color: rgb(44, 47, 52);
    border-top: 2px solid rgb(74, 80, 88);
}
.tutorial_name .header {
    display: block;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}
.placeholder {
    border: 2px dashed #7F3326;
    margin: 15px 0px;
    color: #7F3326;
    font-size: 15px;
    line-height: 2em;
    padding: 5px;
}
.tutorial_tags {
    margin: 15px 0px;
    color: #999;
    font-size: 16px;
    line-height: 2em;
    padding: 5px;
    font-weight: bold;
    transition-duration: 0.4s;
}
.tutorial_tags span {
    display: inline-block;
    margin: 0px 5px;
    cursor: pointer;
    padding: 3px;
    transition-duration: 0.4s;
    text-transform: lowercase;
    cursor: pointer;
}
.tutorial_tags span.selected_hashtag {
    background-color: #373B41;
    color: E66601;
}
.tutorial_tags span:hover {
    background: rgba(0,0,0,0.3);
}
.tutorial_tags span::before {
    content: "#";
}
#forumposts .windowbg.tutorial_content {
    margin-left: 0px;
    border-bottom-width: 0;
}
#forumposts .windowbg.tutorial_content span.botslice {
    height: 0;
}
.tutorial_content .postarea {
    margin: 0 0 0 0;
}
.tutorial_content .inner {
    padding: 0.5em 2.5em;
    margin: 0 0 0 0;
    border-top: 0px solid;
}
.tutorial_about {
    display: flex;
    justify-content: space-between;
    background-color: rgb(44, 47, 52);
    border-top: 2px solid rgb(74, 80, 88);
    padding: 0.5em 2.5em;
}
.tutorial_about .author {
    text-align: center;
    padding: 10px;
}
.tutorial_about .nick, .tutorial_about .nick a {
    font-size: 16px;
    font-weight: bold;
    transition-duration: 0.3s;
    color: #BCBCBC;
    display: block;
}
.tutorial_about .topic_info {
    text-align: right;
    justify-content: flex-end;
    flex-direction: column;
    display: flex;
}
.tutorial_about .topic_info p {
    margin: 0;
    line-height: 1.6em;
    font-size: 13px;
    margin-bottom: 5px;
}
#move_to_topic_view {
    display: block;
    font-size: 20px;
    padding: 10px;
    text-align: center;
    margin: 10px 0px;
    border-bottom: 3px solid transparent;
    transition-duration: 0.3s;
    color: #999;
}
#move_to_topic_view:hover {
    text-decoration: none;
    color: #bbb;
    background: rgba(55, 59, 65, 0.3);
    border-bottom: 2px solid rgba(55, 59, 65, 0.3);
}

#recent .nothing_new {
    padding: 25px;
    text-align: center;
    line-height: 1.7em;
    font-size: 20px;
    border: 2px dashed #37536A;
    color: #bbb;
    margin-bottom: 20px;
}
#recent .nothing_new i {
    font-size: 50px;
    width: 100%;
    text-align: center;
    display: block;
}
.work_banner {
    width: 100%;
    position: relative;
    margin: 10px 0;
}
.work_image {
    display: block;
    height: 130px;
    background-repeat: repeat-y;
    background-position: center;
}
.work_author {
    position: absolute;
    bottom: 0;
    right: 10%;
    padding: 2px 10px;
    background-color: rgba(0,0,0,0.7);
    font-size: 14px;
    line-height: 2em;
}
#close_work_banner {
    position: absolute;
    right: 5px;
    line-height: 20px;
    width: 20px;
    text-align: center;
    font-weight: bold;
    color: white;
    background-color: rgba(0,0,0,0.7);
    cursor: pointer;
}
.in_post_header {
    line-height: 1.4em;
    font-size: 23px;
    font-weight: bold;
    padding-left: 7px;
    border-left: 3px solid brown;
    margin: 10px 0;
}

#welcome_banner {
    margin: 10px 0px;
    padding: 10px;
    border: 1px solid #373B41;
    background: #282a2e;
    font-size: 15px;
    display: flex;
}
.welcome_text {
    width: 340px;
    padding: 10px 0px;
    display: inline-block;
}
a.register_button {
    margin: 15px 5px;
    display: inline-block;
    background: #1F415E;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    border: 1px solid #4D667F;
    padding: 5px;
    text-transform: uppercase;
    cursor: pointer;
}
a.register_button:hover {
    text-decoration: none;
    border-color: #CCC;
}
.welcome_icons {
    width: 100%;
}
.welcome_icons_header {
    padding: 0px 80px 5px 80px;
    font-weight: bold;
    color: #aaa;
    font-size: 17px;
}
.welcome_icons_container {
    display: flex;
    justify-content: space-around;
}
.welcome_icon_box {
    cursor: pointer;
    text-align: center;
    padding: 10px;
    transition-duration: 0.5s;
}
.welcome_icon_box:hover {
    background-color: rgba(0,0,0,0.2);
}
.welcome_icon_box i {
    font-size: 40px;
    color: #777;
    padding: 10px;
    transition-duration: 0.5s;
}
.welcome_icon_box:hover i {
    color: #e66601;
}