@charset "iso-8859-2";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	background-color: #CCCCCC;
}

/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/
.twoColElsLtHdr #container {
	width: 61em;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left;
	background-image: url(grafika/tlo2.jpg);
	background-repeat: repeat-y;
	background-position: left;
} 
.twoColElsLtHdr #header {
	margin: 0px;
	padding: 0;
	text-decoration: none;
	background-color: #000033;
} 
#header #menu a {
	font-family: "Trebuchet MS";
	font-size: 16px;
	color: #FFFFFF;
	text-decoration: none;
}

#mainContent p {
	font-family: "Trebuchet MS";
	font-size: 14px;
	color: #FFFFFF;
	margin: 0px;
	padding: 0px;
}
#mainContent h2 {
	font-family: "Trebuchet MS";
	font-size: 14px;
	color: #000000;
	text-align: left;
	font-weight: normal;
	padding: 0px;
	margin-top: 1px;
	margin-right: 0px;
	margin-bottom: 1px;
	margin-left: 0px;
}
#content  h6  {
	font-family: "Trebuchet MS";
	font-size: 14px;
	color: #FFFFFF;
	padding-left: 20px;
	font-weight: normal;
	text-align: left;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	text-decoration: underline;
	}


.twoColElsLtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColElsLtHdr #sidebar1 p" rule.
*/
.twoColElsLtHdr #sidebar1 {
	float: left;
	width: 12em; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0;
	background-image: url(grafika/tlo3.jpg);
}
#mainContent h1 {
	font-family: "Trebuchet MS";
	font-size: 16px;
	color: #000000;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	text-align: center;
	margin-top: 1px;
	margin-right: 0px;
	margin-bottom: 1px;
	margin-left: 0px;
}


/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
.twoColElsLtHdr #mainContent {
	margin-top: 1em;
	margin-right: 1.5em;
	margin-bottom: 2em;
	margin-left: 13em;
	border-left-width: 2px;
	border-left-style: solid;
	border-left-color: #FFFFFF;
} 
#header #menu li {
	font-family: "Trebuchet MS";
	font-size: 16px;
	color: #FFFFFF;
	display: inline;
	padding-right: 0.6em;
	padding-left: 0.6em;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #FFFFFF;
}
#header #menu ul {
	font-family: "Trebuchet MS";
	font-size: 16px;
	color: #FFFFFF;
	background-color: #003366;
	margin: 0px;
	text-align: center;
	text-decoration: none;
	padding: 0.1em;
}

#sidebar1 h3 {
	font-family: "Trebuchet MS";
	font-size: 14px;
	font-weight: normal;
	color: #000000;
}

.twoColElsLtHdr #footer {
	background:#DDDDDD;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
} 

.twoColElsLtHdr #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family: "Century Gothic", Courier;
	font-size: 11px;
	color: #000000;
	text-align: center;
	padding-top: 1px;
	padding-right: 0;
	padding-bottom: 1px;
	padding-left: 0;
}

/* Miscellaneous classes for reuse */
.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;
}
#sidebar1 li {
	font-family: "Trebuchet MS";
	font-size: 14px;
	color: #003366;
	padding: 0px;
	list-style-type: none;
	margin-top: 1px;
	margin-right: 0px;
	margin-bottom: 1px;
	margin-left: 0px;
	list-style-position: outside;
}
#sidebar1 ul {
	text-align: left;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 30px;
}

#header #szukaj {
	margin: 0px;
	height: 60px;
	width: 976px;
	background-position: left center;
	text-align: left;
	background-image: none;
	padding: 0px;
	float: none;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}
#szukaj #tabela1 {
	
	background-position: bottom;
	margin-top: 25px;
}
#header #menu a:hover {
	font-family: "Trebuchet MS";
	font-size: 16px;
	color: #FFcc00;
	text-decoration: underline;
}
#sidebar1 a {
	font-family: "Trebuchet MS";
	font-size: 14px;
	color: #003366;
	text-decoration: none;
}

