/* #cc6600 = Darker Copper Background */
/* #cc6633 = Lighter Copper Columns, etc. */
/* #ffff00 = Yellow */

/* Normal, standard links. */
a:link, a:visited
{
	color: #000000; /* Color of text tiltles Default #005177;*/
	background-color: transparent; /* Color behind links default transparent; */
	text-decoration: underline; /* none; */

}
a:hover
{
	color: #ffff00; /* Color of text when hovering Default #000000 */
	background-color: transparent;
	text-decoration: none;
}

/* Navigation links - for the link tree. */
.nav, .nav:link, .nav:visited
{
	color: #000000; /* Links we've aready visited */
	background-color: transparent;
	text-decoration: none;
}
a.nav:hover
{
	font-weight: bold;
	color: #ffff00; /* Home link hover color Default #000000 */
	background-color: transparent;
	text-decoration: underline;
}

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

/* By default (td, body..) use Verdana in black. */
body, td, th
{
	color: #000000; /* Color of Stats text */
	background-color: #cc6633; /* Sets background for entire page Default was no entry */
	font-size: small;
	font-family: verdana, sans-serif;
}

/* Input boxes - just a bit smaller than normal so they align well. */
input, textarea
{
	font-size: 9pt;
	color: #000000;
	font-family: verdana, sans-serif;
	background-color: #afc6db; /* Unsure of what this changes Default #afc6db; */
} 

/* 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: #afc6db; /* Unsure of what this changes Default #afc6db; */

}

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

/* A quote, perhaps from another post. Changes the background color of quotes. Default #dee7ef */
.quote
{
	color: #000000;
	background-color: #cc6600;
	border: 1px solid black;
	margin: 1px;
	padding: 1px;
	font-size: x-small;
}

/* A code block - maybe even PHP ;). */
.code
{
	color: #000000;
	background-color: #cccccc; /* Unsure of what this changes Default #cccccc; */
	border: 1px solid black;
	margin: 1px;
	padding: 1px;
	font-size: x-small;
	line-height: 1.3em;
}

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

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

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

/* Alternating backgrounds... */
.windowbg
{
	color: #000000; /* Unsure of what this changes Default #000000; */
	background-color: #cc6633; /* Background for inside of Tables Default #afc6db; */
}
.windowbg2
{
	color: #000000; /* Color of Text on Tables Default #000000; */
	background-color: #cc6633; /* Background for inside of tables Default #f8f8f8;*/
}

/* 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;
	color: #000000; /* Color of Text in Titles Default White #ffffff; */
	background-color: #cc6633; /* Titles Default #6e94b7 */
}
.titlebg a:hover, .titlebg2 a:hover
{
	color: #ffffff; /* Unsure of what this changes Default #ffffff */
	text-decoration: underline;
}

/* The category headers, page indexes, and such things. */
.catbg, .catbg3
{
	font-weight: bold;
	background-color: #cc6600; /* Background of Category Headers (Default #afc6db) */
	background-image: #cc6600; /* url(images/catbg.gif); */
	color: #000000;
}

/* The borders around things. Blue Color #6394bd default */
.bordercolor
{
	background-color: #000000; /* Inside borders (Default #6394bd) */
}
.tborder
{
	border: 1px solid #000000; /* Inside borders (Default #6394bd) */
}

/* Default font sizes. */
.smalltext
{
	font-size: x-small;
}
.normaltext
{
	font-size: small;
}
.largetext
{
	font-size: large;
}
/* No image should have a border when linked */
a img{
	border: 0;
}

/* The AJAX notifier */
#ajax_in_progress
{
	background: #32cd32; /* Unsure of what this changes Default #32CD32;*/
	color: white;
	text-align: center;
	font-weight: bold;
	font-size: 18pt;
	padding: 3px;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
}