/* ************************************* */
/* Common styles for the theme           */
/* ************************************* */

/* Normal, standard links. */
a:link
{
	color: #000000;
	text-decoration: none;
}
a:visited
{
	color: #000000;
	text-decoration: none;
}
a: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
{ 
	font: 95%/90% Verdana, Helvetica, sans-serif;
	
}

/* use dark grey for the text, leaving black for headers etc */
body, td, th , tr
{
	color: #000000;
}

/* lets give all forms zero padding/margins */
form
{
	padding: 0px;
	margin: 0px;
}

/* Input boxes - just a bit smaller than normal so they align well. */
input, textarea, button
{
	color: #000000;
	font-family: verdana, sans-serif;
}
input, button
{
	font-size: 90%;
}

textarea
{
	font-size: 100%;
	color: #000000;
	font-family: verdana, sans-serif;
}

/* All input elements that are checkboxes or radio buttons. */
input.check
{
	border: none;
}

/* Selects are a bit smaller, because it makes them look even better 8). */
select
{
	font-size: 90%;
	font-weight: normal;
	color:  #000000;
	font-family: verdana, sans-serif;
}

/* Standard horizontal rule.. ([hr], etc.) */
hr, .hrcolor
{
	height: 1px;
	border: 0;
	color: #000000;
	background-color: #000000;
}

/* By default set the color on these tags as black. */
h1, h2, h3, h4, h5, h6, h7
{
	color: #000000;
	font-size: 1em;
	margin: 0;
	padding: 0;
}

/* No image should have a border when linked. */
a img
{
	border: 0;
}

/* No lines around buttons in Firefox! */
a
{
	outline: none;
}

/* Reset all lists. */
ul, ul li
{
	padding: 0;
	margin: 0;
	list-style: none;
}

/* We can define lists to be lists tho! */
ul.normallist
{
	padding-left: 2em;
}

ul.normallist li
{
	list-style: disc;
}

/* ************************************* */
/* Some handy custom classes             */
/* ************************************* */

.floatright
{
	float: right;
}
.floatleft
{
	float: left;
}

/* Default font sizes: small (8pt), normal (10pt), and large (14pt). */
.smalltext
{
	font-size: 0.8em;
	font-family: verdana, sans-serif;
}
.middletext
{
	font-size: 0.85em;
}
.normaltext
{
	font-size: 1em;
}
.largetext
{
	font-size: 1.4em;
}

/* This style will make sure all headers use the same padding throughout. */
.headerpadding
{
	padding: 0.5em;
}

/* tiny padding used to correct header */
.tinypadding
{
	padding: 1px;
	margin:0 2px; 
}

/* smaller padding used in paragraphs, sections etc */
.smallpadding
{
	padding: 0.2em;
}
/* larger padding used in paragraphs, sections etc */
.largepadding
{
	padding: 0.7em;
}

