/* My CSS File */

/* define body background color & font */

body
{
	font-family: arial, helvetica;
	font-size: 12pt;
	color: #330000;
	background-color: #cccc99;
	text-align: left;
	line-height: 22px;
	letter-spacing: 1pt;
	margin: 0 0 0 0;
	padding: 0;
}

#wrapper
{
	/* Set layout width 768p or 48em */
	width: 760px;
	/* Center the layout */
	margin:0 auto;
	background-color: #cccc99;
	padding: 0;
}

/* Style for page header */
#header
{
	margin: 0;
	width: 760px;
	padding-left: 0;
	padding-right: 0;
	padding-top: 30px;
	padding-bottom: 30px;
	background-color: #666633;
	font-family: times;
	font-size: 20pt;
	font-weight: bold;
	font-variant: small-caps;
	text-align: center;
	color: #cccc66;
	clear: both;
}

/* Style for page introduction */
#intro
{
	width: 760px;
	margin-left: 0;
	margin-right: 0;
	margin-top: 16px;
	margin-bottom: 16px;
	padding: 0;
	font-family: arial, helvetica;
	font-size: 13pt;
	font-weight: bold;
	font-variant: small-caps;
	color: #330000;
	text-align: left;
	background-color: #cccc99;
}

/* Style for left sidebar */
#sidebar
{
	float: left;
	width: 180px;
	margin-left: 4px;
	margin-right: 16px;
	margin-top: 10px;
	margin-bottom: 16px;
	background-color: #cccc99;
	padding: 0;
	text-align: left;
	line-height: 40px;
}

/* Style for main content area */
#main
{
	margin-left: 12px;
	margin-right: 0;
	margin-top: 14px;
	margin-bottom: 14px;
	padding: 0;
	font-family: arial, helvetica;
	font-size: 11pt;
	font-weight: normal;
	color: #330000;
	text-align: left;
	background-color: #cccc99;
	line-height: 18px;
	
}

/* Style for footer */
#footer
{
	margin: 0;
	width: 760px;
	height: 42px;
	padding-left: 0;
	padding-right: 4px;
	padding-top: 20px;
	padding-bottom: 4px;
	background-color: #666633;
	font-family: arial, helvetica;
	font-size: 8pt;
	text-align: right;
	color: #330000;
	background-color: #666633;
	clear: both;
}	

/* Create a class of link named 'normal' */

a.normal
{
	font-family: arial,helvetica;
	font-size: 12pt;
	font-weight: bold;	
}
a.normal:link
{
	color: #330000;
	text-decoration: none;
}
a.normal:visited
{
	color: #330000;
	text-decoration: none;
}
a.normal:hover
{
	color: #330000;
	text-decoration: underline;
}
a.normal:active
{
	color: #330000;
	text-decoration: underline;
}

/* Create a class of link named 'main' */

a.main
{
	font-family: times;
	font-size: 12pt;
	font-weight: bold;
	font-variant: small-caps;
}
a.main:link
{	
	text-decoration: none;
	color: #333300;
}
a.main:visited
{
	text-decoration: none;
	color: #333300;
}
a.main:hover
{
	text-decoration: underline;
	color: #330000;
}
a.main:active
{
	text-decoration: underline;
	color: #330000;
}

/* Define table border */

table, td
{
	border: none;
}

/* Create a class of link named 'mainv' */

a.mainv
{
	font-family: times;
	font-size: 14pt;
	font-weight: bold;
	font-variant: small-caps;
	text-decoration: underline;
}
a.mainv:link
{	
	color: #333300;
}
a.mainv:visited
{
	color: #333300;
}
a.mainv:hover
{
	color: #330000;
}
a.mainv:active
{
	color: #330000;
}










