/* INTRODUCTION
/* This is a very basic version of the Elkarte default theme.
/* It is intended primarily as a "clean slate" for custom theming.
/* This is eye candy only. All the layout code is in index.css.
/*
/* All theme variants depend on the layout code for stability.
/* It is better to copy code to a variant CSS file for testing.
/*
/* This variant uses named colours instead of hex codes.
/* CSS colour names at http://www.w3schools.com/cssref/css_colornames.asp
/* ------------------------------------------------------- */
/* $CONTENTS - still a bit WIP. @todo
/*
/*		$GENERAL.............Global resets, clearfixes, etc.
/*		$COMMON..............Common classes to drive you bonkers.
/*		$BBC.................Quotes, code blocks, BBC styles.
/*		$AJAX................The "loading" bar (quick edit, etc).
/*
/*		$MAIN................Forum header, wrapper, and footer.
/*		$MENUS...............Main and secondary menus.
/*		$LINKTREE............The breadcrumbs.
/*		$BUTTONS.............Most button strips.
/*		$PAGELINKS...........Page navigation links.
/*
/*		$TABLES..............Generic tables (memberlist, error log, etc).
/*		$SETTINGS............Generic lists for settings pages.
/*		$BOARDS..............Board index, sub-boards, and message index.
/*
/*		$TOPICS..............The display template (topic view), including send.
/*		$EDITOR..............Main editor (posts, events, polls) and topic summary.
/*		$MODERATE............Move topic, split topic, merge topic.
/*
/*		$PROFILE.............The profile areas.
/*		$PERSONAL............The personal messages (PM) areas.
/*		$CALENDAR............Wombats (and the calendar).
/*		$STATISTICS..........The statistics centre.
/*
/*		$HELP................Help pages, help icons and pop-ups, tooltips.
/*		$SEARCH..............Search pages, including memberlist search.
/*		$MEMBERLIST..........The memberlist table.
/*		$LOGIN...............Login and registration, maintenance mode.
/*
/*		$BOXES...............Message boxes (error, warning, info, etc).
/*		$PROGRESS............Nifty progress bars.
/*		$MEDIA...............Experimental media queries.
/* ------------------------------------------------------- */

/*	$GENERAL	*/
/* ------------------------------------------------------- */
/* Normal, standard links. */
a, a:link, a:visited,
/* Links that open in a new window. */
a.new_win:link, a.new_win:visited {
	color: #008299;
	text-decoration: none;
}
/* Cursor declared here.Should not be required anywhere else. */
a:hover, a.new_win:hover {
	text-decoration: underline;
}

/* Stop white band under footer on short pages. */
/* This color should match $FOOTER background. */
html {
	background: #3f4b59;
}
body {
	background: #3f4b59;
	color: #4d4f53;
	/*padding-top: 35px;*/
	font: 90%/130% Helvetica, Arial, "Nimbus Sans L", sans-serif;
}
fieldset {
	background: transparent;
	border: 1px solid #ccc;
	box-shadow: none;
	border-radius: 5px;
}
legend {
	background: url(../../images/selected_open.png) no-repeat scroll left center transparent;
	cursor: pointer;
	padding-left: 20px;
	color: #333;
	font-size: 1.214em;
	margin-left: 15px;
}
.collapsed legend {
	background: url(../../images/selected.png) no-repeat scroll left center transparent;
}

input, button, select, textarea, .editor {
	border: 1px solid #ccc;
	border-radius: 0px;
	background: #fff;
	color: #666;
}
select, input {
	font: 87.5%/130% Helvetica, Arial, "Nimbus Sans L", sans-serif;
	height: 24px;
}
#chrome select {
	padding: 2px 2px;
	height: 24px;
}
.linkbutton:link, .linkbutton_right:link, .linkbutton_left:link,
.linkbutton:visited, .linkbutton_right:visited, .linkbutton_left:visited {
	line-height: 18px;
}
.hdicon:before {
	margin: 2px 0;
}
input:hover, textarea:hover, button:hover, select:hover {
	border: 1px solid #999;
}
textarea:hover, .editor:hover {
	background: #fbfbfb;
}
input:focus, textarea:focus, button:focus, select:focus, .editor:focus {
	border: 1px solid #999;
}
/* Give disabled text input elements a different background color. */
input[disabled].input_text {
	background: #eee;
}

/* The OpenID login form */
.openid_login {
	padding-left: 20px;
	background: white url(../../images/openid.png) no-repeat;
	background-position: 2% 50%;
}

/* Common button styling. */
/* It is being replaced with three classes: */
/*    .button_submit is not floated */
/*    .right_submit is right floated */
/*    .left_submit is left floated */
/* The button_reset class may need attention too. */
.button_submit, .right_submit, .left_submit, .button_reset,
/* Anchors styled to look like buttons. */
/* These have standard body text size. Can be chained with smalltext class. */
.linkbutton:link, .linkbutton_right:link, .linkbutton_left:link,
.linkbutton:visited, .linkbutton_right:visited, .linkbutton_left:visited {
	border: 1px solid #afafaf;
	background: #f4f4f4;
	color: #555;
}
.button_submit, .right_submit, .left_submit, .button_reset {
	font-size: 0.857em;
}
/* Hover effects. */
.button_submit:hover, .right_submit:hover, .left_submit:hover,
.button_reset:hover,
.linkbutton:hover, .linkbutton_right:hover, .linkbutton_left:hover {
	border: 1px solid #ccc;
	background: #f0f0f0;
	color: #555;
	text-decoration: none;
}