/* A small space to the next section. */
.marginbottom
{
	margin-bottom: 1em;
}
/* On the top too. */
.margintop
{
	margin-top: 1em;
}
/* remove bold/italic styles */
span.plainstyle
{
	font-weight: normal;
	font-style: normal;
}
/* float a list horizontally */
ul.horizlist
{
	width: 100%;
}
ul.horizlist li
{
	float: left;
	padding: 0.2em 0.4em 0.2em 0.4em;
	vertical-align: top;
}
/* make a inline-list */
ul.nolist li
{
	display: inline;
}
/* Helping style to clear floated items. */
.clearfix:after
{
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearfix
{
	display: inline-block;
}

/* Hides from IE-mac. \*/
* html .clearfix
{
	height: 1%;
}
.clearfix
{
	display: block;
}
/* End hide from IE-mac. */

/* ************************************* */
/* Some specific SMF elements            */
/* ************************************* */

/* A quote, perhaps from another post. */
blockquote
{
	color:  #000000;
	background-color: #D7DAEC;
	border: 1px solid #000000;
	margin: 1px;
	padding: 1px;
	font-size: x-small;
	line-height: 1.4em;
}

/* A code block - maybe even PHP ;). */
code
{
	color:  #000000;
	background-color: #dddddd;
	display: block;
	font-family: "courier new", "times new roman", monospace;
	font-size: x-small;
	line-height: 1.3em;
	/* Put a nice border around it. */
	border: 1px solid  #000000;
	margin: 1px auto 1px auto;
	padding: 1px;
	width: 99%;
	overflow: auto;
	#000000-space: nowrap;
	/* Stop after about 24 lines, and just show a scrollbar. */
	max-height: 24em;
}

/* The "Quote:" and "Code:" header parts... */
.quoteheader, .codeheader
{
	color:  #000000;
	text-decoration: none;
	font-style: normal;
	font-weight: bold;
	font-size: x-small;
	line-height: 1.2em;
	width: 100%;
}

/* For links to change the code stuff... */
.codeoperation
{
	font-weight: normal;
}

/* Styling for BBC tags */
.bbc_color a
{
	color: inherit;
}

.bbc_img
{
	border: 0;
}

.bbc_list
{
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 2em;
}

.bbc_list li
{
	list-style: disc;
}

.bbc_list li li
{
	list-style: circle;
}

.bbc_size
{
	line-height: 1.3em;
}

.bbc_table
{
	font: inherit;
	color: inherit;
}

.bbc_table td
{
	font: inherit;
	color: inherit;
	vertical-align: top;
}

.bbc_u
{
	text-decoration: underline;
}

/* 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;
}

/* The main post box - this makes it as wide as possible. */
.editor
{
	width: 96%;
}

/* Highlighted text - such as search results. */
.highlight
{
	background-color: yellow;
	font-weight: bold;
	color: black;
}

/* A more discreet highlight colour, for selected membergroups etc. */
.highlight2
{
	background-color: #B3F4B0;
	color: black;
}

/* ************************************* */
/* Real common classes                   */
/* ************************************* */

/* Alternating backgrounds for posts, and several other sections of the forum. */
.windowbg, #preview_body
{
	color: #000000;
	background: #dadada;
		padding: 1px;
	border: 1px solid #000000;

}
.windowbg2
{
	color: #000000;
	background:  #efefef;
		padding: 1px;
	border: 1px solid #000000;
}
.windowbg3
{
	color: #000000;
	background: #dadada;
		padding: 1px;
	border: 1px solid #000000;
}	

/* Color for background of posts requiring approval */
.approvebg
{
	color:  #000000;
	background-color: #F6E0D4;
}
/* Color for background of *topics* requiring approval */
.approvetbg
{
	color:  #000000;
	background-color: #E4A17C;
}

/* the today container in calendar */
.calendar_today
{
	background-color: #FFFFFF;
}

/* These are used primarily for titles, but also for headers (the row that says what everything in the table is.) */
.titlebg, tr.titlebg th, tr.titlebg td, .titlebg2, tr.titlebg2 th, tr.titlebg2 td, #credits h3
{
	color: #000000;
	font-style: normal;
	background: url(images/titlebg.jpg) transparent repeat-x;
	padding-left: 10px;
	padding-right: 10px;
}
.titlebg, .titlebg a:link, .titlebg a:visited
{
	font-weight: bold;
	color: #000000;
	font-style: normal;
}

.titlebg a:hover
{
	color: #ffffff;
}
/* same as titlebg, but used where bold text is not needed */
.titlebg2 a:link, .titlebg2 a:visited
{
	color: #000000;
	font-style: normal;
	text-decoration: underline;
}

.titlebg2 a:hover
{
	text-decoration: underline;
}



/* This is used for tables that have a grid/border background color (such as the topic listing.)*/
.bordercolor
{
	border: 1px solid #000000;
	padding: 0px;
}



/* Posts and personal messages displayed throughout the forum. */
.post, .personalmessage
{
	overflow: auto;
	line-height: 1.3em;
	width: 100%;
}
.postarea .post
{
	clear: right;
	float: left;
}
/* add a visual divider between subject and post */
.post .inner
{
	padding-top: 0.7em;
	border-top: solid 1px #000000;
}

/* All the signatures used in the forum.  If your forum users use Mozilla, Opera, or Safari, you might add max-height here ;). */
.signature
{
	clear: right;
	padding: 1em 0 3px 0;
	border-top: solid 1px #000000;
	width: 100%;
	overflow: auto;
	line-height: 1.3em;
}

/* Sometimes there will be an error when you post */
.error
{
	color: red;
}

/* Messages that somehow need to attract the attention. */
.alert
{
	color: red;
}

/* Calendar colours for birthdays, events and holidays */
.birthday
{
	color: #920AC4;
}

.event
{
	color: #078907;
}

.holiday
{
	color: #000080;
}

/* Colours for warnings */
.warn_mute
{
	color: red;
}

.warn_moderate
{
	color: orange;
}

.warn_watch
{
	color: green;
}

a.moderation_link, a.moderation_link:visited
{
	color: red;
	font-weight: bold;
}

.openid_login
{
	background: #000000 url(images/openid.gif) no-repeat;
	padding-left: 18px;
}

/* The AJAX notifier */
#ajax_in_progress
{
	background: #32CD32;
	color: #000000;
	text-align: center;
	font-weight: bold;
	font-size: 18pt;
	padding: 0.4em;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
}

#ajax_in_progress a
{
	color: #000000;
	text-decoration: underline;
	font-size: smaller;
	float: right;
}



/* ------------------ EOTS THEME EDITS -------------------- */


 /*custom theme borders*/
 .customborder
 {
	padding: 0px;
	border: 1px solid #000000;
	margin: 0px;

}



/* moved from index.css*/

/* the linktree */
ul#linktree
{
	clear: both;
	list-style: none;
	margin: 1.5em 0.5em 0.5em 0.5em;
	padding: 0;
}
ul#linktree li
{
	margin: 0;
	padding: 0;
	display: inline;
	font-size: 0.8em;
}
ul#linktree li a
{
	color: #000000;
}
ul#linktree li a:hover
{
	color: #ffffff;
}
ul#linktree li span
{
	font-weight: bold;
}


/*Logo*/

#logo 

{  
background: url('../images/logo.png') no-repeat;
size: 100%;

}



#avwrap
{
    width: 100px;/*avatar width*/
    height: 100px;/*avatar height*/
    float: left;
    margin: 13px 15px 0 0px;/*controls location of avatar and user info*/
	border:2px solid black;
	background:transparent;
}


#bodyframe
{
margin: auto;
background: url(images/bodybg.png) repeat-x #c1c1c1;
padding-left: 20px;
padding-right: 20px;
	border-right: solid 1px #000000;
	border-left: solid 1px #000000;
	border-bottom: solid 1px #000000;
}

#header {
    position: relative;
    height: 141px;
    overflow: hidden;
    background: transparent url('images/headercenter.png') repeat-x;
}

