/* Custom fonts.
------------------------------------------------------- */
 /* @import url(http://fonts.googleapis.com/css?family=Open Sans:400,700,400italic); */
@import url("//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,400,300,700");
@import url("//fonts.googleapis.com/css?family=Titillium+Web:400,200,400italic,600");


/*@font-face {
    font-family: 'Planer';
    src:url('../fonts/Planer_reg-webfont.eot'),
		url('../fonts/Planer_reg-webfont.eot') format('embedded-opentype'),
        url('../fonts/Planer_reg-webfont.ttf') format('truetype');
}
*/

@font-face {
  font-family: 'FontAwesome';
  src: url('../fonts/fontawesome-webfont.eot?v=4.0.4');
  src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.0.4') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff?v=4.0.3') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.0.3') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.0.3#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}

/* Styles for the general looks for the Curve theme.
------------------------------------------------------- */

/* Normal, standard links. */
a:link, a:visited
{
	/*color: #2C2C2C;*/
	color: #686868;
	font-weight: 600;
	text-decoration: none;
}
a:hover
{
	cursor: pointer;
}

/* Links that open in a new window. */
a.new_win:link, a.new_win:visited
{
	color: #EE303B;
	text-decoration: none;
}
a.new_win:hover
{
	text-decoration: underline;
}

/* Tables should show empty cells. */
table
{
	border-spacing: 0;
	empty-cells: show;
}

/* Set a fontsize that will look the same in all browsers. */
body
{
	background-image: url('https://www.getsome.co.nz/themes/foundation/images/noisy_bg.jpg');
	background-color: #141417;
	font: 75%/130% Open Sans, sans-serif;
	margin: 0 auto;
}

/* Help popups require a different styling of the body element. */
body#help_popup
{
	background-image: none;
	background-color: #EE303B;
	padding: 10px;
}

/* use dark grey for the text, leaving #000 for headers etc */
body, td, th, tr
{
	color: #2C2C2C;
}

/* This division wraps the entire forum when a forum width is set. */
div#wrapper
{
	margin: 30px auto;
	min-width: 1100px;
	max-width: 1100px;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	overflow: hidden;
}

/* 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: 90%/100% verdana, Helvetica, sans-serif;
	color: #2C2C2C;
	background: #fff;
	border: 1px solid #e5e5e5;
	padding: 5px;
}

/* 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: 1px;
}

/* 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. */
input[type='checkbox'] {
	margin-top: 6px;
}
.button_submit, .button_reset
{
	background: white;
	cursor: pointer;
	font-weight: 600;
	font-family: Titillium Web, sans-serif;
	letter-spacing: 0.3px;
	font-size: 120%;
	color: #2C2C2C;
	text-transform: uppercase;
	padding: 15px 35px;
}
button:hover
{
	color: #EE303B;
}
.button_submit:hover, .button_reset:hover
{
	color: #EE303B;
}
input:focus, textarea:focus, button:focus, select:focus
{
	border: 1px solid #919090;
}
/* MOD BUTTON STRIP */
.button_strip_move
{
	margin-left: 0 !important;
}
/* 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;
	position:relative;
	top: 2px;
}
h3.catbg input.input_check
{
	margin: 9px 7px 0 7px;
}
/* PROFILE COMMENTS */
#cprofile .catbg
{
	background-color: white;
	padding: 10px;
	color: #EE303B;
}
.gen
{
	margin-right: 5px;
}
/* Give disabled text input elements a different background color. */
input[disabled].input_text
{
	background-color: #eee;
}

/* Standard horizontal rule.. ([hr], etc.) */
hr, .hrcolor
{
	height: 1px;
	border: 0;
	color: #e5e5e5;
	background-color: #e5e5e5;
}

/* By default set the color on these tags as #000. */
h1, h2, h3, h4, h5, h6
{
	color: #000;
	font-size: 1em;
	margin: 0;
	padding: 0;
}

/* Fieldsets are used to group elements. */
fieldset
{
	border: 1px solid #e5e5e5;
	padding: 5px !important;
	margin: 5px;
}
fieldset legend
{
	font-weight: bold;
	color: #444;
}
/* No image should have a border when linked. */
a img
{
	border: 0;
}

/* Define strong as bold, and em as italics */
strong
{
	font-weight: 400;
}

em
{
	font-style: normal;
}
/* 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
{
	overflow: hidden;
}
.flow_hidden .windowbg, .flow_hidden .windowbg2
{
	margin-top: 2px;
}
.clear
{
	clear: both;
}
.clear_left
{
	clear: left;
}
.clear_right
{
	clear: right;
}

/* Default font sizes: small (8pt), normal (10pt), and large (14pt). */
.modified a{
	color: #949494;
}
.smalltext, tr.smalltext th
{
	font-size: 0.85em;
	font-family: Open Sans, sans-serif;
	color: #949494;
}
.smalltext ul {
list-style: none;
text-align: right;
display: inline;
padding-right: 20px;
}
.moderatorbar .smalltext ul li {
	float: right;
	margin-right: 5px;
}
.moderatorbar .smalltext ul li:first-child {
	margin-right: 15px;
}
.recent-thread {
	padding: 5px 0;
}
.recent-thread:not(:first-child),
.recent-thread a {
	text-align:right;
	color: #949494;
}
.recent-thread:first-child a{

	color: #686868;
}
.middletext
{
	font-size: 11px;
	font-family: Open Sans, serif;
}
.middletext tbody>tr:last-child td {
	border-bottom: 0;
}
.middletext td {
	color: #949494;
	border-bottom: 1px solid #e5e5e5;
}
.middletext label {
	position: relative;
	top: -2px;
}
.normaltext
{
	font-size: 1em;
	line-height: 1.2em;
}
.largetext
{
	font-size: 1.4em;
}
.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 0 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;
}

/* Some BBC related styles.
------------------------------------------------------- */

/* A quote, perhaps from another post. */
blockquote.bbc_standard_quote, blockquote.bbc_alternate_quote
{
	font-size: x-small;
	color: #686868;
	line-height: 1.4em;
	border-left: 2px solid #ee303b;
	padding: 1.1em 1.4em;
	margin: 5px 0;
	overflow: auto;
	max-width: 95%;
}

/* Alterate blockquote stylings */
blockquote.bbc_standard_quote
{
	background-color: #f9f9f9;
}
blockquote.bbc_alternate_quote
{
	background-color: #f5f5f5;
}

/* 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: #eef;
	border-top: 2px solid #999;
	border-bottom: 2px solid #999;
	line-height: 1.5em;
	padding: 3px 1em;
	overflow: auto;
	white-space: nowrap;
	/* Show a scrollbar after about 24 lines. */
	max-height: 24em;
	max-width: 700px;
}

/* The "Quote:" and "Code:" header parts... */
.codeheader, .quoteheader
{
	color: #666;
	font-size: x-small;
	font-weight: bold;
	padding: 0 0.3em;
}

/* For links to change the code stuff... */
.codeoperation
{
	font-weight: normal;
}

/* Styling for BBC tags */
.bbc_link:link, .bbc_link:visited
{
	border-bottom: 1px solid #A8B6CF;
}
.bbc_link:hover
{
	text-decoration: none;
	border-bottom: 1px solid #346;
}
.signature .bbc_link:link, .signature .bbc_link:visited
{
	border-bottom: none;
}
.signature .bbc_link:hover
{
	text-decoration: none;
	border-bottom: none;
}

.bbc_size
{
	line-height: 1.4em;
}
.bbc_color a
{
	color: inherit;
}
.bbc_img
{
	border: 0;
	/* This is just to keep images to a handy size, even on large screens. */
	max-height: 640px;
	/* This prevents images breaking out of the post on small screens. */
	max-width: 95%;
}
.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_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: #D1E1EF;
	color: #000 !important;
}

/* Generic, mostly color-related, classes.
------------------------------------------------------- */

.titlebg, .titlebg2, tr.titlebg th, tr.titlebg td, tr.titlebg2 td
{
	font-family: Titillium Web, serif;
	font-size: 1.2em;	
	background: transparent;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	font-weight: 200;
}
.catbg, .catbg2, tr.catbg td, tr.catbg2 td, tr.catbg th, tr.catbg2 th
{
	font-family: Titillium Web, serif;
	letter-spacing: 0.2px;
	font-weight: 400;
	font-size: 0.9em;
	background: transparent;
	text-transform: uppercase;
}

/* 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: #2C2C2C;
}
tr.catbg th a:link, tr.catbg th a:visited, tr.catbg2 td a:link, tr.catbg2 td a:visited
{
	color: #2C2C2C;
	font-family: Titillium Web, sans-serif;
	font-size: 13px;
	letter-spacing: 0.4px;
	font-weight: 400;
}
.catbg select
{
	height: 1.5em;
	font-size: 0.85em;
}

/* Alternating backgrounds for posts, and several other sections of the forum. */
.windowbg, #preview_body
{
	color: #686868;
	background-color: #FFF;
}
.windowbg2
{
	color: #686868;
	background-color: #FFF;
}
.windowbg3
{
	color: #686868;
	background-color: #FFF;
}

/* the page navigation area */
.pagesection
{
	font-size: 1em;
	font-family: Titillium Web, sans-serif;
	text-transform: uppercase;
	
	font-weight: 400;
	letter-spacing: 0.3px;
	padding: 5px 10px;
}

.pagelinks {
	position: relative;
	margin: 16px 0;
}
/* Colors for background of posts requiring approval */
.approvebg
{
	color: #000;
	background-color: #ffeaea;
}
.approvebg2
{
	color: #000;
	background-color: #fff2f2;
}

/* Color for background of *topics* requiring approval */
.approvetbg
{
	color: #000;
	background-color: #e4a17c;
}
.approvetbg2
{
	color: #000;
	background-color: #f3bd9f;
}

/* Sticky topics get a different background */
.stickybg, .stickybg2
{
	background: #FFF3F4;
}
.stickybg2
{
	background: #FFF3F4;
}

/* Locked posts get a different shade, too! */
.lockedbg
{
	background: #EFEFEF;
	font-style: italic;
}
.lockedbg2
{
	background: #EFEFEF;
	font-style: italic;
}

/* Posts and personal messages displayed throughout the forum. */
.post, .personalmessage
{
	overflow: auto;
	line-height: 18px !important;
	padding: 0 0 5px;
	font: 100% verdana,Helvetica,sans-serif;
}

/* 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 #A1A1A1;
	line-height: 1.4em;
	font-size: 0.9em;
}
.custom_fields_above_signature
{
	width: 98%;
	clear: right;
	padding: 1em 0 3px 0;
	border-top: 1px solid #A1A1A1;
	line-height: 1.4em;
	font-size: 0.85em;
}

/* Sometimes there will be an error when you post */
.error
{
	color: #EE303B;
}

/* Messages that somehow need to attract the attention. */
.alert
{
	color: #EE303B;
	padding: 25px 0 15px 0;
}
.content > div:nth-child(2) > strong:nth-child(1) {
	margin-right: 10px;
}
/* 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
{
	background: white url(../images/openid.gif) no-repeat;
	padding-left: 18px;
}

/* a descriptive style */
.description, .description_board, .plainbox
{
	padding: 20px 20px;
	font-size: 0.9em;
	color: #2C2C2C;
	line-height: 1.4em;
	border-bottom: 2px solid #e5e5e5;
	background: white;
	margin: 0.2em 1px 1em 1px;
}
.description_board
{
	margin: 1em 1px 0 1px;
}

/* an informative style */
.information
{
	padding: 0.5em 1em;
	font-size: 0.9em;
	line-height: 1.3em;
	border-bottom: 2px solid #e5e5e5;
	background: white;
	margin: 0.2em 1px 1em 1px;
}
.information p
{
	padding: 1em;
	margin: 0;
}
p.para2
{
	padding: 1em 0 3.5em 0;
	margin: 0;
}
/* AJAX notification bar
------------------------------------------------------- */
#ajax_in_progress
{
	background: url(../images/theme/loadingbar.png) repeat-x;
	color: #f96f00;
	text-align: center;
	font-size: 16pt;
	padding: 8px;
	width: 100%;
	height: 66px;
	line-height: 25px;
	position: fixed;
	top: 0;
	left: 0;
}

#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: 40%;
	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: 56%;
	float: right;
	overflow: auto;
	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.
------------------------------------------------------- */
.titlebg {
	font-weight: normal;
}

.innerframe > div:nth-child(1) {
	height: 0;
}

h3.catbg, h3.catbg2, h3.titlebg, h4.titlebg, h4.catbg
{
	overflow: hidden;
}
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: #a1a1a1;
	font-family: Titillium Web, sans-serif;
	text-transform: uppercase;	
	line-height: 31px;
	font-size: 17px;
	font-weight: 600;}
h3.catbg {
	padding-top: 6px;
}
h3.catbg2 a, h3.catbg2
{
	color: #feb;
}
h3.catbg a:hover, h4.catbg a:hover, .table_list tbody.header td a:hover
{
	text-decoration: none;
}
h3.catbg2 a:hover
{
	color: #fff;
	text-decoration: none;
}
h3.titlebg a, h3.titlebg, h4.titlebg, h4.titlebg a
{
	color: #EE303B;
}
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: transparent;
	padding-right: 9px;
}
h4.titlebg img.icon
{
	float: left;
	margin: 5px 8px 0 0;
}
div.cat_bar
{
	background: #F2F2F2;
	padding-left: 10px;
	height: 42px;
	overflow: hidden;
	border-bottom: 2px solid #e5e5e5;	
}
div.title_bar
{
	background: transparent;
	padding-left: 9px;
	height: 31px;
	overflow: hidden;
	margin-bottom: 1px;
	margin-top: 15px;
}
#maintenance_mode div.title_bar h4 {
	color: #EE303B;
}

