/*------------------------------------------------------------------------------------------------------*/
/*							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;
}

#vandmaerke {
	z-index: -1000; 
	position: absolute; 
	top: 300px;
	background: transparent url('/images/common/vandmaerke.png') no-repeat top left;
	width: 381px;
	height: 334px;
}

/* Crappy IE5 - IE6 doesn't support PNG fully, and I dont wanna use the JS hacks! * html will only be rendered by these old browsers */
* html #europahousestars {
	z-index: -1000; 
	position: absolute; 
	top: 300px;
	background: url('/images/common/vandmaerke.gif') no-repeat top left;
	width: 381px;
	height: 334px;
}


/* full website container */
#container { 
	min-height:100%;  /* real browsers */
	height: auto !important;
	height:100%;  /* IE6: treaded as min-height*/
	margin: 0 auto -45px; /* the bottom margin is the negative value of the #bottom height */
	position: relative;
	width: 100%;
}



/* Defines the actual text area of the page */
#content {
	width: 900px;	
	margin: 0 auto;
	text-align: left;
	padding-bottom: 60px !important;	/* very important - creates space between main area and bottom. Without text wraps behind bottom in FF */
}

/* used to remove top white space to allow #rightcoloumn top stick to top */
/* .contentpadding_front { 
	padding: 0 12px 12px 12px;
}*/

.contentpadding {
	padding: 12px;
}

#push {
		height: 45px; /* .push must be the same height as .footer */
	}

/*------------------------------------------------------------------------------------------------------*/

/* 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 h1 {
	font-family: 'Century Gothic', verdana, arial;
	font-size: 3em;
	padding: 0;
	margin: 0;
	color: #d30000;
}	

/* Defines how h3 fonts are rendered */
#content h3 {
	font-family: 'Century Gothic', verdana, arial;
	font-size: 1.8em;
	padding: 0 0 .5em 0;
	margin: 0;
	color: #373737;
}	

/* 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;
}


