/*
	Declarations with global affect. Declarations that have no specific class name
	or identifier. Also any declarations that will take place in a master pages,
	so will affect all pages.
*/

BODY
{
	text-align:center;
	margin: 0px;
	padding: 0px;
	background-color:#fff;
	font-size: 10px;
	font-family: Verdana, Arial, Helvetica, sans-serif;	
}

html, body
{
	border:none;
	height:100%;
}

A
{
	color : #666666;
}

h3
{
	color:#5061B2;
}


/* Standard.Master */
/* Applied to a div that wraps all content in page */
#PageRoot
{
	min-width:1024px;
	width: 1024px;
	max-width:1024px;
	padding:0;
	margin:0;
	text-align: center;
}
/* Applied by ID to a div that wraps most of the page, exluding the header */
#SiteBodyDiv
{
	position:relative;
	height:100%;
	width:100%;
	margin:0;
	padding:0;
}
/* Applied by class to a div that wraps most of the page, exluding the header */
.defaultBody
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-align: left;
	font-size: 15px;
	color: #333333;
}
/* Applied to a div that the site header */
#SiteHeader
{
	margin-left:0px;
	margin-right:0px;
}

