/* Adrian's standard style sheet */

<STYLE type="text/css">

img {text-align: center}

/* Set the main font to be 11pt sans-serif with a rather stretched line spaceing.

   Text width is set to roughly match \rm font in an 11pt LaTeX A4 pagesize document.

   Have a nice left hand margin, which still doesn't cause line overruns on an 800 
   pixel wide display.

*/

body, div, table, tr, th, td {font-family: Verdana, arial, helvetica, sans-serif}

body { 
      text-align: justify;
      font-size: 11pt;
      line-height: 3ex;
      margin-left: 100px; 
      width: 600px;
    }

/* Wide paragraph that uses the whole screen width */
p.wide {width: 760px; margin-left: -80px}


p {
  margin-bottom: 1ex }
p + p {
/*  text-indent: 1.5em;*/
/*  margin-top: 1ex */}

/* Make hyperlinks less fussy by switching off underlining unless the mouse pointer
   is hovering over a link */

a, a:link
{

	text-decoration: none;
	color: blue;
}

a:visited
{

	text-decoration: none;
	color: purple;
}

a:hover
{
	text-decoration: underline;	
}

/* Center top level headings */

h1 {text-align:center}

h2
{
	font-size: 14pt;
	color: black;
	text-decoration: none;
	font-family: Verdana, arial, helvetica, sans-serif}
	margin-bottom: 0;
}

h3
{
	font-size: 11pt;
	color: black;
	text-decoration: none;
	font-family: Verdana, arial, helvetica, sans-serif}
	margin-bottom: 0;
}

/* make an indented paragraph class */

.indented
   {
   padding-left: 30pt;
   padding-right: 30pt;
   }

</STYLE>