/* rounded bars needs a different background here */

div.roundframe div.cat_bar
{
	background: transparent;
	margin-bottom: 0;
}
/*div.roundframe div.cat_bar h3.catbg
{
	background: url(../images/theme/main_block.png) no-repeat 100% -240px;
}*/
div.title_barIC
{
	overflow: hidden;
}
#upshrinkHeaderIC p.pminfo
{
	margin: 0;
	padding: 0.5em;
}
img#upshrink_ic, img#newsupshrink
{
	float: right;
	margin: 10px 5px 0 0;
}
table.table_list a.unreadlink, table.table_list a.collapse
{
	float: right;
}
table.table_list a.collapse
{
	margin: 10px 5px 0 1em;
	height: 31px;
	line-height: 31px;
}

/* The half-round header bars for some tables. */
.table_grid tr.catbg, .table_grid tr.titlebg
{
	font-size: 0.95em;
	color: #EE303B;
	border-bottom: 1px solid #e5e5e5;
}
.table_grid tr.catbg th, .table_grid tr.titlebg th
{
	color: #EE303B;
	height: 35px;
	line-height: 28px;
}
tr.catbg th.first_th
{
	background: #fafafa;
	color: #666;
}
tr.catbg th.last_th
{
	background: #fafafa;
	color: #666;
}
tr.titlebg th.first_th
{
	background: #fafafa;
	color: #666;
}
tr.titlebg th.last_th
{
	background: #fafafa;
	color: #666;
}
.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
{
	border-bottom: 1px solid #e5e5e5;
}

/* GenericList */
.additional_row
{
	padding: 0.5em 0 0.5em 0;
}
table.table_grid thead tr.catbg th
{
	white-space: nowrap;
	background: white;
	padding-right: 14px;
}

/* table_grid styles for Profile > Show Permissions. */
#permissions table.table_grid  td
{
	padding: 0.4em 0.8em;
	cursor: default;
} 



/* GAME SERVERS GET SOME BLOCK
------------------------------------------------------- */
#upshrinkRightBar > div:nth-child(2) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) img {
	width: 205px;
	padding-bottom: 10px;
	border-bottom: 1px solid #e5e5e5;
}
div.svr_titletext {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #EE303B;
    font-family: Titillium Web, sans-serif;
    text-decoration:none;
	margin-top: 13px;
}
div.svr_playingtext {
    font-size: 18px;
    color: #EE303B;
	font-family: Titillium Web, sans-serif;
    text-decoration:none;
	border-left: 2px solid #EE303B;
	padding: 5px 0;
	margin-bottom: 30px;
	margin-top: 5px;
}
div.svr_servertext {
    font-size: 10px;
    color: #2c2c2c;
    font-family: verdana,Helvetica,sans-serif;
    text-decoration:none;
	padding-top: 5px;
}
/* Common styles used to add corners to divisions.
------------------------------------------------------- */
.windowbg span.topslice
{
	display: block;
	padding-left: 20px;
	background: white;
}
.windowbg span.topslice span
{
	display: block;
	background: white;
	height: 11px;
}
.windowbg span.botslice
{
	display: block;
	padding-left: 20px;
	background: white;
	font-size: 5px;
	line-height: 5px;
	margin-bottom: 0.2em;
}
.windowbg span.botslice span
{
	display: block;
	background: white;
	height: 11px;
}

.windowbg2 span.topslice
{
	display: block;
	padding-left: 20px;
	background: white;
}
.windowbg2 span.topslice span
{
	display: block;
	background: white;
	height: 11px;
}
.windowbg2 span.botslice
{
	display: block;
	padding-left: 20px;
	background: white;
	font-size: 5px;
	line-height: 5px;
	margin-bottom: 0.2em;
}
.windowbg2 span.botslice span
{
	display: block;
	background: white;
	height: 11px;
}
.approvebg span.topslice
{
	display: block;
	padding-left: 20px;
	background: white;
}
.approvebg span.topslice span
{
	display: block;
	background: white;
	height: 11px;
}
.approvebg span.botslice
{
	display: block;
	padding-left: 20px;
	background: white;
	margin-bottom: 0.2em;
}
.approvebg span.botslice span
{
	display: block;
	background: white;
	height: 11px;
}
.postbg
{
	border-left: 1px solid #7f7f7f;
	border-right: 1px solid #7f7f7f;
}

/* Used for sections that need somewhat larger corners.
----------------------------------------------------------- */
.roundframe
{
	padding: 15px 10px;
	background: #F8F8F9;
}
.roundframe dl, .roundframe dt, .roundframe p
{
	margin: 0;
}
span.upperframe
{
	padding: 0;
	display: block;
	padding-left: 20px;
}
span.upperframe span
{
	padding: 0;
	display: block;
}
span.lowerframe
{
	padding: 0;
	display: block;
	padding-left: 20px;
}
span.lowerframe span
{
	padding: 0;
	height: 12px;
	display: block;
}