#sidebar1 a:hover {
	font-family: "Trebuchet MS";
	font-size: 14px;
	color: #FFFFFF;
	text-decoration: underline;
}
.styl1 {
	font-family: "Trebuchet MS";
	font-size: 14px;
	color: #ffcc00;
}
#tabban {
	margin: 0px;
	padding: 0px;
	text-align: center;
	vertical-align: baseline;
	background-position: left top;
	height: 55px;
	width: 976px;
	background-color: #00154f;
}
#header #menu {
	margin: 0px;
	padding: 0px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}
#menu #1 {
	font-family: "Trebuchet MS";
	font-size: 16px;
	color: #FFFFFF;
}
#mainContent #content {
	font-family: "Trebuchet MS";
	color: #FFFFFF;
}
#content li {
	font-family: "Trebuchet MS";
	font-size: 14px;
	font-weight: normal;
	color: #003366;
	text-decoration: none;
	text-align: left;
	padding: 0px;
	margin-top: 1px;
	margin-right: 0px;
	margin-bottom: 1px;
	margin-left: 0px;
	list-style-position: outside;
}
#content ul {
	margin: 0px;
	padding: 0px;
}
#content h3 {
	font-family: "Trebuchet MS";
	font-size: 14px;
	font-weight: normal;
	color: #FFFFFF;
	text-decoration: none;
	text-align: left;
	margin-top: 1px;
	margin-right: 0px;
	margin-bottom: 1px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 20px;
}
#content p {
	font-family: "Trebuchet MS";
	font-size: 14px;
	font-weight: normal;
	color: #003366;
	text-align: left;
	padding: 0px;
	margin-left: 20px;
}
#content a {
	font-family: "Trebuchet MS";
	font-size: 14px;
	font-weight: bold;
	color: #003366;
	text-decoration: none;
}
#content a:hover {
	font-family: "Trebuchet MS";
	font-size: 14px;
	font-weight: bold;
	color: #cccc00;
	text-decoration: none;
}
#mainContent iframe {
	background-position: center;
}
#mainContent h6 {
	font-family: "Trebuchet MS";
	font-size: 14px;
	font-weight: normal;
	color: #000000;
	padding-left: 20px;
	text-decoration: underline;
	text-align: left;
}
#mainContent a {
	font-family: "Trebuchet MS";
	font-size: 14px;
	font-weight: normal;
	color: #003366;
	text-decoration: none;
}
#mainContent a:hover {
	font-family: "Trebuchet MS";
	font-size: 14px;
	font-weight: normal;
	color: #FF0000;
	text-decoration: underline;
}
#content h1 {
	font-family: "Trebuchet MS";
	font-size: 14px;
	font-weight: bold;
	color: #003366;
	text-align: center;
	margin-top: 1px;
	margin-right: 0px;
	margin-bottom: 1px;
	margin-left: 0px;
	padding-top: 0px;
}
#content h4 {
	font-family: "Trebuchet MS";
	font-size: 14px;
	font-weight: normal;
	color: #003366;
	text-align: justify;
	padding-left: 20px;
	text-indent: 0px;
	padding-right: 10px;
}
#content h5 {
	font-family: "Trebuchet MS";
	font-size: 14px;
	font-weight: normal;
	color: #003366;
	text-align: justify;
	padding-left: 20px;
	margin: 0px;
	padding-right: 10px;
}
#content hr {
	font-weight: normal;
	color: #FFFFFF;
	padding-right: 10px;
	padding-left: 10px;
	text-align: center;
	width: 670px;
	margin-top: 0px;
	margin-right: 20px;
	margin-bottom: 0px;
	margin-left: 20px;
}
#content #okno {
	height: 510px;
	width: 740px;
	display: block;
	overflow: auto;
}
#content form {
	height: auto;
	width: 100px;
	display: inline;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding: 0px;
}
#zaplecze {
	text-align: center;
	padding: 0em;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
	width: 730px;
	background-color: #000033;
}
#zaplecze #button {
	width: 220px;
	font-family: "Trebuchet MS";
	font-size: 14px;
	color: #000000;
	background-color: #CCCCCC;
	border-style: solid;
	height: 22px;
}
#zaplecze #button3 {
	width: 220px;
	text-decoration: none;
	border-style: solid;
	font-family: "Trebuchet MS";
	font-size: 14px;
	color: #000000;
	background-color: #CCCCCC;
	margin: 0px;
	padding: 0px;
	text-align: center;
	height: 22px;
}
#zaplecze #button2 {
	width: 220px;
	font-family: "Trebuchet MS";
	font-size: 14px;
	color: #000000;
	background-color: #CCCCCC;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	height: 22px;
}

