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

/* Normal, standard links. */
a:link, a:visited
{
	color: #346;
	text-decoration: none;
}
a:hover
{
	color: #0085CB;
	cursor: pointer;
}
.lastpost a
{
	color: #0085CB;
	text-shadow: 1px 1px 0 white;
}
.lastpost a:hover
{
	color: #346;
}	
.subject a
{
	color: #0085CB;
	text-shadow: 1px 1px 0 white;
}
.subject a:hover
{
	color: #346;
}
/* Links that open in a new window. */
a.new_win:link, a.new_win:visited
{
	color: #346;
	text-decoration: none;
}
a.new_win:hover
{
	text-decoration: underline;
}

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

/* Set a fontsize that will look the same in all browsers. */
body
{
	/*background: #f1eb7d url(../images/r16.jpg) top fixed no-repeat;
	font: 80%/130% "Verdana", "Arial", "Helvetica", sans-serif;
	margin: 0 auto;
	padding: 0px 0;*/
overflow-x: hidden; 
}

/* Help popups require a different styling of the body element. */
body#help_popup
{
	padding: 1em;
}

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

/* This division wraps the entire forum when a forum width is set. */
div#wrapper
{
	margin: 0 auto;
	min-width: 764px;
	max-width: 2300px;
}

/* 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: 14px Tahoma, Helvetica, sans-serif;
	border: 1px solid #c9c7c4;
	padding: 4px 3px;
}

/* Select elements look horrible with the extra padding, so leave them unpadded. */
select
{
	padding: 3px;
}

/* Add some padding to the options instead. */
select option
{
	padding: 0 10px 0 0;
}

/* The font size of textareas should be just a little bit larger. */
textarea
{
	font: 100%/130% Tahoma, Helvetica, sans-serif;
}

/* Buttons should be styled a bit differently, in order to make them look more button'ish. */

