/* No image should have a border when linked */
background-image: url(images/back.gif);
a img{
border: 0;
}
/* Normal, standard links. */
a:link, a:visited
{
 color: #cc0000;
 background-color: transparent;
 text-decoration: none;
}
a:hover
{
 color: #333333;
 background-color: transparent;
 text-decoration: none;
}

/* Navigation links - for the link tree. */
.nav, .nav:link, .nav:visited
{
 color: #cc0000;
 background-color: transparent;
 text-decoration: underline;
}
a.nav:hover
{
 font-weight: bold;
 color: #cc0000;
 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
{
 color: #333333;
 font-size: small;
 font-family: verdana, arial, helvetica, sans-serif;
}

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

/* 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: 9pt;
 font-weight: normal;
 color: #333333;
 font-family: verdana, arial, helvetica, sans-serif;
 background-color: #f4f4f4;
}

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

/* A quote, perhaps from another post. */
.quote
{
 color: #cc0000;
 background-color: #f7f7f7;
 border: 1px solid red;
 margin: 1px;
 padding: 1px;
 font-size: small;
}

/* A code block - maybe even PHP ;). */
.code
{
 color: #cc0000;
 background-color: #cccccc;
 border: 1px solid red;
 margin: 1px;
 padding: 1px;
 font-size: x-small;
}

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

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

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

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

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

/* Alternating backgrounds... */
.windowbg
{
 color: #cc0000;
 background-color: #f4f4f4;
}
.windowbg2
{
 color: #cc0000;
 background-color: #f4f4f4;
}

/* Titles - such as table headers. */
.titlebg, tr.titlebg td, .titlebg a:link, .titlebg a:visited
{
 font-weight: bold;
 font-style: normal;
 color: #cc0000;
 background-color: #f4f4f4;
}
.titlebg a:hover
{
 color: #CC3300;
 text-decoration: underline;
}

/* The category headers, page indexes, and such things. */
.catbg, .catbg3
{
 font-weight: bold;
 background-color: #990000;
 background-image: url(images/catbg56.gif);
 color: #cc0000;
}

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

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