#content #okno td {
	font-family: "Trebuchet MS";
	font-size: 14px;
	font-weight: bold;
	color: #FFFFFF;
	text-align: left;
}
#zaplecze #button4 {
	font-family: "Trebuchet MS";
	font-size: 14px;
	color: #000000;
	background-color: #CCCCCC;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	width: 220px;
	height: 22px;
}

#poziom2 {
	font-family: "Trebuchet MS";
	font-size: 14px;
	color: #FFFFFF;
	text-decoration: none;
	text-align: left;
	margin: 0px;
	padding-left: 35px;
	list-style-type: square;
	display: block;
}


#poziom1 {
	font-family: "Trebuchet MS";
	font-size: 14px;
	color: #FFFFFF;
	text-decoration: none;
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	display: block;
}
#1 {
	list-style-type: disc;
	text-align: left;
	margin: 0px;
	padding: 0px;
}
#sidebar1 #menu3 {
	list-style-type: disc;
	padding: 0px;
}





#poziom3 {
	font-family: "Trebuchet MS";
	font-size: 14px;
	color: #FFFFFF;
	text-decoration: none;
	margin: 0px;
	padding-left: 50px;
	list-style-type: circle;
}
.poziom3 {
	font-family: "Trebuchet MS";
	font-size: 14px;
	color: #FFFFFF;
	text-decoration: none;
	text-align: left;
	padding-left: 35px;
	list-style-type: disc;
}


#poziom4 {
	font-family: "Trebuchet MS";
	font-size: 14px;
	color: #FFFFFF;
	text-decoration: none;
	margin: 0px;
	padding-left: 50px;
	list-style-type: circle;
}
.oknodiv {
	border-bottom-width: thin;
	border-bottom-style: dashed;
	border-bottom-color: #FFFFFF;
}
.img {
	border: 1px solid #FFFFFF;
}
#sidebar1 #menu4 {
	list-style-type: square;
	padding: 0px;
	margin: 0px;
	text-align: left;
}
#sidebar1 #menu4a {
	text-align: left;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 1em;
}
.div1 {
	background-position: left top;
	width: 200px;
	display: inline;
	text-align: left;
	float: left;
	z-index: 1;
}
.div2 {
	background-position: right top;
	text-align: center;
	width: 350px;
	
	font-family: "Trebuchet MS";
	font-size: 14px;
	display: inline;
	float: left;
	padding-left: 100px;
}
#content .div2 h2 {
	font-family: "Trebuchet MS";
	font-size: 16px;
	font-weight: bold;
	color: #003366;
	text-align: center;
}
.styl2 {
	font-family: "Trebuchet MS";
	font-size: 14px;
	color: #FFFFFF;
}
.img2 {
	border: 4px outset #003366;
	margin: 2px;
	padding: 0px;
}
.div3 {
	background-position: center top;
	text-align: center;
	font-family: "Trebuchet MS";
	font-size: 14px;
	display: inline;
	float: left;
	width: 420px;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 60px;
	padding: 0px;
}
.acrobat {
	font-family: "Trebuchet MS";
	font-size: 12px;
	font-weight: normal;
	color: #003366;
	background-position: right bottom;
	text-align: right;
	margin: 0px;
	padding: 0px;
}
.div4 {
	background-position: left top;
	text-align: left;
	font-family: "Trebuchet MS";
	font-size: 14px;
	display: inline;
	float: left;
	width: 715px;
	padding: 0px;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 20px;
}
#content .div4 a {
	text-decoration: none;
}
.img4 {
	margin-left: 5px;
}

