/*
==========================================
= COLORS =================================
==========================================
// Default colors
#F0F0F0 - DEFAULT_BGCOLOR' , ""); //
#A0A0A0 - DEFAULT_BGCOLOR_DARKER' , "");
#FFFFFF - DEFAULT_BGCOLOR_LIGHTER' , "");
#D0D0D0 - TD_BGCOLOR_DARK' , ""); // Darker
#E0E0E0 - TD_BGCOLOR_LIGHT' , ""); // Lighter
#FFFF33 - TD_BGCOLOR_HIGHLIGHTED' , ""); // Extra special standout color

*/  

/*
==========================================
= TABLES =================================
==========================================
*/
table {
	width: 625px; /*DEFAULT_TABLE_WIDTH 625*/
	background-color: #F0F0F0; /*DEFAULT_BGCOLOR*/
	border-collapse: collapse;
	border-style: solid;
	border-spacing: 0;
	border-width: 0;
/*	border-color: RED;*/
	margin: 0px;
}

table.frame {
	border-width: 1px;
	border-color: #A0A0A0;
}
/*
==========================================
= TD =====================================
==========================================
*/

td {
	padding: 0; 
}
td.top {
	vertical-align: top;
}
td.center {
	vertical-align: middle;
}
td.bottom {
	vertical-align: bottom;
}




/*
==========================================
= P ======================================
==========================================
*/

P {
	font-family: ariel;
	font-weight: 500;
	font-size: 16px;
	text-align: left;
	color: BLACK; 
	margin: 0 0 0 1px ;
}

/*
==========================================
= H ======================================
==========================================
*/
H1 {
	font-family: ariel;
	font-weight: 500;
	font-size: 16px;
	text-align: left;
	color: BLACK; 
	margin: 0 0 0 1px ;
}
H2 {
	font-family: ariel;
	font-weight: 400;
	font-size: 15px;
	text-align: left;
	color: BLACK; 
	margin: 0 0 0 1px ;
}
H3 {
	font-family: ariel;
	font-weight: 300;
	font-size: 10px;
	text-align: left;
	color: BLACK; 
	margin: 0 0 0 1px ;
}
/*
==========================================
= ALL ELEMENTS ===========================
==========================================
*/
.right {
	text-align: right;
	margin: 0 2px 0 0 ;
}
.center {
	text-align: center;
}
.indent {
	text-indent: 10px;
}
/*==============================*/
/* TEXT SIZE */
.size16 {
	font-size: 16px;
}
.size15 {
	font-size: 15px;
}
.size14 {
	font-size: 14px;
}
.size13 {
	font-size: 12px;
}
.size12 {
	font-size: 12px;
}
.size11 {
	font-size: 10px;
}
.size10 {
	font-size: 10px;
}

/*==============================*/
/* TEXT COLORS */
.highlight {
	color: #0022AF; 
}
.shade {
	color: GRAY; 
}
.white {
	color: WHITE; 
}
.blue {
	color: #0022AF; 
}
.hidden {
	color: #E0E0E0; 
}

/*==============================*/
/* TEXT FONT */
.gothic {
	font-family: 'Copperplate Gothic light' ; 
}

.bold {
	font-weight: 600; 
}

/*
==========================================
= LINKS ==================================
==========================================
*/  

a.lnk1:link {
	text-decoration: none;
}
a.lnk1:visited {
	text-decoration: none;
}
a.lnk1:hover {
	color: #0055AF;
	text-decoration: none;
}
a.lnk1:active {
	text-decoration: none;
}

a.lnk2:link {
	text-decoration: none;
}
a.lnk2:visited {
	text-decoration: none;
}
a.lnk2:hover {
	text-decoration: underline;
}
a.lnk2:active {
	text-decoration: none;
}


/*
==========================================
= SELECT =================================
==========================================
*/  
select.caption {
	width: 140px;
	color: BLACK;
}

select.caption2 {
	width: 140px;
	color: BLACK;
	background: #FFFF99; 
}

