* {
	margin: 0;
	padding: 0;
	font-family: Arial, Verdana, sans-serif;
	font-size: 11px; 
	line-height: 120%;
}
html, body { 
	width:100%; 
	height:100%;
}
body{
	color: #1A1A1A;
}

a, a:link{
	text-decoration: none;
	color: #1A1A1A;
}
a:hover{
	color: #666666;
	text-decoration: none;
}

.clear{
	clear: both;
}

/* the block used instead of advertisings on top of pages */
.guideBlock{
	width: 560px;
	height: 87px;
	background-color: #aaa;
}
/* cause of boxmodel bug on IE6 browsers */
.guideBlock p{
	color: #ffffff;
	font-size: 16px;
	padding: 10px 10px 10px 10px;
}
/* links in the guide block */
.guideBlock a{
	color: #ffffff;
	font-size: 16px;
	text-decoration: none;
}
.guideBlock a:hover{
	/*color: #000000;*/
}


/* single line used with hr blocks */
.line{
	border: 0;
	border-top: 1px solid #dddddd;
	/*width: 100%;*/
	width: 560px;
	margin-top: 15px;
	margin-bottom: 5px;
	height: 0px;
}
/* line used in the first row */
.topLine{
	margin-top: 0px;
}

/* main navi */
#naviFrame{
	background-color: #fff;
	position: fixed;
	width: 100%;
	min-width: 900px;
	height: 46px;
	z-index: 100;
}

/* flash sub navi */
#fixedFrame{
	background-color: #fff;
	/*background-color: Green;*/
	padding: 0px 20px 10px 10px;
	position: fixed;
	top: 46px;
	bottom: 0;
	width: 220px;
	z-index: 2;
}

/* scrollable frame, includes #content + #adsFrame */
#scrollFrame{
	/*background-color: Lime;*/
	position: absolute;
	left: 250px;
	right: 0;
	top: 0;
	bottom: 0;
	/* use this to hide the subnavi-fixedFrame
	left: 0px;
	z-index: 3;*/
}

/* advertaisings */
#adsFrame{
	/*background-color: Aqua;*/
	position: absolute;
	padding: 0px 10px 10px 10px;
	top: 46px;
	bottom: 0;
	left: 600px; /* #content.width + padding_left + padding_right */
	right: 0px;
	text-align: right;
	z-index: 1;
}


/* main content */
#content{
	/*background-color: Purple;*/
	position: absolute;
	top: 46px;
	bottom: 0;
	left: 0px;
	width: 580px; /* set the width of the content-frame here */
}