.contenttable {
	background-position: left top;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 20px;
}
.img5 {
	vertical-align: top;
	margin: 0px;
	padding: 0px;
	border: 4px solid #FF0000;
}
.powrot {
	font-family: "Trebuchet MS";
	font-size: 12px;
	color: #003366;
	text-decoration: none;
	background-position: right top;
	text-align: right;
	padding-right: 10px;
}
.tytul {
	font-family: "Trebuchet MS";
	font-size: 16px;
	font-style: normal;
	font-weight: bold;
	color: #003366;
	text-align: left;
	margin-left: 20px;
}
.imgkonik {
	vertical-align: top;
	margin: 0px;
	padding: 0px;
	border: 4px solid #cc0033;
}
.imgstornia {
	vertical-align: top;
	margin: 0px;
	padding: 0px;
	border: 4px solid #339966;
}
.imgstrzykwa {
	vertical-align: top;
	margin: 0px;
	padding: 0px;
	border: 4px solid #ff6600;
}
.imgkoral {
	vertical-align: top;
	margin: 0px;
	padding: 0px;
	border: 4px solid #55A0ff;
}
.imgskrzydlica {
	vertical-align: top;
	margin: 0px;
	padding: 0px;
	border: 4px solid #000066;
}
.imgkrab {
	vertical-align: top;
	margin: 0px;
	padding: 0px;
	border: 4px solid #336633;
}
.imgmurena {
	vertical-align: top;
	margin: 0px;
	padding: 0px;
	border: 4px solid #996600;
}
.imgpodskoczek {
	vertical-align: top;
	margin: 0px;
	padding: 0px;
	border: 4px solid #9933ff;
}
.imgrozgwiazda {
	vertical-align: top;
	margin: 0px;
	padding: 0px;
	border: 4px solid #ff3399;
}
.center {
	font-family: "Trebuchet MS";
	font-size: 14px;
	font-weight: normal;
	color: #003366;
	text-decoration: none;
	text-align: center;
}
.div5 {
	background-position: left top;
	width: 350px;
	display: inline;
	text-align: center;
	float: right;
	z-index: 1;
	font-family: "Trebuchet MS";
	font-size: 14px;
	padding-left: 0px;
	padding-right: 60px;
}
#content .div5 h2 {
	font-family: "Trebuchet MS";
	font-size: 16px;
	font-weight: bold;
	color: #FF0000;
	text-align: center;
}
.centerdiv5 {
	font-family: "Trebuchet MS";
	font-size: 14px;
	font-weight: normal;
	color: #FF0000;
	text-decoration: none;
	text-align: center;
}
.div6 {
	background-position: right top;
	width: 200px;
	display: inline;
	float: left;
	padding-left: 60px;
}



#content .div5 ul {
	text-align: center;
margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#content .div5 li {
	color: #FF0000;
	font-family: "Trebuchet MS";
	font-size: 14px;
	padding: 0px;
	list-style-type: none;
	margin-top: 1px;
	margin-right: 0px;
	margin-bottom: 1px;
	margin-left: 0px;
	list-style-position: outside;
	text-align: center;
}
.img1 {
	border: 1px solid #FFFFFF;
}

#tabela1 #tekst {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	font-style: normal;
	font-weight: normal;
	color: #000033;
	height: 13px;
	width: 62px;
	padding: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: 28px;
	margin-right: 0px;
	vertical-align: middle;
}
#tabela1 #lupa {
	padding: 0px;
	border: 0;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	vertical-align: middle;
}
#tabela1 #wyszukiwarka {
	padding: 0px;
	height: 0px;
	width: 130px;
	margin: 0px;
	vertical-align: middle;
}
.div5Kopia {
	background-position: left top;
	width: 350px;
	display: inline;
	text-align: center;
	float: left;
	z-index: 1;
	font-family: "Trebuchet MS";
	font-size: 14px;
	padding-left: 20px;
}