.button_submit:hover, .button_reset:hover,button:hover,input[type=button]:hover,input[type=submit]:hover
{
	text-decoration:none;
	/*color:#333;
	border-color:#aaa;
	background: rgb(255,255,255);  Old browsers 
	background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(221,221,221,1) 100%);  
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(221,221,221,1))); 
	background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(221,221,221,1) 100%);  
	background: -o-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(221,221,221,1) 100%);  
	background: -ms-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(221,221,221,1) 100%);  
	background: linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(221,221,221,1) 100%);  
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#dddddd',GradientType=0 );  
	z-index:3;*/
}
.button_submit:active, .button_reset:active,button:active,input[type=button]:active,input[type=submit]:active{
	background: rgb(221,221,221); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(221,221,221,1) 0%, rgba(255,255,255,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(221,221,221,1)), color-stop(100%,rgba(255,255,255,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(221,221,221,1) 0%,rgba(255,255,255,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(221,221,221,1) 0%,rgba(255,255,255,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(221,221,221,1) 0%,rgba(255,255,255,1) 100%); /* IE10+ */
	background: linear-gradient(top,  rgba(221,221,221,1) 0%,rgba(255,255,255,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dddddd', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */

}
.button_submit, .button_reset
{
	background-image: url(../images/button-sprite.png);
	background-position: 0 -1134px;
    border: 1px solid #D3D3D3;
    color: #555;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
	cursor: pointer;
	font: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 12px;
	font-weight: bold;
	padding: 5px 9px;
	border-radius: 3px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
	margin: 10px 5px 0px;
	display: inline-block;
}

/* All input elements that are checkboxes or radio buttons shouldn't have a border around them. */
input.input_check, input.input_radio
{
	border: none;
	background: none;
}
h3.catbg input.input_check
{
	margin: 9px 7px 0 7px;
}

/* Give disabled text input elements a different background color. */
input[disabled].input_text
{
	background-color: #eee;
}

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

/* 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 #c4c4c4;
	padding: 1em;
	margin: 0 0 0.5em 0;
}
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: bold;
}

em
{
	font-style: italic;
}
/* Alternative for u tag */
.underline
{
	text-decoration: underline;
}

/* Common classes to easy styling.
------------------------------------------------------- */

.floatright
{
	float: right;
}
.floatleft
{
	float: left;
}

.flow_auto
{
	overflow: auto;
}
.flow_hidden
{
	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). */
.smalltext, tr.smalltext th
{
	font-size: 12px;
	font-family: verdana, sans-serif;
}
.middletext
{
	font-size: 1em;
	line-height: 1em;
	font-family: verdana, sans-serif;
}
.normaltext
{
	font-size: 1em;
	line-height: 1.2em;
}
.largetext
{
	font-size: 1.4em;
}
.centertext
{
	margin: 0 auto;
	text-align: center;
	overflow: hidden;
}
.righttext
{
	margin-left: auto;
	margin-right: 0;
	text-align: right;
}
.lefttext
{
	margin-left: 0;
	margin-right: auto;
	text-align: left;
}
.double_height
{
	line-height: 2em;
}
/* some common padding styles */
.padding
{
	padding: 0.7em;
}
.main_section, .lower_padding
{
	padding-bottom: 0.5em;
}
/* a quick reset list class. */
ul.reset, ul.reset li
{
	font-size: 12px;
	padding: 0;
	margin: 0;
	list-style: none;
}

/* Some BBC related styles.
------------------------------------------------------- */
/* -----------------------------------------------
   C S S   M E S S A G E   B O X E S   v1.1
  
   Thanks for eBurhan
   http://www.eburhan.com/

   Thanks for famfamfam icons
   http://www.famfamfam.com/
   
   New version by SAFAD
   http://www.safadsoft.com/
-------------------------------------------------- */

.error_bbc, .warning_bbc, .okay_bbc, .info_bbc {
    margin-bottom: 1.5em;
    padding: 1em 1.5em 1em 5.5em;
    border-bottom: 2px solid #fff;
    border-top: 2px solid #fff;
    color: #444
}

.error_bbc    {background: #fbe3e4 url(../images/mBox/error.png) 2.2em center no-repeat; border-color: #e0011b}
.error_bbc a  {color: #d12f19}

.warning_bbc    {background: #fff6bf url(../images/mBox/warning.png) 2.2em center no-repeat; border-color: #ffd324}
.warning_bbc a  {color: #817134}

.okay_bbc   {background: #e9ffdd url(../images/mBox/okay.png) 2.2em center no-repeat; border-color: #72c868}
.okay_bbc a {color: #529214}

.info_bbc   {background: #e2ecee url(../images/mBox/info.png) 2.2em center no-repeat; border-color: #9ddae6}
.info_bbc a {color: #2d7ba2}


/* Lists */
.error_bbc ul, .warning_bbc ul, .okay_bbc ul, .info_bbc ul {
    list-style: none;
    margin: 1.3em 1.5em
}
.error_bbc ul li, .warning_bbc ul li, .okay_bbc ul li, .info_bbc ul li {
    padding-left: 1.3em
}
.error_bbc ul li  { background: url(../images/mBox/error-bullet.png)  0 0.55em no-repeat }
.warning_bbc ul li  { background: url(../images/mBox/warning-bullet.png)  0 0.55em no-repeat }
.okay_bbc ul li { background: url(../images/mBox/okay-bullet.png) 0 0.55em no-repeat }
.info_bbc ul li { background: url(../images/mBox/info-bullet.png) 0 0.55em no-repeat }
/* -----------------------------------------------
   C S S   M E S S A G E   B O X E S   v1.1
  
   Thanks for eBurhan
   http://www.eburhan.com/

   Thanks for famfamfam icons
   http://www.famfamfam.com/
   
   New version by SAFAD
   http://www.safadsoft.com/
-------------------------------------------------- */

.error_bbc, .warning_bbc, .okay_bbc, .info_bbc {
    margin-bottom: 1.5em;
    padding: 1em 1.5em 1em 5.5em;
    border-bottom: 2px solid #fff;
    border-top: 2px solid #fff;
    color: #444
}

.error_bbc    {background: #fbe3e4 url(../images/mBox/error.png) 2.2em center no-repeat; border-color: #e0011b}
.error_bbc a  {color: #d12f19}

.warning_bbc    {background: #fff6bf url(../images/mBox/warning.png) 2.2em center no-repeat; border-color: #ffd324}
.warning_bbc a  {color: #817134}

.okay_bbc   {background: #e9ffdd url(../images/mBox/okay.png) 2.2em center no-repeat; border-color: #72c868}
.okay_bbc a {color: #529214}

.info_bbc   {background: #e2ecee url(../images/mBox/info.png) 2.2em center no-repeat; border-color: #9ddae6}
.info_bbc a {color: #2d7ba2}


/* Lists */
.error_bbc ul, .warning_bbc ul, .okay_bbc ul, .info_bbc ul {
    list-style: none;
    margin: 1.3em 1.5em
}
.error_bbc ul li, .warning_bbc ul li, .okay_bbc ul li, .info_bbc ul li {
    padding-left: 1.3em
}
.error_bbc ul li  { background: url(../images/mBox/error-bullet.png)  0 0.55em no-repeat }
.warning_bbc ul li  { background: url(../images/mBox/warning-bullet.png)  0 0.55em no-repeat }
.okay_bbc ul li { background: url(../images/mBox/okay-bullet.png) 0 0.55em no-repeat }
.info_bbc ul li { background: url(../images/mBox/info-bullet.png) 0 0.55em no-repeat }/* A quote, perhaps from another post. */
blockquote.bbc_standard_quote, blockquote.bbc_alternate_quote
{
	font-size: x-small;
	color: #000;
	line-height: 1.4em;
	background: url(../images/theme/quote.png) 0.1em 0.1em no-repeat;
	border-top: 2px solid #99A;
	border-bottom: 2px solid #99A;
	padding: 1.1em 1.4em;
	margin: 0.1em 0 0.3em 0;
	overflow: auto;
}

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

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

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

code.bbc_code
 {
    background: url("http://damkwan.com/Themes/default/images/coded.gif") repeat fixed center center #66CCFF;
    border-color: #0099FF;
    border-style: none solid solid;
    border-width: 0 1px 1px;
    color: #0D3212;
    font-family: "courier new","times new roman",monospace;
    font-size: 90%;
    line-height: 1.3em;
    max-height: 24em;
    overflow: auto;
    padding: 3px;
    white-space: nowrap;
    width: 99%;
}

.quoteheader, .codeheader {
    background-color: #66CCFF;
    border-color: #0099FF;
    border-style: solid solid none;
    border-width: 1px 1px 0;
    color: #0D3212;
    font-size: x-small;
    font-style: normal;
    font-weight: 700;
    line-height: 2em;
    padding: 3px;
    text-decoration: none;
    width: 99%;
}
/* For links to change the code stuff... */
.codeoperation
{
	font-weight: normal;
}

/* Styling for BBC tags */
.bbc_link:link, .bbc_link:visited
{
	border-bottom: 1px dashed #A8B6CF;
}
.bbc_link:hover
{
	text-decoration: none;
	border-bottom: 1px solid #346;
}
.bbc_size
{
	line-height: 1.4em;
}
.bbc_color a
{
	color: inherit;
}
.bbc_img
{
	border: 0;
}
.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
{
	color: #222;
	font-family: arial, helvetica, sans-serif;
	font-size: 1.1em;
	font-weight: bold;
	background: #e3e9ef url(../images/theme/main_block.png) no-repeat -10px -380px;
}
.catbg, .catbg2, tr.catbg td, tr.catbg2 td, tr.catbg th, tr.catbg2 th
{
	color: #fff;
	font-family: arial, helvetica, sans-serif;
	font-size: 1.1em;
	font-weight: bold;
	background: #a7b9cd url(../images/theme/main_block.png) no-repeat -10px -280px;
}

/* 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: #222;
}
tr.catbg th a:link, tr.catbg th a:visited, tr.catbg2 td a:link, tr.catbg2 td a:visited
{
	color: #fff;
}
.catbg select
{
	height: 2em;
	font-size: 0.85em;
}

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

/* the page navigation area */
.pagesection
{
	font-size: 0.9em;
	padding: 0.2em;
	overflow: hidden;
	margin-bottom: 1px;
}
div.pagesection div.floatright input
{
	margin-top: 3px;
}

.pagelinks
{
	padding: 0.6em 0 0.4em 0;
}

/* Colors for background of posts requiring approval */
.approvebg
{
	color: #000;
	background-color: #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
{
	background: #e8d8cf;
}
.stickybg2
{
	background: #f2e3d9;
}
.stickybg2 a {
    color: #006600;
	text-shadow: 1px 1px 0 white;
	font-size: 14px;
}

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

/* Posts and personal messages displayed throughout the forum. */
.post, .personalmessage
{
	overflow: auto;
	line-height: 1.4em;
	padding: 0.1em 0;
}

/* All the signatures used in the forum.  If your forum users use Mozilla, Opera, or Safari, you might add max-height here ;). */
.signature, .attachments
{
	width: 98%;
	overflow: auto;
	clear: right;
	padding: 1em 0 3px 0;
	border-top: 1px solid #aaa;
	line-height: 1.4em;
	font-size: 0.85em;
}
.custom_fields_above_signature
{
	width: 98%;
	clear: right;
	padding: 1em 0 3px 0;
	border-top: 1px solid #aaa;
	line-height: 1.4em;
	font-size: 0.85em;
}

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

/* Messages that somehow need to attract the attention. */
.alert
{
	color: red;
}

/* Calendar colors for birthdays, events and holidays */
.birthday
{
	color: #920ac4;
}

.event
{
	color: #078907;
}

.holiday
{
	color: #000080;
}

/* Colors for warnings */
.warn_mute
{
	color: red;
}

.warn_moderate
{
	color: #ffa500;
}

.warn_watch, .success
{
	color: green;
}

a.moderation_link, a.moderation_link:visited
{
	color: red;
	font-weight: bold;
}

.openid_login
{
	background: white url(../images/openid.gif) no-repeat;
	padding-left: 18px;
}

/* a descriptive style */
.description, .description_board, .plainbox
{
	padding: 0.5em 1em;
	font-size: 0.9em;
	line-height: 1.4em;
	border: 1px solid #bbb;
	border-radius:4px;
	background: #f5f5f0;
	margin: 0.2em 1px 1em 1px;
}
.description_board
{
	margin: 1em 1px 10px 1px;
}

/* an informative style */
.information
{
	padding: 0.5em 1em;
	font-size: 0.9em;
	line-height: 1.3em;
	border: 1px solid #bbb;
	background: #f0f6f0;
	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.
------------------------------------------------------- */
h2.catbg, h2.catbg2,h3.catbg, h3.catbg2, h3.titlebg, h4.titlebg, h4.catbg
{
	overflow: hidden;
	height: 31px;
	line-height: 31px;
	font-size: 1.2em;
	font-weight: bold;
}
h2.catbg,h2.catbg a:link, h2.catbg a:visited,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: #350;
	text-shadow:0 1px #9c6;
	text-shadow:0 1px rgba(255,255,255,0.3);
}
h3.catbg2 a, h3.catbg2,h2.catbg2 a, h2.catbg2
{
	color: #feb;
}
h3.catbg a:hover, h4.catbg a:hover, .table_list tbody.header td a:hover
{
	color: #000;
	text-shadow:0 0 3px rgba(0,0,0,0.3);
	text-decoration: none;
}
h3.catbg2 a:hover
{
	color: #fff;
	text-decoration: none;
}
h3.titlebg a, h3.titlebg, h4.titlebg, h4.titlebg a
{
	color: #222;
}
h3.titlebg a:hover, h4.titlebg a:hover
{
	color: #53616f;
	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 , h2.catbg , h2.catbg2 , 
.table_list tbody.header td.catbg
{
	background: url(../images/theme/cat_bgs2.png) top repeat-x;
	padding-right: 1px;
}
h4.titlebg, h3.titlebg
{
	background: url(../images/theme/cat_bgs2.png) no-repeat 100% -200px;
	padding-right: 9px;
}
h4.titlebg img.icon
{
	float: left;
	margin: 7px 8px 0 0;
}
div.cat_bar
{
    background: url(../images/theme/cat_bgs2.png) top repeat-x;
	padding-left: 9px;
	height: 28px;
	overflow: hidden;
	margin-bottom: 1px;
	padding: 5px;
	border-left: 1px #ccc solid;
	border-right: 1px #ccc solid;
	border-top-right-radius: 4px;
	-moz-border-radius-topright: 4px;
	-webkit-border-top-right-radius: 4px;
	border-top-left-radius: 4px;
	-moz-border-radius-topleft: 4px;
	-webkit-border-top-left-radius: 4px;
	-moz-box-shadow: 0px 3px 3px #ccc;
	-webkit-box-shadow: 0px 3px 3px #ccc;
	box-shadow: 0px 3px 3px #ccc;
}
div.title_bar
{
	background: #e3e9ef url(../images/theme/main_block.png) no-repeat 0 -200px;
	padding-left: 9px;
	height: 31px;
	overflow: hidden;
	margin-bottom: 1px;
}

/* rounded bars needs a different background here */

div.roundframe div.cat_bar
{
	background: url(../images/theme/cat_bgs2.png) top repeat-x;
	margin-bottom: 0;
}
div.roundframe div.cat_bar h3.catbg
{
	background: url(../images/theme/cat_bgs2.png) top repeat-x;
}
div.title_barIC
{
	background: url("../images/theme/cat-bgs.png") repeat-x scroll center top #FAE9B5;
    border: 1px solid rgba(100, 100, 100, 0.15);
    border-radius: 4px;
    height: 31px;
    margin-bottom: 0;
    overflow: hidden;
    padding-left: 9px;
}
div.title_barIC h4.titlebg
{
    background: url("../images/theme/cat-bgs.png") repeat-x scroll center top rgba(0, 0, 0, 0);
}
div.title_barIC2
{
	background: url("../images/theme/cat-bgspink.png") repeat-x scroll center top #e267e3;
    border: 1px solid rgba(100, 100, 100, 0.15);
    border-radius: 4px;
    height: 31px;
    margin-bottom: 0;
    overflow: hidden;
    padding-left: 9px;
}
div.title_barIC2 h4.titlebg
{
    background: url("../images/theme/cat-bgspink.png") repeat-x scroll center top rgba(0, 0, 0, 0);
}
#upshrinkHeaderIC p.pminfo
{
	margin: 0;
	padding: 0.5em;
}
img#upshrink_ic, img#newsupshrink
{
	float: right;
	margin: 4px 5px 0 0;
}
table.table_list a.unreadlink, table.table_list a.collapse
{
	float: right;
}
table.table_list a.collapse
{
	margin: 4px 5px 0 10px;
	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;
	border-bottom: 1px solid #fff;
}
.table_grid tr.catbg th, .table_grid tr.titlebg th
{
	height: 28px;
	line-height: 28px;
}
tr.catbg th.first_th
{
	background: #a7b9cd url(../images/theme/main_block.png) no-repeat 0 -280px;
}
tr.catbg th.last_th
{
	background: #a7b9cd url(../images/theme/main_block.png) no-repeat 100% -280px;
}
tr.titlebg th.first_th
{
	background: #e3e9ef url(../images/theme/main_block.png) no-repeat 0 -380px;
}
tr.titlebg th.last_th
{
	background: #e3e9ef url(../images/theme/main_block.png) no-repeat 100% -380px;
}
.table_grid th.last_th input
{
	margin: 0 2px;
}
.table_grid th.lefttext
{
	padding: 0 0.7em;
}

/* a general table class */
table.table_grid
{
	border-collapse: collapse;
	margin-top: 0.1em;
}
table.table_grid td
{
	padding: 3px;
	border-bottom: 1px solid #fff;
	border-right: 1px solid #fff;
}

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

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

/* Common styles used to add corners to divisions.
------------------------------------------------------- */
.windowbg span.topslice
{
	display: block;
	padding-left: 20px;
	background: url(../images/theme/main_block2.png) 0 -30px no-repeat;
}
.windowbg span.topslice span
{
	display: block;
	background: url(../images/theme/main_block2.png) 100% -30px no-repeat;
	height: 11px;
}
.windowbg span.botslice
{
	display: block;
	padding-left: 20px;
	background: url(../images/theme/main_block2.png) 0 -40px no-repeat;
	font-size: 5px;
	line-height: 5px;
	margin-bottom: 0.5em;
}
.windowbg span.botslice span
{
	display: block;
	background: url(../images/theme/main_block2.png) 100% -40px no-repeat;
	height: 11px;
}

.windowbg2 span.topslice
{
	display: block;
	padding-left: 20px;
	background: url(../images/theme/main_block2.png) 0 -60px no-repeat;
}
.windowbg2 span.topslice span
{
	display: block;
	background: url(../images/theme/main_block2.png) 100% -60px no-repeat;
	height: 11px;
}
.windowbg2 span.botslice
{
	display: block;
	padding-left: 20px;
	background: url(../images/theme/main_block2.png) 0 -71px no-repeat;
	font-size: 5px;
	line-height: 5px;
	margin-bottom: 0.5em;
}
.windowbg2 span.botslice span
{
	display: block;
	background: url(../images/theme/main_block2.png) 100% -71px no-repeat;
	height: 11px;
}
.approvebg span.topslice
{
	display: block;
	padding-left: 20px;
	background: url(../images/theme/main_block.png) 0 0 no-repeat;
}
.approvebg span.topslice span
{
	display: block;
	background: url(../images/theme/main_block.png) 100% 0 no-repeat;
	height: 11px;
}
.approvebg span.botslice
{
	display: block;
	padding-left: 20px;
	background: url(../images/theme/main_block.png) 0 -11px no-repeat;
	margin-bottom: 0.2em;
}
.approvebg span.botslice span
{
	display: block;
	background: url(../images/theme/main_block.png) 100% -11px no-repeat;
	height: 11px;
}
.postbg
{
	border-left: 1px solid #7f7f7f;
	border-right: 1px solid #7f7f7f;
}

/* Used for sections that need somewhat larger corners.
----------------------------------------------------------- */
.roundframe
{
	padding: 0 10px;
	background: #f5f5f5;
	border-left: 1px solid #c5c5c5;
	border-right: 1px solid #c5c5c5;
}
.roundframe dl, .roundframe dt, .roundframe p
{
	margin: 0;
}
.roundframe p
{
	padding: 0.5em;
}
span.upperframe
{
	padding: 0;
	display: block;
	background: url(../images/theme/main_block2.png) 0 -90px no-repeat;
	padding-left: 20px;
}
span.upperframe span
{
	padding: 0;
	height: 12px;
	display: block;
	background: url(../images/theme/main_block2.png) 100% -90px no-repeat;
}
span.lowerframe
{
	padding: 0;
	display: block;
	background: url(../images/theme/main_block2.png) 0 -102px no-repeat;
	padding-left: 20px;
}
span.lowerframe span
{
	padding: 0;
	height: 12px;
	display: block;
	background: url(../images/theme/main_block2.png) 100% -102px no-repeat;
}

/* The main content area.
------------------------------------------------------- */
.content
{
	padding: 0.5em 0em;
	margin: 0;
	border: none;
}
.content p
{
	margin: 0 0 0.5em 0;
}

/* Styles used by the auto suggest control.
------------------------------------------------------- */
.auto_suggest_div
{
	border: 1px solid #000;
	position: absolute;
	visibility: hidden;
}
.auto_suggest_item
{
	background-color: #ddd;
}
.auto_suggest_item_hover
{
	background-color: #888;
	cursor: pointer;
	color: #eee;
}

/* Styles for the standard dropdown menus.
------------------------------------------------------- */
#main_menu { padding: 10px; float: left; margin: 0; } .dropmenu, .dropmenu ul { list-style: none; line-height: 1em; padding: 0; margin: 0; } .dropmenu { padding: 0 10px; } .dropmenu a { display: block; color: #333; text-decoration: none; } .dropmenu a span { display: block; padding: 0 5px; font-size: 11px; margin: 0 7px 0 0; }  .dropmenu li a.firstlevel { margin-right: 5px; } .dropmenu li a.firstlevel span.firstlevel { display: block; position: relative; left: -10px; padding: 0 0 0 20px; height: 29px; line-height: 29px; white-space: pre; font-size: 12px; } .dropmenu li { float: left; padding: 0; margin: 0; position: relative; } .dropmenu li ul { z-index: 90; display: none; position: absolute; width: 19.2em; font-weight: normal; border-bottom: 1px solid #999; background: url(/Themes/default/images/theme/menu_gfx.png) 0 -130px no-repeat; padding: 5px 0 0 0; } .dropmenu li li { width: 19em; margin: 0; border-left: 1px solid #999; border-right: 1px solid #999; } .dropmenu li li a span { display: block; padding: 8px; } .dropmenu li ul ul { margin: -1.8em 0 0 13em; }  .dropmenu li a.active { background: url(/Themes/default/images/theme/menu_gfx.png) no-repeat 100% 0; color: #a72551; } .dropmenu li a.active span.firstlevel { background: url(/Themes/default/images/theme/menu_gfx.png) no-repeat 0 0; }  .dropmenu li a.firstlevel:hover, .dropmenu li:hover a.firstlevel { background: url(/Themes/default/images/theme/menu_gfx.png) no-repeat 100% -30px; color: #a72551; cursor: pointer; text-decoration: none; } .dropmenu li a.firstlevel:hover span.firstlevel, .dropmenu li:hover a.firstlevel span.firstlevel { background: url(/Themes/default/images/theme/menu_gfx.png) no-repeat 0 -30px; }  .dropmenu li li a:hover, .dropmenu li li:hover>a { background: #d4dbe4; color: #000; text-decoration: none; } .dropmenu li:hover ul ul, .dropmenu li:hover ul ul ul { top: -999em; } .dropmenu li li:hover ul { top: auto; } .dropmenu li:hover ul { display: block; } .dropmenu li li.additional_items { background-color: #fff; }  #menu_toggle { float: right; margin-right: 10px; padding-top: 3px; } #menu_toggle span { position: relative; right: 5000px; }  


/* Styles for the standard button lists.
------------------------------------------------------- */
.buttonlist{ -moz-border-radius:15px; -webkit-border-radius:15px; border-radius:15px; -moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.0); -webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.0); box-shadow:0 1px 3px rgba(0, 0, 0, 0.0); } .buttonlist ul { z-index: 100; padding: 0; margin: 0; } .buttonlist ul li { margin: 0; padding: 0; list-style: none; float: left; } 

.buttonlist ul li a {
display: block;
color: #a72551;
background: url(/Themes/default/images/theme/button-list.png) repeat-x 0 0px;
cursor: pointer;
border: 1px solid rgba(255, 255, 255, 0);
text-shadow:0 1px rgba(255,255,255,0.5);
margin-left:-17px;
position:relative;
z-index:1;
-moz-user-select:none;
-webkit-user-select:none;
user-select:none;
-webkit-border-top-left-radius: 20px;
-webkit-border-bottom-right-radius: 20px;
-moz-border-radius-topleft: 20px;
-moz-border-radius-bottomright: 20px;
border-top-left-radius: 20px;
border-bottom-right-radius: 20px;}  


.buttonlist ul li.first a, .buttonlist ul li.first a i.b { -moz-border-radius:15px 0 0 15px; -webkit-border-radius:15px 0 0 15px; border-radius:15px 0 0 15px; margin-left:0; } .buttonlist ul li.last a, .buttonlist ul li.last a i.b { -moz-border-radius:0 15px 15px 0; -webkit-border-radius:0 15px 15px 0; border-radius:0 15px 15px 0; } .buttonlist ul li.first.last a, .buttonlist ul li.first.last a i.b{ -moz-border-radius:15px; -webkit-border-radius:15px; border-radius:15px; } 

.buttonlist ul li a:hover {
color: rgb(0, 0, 0);
border:1px dashed rgb(202, 50, 102);
text-decoration: none;
z-index:2;
background-position: 0 -78px;
} 

.buttonlist ul li a span {
display: block;
height: 2em;
line-height:2em;
padding: 1px 20px 1px 20px;
border-color:RGBA(255,255,255,0.2);
position:relative;
z-index:2;
-webkit-border-top-left-radius: 20px;
-webkit-border-bottom-right-radius: 20px;
-moz-border-radius-topleft: 20px;
-moz-border-radius-bottomright: 20px;
border-top-left-radius: 20px;
border-bottom-right-radius: 20px;
} 


.buttonlist ul li a i.b{ position:absolute; top:0; left:0; right:0; bottom:0; z-index:1; background: #d38ea4 url(/Themes/default/images/theme/button-list.png) repeat-x 0 -32px; opacity:0; filter:alpha(opacity=0); -moz-transition:all 200ms; -webkit-transition:all 200ms; transition:all 200ms; } .buttonlist ul li a:hover i.b { opacity:1; filter:alpha(opacity=100); }  

.buttonlist ul li a.active {
color: rgb(0, 0, 0);
font-weight: bold;
background-position:0 -96px;
z-index:2;
}

.buttonlist ul li a.active i.b { background-position:0 -64px; -moz-box-shadow:0 0 3px #ba3c27; }
.align_top ul li a, .align_bottom ul li a { margin: 0 12px 0 0; }
ul#navigation { margin: 0; font-size: 13px; padding: 1em 0.4em; }
ul#navigation li { float: none; font-size: 13px; display: inline; }
#adm_submenus { padding-left: 2em; overflow: hidden; }   

/* the navigation list */
ul#navigation
{
	margin: 0;
	font-size: 13px;
	padding: 1em 0.4em;
}
ul#navigation li
{
	float: none;
	font-size: 13px;
	display: inline;
}

#adm_submenus
{
	padding-left: 2em;
	overflow: hidden;
}

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

/* the framing graphics */
#header
{
	padding-left: 0px;

}
#header div.frame
{
	background: rgba(255, 255, 255, 0)  url(../images/header/k05.png) no-repeat;
	display: block;
	padding: 10px 10px 0px 10px;
}
/* the content section */
#content_section
{
	background: #FFFFFF url(../images/aEKHeEX.png);
	padding-left: 20px;
	padding-bottom: 20px;
}
#content_section div.frame
{
	background: ;
	display: block;
	padding: 0 20px 0 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, h4
{
	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: 510px 1px 1px 1px;
	margin-bottom: 0em;
}
#upper_section ul li.greeting
{
	font-size: 1.3em;
	font-weight: bold;
	line-height: 1.5em;
	text-shadow: 0 1px 0 white;
	color: #FF0085;
}
#upper_section div.news
{
	width: 50%;
	float: right;
	text-align: right;
	margin-top: -110px;
}
#guest_form
{
	overflow: hidden;
}
#guest_form .info
{
	padding: 4px 0 ;
	line-height: 1.3em;
}
div#upper_section div.user
{
	width: 50%;
	float: left;
	padding: 20px 0px 0px 0px;
	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 */
#top_section
{
	min-height: 65px;
	overflow: hidden;
	margin-bottom: 3px;
}
#upper_section
{
	overflow: hidden;
}

/* The navigation list (i.e. linktree) */
.navigate_section
{
	padding: 0.5em;
	margin: 0 0 0 0;
}
.navigate_section ul
{
	display: block;
	margin: 0;
	font-size: 0.9em;
	padding: 1em 0 0.5em 0;
	border-top: 0px solid #ccc;
	overflow: hidden;
	list-style: none;
	clear: both;
	width: 100%;
}
.navigate_section ul li
{
	float: left;
	padding: 0 0.5em 0 0;
	font-size: 0.95em;
}
.navigate_section ul li a
{
	white-space: pre;
}

/* The footer wih copyright links etc. */
#footer_section
{
	/*text-align: center;
	background: #ffffff url(../images/fnew.png) no-repeat;
	padding: 310px 0 0 0;
    margin: -70px 0 0 0;*/
}
#footer_section span.smalltext
{
	font-size: 100%;
}
#footer_section div.frame
{
	background: url(../images/theme/main_block.png) no-repeat 100% -820px;
	display: block;
	padding: 20px 0 0 0;
}
#footer_section ul li, #footer_section p
{
	font-size: 0.8em;
}
#footer_section ul li
{
	display: inline;
	padding-right: 5px;
}
#footer_section ul li.copyright
{
	display: block;
}
select.qaction, input.qaction
{
	font-size: 0.85em;
	padding: 0;
}
#mlist table tbody td.windowbg2
{
	text-align: center;
}

/* Styles for a typical table.
------------------------------------------------------- */
table.table_list
{
	width: 100%;
}
table.table_list p
{
	padding: 0;
	margin: 0;
}
table.table_list td, table.table_list th
{
	padding: 3px 0px 5px 0px;
}
table.table_list tbody.header td
{
	padding: 0;
}
table.table_list tbody.content td.stats
{
	font-size: 11px;
	width: 15%;
	text-align: center;
}
table.table_list tbody.content td.lastpost
{
	line-height: 1.3em;
	font-size: 85%;
	width: 24%;
}
table.table_list tbody.content td.icon
{
	text-align: center;
	width: 6%;
}

/* Styles for the board index.
------------------------------------------------- */

/* the board title! */
.table_list tbody.content td.info a.subject
{
	font-weight: bold;
	font-size: 110%;
	color: #d97b33;
	text-shadow: 0 1px 0 white;

}
.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
{
	margin-top: 4px;
}
dl#ic_recentposts
{
	margin: 0 0 0.5em 0;
	padding: 0.5em;
	line-height: 1.3em;
}
dl#ic_recentposts dt
{
	float: left;
}
dl#ic_recentposts dd
{
	text-align: right;
}
#upshrinkHeaderIC p
{
	margin: 0 0 0.5em 0;
	padding: 0.5em;
}
#upshrinkHeaderIC p.last
{
	margin: 0;
	padding: 0.5em;
	border-top: 2px dotted #bbb;
}
#upshrinkHeaderIC p.inline
{
	border: none;
	margin: 0;
	padding: 0.2em 0.5em 0.2em 0.5em;
}
#upshrinkHeaderIC p.stats
{
	font-size: 1.1em;
	padding-top: 8px;
}
form#ic_login
{
	padding: 0.5em;
	height: 2em;
}
form#ic_login ul li
{
	margin: 0;
	padding: 0;
	float: left;
	width: 20%;
	text-align: center;
}
form#ic_login ul li label
{
	display: block;
}

/* the small stats */
#index_common_stats
{
	display: block;
	margin: 0 0 0.5em 0;
	text-align: right;
	font-size: 0.9em;
	position: relative;
	top: -20px;
	line-height: 1px;
}

img.new_posts
{
	padding: 0 0.1em;
}
/* Styles for the message (topic) index.
---------------------------------------------------- */
div.table_frame .table_list
{
	border-collapse: collapse;
	margin: 2px 0;
}
.table_frame .table_list td.icon, .table_frame .table_list td.info, .table_frame .table_list td.stats
{
	border-right: 2px solid white;
}
#messageindex
{
	clear: both;
}
/* the page navigation area */
.childboards
{
	margin-bottom: 0.2em;
}
#childboards h3
{
	padding-bottom: 0;
}
#childboards .table_list thead
{
	display: none;
}
#childboards .table_list
{
	margin-bottom: 1em;
}
.lastpost img
{
	float: right;
	padding: 4px;
}

/* Styles for the display template (topic view).
---------------------------------------------------- */

#postbuttons div.buttons
{
	padding: 0.5em;
	width: 40%;
	float: right;
}
#postbuttons div.middletext
{
	width: 60%;
}
#postbuttons span
{
	display: block;
	text-align: right;
}
#postbuttons span.lower
{
	clear: right;
}
#postbuttons .buttonlist
{
	float: right;
}
#postbuttons #pagelinks
{
	padding-top: 1em;
}

#moderationbuttons {
margin-left: 18px;
}
/* Events */
.linked_events
{
	padding: 1em 0;
}
.edit_event
{
	margin: 0 1em;
	vertical-align: middle;
}
/* Poll question */
#poll
{
	overflow: hidden;
}
#poll .content
{
	padding: 0 1em;
}
h4#pollquestion
{
	padding: 0 0 0.5em 2em;
}

/* Poll vote options */
#poll_options ul.options
{
	border-top: 1px solid #9999aa;
	padding: 1em 2.5em 0 2em;
	margin: 0 0 1em 0;
}
#poll_options div.submitbutton
{
	border-bottom: 1px solid #9999aa;
	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 7.7em 0 0;
}
#forumposts h3 img
{
	float: left;
	margin: 4px 0.5em 0 0;
}
#forumposts h3.catbg
{
	margin-bottom: 3px;
}
p#whoisviewing
{
	margin: 0;
	padding: 0.5em;
}
/* poster and postarea + moderation area underneath */
.post_wrapper
{
	float:left;
	width:100%;
	padding: 10px 0 0 0;

}
.poster
{
	background: #E5EDF2 url(../images/viewthread-bg.png) repeat-y top;
	margin: 0 0.5em 0 0.5em;
	float: left;
	width: 14.5em;
	border: 1px dashed rgba(0, 0, 0, 0.2);
	border-radius: 9px;
	-moz-border-radius: 9px;
	-webkit-border-radius: 9px;
}
.postarea, .moderatorbar
{
	margin: 0 0 0 16em;
}
.postarea div.flow_hidden
{
	width: 100%;
}

.moderatorbar
{
	clear: right;
}
/* poster details and list of items */
.poster h4, .poster ul
{
	padding: 0;
	margin: 0 1em 0 1em;
}
.poster h4
{
	margin: 0.2em 0 0.4em 0;
	font-size: 120%;
}
.poster h4, .poster h4 a
{
	color: #c06002;
}
.poster ul ul
{
	margin: 0.3em 1em 0 0;
	padding: 0;
}
.poster ul ul li
{
	display: inline;
}
.poster li.stars, .poster li.avatar, .poster li.blurb, li.postcount, li.im_icons ul
{
	margin-top: 0.5em;
}
.poster li.avatar
{
	overflow: hidden;
}
.poster li.warning
{
	line-height: 1.2em;
	padding-top: 1em;
}
.poster li.warning a img
{
	vertical-align: bottom;
	padding: 0 0.2em;
}
.messageicon
{
	float: left;
	margin: 0 0.5em 0 0;
}
.messageicon img
{
	padding: 6px 3px;
}
.keyinfo
{
	float: left;
	margin: 0.9em 11px 0 0;
	width: 50%;
}
.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 0 0;
	clear: right;
	float: right;
	text-align: right;
	font: bold 0.85em arial, sans-serif;
}
ul.quickbuttons li
{
	float: left;
	display: inline;
	margin: 0 0 0 11px;
}
ul.quickbuttons li a { 
padding: 0 8px;
display: block;
height: 20px;
line-height: 20px;
float: left;
background: #e7bdcd;
color: #a72551;
border: 1px solid rgba(255, 255, 255, 0);
text-transform: lowercase;
-webkit-border-top-left-radius: 12px;
-webkit-border-bottom-right-radius: 12px;
-moz-border-radius-topleft: 12px;
-moz-border-radius-bottomright: 12px;
border-top-left-radius: 12px;
border-bottom-right-radius: 12px;
}

ul.quickbuttons a:hover {
text-decoration: none;
color: #a72551;
border:1px dashed rgb(202, 50, 102);
-webkit-border-top-left-radius: 12px;
-webkit-border-bottom-right-radius: 12px;
-moz-border-radius-topleft: 12px;
-moz-border-radius-bottomright: 12px;
border-top-left-radius: 12px;
border-bottom-right-radius: 12px;
}

ul.quickbuttons li.inline_mod_check
{
	margin: 0 0 0 5px;
}

.post
{
	margin-top: 0.5em;
	clear: right;
}
.inner
{
	padding: 1em 1em 2px 0;
	margin: 0 1em 0 0;
	border-top: 1px solid #99a;
}
img.smiley
{
	vertical-align: middle;
}
#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
{
	padding-bottom: 1px;
}
#quickReplyOptions .roundframe
{
	padding: 0 10%;
}
#quickReplyOptions form textarea
{
	height: 100px;
	width: 635px;
	max-width: 100%;
	min-width: 100%;
	margin: 0.25em 0 1em 0;
}
/* The jump to box */
#display_jump_to
{
	clear: both;
	padding: 5px;
	margin-top: 6px;
	text-align: right;
}

/* Separator of posts. More useful in the print stylesheet. */
#forumposts .post_separator
{
	display: none;
}

/* Styles for edit post section
---------------------------------------------------- */
form#postmodify .roundframe
{
	padding: 0 12%;
}
#post_header, .postbox
{
	padding: 0.5em;
	overflow: hidden;
}
#post_header dt, .postbox dt
{
	float: left;
	padding: 0;
	width: 15%;
	margin: .5em 0 0 0;
	font-weight: bold;
}
#post_header dd, .postbox dd
{
	float: left;
	padding: 0;
	width: 83%;
	margin: .3em 0;
}
#post_header img
{
	vertical-align: middle;
}
ul.post_options
{
	margin: 0 0 0 1em;
	padding: 0;
	list-style: none;
	overflow: hidden;
}
ul.post_options li
{
	margin: 0.2em 0;
	width: 49%;
	float: left;
}
#postAdditionalOptionsHeader
{
	margin-top: 1em;
}
#postMoreOptions
{
	border-bottom: 1px solid #cacdd3;
	padding: 0.5em;
}
#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: 0.75em 0.5em;
}
#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: 0.5em;
}

/* Styles for edit event section
---------------------------------------------------- */
#post_event .roundframe
{
	padding: 0 12%;
}
#post_event fieldset
{
	padding: 0.5em;
	clear: both;
}
#post_event #event_main input
{
	margin: 0 0 1em 0;
	float: left;
}
#post_event #event_main div.smalltext
{
	width: 33em;
	float: right;
}
#post_event div.event_options
{
	float: right;
}
#post_event ul.event_main, ul.event_options
{
	padding: 0;
	overflow: hidden;
}
#post_event ul.event_main li
{
	list-style-type: none;
	margin: 0.2em 0;
	width: 49%;
	float: left;
}
#post_event ul.event_options
{
	margin: 0;
	padding: 0 0 .7em .7em;
}
#post_event ul.event_options li
{
	list-style-type: none;
	margin: 0;
	float: left;
}
#post_event #event_main select, #post_event ul.event_options li select, #post_event ul.event_options li .input_check
{
	margin: 0 1em 0 0;
}

/* Styles for edit poll section.
---------------------------------------------------- */

#edit_poll
{
	overflow: hidden;
}
#edit_poll fieldset
{
	padding: 0.5em;
	clear: both;
	overflow: hidden;
}
#edit_poll fieldset input
{
	margin-left: 8.1em;
}
#edit_poll ul.poll_main li
{
	padding-left: 1em;
}
#edit_poll ul.poll_main input
{
	margin-left: 1em;
}
#edit_poll ul.poll_main, dl.poll_options
{
	overflow: hidden;
	padding: 0 0 .7em .7em;
	list-style: none;
}
#edit_poll ul.poll_main li
{
	margin: 0.2em 0;
}
#edit_poll dl.poll_options dt
{
	width: 33%;
	padding: 0 0 0 1em;
}
#edit_poll dl.poll_options dd
{
	width: 65%;
}
#edit_poll dl.poll_options dd input
{
	margin-left: 0; 
}

/* Styles for the recent messages section.
---------------------------------------------------- */

#readbuttons_top .pagelinks, #readbuttons .pagelinks
{
	padding-bottom: 1em;
	width: 60%;
}
#readbuttons .pagelinks
{
	padding-top: 1em;
}
#recent
{
	clear: both;
}

/* Styles for the move topic section.
---------------------------------------------------- */

#move_topic dl
{
	margin-bottom: 0;
}
#move_topic dl.settings dt
{
	width: 40%;
}
#move_topic dl.settings dd
{
	width: 59%;
}
.move_topic
{
	width: 710px;
	margin: auto;
	text-align: left;
}
div.move_topic fieldset
{
	padding: 0.5em;
}

/* Styles for the send topic section.
---------------------------------------------------- */

fieldset.send_topic
{
	border: none;
	padding: 0.5em;
}
dl.send_topic
{
	margin-bottom: 0;
}
dl.send_mail dt
{
	width: 35%;
}
dl.send_mail dd
{
	width: 64%;
}

/* Styles for the report topic section.
---------------------------------------------------- */

#report_topic dl
{
	margin-bottom: 0;
}
#report_topic dl.settings dt
{
	width: 20%;
}
#report_topic dl.settings dd
{
	width: 79%;
}

/* Styles for the split topic section.
---------------------------------------------------- */

div#selected, div#not_selected
{
	width: 49%;
}
ul.split_messages li.windowbg, ul.split_messages li.windowbg2
{
	margin: 1px;
}
ul.split_messages li a.split_icon
{
	padding: 0 0.5em;
}
ul.split_messages div.post
{
	padding: 1em 0 0 0;
	border-top: 1px solid #fff;
}

/* Styles for the merge topic section.
---------------------------------------------------- */
ul.merge_topics li
{
	list-style-type: none;
}
dl.merge_topic dt
{
	width: 25%;
}
dl.merge_topic dd
{
	width: 74%;
}
fieldset.merge_options
{
	clear: both;
}
.custom_subject
{
	margin: 0.5em 0;
}

/* Styles for the login areas.
------------------------------------------------------- */
.login
{
	width: 540px;
	margin: 0 auto;
}
.login dl
{
	overflow: auto;
	clear: right;
}
.login dt, .login dd
{
	margin: 0 0 0.4em 0;
	width: 44%;
	padding: 0.1em;
}
.login dt
{
	float: left;
	clear: both;
	text-align: right;
	font-weight: bold;
}
.login dd
{
	width: 54%;
	float: right;
	text-align: left;
}
.login p
{
	text-align: center;
}

/* Styles for the registration section.
------------------------------------------------------- */
.register_error
{
	border: 1px dashed red;
	padding: 5px;
	margin: 0 1ex 1ex 1ex;
}
.register_error span
{
	text-decoration: underline;
}

/* Additional profile fields */
dl.register_form
{
	margin: 0;
	clear: right;
}

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 img.floatleft
{
	margin-right: 1em;
}

/* common for all admin sections */
h3.titlebg img
{
	vertical-align: middle;
	margin-right: 0.5em;
	margin-top: -1px;
}
tr.titlebg td
{
	padding-left: 0.7em;
}
#admin_menu
{
	min-height: 2em;
	padding-left: 0;
}
#admin_content
{
	clear: left;
	padding-top: 0.5em;
}
/* Custom profile fields like to play with us some times. */
#admin_content .custom_field
{
	margin-bottom: 15px;
}
#admin_login .centertext
{
	padding: 1em;
}
#admin_login .centertext .error
{
	padding: 0 0 1em 0;
}

/* Styles for sidebar menus.
------------------------------------------------------- */
.left_admmenu, .left_admmenu ul, .left_admmenu li
{
	padding: 0;
	margin: 0;
	list-style: none;
}
#left_admsection
{
	width: 160px;
	float: left;
	padding-right: 10px;
}
.adm_section h4.titlebg
{
	font-size: 95%;
	margin-bottom: 5px;
}
#main_container
{
	position: relative;
}
.left_admmenu li
{
	padding: 0 0 0 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: 0.3em 0.7em;
	
}
#credits p
{
	padding: 0;
	font-style: italic;
	margin: 0;
}

/* Styles for generic tables.
------------------------------------------------------- */
.topic_table table
{
	width: 100%;
}
.topic_table .icon1, .topic_table .icon2, .topic_table .stats
{
	text-align: center;
}
#topic_icons
{
	margin: 1em 0 0 0;
}
#topic_icons .description
{
	margin: 0;
}
.topic_table table thead
{
	border-bottom: 1px solid #fff;
}
/* the subject column */
.topic_table td
{
	font-size: 1em;
}
.topic_table td.subject p, .topic_table td.stats
{
	font-size: 0.85em;
	padding: 0;
	margin: 0;
}
.topic_table td.lastpost
{
	font-size: 0.85em;
	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;
}

/* Styles for (fatal) errors.
------------------------------------------------- */

#fatal_error
{
	width: 80%;
	margin: auto;
}

.errorbox
{
	padding: 1em;
	border: 1px solid #cc3344;
	color: #000;
	background-color: #ffe4e9;
	margin-bottom: 1em;
}
.errorbox h3
{
	padding: 0;
	margin: 0;
	font-size: 1.1em;
	text-decoration: underline;
}
.errorbox p
{
	margin: 1em 0 0 0;
}
.errorbox p.alert
{
	padding: 0;
	margin: 0;
	float: left;
	width: 1em;
	font-size: 1.5em;
}

/* Styles for the profile section.
------------------------------------------------- */

dl
{
	overflow: auto;
	margin: 0;
	padding: 0;
}

/* The basic user info on the left */
#basicinfo
{
	width: 20%;
	float: left;
}
#basicinfo .windowbg .content
{
	padding-left: 20px;
}
#detailedinfo
{
	width: 79.5%;
	float: right;
}
#basicinfo h4
{
	font-size: 135%;
	font-weight: 100;
	line-height: 105%;
	white-space: pre-wrap;
	overflow: hidden;
}
#basicinfo h4 span.position
{
	font-size: 80%;
	font-weight: 100;
	display: block;
}
#basicinfo img.avatar
{
	display: block;
	margin: 10px 0 0 0;
}
#basicinfo ul
{
	list-style-type: none;
	margin: 10px 0 0 0;
}
#basicinfo ul li
{
	display: block;
	float: left;
	margin-right: 5px;
	height: 20px;
}
#basicinfo span#userstatus
{
	display: block;
	clear: both;
}
#basicinfo span#userstatus img
{
	vertical-align: middle;
}
#detailedinfo div.content dl, #tracking div.content dl
{
	clear: right;
	overflow: auto;
	margin: 0 0 18px 0;
	padding: 0 0 15px 0;
	border-bottom: 1px #ccc solid;
}
#detailedinfo div.content dt, #tracking div.content dt
{
	width: 35%;
	float: left;
	margin: 0 0 3px 0;
	padding: 0;
	font-weight: bold;
	clear: both;
}
#detailedinfo div.content dd, #tracking div.content dd
{
	width: 65%;
	float: left;
	margin: 0 0 3px 0;
	padding: 0;
}
#detailedinfo div.content dl.noborder
{
	border-bottom: 0;
}
#detailedinfo div.content dt.clear
{
	width: 100%;
}
.signature, .custom_fields_above_signature
{
	border-top: 1px #ccc solid;
}
.signature h5
{
	font-size: 0.85em;
	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
{
	width: 100%;
}
#main_admsection #basicinfo h4
{
	float: left;
	width: 35%;
}
#main_admsection #basicinfo img.avatar
{
	float: right;
	vertical-align: top;
}
#main_admsection #basicinfo ul
{
	clear: left;
}
#main_admsection #basicinfo span#userstatus
{
	clear: left;
}
#main_admsection #basicinfo p#infolinks
{
	display: none;
	clear: both;
}
#main_admsection #basicinfo .botslice
{
	clear: both;
}

/* Simple feedback messages */
div#profile_error, div#profile_success
{
	margin: 0 0 1em 0;
	padding: 1em 2em;
	border: 1px solid;
}
div#profile_error
{
	border-color: red;
	color: red;
	background: #fee;
}

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

div#profile_success
{
	border-color: green;
	color: green;
	background: #efe;
}

/* Profile statistics */
#generalstats div.content dt
{
	width: 50%;
	float: left;
	margin: 0 0 3px 0;
	padding: 0;
	font-weight: bold;
	clear: both;
}
#generalstats div.content dd
{
	width: 50%;
	float: left;
	margin: 0 0 3px 0;
	padding: 0;
}

/* Activity by time */
#activitytime
{
	margin: 6px 0;
}
.activity_stats
{
	margin: 0;
	padding: 0;
	list-style: none;
}
.activity_stats li
{
	margin: 0;
	padding: 0;
	width: 4.16%;
	float: left;
}
.activity_stats li span
{
	display: block;
	border: solid #000;
	border-width: 1px 1px 0 0;
	text-align: center;
}
.activity_stats li.last span
{
	border-right: none;
}
.activity_stats li div.bar
{
	margin: 0 auto;
	width: 15px;
}
.activity_stats li div.bar div
{
	background: #6294CE;
}
.activity_stats li div.bar span
{
	position: absolute;
	top: -1000em;
	left: -1000em;
}

/* Most popular boards by posts and activity */
#popularposts
{
	width: 49.5%;
	float: left;
}
#popularactivity
{
	width: 49.5%;
	float: right;
}

#popularposts div.content dt, #popularactivity div.content dt
{
	width: 65%;
	float: left;
	margin: 0 0 3px 0;
	padding: 0;
	font-weight: bold;
	clear: both;
}
#popularposts div.content dd, #popularactivity div.content dd
{
	width: 35%;
	float: left;
	margin: 0 0 3px 0;
	padding: 0;
}

.profile_pie
{
	background-image: url(../images/stats_pie.png);
	float: left;
	height: 20px;
	width: 20px;
	margin: 0 1em 0 0;
	padding: 0;
	text-indent: -1000em;
}

/* View posts */
.topic .time
{
	float: right;
}

.counter
{
	margin: 0 0 0 0;
	padding: 0.2em 0.5em 0.1em 0.2em;
	font-size: 2.2em;
	font-weight: bold;
	color: #3f3f3f;
	float: left;
}
.list_posts
{
	border-top: 2px solid #b3b3bf;
	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: 0 0 10px 0;
}
#creator dd
{
	float: right;
	width: 55%;
	margin: 0 0 10px 2px;
	overflow: auto;
}

.ignoreboards
{
	margin: 0 2%;
	padding: 0;
	width: 45%;
}
.ignoreboards a
{
	font-weight: bold;
	border-bottom: 1px solid #c4c4c4;
	padding: 0.1em 0;
}
.ignoreboards a:hover
{
	text-decoration: none;
	border-bottom: 1px solid #334466;
}
.ignoreboards ul
{
	margin: 0;
	padding: 0;
}
.ignoreboards li
{
	list-style: none;
	float: left;
	clear: both;
}
.ignoreboards li.category
{
	margin: 0.7em 0 0 0;
	width: 100%;
}
.ignoreboards li ul
{
	margin: 0.2em 0 0 0;
}
.ignoreboards li.category ul li.board
{
	width: 93%;
}

#theme_settings
{
	overflow: auto;
	margin: 0;
	padding: 0;
}

#theme_settings li
{
	list-style: none;
	margin: 10px 0;
	padding: 0;
}
/* Paid Subscriptions */
#paid_subscription
{
	width: 100%;
}
#paid_subscription dl.settings
{
	margin-bottom: 0;
}
#paid_subscription dl.settings dd, #paid_subscription dl.settings dt
{
	margin-bottom: 4px;
}
/* Pick theme */
#pick_theme
{
	width: 100%;
	float: left;
}
/*Issue a warning*/
#warn_body{
	width: 80%;
	font-size: 0.9em;
}

/* Styles for the statistics center.
------------------------------------------------- */
#statistics
{
	padding: 0.5em 0;
}
#statistics div.title_bar
{
	margin: 4px 0 -2px 0;
}
#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;
}
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;
}

/* Used to indicate the current day in the grid. */
.calendar_today
{
	background-color: #fff;
}

#month_grid
{
	width: 200px;
	text-align: center;
	float: left;
}
#month_grid div.cat_bar
{
	height: 25px;
}
#month_grid h3.catbg
{
	height: 25px;
	line-height: 27px;
}
#month_grid table
{
	width: 200px;
}
#main_grid table
{
	width: 100%;
	padding-bottom: 4px;
}
#main_grid table h3.catbg
{
	text-align: center;
	height: 29px;
	border-top: 2px solid #fff;
	border-bottom: none;
}
#main_grid table.weeklist td.windowbg
{
	text-align: center;
	height: 49px;
	width: 25px;
	font-size: large;
	padding: 0 7px;
	border-bottom: 2px solid #fff;
}
#main_grid table.weeklist td.weekdays
{
	height: 49px;
	width: 100%;
	padding: 4px;
	text-align: left;
	vertical-align: middle;
	border-bottom: 2px solid #fff;
}
#main_grid h3.weekly
{
	text-align: center;
	padding-left: 0;
	font-size: large;
	height: 29px;
}
#main_grid h3 span.floatleft, #main_grid h3 span.floatright
{
	display: block;
	font-weight: bold;
}
#main_grid table th.days
{
	width: 14%;
	padding: 4px 0;
}
#main_grid table.weeklist h4.titlebg
{
	margin: 0 0 0 0;
	height: 23px;
	line-height: 27px;
}
#main_grid table td.weeks
{
	vertical-align: middle;
	text-align: center;
	font-weight: bold;
	font-size: large;
}
#main_grid table td.days
{
	vertical-align: top;
	text-align: center;
}

a.modify_event
{
	color: red;
}

span.hidelink
{
	font-style: italic;
}

#calendar_navigation
{
	text-align: center;
}

/* Styles for the memberlist section.
------------------------------------------------- */
#mlist_search
{
	margin: auto;
	width: 500px;
}

/* Styles for the basic search section.
------------------------------------------------- */
#searchform, #simple_search p
{
	padding: 0.5em;
	margin: 0;
}
#simple_search, #simple_search p, #advanced_search
{
	text-align: center !important;
	margin: 0;
}
#search_error
{
	font-style: italic;
	padding: 0.3em 1em;
}
#search_term_input
{
	font-size: 115%;
	margin: 0 0 1em;
}

/* Styles for the advanced search section.
------------------------------------------------- */
#searchform fieldset
{
	text-align: left;
	padding: 0;
	border: none;
}
#advanced_search dl#search_options
{
	margin: 0 auto;
	width: 600px;
	padding-top: 1em;
	overflow: hidden;
}
#advanced_search dt
{
	clear: both;
	float: left;
	padding: 0.2em;
	text-align: right;
	width: 20%;
}
#advanced_search dd
{
	width: 75%;
	float: left;
	padding: 0.2em;
	margin: 0 0 0 0.5em;
	text-align: left;
}
#searchform p.clear
{
	clear: both;
}

/* Styles for the search results page.
------------------------------------------------- */
.topic_table td blockquote, .topic_table td .quoteheader
{
	margin: 0.5em;
}
.search_results_posts
{
	overflow: hidden;
}
.search_results_posts .buttons
{
	padding: 5px 1em 0 0;
}

/* Styles for the help section.
------------------------------------------------- */

#help_container
{
	margin: 4px 0 0 0;
	padding: 0 0 8px 0;
}
#helpmain
{
	padding: 0 1em;
}
#helpmain p
{
	margin: 0 0 1.5em 0;
	line-height: 1.5em;
}
#helpmain ul
{
	line-height: 1.5em;
}

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

	.tborder
	{
		border: none;
	}
}

#zone-cc{
	width:960px;
	margin:auto;
	font:12px/16px Tahoma,Arial,sans-serif;
}

#zone-cc span{
	font-size:11px;
}

/*news*/
.z_announcement {
	background: rgba(255, 255, 255, 0.2);
	padding: 10px;
	border: 5px solid rgb(173, 198, 141);
	box-shadow: 0px 0px 5px black;
	border-radius: 9px;
	-moz-border-radius: 9px;
	-webkit-border-radius: 9px;
}
.n_announcement {
	background: rgba(255, 255, 255, 0.2);
	padding: 10px;
	border: 5px solid rgb(173, 198, 141);
	box-shadow: 0px 0px 5px black;
	border-radius: 9px;
	-moz-border-radius: 9px;
	-webkit-border-radius: 9px;
}
.p_announcement {
	background: #fbf8dc;
	padding: 10px;
	border: 1px dashed #c6c08d;
	border-radius: 9px;
	-moz-border-radius: 9px;
	-webkit-border-radius: 9px;
}
h2 {
	color: #FF0085;
	font-size:26px;
	margin: 0;
	padding: 0;
	text-shadow: 0.1em 0.1em 0.05em white;
}
		 td.something img
{
float:none;
padding: 0;
}

p.some
{
margin:0;
}

p.some img
{
float:none;
padding: 0;
}

.tag_nkn {
    background: url(../images/r1/tags-big.png) no-repeat scroll left top transparent;
    float: left;
    margin: -2px 8px 5px 3px;
    padding-left: 15px;
    width: auto;
}
.tag_nkn a {
    background: url(../images/r1/tags-big.png) no-repeat scroll right -26px transparent;
    color: #555555;
    display: block;
    float: left;
    height: 18px;
    line-height: 12px;
    padding: 5px 8px 3px 6px;
    text-shadow: 1px 1px 1px #F1F1F1;
    width: auto;
}

.tag_nkn2 {
    background: url(../images/r1/tags-big.png) no-repeat scroll left top transparent;
    float: left;
    margin: -2px 8px 5px 3px;
    padding-left: 15px;
    width: auto;
}
.tag_nkn2 a {
    background: url(../images/r1/tags-big.png) no-repeat scroll right -26px transparent;
    color: #FF6600;
    display: block;
    float: left;
    height: 18px;
    line-height: 12px;
    padding: 5px 8px 3px 6px;
    text-shadow: 1px 1px 1px #F1F1F1;
    width: auto;
}
		 td.something img
{
float:none;
padding: 0;
}

p.some
{
margin:0;
}

p.some img
{
float:none;
padding: 0;
}
.spoiler_head 
{ 
    margin: 2px 0 2px 0;
    background-color: #F1F1F1;
    cursor: pointer; 
    position: relative; 
    display: inline-block; 
    padding: 2px 5px 2px 5px;
    color: #FF0000; 
    text-align: center;
    font: bold 12px Calibri, Verdana, Ariel, sans-serif; 
    border: 1px solid #D1D9DF; 
    border-radius: 5px; 
}	
.spoiler_body 
{ 
    margin:0;
    display:none; 
    width: auto; 
    padding: 5px;
    color:#666; 
    background-color:#F1F1F1; 
    border: 1px solid #D1D9DF;
    border-radius: 5px; 
}
		

/* Make the reCAPTCHA dialog centered to match the positioning of the built-in verification */
.centertext #recaptcha_table
{
	margin: 0 auto !important;
}

/***Main Menu***/
table.menu_table {
    font-family: "Lucida Grande",Tahoma;
    font-size: 12.6px;
    font-weight: bold;
    margin: 0 auto;
    right: 0;
    top: 50px;
}
.menu_table:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    overflow: hidden;
    visibility: hidden;
}
td.main_menu_first
{
    width: 0px;
    height: 60px;    
}
td.main_menu_last
{
    width: 0px;
    height: 60px;    
}
td.main_button
{
    height: 44px;
}
td.active a
{
    color:#fff;
    background: -moz-linear-gradient(top,  rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.4) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0.4)), color-stop(100%,rgba(0,0,0,0.4)));
    background: -webkit-linear-gradient(top,  rgba(0,0,0,0.4) 0%,rgba(0,0,0,0.4) 100%);
    background: -o-linear-gradient(top,  rgba(0,0,0,0.4) 0%,rgba(0,0,0,0.4) 100%);
    background: -ms-linear-gradient(top,  rgba(0,0,0,0.4) 0%,rgba(0,0,0,0.4) 100%);
    background: linear-gradient(top,  rgba(0,0,0,0.4) 0%,rgba(0,0,0,0.4) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#66000000', endColorstr='#66000000',GradientType=0 );
    text-shadow:0 0 3px #000;
    -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.13), 0 0 0 1px rgba(255, 255, 255, 0.03), 0 1px 3px rgba(0, 0, 0, 0.5) inset;;
    -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.13), 0 0 0 1px rgba(255, 255, 255, 0.03), 0 1px 3px rgba(0, 0, 0, 0.5) inset;;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.13), 0 0 0 1px rgba(255, 255, 255, 0.03), 0 1px 3px rgba(0, 0, 0, 0.5) inset; 
}
td.active a:hover
{
}

/***Main Menu End***/
#recommended-topics {
    background: none repeat scroll 0 0 #FFE8E8;
    border: 2px dashed #FF6699;
    margin-bottom: 2em;
    padding: 0.5em 1em;
}
.n_img{
	float:left;
	margin: -10px 0px -20px -5px;
	}
.statusz {
    background-image: -moz-linear-gradient(center top , #FFFFFF, #E9E9E9);
    border-radius: 5px 5px 5px 5px;
    box-shadow: 0 0 2px #747474;
    color: #696969;
    text-shadow: 0 0 0.3em #FFFFFF;
}
.boxz {
    border-color: #FFFFFF;
    border-right: 1px solid #FFFFFF;
    border-style: solid;
    border-width: 1px;
	margin: auto;
	margin-bottom: 10px;
	padding: 3px;
}

.haor {
    background: url(../images/haor.gif) no-repeat scroll left center transparent;
    cursor: default;
    float: left;
	margin-left: 7px;
    height: 35px;
    margin-right: 4px;
    text-align: center;
    width: 45px;
}
.haor span {
    font-size: 12px;
    font-weight: normal;
    height: 24px;
    line-height: 24px;
}
.ziz {
    background: url(../images/ziz.gif) no-repeat scroll left center transparent;
    cursor: default;
    float: left;
    height: 35px;
    margin-right: 4px;
    text-align: center;
    width: 45px;
}
.ziz span {
    font-size: 12px;
    font-weight: normal;
    height: 24px;
    line-height: 24px;
}
.tuid {
    background: url(../images/tuid.gif) no-repeat scroll left center transparent;
    cursor: default;
    float: left;
    height: 35px;
    text-align: center;
    width: 45px;
}
.tuid span {
    font-size: 12px;
    font-weight: normal;
    height: 24px;
    line-height: 24px;
}

#board-info {
    margin-bottom: 1em;
}

#newyear a {
	position: absolute;
	float:right;
	right: 17em;
	display: block;
	width: 120px!important;
	height: 120px!important;
	cursor: pointer;
}

.windowbg6
{
	background: #FFFFFF  url(../images/r1/2013m.png) center right no-repeat;
	border-top: 1px solid #c6c08d;
    border-bottom: 1px solid #c6c08d;
	border-left: 1px solid #c6c08d;
	color: #000;
}

.windowbg7
{
    background: #fbf8dc;
	border: 1px solid #fbf8dc;
	color: #000;
}

.windowbg8
{
    background: #fbf8dc;
	border: 1px dashed #c6c08d;
	color: #000;
}

.windowbg9
{
    background: #fbf8dc;
	border: 1px solid #c6c08d;
	color: #000;
}

.user-pic {
    background: url(../images/qc.png) no-repeat scroll 0 0 transparent;
    height: 162px;
    width: 160px;
}

.picz img {
border-radius: 10px;
box-shadow: 0px 0px 5px black;
BORDER: #fff 1px solid;
padding: 5px 5px 5px;
background:rgba(0, 0, 0, 0);
}

.divider {
	 border-bottom: 1px solid #FFFFFF;
	 border-top: 1px solid #CCCCCC;
	 color: #CCCCCC;
	 width: 100%;
}

#search
{
	margin: 0;
	padding: 0;
	float: right;
	position: relative; 
	display: block;
}
#search_text
{
    width: 183px; 
	height: 15px;
	margin: 0; 	
	padding: 10px;
	background: transparent url(../images/theme/searchinput.png) no-repeat top left;
	border: none;
    font-weight: normal;
    color: #AAA;
    font-family: Helvetica,Arial;
    float: left;
    font-size: 14px;
}
#search_text:focus
{
	border: none;
}
#search_button
{
	display: block;
	width: 32px;
	height: 35px;
	margin: 0 10px 0 0;
	padding: 0;
	border: none;
	background: transparent url(../images/theme/searchbtn.png) no-repeat top left;
	float: right;
}
#search_button:hover {
	background-position:  -32px 0;
	border: none;
}

#search_button:active {
	background-position:  -64px 0;	
	border: none;
}
.floatright {
float: right;
}

/* Social Network links */
a#rsslink {
	background: url(../images/rss2.png) no-repeat 0 0;
	width: 32px;
	height: 32px;
	display: block;
	float: left;
	margin: 0 2px 0 0;
}
a#rsslink:hover { background: url(../images/rss2.png) no-repeat 0 -32px; }

a#facebooklink {
	background: url(../images/facebook.png) no-repeat 0 0;
	width: 32px;
	height: 32px;
	display: block;
	float: left;
	margin: 0 2px 0 0;
}
a#facebooklink:hover { background: url(../images/facebook.png) no-repeat 0 -32px; }

a#twitterlink {
	background: url(../images/twitter.png) no-repeat 0 0;
	width: 32px;
	height: 32px;
	display: block;
	float: left;
	margin: 0 10px 0 0;
}
a#twitterlink:hover { background: url(../images/twitter.png) no-repeat 0 -32px; }

a#chrome {
	background: url(../images/Chrome.png) no-repeat 0 0;
	width: 64px;
	height: 64px;
	display: block;
	float: right;
	margin: 0 2px 0 0;
}
a#chrome:hover { background: url(../images/Chrome.png) no-repeat 0 -64px; }
a#firefox {
	background: url(../images/Firefox.png) no-repeat 0 0;
	width: 64px;
	height: 64px;
	display: block;
	float: right;
	margin: 0 2px 0 0;
}
a#firefox:hover { background: url(../images/Firefox.png) no-repeat 0 -64px; }

.infodis
{
	background: #FFB3D1;
    background: -moz-linear-gradient(top,  #FCD9E5 0%, #FFB3D1 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FCD9E5), color-stop(100%,#FFB3D1));
	background: -o-linear-gradient(top,  #FCD9E5 0%,#FFB3D1 100%);
	height: 32px;
	line-height: 32px;
	color: black;
	text-shadow: 0px 1px 0 white;
	padding: 0 5px;
    margin-top: 5px;
	border-radius: 0px;
}

#fcat {
	background-color: #fafafa;
	border: 1px dashed #CCC;
	margin-top: -10px;
	margin-bottom: 3px;
	padding: 10px 5px!important;
}

.avatares_users-avatar img {
    display: block;  padding: 2px;  width: 48px;  height: 48px;  border: 1px solid #999;  -moz-box-shadow: 0px 2px 3px #CCC;  box-shadow: 0px 2px 3px #CCC;  -webkit-box-shadow: 0px 2px 3px #CCC;
}
.avatares_users-avatar img:hover {
border: 1px solid #666;
-moz-box-shadow: 0px 2px 3px #999;
box-shadow: 0px 2px 3px #999;
-webkit-box-shadow: 0px 2px 3px #999;
}
.dz-muros-sp {
    padding: 8px;  
    position: relative;
    display: inline-block;
}
.avatares_users-avatar {
    margin-top: 5px; float: left;  margin-right: 5px;  position: relative;
}
.dz-muros-sp-coment {
float: left;
width: 200px;
min-height: 3px;
margin-top: 3px;
padding: 10px 5px!important;
border: 1px dashed #CCC;
border-bottom: none;
-moz-border-radius: 10px 5px 0 0;
-webkit-border-radius: 5px 5px 0 0;
border-radius: 5px 5px 0 0;
position: relative;
word-wrap: break-word;
background-color: #fafafa;
}
.dialog {
    display: block;  width: 9px;  height: 16px;  position: absolute;  left: -9px;  
    background: url(../images/dialog.png) no-repeat top left;
}
.dz-muros-sp-coment-2 {
    display: block;  margin-bottom: 1px;  position: relative;
}
.dz-muros-sp-comentp {
    margin-bottom: 15px;  font-size: 14px;
    margin: 0;
}
.dz-muros-sp-coment-footer {
    float: left; padding: 5px 5px!important; margin-bottom: 3px;
	margin-left: 61px!important;  width: 200px;  height: 5px;  border: 1px dashed #CCC;  border-top: 1px solid #e9e9e9!important;  -moz-border-radius: 0 0 5px 5px;  -webkit-border-radius: 0 0 5px 5px;  border-radius: 0 0 5px 5px;  -webkit-box-shadow: 0 2px 3px #eee;  -moz-box-shadow: 0 2px 3px #eee;  box-shadow: 0 2px 3px #eee;  position: relative;  word-wrap: break-word;  
    background: #fafafa url(../images/bfs.gif) bottom left repeat-x;
}

.titcat-rainbow {
	background: url(../images/bbg1.png) no-repeat left top;	
}
 .titcat-rainbow span { 

}
.titcat-rainbow strong{ 

}
.titcat-rainbow{
	height: 44px;
	position: absolute;
}
.titcat-rainbow span{	
	background-position: right -67px;
	display: block;
	float: right;
	padding-right: 32px;
}
.titcat-rainbow strong{
	background-position: left -36px;
	background-repeat: repeat-x;
	display: block;
	 height: 24px;
	 width: 195px;
	 margin-left: 5px;
	padding: 7px 0px 0 20px;
	 position: relative;
}

.titcat-rainbow strong a{
	color: white;
	font-size: 14px;
}

.titcat-rainbow strong {
color: rgb(255, 255, 255);
line-height: 1.0em;
font: 12px "Helvetica Neue",arial,arial black,sans-serif;
text-shadow: 1px 1px 1px rgb(0, 0, 0);
text-transform: capitalize;
padding-top: 13px;
}


.item-stats{
	display: inline-block;
	width: 100%;
	text-align: center;
}
.item-stats .item{
	display: inline-block;
	margin: 0 5px;
}
.item-stats .item strong{
	display: block;
	font-size: 18px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.item-stats .item strong.posts{
	color: rgb(65, 145, 55);
	text-shadow: 1px 1px 0 white;
}
.item-stats .item strong.topics{
	color: rgb(170, 50, 50);
	text-shadow: 1px 1px 0 white;
}
.item-stats .item strong.users{
	color: #689ded;
}
.item-stats .item  span{
	font-weight: bold;
	font-size: 1em;
}


/* Styles for the Thank-O-Matic sections.
------------------------------------------------- */
.ThankOMatic
{
	margin: 0.5em 0.5em 0.5em 0.5em;
	padding: 0.2em 0.2em 0.2em 0.2em; 
}

.ThankOMatic #thank_you_start_text
{
}

.ThankOMatic #thank_you_list
{
	font-family: arial, helvetica, sans-serif;
	padding-left: 0.5em;
	padding-top: 0.2em;
}

.ThankOMatic #thank_you_list_link
{
}

.ThankOMatic #thank_you_lock_text
{
	font-style: italic;
}

#most_thank_you_receive
{
	float:left;
	width: 49.5%;
}
#most_thank_you_given
{
	float: right;
	width: 49.5%;
}

.ThankOMatic 
{
	clear: both;
	margin: 0.2em 0 0.5em;
	padding: 0;
}

.poster_thank {
  min-height: 60px; 
  height: auto !important;
  padding-top: 5px;
  padding-bottom: 5px;
}

.chat_online {
	width:21%;
	float:left;    
	background-color: rgba(255, 255, 255, 0);
	border: 5px solid #32393d;
	color: #000000;
	display: block;
	height: 457px;
	overflow: auto;
	padding:0px;
	position: scroll;
	-webkit-border-top-right-radius: 9px;
	-webkit-border-bottom-right-radius: 9px;
	-moz-border-radius-topright: 9px;
	-moz-border-radius-bottomright: 9px;
	border-top-right-radius: 9px;
	border-bottom-right-radius: 9px;
}.buddy_block
{
	overflow: auto;
	padding-left: 15px;
	}
.buddy
{
	font-family: Tahoma;
	font-size: 11px;
	font-weight: bold;
	text-align: center; 
}
.buddy_avatar {
	display: inline-block;
	float: left;
	margin-right: 4px;
	margin-bottom: 4px;
    width: 35px;
    height: 35px;
    border: 1px solid white;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    background:url(../../../avatars/noavatar.png);
}
.buddy_avatar img {
    width: 35px;
    height: auto;
    position: relative;
}
#basicavatar img.avatar
{
    display: block;
    margin: 0px 0 0 0;
}
#style-2::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}

#style-2::-webkit-scrollbar
{
	width: 12px;
	background-color: #F5F5F5;
}

#style-2::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #e47474;
}


/* My_Contributions code is PIPI2010  */
.my_contributions_conte 
{
	background-color: #EEEEEE;
	border-color: #EEEEEE;
	border-radius: 10px 10px 10px 10px;
	box-shadow: 0 0 12px #000000;	
	width: 70%;
	margin: 10px auto 0;
	padding: 5px;
	font-size: 10px;
	clear: both;
}
.my_contributions_conte p 
{ 
   margin: 2px; 
   font-weight: bold;
}
a.my_contributions:hover
{
    color: #000;
	text-shadow: 0px 0px 5px #5795C1;
}
a.my_contributions:link, a.my_contributions:visited 
{
	text-decoration: none;
}

/* My_Contributions code is PIPI2010  */
.my_contributions_conte 
{
	background-color: #EEEEEE;
	border-color: #EEEEEE;
	border-radius: 10px 10px 10px 10px;
	box-shadow: 0 0 12px #000000;	
	width: 70%;
	margin: 10px auto 0;
	padding: 5px;
	font-size: 10px;
	clear: both;
}
.my_contributions_conte p 
{ 
   margin: 2px; 
   font-weight: bold;
}
a.my_contributions:hover
{
    color: #000;
	text-shadow: 0px 0px 5px #5795C1;
}
a.my_contributions:link, a.my_contributions:visited 
{
	text-decoration: none;
}

b.num {
	color: #006699;
	font-size: 13px;
	text-shadow: 0 1px rgba(255,255,255,0.3);
	padding: 5px 15px;
	margin-right: 4px;
	border-radius: 5px 20px 5px 20px;
	background-color: rgb(223, 223, 223);
}

b.tive {
	color: #006699;
	font: 500 18px/31px Arial;
	text-shadow: 0 1px rgba(255,255,255,0.3);
	padding: 3px 12px;
	margin-right: 4px;
	border-radius: 5px 10px 10px 15px;
	background-color: rgba(117, 186, 250, 0.5);
}
b.tive2 {
    background-color: rgba(117, 186, 250, 0.5);
    border-radius: 5px 10px 10px 15px;
    color: #006699;
    line-height: 28px;
    margin-right: 4px;
    padding: 1px 10px;
    text-shadow: 0 1px rgba(255, 255, 255, 0.3);
}
b.tive3 {
    background-color: rgba(255, 153, 0, 0.5);
    border-radius: 5px 10px 10px 15px;
    color: #996800;
    line-height: 28px;
    margin-right: 4px;
    padding: 1px 10px;
    text-shadow: 0 1px rgba(255, 255, 255, 0.3);
}
b.tive4 {
    background-color: rgba(250, 117, 250, 0.5);
    border-radius: 5px 10px 10px 15px;
    color: #990000;
    line-height: 28px;
    margin-right: 4px;
    padding: 1px 10px;
    text-shadow: 0 1px rgba(255, 255, 255, 0.3);
}
b.tive5 {
    background-color: rgba(138, 250, 117, 0.5);
    border-radius: 5px 10px 10px 15px;
    color: #2B9900;
    line-height: 28px;
    margin-right: 4px;
    padding: 1px 10px;
    text-shadow: 0 1px rgba(255, 255, 255, 0.3);
}
b.tive6 {
    background-color: rgba(170, 117, 250, 0.5);
    border-radius: 5px 10px 10px 15px;
    color: #620099;
    line-height: 28px;
    margin-right: 4px;
    padding: 1px 10px;
    text-shadow: 0 1px rgba(255, 255, 255, 0.3);
}
b.tive7 {
    background-color: #FF6600;
    border-radius: 5px 10px 10px 15px;
    color: #FFFFFF;
    line-height: 29px;
    margin-right: 4px;
    padding: 1px 10px;
    text-shadow: 0 1px #000000;
}
b.tive8 {
    background-color: #FF99FF;
    border-radius: 5px 10px 10px 15px;
    color: #FFFFFF;
    line-height: 29px;
    margin-right: 4px;
    padding: 1px 10px;
    text-shadow: 0 1px #000000;
}
/*Carteles de estado del post*/
.w_fijo {
	padding: 15px;
	margin: 10px;
	 background: #A7F7AF url(../images/icons/sticky.png) no-repeat 15px center;
	border: 2px dashed #196A00;
	color: #196A00;
	font-weight: bold;
	text-align: center;
	font-size: 14px;
}

.w_fijo2 {
	padding: 2px;
	margin: 10px;
	background: #A7F7AF url(../images/icons/sticky.png) no-repeat 15px center;
	border: 2px dashed #196A00;
	color: #196A00;
	font-weight: bold;
	text-align: center;
	font-size: 14px;
}
.w_fijo3 {
	padding: 10px;
	margin: 15px;
	 background: #A7F7AF url(../images/icons/sticky3.png) no-repeat 15px center;
	border: 2px dashed #196A00;
	color: #196A00;
	font-weight: bold;
	text-align: center;
	font-size: 14px;
}

.w_visitante {
	padding: 15px;
	margin: 10px;
	 background: #F996AC url(../images/icons/block.png) no-repeat 15px center;
	border: 2px dashed #CA4E6B;
	color: #fbfbfb;
	font-weight: bold;
	text-align: center;
	font-size: 14px;
}
.w_cerrado {
	padding: 15px;
	margin: 10px;
	 background: #FBE3E3 url(../images/icons/lock.png) no-repeat 15px center;
	border: 2px dashed #8D2732;
	color: #006595;
	font-weight: bold;
	text-align: center;
	font-size: 14px;
}
.w_respuesta {
	background: #D8ECFF url(../images/icons/add.png) no-repeat 15px center;
	padding: 15px;
	margin: 10px;
	border: 2px dashed #006595;
	color: #006595;
	font-weight: bold;
	text-align: center;
	font-size: 14px;
}



/* MOD New Style Message Icon */
#newstyleMI { width: 95%; border: 1px solid #7f9db9 }
#newstyleMI input { margin: 5px 10px 5px 15px }


/* //-View Only Boards MOD- START */
/* You can customize here the appearence of the protected areas */
.vob_protected
{
cursor: default;
}

.vob_protected, .vob_protected a:link, .vob_protected a:visited, .vob_protected a:hover
{
color: #666 !important;
text-decoration: none;
cursor: default;
}

/* //-View Only Boards MOD- END */

/* MOD New Style Message Icon */
#newstyleMI { width: 95%; border: 1px solid #7f9db9 }
#newstyleMI input { margin: 5px 10px 5px 15px }


@font-face {
	font-family: 'Conv_PSL244pro';
	src: url('../fonts/PSL244pro.eot');
	src: local('☺'), url('../fonts/PSL244pro.woff') format('woff'), url('../fonts/PSL244pro.ttf') format('truetype'), url('../fonts/PSL244pro.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

#top-wrapper {
	background-image: url('../images/bg-menu-top.png');
	height: 50px;
	background-position: center;
	margin-top: 10px;
}

#top-wrapper .menu-wrapper {
	width: 960px;
	margin: 0 auto;
}

#top-wrapper .menu-wrapper-shadow {
	width: 1187px;
	margin: 0 auto;
}

#top-wrapper .menu-wrapper ul {

}

