/*Allowed colours: 
aqua, black, blue, fuchsia, gray, green, lime, maroon, navy, olive, purple, red, silver, teal, white, and yellow */

/* Standard Formating */ 
body {
	margin: 10px;
	padding: 0;
	}
	
body, td, th, p, li, h1, h2, h3, h4 { font-family: arial, sans-serif; 
  }
	
/* kill the bottom margin of a paragraph and the top margin of a list,
so there is no line between them when i have a list following a para*/
p  { margin: 1em 0 0 0 }  /* top margin only */
ul { margin: 0 0 0 2em; } /* left margin only, for the bullets */	

	/* special colours/styles */
code{
background:#E5E5E5; 
color:navy;
display:block;
}

output{
background:#BBFFFF; 
color:navy;
display:block;
}

.demo {color:green}
.smaller {font-size:smaller}
.msg {
font-family: Verdana;
color:olive;
font-style:italic; 
}
 
/* i use 'tt' for code within a line (to exclude above style); 
but it is too small for the chosen font so increase its size.*/
tt { 
font-size: larger
}

/* BackTo */
.toTop {
  float:right;	
	color:gray;
	background-color: transparent;
	font-size:8pt;
	font-weight:normal;
	text-decoration:none;
	clear:all;
	}
.toTop a:hover {text-decoration:underline;}



/* navigation links */

.Nav {
text-align: center; 
font-family: Verdana,Arial,Helvetica,sans-serif; 
font-size: 10pt; 
text-decoration: none; 
padding: 0px; 
height: 30px; 
margin-bottom: 10px;}

.Nav a { 
text-decoration: none; 
font-weight: bold  ;
width:140px; 
display:block; 
padding-left: 5px; padding-right: 5px; padding-top: 2px; padding-bottom: 2px;
background: #c66 }

.Nav a:link    { color: #fff2e6; border: 3px outset #C00; }
.Nav a:visited { color: #fff2e6; border: 3px outset #C00; }
.Nav a:hover   { color: #CC0000; background: #FAE8C5; border: 3px outset #FAE8C5; }
.Nav a:active  { color: #fff; border: 3px inset #C00;  }	

.CurrentPage a  {
background: blue;
display:block; 
width:140px; 
border: 3px outset yellow; 
}
.CurrentPage a:link  { color: yellow;
border: 3px outset yellow; 
}
.CurrentPage a:visited  { color: yellow; 
border: 3px outset yellow; 
}

.togBut a {
background: gray;
color:white;
text-decoration:none;
display:block; 
width:80px;
font-size:smaller;
border: 3px outset black;
float: right;

} 


