/*	Default CSS Styles for the Employee Contact Tables	*/
/*	If embedding styles into a companies own CSS file, must include the 
	ID and CLASS definitions listed below.	*/


/* HTML TAG Style Definitions */
body {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	background-color: #FFFFFF;
	margin: 0px;
}


h1 {
	font-size: 16px;
	line-height: 20px;
	color:#999;
	margin: 10px 0;
	padding: 0;}
h6	{
	font-size: 11px;
	line-height: 12px;
	color: #000;
	margin: 25px 0 10px 0;
	padding: 0;}	
p {	
	font-size: 12px;
	line-height: 16px;
	color: #000;
	margin: 5px 0;
	padding:0;}

a:link {
	text-decoration: underline;
	color: #000;}
a:visited {
	text-decoration: underline;
	color: #660099;}
a:hover {
	text-decoration:underline;
	color: #999999;}
a:active {
	text-decoration: underline;
	color: #000033;}
	
/* ID Style Definitions	*/			

/* Used to style the E-mail Form */	
#emailform {
	font-size: 11px;
	line-height: 15px;
	color: #000;
	margin: 5px 0;
	padding:0;
	clear:both;}	

/* Why DIV explaining the purpose for the Contact Form  */
div#why {
	width: 200px;
	float: right;
	border: 1px solid #FFCC66;
	background-color:#FFFFCC;
	margin: 0 0 2px 5px;
	padding: 5px 10px;}
div#why p {
	font-size: 10px;
	line-height: 13px;
	margin: 3px 0;}	
div#why h3 {
	font-size: 13px;
	line-height: 15px;
	margin: 3px 0 1px 0;}
/* Class to indicate Form Fields that were not verified by Form checker */	
.invalid {
	background-color: #ccc;
	border: 1px solid #CC0000;}			

/* The DIV containing the Employee Table */
#emptable {
	margin: 0;
	padding: 0;
	width: 100%;}

/* Employee Table - ID for entire table */
#employees {
	border: 1px solid #000;
	margin: 5px 10px;
	padding: 0;}

/* For Company CSS Style sheets - must include the HTML Tag styles as part of the #contact definitions */	
#contact {
	margin: 10px 20px;}	

/* ID's for the Biography Pop-up Window */	
#bio {
	padding: 15px;}
	
/*	Biography Header DIV - 
	To display a logo, use Bkgd Image
	and padding to give space for logo to display 
	Hide Biography Title by Hiding H1 tag */
div#bioHead {
	clear:both;
	padding: 0;
	margin: 0 5px 0 5px;}
div#bioHead h1 {
	font-size: 14px;
	line-height: 18px;
	border-bottom: 1px solid #999;
	color:#999;
	margin: 10px 0;
	padding: 0;}
	
/* DIV Containers for Bio Photo */
div#bioImg {
	float:right;} 
div#bioImg img {
	margin: 0 0 10px 10px;
	padding: 0;}
	
/* DIV Containers for Bio Text */
div#bioText {
	float: left;
	width: 300px;
	padding: 0 10px 0 15px;}	
div#bioText h2 {
	font-size: 12px;
	line-height: 18px;
	color:#000;
	margin: 10px 0 5px 0;
	padding: 0;}}	
div#bioText h3 {
	font-size: 11px;
	line-height: 16px;
	font-style: italic;
	font-weight: normal;
	color:#000;
	margin: 5px 0 10px 0;
	padding: 0;}
div#bioText p {
	font-size: 11px;
	line-height: 16px;
	color:#000;
	margin: 10px 0;
	padding: 0;}			


/* Footer so the Image and Text will float properly */	
div#bioFoot {
	clear: both;}		
div#bioFoot h6	{
	font-size: 10px;
	line-height: 12px;
	font-weight: normal;
	font-style: italic;
	text-align:right;
	color: #000;
	margin: 25px 0 10px 0;
	padding: 0;}
div#bioFoot a:link, div#bioFoot a:visited {
	color: #000;
	text-decoration: underline;}
div#bioFoot a:hover {
	color: #999;
	text-decoration: underline;}
div#bioFoot a:active {
	color: #ccc;
	text-decoration: underline;}			
		
/* CLASS Definitions */

/*	Top row of Employee Table
	Used as Header on the Employee Table */	
.emphead {
	background-color:#999;
	color: #fff;
	font-weight: bold;
	font-size: 12px;
	line-height: 16px;
	padding: 2px 5px;
	margin: 0;}
.emphead td{
	padding: 0 5px;}
	
/* Use to control positioning of column title
	Must match the positioning of .emp... classes */	
.headname {
	text-align: left;}	
.headtitle {
	text-align: center;}
.headphone {
	text-align: right;}			

	
/*	Used when grouping list by first level (i.e. Office, Branch, Dept., etc. )
	Acts as a separator within employee list */	
.empgroup {
	font-size: 12px;
	line-height: 16px;
	padding: 1px 5px;
	margin: 0;
	background-color:#CCFFCC;}	
	
/*	Used when grouping list by second level. Acts as a separator within employee list - 
	if company doesn't want this level to show use the display:none  */	
.empdept {
	font-size: 11px;
	line-height: 14px;
	padding: 1px 5px;
	margin: 0;
	background-color: #ede;
	text-transform: uppercase;}	
	
/* 	Alternating Row Background Colors for Employee Table
	Specified within a CFIF statement */	
.row1{
	color:#000;
	font-size: 11px;
	line-height: 15px;
	padding: 2px 5px;
	margin: 0;
	background-color:#FFFFFF;}
.row2{
	color:#000;
	font-size: 11px;
	line-height: 15px;
	padding: 2px 5px;
	margin: 0;
	background-color:#FFFF99;}
		
/*	Used to style employee info within each row, 
	attached to TD containting each item of information */	
.empname {
	text-align: left;
	font-weight: bold;}	
.emptitle {
	text-align: center;
	font-style: italic;}
.empphone {
	text-align: right;
	padding-right: 5px;}
.empicon {
	padding: 0 2px;}		
