/* HTML or Element selectors : Standard HTML Tags  for the entire site */

html {
	margin: 0;
	padding: 0;

}
	
body {
	margin: 0;
	padding: 0;
	background-color: #FFFFFF;
	font-size: 90%;
	color: black;
}

h1 {
	font-size: 160%;
	text-align: left;
	font-weight: bold;
}

h2 {
	font-size: 120%;
	text-align: left;
	font-weight: bold;
}

h3 {
	font-size: 110%;
	text-align: left;
	font-style: italic;
	font-weight: bold;
}

h4 {
	font-size: 100%;
	text-align: left;
	font-style: normal;
	font-weight: normal;
}

hr {
	color: #000000;
	background-color: #000000;
}

dt {
	text-align: left;
	font-weight: bold;
	margin-top: 6px;
}

dd {
	text-align: left;
	margin-top: 6px;
	margin-bottom: 12px;
}

ul {list-style-position: outside;}
ol {list-style-position: outside;}
li {text-align: left;margin-top: 6px;}

img {border: none;}
.img {border: none;}
a img {border: none;}

/* Class and ID selectors : 
Solitary class selectors
------------
: = pseudo
. = class 
# = id (works like class but must be unique within the document)

*/

a:link    {color: #0000FF;text-decoration: underline;}
a:visited {color: #0000FF;text-decoration: underline;}        
a:hover   {color: #0000FF;text-decoration: underline;}
a:active  {color: #0000FF;text-decoration: underline;}
 
.justify {}

.left {text-align: left;}
.bold {font-weight: bold;}
.quote {text-align: center;font-style: italic;}

ul.text {list-style-position: outside;list-style: none;}

ul.text li {margin-top: 10px;}

.t1 {font-weight: bold;}

.menuBox {margin: 10px;border:3px groove green;padding:10px;}





	


     



