/* CSS Document */

* {
	padding: 0px;
	margin: 0px;
	}
	
html, body {
	text-align: center;
	background-color: #a8c99d;
	font-family:Arial, Helvetica, sans-serif;
	color: #000;
	background-image:url(img/background.gif);
	background-repeat:repeat-x;
	}

h1 {
	font-size: 20px;
	font-weight: normal;
	color: #000;
	padding-bottom: 10px;
	text-transform:uppercase;
	}

#container {
	width: 981px;
	margin: 0 auto;
	}
	
	#top {
		width: 981px;
		height: 61px;
		clear: both;
		background-image:url(img/top.jpg);
		}
		
	#top ul {
		padding-left: 586px;
		list-style: none;
		}
		
	#top ul li {
		float: left;
		}	
		
	#top ul li.onama a {
		width: 117px;
		height: 61px;
		display: block;
		background-image:url(img/onama.gif);
		}

	#top ul li.reference a {
		width: 144px;
		height: 61px;
		display: block;
		background-image:url(img/reference.gif);
		}

	#top ul li.kontakt a {
		width: 134px;
		height: 61px;
		display: block;
		background-image:url(img/kontakt.gif);
		}
		
	#top ul li a:hover {
		background-position: 0px -61px;
		}

	
	#header {
		width: 981px;
		height: 216px;
		clear: both;
		background-image:url(img/head.jpg);
		}
		
	#main {
		width: 981px;
		clear: both;
		text-align: left;
		}
		
		#left {
			width: 281px;
			float: left;
			}
			
		#left ul {
			list-style: none;
			}
			
		#left ul li a {
			width: 255px;
			height: 27px;
			line-height: 20px;
			display: block;
			clear: both;
			padding-left: 16px;
			padding-right: 10px;
			padding-top: 7px;
			font-size: 13px;
			text-decoration: none;
			background-image:url(img/sub-back.gif);
			color: #000;
			}

		#left ul li ul {
			background-color: #f1f1f1;
			border: solid 1px #6c8465;

			}

			
		#left ul li ul li a {
			background-image: none;
			height: auto;
			padding-top: 7px;
			padding-bottom: 7px;
			border: solid 1px #ccc;
			}

		#left ul li ul li a:hover {
			color: #fff;
			background-color: #9cbd92;
			}
			
		#left ul li a:hover {
			color: #fff;
			background-position: 0px -34px;
			}
	
		#content {
			width: 700px;
			float: left;
			background-image:url(img/content-background.gif);
			}
		
		#content p {
			padding-bottom: 18px;
			}
			
		#content ul {
			padding-left: 20px;
			}
			
		#content ol {
			padding-left: 20px;
			}
		
			#text {
				padding: 15px;
				padding-left: 20px;
				}
				
			#content-bottom {
				background-image:url(img/content-bottom.gif);
				width: 700px;
				height: 18px;
				font-size: 4px;
				}
			
	#footer {
		width: 981px;
		clear: both;
		height: 36px;
		padding-top: 17px;
		color: #ccc;
		background-image:url(img/footer-background.gif)
		}
		
	#footer a {
		color: #ccc;
		text-decoration: none;
		}
		
	#footer a:hover {
		color: #fff;
		}
		
		
/* 
* 
*
* menu
*
*/		

.menu {
position:relative; 
z-index:1000;
}

/* hack for IE5.5 */
* html .menu ul {
	margin-left:-16px; ma\rgin-left:0;
	}
	
/* position relative so that you can position the sub levels */
.menu li {
	position:relative;
}

/* get rid of the table */
.menu table {
	position:absolute; 
	top:0; 
	left:0; 
	z-index:100; 
	font-size:1em;
	}

/* hack for IE5.5 */
* html .menu a, * html .menu a:visited {
	width:150px; w\idth:149px;
	}

/* style the link hover */
.menu a:hover{
	color:#fff; 
	background:transparent;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	visibility:hidden;
	position:absolute;
	top:0;
	left:250px; 
}
/* make the second level visible when hover on first level list OR link */
.menu ul :hover ul{
	visibility:visible;
}

/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{
	visibility:hidden;
}

/* keep the fourth level hidden when you hover on second level list OR link */
.menu ul :hover ul :hover ul ul{
	visibility:hidden;
}

/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{ 
	visibility:visible;
}

/* make the fourth level visible when you hover over third level list OR link */
.menu ul :hover ul :hover ul :hover ul { 
	visibility:visible;
}