/*------------------------------------------------------------------------------------------------------*/
/*							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 */
}

/* This renders the nice background, backgroundcolor, plus defines the font-size and font-color of the complete site */
body {
	font-size: 12px; 
	background-color: #ffffff;
	color: #1c1c1c;
	height: 100%; /* needed for container min-height - dublet of html, but do not remove else footer will not position correct in IE */
}

/* link to top of page */
#top {
	text-indent: -9999px;
}

/* full website container */
#container { 
	min-height:100%;  /* real browsers */
	height: auto !important;
	height:100%;  /* IE6: treaded as min-height*/
	position: relative;
	width: 100%;
}

/* used to control height in older IE browsers */
body > #container {height: auto; min-height: 100%;}

/* Defines the actual text area of the page */
#content {
	width: 900px;	
	margin: 0 auto;
	text-align: left;
	padding-bottom: 45px; 	/* very important - must be same height as the #bottom margin-top negative value and #bottom height */
}

.contentpadding {
	padding: 12px;
}



/*------------------------------------------------------------------------------------------------------*/

/* 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 h1 fonts are rendered */
#content h1 {
	font-family: 'Century Gothic', verdana, arial;
	font-size: 1.8em;
	padding: 0;
	margin: 0;
	color: #00aeff;
}	

/* Defines how h3 fonts are rendered */
#content #rightcolumn_frontpage h3, #content #rightcolumn h3 {
	font-family: 'Century Gothic', verdana, arial;
	font-size: 1.5em;
	padding: 0 0 .5em 0;
	margin: 0;
	color: #373737;
}	

/* Defines how h3 fonts are rendered */
#content h3 {
	font-family: 'Century Gothic', verdana, arial;
	font-size: 1.5em;
	padding: 0 0 .5em 0;
	margin: 0;
	color: #00aeff;
}	


/* 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: 80%;
	text-align: center;
	margin: 1em;
	height: 1px;
	border-top: 1px solid #cdcdcd;
	border-bottom: 0;
	color: #cdcdcd;
	display: block;
}

