/* TWO COLUMN LAYOUT */

body {
	text-align:center; /* IE6 needs this to center the layout in the browser window */
	background-color: #EDE9C4;
	}
#main_wrapper {
	width:849px; /* widths of columns will change proportionately as this width is changed */
	margin-left:auto;  /* centers layout in browser */
	margin-right:auto; /* centers layout in browser */
	text-align:left; /* resets the centering hack for IE6 on the body tag */
	background-image: url(../../../grafika/grafika_03.jpg);
	background-repeat: repeat-y;
}
#header {
	background-image: url(../../../grafika/grafika_01.jpg);
	height: 175px;
	background-color: #EDE9C4;
	background-repeat: no-repeat;
	}
#header2 {
	background-image: url(../../../grafika/grafika_02.jpg);
	height: 57px;
	background-color: #EDE9C4;
	}	
#nav {
	width:25%; /* this width + content width must total 100% */
	float:left;
	}
#nav_tlo {
	background-image: url(../../../grafika/tlo_03.jpg);
	background-repeat: no-repeat;
	}
#content {
	float:left; /* floats on nav and content divs make them sit side by side */
	width:75%; /* this width + nav width must total 100% */
	}
#footer {
	clear:both; /* makes the footer sit below whichever column is longest */
	background-image: url(../../../grafika/grafika_05.jpg);
	height: 96px;
	}
#header_inner, #content_inner, #promo_inner, #header2_inner {
	overflow:hidden; /* clips oversize elements that would otherwise expand divs and break the layout */
	}

#header_inner { 
	/* creates space between the box  and the content */
	}
#header2_inner {
	position: relative;
	left: 225px;
	}	
#nav_inner {
	padding-top: 0em;
	padding-right: 0.8em;
	padding-bottom: 0px;
	padding-left: 0.5em;
	height:200px;
	background-image: url(../../../grafika/tlo_03.jpg);
	background-repeat: no-repeat;
	}
#content_inner {
	padding-top: 0;
	padding-right: 1em;
	padding-bottom: 0;
	padding-left: 1em;
	}
#footer_inner {
	text-align:center;
	top: 25px;
	position:relative;
	left: 280px;
	}
#lewy {
	width:60%; /* this width + content width must total 100% */
	float:left;
	}
#lewy_inner {
	padding-top: 0em;
	padding-right: 0em;
	padding-bottom: 0em;
	padding-left: 0em;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	}
	
#prawy {
	width:35%; /* this width + content width must total 100% */
	float:right;
	}

.olive #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px;
}
.olive #mainContent { 
	margin: 0 0 0 250px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
