/*My stylesheet*/

body   {font-family: verdana, sans-serif;
	text-align: justify;
	margin-left: 3em;			/*This indents the left hand side by 3em */
	margin-right: 3em;			/*This indents the right hand side by 3em */
	border-color: lightsteelblue;
	border-width: 5px;
	border-style: dashed;
	padding: 2em;}				/*This is how much space is between the text and the border */

code	{font-family: 'courier new', monospace;	/*The <code> tag is used to display any programming code*/
	font-size: 0.9em; 
	font-weight: normal;
	letter-spacing: 0px; }

a, 
a:visited {color: midnightblue;
	text-decoration: none; }

a:hover {color: deepskyblue;
	text-decoration: none;}
                 
h3 	{color: indianred; } 

h1 	{text-align: center;
	text-decoration: underline; }
				 
hr	{border-width: 2px; 		/* The <hr /> tag produces a horizontal rule */
	border-style: outset;
	color: steelblue;
	background-color: slateblue;}
				 
pre	{color:	navy; } 		/*<pre> is used for preformatted text, i.e. it will display exactly
					 as it is written in your text editor */

table,
td	{border-style: none;
	padding: 15px;}

input,
textarea {border-style: grooved;
	border-color: gray; }				

/*Here are some style classes. These are user defined styles. We will look
 at these later on */
 			
.indent {margin-left: 40px; }                    

.note	{color: darkblue; 
	font-size: smaller;
	font-style: italic;}
				 
