/*
RULES
FOR TABLE DEFINITION CONSISTENCY (AND FOR A BETTER CM USAGE), TABLES STYLES
WILL BE DEFINED IN THE FALLOWING MANNER:
[table<stylename>]
[tr<stylename>]
[.td<stylemane>]
EACH ONE IN ITS SECTION BELOW

THIS IS DONE SO THAT THE HTML EDITOR IN THE CONTENT MANAGER APPLICATION CAN
CHANGE THE STYLES FOR ALL ELEMENTS OF A TABLE (TD,TR,TH,TABLE) WHEN A USER
CHANGES THE STYLE FOR A TABLE
*/

 table CLASSES 
.tableDefault {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	border: #888888;
	border-style: solid; 
	border-top-width: 0px; 
	border-right-width: 0px; 
	border-bottom-width: 1px; 
	border-left-width: 1px
}

.tableDefaultHeaders {
	color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	border: #888888;
	border-style: solid; 
	border-top-width: 0px; 
	border-right-width: 0px; 
	border-bottom-width: 1px; 
	border-left-width: 1px;
	background-color: #EEEEEE
}


 table TR 
.trDefault {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px

}

.trDefaultHeaders {
	color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	background-color: #EEEEEE
}


 table TD 
.tdDefault {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	border: #888888;
	border-style: solid; 
	border-top-width: 1px; 
	border-right-width: 1px; 
	border-bottom-width: 0px; 
	border-left-width: 0px
}

.tdDefaultHeaders {
	color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	border: #888888;
	background-color: #EEEEEE;
	border-style: solid; 
	border-top-width: 1px; 
	border-right-width: 1px; 
	border-bottom-width: 0px; 
	border-left-width: 0px
}