/* The main content area.
------------------------------------------------------- */
.content
{
	padding: 0.5em 1.5em;
	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
{
	background-color: white;
	padding: 0px 0.4em 0px 0.4em;
	float: left;
	margin: 0 0 5px 0;
	width: 99.3%;
	height: 38px;
	border-bottom: 2px solid #e5e5e5;
}

.dropmenu, .dropmenu ul
{
	list-style: none;
	line-height: 1em;
	padding: 0;
	margin: 0;
}
.dropmenu
{
	padding: 0 0.5em;
}
.dropmenu a
{
	color: #919090;
	display: block;
	text-decoration: none;
}
.dropmenu a span {
	display: block;
	font-family: Titillium Web, sans-serif;
	text-transform: uppercase;	
	letter-spacing: 0.8px;
	line-height: 14px;
	font-size: 15px;
}
.dropmenu li ul li span {
	font-size: 12px;
}
/* the background's first level only */
.dropmenu li a.firstlevel {
	margin: 12px;
}
.dropmenu li a.firstlevel span.firstlevel {
	display: block;
	position: relative;
	white-space: pre;
}
.dropmenu li {
	float: left;
	padding: 0;
	margin: 0;
	position: relative;
}
.dropmenu li ul {
	background-color: white;	
	box-shadow: 0 2px 8px #E6E7E8;
	border-top: 3px solid #EE303B;	
	z-index: 90;
	display: none;
	position: absolute;
	width: 200px;
	padding: 6px 2px 2px;
}
.tooltip:before {
    border: solid;
    border-color: #EE303B transparent;
    border-width: 5px 5px 0 5px;
    content: "";
    top: 0;
    left: 15px;
    position: absolute;
    z-index: 99; 
}

.text-right {
text-align: right;
}
.dropmenu li li {
	width: inherit;
	margin: 0;
}
.dropmenu li li a span {
	display: block;
	padding: 10px 0 12px 10px;	
}
/*Disabled selector on li; causing nav hover to transition*/
/*.dropmenu li, */.dropmenu li li a span {
	-o-transition:.3s;
  	-ms-transition:.3s;
  	-moz-transition:.3s;
  	-webkit-transition:.3s;
  	transition:.3s;	 		
}
.dropmenu li ul ul {
	margin: -1.8em 0 0 13em;
}
/* the active button */
.dropmenu li a.active {
}
/* the hover effects */
.dropmenu li a.firstlevel:hover, .dropmenu li:hover a.firstlevel
{
	color: #EE303B;
	cursor: pointer;
	text-decoration: none;
}
/* the hover effects on level2 and 3 */
.dropmenu li li a:hover, .dropmenu li li:hover>a {
	color: #EE303B;
	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;		
}

/* 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;
	margin-top: 6px;
}
.buttonlist ul li
{
	margin: 0;
	padding: 0;
	list-style: none;
	float: left;
}
.buttonlist ul li a
{
	display: block;
	font-size: 0.8em;
	color: #2b2b2b;
	background-color: white;
	border: 1px solid #e5e5e5;
	padding: 5px 10px;
	margin-left: 5px;
	text-transform: uppercase;
	cursor: pointer;
}
.buttonlist ul li a:hover
{
	color: #EE303B;
	text-decoration: none;
}
.buttonlist ul li a span
{
	font-family: Titillium Web,sans-serif;
	color: #2b2b2b;
	letter-spacing: 0.4px;
	font-size: 11px;
	display: block;
	line-height: 19px;
	font-weight: 400;
}
.buttonlist ul li a span:hover {
	color: #EE303B;
}
.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
{
	overflow: hidden;
	background: #e5e5e5;
	height: 40px;
}
/* Styles for the general looks for the Curve theme.
------------------------------------------------------- */
/* Primary navigation */
/*nav {
	list-style-type: none;
	text-transform: uppercase;
	
	padding-right: 5px;
	width: auto;
}
nav .topmenu-dropmenu {
	float: left;
	margin-left: 40px;
	margin-top: 43px;
}
nav ul li {
	display: inline-block;
	width: 130px;
}
nav ul li a:link,
nav ul li a:visited,
nav ul li {
	font-family: Titillium Web, sans-serif;
	font-size: 16px;	
}*/
.profile-menu a:link,
.profile-menu a:visited {
	color: #949494;
	margin-left:0px;
}
.topmenu-dropdown a:link,
.topmenu-dropdown a:visited {
	color: #949494;
}
.profile-dropdown {
	padding-top: 38px;
    display: none;
	position: absolute;
	width: 200px;	
	text-align: left;
		  -webkit-transition: height 0.5s ease;
     -moz-transition: height 0.5s ease;
       -o-transition: height 0.5s ease;
      -ms-transition: height 0.5s ease;
          transition: height 0.5s ease;
}
.profile-dropdown-drop {
	padding-top: 4px;
    display: block;
	position: absolute;
	width: 200px;	
	text-align: left;
	-webkit-transition: height 0.5s ease;
     -moz-transition: height 0.5s ease;
       -o-transition: height 0.5s ease;
      -ms-transition: height 0.5s ease;
          transition: height 0.5s ease;
}
.profile-dropdown-border {	
	padding: 0;
	margin: 0;
	background-color: white;	
	list-style-type: none;
	text-transform: uppercase;
	border-top: 3px solid #EE303B;
	border-radius: 0px 0px 5px 5px;
    box-shadow: 0px 0px 7px rgba(0,0,0,0.1);	
	position: relative;
	left: -50px;
	z-index: 50;
}
/* Profile styling - avatar and username */
.profile {
	line-height: 25px;
	float: right;
	position: relative;
	margin-top: 26px;
	height: 33px;
}
.membergroup {
	text-transform: uppercase;	
	font-weight: 400;
}
.profile-menu {
	color: #949494;
	line-height: 46px;
}
.profile li,
.profile li a:link,
.profile li a:visited {
	width: auto;
}
.profile img.avatar {
	width: 25px;
	height: 25px;
	position: relative;
	top: 9px;	
	border: 2px solid #EE303B;
	border-radius: 2px;
}
.sidebox {
	float: left;
	width: auto;
}
/* Profile styling - menu and dropdowns */
.menu-item:first-child {
	padding-top: 15px;
}
.menu-item:last-child {
	padding-bottom: 15px;
}
.menu-item {
	line-height: 15px;
	padding: 10px 0 10px;
}
.menu-item,
.menu-item a:link,
.menu-item a:visited {
	color: #919090;
	cursor: pointer;
}
.menu-item:hover,
.menu-item a:hover {
	color: #EE303B;
}
.menu-item span {
	position: relative;
	font-size: 13px;
	padding-left: 15px;
}
/* Profile styling - Submenu dropdowns */
.menu-item ul {	
	overflow:hidden;	
	background: #f2f2f2;
	height: 0;	
}
.menuactive a:link,
.menuactive a:visited,
.menuactive .icon i{
	color: white;
}
.submenu span {
	position: relative;
	left: 3px;
}
.submenu ul {
	padding: 0;
	margin: 0;	
	position: relative;
	top: 13px;		
}
.submenu ul li a:link,
.submenu ul li a:visited {
	font-size: 11.5px;	
	color: #919090;
	padding: 8px 0;
}
.submenu ul li:hover,
.submenu ul li a:hover {
	color: #EE303B;	
}
.account-expand .submenu ul li:first-child,
.adminmenu .submenu ul li:first-child  {
	padding-top:10px;
}
.submenu ul li:last-child  {
	padding-bottom: 10px;
}
.submenu ul li {
	color: #919090;
	padding: 10px 0 0 15px;
	width: 200px;
}
.account{
padding-top: 0px; 
padding-bottom: 0px;
}

.account-expand{
padding-top: 0px; 
}
.account ul
 {
    cursor: pointer;
	height: 0px;
	padding-bottom: 0px;
   -webkit-transition: height 0.5s ease;
     -moz-transition: height 0.5s ease;
       -o-transition: height 0.5s ease;
      -ms-transition: height 0.5s ease;
          transition: height 0.5s ease;	
}
.account:hover{
	color: #EE303B;
}
.account-expand  ul {
    cursor: pointer;
	height: 110px;
	color: #EE303B;
	padding-bottom: 5px;
	  -webkit-transition: height 0.5s ease;
     -moz-transition: height 0.5s ease;
       -o-transition: height 0.5s ease;
      -ms-transition: height 0.5s ease;
          transition: height 0.5s ease;	
}
.searchmenu{
padding-top: 0px; 
padding-bottom: 0px;
}

.searchmenu-expand{
padding-top: 0px; 
}
.searchmenu ul
 {
    cursor: pointer;
	height: 0px;	
   -webkit-transition: height 0.5s ease;
     -moz-transition: height 0.5s ease;
       -o-transition: height 0.5s ease;
      -ms-transition: height 0.5s ease;
          transition: height 0.5s ease;	
}
.searchmenu ul li {
	padding: 5px;
}
.searchmenu:hover{
	color: #EE303B;
}
.searchmenu-expand  ul {
    cursor: pointer;
	padding: 5px;	
	height: 26px;
	color: #EE303B;
	  -webkit-transition: height 0.5s ease;
     -moz-transition: height 0.5s ease;
       -o-transition: height 0.5s ease;
      -ms-transition: height 0.5s ease;
          transition: height 0.5s ease;	
}
.searchmenu-expand ul li {
	padding:0;
	margin:0;
}
.searchmenu ul input,
.searchmenu-expand ul input {
	font-size: 60%;
}
.searchmenu-expand .button_submit,
.searchmenu .button_submit {
	padding: 4px 10px;
}

.adminmenu{
padding-top: 0px; 
padding-bottom: 0px;
}

.adminmenu-expand{
padding-top: 0px; 
}

.adminmenu ul {
    cursor: pointer;
	height: 0px;
	padding-bottom: 0px;
   -webkit-transition: height 0.5s ease;
     -moz-transition: height 0.5s ease;
       -o-transition: height 0.5s ease;
      -ms-transition: height 0.5s ease;
          transition: height 0.5s ease;	
}
.adminmenu:hover{
	color: #EE303B;
}
.adminmenu-expand  ul {
    cursor: pointer;
	height: 160px;
	color: #EE303B;
	padding-bottom: 5px;	
	 -webkit-transition: height 0.5s ease;
     -moz-transition: height 0.5s ease;
       -o-transition: height 0.5s ease;
      -ms-transition: height 0.5s ease;
          transition: height 0.5s ease;	
}

.loginmenu{
padding-top: 0px; 
padding-bottom: 0px;
}

.loginmenu-expand{
padding-top: 0px; 
}


.loginmenu ul {
    cursor: pointer;
	height: 0px;
   -webkit-transition: height 0.5s ease;
     -moz-transition: height 0.5s ease;
       -o-transition: height 0.5s ease;
      -ms-transition: height 0.5s ease;
          transition: height 0.5s ease;	
}
.loginmenu:hover{
	color: #EE303B;
}
.loginmenu-expand  ul {
    cursor: pointer;
	height: 130px;
	color: #EE303B;
	padding-bottom: 10px;
	  -webkit-transition: height 0.5s ease;
     -moz-transition: height 0.5s ease;
       -o-transition: height 0.5s ease;
      -ms-transition: height 0.5s ease;
          transition: height 0.5s ease;	
}
.loginmenu ul li,
.loginmenu-expand ul li {
	padding: 5px 15px 0;
	font-size: 11.5px;
}
.loginmenu input,
.loginmenu-expand input {
	margin-bottom:5px;
	padding: 5px;
}
.loginmenu-expand ul:hover li {
	color: #919090;
}
/* top nav hover drop downs */
.topmenu-dropdown:hover .topmenu-dropdown-gap, topmenu-dropdown.hover_effect {
 display: block;
}
.topmenu-dropdown:hover .topmenu-dropdown-items, topmenu-dropdown.hover_effect {
 display: block;
}

.topmenu-dropdown{
  height: auto;
}

.topmenu-dropdown-gap{
	position: absolute;
}

.topmenu-dropdown-items {
	border-top: 3px solid #EE303B;
	border-radius: 0px 0px 5px 5px;
    box-shadow: 0px 0px 7px rgba(0,0,0,0.1);
	font-family: Titillium Web, sans-serif;
	text-transform: uppercase;	
	letter-spacing: 0.8px;
	line-height: 14px;
	font-size: 15px;
	color: #919090;
	background: #fff;
    display: none;
	position: relative;
	width: 250px;	
	text-align: left;
	top: 20px;
	z-index: 999;
}

.topmenu-dropdown-items ul {
    color: #919090;	
	padding: 0;	/*RESETS PADDING*/	
}

.topmenu-dropdown-items ul li{
	width: 200px;
	padding: 10px 0 10px 15px;
}

.topmenu-dropdown-items ul li a:link,
.topmenu-dropdown-items ul li a:visited {
	font-size: 13px;
    color: #919090;
}
.topmenu-dropdown-items ul li a:hover {
	color: #EE303B;
}
.topmenu-dropdown-items ul li:first-child {
	padding-top: 15px;
}
.topmenu-dropdown-items ul li:last-child {
	padding-bottom: 15px;
}
/* Base Icon */
.icon {
	font-family: FontAwesome;
	font-style: normal;
	font-size: 18px;
}
/* Navigation icons */
.comments:before {
	content: "\f086";
	padding-right: 10px;	
}
.users:before {
	content: "\f0c0";
	padding-right: 10px;
}
.memberlist:before {
	content: "\f03a";
}
.gamepad:before {
	content: "\f11b";
	padding-right: 10px;
}
/* Profile and alert icons  */
.chevron-down:before {
	cursor: pointer;
	content: "\f013";
	font-size: 18px;	
	padding-left: 15px;	
	position: relative;
	top: 1px;	
	padding-right: 10px;	
	color: #949494;
}
.triangle-down:before {
	content: "\f0dd";
	font-size: 10px;
	margin-right: 16px;
	position: relative;
	top: -2px;
	float: right;
}
.helptopics:before {
	content: "\f05a";
	color: #949494;
	font-size: 14px;
	position:relative;
	top: 1px;
}
.sort_up:before {
	content: "\f0d8";
	color: #ee303b;
	font-size: 16px;
	position:relative;
	top: 1px;
}
.sort_down:before {
	content: "\f0d7";
	color: #ee303b;
	font-size: 16px;
	position:relative;
	top: 1px;
}
/* Board icons  */
.breadcrumb:before {
	content: "\f015";
}
.expand-ico:before {
	content: "\f067";
	font-size: 10px;
	color: #949494;
	position: relative;
	top: -7px;
}
.collapse-ico:before {
	content: "\f068";
	font-size: 10px;
	color: #949494;
	position: relative;
	top: -7px;	
}
.im_on:before,
.im_off:before {
	content:"\f0e0";
	color: #949494;
	font-size: 16px;	
	margin-right: 2px;
}
.karma_sm:before {
	content: "\f004";
	color: #949494;
	font-size: 16px;
	margin-right: 2px;	
}
.profile_sm:before {
	content: "\f007";
	color: #949494;
	font-size: 16px;
	margin-right: 2px;	
	margin-left: 3px;
}
.my_normal_post_sticky:before,
.normal_post_sticky:before {
	content: "\f05a";
	font-size: 25px;	
	color: #686868;	
	margin: 0 18px;
	padding-left: 3px;
}
.my_normal_post_sticky_unread:before,
.normal_post_sticky_unread:before {
	content: "\f05a";
	font-size: 25px;	
	color: #EE303B;	
	margin: 0 18px;
	padding-left: 3px;
}
.my_normal_post:before,
.normal_post:before {
	content: "\f0e6";
	font-size: 25px;
	color: #686868;
	margin: 0 18px;
	padding-left: 3px;
}
.my_normal_post_unread:before,
.normal_post_unread:before {
	content: "\f086";
	font-size: 25px;	
	color: #EE303B;	
	margin: 0 18px;
	padding-left: 3px;	
}
.my_normal_post_locked_sticky:before,
.normal_post_locked_sticky:before,
.my_normal_post_locked:before,
.normal_post_locked:before {
	content: "\f023";
	font-size: 20px;	
	color: #686868;	
	margin: 0 18px;
	padding-left: 3px;	
}
.normal_post_locked_sticky_unread:before,
.my_normal_post_locked_unread:before,
.normal_post_locked_unread:before {
	content: "\f023";
	font-size: 20px;	
	color: #EE303B;	
	margin: 0 18px;
	padding-left: 3px;	
}
.my_normal_poll:before,
.normal_poll:before {
	content: "\f080";
	font-size: 25px;	
	color: #686868;	
	margin: 0 18px;
	padding-left: 3px;
}
.my_normal_poll_unread:before,
.normal_poll_unread:before {
	content: "\f080";
	font-size: 25px;	
	color: #EE303B;	
	margin: 0 18px;
	padding-left: 3px;
}
.users-online:before {
	content: "\f007";
	font-size: 14px;	
	color: #EE303B;	
	margin-right: 5px	
}
.recent-posts:before {
	content: "\f086";
	font-size: 14px;	
	color: #EE303B;	
	margin-right: 5px	
}
.report_sm:before  {
	content: "\f024";
	color: #ee303b;
	font-size: 16px;
	margin-right: 2px;	
}
.ip_address:before {
	content: "\f0ac";
	color: #949494;
	font-size: 16px;
	margin-right: 2px;	
}
.pm-reply:before {
	content: "\f112";
	color: #ee303b;
	font-size: 12px;	
}

.pm-im_off:before {
	content: "\f003";
	color: #ee303b;
	font-size: 12px;
}
.im_switch:before {
	content: "\f0dc";
	color: #ee303b;
	font-size: 14px;
	margin-left:10px;
}
.pm-selected:before {
	content: "\f0da";
	color: #ee303b;
	font-size: 14px;
	margin-right:10px;
}
.last_post:before {
	content: "\f0a9";
	margin-right: 3px;	
	color: #ee303b;
	font-size: 13px;
	position: relative;
	top: -9px;
}
/* Social */
.social {
	margin-top: 38px;
	margin-right: 5px;
	float: right;
	width: 110px;
	overflow: hidden;
}
.vodafone{
	float: right;
	margin-right: 10px;
}
.vodafone img {
	margin-right: 30px;
	position: relative;
	top: 10px;
}
/* the framing graphics */
#header
{
	background-color: #070707;
	height: 100px;
}
#header > div.frame > table {
	float: left;
}
#header div.frame
{
	display: block;
}

/* the content section */
#content_section
{
	background: #F8F8F9;
	padding: 0 10px;
}
#content_section div.frame
{
	display: block;
	padding: 0;
}
#main_content_section
{
	width: 100%;
	min-height: 200px;
}

/* the main title, always stay at 45 pixels in height! */
h1.forumtitle
{
	line-height: 45px;
	font-size: 1.8em;
	font-family: Geneva, verdana, sans-serif;
	margin: 0;
	padding: 0;
	float: left;
}
/* float these items to the right */
#siteslogan, img#smflogo
{
	margin: 0;
	padding: 0;
	float: right;
	line-height: 3em;
}
h3
{
	padding-bottom: 3px;
}
/* the upshrink image needs some tweaking */
img#upshrink
{
	float: right;
	margin: 1em;
}
/* ..so does the SMF logo */
img#smflogo
{
	margin-left: 1em;
}
/* the upper_section, float the two each way */
#upper_section
{
	padding: 5px;
	margin-bottom: 1.5em;
}
#upper_section ul li.greeting
{
	font-size: 1.3em;
	font-weight: bold;
	line-height: 1.5em;
}
#upper_section div.news
{
	width: 50%;
	float: right;
	text-align: right;
}
#guest_form
{
	overflow: hidden;
}
#guest_form .info
{
	padding: 4px 0 ;
	line-height: 1.3em;
}
div#upper_section div.user
{
	width: 40%;
	background: yellow;
	float: left;
	padding:10px;
	overflow: auto;
}
div#upper_section div.user p
{
	float: left;
	margin: 0 1em 1em 0;
	padding: 0;
}
div#upper_section div.user ul
{
	margin: 0;
	padding-left: 10px;
}
div#upper_section div.user ul li
{
	margin-bottom: 2px;
}
div#upper_section div.news p
{
	display: inline;
}
div#upper_section div.news form
{
	padding-bottom: 10px;
}
/* clearing the floats */
#upper_section
{
	overflow: hidden;
}

