/* CSS Comment Example */
a:link {color:mediumblue}    /* unvisited link */
a:visited {color:mediumblue} /* visited link */
a:hover {color:green}   /* mouse over link */
a:active {color:red}  /* selected link */
/* The above link properties must appear in the order shown */

body {background-image:url(gif/background.gif); font-family:Verdana; font-size:1.2vw}/* 18px */

button {font-size: max(1.2vw, 6px);
    /* The purpose of the following items is to prevent re-styling of buttons by iOS, on Apple devices */
    border-color: black;
    border-radius: 0;
    border-style: solid;
    border-width: 1px;
    color: black
}

h1 {font-size:4vw; text-align:left}/* 42px */
h2 {font-size:3vw; text-align:left}/* 36px */
h3 {font-size:2vw; text-align:left}/* 24px */
h4 {font-size:1.2vw; text-align:left}

p {font-size:max(1.2vw, 10px); text-align:justify}/* 18px */

select {background:transparent; font-size:max(1.2vw, 6px)} /* select finds a drop-down */ /* 15px */

/* In-line CSS examples follow */
/* style="font-family: Arial" */
/* style="font-family: 'Comic Sans MS'" */
/* style="font-size: 18px" is CSS equivalent of HTML <FONT SIZE=4> */

button.big {font-size:max(1.8vw, 10px)}

.calendarbutton {font-size:max(1.2vw, 6px)} /* dot finds a class */ /* 15px */
#calendartable {font-size:max(1.2vw, 6px)} /* hash finds an id */ /* 15px */

#content {
	margin-left: 13vw;/* 180px */
    margin-right: 1vw/* 18px */
}

#dbcontent {
	margin-left: 6vw;/* 13vw */
    margin-right: 1vw/* 18px */
}

/*

#dbnavmenu {
	background-color: black;
	border-style: solid;
	border-color: white;
	border-width: 0.1vw;
	float: left;
	margin-left: 0.25vw;
	margin-right: 0.5vw;
	padding: 0.1vw;
    width: 4vw;
}
.dbnavoptions:link {
	background-color: green;
	border-style: solid;
	border-color: white;
    border-width: 0.1rem;
    display: block;	
    font-size: 0.75rem;
    color: white;
    padding: 0.44rem;
    text-decoration: none
}
.dbnavoptions:visited {
	background-color: darkred;
	border-color: white;
	color: white
}
.dbnavoptions:hover {background-color:darkred; color:yellow}

*/

#navmenu {
	background-color: black;
	border-style: solid;/* border-style must precede any other border commands */
	border-color: white;
	border-width: 0.1vw;/* 1px */
	float: left;
	margin-left: 0.25vw;/* 6px */
	margin-right: 0.5vw;/* 6px */
	padding: 0.1vw;/* 1px */
    width: 11vw/* 150px */
}
.navoptions:link {
	background-color: navy;
	border-style: solid;/* border-style must precede any other border commands */
	border-color: white;
    border-width: 1px;
    display: block;	
    font-size: 1vw;
    color: white;
    padding: 0.5vw;/* 12px */
    text-decoration: none/* no underline */
}
.navoptions:visited {
	background-color: navy;
	border-color: white;
	color: white
}
.navoptions:hover {background-color:navy; color:red}

p.blue {background-color:transparent; color:navy}
p.bold {font-weight:bold}
p.indent {margin-left:4vw}
p.largeprint {font-size:max(2vw, 10px)}
p.margintopzero {margin-top:0}
    



