/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Cartweaver Starting Point CSS © 2002, All Rights Reserved.
You may modify this file to make changes throughout your site.
Last Updated: 6/24/02
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/


/*
Purpose:To make colored form buttons
Application:<input type="button"> only. The .buttons class cannot be used elsewhere
*/
input.buttons{
font:bold 11px Verdana,Arial,Helvetica,sans-serif;
color: #C8D3E1;
background-color: #30435A;
border:2px #6197D1 inset;
}

/*
Purpose:To make colored horizontal rule
Application:Automatic
*/
hr {
color: #999999;
}

/*
Purpose:To make the thin outline on the right and bottom of the table
Application:<table>
*/
.tableborder {
border-top: 0px;
border-right: 1px solid #30435A;
border-bottom: 1px solid #30435A;
border-left: 0px;
}

/*
Purpose:To make thin lines between table cells
Application:Automatic as long as .tableborder is applied to the <table> tag
*/
.tableborder td, .tableborder th{
border-top: 1px solid #30435A;
border-right: 0px;
border-bottom: 0px;
border-left: 1px solid #30435A;
}

/*Purpose:To make sure that deeply nested table's cells
do not inherit the borders given them in the class above.
Application:Automatic
*/
.tableborder table td, .tableborder table th{
border: 0px;
}