/* The navigation list (i.e. linktree) */
.navigate_section
{
	padding: 10px 0 0;
	margin: 0 0 0 0;
}
.navigate_section ul
{
	display: block;
	margin: 0;
	padding: 10px;
	overflow: hidden;
	list-style: none;
	clear: both;
	border-bottom: 1px solid #e5e5e5;
	color: #EE303B;
}
.navigate_section ul li
{
	float: left;
	padding: 1px 3px 0 3px;
	font-size: 10px;
}
.navigate_section ul li a
{
	white-space: pre;
	font-size: 11px
}
.navigate_section_nolinktree
{
	padding: 6px 0;
	margin: 0 0 0 0;
}
/* The footer wih copyright links etc. */
#footer_section
{
	text-align: center;
	background: #F8F8F9;
	margin-bottom: 40px;
	padding-top: 40px;
	height: 100px;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	overflow: hidden;
}
#footer_section img {
	float: left;
	margin-top: 20px;
	margin-right: 15px;
}
#footer_section span.smalltext 
{
	font-size: 100%;
}
#footer_section span.smalltext .new_win
{
	color: #919090;
}
#footer_section div.frame
{		
	height: 100px;
	display: block;	
}
#footer_section ul li, #footer_section p,#footer_section ul a
{
	font-size: 11px;
	color: #919090;
	float: left;	
}
#footer_section ul
{
	display: inline-block;	
	float: left;	
	margin-top: 40px;
	padding-left: 0;
}
#footer_section ul li
{
	display: inline;
	padding-right: 10px;		
}
#footer_section ul li.copyright
{
	display: block;
}
.qaction {
	margin-top: 10px;
}
select.qaction, input.qaction
{
	font-size: 10px;
	padding: 5px 10px;
}
#mlist table tbody td.windowbg2
{
	text-align: center;
}
a.footer-link:link,
a.footer-link,
a.footer-link:visited {
	color: red;
}
/* Forum cat divider */
tbody.divider tr td {
	padding: 5px !important;
}

/* Styles for a typical table.
------------------------------------------------------- */

table.table_list
{
	width: 100%;
}
table.table_list p
{
	padding: 0;
	margin: 0;
	color: #919090;
}
table.table_list td, table.table_list th
{
	padding: 20px 10px;
}
table.table_list tbody.header td
{
	padding: 0;
}
table.table_list tbody.content td.stats
{
	font-size: 1.1em;
	font-family: Titillium Web,sans-serif;
	letter-spacing: 0.2px;
	line-height: 1.2em;
	padding: 0px;
	margin: 3px 0px 0px;
	text-transform: uppercase;
	width: 15%;
	color: #919090;
	text-align: center;
}
table.table_list tbody.content td.lastpost
{
	width: 24%;
	font-size: 0.9em;
	line-height: 1.4em;
	padding-left: 40px;
	color: #686868;
	border-bottom: 1px solid #e5e5e5;
}
table.table_list tbody.content td.icon
{
	text-align: center;
	width: 6%;
	padding: 20px;
}

/* Styles for the board index.
------------------------------------------------- */
/* the board title! */
.table_list tbody.content td.info a.subject
{
	font-family: Titillium Web, sans-serif;
	font-size: 16px;
	text-transform: uppercase;
	color: #EE303B;
	letter-spacing: 0.3px;
	padding-top: 10px;
	font-weight: 400;
}
.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
{
	padding: 0 1em 0.5em 1em;
	margin: 0 0 1em 0;
	line-height: 1em;
}
#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: 0 2em;
	overflow: auto;
	margin: 1em 0;
	color: #575757; /* shouldn't be shorthand style due to a JS bug in IE! */
}

/* Styles for the info center on the board index.
---------------------------------------------------- */

#upshrinkHeaderIC
{
	padding: 0;
	margin: 0;
}
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;
	line-height: 18px;
}
#upshrinkHeaderIC p.last
{
	margin: 0;
}
#upshrinkHeaderIC p.inline
{
	border: none;
	margin: 0;
	padding-bottom: 3px;
	margin-right: 15px;
}
#upshrinkHeaderIC .stats-online
{
	width: 290px;
}
#upshrinkHeaderIC p.stats a {
	color: #EE303B;
}
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;
	text-align: left;
	font-size: 0.9em;
	letter-spacing: 0.3px;
	position: relative;
	top: 20px;
	color: #949494;
}

.index_markread {
	float: right;
	overflow: hidden;
}

.index_markread a:hover{
		color: #EE303B;
}

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-bottom: 1px solid #e5e5e5;
/* 	border-right: 1px solid #e5e5e5; */	
}
#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 i {
	position: relative;
	top: 10px;
}
.lastpost img
{
	float: right;
	padding: 5px;
}

/* 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: 1em 0;
}
#moderationbuttons
{
	overflow: hidden;
	margin-bottom: 5px;
	width: auto;
}
/* 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: 10px 0 10px 2em;
}

/* Poll vote options */
#poll_options ul.options
{
	border-top: 1px solid #949494;
	padding: 1em 2.5em 0 2em;
	margin: 0 0 1em 0;
}
#poll_options div.submitbutton
{
	border-bottom: 1px solid #949494;
	clear: both;
	padding: 0 0 1em 2em;
	margin: 0 0 1em 0;
}

/* Poll results */
#poll_options dl.options
{
	border: solid #9999aa;
	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 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;
}
#forumposts .cat_bar
{
	margin: 0 0 2px 0;
}
/* author and topic information */
#forumposts h3 span#author
{
	margin: 0 6em 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%;
	border-bottom: 2px solid #e5e5e5;
	background-color: white;
	padding: 10px 0;
}
.poster
{
	float: left;
	padding-top: 6px;
	padding-bottom: 6px;
	width: 15em;
}
.poster h4 img {
	float: right;
	margin-left: 10px;
}
.postarea, .moderatorbar
{
	margin: 0 0 0 16em;
	padding: 12px 15px;
	max-width: 870px;
	border-left: 2px solid #F8F8F8;
}
.postarea div.flow_hidden
{
	width: 100%;
}
.keyinfo .smalltext {
	margin-top:5px;
}
.moderatorbar
{
	clear: right;
}
/* poster details and list of items */
.poster h4 {
	padding: 0px 0px 4px 6px;
}
.poster ul
{
	padding: 0;
	margin: 0 1em 0 1.5em;
}
.poster h4
{
	margin: 10px 10px 3px;
	font-size: 14px;
	font-weight: 400;
}
.poster h4, .poster h4 a
{
	color: #2D2D2D;

	vertical-align: bottom;
}
.poster ul ul
{
	margin: 0.4em 1em 0 0;
	padding: 0;
	display: block;
	text-align: left;
}
.poster ul ul li
{
	display: inline;
	padding-right: 5px;
}
.poster li.stars, .poster li.avatar, .poster li.blurb, li.im_icons ul
{
	margin: 1.2em 0;
}
.postcount {
	padding-bottom: 10px !important;
	padding-top: 4px !important;
	font-size: 0.8rem;
	font-weight: 400;
}
.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
{
	float: left;
	width: 90%;
}
.keyinfo h5 {
	margin-bottom: 8px;
	margin-top: 8px;
	font-size: 120%;
}
.modifybutton
{
	clear: right;
	float: right;
	margin: 6px 20px 10px 0;
	text-align: right;
	font: bold 0.85em arial, sans-serif;
	color: #334466;	
}

/* The quick buttons */
div.quickbuttons_wrap
{
	padding: 0.2em 0;
	width: 100%;
	float: left;
}

ul.quickbuttons
{
	margin: 0.9em 11px 7px 0;
	clear: right;
	float: right;
	text-align: right;
	font: 0.85em Open Sans, sans-serif;
}
ul.quickbuttons li
{
	float: left;
	display: inline;
	margin: 0 0 0 11px;
}
ul.quickbuttons li a
{
	padding: 5px 10px;
	display: block;
	float: left;
	border: 1px solid #e5e5e5;	

}
ul.quickbuttons li a:hover
{
	color: #EE303B;
}
ul.quickbuttons li.inline_mod_check
{
	margin: 0 0 0 5px;
}

.post {
	clear: right;
	min-height: 150px;
}
.inner strong{
	font-weight: 600;
}
.inner em{
	font-style: italic;
}
img.smiley
{
	vertical-align: bottom;
}
#forumposts .modified
{
	float: left;
}
#forumposts .reportlinks
{
	margin-right: 1.5em;
	text-align: right;
	clear: right;
}
#forumposts .signature, .post .signature
{
	margin: 1em 0 0 0;
}
#forumposts span.botslice
{
	clear: both;
}
.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.
---------------------------------------------------- */
#quickreplybox span a i {
	position: relative;
	top: 6px;
	margin-right: 5px;
}
#quickreplybox .cat_bar {
	margin-top: 15px;
}
#quickreplybox
{
	padding-bottom: 1px;
}
#quickReplyOptions .roundframe
{
	padding: 0 10%;
}
#quickReplyOptions form textarea
{
	height: 120px;
	width: 940px;
	max-width: 990px;
	min-width: 800px;
	margin: 10px 0 0;
	min-height: 100px;
	border-bottom: 2px solid #e5e5e5;
}
#quickReplyOptions .button_submit{
	color: #ea303b;
	padding: 10px 25px;
	font-weight: 600;
}
/* 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;
	clear:both;
}

/* 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;
}
.smalltext .post_options {
	text-align: left;
	float: left;
}
ul.post_options li
{
	margin: 0.2em 0;
	width: 49%;
	float: left;
}
#postMoreExpandLink i {
	position: relative;
	top: 6px;
	margin-right: 5px;
}
#postAdditionalOptionsHeader
{
	margin-top: 1em;
}
#postMoreOptions
{
	border-top: 1px solid #cacdd3;
	padding-top: 5px;
}
#postAttachment, #postAttachment2
{
	overflow: hidden;
	margin: .5em 0;
	padding: 0;
	border-bottom: 1px solid #cacdd3;
	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: 15px 0.5em;
	padding-top: 15px;
}
#bbcBox_message div
{
	margin: 0.2em 0;
	vertical-align: top;
}
#bbcBox_message div img
{
	margin: 0 1px 0 0;
	vertical-align: top;
}
#bbcBox_message select
{
	margin: 0 2px;
}
/* The smiley strip */
#smileyBox_message
{
	margin: 5px;
}

/* 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.
---------------------------------------------------- */
#pollmoderation .buttonlist ul li a {
	margin-bottom: 10px;
}
#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: auto;
	margin: 0 auto;
}
.login p.smalltext {
	font-size: 9px;
	letter-spacing: 0;
	margin-top: 10px;
}
.login dl
{
	overflow: auto;
	clear: right;
}
.login dt, .login dd
{
	font-family: Titillium Web, sans-serif;
	color: #EE303B;
	text-transform: uppercase;
	text-align: center;
	letter-spacing: 0.4px;
	font-size: 12px;	
	margin: 0 0 0.4em 0;
	width: 44%;
	padding: 0.1em;
}
.login dt
{
	float: left;
	clear: both;
	text-align: right;
	margin-top: 0.3em;
}
.login dd
{
	width: 54%;
	float: right;
	text-align: left;
}
.login p
{
	font-family: Titillium Web, sans-serif;
	color: #EE303B;
	text-transform: uppercase;
	text-align: center;
	letter-spacing: 0.3px;
	font-size: 14px;
	margin-bottom: 10px;
}

/* 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;
}

dl.register_form dt
{
	font-weight: normal;
	float: left;
	clear: both;
	width: 50%;
	margin: 0.5em 0 0 0;
}

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 .cat_bar 
{
	margin-top: 10px
}
#maintenance_mode img.floatleft
{
	margin-right: 1em;
}

/* common for all admin sections */
#welcome {
	padding: 15px 5px;
}
h3.titlebg img
{
	vertical-align: middle;
	margin-right: 0.5em;
	margin-top: -1px;
}
tr.titlebg td
{
	padding-left: 0.7em;
	border-bottom: 1px solid #f8f8f9;
}
#admin_menu
{
	height: 40px;
	padding-left: 0;
	padding-top: 3px;
	background: #f2f2f2;
}
#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;
}
#main_container
{
	position: relative;
}
.left_admmenu li
{
	padding: 0 0 5px 0.5em;
}
.left_admmenu
{
	margin-bottom: 0.5em;
}
#main_admsection
{
	position: relative;
	left: 0;
	right: 0;
	overflow: hidden;
}

tr.windowbg td, tr.windowbg2 td, tr.approvebg td, tr.highlight2 td
{
	padding: 15px;
}
#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
{
	padding: 30px 8px;
	text-align: center;
}
#topic_icons
{
	margin: 1em 0 0 0;
}
#topic_icons .description
{
	margin: 0;
}
.topic_table table thead
{
	border-bottom: 1px solid #fff;
}
/* the subject column */
.topic_table td
{	
	font-size: 1em;
}
.topic_table td.subject p, .topic_table td.stats
{
	font-size: 1.1em;
	font-weight: 400;
	font-family: Titillium Web, sans-serif;
	letter-spacing: 0.4px;
	line-height: 1.2em;
	padding: 0;
	color: #919090;
	margin: 3px 0 0 0;
	text-transform: uppercase;
}

.topic_table td.subject em {
	font-weight: 600 !important;
	font-style: normal;
}

.topic_table td.subject p {
	font-size: 1em;
}

.table_grid > tbody > tr > td > div > p > a {
	letter-spacing: 0px;
}
.topic_table td.lastpost
{
	font-size: 0.95em;
	line-height: 1.3em;
	padding: 4px;
}
.topic_table td.stickybg2
{
/* 	background-image: url(../images/icons/quick_sticky.gif);
	background-repeat: no-repeat;
	background-position: 98% 4px; */
}
.topic_table td.lockedbg2
{
/* 	background-image: url(../images/icons/quick_lock.gif);
	background-repeat: no-repeat;
	background-position: 98% 4px; */
}
.topic_table td.locked_sticky2
{
/* 	background-image: url(../images/icons/quick_sticky_lock.gif);
	background-repeat: no-repeat;
	background-position: 98% 4px; */
}
.topic_table td.lastpost
{
	background-image: none;
	color: #919090;
}

