
/* overall body setup */
body
{
	margin: 0px;
	padding: 0px;
	background-color: #FFFFFF;
	color: #000000;
	font-family: verdana, helvetica, arial, sans-serif;
	font-size: 0.9em;
	/* background image, to remove just don't have the relevant image */
	background-image: url(images/body_background.gif);
	background-position: top center;
	background-repeat: repeat-y;
}

/* top level container */
div.container
{
	width: 700px;
	margin-left: auto;
	margin-right: auto;
	/* background image, to remove just don't have the relevant image */
	background-image: url(images/container_background.gif);
	background-position: top center;
	background-repeat: repeat-y;	
}

/* left (navigation) column */
div.left_column
{
	padding-left: 3px;
}

/* right (content) column */
div.right_column
{
	background-color: #FFFFFF;
	color: #000000;
	float: right;
	width: 490px;	
}

/* footer */
div.footer
{
	clear: both;
	background-color: #FFC20E;
	color: #000000;
	text-align: center;
	font-size: 0.6em;
	padding-bottom: 3px;
}

/* base anchor behaviour */
a
{
	}
a:hover
{
	}

/* base paragraph dimensions */
p
{
	margin-top: 0px;
	text-align: justify;
}

/* inline image divs */
div.inline_image_right
{
	width: 200px;
	text-align: right;
	float: right;
	margin-left: 4px;
}
div.inline_image_left
{
	width: 200px;
	text-align: left;
	float: left;
	margin-right: 4px;
}
div.image_clear
{
	clear: both;
}


