/* My CSS File */

/* Define body background color & font */

body
{
	font-family: arial,helvetica;
	font-size: 11pt;
	color: #000000;
	background-color: #FFFFFF;
    text-align: center;
}

/* Create a class of div, named wrapper */
div.wrapper {
   text-align: left;
   margin-left: auto;
   margin-right: auto;
   width: 750px;
   }

/* Create a class of link named 'normal' */

a.normal
{
	font-family: arial,helvetica;
	font-size: 11pt;
	font-weight: normal;
	text-decoration: none;
}
a.normal:link
{
	color: black;
}
a.normal:visited
{
	color: black;
}
a.normal:hover
{
	color: #008B45;
	text-decoration: underline;
	font-weight: bold;
	font-size: 14px;
}
a.normal:active
{
	color: #8b4513;
}

/* Create a class of link named 'navbar'with floating box style */
a.navbar
{
float: left;
width: 150px;
padding: 3px;
font-family: arial,helvetica;
font-size: 10pt;
font-weight: bold;
text-decoration: none;
text-align: left;
}

a.navbar:link
{
color: blue;
background-color: #FFFAF0;
}

a.navbar:visited
{
color: blue;
background-color: #FFFAF0;
}

a.navbar:hover
{
color: white;
background-color: #00BFFF;
}

a.navbar:active
{
color: red;
background-color: #FFFAF0;
}

/* Create a class of table named 'primary' */
table.primary
{
background-color: #ffffff
border: 0
height: 500px;
width: 700px;
}

table.addition
{
background-color: #ffffff
border: 50
width: 700px;
}