/* CSS File */

/*
	All selectors beginning with '* html' are for IE and will be ignored by firefox.
	The defined styles in selectors described above, override styles for the IE in selectors are not begin with '* html'.
	This way of implementation offers the possibility to design the site without the use of JavaScript
	to describe different styles for different browsers.
*/

/*
	MAIN STYLES
*/
* html {
	margin: 0;
	padding: 0;
	border: 0;
	
	height: 100%;
	max-height: 100%;
	
	/* hide overflow: hidden from IE5/Mac */ 
	/* \*/ 
	overflow: hidden;

	/* */

}

* html body {
	padding: 192px 0 64px 0;

}

body {
	margin: 0;
	padding: 0;
	
	overflow: hidden;

	/*
	background-color: rgb(51, 51, 51);
	*/
	background-color: rgb(32, 32, 32);

	color: rgb(255, 255, 255);
	font-family: "Verdana";
	font-size: 13px;
	
	width: 100%;
	height: 100%;

}

* html #hedaer {

}

#header {
	z-index: 3;
	display: block;
	position: absolute;
	
	margin: 0;
	padding: 0;
	
	top:0;
	left:0;

	width: 100%;
	height: 128px;
	
	text-align: center;
	
	background-image: url(../images/layout/header_04.jpg);
	background-position: center top;
	background-repeat: no-repeat;

}

* html #footer {
	
	left: 0;
	right: 0;
	
	width: 100%;
	
	border-right: 32px solid rgb(32, 32, 32);
	border-left: 256px solid rgb(32, 32, 32);
	

}

#footer {
	display: block;
	position: absolute;

	bottom: 0;
	left: 256px;
	right: 32px;
	
	height: 48px;
		
	line-height: 48px;
	text-align: center;
	font-size: 11px;
	font-weight: bold;
	color: rgb(238, 238, 238);

}

#footer span {
	padding-right: 32px;
	padding-left: 32px;
	

}

#footer a, #footer a:visited {
	text-decoration: none;
	color: rgb(238, 238, 238);

}

#footer a:hover {
	text-decoration: none;
	color: rgb(153, 153, 153);

}

#diamant {
	display: block;
	position: absolute;
	
	top: 20px;
	left: 0;

}

#hsArt {
	display: block;
	position: absolute;
	
	top: 20px;
	right: 0;

}

#header img {
	height: 88px;

}

#banner {
	z-index: 15;
	display: block;
	position: absolute;
	
	top: 136px;
	left: 50%;
	margin-left: -400px;
	
	width: 800px;
	height: 24px;

}

* html #enlargedBlock {
	
	width: 100%;
	height: 100%;

}

#enlargedBlock {
	display: block;
	position: absolute;

	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	
	padding: 64px;
	
	border: 2px solid rgb(223, 171, 13);
	
	background-color: rgb(0, 0, 0);
	
	background-image: url(../images/layout/border_top_01.gif);
	background-position: 0 -2px;
	background-repeat: repeat-x;

}