/* the new "button" */
.new_posts, .new_posts:visited, .new_posts:link {
	border-radius: 4px;
/*	background: #43a8da; */
	background: #7bb128;
	color: #fff;
}
/* approval indicator */
.require_approval {
	border-radius: 4px;
	background: #f3b200;
	color: #fff;
}

/* Standard horizontal rule.. ([hr], etc.) */
hr {
	border-top: 1px solid #bbb;
	background: #eee;
	background-color: #eee;
}

strong {
	font-weight: bold;
}

/* @todo - Test this everywhere. */
.standard_category {
	border-radius: 4px 4px 0 0;
	background: #e4e4e4;
}
/* @todo - Test this everywhere. */
.standard_category>.content {
	border: 1px solid #ddd;
	background: #fff;
}

/* Styles for main headers. */
.category_header, .forum_category .category_header {
	border-radius: 0px;
	background: #3f4b59;
	color: #fff;
	font-size: 1.4em;
	/*font-weight: bolder;*/
	text-shadow: 0px 0px 0 #ebebeb;
}
/* Single ones a bit darker than board index ones. */
.forumposts .category_header, .content_category .category_header {
	border-top: 1px solid #cfcfcf;
	border-bottom: 1px solid #b7b7b7;
	background: #2f3030;
}
/* Styles for subsection headers. @todo */
.secondary_header {
	border: 1px solid #ccc;
	border-top: 1px solid #dfdfdf;
	background: #fafafa;
	text-shadow: 1px 1px 0 #fff;
}

.category_header a:link {
	color: #fff;
}

/* Upshrink image in the general category headers */
#category_toggle, #category_toggle_more, #upshrink_header {
	border-radius: 2px;
}

/* Upshrink image in the page top for the header collapse */
#collapse_button .linklevel1 {
	border-radius: 2px;
}

/* Custom highlighted text style for modern browsers. */
/* Nicer than default blue. Needs two separate rules. */
::-moz-selection {
	background: #5d5c5a;
	color: white;
}
::selection {
	background: #5d5c5a;
	color: white
}
/* Other highlighted text, such as search results. */
.highlight {
	color: #ff7200;
}

/* Legacy highlight color, for selected membergroups etc. */
/* Used by JS to show a selected item. Still used in manage languages */
.table_grid .standard_row.highlight2 {
	background: #d1e1ef;
	color: #555;
}

/* Used for sections that need somewhat larger corners */
/* @todo - Daft name. Other stuffz. :P */
.roundframe {
	border: 1px solid #c5c5c5;
	border-radius: 0px;
	background: #f5f5f5;
}

/* The generic wrapper thingy. */
.generic_list_wrapper {
	border: 1px solid #ccc;
	border-radius: 7px;
}
.generic_list_wrapper .additional_row {
	border-radius: 0;
}
.generic_list_wrapper .title_bar {
	border-bottom: 1px solid #fff;
	border-radius: 0;
	background: none;
}
.generic_list_wrapper .information {
	border-bottom: 1px solid #fff;
	background: none;
}

/* Styles used by the auto suggest control. */
.auto_suggest_div {
	border: 1px solid #bbb;
	border-radius: 3px;
}
.auto_suggest_div:focus {
	border: 1px solid #bbb;
}
.auto_suggest_item {
	background: #ddd;
}
.auto_suggest_item_hover {
	background: #888;
	color: #eee;
}

/*	$BBC		*/
/* ------------------------------------------------------- */
/* The "Quote:" and "Code:" header parts... */
.codeheader, .quoteheader {
	border: 1px solid #ccc;
	border-bottom: none;
	background: #fff;
	color: #555;
}
.codeheader {
	border-top: 3px solid #aaa;
}
/* [Select] link to copy code. */
.codeoperation {
	font-weight: normal;
}
/* A quote, perhaps from another post. */
.bbc_standard_quote, .bbc_alternate_quote,
/* A code block - maybe PHP ;) - shared styles. */
.bbc_code {
	border: 1px solid #ccc;
	border-top: none;
	background: #fff;
}
/* Extra quote styling */
.bbc_standard_quote, .bbc_alternate_quote, .quoteheader {
	box-shadow: 2px 2px 2px #ddd;
}
/* Extra code block styling. */
.bbc_code {
	border-top: 3px solid #aaa;
	border-bottom: 3px solid #aaa;
	background: #f8f8f8;
}
/* Styling for BBC tags */
.bbc_link:link, .bbc_link:visited {
	color: #377828;
	box-shadow: 0 -1px 0 #cedccb inset;
}
.bbc_link:hover {
	color: #377828;
	box-shadow: 0 -1px 0 #66aa55 inset;
	text-decoration: none;
}
/* /me uses this a lot. (emote, try typing /me in a post.) */
.meaction {
	color: #50aa3a;
}
.meaction:before {
	content: "\270c";
	font-size: 1.714em;
	line-height: 1em;
}
.spoilerheader {
	font-weight: bold;
	cursor: pointer;
	font-size: 0.857em;
}
.spoiler {
	border: 1px solid #ccc;
	padding: 0.3em;
	background-color: #eee;
}
div.bbc_footnotes {
	border-top: 1px solid #bfbfbf;
}
.bbc_footnotes .target:target {
	background-color: #d8ffdf;
}
sup.bbc_footnotes, sup.bbc_footnotes a {
	color: #50aa3a;
	font-weight: bold;
}
div.bbc_footnotes .meaction {
	display: inline-block;
}