#top-wrapper .menu-wrapper ul li {

}

#menu {

	position: relative;
	float: left;
	width: 100%;
	padding: 0 20px;
	margin-top: 1px;
}

#menu, #menu ul {
	list-style: none;
}

#menu > li {
	float: left;
	position: relative;
	background: url('../images/left-bar.png') no-repeat right;
	perspective: 1000px;
}

#menu > li:first-child {

}

#menu a {
	font-family: 'Conv_PSL244pro';
	display: block;
	position: relative;
	z-index: 10;
	padding: 16px 18px 8px 18px;
	text-decoration: none;
	color: #FFF;
	line-height: 1;
	height: 22px;
	font-size: 18px;
	letter-spacing: 0.1em;
	background: rgba(0, 0, 0, 0);
	text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.9);
	transition: all .25s ease-in-out;
}

#menu > li:hover > a {
	background: #0160a9 url('../images/bg-a.png') no-repeat;
	color: #f0a71f;
	text-shadow: none;
	text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.9);
}

#menu li ul {
	position: absolute;
	left: 0;
	z-index: 1;
	width: 200px;
	padding: 0;
	opacity: 0;
	visibility: hidden;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	background: transparent;
	overflow: hidden;
	transform-origin: 50% 0%;
}

#menu li:hover ul {

	padding: 15px 0;
	background: #333;
	opacity: 1;
	visibility: visible;
	box-shadow: 1px 1px 7px rgba(0,0,0,.5);
	animation-name: swingdown;
	animation-duration: 1s;
	animation-timing-function: ease;
}

