﻿/* File: style.css */

body {
font-family:"Arial";
/*	color:red;
	background-color:aqua;
	font-size:xx-large;
*/
}

a:link { color: #0066ff; }
a:visited {	color: #0066FF; }

.sitename {
	text-align: center;
	font-family: "Arial";
	font-size:x-large;
	font-weight:bold;
	color: #808080;
}

.headernav {
	text-align: center;
	font-size: small;
}

.header-right {
	text-align:center;
	font-family: "Arial";
	font-size:xx-small;
	color: #808080;
}

.content {
/*	border: 1px solid #808080; */
	text-align:center;
	font-size: small;
}

.footer {
	text-align: center;
	font-size: xx-small;
}
.textbold {
font-weight: bold;
}
.txt-9pt-Arial {
	font-family:Arial;
	font-size:9pt;
}
.txt-xsmall-Arial {
	font-family:Arial;
	font-size: x-small;
}
.txt-sm-ArialGray {
	font-weight:bold;
	color: #808080;
}
.txt-xxsmall-Arial {
	font-family:Arial;
	font-size: xx-small;
}



/* the 3 classes defining border properties are used around a table within a table */
/* with 2 cells in inside table to create two columns */
/* note the comments that explain how the line where the two cells join in the middle is kept to 1 pixel wide */
/* see associated code in Default2a.dwt that use the 3 border classes below */

/* padding below ets space between table within table borders */

.bordergray {
	border:1px solid #C0C0C0;
	padding: 4px;
}

/* this is a comment */

.bordergrayleft {

	border-top: 1px solid #C0C0C0;
	border-bottom: 1px solid #C0C0C0;
	border-right: 1px solid #C0C0C0;
	border-left: 1px solid #C0C0C0;

}

/* if bordergrayleft right side=1 pixel AND bordergrayright left side=1 pixel then line in middle=2 pixels wide */
/* so border-left below is set to 0 pixels wide*/
/* To assure line in middle of two adjacent cells is only 1 pixel wide */

.bordergrayright {

	border-top: 1px solid #C0C0C0;
	border-bottom: 1px solid #C0C0C0;
	border-right: 1px solid #C0C0C0;
	border-left:0px;
}



/* alternate code below

.bordergray {
 border:6px double #C0C0C0;
}

.bordergray {
	border-width:10px;border-color:blue;border-style:double;
}

.bordergray	{
	border: 1px solid #C0C0C0;
}
	
.bordergray {
	border-top: 1px solid #C0C0C0;
	border-right: 1px solid #C0C0C0;
	border-left: 1px solid #C0C0C0;
	border-bottom: 1px solid #C0C0C0;
	border-style: double;
}

.bordergray {
	border-left: 1px solid #C0C0C0;
	border-right-style: solid;
	border-right-width: 1px;
	border-top: 1px solid #C0C0C0;
	border-bottom-style: solid;
	border-bottom-width: 1px;
}

.bordergray {

	border-top: 1px solid #C0C0C0;
	border-right: 1px solid #C0C0C0;
	border-top: 1px solid #C0C0C0;
	border-bottom: 1px solid #C0C0C0;
}
*/

</style>