	
/* Main body Tag */
body
	{
	background-color:#000000;
	color:#FFFFFF;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size:100%;
	margin: auto;
	}

div
    {
    margin: auto;
    text-align: center;
    }

/* Heading Tags */
h1
	{
	/*font-size:200%;*/
	font-weight:bolder;
    margin: 25px 0px 0px 10px;
	}

h2
	{
	/*font-size:150%;*/
	font-weight:bolder;
	}

h3
	{
	/*font-size:125%;*/
	/*font-style:italic;*/
	}
    
img
    {
    text-align: center;
    }

/* Paragraph Tags */
p.code 
	{
	color: blue;
	font-family: "Lucida Console", Monaco, monospace;
	text-indent: 50px;
	}
		
p.note
	{
	color: gray;
	font-family: Tahoma, Geneva, sans-serif;
	font-style: italic;
    text-align: center;
	}


/* Text Positioning Class Selectors */
.center {text-align:center;}
.just {text-align:justify;}
.left {text-align:left;}
.right {text-align:right;}


/*  */
th
	{
	background-color:#ADD8E6;
	}


/*  */
ul 
	{
	list-style:circle;
	}
	
ol 
	{
	list-style:upper-roman;
	}


/** General Rules for CSS Formatting

  1. Do not start an ID name or class name with a number. Won't play nice with Mozilla/Firefox

  2. The id selector only works on a single object specified by the "id=" tag
  Example using id selector.  This applies to the html tag with id="para1"
  #para1
		{
		text-align:center;
		color:red;
		} 

  3. Insert an external Style Sheet
  <head>
  <link rel="stylesheet" type="text/css" href="mystyle.css" />
  </head>
  
  4. Do not leave space between the property value and the units!
    Use "margin-left:20px" instead of "margin-left:20 px"
	
  5. 

*/