@keyframes swingdown {
0% {
opacity: .05;
transform: rotateX(90deg);
}

30% {
opacity: 0.9999;
transform: rotateX(-20deg);
animation-timing-function: ease-in-out;
}

65% {
transform: rotateX(20deg);
animation-timing-function: ease-in-out;
}

100% {
transform: rotateX(0);
animation-timing-function: ease-in-out;
}
}

#menu li li a {
	padding-left: 15px;
	font-weight: 400;
	color: #ddd;
	padding: 3px 20px 0px 20px;
	text-shadow: none;
	border-top: dotted 1px transparent;
	border-bottom: dotted 1px transparent;
	transition: all .15s linear;
}

#menu li li a:hover {
	color: #f0a71f;
	border-top: dotted 1px rgba(255,255,255,.15);
	border-bottom: dotted 1px rgba(255,255,255,.15);
	background: rgba(0,223,252,.02);
}

{

}
#top-wrapper .menu-shadow {
	background-image: url('../images/menu-shadow.png');
	height: 50px;
	width: 1173px;
	background-repeat: no-repeat;
	margin-top: 50px;
	z-index: -1;
	position: absolute;
}

.fontt {
	font-family: 'Conv_PSL244pro';
}
#social-button {
	float: left;
	padding: 0px 6px;
	margin: -3px 0px 0px 0px;
}
#social-button .ico-fb{

}
#social-button .ico-tw{

}
#social-button .ico-gplus{

}
#social-button .ico-chat{

}