#header-l {
    background: transparent url('images/headerleft.png') no-repeat 0 0;
    padding-left: 34px
}

#header-r {
    background: transparent url('images/headerright.png') no-repeat 100% 0;
    padding-right: 34px
}
#header {
    overflow:hidden;
    height:140px;/*height of image*/
    font-size: 12px;
    font-weight: bold;
    font-style: italic;
	color:#000000;
	min-width:567px;
}
#header a, #header a:visited
{
    color: #ffffff;
    text-decoration: none;
}
#header a:hover
{
    color: #ffffff;
    text-decoration: none;
}
.changerbg
{
background: transparent url('images/changerbg.png') repeat-x;
}

/* Changer buttons. */

.changer{
     list-style: none; 
	 cursor: pointer; 
	 font-size: 6px; 
	 line-height: 9px; 
	 margin-left: 30px;
	 float: left; 
}
.changer li {
	 width: 20px;
	 margin: 3px;
	 float: left; 	 
}
.changer li a {
	 border: 1px solid #3F3F3F;
	 padding: 0 10px;
}
.changer_cornflowerblue a:hover {
	 background: #151b8d;
	 border: 1px solid #000000;	
}
.changer_royalblue a:hover {
	 background: #2554C7;
	 border: 1px solid #000000;
}

.changer_blue a:hover {
	 background: #1589ff;
	 border: 1px solid #000000;	
}
.changer_pastelblue a:hover {
	 background: #b2c7e4;
	 border: 1px solid #000000;
}
.changer_white a:hover {
	 background: #e5e5e5;
	 border: 1px solid #000000;	
}
.changer_grey a:hover {
	 background: #c1c1c1;
	 border: 1px solid #000000;
}
.changer_slategrey a:hover {
	 background: #616d7e;
	 border: 1px solid #000000;	
}
.changer_black a:hover {
	 background: #000000;
	 border: 1px solid #000000;
}
.changer_purple a:hover {
	 background: #4e387e;
	 border: 1px solid #000000;	
}
.changer_mediumorchid a:hover {
	 background: #A74AC7;
	 border: 1px solid #000000;
}
.changer_lilac a:hover {
	 background: #9E7BFF;
	 border: 1px solid #000000;	
}
.changer_paleviolet a:hover {
	 background: #F660AB;
	 border: 1px solid #000000;
}
.changer_cerise a:hover {
	 background: #cc0099;
	 border: 1px solid #000000;	
}
.changer_brightred a:hover {
	 background: #E41B17;
	 border: 1px solid #000000;
}
.changer_red a:hover {
	 background: #800517;
	 border: 1px solid #000000;	
}
.changer_brown a:hover {
	 background: #804000;
	 border: 1px solid #000000;
}
.changer_beige a:hover {
	 background: #CC9966;
	 border: 1px solid #000000;	
}
.changer_khaki a:hover {
	 background: #ADA96E;
	 border: 1px solid #000000;
}
.changer_petrolblue a:hover {
	 background: #597984;
	 border: 1px solid #000000;	
}
.changer_green a:hover {
	 background: #348017;
	 border: 1px solid #000000;
}
.changer_brightgreen a:hover {
	 background: #4CC417;
	 border: 1px solid #000000;
}
.changer_palegreen a:hover {
	 background: #90c890;
	 border: 1px solid #000000;	
}
.changer_mellowyellow a:hover {
	 background: #e1de09;
	 border: 1px solid #000000;
}
.changer_gold a:hover {
	 background: #FBB917;
	 border: 1px solid #000000;	
}
.changer_darkorange a:hover {
	 background: #F87217;
	 border: 1px solid #000000;
}