/* The first command sets defaults for everthing withing the 'body' tags - i.e.
   everything on the page!  These aren't set in stone, but match the current
   style on the Astro web pages made with the Mozilla editor. */
body	{color: rgb(255, 255, 255); /* The default font color is black */
	 background-image: url(images/background.jpg);
	 background-position: top; left;
         background-attachment: fixed;
         background-color: rgb(45, 45, 45);
         /* Specifies the default background image, and that it does not scroll, and the color that should use while image does not load */
	 font-family: 'helvetica',sans-serif; /* The default font is
                                                      Times New Roman.  If this
                                                      isn't present, the 
                                                      browser will look for any
                                                      Times font and then any
                                                      serif font */
	 text-align:left} /* The default text-alignment is left */
/* Defaults for the header elements */
h1      {font-size: 2em; /* Twice the standard font-size of the browser */
	 margin-top: 2em; /* Spacings at the top */
         margin-bottom: 2em; /* And at the bottom */
         text-align: center; /* Center the header */
         font-weight: bold} /* Use a bold font */
h2      {font-size: 1.4em; /* h2 is 40% larger than the standard font */
         font-weight: bold; 
         color: rgb(64, 224, 208);
         margin-bottom: 0.8em}
h3      {font-size: 1.1em; /* h3 is 10% larger than the standard font */
         font-weight: bold; 
         margin-bottom: 0.5em}
h4      {font-size: 1.1em; /* h3 is 10% larger than the standard font */ 
	 color: rgb(64, 224, 208);
         margin-bottom: 0.5em}

/* Defaults for the link elements */
a:link	{color: rgb(255, 255, 255);	     /* Links will always be dark blue */
	 text-decoration: underline; /* and underlined and will take the */
	 background: inherit}        /* background color from the rest of */
a:visited{color: rgb(255, 255, 255);            /* the page */
	 text-decoration: underline;
	 background: inherit}
a:active{color: rgb(255, 255, 255); 
	 text-decoration: underline;
	 background: inherit}

td	{vertical-align: center; /* Table 'td' elements will align their */
	 padding: 0.25em 0.25em 0.125em 0.125em} /* contents with the center */
			/* of the row by default and have 0.5 em of padding */

th	{vertical-align: center; /* Table 'th' elements as 'td' but bold */
	 padding: 0.25em 0.25em 0.125em 0.125em;
	 font-weight: bold}

hr	{width: 100%; /* The horizontal rule element streches the full width */
	 height: 2px} /* of the page and has a height of 2 pixels */

.bullet {border: 0px solid; /* The bullet class is used to set up the 'img' */
         width: 2ex;       /* element for the fancy bullets from the Astro */
	 height: 2ex;      /* pages. */
	 vertical-align: middle}

.footer	{margin-top: 4em} /* Four lines of vertical space above the footer */

.indent {margin-left: 2em} /* Element with indented left margin */

.comptype {font-family: 'courier new',courier,monospace; /*computer terminal*/
	font-weight: bold}	/*font for paragraphs, etc.  using */
				/* <p class="comptype> ... </p> */

samp {font-family: 'courier new',courier,monospace; /*computer terminal */
	font-weight: bold} /*font (again) for use inside paragraphs using */
				/* <samp> ... </samp> */

.contents {margin-left: auto;	/* defines the table layout for 'contents': */
	margin-right: auto;      /* equal margin on each side (e.g. centred) */
	padding: 1.5em 1.5em 1.5em 1.5em; /* Padding of 0.5 em on all sides */
	border-width: medium;   /* a solid blue (same as link colour) border */
	border-color: rgb(102, 255, 255);  /* of 'medium' width */
	border-style: solid;
	text-align: left}     /* text centred within the boxes */

.narrow {margin-left: 2em;	/* Indented on both sides */
	 margin-right: 2em}


.areciboshadow {background-image:url('areciboshadow.gif');}