/* 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: 1.5em !important;
}
#detailedinfo
{
	width: 79.5%;
	float: right;
}
#detailedinfo dd em {
	font-style: normal;
}
#basicinfo h4
{
	font-size: 135%;
	font-weight: 100;
	white-space: pre-wrap;
	overflow: hidden;
}
#basicinfo h4 span.position
{
	font-size: 80%;
	font-weight: 100;
	display: block;
}
#basicinfo img.avatar
{
	display: block;
	margin: 1.2em 0px;
}
#basicinfo ul
{
	list-style-type: none;
	margin: 10px 0 0 0;
	padding: 0;
}
#basicinfo ul li
{
	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: 2px solid #e5e5e5;
}
#detailedinfo div.content dt, #tracking div.content dt
{
	width: 35%;
	float: left;
	margin: 0 0 10px 0;
	padding: 0;
	letter-spacing: 0.3px;
	font-family: Titillium Web, sans-serif;
	font-size: 13px;
	text-transform: uppercase;
	color: #EE303B;
	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 #e5e5e5 solid;
}
.signature h5
{
	letter-spacing: 0.3px;
	font-family: Titillium Web, sans-serif;
	font-size: 13px;
	text-transform: uppercase;
	color: #EE303B;
	font-weight: normal;
	margin-bottom: 10px;
}
#personal_picture
{
	display: block;
	margin-bottom: 0.3em;
}
#avatar_server_stored div
{
	float: left;
}
#avatar_upload
{
	overflow: auto;
}
#main_admsection #basicinfo, #main_admsection #detailedinfo
{
	margin-bottom: 5px !important;
	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: #EE303B;
	color: white;
	background: #EE303B;
}

div#profile_error span
{
	text-decoration: underline;
}

div#profile_success
{
	border-color: #EE303B;
	color: #EE303B;
	background: white;
}

/* Profile statistics */
#generalstats div.content dt
{
	width: 50%;
	float: left;
	margin: 0 0 10px 0;
	padding: 0;
	clear: both;
	letter-spacing: 0.3px;
	font-family: Titillium Web, sans-serif;
	font-size: 13px;
	text-transform: uppercase;
	color: #EE303B;	
}
#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;
}
.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: #EE303B;
}
.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;
	padding: 0.2em 0.5em 0.1em 0.2em;
	font-size: 2.5em;
	font-family: Titillium Web, sans-serif;
	color: #ee303b;
	float: left;
}
.topic_details h5 {
	color: #ee303b;
	font-weight: 400;
}
.list_posts
{
	border-top: 1px solid #e5e5e5;
	padding-top: 12px;
	margin-top: 6px;
	overflow: auto;
}

.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: 10px 0;
	font-family: Titillium Web, sans-serif;
	font-size: 13px;
	letter-spacing: 0.3px;
	text-transform: uppercase;
	color: #EE303B;
	font-weight: normal !important;
}
.content > dl > dt > span.smalltext {
	text-transform: none;
	letter-spacing: 0;
	color: #2C2C2C;
}
.content > dl:nth-child(3) > dd:nth-child(4) {
	font-size: 11px;
	color: #2C2C2C;
}
#creator dd
{
	float: right;
	width: 55%;
	margin: 10px 0 10px 2px;
	overflow: auto;
}
#creator dd {

}
.ignoreboards
{
	margin: 0 2.9%;
	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
{
	color: #2C2C2C;
	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;
}
#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: url(../images/bar_stats.png) no-repeat;
	display: block;
	margin: 0 4px;
	height: 16px;
}
.statsbar div.bar div
{
	position: relative;
	right: -4px;
	padding: 0 4px 0 0;
	background: url(../images/bar_stats.png) no-repeat 100%;
	height: 16px;
	z-index: 20;
}
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: #333;
	padding: 0 1.25em 0.5em 1.25em;
}
#addrule fieldset
{
	clear: both;
}

/* Styles for the calendar section.
------------------------------------------------- */
.calendar_table
{
	margin-bottom: 0.7em;
}

.calendar_table td
{
border: 1px solid #f2f2f2;
}

/* 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;
}
#memberlist h4 span {
	font-family: Titillium Web,sans-serif;
	text-transform: uppercase;
	line-height: 31px;
	font-size: 17px;
	font-weight: normal;
	color: #EE303B;
	margin-top: 4px;
}

/* Styles for the basic search section.
------------------------------------------------- */
#searchform, #simple_search p
{
	margin: 0;
}
.enhanced > strong:nth-child(1) {
	padding-right: 0.5em;
}
#simple_search, #simple_search p, #advanced_search
{
	text-align: center !important;
	margin: 6px 0 0 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: 10px auto 10px;
	width: 600px;
	padding-top: 1em;
	overflow: hidden;
}
#advanced_search dt
{
	clear: both;
	float: left;
	padding: 0.5em;
	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;
}
#helpmain p
{
	margin: 0 0 1.5em 0;
	padding: 5px 2px;
	line-height: 1.5em;
}
#helpmain ul
{
	line-height: 1.5em;
}

/* Styles for print media.
------------------------------------------------------- */
@media print
{
	#headerarea
	{
		display: none;
	}

	.tborder
	{
		border: none;
	}
}
.bg_tab_boardindex {
	background: #fdfdfd;
}

.tab_cuad {
	border-bottom: 1px solid #e5e5e5; 
}
.tab_cuad_sub {
	border-bottom: 1px solid #e5e5e5;
}
.tab_chil {
	border-bottom: 1px solid #e5e5e5;
}

.top_log {
padding: 22px 16px;
float: left;
text-align:center;
}

.bg_header {
background: #A1A1A1;
}

.jelou {
background: #fff;
padding: 6px 20px;
}



.vertical_image {
vertical-align:middle;margin-top:-8px;
}

.hr_min {
	background: #DA7810;
}

.search_min {
	background: url(../images/theme/search.png) no-repeat;
	width:22px;
	height:22px;
	border:none;
}

.search_min:hover {
	background: url(../images/theme/search.png) no-repeat;
	width:22px;
	height:22px;
	border:none;
}

.search_min2 {
	background: #2d2d2d;
	border: 1px solid #444;
	box-shadow: 0px 0px 10px #000;
	padding: 3px;
	margin-bottom: 3px;
	font-size: 10px;
	color: #f5f5f5;
	border-radius: 7px;
}

#bbcBox_message { margin: 0; }
#bbcBox_message div
{
	margin: 0;
	vertical-align: top;
	letter-spacing: -5px;
}
#bbcBox_message select
{
	margin: 3px;
	vertical-align: top;
	letter-spacing: 0px;
}
.richedit_resize { 
	margin: 0;
}
textarea.editor { 
	resize: none;
}
#quickReplyOptions .roundframe
{
	text-align: center;
	padding: 0;
}
#quickReplyContent { padding: 0.5em 0; }
#quickReplyContent form textarea
{
	width: 91%;
	height: 100px;
	margin: 0.25em 0 1em 0;
}
#quickReplyOptions div { text-align: center; }
#quickReplyOptions #quickReplyWarning
{
	width: 68%; 
	margin: 0 17% 0 15%;
}
#quickReplyOptions .righttext:first-child input
{
    color: #ea303b;
}
#quickReplyOptions #quickReplyContent form#postmodify div
{
    margin: 0;
	padding: 4px 0;
}
#quickReplyOptions #quickReplyContent form#postmodify div#message_resizer
{
    margin: 0 15% 5px 15%;
	padding: 2px 0;
}
#qr_buttons { 
	padding: 10px 0;
	text-align: center; 
}
#quickReplyOptions #quickReplyContent input { margin-bottom: 10px; }

/* Auto resizing of avatars in posts and personal messages. */
/* Change sizing to suit your own preferences. */
.avatar>a>img, li.avatar>img {
   height: auto;
   width: auto;
   max-height: 100px;
   max-width: 100px;
}

/* Auto resizing of avatars in default theme header. */
/* Change sizing to suit your own preferences. */
p.avatar>img {
   height: auto;
   width: auto;
   max-height: 150px;
   max-width: 125px;
}

/* Auto resizing of images in posts and personal messages. */
/* Change sizing to suit your own preferences. */
.inner>img, .inner>blockquote>img,
.inner>.bbc_link>img, .inner>blockquote>.bbc_link>img{
   height: auto;
   width: auto;
/* This is just to keep images to a handy size, even on large screens. */
   max-height: 640px;
/* This prevents images breaking out of the post on small screens. */
   max-width: 780px;
}


/* Auto resizing of images in signatures. */
/* Change sizing to suit your own preferences. */
.signature  .bbc_img
{
max-height: 100px;
max-width: 780px;
}
.signature>img, .signature>blockquote>img,
.signature>.bbc_link>img, .signature>blockquote>.bbc_link>img {
   height: auto;
   width: auto;
   max-height: 150px;
   max-width: 95%;
}
.attachments>div>img {
   height: auto;
   width: auto;
   max-width: 95%;
   max-height: 640px;
}
#reputation_menu{
	position: absolute;
	border: 1px solid #e5e5e5;
	z-index: 100;
	padding: 10px 5px 5px 5px;
	background-color: white
}
.windowbg2 > strong:nth-child(1) {
	padding: 5px;
	font-family: Titillium Web, sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	color: #EE303B;
}
tr.cat_bar
{
	background: #EE303B;
	padding-left: 13px;
	margin-bottom: 3px;
	height: 25px;
	overflow: hidden;
}

/*Forum Facebook*/

.contact .windowbg2 b {	
	padding-left: 10px;
}
.contact_table_grid .windowbg2{
	padding-bottom: 10px;
}
.contact_table_grid tbody tr td{
	padding-left: 10px;
}
.contact_table_grid{
	padding-top: 10px;
	background-color: white;
}

/* PROFILE STYLING */

.content .username span {
	font-family: Open Sans;
	font-size: 14px;
	font-weight: 400;
}
.username span.position, .profile_extras {
	font-size: 8pt !important;
	font-family: Open Sans, sans-serif;
	color: #949494;
}
.username img {
	position: relative;
	top: -7px;
}
.content > ul li {
/*	float: left */
}










