/*your custom style goes in this file*/
/*if you're overriding style blocks from genstyle.css, you only need to include the attributes you're overriding, not the whole block*/

/* header: heading text */
.header {
	/*next line added in 6.1.0*/
	color: #000000;
}

/* link: normal links, active: links in use */
A:LINK, A:ACTIVE {
	color : #0264AF;
        text-decoration: none;
}

/* visited: previously visited links */
A:VISITED {
	color: #02608A;
        text-decoration: none;
}

/* whiteheader: heading text used on dark backgrounds (usually fieldnameback) */
.whiteheader {
	color: #FFFFFF;
}

/* fieldnameback: background color for column and row title sections */
.fieldnameback {
	background-color: #0094D6;
	/*these 2 lines added in 5.0*/
	border-right: 1px solid #777; 
	border-bottom: 1px solid #777;
}

/* databack: background color for data areas */
.databack {
	background-color: #f1f1f1;
	/*these 2 lines added in 5.0*/
	border-right: 1px solid #bbb; 
	border-bottom: 1px solid #bbb;
}

/* sideback: background color for side and top frames */
.sideback {
	background-color: #0094D6;
}

#mnav li { /* all list items */
	float: left;
	width: 7em; /* width needed for Opera */
	margin-right: 2px;
	background: #f1f1f1; /*same as "databack" background color */
	border-bottom:1px solid #777;
	border-right:1px solid #777;
	border-top:1px solid #f1f1f1; /*same as "databack" background color */
	border-left:1px solid #f1f1f1; /*same as "databack" background color */
}

/*small boxes for letters on the surnames page, also for pagination on other pages*/
.snlink {
	padding:4px 5px 3px 5px;
	border-bottom:1px solid #999;
	border-right:1px solid #999;
	border-top:1px solid #ddd;
	border-left:1px solid #ddd;
	background-color:#f1f1f1; /*same as "databack" background color */
	color:black;
	text-decoration:none;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}

a.snlink:hover, .snlinkact {
	background-color:#0094D6; /*same as "fieldnameback" background color */
	color:#fff;
}

a.lightlink2:link, a.lightlink2:visited { 
  color: #0264AF; 
 
}

a.lightlink2:hover, a.lightlink2:active { 
  color: #0094D6; 
 
}