/************ 
JITCORP All Rights Reserved
Copyright © 2006

Author: Mike Schmid
Tech Support
612.216.1971

For more information about CSS Style Sheets
Visit: http://www.w3schools.com/css/
****************/

/*
Main Page Styles
These styles are applied to each page of the website.
Sizes are caluclated by Percent. 100% is the standard.
If there is a class that you do not want, then just delete the 
class. 
For example,
  You have Class = "border" but you do not want a border.
  By deleting the class and saving the file, there will
  be no more borders throughout the site.
*/
body {
	font-family: "Arial", "Helvetica", "sans-serif";
	font-size: 100%;
	text-indent: 10px;
}
/* TD stands for a row in a table */
td {  
	font-size: 90%;
}
/* Title bar for each page */
h2 {
	background-position: center;
	text-align: center;
	font-size: 180%;
}
h3 {
	font-size: 100%;
}
/* For buttons, input fields, checkbox or anything field 
that is in a form will display the following characteristics*/
input {
	background-color: #FFFFFF;
	color: #000000;
	border-right: 1px solid #EDAF1F;
	border-bottom: 1px solid #EDAF1F;
	border-left: 1px solid #DFD7B3;
	border-top: 1px solid #DFD7B3;
}
p {
	text-indent: 0px;
}
/***********
 Classes 
Anything that contains "." is a class. When <class = " "> is called, 
then the characteristics in that class will be used.  
 ***********/
p.indent {
	text-indent: 0px;
	position: relative;
	margin-left: 35px;
	width: 600px;
}
.bold {
	font-weight: bold;
}
.Status {
background-color: #E3EBF2;
}
.Service {
background-color: #cccccc;
}
.Clean {  
 	font-size: 90%
}
.tdDisabled {  
font-weight: bold; 
color: #FF9900; 
background-color: #CCCCCC
}
/***********
The below graph shows how a general table is layout.
To edit a table on the web, locate the section of the table
and match it with its class.
|----------------------------------------|
|             .textTitle                 |
|----------------------------------------|
|  .ttNum, .ttText, .ttDate, .ttGoTo     |
|----------------------------------------|
|  .tdNum, .tdText, .tdDate, .tdGoTo     |
|                                        |
|                                        |
|                                        |
|                                        |
|----------------------------------------|
***********/
.titleText {
	font-weight: normal;
	color: #000000;
	background-color: #F5D281;
	text-align: center;
	font-size: 95%;
}
/* Columns/Attributes in a table*/
.ttNum, .ttText, .ttDate, .ttGoTo {
	
	font-size: 80%;
	color: #000000;
	background-color: #F8E19C;
	text-align: center;
}
.ttText {
	text-align: left;
}
.ttNum {
	text-align: right;
}

/*
.tdLabel is used if .ttNum bar is placed on the left
side of the table.
*note: Some left nav tables have .tt classes
*/
.tdLabel {  
font-size: 90%;
font-weight: normal; 
color: #000000; 
background-color: #F8E19C; 
text-align: right
}

/* Records/Rows in each table. */
.tdText, .tdDate, .tdNum {
	font-size: 90%;
	text-align: left;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #D0C582;
	background-color: #F4F4E1;
}
.tdText {
	text-align: left;
}
.tdDate, .ttDate, .tdGoTo{
	text-align: center;
}
.tdNum {
	text-align: right;
}

.tdGoTo {
	font-size: 80%;
	font-weight: bold;
	background-color: #C7D6E7;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #80A2C8;
}

/* This creates the underline in each Row
To delete the underline, delete this class*/

.tdUnderLine {
	background-color: #FBEAC4;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FF9900;
}
.tdSign {  
	font-size: 8pt; 
	color: #111111; 
	background-color: #GGGGGG; 
	text-align: Left
	}

.tdTitle {  
	font-size: 90%; 
	color: #000000; 
	background-color: #EFD176; 
	text-align: Right
	}
/* 
All tables that contain a border, it comes
from this class.
To change the borders pattern replace "solid" with:
 	dotted, dashed, double, groove, ridge, inset, outset
*/ 	
.border {
	border: 1px solid #C47500;
}

/*
Standard text sizes that can be used throughout
the website. Only a portion of the site uses them.
To change the whole site, Add a font-size: in the
body tag.
*/
.tdTitleSm { 
	font-size: 80%; 
	text-align: left;
	}
.tdTitleSmR {  
	font-size: 80%; 
	text-align: right;
	}
.tdTextSm {  
	font-size: 100%; 
	text-align: left;
	}
.tdTitleL{  
	font-size: 100%; 
	text-align: left;
	}

.tdTitleNavL {  
	font-size: 90%; 
	text-align: left
	}
.tdTitleNavR {  
	font-size: 90%; 
	text-align: right;
	}
.tdCopyright { 
	font-size: 60%; 
	text-align: center;
	}
	
/* Links throughout the website have the following characteristics
 */
a:link, a:hover, a:visited, a:active {
	text-decoration: none;
	color: #0033FF;
	font-size: 95%;
}

/* Old classes */
SELECT.12select {
	background-color: #FFFFFF;
	color: white;
	font-family: Arial, helvetica;
	font-size: 12px;
	font-weight: bold;
}
.12select SELECT{
	background-color: #FF9900;
	color: white;
	font-family: Arial, helvetica;
	font-size: 12px;
	font-weight: bold;
}