/*	$AJAX		*/
/* ------------------------------------------------------- */
/* The "Loading" bar for quick edit, etc. */
#ajax_in_progress {
	border-bottom: 4px solid #3d6e32;
	background: #fff;
	color: #306430;
}
#ajax_in_progress a {
	text-decoration: underline;
}


/*	$MAIN.		*/
/* ------------------------------------------------------- */
/* The top bar. */

#top_section .wrapper {
	/*background-color: white;
	padding: 0 15px;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;*/
}
/* Maintenance mode warning. */
.notice {
	font-weight: bold;
	color: #a80000;
}
#search_form .button_submit {
	font-variant: small-caps;
	color: #333;
}
#search_form select {
	border-right: none;
	opacity: 0.8;
}
#search_form select:focus {
	border-right: none;
	opacity: 1;
}

#mlsearch_options {
	background-color: white;
}

/* Main forum area. */
/* Box-shadow only on this one. */
#wrapper {
	background: #f3f3f3;
	border: 1px solid #ccc;
	border-top: none;
}

#debug_logging a, #debug_logging strong {
	color: yellow;
}
#debug_logging {
	color: #bbb;
	background: #222;
	margin: 0 auto;
	max-width: 90em;
	width: 90%;
}
#debug_logging_wrapper {
	background: #222;
}
#footer_section {
	background-color: #3f4b59;
	border-top: 0px solid #444;
	/*text-align: center;*/
	color: #ccc;
}
#footer_section a {
	color: #fff;
}
#footer_section .rssfeeds {
	border-radius: 0em;
	text-shadow: 1px 1px 0 #000;
}

#footer_section .copiright-right {
	display:inline-block;
	width:49%;
	text-align: right;
}

#footer_section .copiright-left {
	display:inline-block;
	width:49%;
	text-align: left;
}

#footer_section .footer-menu-title {
	color: #FFF;
	font-size: 16px;
	font-weight: 600;
	line-height: 16px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

#footer_section .social-links a i {
	height: 20px;
	width: 28px;
	background: rgba(124, 138, 154, 0.1);
	border-radius: 52px;
	text-align: center;
	padding-top: 2px;
	font-size: 16px;
	color: #FFF;
	transition: .5s ease-in-out;
}

/*	$MENUS		*/
/* ------------------------------------------------------- */
/* Level 1 Menu bar: link or button. General styling. */
.linklevel1, .linklevel1:link, .linklevel1:visited {
	border-radius: 0px;
	border: 1px solid #afafaf;
	border-top: 1px solid #cfcfcf;
	border-left: 1px solid #bfbfbf;
	background: #f4f4f4;
	background-image: linear-gradient(to bottom, #efefef, #e4e4e4);
	box-shadow: 1px 1px 2px #e5e5e5;
	color: #666;
	font-size: 0.929em;
}
.quickbuttons .listlevel1 {
	font-size: 0.929em;
}

/* Level 1 button hover and focus effects. */
.linklevel1:hover, .listlevel1:hover .linklevel1,
.linklevel2:hover, .listlevel2:hover .linklevel2,
.linklevel3:hover, .listlevel3:hover .linklevel3,
#menu_sidebar .linklevel1:hover, #menu_sidebar .listlevel1:hover .linklevel1,
#menu_current_area>strong>.linklevel1 {
	border: 1px solid #ccc;
	border-top: 1px solid #afafaf;
	border-left: 1px solid #afafaf;
	background: #5d5c5a;
	box-shadow: 0px 0px 0px rgba(0,0,0,0.07) inset;
	color: #2f3030;
	text-decoration: none;
}
.listlevel1.subsections {
	top: -1px;
}
.poster li.poster_online:hover .linklevel1 {
	border: 1px solid #ccc;
	border-top: 1px solid #afafaf;
	border-left: 1px solid #afafaf;
	background: #f0f0f0;
	box-shadow: 2px 1px 1px rgba(0,0,0,0.07) inset;
	color: #555;
}
.poster li.poster_online .nolink {
	border: 1px solid #afafaf;
	border-top: 1px solid #cfcfcf;
	border-left: 1px solid #bfbfbf;
	background: #f4f4f4;
	background-image: linear-gradient(to bottom, #fff, #e4e4e4);
	box-shadow: 1px 1px 2px #e5e5e5;
	color: #7bb128;
	display: block;
	line-height: 2em;
	margin: 3px 1.5em;
	position: relative;
}
.poster li.poster_online .nolink img {
	vertical-align: middle;
}
.poster li.subsections.listlevel1:hover .linklevel1 {
	background: transparent;
	border: 1px solid transparent;
	box-shadow: none;
}
.poster .poster_avatar .linklevel1 {
	display: inline-block;
}
.poster .listlevel1:hover .linklevel1 {
	border: 1px solid transparent;
	background-color: transparent;
	box-shadow: none;
}
.poster .listlevel2:hover .linklevel2 {
	color: #008299;
	border: none;
	box-shadow: none;
}
.poster .listlevel1.subsections:hover:after {
	left: 40%;
}
.poster .subsections>a:after {
	font-family: "FontAwesome";
	font-size: 1.4em;
	content: "\f0d7";
	margin: 0 0 0 10px;
	color: #ccc;
}
.poster .linklevel2, .poster .linklevel2:hover {
	border: 1px solid transparent !important;
}
#main_menu .linklevel1, #main_menu .linklevel1:link, #main_menu .linklevel1:visited,
.poster li.listlevel1, .poster li.listlevel1 a, .poster li.listlevel1 a:hover {
	border-radius: 0;
	border: 1px solid transparent;
	background-color: transparent;
	background-image: none;
	box-shadow: none;
}
/* Common button styling. */
/* It is being replaced with three classes: */
/*    .button_submit is not floated */
/*    .right_submit is right floated */
/*    .left_submit is left floated */
/* The button_reset class may need attention too. */
.button_submit, .right_submit, .left_submit, .button_reset,
/* Anchors styled to look like buttons. */
/* These have standard body text size. Can be chained with smalltext class. */
.linkbutton:link, .linkbutton_right:link, .linkbutton_left:link,
.linkbutton:visited, .linkbutton_right:visited, .linkbutton_left:visited {
	border-radius: 0px;
	border: 1px solid #afafaf;
	border-top: 1px solid #cfcfcf;
	border-left: 1px solid #bfbfbf;
	background: #f4f4f4;
	background-image: linear-gradient(to bottom, #fff, #e4e4e4);
	color: #555;
	box-shadow: 1px 1px 2px #e5e5e5;
}

/* Hover effects. */
.button_submit:hover, .right_submit:hover, .left_submit:hover,
.button_reset:hover,
.linkbutton:hover, .linkbutton_right:hover, .linkbutton_left:hover {
	border: 1px solid #ccc;
	border-top: 1px solid #afafaf;
	border-left: 1px solid #afafaf;
	background: #f0f0f0;
	box-shadow: 2px 1px 1px rgba(0,0,0,0.07) inset;
	color: #555;
	text-decoration: none;
}

/* Level 1 Menu bar: link or button. */
/* If there will be a border on hover, have a border here. */
/* A default transparent border stops links jumping on hover. */
#main_menu .linklevel1, .admin_menu .linklevel1, #adm_submenus .linklevel1 {
	border: 1px solid transparent;
	color: #eee;
}
#menu_nav {
	background: #3f4b59;
	position: fixed;
	top: 0;
	z-index: 99;
	width: 100%;
	color: #eee;
	/*line-height: 30px;*/
	/*min-height: 70px;*/
	height:60px;
	padding: 0;
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
}
#main_menu {
	background: transparent !important;
	border: none !important;
	padding: 18px 0px 0px 20px !important;
}
/* Override link colour for admin/profile/etc menus. */
.admin_menu .linklevel1, #adm_submenus .linklevel1 {
	color: black;
}

