/*
 * Default cascading stylesheet for cvprof report
 *
 * If this file exists, the report generator won't overwrite it, so you should
 * be safe to edit this and later re-run the report
 */

h1, h2, h3 {
	font-family: sans-serif;
}

/* summary/nav styles */
table.index {
	width: 100%;
}
th {
	background: #EEEEFF;
}
td.name {
	width: 100%;
}

a.package, a.class {
	font-weight: bolder;
}
td.percent {
	text-align: right;
}
tt.notcovered_bar {
	color:#ffdddd;
	background-color:#ffdddd;
	font-family: monospace;
}
tt.coveredok_bar {
	color:#ddffdd;
	background-color:#ddffdd;
	font-family: monospace;
}

/* Source code styling */
span.margin {
	color:#888888; background-color:#eeeeee;
}
.notcovered {
	background-color:#ffdddd;
}
.partiallycovered {
	background-color:#ffeedd;
}
.notbytecode {
	color:#aaaaaa;
}

.footer {
	text-align: center;
	font-size: smaller;
}
.mainnav {
	background-color: #EEEEFF;
	padding: 4px;
}
.mainnav > * {
	font-family: sans-serif;
	font-weight: bolder;
	padding: 4px;
}
.nav_current {
	background-color: #00008B;
	color: #FFFFFF;
}
/* stop source code sections getting spaced out */
pre {
	margin:0px;
}