meta.foundation-mq-small { font-family: '/only screen and (max-width: 30em)/'; width: 0em; }
meta.foundation-mq-medium { font-family: '/only screen and (min-width:30.063em) and (max-width:45.75em)/'; width: 40.063em; }
meta.foundation-mq-large { font-family: '/only screen and (min-width:45.813em)/'; width: 64.063em; }
meta.foundation-mq-xlarge { font-family: '/only screen and (min-width:68.063em)/'; width: 90.063em; }
meta.foundation-mq-xxlarge { font-family: '/only screen and (min-width:85.813em)/'; width: 120.063em; }
.large-12 {position: relative; width: 100%;}
object, embed { height: 100%; }
.left { float: left !important; }
.right { float: right !important; }
.row { width: 100%; margin: 0px auto; max-width: 68.75rem; }
.row::before, .row::after { content: ' '; display: table; }
.row::after { clear: both; }
.row.collapse > .column, .row.collapse > .columns { position: relative; padding-left: 0px; padding-right: 0px; float: left; }
.row.collapse .row { margin-left: 0px; margin-right: 0px; }
.row .row { width: auto; margin: 0px -0.5rem; max-width: none; }
.row .row::before, .row .row::after { content: ' '; display: table; }
.row .row::after { clear: both; }
.row .row.collapse { width: auto; margin: 0px; max-width: none; }
.row .row.collapse::before, .row .row.collapse::after { content: ' '; display: table; }
.row .row.collapse::after { clear: both; }
.column, .columns { position: relative; padding-left: 0.5rem; padding-right: 0.5rem; width: 1084px; float: left; }
.alert-box.radius { border-top-left-radius: 4px; border-top-right-radius: 4px; border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; }
.alert-box.secondary { border-color: rgb(45, 45, 45); color: white; background-color: rgb(58, 58, 58); }
[class*="block-grid-"] { display: block; padding: 0px; margin: 0px -0.625rem; }
[class*="block-grid-"]::before, [class*="block-grid-"]::after { content: ' '; display: table; }
[class*="block-grid-"]::after { clear: both; }
[class*="block-grid-"] > li { display: inline; height: auto; float: left; padding: 0px 0.625rem 1.25rem; }
button, .button { cursor: pointer; font-family: Titillium, Helvetica, Helvetica, Arial, sans-serif; line-height: normal; margin: 0px; position: relative; text-decoration: none; text-align: center; display: inline-block; padding: 1.0625rem 2rem 1rem; font-size: 1rem; color: white; transition: background-color 300ms ease-out; -webkit-transition: background-color 300ms ease-out; -webkit-appearance: none; border: none; font-weight: 600 !important; background-color: rgb(238, 48, 59); }
button:hover, button:focus, .button:hover, .button:focus { background-color: rgb(236, 24, 37); }
button:hover, button:focus, .button:hover, .button:focus { color: white; }
button.secondary, .button.secondary { border-color: rgb(45, 45, 45); color: white; background-color: rgb(58, 58, 58); }
button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus { background-color: rgb(45, 45, 45); }
button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus { color: white; }
button.small, .button.small { padding: 0.875rem 1.75rem 0.9375rem; font-size: 0.875rem; }
button.radius, .button.radius { border-top-left-radius: 4px; border-top-right-radius: 4px; border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; }
button.disabled.secondary, button[disabled].secondary, .button.disabled.secondary, .button[disabled].secondary { border-color: rgb(45, 45, 45); color: white; cursor: default; opacity: 0.7; -webkit-box-shadow: none; box-shadow: none; background-color: rgb(58, 58, 58); }
button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus { background-color: rgb(45, 45, 45); }
button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus { color: white; }
button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus { background-color: rgb(58, 58, 58); }
.button-group > * > button, .button-group > * .button { border-right-width: 0px; border-right-style: solid; border-color: rgba(255, 255, 255, 0.498039); }
.button-group.radius > * > button, .button-group.radius > * .button { border-right-width: 0px; border-right-style: solid; border-color: rgba(255, 255, 255, 0.498039); }
.button-group.radius > :first-child, .button-group.radius > :first-child > a, .button-group.radius > :first-child > button, .button-group.radius > :first-child > .button { border-bottom-left-radius: 4px; border-top-left-radius: 4px; }
.button-group.radius > :last-child, .button-group.radius > :last-child > a, .button-group.radius > :last-child > button, .button-group.radius > :last-child > .button { border-top-right-radius: 4px; border-bottom-right-radius: 4px; }
.button-group.round > * > button, .button-group.round > * .button { border-right-width: 0px; border-right-style: solid; border-color: rgba(255, 255, 255, 0.498039); }
.button-group.round > :first-child, .button-group.round > :first-child > a, .button-group.round > :first-child > button, .button-group.round > :first-child > .button { border-bottom-left-radius: 1000px; border-top-left-radius: 1000px; }
.button-group.round > :last-child, .button-group.round > :last-child > a, .button-group.round > :last-child > button, .button-group.round > :last-child > .button { border-top-right-radius: 1000px; border-bottom-right-radius: 1000px; }
.button-group.even-2 li > button, .button-group.even-2 li .button { border-right-width: 0px; border-right-style: solid; border-color: rgba(255, 255, 255, 0.498039); }
.button-group.even-2 li button, .button-group.even-2 li .button { width: 100%; }
.button-group.even-3 li > button, .button-group.even-3 li .button { border-right-width: 0px; border-right-style: solid; border-color: rgba(255, 255, 255, 0.498039); }
.button-group.even-3 li button, .button-group.even-3 li .button { width: 100%; }
.button-group.even-4 li > button, .button-group.even-4 li .button { border-right-width: 0px; border-right-style: solid; border-color: rgba(255, 255, 255, 0.498039); }
.button-group.even-4 li button, .button-group.even-4 li .button { width: 100%; }
.button-group.even-5 li > button, .button-group.even-5 li .button { border-right-width: 0px; border-right-style: solid; border-color: rgba(255, 255, 255, 0.498039); }
.button-group.even-5 li button, .button-group.even-5 li .button { width: 100%; }
.button-group.even-6 li > button, .button-group.even-6 li .button { border-right-width: 0px; border-right-style: solid; border-color: rgba(255, 255, 255, 0.498039); }
.button-group.even-6 li button, .button-group.even-6 li .button { width: 100%; }
.button-group.even-7 li > button, .button-group.even-7 li .button { border-right-width: 0px; border-right-style: solid; border-color: rgba(255, 255, 255, 0.498039); }
.button-group.even-7 li button, .button-group.even-7 li .button { width: 100%; }
.button-group.even-8 li > button, .button-group.even-8 li .button { border-right-width: 0px; border-right-style: solid; border-color: rgba(255, 255, 255, 0.498039); }
.button-group.even-8 li button, .button-group.even-8 li .button { width: 100%; }
[data-clearing] { margin-bottom: 0px; margin-left: 0px; list-style: none; }
[data-clearing]::before, [data-clearing]::after { content: ' '; display: table; }
[data-clearing]::after { clear: both; }
[data-clearing] li { float: left; margin-right: 10px; }
.f-dropdown.right::before { left: auto; right: 10px; }
.f-dropdown.right::after { left: auto; right: 9px; }
.f-dropdown.small { max-width: 300px; }
.dropdown.button { position: relative; padding-right: 3.5625rem; }
.dropdown.button::before { position: absolute; content: ''; width: 0px; height: 0px; display: block; border-style: solid; border-color: white transparent transparent; top: 50%; }
.dropdown.button::before { border-width: 0.375rem; right: 1.40625rem; margin-top: -0.15625rem; }
.dropdown.button::before { border-color: white transparent transparent; }
.dropdown.button.small { padding-right: 3.0625rem; }
.dropdown.button.small::before { border-width: 0.4375rem; right: 1.3125rem; margin-top: -0.15625rem; }
.dropdown.button.small::before { border-color: white transparent transparent; }
.dropdown.button.secondary::before { border-color: rgb(51, 51, 51) transparent transparent; }
form .row .row { margin: 0px -0.5rem; }
form .row .row .column, form .row .row .columns { padding: 0px 0.5rem; }
form .row .row.collapse { margin: 0px; }
form .row .row.collapse .column, form .row .row.collapse .columns { padding: 0px; }
form .row .row.collapse input { border-bottom-right-radius: 0px; border-top-right-radius: 0px; }
form .row input.column, form .row input.columns, form .row textarea.column, form .row textarea.columns { padding-left: 0.5rem; }
label { font-size: 0.875rem; color: rgb(77, 77, 77); cursor: pointer; display: block; font-weight: normal; margin-bottom: 0.5rem; }
label.right { float: none; text-align: right; }
label small { text-transform: capitalize; color: rgb(102, 102, 102); }

select.radius { border-top-left-radius: 4px; border-top-right-radius: 4px; border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; }

.postfix.button { padding: 0px; text-align: center; line-height: 2.125rem; border: none; }
.prefix.button { padding: 0px; text-align: center; line-height: 2.125rem; border: none; }
.prefix.button.radius { border-top-right-radius: 0px; border-bottom-right-radius: 0px; border-bottom-left-radius: 4px; border-top-left-radius: 4px; }
.postfix.button.radius { border-top-left-radius: 0px; border-bottom-left-radius: 0px; border-top-right-radius: 4px; border-bottom-right-radius: 4px; }
span.prefix.radius, label.prefix.radius { border-top-right-radius: 0px; border-bottom-right-radius: 0px; border-bottom-left-radius: 4px; border-top-left-radius: 4px; }
span.postfix.radius, label.postfix.radius { border-top-left-radius: 0px; border-bottom-left-radius: 0px; border-top-right-radius: 4px; border-bottom-right-radius: 4px; }
.input-group.radius > :first-child, .input-group.radius > :first-child * { border-bottom-left-radius: 4px; border-top-left-radius: 4px; }
.input-group.radius > :last-child, .input-group.radius > :last-child * { border-top-right-radius: 4px; border-bottom-right-radius: 4px; }

.supertopthing input:focus { border-color: rgb(153, 153, 153); outline: none; background: rgb(20, 20, 23); }
input[type="text"][disabled], input[type="password"][disabled], input[type="date"][disabled], input[type="datetime"][disabled], input[type="datetime-local"][disabled], input[type="month"][disabled], input[type="week"][disabled], input[type="email"][disabled], input[type="number"][disabled], input[type="search"][disabled], input[type="tel"][disabled], input[type="time"][disabled], input[type="url"][disabled], textarea[disabled] { background-color: rgb(221, 221, 221); }

input[type="checkbox"] + label, input[type="radio"] + label { display: inline-block; margin-left: 0.5rem; margin-right: 1rem; margin-bottom: 0px; vertical-align: baseline; }
input[type="file"] { width: 100%; }
.reveal-modal fieldset { /*border: 1px solid rgb(221, 221, 221*/); padding: 1.25rem !important; margin: 1.125rem 0px; }
fieldset legend { font-weight: bold; padding: 0px 0.1875rem; margin: 0px 0px 0px -0.1875rem; background: white; }
.joyride-content-wrapper .button { margin-bottom: 0px !important; }
.joyride-tip-guide .joyride-nub.right { right: -20px; }
.joyride-tip-guide .joyride-nub.left { left: -20px; }
.label.radius { border-top-left-radius: 4px; border-top-right-radius: 4px; border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; }
.label.secondary { color: white; background-color: rgb(58, 58, 58); }
[data-magellan-expedition] { z-index: 50; min-width: 100%; padding: 10px; background: white; }
.panel.radius { border-top-left-radius: 4px; border-top-right-radius: 4px; border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; }
.pricing-table .title { padding: 1rem; text-align: left; color: black; font-weight: bold; font-size: 1rem; font-family: Titillium, Helvetica, Helvetica, Arial, sans-serif; background-color: white; }
.progress.secondary .meter { height: 100%; display: block; background: rgb(58, 58, 58); }
.progress.radius { border-top-left-radius: 4px; border-top-right-radius: 4px; border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; }
.progress.radius .meter { border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; }
.reveal-modal { visibility: hidden; display: none; position: absolute; left: 50%; z-index: 99; height: auto; margin-left: -40%; width: 80%; padding: 1.25rem; border: 1px solid rgb(41, 41, 41); -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 10px; box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 10px; top: 50px; background-color: rgb(20, 20, 23); }
.reveal-modal .column, .reveal-modal .columns { min-width: 0px; }
.reveal-modal > :first-child { margin-top: 0px; }
.reveal-modal > :last-child { margin-bottom: 0px; }
.reveal-modal .close-reveal-modal { font-size: 1.375rem; line-height: 1; position: absolute; top: 0.5rem; right: 0.6875rem; color: rgb(170, 170, 170); font-weight: bold; cursor: pointer; }
.side-nav li.divider { border-top-width: 1px; border-top-style: solid; height: 0px; padding: 0px; list-style: none; border-top-color: rgb(230, 230, 230); }
.split.button { position: relative; padding-right: 5.0625rem; }
.split.button span { display: block; height: 100%; position: absolute; right: 0px; top: 0px; border-left-style: solid; border-left-width: 1px; }
.split.button span::before { position: absolute; content: ''; width: 0px; height: 0px; display: block; border-style: inset; top: 50%; left: 50%; }
.split.button span:active { background-color: rgba(0, 0, 0, 0.0980392); }
.split.button span { border-left-color: rgba(255, 255, 255, 0.498039); }
.split.button span { width: 3.09375rem; }
.split.button span::before { border-top-style: solid; border-width: 0.375rem; top: 48%; margin-left: -0.375rem; }
.split.button span::before { border-color: white transparent transparent; }
.split.button.secondary span { border-left-color: rgba(255, 255, 255, 0.498039); }
.split.button.secondary span::before { border-color: white transparent transparent; }
.split.button.small { padding-right: 4.375rem; }
.split.button.small span { width: 2.625rem; }
.split.button.small span::before { border-top-style: solid; border-width: 0.4375rem; top: 48%; margin-left: -0.375rem; }
.split.button.secondary span::before { border-color: rgb(51, 51, 51) transparent transparent; }
.split.button.radius span { border-top-right-radius: 4px; border-bottom-right-radius: 4px; }
div.switch.small { height: 1.75rem; }
div.switch.small label { padding: 0px; line-height: 2.1rem; font-size: 0.75rem; }
div.switch.small input:first-of-type:checked ~ span:last-child { left: 100%; margin-left: -1.6875rem; }
div.switch.small span:last-child { width: 1.75rem; height: 1.75rem; }
div.switch.radius { border-top-left-radius: 4px; border-top-right-radius: 4px; border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; }
div.switch.radius span:last-child { border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; }
.tabs.radius dd:first-child a { border-bottom-left-radius: 4px; border-top-left-radius: 4px; }
.tabs.radius dd:last-child a { border-top-right-radius: 4px; border-bottom-right-radius: 4px; }
.th.radius { border-top-left-radius: 4px; border-top-right-radius: 4px; border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; }