/* For primary admin/profile/etc drop menus. */
.admin_menu .linklevel1:hover, .admin_menu .linklevel1:focus,

/* For secondary admin/profile/etc menus. */
#adm_submenus .linklevel1:hover, #adm_submenus .linklevel1:focus {
	color: #fff;
	text-decoration: none;
}

/* Main menu Level 1 active button and hover need a different border. */
#main_menu .active, #main_menu .linklevel1:hover, #main_menu .listlevel1:hover .linklevel1, #main_menu .linklevel1:focus {

}

/* Level 1 active buttons for primary admin/profile/etc drop menus... */
.admin_menu .active,
/* ......and for secondary admin/profile/etc menu strip. */
#adm_submenus .active {
	border: 1px solid #aaa;
	background: #7bb128;
	color: white;
}

/* Hover effects for those buttons. */
.admin_menu .active:hover, .admin_menu .listlevel1:hover .active, #adm_submenus .active:hover {
	border: 1px solid #aaa;
	background: #43a8da;
	color: white;
}

/* Level 1 active buttons get a bit more weight. */
a.active {
	color: orange;
}

/* Top level subsection indicators. */
/* Level 1 active buttons. */
.pm_indicator {
	background: #f3b200;
	color: #fff;
	font-weight: bold;
	box-shadow: 1px 1px 2px #444;
	border-radius: 4px;
	padding: 0 5px;
	position: relative;
	top: -5px;
	left: -1px;
}
.likes_indicator {
	position: absolute;
	top: -1em;
	right: -0.5em;
	background: #f3b200;
	color: #fff;
	padding: 0 0.6em;
	border-radius: 4px;
	box-shadow: 1px 1px 1px #444;
	font-weight: bold;
	font-size: 0.786em;
	line-height: 1.4em;
}

/* Levels 2 and 3: drop menu wrapper. */
.menulevel2, .menulevel3 {
	border: 1px solid grey;
	background: white;
	box-shadow: 1px 2px 4px #ccc;
	border-radius: 0px;
}

/* Levels 2 and 3 drop menus: link or button. */
.linklevel2, .linklevel3 {
	border: 1px solid transparent;
	color: black;
	/* Applying a default transparent border stops links jumping on hover. */
}

/* Admin menu icons. */
.linklevel2>img {
	margin: 0 0 0 -4px;
	vertical-align: middle;
}

/* Levels 2 and 3: hover effects. */
.listlevel2:hover .linklevel2, /* < highlighted with cursor over level 3. */
.linklevel2:hover, .linklevel2:focus, .linklevel2.sfhover:focus,
.linklevel3:hover, .linklevel3:focus, .linklevel3.sfhover:focus {
	background: #5d5c5a;
	color: #fff;
	text-decoration: none;
}