#login-block {
	float: left;
}
.ico-connect {
    margin-top: -24px;margin-left: -2px;position: absolute;
}
.username-text {
	padding: 2px 5px;width: 150px;
	border: none !important;
	display: inline-block;
	height: 20px;
	padding: 4px 6px;
	margin-bottom: 10px;
	font-size: 14px;
	line-height: 20px;
	color: #555;
	vertical-align: middle;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.password-text {
	padding: 2px 5px;width: 150px;
	border: none !important;
	display: inline-block;
	height: 20px;
	padding: 4px 6px;
	margin-bottom: 10px;
	margin-right: 84px;
	font-size: 14px;
	line-height: 20px;
	color: #555;
	vertical-align: middle;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.google-search-block {
	position: absolute;
	margin-top: -29px;
	margin-left: 428px;
	
}
.google-search-block .q {
	height: 20px;
	padding: 4px 6px;
	margin-bottom: 10px;
	width: 210px;
	font-size: 14px;
	line-height: 20px;
	color: #555;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.google-search-block .sa {
 font-size: 10px;
}


 
/*** Facebook & Twitter* **/
section {
	margin: -82px 0px 19px 787px;
	width: 200px;
	position: absolute;
}

.fb-inner {
  background: no-repeat url('http://vsxed.github.com/Social-Slides/sprite.png') -41px 0;
  width: 40px;
  height: 40px;
   position: absolute;
  top: 7px;
  left: 16px;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: block;
}
.tw-inner {
  background: no-repeat url('http://vsxed.github.com/Social-Slides/sprite.png') 0 0;
  width: 40px;
  height: 40px;
   position: absolute;
  top: 7px;
  left: 16px;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: block;
}
.social-share {
  width: 72px;
  height: 54px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.social-share:first-of-type {
  margin-right: 10px;
}
.social-share.fb {
  background: -webkit-gradient(radial, 37 56, 25, 36 190, 144, from(rgba(51, 88, 144, 0.99)), to(rgba(51, 88, 144, 0.99))), -webkit-gradient(radial, -10 72, 10, 310 -72, 72, from(rgba(54, 93, 152, 0.99)), to(rgba(54, 93, 152, 0.99))), -webkit-gradient(radial, 72 72, 20, -275 -72, 72, from(rgba(54, 93, 152, 0.99)), to(rgba(54, 93, 152, 0.99))) rgba(61, 105, 171, 0.99) !important;
  background: no-repeat url('http://vsxed.github.com/Social-Slides/sprite.png') 0 -47px;
}
.social-share.tw {
  background: -webkit-gradient(radial, 37 56, 25, 36 190, 144, from(rgba(56, 168, 186, 0.99)), to(rgba(56, 168, 186, 0.99))), -webkit-gradient(radial, -10 72, 10, 310 -72, 72, from(rgba(58, 175, 194, 0.99)), to(rgba(58, 175, 194, 0.99))), -webkit-gradient(radial, 72 72, 20, -275 -72, 72, from(rgba(58, 175, 194, 0.99)), to(rgba(58, 175, 194, 0.99))) rgba(76, 184, 201, 0.99) !important;
  background: no-repeat url('http://vsxed.github.com/Social-Slides/sprite.png') -73px -47px;
}
.social-share:hover > span {
  top: -29px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.social-share:hover > .cta {
  bottom: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.cta {
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  padding: 6px 0;
  text-align: center;
  width: 72px;
  position: absolute;
  border-radius: 0 0 6px 6px;
  bottom: -60px;
  display: block;
  box-shadow: inset 0 1px 0 0 #ffffff, 0 -1px 0 0 rgba(0, 0, 0, 0.3);
  background-color: #e8e8e8;
  background-image: -webkit-linear-gradient(top left, #e8e8e8, #ffffff);
  background-image: -moz-linear-gradient(top left, #e8e8e8, #ffffff);
  background-image: -ms-linear-gradient(top left, #e8e8e8, #ffffff);
  background-image: -o-linear-gradient(top left, #e8e8e8, #ffffff);
  background-image: linear-gradient(top left, #e8e8e8, #ffffff);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e8e8e8', endColorstr='#ffffff', GradientType=0);;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.cta.tw {
  color: rgba(58, 175, 194, 0.99);
}
.cta.fb {
  color: rgba(54, 93, 152, 0.99);
}


/**** Menu Ler ***/
#menuler {
	margin: 175px 0px 0px 106px;
	position: absolute;
}
.open{
    z-index:6;
	transition: 500ms;
	border-radius:50px;
	width:100px;
	height:100px;
	margin:40px;
	position:absolute;
 
	background-position-x: -19px;
	background-position-y: -20px;
 
  }
  
 
.twitter{
    z-index:5;
	transition: 1000ms;
	border-radius:50px;
	width:0px;
	height:0px;
	margin:75px;
	position:absolute;
	background-image: url(http://uppic.damkwan.com/i/Hd.png);  
	background-size: 99%;
	background-position-x: 6px;
	background-position-y: 5px;
  } 
  
  .ask{
    z-index:5;
	transition: 1000ms;
	border-radius:50px;
	width:0px;
	height:0px;
	margin:75px;
	position:absolute;
	background-image: url(http://uppic.damkwan.com/i/dI.png);  
	background-size: 100%;
	background-position-x: -1px;
	background-position-y: -2px;
  } 
  
  .facebook{
    z-index:5;
	transition: 1000ms;
	border-radius:50px;
	width:0px;
	height:0px;
	margin:75px;
	position:absolute;
	background-image: url(http://uppic.damkwan.com/i/8p.png);
	background-size: 99%;
background-position-x: -1px;
background-position-y: -1px;
  } 
  
  #menuler:hover .twitter
  {
        width:50px;
	    height:50px;
		left: 99px;
top: -17px;
  box-shadow: 1px 4px 23px;
  }
  
   #menuler:hover .ask
  {
        width:50px;
	    height:50px;
		left: 55px;
top: 52px;
  box-shadow: 1px 4px 23px;
  }
  
   #menuler:hover .facebook
  {
        width:50px;
	    height:50px;
		left: -29px;
top: 65px;
  box-shadow: 1px 4px 23px;
  } 
  
  #menuler:hover .open
  {
		transform:rotate(45deg);
-ms-transform:rotate(45deg); /* IE 9 */
-webkit-transform:rotate(45deg);
  }

   /***** Google Icon ***/

  @import "//netdna.bootstrapcdn.com/font-awesome/3.0/css/font-awesome.css";

 
#google-block {
	margin: 276px 0px 0px 543px;
	padding: inherit;
	position: absolute;
}
#searchform{
  display:inline;
  font-size:1em;
  border-radius: 8em;
  border:0.1em solid rgba(218,208,190,1);
  box-shadow:0 0 0.3em rgba(60,60,60,0.4);
  padding:0.3em;
  background:white;
}
#s{
  transition:all 0.2s ease-out;
  width:1px;
  border-radius:0;
  box-shadow:none;
  outline: none;
  padding:0;
  margin:0;
  border:0;
  background-color: transparent;
  opacity:0;
}
#s:focus{
  width:8em;
  opacity:1;
}
.label {
  padding-left: 1px;
  display:inline-block;
  margin-top:0.3em;
  color:rgba(218,208,190,1);
  text-shadow:0 0 0.1em rgba(60,60,60,0.3);
  position: relative;
  left:0.1em;
}

.iconn-search {
	display: inline-block;
	width: 14px;
	height: 14px;
	margin-top: 1px;
	line-height: 14px;
	vertical-align: text-top;
	background: url("http://damkwan.com/Themes/default/img/glyphicons-halflings.png");
	background-position: -48px 158px;
}

.droplist {
 width:80px;
 position: absolute;
 height: 28px;
margin-left: -84px;
background-color: #FFF;
border: 1px solid #CCC;
font: 11px tahoma, Helvetica, sans-serif;
color: #333;
vertical-align: middle;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}


.expandSearch input{
	background-color: #ffffff;
	border: none;
	font-size: 16px;
	padding: 10px 0px 10px 0px;
}


.expandSearch,
.expandSearch input,
.expandSearch a{
	float: left;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.expandSearch{
	border: solid 1px #eeeeee;
	height: 40px;
}

.expandSearch input{
	height: 20px;
	overflow: hidden;
	width: 0px;
	opacity: 0;
}

.expandSearch a{
	display: block;
	padding: 12px 15px 8px 15px;
	background-color: #eeeeee;
}

.showSearch input{
	margin-left: 10px;
	margin-right: 10px;
	width: 200px;
	opacity: 1;
}

.showSearch a{
	background-color: #b3d2f2;
}

.showSearch{
	border-color: #b3d2f2;
	background-color: #FFF;
	height: 40px;
}


/*********** Icon Zoom ***********/

#zoom {
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
#zoom:hover {
	-moz-transform: scale(1.1) rotate(5deg) translate(0px,0px) skew(0deg,0deg);
	-webkit-transform: scale(1.1) rotate(5deg) translate(0px,0px) skew(0deg,0deg);
	-o-transform: scale(1.1) rotate(5deg) translate(0px,0px) skew(0deg,0deg);
	-ms-transform: scale(1.1) rotate(5deg) translate(0px,0px) skew(0deg,0deg);
	transform: scale(1.1) rotate(5deg) translate(0px,0px) skew(0deg,0deg);
}



/*********** Message Layout  *********/

[class*="list-cat"] {display: block;float: left;width: 648px;padding:0px 10px 0px 10px;margin-bottom: -1px;background:#FFF;height: 100px;border: 1px solid #ddd;transition: all 0.5s ease-in-out 0s;}
[class*="list-cat"]:nth-child(2n) {background:#F9FBFC;}
[class*="box-df-cat"]{display: block;float: left;width: 390px;}
[class*="list-cat"] img{width:80px;height: 80px;display: block;float: left; border-radius: 80px;border: 5px solid #f2f2f2;margin-top: 5px;transition: all 0.5s ease-in-out 0s;}
[class*="list-cat"] h3 {float: left;width:390px;margin-left: 10px;font-size: 100%;margin-top: 10px;line-height: 18px;font-weight: normal;max-height: 35px;overflow: hidden;font-weight: bold;}
[class*="list-cat"] p {float: left;	width:390px;height: 35px;overflow: hidden;margin-top: 10px;margin-left: 10px;font-size: 100%;line-height: 18px;font-weight: normal;}
[class*="list-cat"]:hover img {border: 5px solid #ccc;}
[class*="list-cat"]:hover  {background:#f9f9f9;}
[class*="box-date"] {width:150px;height: 80px;display: block;float: right; margin-top: 10px;background-image: url(bg-line-top5.png);background-repeat: no-repeat;background-position: left center;}
[class*="views-cat"] {display: block;float: left;color: #888;width: 110px;font-size: 22px;margin-top: 15px;font-weight: bold;font-family: supermarket;overflow: hidden;height:20px;padding: 0px 0px 0px 40px;}	
[class*="list-cat"] time {display: block;float: left;color: #666;width:110px;font-size: 13px;margin-top: 15px;font-weight: bold;overflow: hidden;height:20px;padding: 0px 0px 0px 30px;text-align: center;}

.powerbybanner{
float: left;
margin: 0px 25px 10px 20px;
}
.main-entry {
	float: left;
	width: 960px;
	/*padding: 5px 0 20px 2px;*/
}

.allwrap{
width:960px;
float:left;
margin-top:5px;

}

.wraptitle{
margin-top:5px;
margin-bottom:5px;
float:left;
}
.wraptitleside{
margin-top:5px;
margin-bottom:5px;
margin-left:10px;
float:left;
}

/******** MORE ********/

.more-1 {
	width: 100px;
height: 38px;
margin-left: 836px;
position: absolute;
}
.more-2 {
	width: 100px;
height: 38px;
margin-left: 562px;
position: absolute;
}
.more-3 {
	width: 100px;
height: 38px;
margin-left: 562px;
position: absolute;
}
.more-4 {
	width: 100px;
height: 38px;
margin-left: 206px;
position: absolute;
}
.more-5 {
	width: 100px;
height: 38px;
margin-left: 533px;
position: absolute;
}
.more-6 {
	width: 100px;
height: 38px;
margin-left: 188px;
position: absolute;
}
.more-7 {
color: #FAD5A8 !important;
margin-left: 156px;
}
.more-8 {
color: #A1DBEE !important;
margin-left: 156px;
}
.more-9 {
color: #6c6a6b !important;
margin-left: 156px;
}
.more-10 {
	width: 100px;
height: 38px;
margin-left: 590px;
position: absolute;
margin-top: 7px;
}
.more-11 {
width: 100px;
height: 38px;
margin-left: 590px;
position: absolute;
margin-top: 3px;
color: #F68227 !important;
}

.more-12 {
	width: 100px;
height: 38px;
margin-top:34px;
margin-left: 533px;
position: absolute;
}

.more-13 {
	width: 100px;
height: 38px;
margin-left: 849px;
margin-top: -36px;
position: absolute;
}
.more-14 {
margin-left: 576px;
color: #DD1E5F !important;
font-weight: bold;
}
.more-15 {
margin-left: 576px;
color: #014E7E !important;
font-weight: bold;
}
.more-16 {
margin-left: 576px;
color: #245201 !important;
font-weight: bold;
}
.more-17 {
margin-left: 576px;
color: #047ABC !important;
font-weight: bold;
}
.more-18 {
margin-left: 576px;
color: #5A049F !important;
font-weight: bold;
}
.more-19 {
width: 50px;
height: 38px;
margin-left: 250px;
position: absolute;
}
.more-20 {
width: 50px;
height: 38px;
margin-left: 250px;
position: absolute;
 
}

.more-21 {
	width: 100px;
height: 38px;
margin-left: 590px;
position: absolute;
margin-top: 7px;
color: #E95712 !important;
}

/* the active button */
.dropmenu li a.active
{
	background: url(../images/theme/menu_gfx.png) no-repeat 100% 0;
	color: #fff;
	font-weight: bold;
}
.dropmenu li a.active span.firstlevel
{
	background: url(../images/theme/menu_gfx.png) no-repeat 0 0;
}
/* the hover effects */
.dropmenu li a.firstlevel:hover, .dropmenu li:hover a.firstlevel
{
	background: url(../images/theme/menu_gfx.png) no-repeat 100% -30px;
	color: #fff;
	cursor: pointer;
	text-decoration: none;
}


.avatar>p>img, .avatar>a>img {
	box-shadow: 10px 5px 5px rgba(0,0,0,.3);	
}

.allwrap{
width:960px;
 
padding: 9px;

}

.wraptitle{
margin-top:5px;
margin-bottom:5px;
float:left;
}
.more-1 {
	width: 100px;
height: 38px;
margin-left: 836px;
position: absolute;
}
/*tabnews */

.tabnewscontent{
width:110px; height:90px; margin-top:5px; float:left; margin-right: 6px; margin-left:6px;
margin-bottom:7px;
line-height: 13px;
}

.tabnewspic{
width:110px; height:70px; float:left;

}
.tabnewstitle{
float:left; height:24px; width:110px; overflow:hidden;
}
.tabnewsfont{
color:#fafafa;
margin-left:5px;
}

.tab-content {
  overflow: auto;
}

.tabs-below > .nav-tabs,
.tabs-right > .nav-tabs,
.tabs-left > .nav-tabs {
  border-bottom: 0;
}

.tab-content > .tab-pane,
.pill-content > .pill-pane {
  display: none;
}

.tab-content > .active,
.pill-content > .active {
  display: block;
}

.tabs-below > .nav-tabs {
  border-top: 1px solid #ddd;
}

.tabs-below > .nav-tabs > li {
  margin-top: -1px;
  margin-bottom: 0;
}

.tabs-below > .nav-tabs > li > a {
  -webkit-border-radius: 0 0 4px 4px;
     -moz-border-radius: 0 0 4px 4px;
          border-radius: 0 0 4px 4px;
}

.tabs-below > .nav-tabs > li > a:hover,
.tabs-below > .nav-tabs > li > a:focus {
  border-top-color: #ddd;
  border-bottom-color: transparent;
}

.tabs-below > .nav-tabs > .active > a,
.tabs-below > .nav-tabs > .active > a:hover,
.tabs-below > .nav-tabs > .active > a:focus {
  border-color: transparent #ddd #ddd #ddd;
}

.tabs-left > .nav-tabs > li,
.tabs-right > .nav-tabs > li {
  float: none;
}

.tabs-left > .nav-tabs > li > a,
.tabs-right > .nav-tabs > li > a {
  min-width: 74px;
  margin-right: 0;
  margin-bottom: 3px;
}

.tabs-left > .nav-tabs {
  float: left;
  margin-right: 19px;
  border-right: 1px solid #ddd;
}

.tabs-left > .nav-tabs > li > a {
  margin-right: -1px;
  -webkit-border-radius: 4px 0 0 4px;
     -moz-border-radius: 4px 0 0 4px;
          border-radius: 4px 0 0 4px;
}

.tabs-left > .nav-tabs > li > a:hover,
.tabs-left > .nav-tabs > li > a:focus {
  border-color: #eeeeee #dddddd #eeeeee #eeeeee;
}

.tabs-left > .nav-tabs .active > a,
.tabs-left > .nav-tabs .active > a:hover,
.tabs-left > .nav-tabs .active > a:focus {
  border-color: #ddd transparent #ddd #ddd;
  *border-right-color: #ffffff;
}

.tabs-right > .nav-tabs {
  float: right;
  margin-left: 19px;
  border-left: 1px solid #ddd;
}

.tabs-right > .nav-tabs > li > a {
  margin-left: -1px;
  -webkit-border-radius: 0 4px 4px 0;
     -moz-border-radius: 0 4px 4px 0;
          border-radius: 0 4px 4px 0;
}

.tabs-right > .nav-tabs > li > a:hover,
.tabs-right > .nav-tabs > li > a:focus {
  border-color: #eeeeee #eeeeee #eeeeee #dddddd;
}

.tabs-right > .nav-tabs .active > a,
.tabs-right > .nav-tabs .active > a:hover,
.tabs-right > .nav-tabs .active > a:focus {
  border-color: #ddd #ddd #ddd transparent;
  *border-left-color: #ffffff;
}


.nav > .disabled > a {
  color: #999999;
}

.nav > .disabled > a:hover,
.nav > .disabled > a:focus {
  text-decoration: none;
  cursor: default;
  background-color: transparent;
}

.navbar {
  *position: relative;
  *z-index: 2;
  margin-bottom: 2px;
  overflow: hidden;
}

.navbar-inner {
  min-height: 50px;
  padding-right: 20px;
  padding-left: 20px;
  background-color: #45aeea;
  background-image: -moz-linear-gradient(top, #54b4eb, #2fa4e7);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#54b4eb), to(#2fa4e7));
  background-image: -webkit-linear-gradient(top, #54b4eb, #2fa4e7);
  background-image: -o-linear-gradient(top, #54b4eb, #2fa4e7);
  background-image: linear-gradient(to bottom, #54b4eb, #2fa4e7);
  background-repeat: repeat-x;
  border: 1px solid #1990d5;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff54b4eb', endColorstr='#ff2fa4e7', GradientType=0);
  *zoom: 1;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
     -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
          box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
}

.navbar-inner:before,
.navbar-inner:after {
  display: table;
  line-height: 0;
  content: "";
}

.navbar-inner:after {
  clear: both;
}

.navbar .container {
  width: auto;
}

.nav-collapse.collapse {
  height: auto;
  overflow: visible;
}

.navbar .brand {
padding: 14px 20px 16px;
font-family: 'Telex', sans-serif;
text-shadow:1px 1px 0 rgba(0, 0, 0, 0.2);
}

.navbar .brand {
display: block;
float: left;
padding: 15px 20px 15px;
margin-left: -20px;
font-size: 20px;
font-weight: 200;
color: #ffffff;
text-shadow: 0 1px 0 #54b4eb;
}s

.navbar .brand:hover,
.navbar .brand:focus {
  text-decoration: none;
}

.navbar-text {
  margin-bottom: 0;
  line-height: 40px;
  color: #777777;
}

.navbar-link {
  color: #777777;
}

.navbar-link:hover,
.navbar-link:focus {
  color: #333333;
}

.navbar .divider-vertical {
  /*height: 40px;
  margin: 0 9px;
  border-right: 1px solid #ffffff;
  border-left: 1px solid #f2f2f2;*/
  height: 30px;
margin: 0 9px;
border-right: 1px solid #cccccc;
border-left: 1px solid #000000;
margin-top: 10px;
}

.navbar .btn,
.navbar .btn-group {
  margin-top: 5px;
}

.navbar .btn-group .btn,
.navbar .input-prepend .btn,
.navbar .input-append .btn,
.navbar .input-prepend .btn-group,
.navbar .input-append .btn-group {
  margin-top: 0;
}

.navbar-form {
  margin-bottom: 0;
  *zoom: 1;
}

.navbar-form:before,
.navbar-form:after {
  display: table;
  line-height: 0;
  content: "";
}

.navbar-form:after {
  clear: both;
}

.navbar-form input,
.navbar-form select,
.navbar-form .radio,
.navbar-form .checkbox {
  margin-top: 5px;
}

.navbar-form input,
.navbar-form select,
.navbar-form .btn {
  display: inline-block;
  margin-bottom: 0;
}

.navbar-form input[type="image"],
.navbar-form input[type="checkbox"],
.navbar-form input[type="radio"] {
  margin-top: 3px;
}

.navbar-form .input-append,
.navbar-form .input-prepend {
  margin-top: 5px;
  white-space: nowrap;
}

.navbar-form .input-append input,
.navbar-form .input-prepend input {
  margin-top: 0;
}

.navbar-search {
  position: relative;
  float: left;
  margin-top: 5px;
  margin-bottom: 0;
}

.navbar-search .search-query {
  padding: 4px 14px;
  margin-bottom: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: normal;
  line-height: 1;
  -webkit-border-radius: 15px;
     -moz-border-radius: 15px;
          border-radius: 15px;
}

.navbar-static-top {
  position: static;
  margin-bottom: 0;
}

.navbar-static-top .navbar-inner {
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
}

.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
  margin-bottom: 0;
}

.navbar-fixed-top .navbar-inner,
.navbar-static-top .navbar-inner {
  border-width: 0 0 1px;
}

.navbar-fixed-bottom .navbar-inner {
  border-width: 1px 0 0;
}

.navbar-fixed-top .navbar-inner,
.navbar-fixed-bottom .navbar-inner {
  padding-right: 0;
  padding-left: 0;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
}

.navbar-static-top .container,
.navbar-fixed-top .container,
.navbar-fixed-bottom .container {
  width: 940px;
}

.navbar-fixed-top {
  top: 0;
}

.navbar-fixed-top .navbar-inner,
.navbar-static-top .navbar-inner {
  -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
     -moz-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

.navbar-fixed-bottom {
  bottom: 0;
}

.navbar-fixed-bottom .navbar-inner {
  -webkit-box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1);
     -moz-box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1);
}

.navbar .nav {
  position: relative;
  left: 0;
  display: block;
  float: left;
  margin: 0 10px 0 0;
}

.navbar .nav.pull-right {
  float: right;
  margin-right: 0;
}

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

.navbar .nav > li > a {
padding: 16px 10px 14px;
font-family: 'Telex', sans-serif;
text-shadow:1px 1px 0 rgba(0, 0, 0, 0.2);
}

.navbar .nav > li > a {
float: none;
padding: 15px 15px 15px;
color: #ffffff;
text-decoration: none;
text-shadow: 0 1px 0 #54b4eb;
}

.navbar .nav .dropdown-toggle .caret {
  margin-top: 8px;
}

.navbar .nav > li > a:focus,
.navbar .nav > li > a:hover {
  color: #333333;
  text-decoration: none;
  background-color: transparent;
}

.navbar .nav > .active > a,
.navbar .nav > .active > a:hover,
.navbar .nav > .active > a:focus {
  color: #555555;
  text-decoration: none;
  background-color: #e5e5e5;
  -webkit-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
     -moz-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
          box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
}

.navbar .btn-navbar {
  display: none;
  float: right;
  padding: 7px 10px;
  margin-right: 5px;
  margin-left: 5px;
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #ededed;
  *background-color: #e5e5e5;
  background-image: -moz-linear-gradient(top, #f2f2f2, #e5e5e5);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#e5e5e5));
  background-image: -webkit-linear-gradient(top, #f2f2f2, #e5e5e5);
  background-image: -o-linear-gradient(top, #f2f2f2, #e5e5e5);
  background-image: linear-gradient(to bottom, #f2f2f2, #e5e5e5);
  background-repeat: repeat-x;
  border-color: #e5e5e5 #e5e5e5 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffe5e5e5', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
     -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
}

.navbar .btn-navbar:hover,
.navbar .btn-navbar:focus,
.navbar .btn-navbar:active,
.navbar .btn-navbar.active,
.navbar .btn-navbar.disabled,
.navbar .btn-navbar[disabled] {
  color: #ffffff;
  background-color: #e5e5e5;
  *background-color: #d9d9d9;
}

.navbar .btn-navbar:active,
.navbar .btn-navbar.active {
  background-color: #cccccc \9;
}

.navbar .btn-navbar .icon-bar {
  display: block;
  width: 18px;
  height: 2px;
  background-color: #f5f5f5;
  -webkit-border-radius: 1px;
     -moz-border-radius: 1px;
          border-radius: 1px;
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
     -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}

.btn-navbar .icon-bar + .icon-bar {
  margin-top: 3px;
}

.navbar .nav > li > .dropdown-menu:before {
  position: absolute;
  top: -7px;
  left: 9px;
  display: inline-block;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-left: 7px solid transparent;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  content: '';
}

.navbar .nav > li > .dropdown-menu:after {
  position: absolute;
  top: -6px;
  left: 10px;
  display: inline-block;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #ffffff;
  border-left: 6px solid transparent;
  content: '';
}

.navbar-fixed-bottom .nav > li > .dropdown-menu:before {
  top: auto;
  bottom: -7px;
  border-top: 7px solid #ccc;
  border-bottom: 0;
  border-top-color: rgba(0, 0, 0, 0.2);
}

.navbar-fixed-bottom .nav > li > .dropdown-menu:after {
  top: auto;
  bottom: -6px;
  border-top: 6px solid #ffffff;
  border-bottom: 0;
}

.navbar .nav li.dropdown > a:hover .caret,
.navbar .nav li.dropdown > a:focus .caret {
  border-top-color: #333333;
  border-bottom-color: #333333;
}

.navbar .nav li.dropdown.open > .dropdown-toggle,
.navbar .nav li.dropdown.active > .dropdown-toggle,
.navbar .nav li.dropdown.open.active > .dropdown-toggle {
  color: #555555;
  background-color: #e5e5e5;
}

.navbar .nav li.dropdown > .dropdown-toggle .caret {
  border-top-color: #777777;
  border-bottom-color: #777777;
}

.navbar .nav li.dropdown.open > .dropdown-toggle .caret,
.navbar .nav li.dropdown.active > .dropdown-toggle .caret,
.navbar .nav li.dropdown.open.active > .dropdown-toggle .caret {
  border-top-color: #555555;
  border-bottom-color: #555555;
}

.navbar .pull-right > li > .dropdown-menu,
.navbar .nav > li > .dropdown-menu.pull-right {
  right: 0;
  left: auto;
}

.navbar .pull-right > li > .dropdown-menu:before,
.navbar .nav > li > .dropdown-menu.pull-right:before {
  right: 12px;
  left: auto;
}

.navbar .pull-right > li > .dropdown-menu:after,
.navbar .nav > li > .dropdown-menu.pull-right:after {
  right: 13px;
  left: auto;
}

.navbar .pull-right > li > .dropdown-menu .dropdown-menu,
.navbar .nav > li > .dropdown-menu.pull-right .dropdown-menu {
  right: 100%;
  left: auto;
  margin-right: -1px;
  margin-left: 0;
  -webkit-border-radius: 6px 0 6px 6px;
     -moz-border-radius: 6px 0 6px 6px;
          border-radius: 6px 0 6px 6px;
}

.navbar-inverse .navbar-inner {
  background-color: #1b1b1b;
  background-image: -moz-linear-gradient(top, #222222, #111111);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#222222), to(#111111));
  background-image: -webkit-linear-gradient(top, #222222, #111111);
  background-image: -o-linear-gradient(top, #222222, #111111);
  background-image: linear-gradient(to bottom, #222222, #111111);
  background-repeat: repeat-x;
  border-color: #252525;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0);
}

.navbar-inverse .brand,
.navbar-inverse .nav > li > a {
  color: #999999;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.navbar-inverse .brand:hover,
.navbar-inverse .nav > li > a:hover,
.navbar-inverse .brand:focus,
.navbar-inverse .nav > li > a:focus {
  color: #ffffff;
}

.navbar-inverse .brand {
  color: #999999;
}

.navbar-inverse .navbar-text {
  color: #999999;
}

.navbar-inverse .nav > li > a:focus,
.navbar-inverse .nav > li > a:hover {
  color: #ffffff;
  background-color: transparent;
}

.navbar-inverse .nav .active > a,
.navbar-inverse .nav .active > a:hover,
.navbar-inverse .nav .active > a:focus {
  color: #ffffff;
  background-color: #111111;
}

.navbar-inverse .navbar-link {
  color: #999999;
}

.navbar-inverse .navbar-link:hover,
.navbar-inverse .navbar-link:focus {
  color: #ffffff;
}

.navbar-inverse .divider-vertical {
  border-right-color: #222222;
  border-left-color: #111111;
}

.navbar-inverse .nav li.dropdown.open > .dropdown-toggle,
.navbar-inverse .nav li.dropdown.active > .dropdown-toggle,
.navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle {
  color: #ffffff;
  background-color: #111111;
}

.navbar-inverse .nav li.dropdown > a:hover .caret,
.navbar-inverse .nav li.dropdown > a:focus .caret {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}

.navbar-inverse .nav li.dropdown > .dropdown-toggle .caret {
  border-top-color: #999999;
  border-bottom-color: #999999;
}

.navbar-inverse .nav li.dropdown.open > .dropdown-toggle .caret,
.navbar-inverse .nav li.dropdown.active > .dropdown-toggle .caret,
.navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle .caret {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}

.navbar-inverse .navbar-search .search-query {
  color: #ffffff;
  background-color: #515151;
  border-color: #111111;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15);
     -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15);
          box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15);
  -webkit-transition: none;
     -moz-transition: none;
       -o-transition: none;
          transition: none;
}

.navbar-inverse .navbar-search .search-query:-moz-placeholder {
  color: #cccccc;
}

.navbar-inverse .navbar-search .search-query:-ms-input-placeholder {
  color: #cccccc;
}

.navbar-inverse .navbar-search .search-query::-webkit-input-placeholder {
  color: #cccccc;
}

.navbar-inverse .navbar-search .search-query:focus,
.navbar-inverse .navbar-search .search-query.focused {
  padding: 5px 15px;
  color: #333333;
  text-shadow: 0 1px 0 #ffffff;
  background-color: #ffffff;
  border: 0;
  outline: 0;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
     -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
}

.navbar-inverse .btn-navbar {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #0e0e0e;
  *background-color: #040404;
  background-image: -moz-linear-gradient(top, #151515, #040404);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404));
  background-image: -webkit-linear-gradient(top, #151515, #040404);
  background-image: -o-linear-gradient(top, #151515, #040404);
  background-image: linear-gradient(to bottom, #151515, #040404);
  background-repeat: repeat-x;
  border-color: #040404 #040404 #000000;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.navbar-inverse .btn-navbar:hover,
.navbar-inverse .btn-navbar:focus,
.navbar-inverse .btn-navbar:active,
.navbar-inverse .btn-navbar.active,
.navbar-inverse .btn-navbar.disabled,
.navbar-inverse .btn-navbar[disabled] {
  color: #ffffff;
  background-color: #040404;
  *background-color: #000000;
}

.navbar-inverse .btn-navbar:active,
.navbar-inverse .btn-navbar.active {
  background-color: #000000 \9;
}


.content-picpost {
	background: #D6F1F9;
	display: block;
	float: left;
	width: 940px;
	height: 327px;
	margin: 10px 0px 10px 10px;
}	
.box-title-picpost {
	display: block;
	float: left;
	width: 200px;
	height: 327px;
	background: #D6F1F9;
	background-image: url(../images/bg-picpost.png);
	background-repeat: no-repeat;
}
.content-picpost h1 a{
	display: block;
	float: left;
	width: 200px;
	height:50px;  
	background-image: url(../images/ico-content-picpost.png);
	background-repeat: no-repeat;
	background-position: 30px 5px;
	font-family: supermarket;
	font-size: 28px;
	padding: 100px 0px 0px 10px;
	text-align: left;
color: #FFF;
}	
.box-picpost {
	margin: 8px 0px 0px 16px;
}
.list-picpost {
	display: block;
	float: left;
	width: 115px;
	padding: 0px 8px 8px 0px;
}
.list-picpost img{
	width: 115px;
	height: 150px;
	display: block;
	float: left;transition: all 0.5s ease-in-out 0s;
}
.list-picpost h3 {
	float: left;	
	width:95px;
	margin-top: 125px;
	font-size: 100%;
	line-height: 18px;
	font-weight:normal;
	height: 15px;
	overflow: hidden;
	background-image: url(../images/bgtext-hover.png);
	color: #FFF;
	padding: 5px 10px 5px 10px;transition: all 0.5s ease-in-out 0s;
	z-index: 99999;  
	position:absolute;
}
.list-picpost-right { 
	padding:0px 0px 15px 0px;
}
.list-picpost-bottom { 
	padding-bottom:0px;
}
.list-picpost:hover img { transform: rotate(8deg) scale(0.938) skew(3deg) translate(0px);-webkit-transform: rotate(8deg) scale(0.938) skew(3deg) translate(0px); -moz-transform: rotate(8deg) scale(0.938) skew(3deg) translate(0px); -o-transform: rotate(8deg) scale(0.938) skew(3deg) translate(0px); -ms-transform: rotate(8deg) scale(0.938) skew(3deg) translate(0px);} 

.viewer_text {
}

.g-search {
	width: 50px !important;
	background: none !important;
	height: 37px !important;
	position: absolute;
	z-index: 100 !important;
	margin: 0px 0px 0px 226px !important;
}

/*Go up	to*/
		 
#toTop { 
width:75px;
background:#545454;
border:2px solid orange;
text-align:center;
padding:0px;
position:fixed;
bottom:5px;
right:10px;
cursor:pointer;
color:#fff;
text-decoration:none; 
}