/* ---	Author:	Mark Richardson (2006) --- */

/* --- 	Deprecated Tags and Classes --- */

/* ---	basic body - removes all margins and padding --- */
body 
{ 	
	margin:0px;padding:0px;
}

/* ---	standard paragraph text --- */
p
{
	font-family:tahoma;
	font-size:12px;
	color:#ffffff;
}

/* ---	header 1 --- */
h1
{
	font-family:tahoma;
	font-size:14px;
	font-weight:bold;
	color:#ffffff;
}

/* ---	header 2 --- */
h2
{
	font-family:tahoma;
	font-size:12px;
	font-weight:bold;
	color:#ffffff;
}

/* ---	text in a table cell --- */
td
{
	font-family:tahoma;
	font-size:12px;
	color:#ffffff;
}

/* ---	used to justify text, use with class tag...
	eg <p class="justified">
*/
.justified
{
	text-align:justify;
}

/* ---	unvisited link --- */
a:link
{
	text-decoration:underline;
   	color:#FFFFFF;
}

/* ---	visited link --- */
a:visited
{
	text-decoration:underline;
   	color:#FFFFFF;
}
  
/* ---	active or hover over link --- */
a:hover
{
	text-decoration:none;
	background-color:#A9B5BD;
  	color:#000000;
}

/* ---	graphical links - remove outline --- */
:active, :focus
{
	outline:none;
}

/* ---	form elements --- */
.form 
{ 
	width:100px;
	height:23px;
	font-family:tahoma;
	font-size:11px;
	border-style: solid;
	border-width: 2px;
	border-color:#FFFFFF;
	background-color:#A9B5BD;
	color:#ffffff;
	margin-left:0px;
	margin-right:0px;
	padding-left:4px;
	padding-right:4px;
}

.textarea 
{ 
	width:163px;
	height:123px;
	font-family:tahoma;
	font-size:11px;
	border-style: solid;
	border-width: 2px;
	border-color:#FFFFFF;
	background-color:#A9B5BD;
	color:#ffffff;
	margin-left:0px;
	margin-right:0px;
	padding-left:4px;
	padding-right:4px;
}

.fancyfirst {font-size:150%; font-family:"Palatino Linotype" "Book Antiqua";}