/* Level 2: subsection indicators. */
.listlevel2.subsections .linklevel2:after {
	position: absolute;
	font-family: "FontAwesome";
	right: 6px;
	color: #ccc;
	content: "\f0da";
	font-size: 1.286em;
}

/* Levels 2 and 3: highlighting of current section */
.linklevel2.chosen, .linklevel3.chosen {
	font-weight: bold;
}

/* Styles for sidebar menus. */
/* Same styling for Level 1 and Level 2. */
#menu_sidebar .linklevel1, #menu_sidebar .linklevel2 {
	border: 1px solid transparent;
	color: black;
}

#menu_sidebar .linklevel1:hover, #menu_sidebar .linklevel1:focus, #menu_current_area .linklevel1,
#menu_sidebar .linklevel2:hover, #menu_sidebar .linklevel2:focus {
	border: 1px solid darkgray;
	background: gainsboro;
	color: black;
	text-decoration: none;
}

#menu_current_area .linklevel1 {
	font-weight: bold;
}

/* Level 1: subsection indicators. */
#menu_sidebar .listlevel1.subsections .linklevel1:after {
	position: absolute;
	right: 6px;
	font-family: "FontAwesome";
	content: "\f0da";
}
/*	$PAGELINKS	*/
/* ------------------------------------------------------- */
.selectbox, .pagelinks {
	/*color: #555;*/
}
.pagelinks .navPages {
	/*color: #555;*/
	margin: 0 2px;
}
.pagelinks .navPages:hover, .pagelinks .current_page {
	/*background: #7bb128;
	color: white;*/
	text-decoration: none;
}
.pagelinks .navPages, .pagelinks .current_page {
	border-radius: 8px;
}

/* our buddies &laquo; &raquo; */
.small_pagelinks:before {
	content: '\00AB';
	float: left;
	font-size: 1.286em;
	line-height: 1.3em;
	color: #999;
}
.small_pagelinks:after {
	content: '\00BB';
	float: left;
	font-size: 1.286em;
	line-height: 1.3em;
	color: #999;
}

/* Globally accessible top/bottom links. */
#gotop, #gobottom {
	border: 1px solid #222;
	border-bottom: none;
	border-radius: 0 0px 0 0;
	background: #111;
	color: #eee;
	opacity: 0.2;
}
#gobottom {
	border-top: none;
	border-radius: 0 0 0px 0;
}
#gotop:hover, #gobottom:hover {
	color: #444;
	text-decoration: none;
	opacity: 1;
}
/*End sidebar flyout coding. */

/*	$MAIN.		*/
/* ------------------------------------------------------- */
#wrapper {
	margin-top: 0;
}
#forumtitle {
	font-weight: bolder;
	font-size: 2.5em;
	padding: 0;
	margin: 0;
	text-shadow: 1px 1px 2px #fff;
}
#forumtitle>a {
	color: #43a8da;
}

/* News section. */
#news {
	font-size: 0.929em;
	background-color: #f9f9f9;
	padding: 8px;
}
#news>h2 {
	color: #7bb128;
	font-size: 1.5em;
	line-height: 1.2em;
	font-weight: bold;
}
#news_line, #elkFadeScroller {
	color: #666666;
	min-height: 60px;
	height: 60px;
	padding: 3px;
	overflow: auto;
	resize: vertical;
}
#news_line .bbc_link, #elkFadeScroller .bbc_link{
	resize: none;
}

.navigate_section {
	padding-left: 15px;
	border: 1px solid #eee;
	margin: 4px 0 0 0;
}
.linktree:before, .linktree:after, .linktree_last:before, .linktree_last:after {
	border-width: 1.077em 0 1.077em 1.077em;
	margin-top: -1.077em;
}
.linktree, .linktree_last {
	padding: 0 0.5em 0 1em;
}
.linktree:after {
	border-left: 0.7em solid #eee;
	margin-right: 4px;
}
.board_name>a {
	color: #008299;
	font-weight: bold;
	font-size: 95%;
}
.board_row, .childboard_row {
	border-bottom: 1px solid #eee;
}
.topic_name h4 a {
	color: #43a8da;
}
.topic_listing .warningbox {
	margin-bottom: 6px;
}
.qaction_row {
	background: #fff;
}
.approvetopic_row, .approve_row {
	background: #fff5cd;
}
.sticky_row, .locked_row.sticky_row {
	background: #f0f0ff;
}
.locked_row {
	background: #f7f7f7;
}
#topic_icons {
	border: 1px solid #ddd;
	border-radius: 0px;
}
.modified {
	color: #888;
	font-size: 0.714em;
}
.views_text {
	display: none;
}

