/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Cartweaver Administration CSS © 2002, All Rights Reserved.
You may modify this file to make changes throughout your site.
Last Updated: 6/24/02
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

/*
Purpose:Page margins and colors
Application:Automatic
Note:Margin is set for IE Browser only. Set Margins for NS in the body tag if desired.
Additional Info: Learn more about margins and CSS at http://www.dwfaq.com/tutorials/basics/margins.asp
*/
body{
margin:0px;
padding:0px;
color:#333333;
}

select.leftbar{font-family: Arial, Helvetica, sans-serif; font-size:10px;}

/*
Purpose:Default font and text size for listed tags
Application:Automatic
*/
body,table,td,th,p,ol,ul,li {
font-family: Arial, Helvetica, sans-serif;
font-size: 13px;
}

/*
Purpose:The page background color & a custom class (.bodycolor)
to use when you need the same background color as the body.
Application:Automatic to <body>.
.bodycolor Application: <table>,<td>,<p>,<span>,<div>
*/
body, .bodycolor{
background-color:#FFFFFF;
}

/*
Purpose: Mostly used as alternative background color in table cells
Application: <table>,<td>,<p>,<span>,<div>
*/
.bckgrndcolor{
background-color:#CCCCCC;
}

/*
Purpose: Mostly used as alternative background color in table cells
Also since the background color is a yellowish, it is used to highlite information.
Application: <table>,<td>,<p>,<span>,<div>
*/
.rowcolor { 
background-color : #FFFFCC;
}

/*
Purpose:Style all <th> with the specified color text and background color
Application:Automatic
*/
th{
color:#FFFFCC;
background-color:#444444;
font-size: 14px;
}

/*
Purpose:Default document link styles
Application:Automatic
Note: a:hover and a:active are not available in NS4x
*/
a:link{
color:#003366;
}
a:visited{
color:#666699;
}
a:hover{
color:#003366;
text-decoration:none;
}
a:active{
color:#666699;
text-decoration:none;
}

/*
Purpose:Navigation- Plain and Linked Text
Application:<table>,<td>,<p>
Note: How this class is applied may affect earlier browsers.
Be sure to check your application early in the design process, and often.
*/
.nav{
color:#FFFFFF;
background-color:#009966;
}
.nav a:link{
font-weight:bold;
color:#CCCC99;
text-decoration:none;
}
.nav a:visited{
font-weight:bold;
color:#CCCC99;
text-decoration:none;
}
.nav a:hover{
font-weight:bold;
color:#FFFFCC;
text-decoration:none;
}
.nav a:active{
font-weight:bold;
color:#CCCC99;
text-decoration:none;
}

/*
Purpose:Secondary Navigation Plain and Linked Text
Application:<table>,<td>,<p>
*/
.navTwo{
color:#FFFFFF;
background-color:#444444;
}
.navTwo a:link{
font-weight:bold;
color:#CCCC99;
text-decoration:none;
}
.navTwo a:visited{
font-weight:bold;
color:#CCCC99;
text-decoration:none;
}
.navTwo a:hover{
font-weight:bold;
color:#FFFFCC;
text-decoration:none;
}
.navTwo a:active{
font-weight:bold;
color:#CCCC99;
text-decoration:none;
}

/*
Purpose:Used for copyright notice and other text needing "fine print"
Application:<table>,<td>,<p>
*/
.smallprint {
font-size: 10px;
}

/*
Purpose: Used for the page header include, but can serve other purposes
Application:<span>,<table>,<td>,<p>
*/
.header {
font-size: 16px;
font-weight: bold;
color: #009966;
background-color: #000000;
}

/*
Purpose:Used for the page footer include
Application:<span>,<table>,<td>,<p>
*/
.footer {
font-size: 9px;
color: #999999;
}

/*
Purpose: Set the font to sans-serif for IE
Application: Automatic
Note: NS4x uses mono-space font in the .fieldcell class
*/
textarea, select{
font-family:Verdana,Arial,Helvetica,sans-serif;
}

/*
Purpose: Set the font to mono-space for NS4x.
This helps to keep form elements a similar size cross-browser.
Application: Applied to the <td> tag only
Note: NS4x only. Other browsers use the textarea, select defined above
*/ 
/*.fieldcell{
font-family:"Courier New", Courier, mono;
} */

/*
Purpose: Formatting the sorting links that are meant to be small
*/
span.sort_links {
font-size: 9px;
color: #FFFFFF;
}
span.sort_links a:link{
font-weight: bold;
color: #FFFFCC;
text-decoration:none;
}
span.sort_links a:active{
font-weight: bold;
color: #FFFFCC;
text-decoration:none;
}
span.sort_links a:hover{
font-weight: bold;
color: #FFFFFF;
text-decoration:underline;
}
span.sort_links a:visited{
font-weight: bold;
color: #FFFFCC;
text-decoration:none;
}

td.bold_text {
font-weight: bold;
}
span.bold_text {
font-weight: bold;
}

/* highlighter for keywords */
span.highlight {
background-color: yellow;
font-weight: bold;
}

