/* rvstyle.css
 *
 * Notes:
 *  - use font-size:small (Arial 10pt) so IE users can View->Text Size
 *    note that the text is NOT small in IE 5.x!
 */

body, table {
	font-family: Arial, Helvetica, Sans-Serif;
	font-size: small;	/* doesn't work in IE 5.x */
}
h1 {
	color: #009999;		/* aqua */
	font-family: "Comic Sans MS", Arial, Helvetica, Sans-Serif;
	margin-top: 6pt;
	margin-bottom: 4pt; 
}
h2 {
	color: #6633aa;		/* dark purple */
	margin-top: 0pt;	/* used under <hr> */
	margin-bottom: 4pt;
}
h3 {
	color: #aa6633;		/* brown */
	font-size: larger;	/* for Mac */
	margin-top: 12pt;
	margin-bottom: 3pt;
	border-bottom : 1px solid #cccccc;
	width: 100%;
}
h4 {
	color: #606000;		/* olive */
	margin-top: 6pt;
	margin-bottom: 3pt;
}
h5 {
	font-family: Verdana;
	font-size: small;	/* else it is smaller than the text */
	color: #660066;		/* very dark purple */
	margin-top: 6pt;
	margin-bottom: 3pt;
}
ul {					/* need both margin/padding -left because of diff btw IE5+ and NS6+ */
    margin-left: 0pt;
	margin-top: 2pt;
	margin-bottom: 2pt;
	padding-left: 1.25em;
}
p {
	margin-top: 8pt;
	margin-bottom: 4pt;
}
hr {
	margin-top: 0pt;
	margin-bottom: 0pt;
}
td {
	vertical-align: top;
}
th {
    text-align: center;
}
a {
	color: #0000FF;		/* blue */
	text-decoration : none;
}
a:visited {
	color: #0000FF;		/* blue */
}
a:hover {
	text-decoration : underline;
}
.runtime {
	text-align: right;
	font-style: italic;
	font-weight: bold;
}
.worldruntime {
	vertical-align: middle;
	color: #606000;		/* olive */
	text-align: right;
	font-style: italic;
}
.customer {
	color: #009900;		/* green */
	font-style: italic;
}
.footer {
	font-style: italic;
	font-size: 7pt;
	font-family: Verdana, Geneva, Arial, sans-serif;
	text-align: center;
	background-color: #e0e0e0;
	border-top: 1px solid #888888;
}
.lightgrey {
	background-color: #f0f0f0;
}
.grey {
	background-color: #e0e0e0;
}
.vtitle {
	color: #006622;
}
.note {
	margin-left: 70pt;
	margin-right: 10pt;
	margin-top: 3pt;
	font-weight: bold;
}
.warn {
	color: #ff0000;
	margin-top: 12pt;
	margin-bottom: 12pt;
	text-align: center;
}
.nowrap {
	white-space: nowrap;
 	vertical-align: middle;
	margin-top: 0pt;
	margin-bottom: 0pt;
}
.middle {
 	vertical-align: middle;
}
.center {
	text-align: center;
 	vertical-align: middle;
}
.pad20 {
	width: 20px;
}
.pad40 {
	width: 40px;
}
.noborder {
	border: 0px none;
}
.hidden {
	display: none;
}

@media print {
   body { background: white; }
   #searchForm { display: none; }
}