/*	$BOARDICONS	*/
/* ------------------------------------------------------- */
.board_icon {
	display: block;
	float: left;
	width: 48px;
	height: 48px;
}
.board_key:before {
	display: block;
	float: left;
	height: 24px;
	width: 26px;
	content: "";
}
.category_boards .board_icon, .board_key:before {
	background-repeat: no-repeat;
	background-image: url(../../images/_besocial/board_icons.png);
}
.on_board {
	background-position: 0 0;
}
.on2_board {
	background-position: -72px 0;
}
.off_board {
	background-position: -144px 0;
}
.redirect_board {
	background-position: -216px 0;
}
.new_some_board:before {
	background-position: -300px -14px;
}
.new_none_board:before {
	background-position: -372px -14px;
}
.new_redirect_board:before {
	background-position: -444px -14px;
}
.topic_listing li {
	border-bottom: 1px solid #eee;
	border-top: 1px solid #eee;
}
.topic_listing li.sticky_row {
	border-bottom: 1px solid #fff;
}
.post_wrapper {
	border: 1px solid #eaeaea;
	border-radius: 0px;
}
/* We need an offset for some of our anchors due to the fixed top navigation */
.post_anchor, .pm_anchor, #new {
	display: block;
	margin-top: -45px;
	padding-top: 45px;
}
.windowbg {
	background-color: #f6f6f6;
}
.windowbg2 {
	background-color: #fcfcfc;
}
.approvebg {
	background-color: #fff5cd;
}
.board_stats {
	text-align: left;
	padding: 1px 6px 1px 0;
	float: left;
}
.small_pagelinks li {
	border: none;
}
#expanded_pages_container {
	background: #fff;
	border-radius: 2px;
	border: 1px solid #eee;
}

#pages_scroll_left, #pages_scroll_right {
	background-color: #fff;
}

#sort_by {
	border: 1px solid #eee;
	border-bottom: none;
	border-radius: 5px 5px 0 0;
}
#sort_by.topic_sorting_recent {
	border: 1px solid #d1d1d1;
	border-bottom: none;
}

/*	$TOPICS		*/
/* ------------------------------------------------------- */
/* The display template (topic view).

/* Poll results */
#poll_options .options .statsbar .bar {
	border-radius: 4px;
}
#poll_options .options .percentage {
	background: #fff;
	border-radius: 4px;
}

/*	$EDITOR		*/
/* ------------------------------------------------------- */

.drop_area {
	-webkit-font-smoothing: antialiased;
	color: #43a8da;;
	background-color: #eee;
	border: 1px dashed #ccc;
	border-radius: 5px;
}
.statusbar {
	border-top: 1px solid #a9ccd1;
	border-bottom: 1px solid #A9ccd1;
	background: #eee;
}

.progressBar {
	border: 1px solid #ddd;
}

.progressBar div {
	color: #fff;
	background-color: #43a8da;
}

.abort, .remove {
	background-color: #a8352f;
	border-radius: 5px;
	color: #fff;
	cursor: pointer;
}
.drop_attachments_error {
	color: #ff0000;
}

/*	$BOXES	*/
/* More little boxes on a hillside. */
.warningbox {
	padding: 6px 12px;
	border: 1px solid #ffd324;
	border-left-width: 5px;
	background: #fff6ca;
}
.successbox {
	padding: 6px 12px;
	border: 1px solid #9ece9e;
	border-left-width: 5px;
	background: #e8f5df;
}
.infobox {
	padding: 6px 12px;
	border: 1px solid #3a87ad;
	border-left-width: 5px;
	background: #d9edf7;
}
.errorbox {
	padding: 6px 12px;
	border: 1px solid #ce9e9e;
	border-left-width: 5px;
	background: #f5dfdf;
}

/*	$PROGRESS	*/
/* ------------------------------------------------------- */
/* Styles for the progress bar */
.progress_bar {
	border: 1px solid #999;
	border-radius: 5px;
	background: white;
	box-shadow: inset 0 1px 1px rgba(0,0,0,0.05);
}
.progress_bar .full_bar {
	border-radius: 3px;
	color: black;
}
.progress_bar .green_percent {
	background-color: #7bb128;
}
.progress_bar .blue_percent {
	background-color: #43a8da;
}

/*	$TOPICS		*/
/* ------------------------------------------------------- */

/* All the signatures used in the forum. */
.signature, .attachments, .custom_fields_above_signature {
	border-top: 1px solid #e1e1e1;
}

.signature {
	opacity: 0.9;
}

/*	$PROFILE		*/
/* ------------------------------------------------------- */
#warndiv .ui-widget-header {
	background: transparent;
}
#warndiv .watched .ui-widget-header {
	background: green;
}
#warndiv .moderated .ui-widget-header {
	background: orange;
}
#warndiv .muted .ui-widget-header {
	background: red;
}

/* Profile colors */
.activity_stats li span {
	border: solid #555;
	border-width: 1px 1px 1px 1px;
	border-right: none;
	border-left: none;
	background: #eee;
}
.activity_stats li .bar {
	border: 1px solid #ccc;
	border-bottom: none;
	background: #fff;
}
.activity_stats li .bar div {
	background: #43a8da;
}

/*	$HELP		*/
/* ------------------------------------------------------- */

#helpmain {
	border: 1px solid #ccc;
	border-radius: 7px;
	box-shadow: 0 -2px 2px rgba(0,0,0,0.1);
}

a.help .icon {
	padding: 0 4px 2px 0;
	vertical-align: middle;
}

/* Styles for the tooltips. */
.tooltip {
	border: 1px solid #aaa;
	border-radius: 4px;
	background: #fff;
	box-shadow: 3px 3px 3px rgba(0,0,0,0.3);
}
/* The darkened background for help pop-ups. */
.popup_container {
	/* Flat colour fallback will be bad (visually), ie8 only though. */
	background: rgb(0,0,0);
	background: rgba(0,0,0,0.4);
}
/* The actual pop-up wrapper. */
.popup_window {
	border: 1px solid #777;
	border-radius: 7px 7px 3px 3px;
	background-color: #fafafa;
	box-shadow: 0 4px 6px rgba(0,0,0,0.6);
}
/* The text content, hopefully helpful. */
.popup_content {
	border: 1px solid #bbb;
	border-bottom: 1px solid #ccc;
	border-radius: 6px 6px 2px 2px;
	background: #f5f5f5;
	box-shadow: 0 -2px 3px rgba(0,0,0,0.15);
}

