/*
This style sheet defines the styles of the Dead Easy Banjo
pages across all of the DEB pages. The DEB page consists of
a Header, page title, a body of text/photos, and a Trailer.
*/

/* Standardize on the link colors. */

a:link {color:#0000FF;}      /* unvisited link */
a:visited {color:#009000;}  /* visited link */
a:hover {color:#FF00FF;}  /* mouse over link */
a:active {color:#FF0000;}  /* selected link */ 

/*
General purpose centering class for one-off paragraphs, images
etc. in the main body of the text. This is used for hit counters etc.
*/
.center
{
	text-align:center;
}

/*
General purpose alignment of text that is supposed to be the
label of a figure
*/
.figureLabel
{
	text-align: center;
	font-size:1.0em;
	font-weight:bold;
}

/*
The header text is larger than the body text and is
centered.
*/
#header
{
	font-family:"Times New Roman", 
	Times, 
	serif;
	font-size:2.0em;
	font-weight:900;
	text-align:center;
}


/*
The page title is larger than the body text but
smaller than the header text and is
also centered.
*/
#pageTitle
{
	font-family:"Times New Roman", 
	Times, 
	serif;
	font-size:1.5em;
	font-weight:900;
	text-align:center;
}

/*
The main text contains paragraphs and photos and should
be enclosed in a <div id="mainText"> tag.
*/
#mainText
{
}

/*
This sets the style of the paragraphs in the main text
area.
*/	
#mainText p, ol, ul
{
	font-family:"Times New Roman", 
	Times, 
	serif;
	font-size:1.2em;
}	

/*
Images are centered by default in the mainText section
of the page.
*/
#mainText img
   {
   display:block; /*images must be set to block in order use auto margins*/
   margin:0 auto; /*centers images in most browsers*/
   text-align:center; /*centers images in older browsers*/
   } 

/*
The navigation menu consists of an unordered list (ul)
that is contained in a <div id="navMenu"> tag. This ID
and the one below it cause the ul to be distributed horizontally
and centered. For some reason the text-align:center; must be
in the <div> tag and the display:inline must be in the li
and ul tags styles.
*/
#navMenu
{
	font-family:"Times New Roman", 
	Times, 
	serif;
	font-size:1.0em;
	text-align:center;
	display: block;
}

/*
Make the list inline, which apparently means horizontal
orientation.The navigation menu is done like this:
<div id="navMenu">
<ul >
<li><A HREF="#">[Prev]</A></li>
<li><A HREF="#">[Home]</A></li>
<li><A HREF="#">[Next]</A></li>
</ul>
</div>
Apparently, if the list items are inline, the bullets go away
in Firefox. To make sure that there are no bullets, set
list-style-type to none.
*/	
#navMenu	li
{
	display:inline;
	text-align:center;
	list-style-type: none;
}
#navMenu	ul
{
	
	display:inline;
	text-align:center;
	list-style-type: none;
}


/*
The trailer contains the copyright notice and the DEB link logo.
The text is slightly smaller than the normal text and it is
italicized. 
*/
#trailer
{
	font-family:"Times New Roman", 
	Times, 
	serif;
	font-size:0.9em;
	text-align:center;
}

/*
The font in the trailer paragraphs is italic and centered.
*/
#trailer p
{
	font-style:italic;
	text-align:center;
}


