/*
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;
}

/*
Purpose:Default font and text size for listed tags
Application:Automatic
*/
body,table,td,th,p,ol,ul,li {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-style: normal;
}

/*
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:82C9AC;
}

/*
Purpose: Mostly used as alternative background color in table cells
Application: <table>,<td>,<p>,<span>,<div>
*/
.bckgrndcolor{
}

/*
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 : #C5E3D7; 
}

/*
Purpose: styles for Specifications sheets
*/
.spechead {
	font-size: 18px;
	color: D5222F;
	font-weight: bold;
}

.sectiontitle {
	background-color : 82C9AC;
	font-size: 12px;
	border: 82C9AC;
	margin: 0px;
	padding: 5px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #FFFFFF;
}


/*
Purpose:Style all <th> with the specified color text and background color
Application:Automatic
*/
th{
color:#ffffff;
background-color:#003366;
font-size: 12px;
}


h3 {
	color: #000000;
	font-size: 12px;
	margin: 2px;
	margin-top: 25px;
	margin-bottom: 5px;
	border-bottom:1px solid #003366;
}

/*
Purpose:Default document link styles
Application:Automatic
Note: a:hover and a:active are not available in NS4x
*/
a:link{
	text-decoration:underline;
	color: 3366CC;
}
a:visited{
	text-decoration:underline;
	color: 3366CC;
}
a:hover{
	text-decoration:none;
	color: 3366CC;
}
a:active{
	text-decoration:none;
	color: 000000;
}

/*
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{
	background-color:#82C9AC;
}
.nav a:link{
	text-decoration:none;
	color: 3366CC;
	font-size: 11px;
	font-weight: bold;

}
.nav a:visited{
	text-decoration:none;
	color: 3366CC;
	font-size: 11px;
	font-weight: bold;
	
}
.nav a:hover{
	text-decoration:underline;
	color: 3366CC;
	font-size: 11px;
	font-weight: bold;

}
.nav a:active{
	text-decoration:none;
	color: #000000;
	font-size: 11px;
	font-weight: bold;

}

/*
Purpose:Used for copyright notice and other text needing "fine print"
Application:<table>,<td>,<p>
*/
.smallprint {
	font-size: 10px;
}

/*
Purpose: Header Navigation Text
Application:<table>,<td>,<p>
*/
.headertext {
	font-size: 10px;
	font-weight: bold;
}

/*
Purpose: Used for the page header include, but can serve other purposes
Application:<span>,<table>,<td>,<p>
*/
.header {
font-size: 13px;
font-weight: bold;
}

/*
Purpose:Used for the page footer include
Application:<span>,<table>,<td>,<p>
*/
.footer {
	font-size: 9px;
	color: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;

}

/*
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: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: Make an obvious area to display important message.
Application:<div>,<span>,<table>,<td>,<p>
*/ 
.txtalert {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #000000;
}

.prices {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #CC3333;
}

.categories {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	line-height: 1em;
	color: #3366CC;
}

.categories a:link{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-decoration:underline;
	font-weight: bold;
	line-height: 1em;
	color: #3366CC;
	

}
.categories a:visited{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-decoration:underline;
	font-weight: bold;
	line-height: 1em;
	color: #3366CC;
	
}
.categories a:hover{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-decoration:underline;
	font-weight: bold;
	line-height: 1em;
	color: #000000;

}
.categories a:active{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-decoration:underline;
	font-weight: bold;
	line-height: 1em;
	color: #000000;

}

Div.adspace, P.adspace{
	background: #FFFFFF;
	height: 175px;
	width: 135px;
	border: 1px solid #C5E3D7;
	border-collapse: collapse;
}

td.home {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-style: normal;
	background-color: white;
	width: 165px;
	padding: 5px;
}

td.homespacer {
	width: 2px;
	background-color: white;
	padding: 0px;
}

.home a:link{
	text-decoration:underline;
	color: 3366CC;
	font-size: 10px;
	font-weight: bold;
}
.home a:visited{
	text-decoration:underline;
	color: 3366CC;
	font-size: 10px;
	font-weight: bold;
}
.home a:hover{
	text-decoration:none;
	color: 3366CC;
	font-size: 10px;
	font-weight: bold;
}
.home a:active{
	text-decoration:underline;
	color: 000000;
	font-size: 10px;
	font-weight: bold;
}

.button { 
 font: 11px Verdana, Geneva, Arial, Helvetica, sans-serif; 
 background-color: #D7E5F2; 
 color: #102132; 
 margin-left: 0px; 
 margin-top: 3px; 
 margin-bottom: 2px; 
}

.synch {
	color: #cc3333;
}
