/* Normal, standard links. */
a:link
{
	color: #11278C;
	background-color: transparent;
	text-decoration: none;
}
a:visited
{
	color: #11278C;
	background-color: transparent;
	text-decoration: none;
}
a:hover
{
	background-color: transparent;
	text-decoration: underline;
}

/* Navigation links - for the link tree. */
.nav, .nav:link, .nav:visited
{
	color: #000000;
	background-color: transparent;
	text-decoration: none;
}
a.nav:hover
{
	font-weight: bold;
	background-color: transparent;
	text-decoration: underline;
}

body
{
	background-color: #638ECE;
}

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

/* By default (td, body..) use Verdana in black. */
body, td, th
{
	color: #000000;
	font-size: small;
	font-family: verdana, Arial, sans-serif;
}

/* Input boxes - just a bit smaller than normal so they align well. */
input, textarea
{
	font-size: 9pt;
	color: #000000;
	font-family: verdana, Arial, sans-serif;
	background-color: #F8F8FA;
}

/* Checkboxes shouldn't have a background color. */
input.check
{
	background-color: transparent;
}

/* Selects are a bit smaller, because it makes them look even better 8). */
select
{
	font-size: 8pt;
	font-weight: normal;
	color: #000000;
	font-family: verdana, sans-serif;
	background-color: #F8F8FA;
}

/* Standard horizontal rule.. */
hr
{
	color: #6394bd;
	background-color: transparent;
}
/* A more colorful hr.. */
.hrcolor
{
	height: 1px;
	border: 0;
	color: #6394bd;
	background-color: #6394bd;
}

/* A quote, perhaps from another post. */
.quote
{
	color: #000000;
	background-color: #F8F8FA;
	border: 1px solid black;
	margin: 1px;
	padding: 1px;
	font-size: x-small;
}

/* A code block - maybe even PHP ;). */
.code
{
	color: #000000;
	background-color: #F8F8FA;
	border: 1px solid black;
	margin: 1px;
	padding: 1px;
	font-size: x-small;
	line-height: 1.3em;
	max-width: 600px; 
	width: expression(this.width > 600 ? 600 : true);
	overflow: auto;
}

/*the pre code */
.pre {
	max-width: 600px; 
	width: expression(this.width > 600 ? 600 : true);
	overflow: auto;
}


/* The "Quote:" and "Code:" header parts... */
.quoteheader, .codeheader, .spoilerheader
{
	color: #000000;
	text-decoration: none;
	font-style: normal;
	font-weight: bold;
	font-size: x-small;
	line-height: 1.2em;
}

.spoiler
{
	color: #000000;
	background-color: #F8F8FA;
	border: 1px solid black;
	margin: 1px;
	padding: 1px;
	font-size: x-small;
}

/* Generally, those [?] icons. */
.help
{
	cursor: help;
	background-color: transparent;
}

/* /me uses this a lot. */
.meaction
{
	color: red;
	background-color: transparent;
}

/* The main post box - this makes it as wide as possible. */
.editor
{
	width: 94%;
}

/* Highlighted text - such as search results. */
.highlight
{
	background-color: #F8F8FA;
	font-weight: bold;
	color: black;
}

/* Alternating backgrounds... */

.windowbg, #preview_body
{
	color: #000000;
	background-color: #dedfdf;
}
.windowbg2
{
	color: #000000;
	background-color: #f7F7f7;
}
.windowbg3
{
	color: #000000;
	background-color: #638ECE;
}
.windowbg4
{
	color: #000000;
	background-color: #f7F7f7;
}
.windowbg4:hover
{
	color: #000000;
	cursor: pointer;
	background-color: #e4edf9;
}

/* Titles - such as table headers. */
.titlebg, tr.titlebg th, tr.titlebg td, .titlebg a:link, .titlebg a:visited, .titlebg2, tr.titlebg2 th, tr.titlebg2 td, .titlebg2 a:link, .titlebg2 a:visited
{
	font-weight: bold;
	font-style: normal;
	font-size: x-small;
	color: #f7F7f7;
	background-color: #11278C;
}
.titlebg a:hover, .titlebg2 a:hover
{
	text-decoration: underline;
}

/* The category headers, page indexes, and such things. */
.catbg, .catbg3
{
	font-weight: bold;
	background-color: #000000;
	color: #f7F7f7;
}
.catbg td, .catbg3 td
{
	font-weight: bold;
	background-color: #000000;
	color: #f7F7f7;
}


.catbg a:link, .catbg a:visited, .catbg3 a:link, .catbg3 a:visited
{
	color: #F8F8FA;
	background-color: transparent;
	text-decoration: none;
}

.catbg a:hover, .catbg3 a:hover
{
	text-decoration: underline;
}


/* The borders around things. */
.bordercolor
{
	background-color: #000000;
}
.tborder
{
	border: 1px solid #000000;
}

/* Default font sizes. */
.smalltext
{
	font-size: x-small;
}
.normaltext
{
	font-size: small;
}
.largetext
{
	font-size: large;
}

#preview_body img, div.post img {
	 /* for CSS 2.0 compliant browsers */
	 max-width: 600px;
	 /* for IE only */
	 width: expression(this.width > 600 ? 600 : true);
}

div.signature img {
	 /* for CSS 2.0 compliant browsers */
	 max-width: 600px;
	 max-height: 120px;
	 /* for IE only */
	 width: expression(this.width > 600 ? 600 : true);
	 height: expression(this.height > 120 ? 120 : true);
}

div.signature a, #preview_body a, div.post a {
	text-decoration: underline;
}

div.quoteheader a {
	text-decoration: none;	
}

/* No image should have a border when linked */
a img{
	border: 0;
}

/* The AJAX notifier */
#ajax_in_progress
{
	background: #e4edf9;
	color: black;
	text-align: center;
	font-weight: bold;
	font-size: 18pt;
	padding: 3px;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
}