p aside { font-size: 0.875rem; line-height: 1.35; font-style: italic; }
hr { border-style: solid; border-color: rgb(221, 221, 221); border-width: 1px 0px 0px; clear: both; margin: 1.25rem 0px 1.1875rem; height: 0px; }
em, i { font-style: italic; line-height: inherit; }
small { font-size: 60%; line-height: inherit; }
code { font-family: Consolas, 'Liberation Mono', Courier, monospace; font-weight: bold; color: rgb(187, 38, 13); }
dl dd { margin-bottom: 0.75rem; }
abbr, acronym { text-transform: uppercase; font-size: 90%; color: rgb(161, 161, 161); border-bottom-width: 1px; border-bottom-style: dotted; border-bottom-color: rgb(221, 221, 221); cursor: help; }
abbr { text-transform: none; }
blockquote { margin: 0px 0px 1.25rem; padding: 0.5625rem 1.25rem 0px 1.1875rem; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(221, 221, 221); }
blockquote cite { display: block; font-size: 0.8125rem; color: white; }
blockquote cite::before { content: '— '; }
blockquote cite a, blockquote cite a:visited { color: white; }
blockquote, blockquote p { line-height: 1.6; color: white; }
meta.foundation-mq-topbar { font-family: '/only screen and (min-width:30.063em)/'; width: 40.063em; }
.contain-to-grid { width: 100%; background: rgb(20, 20, 23); }
.contain-to-grid .top-bar { margin-bottom: 0px; }
.fixed.expanded:not(.top-bar) .title-area { position: fixed; width: 100%; z-index: 99; }
.fixed.expanded:not(.top-bar) .top-bar-section { z-index: 98; margin-top: 65px; }
.supertopthing {height: 68px; line-height: 65px; position: relative; margin-bottom: 0px; background: rgb(20, 20, 23); color: #a1a1a1; font-family: "Titillium", "Helvetica", Helvetica, Arial, sans-serif; font-weight: 400; font-style: normal;}
.supertopthing ul { margin-bottom: 0px; list-style: none; }
.supertopthing div {direction: ltr;}
.supertopthing form, .top-bar input { margin-bottom: 0px; }
.supertopthing input { height: auto; padding-top: 0.35rem; padding-bottom: 0.35rem; font-size: 0.75rem; }
.supertopthing .button { padding-top: 0.45rem; padding-bottom: 0.35rem; margin-bottom: 0px; font-size: 0.875rem;}
.supertopthing .title-area { position: relative; margin: 0px; float:left; padding-left: 0px;}
.supertopthing .name { height: 65px; margin: 0px; font-size: 16px; }
.supertopthing .name h1 { line-height: 65px; font-size: 1.0625rem; margin: 0px; }
.supertopthing .name h1 a { font-weight: normal; color: rgb(161, 161, 161); width: 50%; display: block; padding: 0px 21.66667px; }
.supertopthing .toggle-topbar { position: absolute; right: 0px; top: 0px; }
.supertopthing .toggle-topbar a { color: rgb(161, 161, 161); text-transform: uppercase; font-size: 0.8125rem; font-weight: bold; position: relative; display: block; padding: 0px 21.66667px; height: 65px; line-height: 65px; }
.supertopthing .toggle-topbar.menu-icon { right: 21.66667px; top: 50%; margin-top: -16px; padding-left: 40px; }
.supertopthing .toggle-topbar.menu-icon a { text-indent: -48px; width: 34px; height: 34px; line-height: 33px; padding: 0px; color: white; }
.supertopthing .toggle-topbar.menu-icon a span { position: absolute; right: 0px; display: block; width: 16px; height: 0px; -webkit-box-shadow: white 0px 10px 0px 1px, white 0px 16px 0px 1px, white 0px 22px 0px 1px; box-shadow: white 0px 10px 0px 1px, white 0px 16px 0px 1px, white 0px 22px 0px 1px; }
.supertopthing.expanded .title-area { background: rgb(20, 20, 23); }
.supertopthing.expanded .toggle-topbar a { color: rgb(136, 136, 136); }
.supertopthing.expanded .toggle-topbar a span { -webkit-box-shadow: rgb(136, 136, 136) 0px 10px 0px 1px, rgb(136, 136, 136) 0px 16px 0px 1px, rgb(136, 136, 136) 0px 22px 0px 1px; box-shadow: rgb(136, 136, 136) 0px 10px 0px 1px, rgb(136, 136, 136) 0px 16px 0px 1px, rgb(136, 136, 136) 0px 22px 0px 1px; }

.js-generated { display: block; }
.off-canvas-wrap, .inner-wrap, nav.tab-bar, .left-off-canvas-menu, .left-off-canvas-menu *, .right-off-canvas-menu, .move-right a.exit-off-canvas, .move-left a.exit-off-canvas { -webkit-backface-visibility: hidden; }
.off-canvas-wrap, .inner-wrap { position: relative; width: 100%; }
.off-canvas-wrap { overflow: hidden; }
.inner-wrap { transition: transform 500ms ease; -webkit-transition: transform 500ms ease; }
.inner-wrap::before, .inner-wrap::after { content: ' '; display: table; }
.inner-wrap::after { clear: both; }
section.tab-bar-section.left { left: 0px; right: 4.0625rem; }
section.tab-bar-section.right { left: 4.0625rem; right: 0px; }
a.menu-icon { text-indent: 2.1875rem; width: 4.0625rem; height: 4.0625rem; display: block; line-height: 2.0625rem; padding: 0px; color: white; position: relative; }
a.menu-icon span { position: absolute; display: block; width: 1rem; height: 0px; left: 1.4375rem; top: 1.0625rem; -webkit-box-shadow: rgb(58, 58, 58) 0px 10px 0px 1px, rgb(58, 58, 58) 0px 16px 0px 1px, rgb(58, 58, 58) 0px 22px 0px 1px; box-shadow: rgb(58, 58, 58) 0px 10px 0px 1px, rgb(58, 58, 58) 0px 16px 0px 1px, rgb(58, 58, 58) 0px 22px 0px 1px; }
a.menu-icon:hover span { -webkit-box-shadow: rgb(238, 48, 59) 0px 10px 0px 1px, rgb(238, 48, 59) 0px 16px 0px 1px, rgb(238, 48, 59) 0px 22px 0px 1px; box-shadow: rgb(238, 48, 59) 0px 10px 0px 1px, rgb(238, 48, 59) 0px 16px 0px 1px, rgb(238, 48, 59) 0px 22px 0px 1px; }
.move-right > .inner-wrap { -webkit-transform: translate3d(250px, 0px, 0px); transform: translate3d(250px, 0px, 0px); }
.move-right a.exit-off-canvas { transition: background 300ms ease; -webkit-transition: background 300ms ease; cursor: pointer; box-shadow: rgba(0, 0, 0, 0.0980392) -4px 0px 4px, rgba(0, 0, 0, 0.0980392) 4px 0px 4px; display: block; position: absolute; top: 0px; bottom: 0px; left: 0px; right: 0px; z-index: 1002; background: rgba(255, 255, 255, 0.2); }
.move-left > .inner-wrap { -webkit-transform: translate3d(-250px, 0px, 0px); transform: translate3d(-250px, 0px, 0px); }
.move-left a.exit-off-canvas { transition: background 300ms ease; -webkit-transition: background 300ms ease; cursor: pointer; box-shadow: rgba(0, 0, 0, 0.0980392) -4px 0px 4px, rgba(0, 0, 0, 0.0980392) 4px 0px 4px; display: block; position: absolute; top: 0px; bottom: 0px; left: 0px; right: 0px; z-index: 1002; background: rgba(255, 255, 255, 0.2); }
.lt-ie10 .move-left > .inner-wrap { right: 250px; }
.lt-ie10 .move-right > .inner-wrap { left: 250px; }
.hide-for-small, .hide-for-small-only, .hide-for-medium-down, .show-for-medium, .show-for-medium-up, .show-for-medium-only, .hide-for-large-down, .show-for-large, .show-for-large-up, .show-for-large-only, .show-for-xlarge, .show-for-xlarge-up, .show-for-xlarge-only, .show-for-xxlarge-up, .show-for-xxlarge-only { display: none !important; }
.icon { font-style: normal; font-family: FontAwesome !important; }
.fa-cog::before { content: '?'; font-size: 1.5rem; }
.fa-gamepad::before { content: '?'; padding-right: 10px; font-size: 1rem; }
.fa-comments::before { content: '?'; padding-right: 10px; font-size: 1rem; }
.fa-plane::before { content: '?'; padding-right: 10px; font-size: 1rem; }
.main { height: auto; }
hr { border-color: rgb(41, 41, 41) !important; }
ul.dropdown .avatar { height: 30px; width: 30px; border-top-left-radius: 4px; border-top-right-radius: 4px; border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; }
.discordlogo { width: 30px; margin-top: 20px;}
.inputbox { width: 80px !important; }
.dropdown { border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(41, 41, 41); border-left-width: 1px; border-left-style: solid; border-left-color: rgb(41, 41, 41); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(41, 41, 41); border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; overflow: hidden; }
.dropdown a { max-height: 65px; }
ul.dropdown { min-width: 160px !important; }
.divider { width: 90%; border-color: rgb(41, 41, 41) !important; }
.side-nav .divider { margin-top: 1.3rem; width: 90%; }
.logo { position: relative; float: left; top: 15px; height: 36px; width: 160px; margin-right: 20px; }
.contain-to-grid { border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(41, 41, 41); }
aside a { font-weight: 400; border-left-width: 4px; border-left-style: solid; border-left-color: rgb(23, 23, 23); }
aside .has-form { padding: 15px 15px 0px; }
footer { border-top-width: 1px; border-top-style: solid; border-top-color: rgb(41, 41, 41); height: 240px; background-color: rgb(15, 22, 30); }
.button { text-transform: uppercase; }
.vtiny { padding-right: 0.6rem !important; padding-left: 0.6rem !important; padding-bottom: 0.5rem !important; color: rgb(58, 58, 58) !important; background-color: rgb(30, 30, 30) !important; }
.vtiny:hover { color: white !important; background-color: rgb(58, 58, 58) !important; }
.menuactive a:link, .menuactive a:visited, .menuactive .icon i { color: white; }
.searchmenu-expand .button_submit, .searchmenu .button_submit { padding: 4px 10px; }
#alerts { margin-top: 4px; padding: 5px 0px; right: 85px; z-index: 10000; border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; box-shadow: rgba(0, 0, 0, 0.0980392) 0px 0px 7px; font-size: 14px; width: 350px; color: rgb(0, 0, 0); overflow: auto; font-weight: normal; position: absolute; line-height: 17px !important; background-color: rgb(20, 20, 23); }
.alerts_hide { top: 4px; position: relative; opacity: 0.7; }
#alerts_entries { display: none; visibility: hidden; }
#alerts_new_entries { display: none; visibility: hidden; }
.alerts_max_avatar { width: 40px; height: 40px; margin: 5px 10px; }
.alarm_time { color: gray; font-size: 12px; }
.alarm_border_last { padding: 5px 0px 3px; }
.alarm_clear { clear: both; }
.alarm_clear a:link, .alarm_clear a:visited { font-weight: bold; font-family: Open Sans, sans-serif; color: rgb(0, 0, 0); }
.alerts_count { visibility: hidden; }
#alerts_counter { color: white; width: 10px; height: 10px; font-size: 12px; padding: 0px 5px; border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; vertical-align: top; position: relative; top: -7px; left: -7px; background-color: rgb(234, 48, 59); }
#top_alerts { border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(229, 229, 229); padding: 10px; color: rgb(238, 48, 59); }
#top_alerts a { color: rgb(178, 178, 178); font-size: 8px; font-family: Titillium, sans-serif; line-height: 17px !important; padding: 0px !important; }
#top_alerts a:hover { text-decoration: none; }
#alerts_image:hover { cursor: pointer; }
.alerts_va { vertical-align: middle; }
.alerts_avatar_container { float: left; line-height: 17px !important; padding: 0px 1px !important; }
.alerts_avatar_container a { line-height: 17px !important; padding: 0px !important; }
.alerts_information_container { width: 82%; float: right; line-height: 17px !important; padding: 10px 0px !important; }
.alerts_information_container span a:link, .alerts_information_container span a:visited { color: rgb(104, 104, 104); font-size: 8pt; letter-spacing: 0.5px; line-height: 17px !important; padding: 0px !important; }
nav alerts { list-style-type: none; text-transform: uppercase; text-align: center; padding-right: 5px; width: auto; }
nav alerts ul li { display: inline-block; width: 130px; }
nav alerts ul li a:link, nav ul li a:visited, nav ul li { font-family: Titillium Web, sans-serif; font-size: 16px; }
.smalltext ul { list-style: none; text-align: right; display: inline; padding-right: 20px; }

#not_entries { overflow: hidden; }
.alertbell { box-sizing: border-box; color: rgb(161, 161, 161); cursor: auto; direction: ltr; display: block; font-family: Titillium, Helvetica, Helvetica, Arial, sans-serif; font-size: 16px; font-style: normal; font-weight: normal; height: 68px; width: 20px; line-height: 10px; list-style: none outside none; outline: rgb(161, 161, 161) none 0px; padding: 19px 45px 0px 24px; text-align: left; text-decoration: none; text-transform: uppercase; background-image: none; background-attachment: scroll; background-color: rgb(20, 20, 23); background-size: auto; background-origin: padding-box; background-clip: border-box; }

.hide-for-small, .hide-for-small-only, .hide-for-medium, .hide-for-medium-down, .hide-for-medium-only, .show-for-medium-up, .show-for-large-up, .show-for-xlarge, .show-for-xlarge-up, .show-for-xlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge-only {
display: inherit !important;
}


.fa-user:before {
  content: "\f007";
  font-size: 1.3rem;
  color: #83c557;
}

.fa-cog:before {
  content: "\f013";
  font-size: 1.5rem;
}

.fa-cogs:before {
  content: "\f085";
  font-size: 1rem;
}

.fa-community:before {
  content: "\f086";
  font-size: 1.5rem;
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-edit:before {
  content: "\f085";
}

.fa-area:before {
  content: "\f00a";
}

.fa-location:before {
  content: "\f124";
}

.fa-ticket:before {
  content: "\f145";
}

.fa-users:before {
  content: "\f0c0";
}

.fa-stack {
  float: left;
  margin-right: 16px;
}

.fa-search:before {
  content: "\f002";
  font-size: 0.9rem;
  color: white;
  position: absolute;
  top: 11px;
  left: 11px;
}

.fa-circle:before {
  content: "\f111";
  color: #ee303b;
  font-size: 3.6rem;
  margin-right: 16px;
}

.fa-cup:before {
  content: "\f091";
  color: #141417;
  font-size: 2rem;
  position: absolute;
  left: 25px;
  top: 12px;
}

.fa-gamers:before {
  content: "\f0c0";
  color: #141417;
  font-size: 1.8rem;
  position: absolute;
  left: 24px;
  top: 14px;
}

.fa-cup-side:before {
  content: "\f091";
  color: #f1c403;
  font-size: 1rem;
  float: right;
  position: relative;
  top: 1px;
}

.fa-community-side:before {
  content: "\f086";
  font-size: 1rem;
  float: right;
  position: relative;
  top: 1px;
}

.fa-console:before {
  content: "\f11b";
  color: #141417;
  font-size: 1.8rem;
  position: absolute;
  left: 24px;
  top: 12px;
}

.fa-pc:before {
  content: "\f11c";
  color: #ee303b;
}

.platform .fa-pc:before {
  color: #141417;
  font-size: 1.8rem;
  position: absolute;
  left: 24px;
  top: 12px;
}

.fa-online:before {
  content: "\f0ac";
  font-size: 1rem;
  color: #1e1e1e;
}

.fa-lan:before {
  content: "\f0e8";
  font-size: 1rem;
  color: #1e1e1e;
}

.fa-unranked:before {
  content: "\f091";
  font-size: 1rem;
  color: #292929;
}

.fa-ranked:before {
  content: "\f091";
  font-size: 1rem;
  color: #f1c403;
}

.fa-arrow-right:before {
  content: "\f054";
  font-size: 0.8rem;
  color: #1e1e1e;
}

.fa-plus:before {
  content: "\f067";
  font-weight: 200;
  font-size: 0.8rem;
  margin-right: 0.4rem;
  position: relative;
  top: 1px;
}

.fa-info:before {
  content: "\f05a";
  margin-right: 0.4rem;
}

.fa-classy:before {
  content: "\f005";
  color: #f1c403;
  margin-right: 0.4rem;
}

.fa-rules:before {
  content: "\f06a";
  margin-left: 0.15rem;
}

.fa-steam:before {
  content: "\f1b6";
  color: white;
  margin-right: 0.6rem;
  font-size: 1rem;
  position: relative;
  top: 2px;
}

.fa-twitter:before {
  content: "\f099";
  color: #21b0e6;
  margin-right: 0.5rem;
  font-size: 1rem;
  position: relative;
  top: 2px;
}

.fa-facebook:before {
  content: "\f082";
  color: #3c599f;
  margin-right: 0.6rem;
  font-size: 1rem;
  position: relative;
  top: 2px;
}

.fa-gamepad:before {
  content: "\f11b";
  padding-right: 10px;
  font-size: 1rem;
}

.fa-comments:before {
  content: "\f086";
  padding-right: 10px;
  font-size: 1rem;
}

.fa-users:before {
  content: "\f0c0";
  padding-right: 10px;
  font-size: 1rem;
}

.fa-plane:before {
  content: "\f072";
  padding-right: 10px;
  font-size: 1rem;
}

.top-bar-section {
  left: 0;
  position: relative;
  width: auto;
  -webkit-transition: left 300ms ease-out;
  -moz-transition: left 300ms ease-out;
  transition: left 300ms ease-out;
}
.top-bar-section ul {
  width: 100%;
  height: auto;
  display: block;
  background: #292929;
  font-size: 16px;
  margin: 0;
}
.top-bar-section .divider,
.top-bar-section [role="separator"] {
  border-top: solid 1px #1a1a1a;
  clear: both;
  height: 1px;
  width: 100%;
}
.top-bar-section ul li > a {
  display: block;
  color: #a1a1a1;
  padding: 12px 0 12px 0;
  padding-left: 21.66667px;
  font-family: "Titillium", "Helvetica", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  background: #292929;
}
.top-bar-section ul li > a.button {
  background: #ee303b;
  font-size: 1rem;
  padding-right: 21.66667px;
  padding-left: 21.66667px;
}
.top-bar-section ul li > a.button:hover {
  background: #d9121d;
}
.top-bar-section ul li > a.button.secondary {
  background: #3a3a3a;
}
.top-bar-section ul li > a.button.secondary:hover {
  background: #212121;
}
.top-bar-section ul li > a.button.success {
  background: #83c557;
}
.top-bar-section ul li > a.button.success:hover {
  background: #69ad3c;
}
.top-bar-section ul li > a.button.alert {
  background: #f04124;
}
.top-bar-section ul li > a.button.alert:hover {
  background: #d32a0e;
}
.top-bar-section ul li:hover > a {
  background: #141417;
  color: white;
}
.top-bar-section ul li.active > a {
  background: #141417;
  color: white;
}
.top-bar-section ul li.active > a:hover {
  background: #141417;
}
.top-bar-section .has-form {
  padding: 21.66667px;
}
.top-bar-section .has-dropdown {
  position: relative;
}
.top-bar-section .has-dropdown > a:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 5px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.4);
  border-left-style: solid;
  margin-right: 21.66667px;
  margin-top: -4.5px;
  position: absolute;
  top: 50%;
  right: 0;
}
.top-bar-section .has-dropdown.moved {
  position: static;
}
.top-bar-section .has-dropdown.moved > .dropdown {
  display: block;
}
.top-bar-section .dropdown {
  position: absolute;
  left: 100%;
  top: 0;
  display: none;
  z-index: 99;
}
.top-bar-section .dropdown li {
  width: 100%;
  height: auto;
}
.top-bar-section .dropdown li a {
  font-weight: normal;
  padding: 8px 21.66667px;
}
.top-bar-section .dropdown li a.parent-link {
  font-weight: 600;
}
.top-bar-section .dropdown li.title h5 {
  margin-bottom: 0;
}
.top-bar-section .dropdown li.title h5 a {
  color: #a1a1a1;
  line-height: 32.5px;
  display: block;
}
.top-bar-section .dropdown label {
  padding: 8px 21.66667px 2px;
  margin-bottom: 0;
  text-transform: uppercase;
  color: #777777;
  font-weight: bold;
  font-size: 0.625rem;
}

  .top-bar-section {
    -webkit-transition: none 0 0;
    -moz-transition: none 0 0;
    transition: none 0 0;
    left: 0 !important;
  }
  .top-bar-section ul {
    width: auto;
    height: auto !important;
    display: inline;
	padding-left:0px;
  }
  .top-bar-section ul li {
    float: left;
  }
  .top-bar-section ul li .js-generated {
    display: none;
  }
  .top-bar-section li.hover > a:not(.button) {
    background: #141417;
    color: white;
  }
  .top-bar-section li a:not(.button) {
    padding: 0 21.667px;
    line-height: 65px;
    background: #141417;
	height: 68px;
  }
  .top-bar-section li a:not(.button):hover {
    background: #141417;
  }
  .top-bar-section .has-dropdown > a {
    padding-right: 41.66667px !important;
  }
  .top-bar-section .has-dropdown > a:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: rgba(255, 255, 255, 0.4) transparent transparent transparent;
    border-top-style: solid;
    margin-top: -2.5px;
    top: 32.5px;
  }
  .top-bar-section .has-dropdown.moved {
    position: relative;
  }
  .top-bar-section .has-dropdown.moved > .dropdown {
    display: none;
  }
  .top-bar-section .has-dropdown:hover > .dropdown, .top-bar-section .has-dropdown.not-click:hover > .dropdown {
    display: block;
  }
  .top-bar-section .has-dropdown .dropdown li.has-dropdown > a:after {
    border: none;
    content: "\00bb";
    top: 1rem;
    margin-top: -2px;
    right: 5px;
  }
  .top-bar-section .dropdown {
    left: 0;
    top: auto;
    background: transparent;
    min-width: 100%;
  }
  .top-bar-section .dropdown li a {
    color: #a1a1a1;
    line-height: 1;
    white-space: nowrap;
    padding: 12px 21.66667px;
    background: #141417;
	height: auto;
  }
  .top-bar-section .dropdown li label {
    white-space: nowrap;
    background: #141417;
  }
  .top-bar-section .dropdown li .dropdown {
    left: 100%;
    top: 0;
  }
  .top-bar-section > ul > .divider, .top-bar-section > ul > [role="separator"] {
    border-bottom: none;
    border-top: none;
    border-right: solid 1px #4d4d4d;
    clear: none;
    height: 65px;
    width: 0;
  }
  .top-bar-section .has-form {
    background: #141417;
    padding: 0 21.66667px;
    height: 65px;
  }
  .top-bar-section ul.right li .dropdown {
    left: auto;
    right: 0;
  }
  .top-bar-section ul.right li .dropdown li .dropdown {
    right: 100%;
  }

  .no-js .top-bar-section ul li:hover > a {
    background: #141417;
    color: white;
  }
  .no-js .top-bar-section ul li:active > a {
    background: #141417;
    color: white;
  }
  .no-js .top-bar-section .has-dropdown:hover > .dropdown {
    display: block;
  }

