/*------------------------------------------------------------------------------------------------------*/
/*							DO NOT TOUCH THE SETTING BETWEEN THESE FRAMES! 								*/
/*------------------------------------------------------------------------------------------------------*/

/* This makes sure all pages use the same font-family, padding and margin */
* {
	margin: 0;
	padding: 0;
	font-family: verdana, arial, sans-serif;
}

html {
	height:100%; /* needed for container min-height */
}

/* link to top of page */
#top {
	text-indent: -9999px;
}

/* This renders the nice background, backgroundcolor, plus defines the font-size and font-color of the complete site */
body {
	font-size: 11px; 
	background: #fff url(/images/common/backgroundtexture.gif) repeat-x top;
	color: #1c1c1c;
	height:100%; /* needed for container min-height - dublet of html, but do not remove else footer will not position correct in IE */
}

/* full website container */
#container { 
	position: relative; /* needed for footer positioning*/
	margin: 0 auto; /* center, not in IE5 */
	height:auto !important; /* real browsers */
	height:100%; /* IE6: treaded as min-height*/
	min-height:100%; /* real browsers */
}

/* Defines the actual text area of the page */
#content {
	background: #fff url(/images/common/contentbg.gif) repeat-y top;
	width: 699px;	
	margin: 0 auto;
	min-height: 350px;
	padding: 12px;
	text-align: left;
	padding-bottom: 60px !important;	/* very important - creates space between main area and bottom. Without text wraps behind bottom in FF */
}

/*------------------------------------------------------------------------------------------------------*/

/* Defines how paragraph <p></p> are displayed */
#content p {
	padding: 0 0 .7em 0;
}

/* Defines how <strong></strong> fonts are rendered */
#content strong {
	font-weight: bold;
}	

/* Defines how h3 fonts are rendered */
#content h3 {
	padding: 0 0 .5em 0;
	font-size: 150%;
}	

/* Float elements to the right */
#content .floatright {
	float: right;
	margin: 0 0 2px 10px;
}

/* Float elements to the left */
#content .floatleft {
	float: left;
	margin: 0 10px 2px 0;
}

/* Want a nice border on the image? Use this class - etc.: <img src="" class="border"> */
#content img.border {
	border: 1px solid #291b59;
}
/* no border needed - use this class inside etc. tables */
#content img, #content img.noborder {
	border: 0;
}

/* This class is only displayed when the css is disabled - hence etc. when browsing the site with a PDA, screen reader and so on */
.access	{
	display: none;
}

/* horizontal ruler */
hr {
	width: 90%;
	text-align: center;
	margin: 1em;
	height: 1px;
	border-top: 1px solid #cdcdcd;
	border-bottom: 0;
	color: #cdcdcd;
	display: block;
	clear: both;
}