/* $STATISTICS	*/
/* ------------------------------------------------------- */
.statistics .category_header {
	background: none;
	border: none;
	border-bottom: 2px solid #ccc;
	text-shadow: none;
}
.statistics .flow_hidden, #forum_history .flow_hidden {
	border: 1px solid #ddd;
	background: #fefefe;
}
.stats.floatleft {
	border-right: 1px solid #ccc;
}
#top_row .stats dd, .statsbar {
	border: 1px solid #eee;
	background: #fff;
}
/* Methinks topic links, etc need a little more oomph next to the orange bars. */
#top_row .stats dd {
	border: 1px solid transparent;
	background: none;
}
.statsbar {
	border-radius: 4px;
}
.statsbar .bar {
	background: #43a8da;
	border-radius: 4px 0 0 4px;
}
/* Absolute positioning stops these breaking the bars on narrow screens. */
.statsbar .righttext {
	background: #fff;
}
/* Styles for the $TABS	*/
/* We can't control what jqueryui pollutes the DOM with, so deal with it */
/* Styles for the profile summary tabs, or any jquery ui tabs */
/* ---------------------------------------------------------- */
.ui-tabs .ui-tabs-panel {
	padding-top: 0;
}
.ui-tabs-panel {
	border-top: 8px solid #f6f6f6;
}
.ui-tabs .ui-tabs-nav li {
	border-radius: 0px 0px 0 0;
	border: 2px solid #f0f0f0;
	border-bottom: none;
	color: #fff;
	box-shadow: 2px 0 0 rgba(0,0,0,0.3);
	margin-left: 2px;
}
.ui-tabs .ui-tabs-nav .ui-state-active a, .ui-tabs .ui-tabs-nav .ui-state-active {
	font-weight: normal;
}
.ui-tabs .ui-tabs-nav li a {
	background: #f0f0f0;
	border-bottom-color: #ccc;
	outline: none;
	border-radius: 0px 0px 0 0;
}

.ui-tabs .ui-tabs-nav .ui-state-default a {
	background: #fff;
	color: #333;
}
.ui-tabs .ui-tabs-nav .ui-state-active a, .ui-tabs .ui-tabs-nav .ui-state-active {
	background: #f6f6f6;
	color: #333;
	border-radius: 0px 0px 0 0;
}
.ui-tabs .ui-state-hover {
	background: #f0f0f0;
	color: #555;
	text-decoration: none;
}

/*floating error box*/
/* currently used by like funcationality*/
.floating_error {
	background: rgba(255, 255, 255, 1);
	font-size: 15px;
	color: #404040;
	border-radius: 10px;
	border: solid 1px #E4E4E4;
}

.floating_error .error_heading {
	font-weight: bold;
}

.floating_error .error_msg {
	color: #3D3C3C;
}

.floating_error .error_btn {
	border-top: solid 1px #D6D6D6;
	color: #157DFB;
	font-size: 16px;
	font-weight: bold;
}

.floating_error .error_btn:hover {
	cursor: pointer;
}

/*	$MEMBERLIST		*/
/* ------------------------------------------------------- */

.mlist .mlist_header div {
	border-top: none;
}
.mlist li div, .whos_online dd:nth-child(odd) div {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	border-top: 1px solid #ccc;
}
.mlist li.alternate_row div, .whos_online dd:nth-child(even) div {
	background-color: #fafafa;
	border-bottom: 1px solid #ccc;
	border-top: 1px solid #ccc;
}
.mlist li div:first-child {
	border-left: 1px solid #ccc;
}
.mlist li div:last-child {
	border-right: 1px solid #ccc;
}

.letter_row h3 {
	border: 1px solid #ccc;
	border-radius: 6px 6px 0 0;
	border-bottom: none;
}
/*	$MEDIA		*/
/* Experimental media queries.
/* ------------------------------------------------------- */
/* NOTE:
/* When setting break points for media queries, don't set them in pixels.
/* Use em instead.
/* Why? Because the point of re-stacking/dropping content is to fit it all
/* in the available space. This is dependent not just on width in pixels,
/* but also on the user-selected text size that is set in the browser.
/*
/* If, for whatever reason (eyesight, pixel pitch, workstation arrangement, etc)
/* a user requires text 50% larger than theme default, then their screen is
/* effectively a lot smaller than its nominal resolution would indicate.
/* If the break points are set in em, suddenly the media queries become equally
/* responsive for all users, without any extra code being required.
/*
/* Testing em break points is just as easy as testing pixels,
/* and it will make more people happier. This is cool. :)
/*
/* Of course, having comments to map em to px for each query is a good idea too.

/* Smartphones (portrait & landscape) drop the stats (views/replys) and last post from the screen */

/* This one does 800 screens at default font size. */
@media screen and (max-width: 64em) {
	.board_lastpost {
		float: none;
	}
}