.top-bar-section {
  font-weight: 400;
  text-transform: uppercase;
}
.top-bar-section li.login a {
  line-height: 63px !important;
  height:68px;
}
.top-bar-section li.login {
  height: 68px;
}
.top-bar-section .has-form {
  background-clip: none;
}
.top-bar-section li a {
  font-weight: 400 !important;
}
.top-bar-section .has-form {
  height: 68px;
}
.supertopthing input[type="text"],
.supertopthing textarea {

  -webkit-appearance: none;
  -webkit-border-radius: 0;
  border-radius: 0;
  background-color: #141417;
  line-height:normal;
  font-size: 14px;
  font-family: verdana, Helvetica, sans-serif;
  border: 1px solid #cccccc;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  color: #a1a1a1;
  display: block;
  margin: 0 0 0 0;
  padding: .35rem 8px;
  width: 100%;
  height:27.1875px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  transition: all 0.15s linear;
}
.top-bar input {
  height: auto;
  padding-top: .35rem;
  padding-bottom: .35rem;
  font-size: 0.75rem;
  position: relative;
  top: 14px !important;
  right: auto !important;
  border: none !important;
  box-shadow: none !important;
}

.reveal-modal-bg {
  position: fixed;
  height: 100%;
  width: 100%;
  background: black;
  background: rgba(0, 0, 0, 0.45);
  z-index: 98;
  display: none;
  top: 0;
  left: 0;
}

.reveal-modal {
  visibility: hidden;
  display: none;
  position: absolute;
  left: 50%;
  z-index: 99;
  height: auto;
  margin-left: -40%;
  width: 80%;
  background-color: #141417;
  padding: 1.25rem;
  border: solid 1px #292929;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  top: 50px;
}
.reveal-modal .column,
.reveal-modal .columns {
  min-width: 0;
}
.reveal-modal > :first-child {
  margin-top: 0;
}
.reveal-modal > :last-child {
  margin-bottom: 0;
}
.reveal-modal .close-reveal-modal {
  font-size: 1.375rem;
  line-height: 1;
  position: absolute;
  top: 0.5rem;
  right: 0.6875rem;
  color: #A1A1A1A1A1A1;
  font-weight: bold;
  cursor: pointer;
}

  .reveal-modal {
    padding: 1.875rem;
    top: 6.25rem;
}
  .reveal-modal.small {
    margin-left: -20%;
    width: 36%;

}
.reveal-modal h2 {
    font-size: 2.3125rem;
	text-transform: uppercase;
	font-family: "Titillium", "Helvetica", Helvetica, Arial, sans-serif;
  font-weight: 200;
  font-style: normal;
  color: white;
  text-rendering: optimizeLegibility;
  margin-bottom: 0;
  line-height: 1;
}
.register {
float: right;
}
.Actions {
float: left;
width: 40% !important;
}
.reveal-modal a {
color: #ee303b;
text-decoration: none;
line-height: inherit;
}
.reveal-modal a:hover, a:focus {
color: #A1A1A1;
}
.reveal-modal p {
font-family: inherit;
font-weight: normal;
font-size: 1rem;
line-height: 1.6;
margin-top: 0px;
margin-bottom: 20px;
}



.reveal-modal input[type="text"],
.reveal-modal input[type="password"],
.reveal-modal textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  border-radius: 0;
  background-color: #141417;
  font-family: inherit;
/*  border: 1px solid #cccccc;*/
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  color: #a1a1a1;
  display: block;
  font-size: 0.875rem;
  margin: 0 0 1rem 0;
  padding: 0.5rem;
  height: 2.3125rem;
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.search-top input[type="text"] {
	font-size: 0.775rem !important;
	padding-left: 0px !important;
	margin-top: 3px !important;
	margin-left: 0px !important	;
}

.search-top input.vtiny {
	background-color: #141417 !important;
	border: 1px solid #292929 !important
}

.reveal-modal {
	border: 1px solid #292929 !important;
}
.reveal-modal input[type="text"],
.reveal-modal input[type="password"] {
	border: 1px solid #292929 !important;
}
.reveal-modal input[type="text"]:focus,
.reveal-modal input[type="password"]:focus {
	background-color: #1E1E1E !important;
	border: 0px !important;
}

.search-top .button_submit {
	position: relative;
	top: 30px;
}

.reveal-modal fieldset {
	border: 0px !important;
	padding: 0px !important;
}

.dropdown li:last-child {
	padding-bottom: 10px !important;
	background-color: #141417;
}