/* This one does 800 screens at default font size. */
@media screen and (min-width: 50em) {
}
#menu_nav .listlevel1>a:before {
	font-family: "FontAwesome";
	margin: 0 5px 0 0;
	font-size: 1.2em;
	content: "\f0d7";
	color: #43a8da;
}
@media screen and (max-width: 50em) {
	body {
		margin-top: 20px;
	}
	#menu_sidebar {
		border: 1px solid #aaa;
		border-radius: 4px;
		background: #fff;
		box-shadow: 3px 3px 3px rgba(0,0,0,0.3);
	}
	[data-icon]:before {
		font-family: 'FontAwesome';
		border: 3px solid white;
		padding: 3px;
		padding-bottom: 0;
		margin: 2px;
		height: 1.1em;
		line-height: 1.1em;
		width: 1.1em;
		text-align: center;
		display: inline-block;
		border-radius: 4px;
		font-size: 2.071em;
		color: #43a8da;
		content: attr(data-icon);
	}
	.indicator[data-icon]:before {
		color: orange;
	}
	.statistics .flow_hidden, .statistics .floatleft {
		border: none;
	}
	.statistics .category_header {
		border: none;
		border-bottom: 1px solid #ccc;
		border-radius: 0;
		background-color: #f6f6f6;
		margin-bottom: 5px !important;
	}
	.mlist li div.posts {
		border-right: 1px solid #ccc;
	}
}
/* This one does up to 540 screens. */
@media screen and (max-width: 33.750em) {
	#gotop, #gobottom {
		border-radius: 0 0 0;
		border-top: 0;
	}
	#gotop {
		border-radius: 0 8px 0 0;
	}
	.board_latest {
		border-left: 0;
	}
	.board_row, .childboard_row {
		border: 1px solid #ccc;
		box-shadow: 1px 1px 3px #ccc;
		background-color: #f9f9f9;
	}
	.board_row {
		margin-top: 6px;
	}
	.childboard_row {
		border-top: none;
	}
	.board_icon {
		position: relative;
		top: -4px;
	}
	.board_lastpost {
		border-top: 1px solid #eee;
	}
	#top_section .wrapper {
		padding: 0;
	}
	dd.statsbar {
		padding: 0 !important;
	}
	.frame {
		border-radius: 0;
	}
	#forumtitle {
		margin-left: 10px;
	}
	.topic_listing>li {
		border: 1px solid #bfbfbf;
		box-shadow: 3px 3px 6px #e5e5e5;
		border-radius: 3px;
		margin-bottom: 8px;
	}
	.new_posts {
		font-size: 0.714em;
		position: relative;
		top: -3px;
	}
	.topic_name {
		border-bottom: 1px solid #ddd;
	}
	.topic_listing h4 {
		margin-bottom: 3px;
		max-width: 20em;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden;
	}
	.topic_listing li.sticky_row {
		border-bottom: 1px solid #ccc;
	}
	.basic_row {
		background-color: #fafafa;
	}
	.topic_starter {
		color: #777;
	}
	.topic_sorting_row {
		border: none !important;
	}
	.topic_name h4 {
		font-size: 1.429em;
		padding-bottom: 2px;
	}
	.topic_latest:after {
		content: ' ';
		white-space: pre;
	}
	.topic_latest.relative {
		min-width: 15em;
	}
	.poster:after, .posterarea:before {
		border-bottom: 1px solid #bfbfbf;
	}
	.poster .subsections>a:after {
		content: "";
	}
	.board_icon {
		width: 20px;
		height: 20px;
	}
	.on_board, .on2_board {
		background-position: -300px -14px;
	}
	.off_board {
		background-position: -372px -14px;
	}
	.redirect_board {
		background-position: -444px -14px;
	 }
	.forumposts .windowbg2 {
		background-color: #fafafa;
	}
	.forumposts .windowbg, .forumposts .windowbg2 {
		border: 1px solid #bfbfbf;
		box-shadow: 3px 3px 6px #e5e5e5;
		border-radius: 3px;
		margin-top: 8px;
	}
	.forum_category, .forumposts, .content_category {
		background: #fff;
		border: none;
	}
	.listlevel2.subsections .linklevel2::after {
		content: '';
	}
	.stats.floatleft {
		border: none;
	}
	.subsections:hover .linklevel1:after {
		content: "";
	}
	#top_section {
		margin: 0;
		width: 100%;
	}
	#top_section .wrapper {
		width: 100%;
	}
	#main_menu .linklevel1 {
		border-bottom: 1px solid #888;
	}
	.admin_menu li {
		float: left;
		display: block;
		width: 48%;
		box-sizing: border-box;
	}
	.listlevel1#button_profile .linklevel1 {
		min-width: 0.5em;
	}
	#search_form {
		padding: 0px 0;
		width: 100%;
		border-bottom: 0px solid #ccc;
		float: none;
	}
	#search_form .input_text {
		width: 14em;
	}
	#search_form * {
		float: none;
	}
	.whos_online dd div {
		border-bottom: none !important;
		border-top: none !important;
	}
	.whos_online dd:nth-child(even), .whos_online dd:nth-child(odd) {
		margin-top: 1px;
		border-top: 1px solid #ccc;
	}
	.whos_online dd:last-child {
		border-bottom: 1px solid #ccc;
	}
	.online_member {
		font-size: 1.6em;
	}
	.track_ip {
		float: right;
		font-size: 0.7em;
	}
	.track_ip:before {
		content: "";
	}
	.track_ip:after {
		content: "";
	}
}
@media screen and (max-width: 30em) {
	.mlist li .group {
		border-right: 1px solid #ccc;
	}
}
.splitcam_top_menu_btn {display:inline-block;position:relative;margin: 0 auto;padding:5px 15px;vertical-align:super;color:#fff !important;}