* {
padding: 0; 
margin:0;
}
p {
margin-bottom: 10px;
padding: 0 5px;
} 
.under {
text-decoration: underline; 
}
.italic {
font-style: italic;
}
h2 {
padding: 10px 5px;
font-size: 17px;
}
h3 {
padding: 0 5px;
font-size: 15px;
}
blockquote {
margin:10px 30px;
padding:0 10px;
color:#2f6081;
font-style: italic;
border-left: 2px solid #2f6081;
border-right: 1px dotted #2f6081;
}
.cytat {
font-style: italic;
color: #2f6081;
}
.right {
float: right;
}
.left {
float: left;
}
.center {
text-align: center;
}
.comment_center {
text-align: center;
font-weight: bold;
font-size: 16px;
}
img.right {
float: right;
margin: 5px 5px 5px 10px;
border: 2px solid #999;
background: #fff;
padding: 1px;
}
img.left {
float: left;
margin: 5px 10px 5px 5px;
border: 2px solid #999;
background: #fff;
padding: 1px;
}
img.center {
margin: 5px;
border: 2px solid #999;
background: #fff;
padding: 1px;
}
.caption {
margin: 0 5px 0 10px;
padding: 0;
font-style: italic;
font-size: 13px;
}
body {
text-align: center;
margin: 0;
padding: 0;
background:#eee url(images/back.jpg);
}
#container {
width: 780px;
margin: 10px auto 0;
padding: 0 0 20px 0;
text-align: justify;		
line-height: 20px;
color: #000;
font-family: "Trebuchet MS", Tahoma, Arial, sans-serif;
font-size: 14px;
background: #eeeeee;
}
#header {
width: 760px;
margin: 0 auto;
padding-top: 10px;
clear: both;
}
#header h1 {
margin: 0 auto 10px;
padding: 0 5px;
font-size: 16px;
text-align: left;
font-weight: bold;
}
#header a {
color: #009900;
text-decoration: none;
}
#header a:hover {
text-decoration: underline;
}
.header_img {
margin: 0 0 5px 0; /*0 0 10px 0;*/
padding: 0px;
background: #ededed;
}
#navigation {
padding: 0 ;
margin: 0 10px 10px 10px;
width: 760px;
background: transparent;
clear: both;
}
/* - - - ADxMenu: BASIC styles [ MANDATORY ] - - - */
/* remove all list stylings */
.menu, .menu ul {
margin: 0;
padding: 0;
border: 0;
list-style-type: none;
display: block;
}
.menu li {
margin: 0;
padding: 0;
border: 0;
display: block;
float: left;	/* move all main list items into one row, by floating them */
position: relative;	/* position each LI, thus creating potential IE.win overlap problem */
z-index: 5;		/* thus we need to apply explicit z-index here... */
}
.menu li:hover {
z-index: 10000;	/* ...and here. this makes sure active item is always above anything else in the menu */
white-space: normal;/* required to resolve IE7 :hover bug (z-index above is ignored if this is not present)
							see http://www.tanfa.co.uk/css/articles/pure-css-popups-bug.asp for other stuff that work */
}
.menu li li {
float: none;/* items of the nested menus are kept on separate lines */
}
.menu ul {
visibility: hidden;	/* initially hide all submenus. */
position: absolute;
z-index: 10;
left: 0;	/* while hidden, always keep them at the top left corner, */
top: 0;		/* 		to avoid scrollbars as much as possible */
}
.menu li:hover>ul {
visibility: visible;	/* display submenu them on hover */
top: 100%;	/* 1st level go below their parent item */
}
.menu li li:hover>ul {	/* 2nd+ levels go on the right side of the parent item */
top: 0;
left: 100%;
}
/* -- float.clear -- force containment of floated LIs inside of UL */
.menu:after, .menu ul:after {
content: ".";
height: 0;
display: block;
visibility: hidden;
overflow: hidden;
clear: both;
}
.menu, .menu ul {	/* IE7 float clear: */
min-height: 0;
}
/* -- float.clear.END --  */
/* -- sticky.submenu --
	it should not disappear when your mouse moves a bit outside the submenu
	YOU SHOULD NOT STYLE the background of the ".menu UL" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */
.menu ul {
background-image: url(empty.gif);	/* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
padding: 10px 30px 30px 30px;
margin: -10px 0 0 -30px;
	/*background: #f00;*/	/* uncomment this if you want to see the "safe" area.
								you can also use to adjust the safe area to your requirement */
}
.menu ul ul {
padding: 30px 30px 30px 10px;
margin: -30px 0 0 -10px;
}
/* -- sticky.submenu.END -- */
/* - - - ADxMenu: DESIGN styles [ OPTIONAL, design your heart out :) ] - - - */
.menu, .menu ul li {
color: #000000;
background: transparent;
font-family: Verdana, tahoma, arial,  sans-serif;
}
.menu ul {			/* style for sub-menu */
width: 150px; 
font-size: 12px;
text-align: left;
}
.menu a {				/* style for blocks with menu and submenu items */
text-decoration: none;
color: #000;
padding: .4em 1.2em;
display: block;
position: relative;
background: url(images/naviback1.png) left top; 
margin-right: 5px;
text-transform: uppercase;
font-weight: bold;
line-height: 23px;
}
.menu ul li a { 			/*style for blocks with submenu items; can overwrite those from .menu a */
margin-right: 0px; /* because there is a space between menu blocks but no need for space after submenu block */
background: url(images/naviback4.png) left top; /*#77b6d0;*/
text-transform: lowercase;
font-weight: normal;
color: #000;
}
.menu a:hover, .menu li:hover>a {	/* hovering over menu and submenu items */
color: #fff;
}
.menu ul li a:hover {		/* hovering over submanu items */
color: #fff;
}
.menu li li {	/* create borders around each item */
border: none; 
}
.menu ul>li + li {	/* and remove the top border on all but first item in the list */
border-top: 0;
}
.menu li li:hover>ul {	/* inset 2nd+ submenus, to show off overlapping */
top: 5px;
left: 90%;
}
/* special colouring for "Main menu:", and for "xx submenu" items in ADxMenu
	placed here to clarify the terminology I use when referencing submenus in posts */
.menu>li:first-child>a, .menu li + li + li li:first-child>a {  /* first menu item and first submenu item in the second and next menu items ;) */
color: #000;
}
.menu>li:first-child>a:hover {	/*hover over first menu item ;) */
color: #fff;
}
.menu li + li + li li:first-child>a:hover {	/*hover over first submenu item in the second and next menu items ;) */
color: #fff;
}
#content {
text-align: justify;
margin: 10px auto;
width: 760px;
padding: 0;
clear: both;
min-height: 210px;
}
#content p a:link, #content p a:visited, 
#content .lista a:link, #content .lista a:visited, 
#content ul li a:link, #content ul li a:visited,
#content ol li a:link, #content ol li a:visited{
color: #009900;
text-decoration:none;
border-bottom:1px dotted #009900;
}
#content p a img {
text-decoration: none;
border: 0;
border-bottom: none;
}
#content p a:hover, #content p a:active, 
#content .lista a:hover, #content .lista a:active,
#content ul li a:hover, #content ul li a:active,
#content ol li a:hover, #content ol li a:active{
color:#009933;
text-decoration:none;
border-bottom: 1px solid #009933;
}
#content ul {
margin: 5px 0;
padding: 0 0 0 20px;
list-style-type:none;
}
#content ul li {
padding:1px 0;
list-style-image:url(images/bullet.png);
line-height:18px;
}
#content ol {
margin: 0;
padding: 0 0 0 30px;       
}
#content ol li {
margin:0;
padding: 1px 0;
line-height:18px;
}
.tabelka {
margin-bottom: 10px;
padding: 0 5px;
}
.nav_link {
font-size: 11px;
line-height: 18px;
clear: both;
margin: 15px 0;
width: 100%;
}
.nav_link_right {
text-align: right;
}
.nav_link_left {
text-align: left;
}
#footer {
text-align: justify;
width: 760px;
height: 40px;
margin: 10px auto;
padding: 10px;
font-size: 11px;
line-height: 18px;
clear: both;
color: #eee;
font-family: "Trebuchet MS", Tahoma, Arial, sans-serif;
background: url(images/footerbg.png) left top;
}
#footer a:link, #footer a:visited {
color: #009900;
text-decoration:none;
}
#footer a:hover, #footer a:active {
color:#009933;
text-decoration:none;
border-bottom: 1px solid #009933;
}
#footer ul {
float: right;
width: 280px;
	/*border: 1px solid #990000;*/
list-style:none;
margin:0;
padding:0 ; 
text-align: right;
}
.footinf {
list-style:none;
margin:0;
padding:0 7px 0 0;
display: inline;	
list-style-position: inside;
}
#pics {
width:760px;
padding:5px; 
clear: both;
text-align: center;
overflow: hidden;
margin: 0 auto;
}
.fotobox {
float: left;
width: 230px;  /* 240px dla IE */
padding: 5px;
background: #b3c8d0;
margin: 5px;
border: 1px solid #77b6d0;
text-align: center;
}
.fotoinfo {
text-align: left;
font-size: 10px;
line-height: 15px;
font-family: Verdana, Tahoma, Arial,  sans-serif;
margin: 0;
padding: 5px 0 0 0;
}
.credits {
text-align: center;
font-size: 11px;
line-height: 18px;
}
#content .credits a:link, #content .credits a:visited {
border-bottom: none;
}
#content .credits a:hover, #content .credits a:active {
border-bottom: 1px solid #009933;
}
#artpics {
width:760px;
float: left;
padding: 5px; /* padding:0 45px; - TO BEDZIE TYLKO DLA IE */
clear: both;
text-align: center;
overflow: hidden;
margin: 0 auto;
}
.artfotobox {
float: left;
width: 170px;  /* 210px dla IE */
padding: 10px 5px 5px 5px;
background: #2f6081;
margin: 5px 2px;
border: 1px solid #2f6081;
text-align: center;
color: #fff;
}
.artfotoinfo {
text-align: justify;
font-size: 10px;
line-height: 15px;
font-family: Verdana, Tahoma, Arial,  sans-serif;
margin: 0;
padding: 5px 5px 0 5px;
}
.enartfotoinfo {
text-align: center;
font-size: 10px;
line-height: 15px;
font-family: Verdana, Tahoma, Arial,  sans-serif;
margin: 0;
padding: 5px 5px 0 5px;
}
#contactform {
text-align: justify;
padding: 10px;
margin: 0 auto;
width: 540px;
}
#contactform input.plus {
border: 1px solid #bababa;
padding: 2px 5px;
}
#contactform input.minus {
border: 1px solid #bababa;
padding: 2px 5px;
}
#contactform input.textbox {
border: 1px solid #bababa;
padding: 2px;
}
#contactform textarea.textbox {
border: 1px solid #bababa;
padding: 2px;
}
.meta {
font-size: 11px;
}
.lista {
float: left;
width:180px; 
text-align: left;
margin-left: 5px;
}
.rss {
width:760px; 
text-align: left;
margin-left: 15px;
}
table.center {
margin-left: auto;
margin-right: auto;
text-align: left;
}
#lista tbody tr td {
padding: 2px 5px 2px 8px;
text-align: left;
}
#lista tbody tr th {
padding: 2px 5px 2px 8px;
background: #2f6081;
color: #fff;
text-align: left;
}
#lista .clear tbody tr td {
background: transparent;
}
#lista tbody tr td.title {
background: #2f6081;
color: #fff;
font-weight: bold;
}
#goscie {
width: 550px;
font-size: 12px;
}
#goscie tbody tr td {
padding: 2px 5px 2px 8px;
vertical-align: top;
}
#goscie tbody tr th {
padding: 2px 5px 2px 8px;
vertical-align: top;
font-weight: bold;
text-align: left;
}
/* HIGHSLIDE */
.highslide {
	cursor: url(highslide/graphics/zoomin.cur), pointer;
    outline: none;
}
.highslide-active-anchor img {
	visibility: hidden;
}
.highslide img {
	border: 2px solid #77b6d0;
}
.highslide:hover img {
	border: 2px solid white;
}
.highslide-wrapper {
	background: white;
}
.highslide-image {
    border: 2px solid white;
}
.highslide-image-blur {
}
.highslide-caption {
    text-align: justify;
    border: 2px solid white;
    border-top: none;
    font-family: Verdana, Helvetica;
    font-size: 10pt;
    padding: 5px;
    background-color: white;
}
.highslide-loading {
    display: block;
	color: black;
	font-size: 8pt;
	font-family: sans-serif;
	font-weight: bold;
    text-decoration: none;
	padding: 2px;
	border: 1px solid black;
    background-color: white;
    padding-left: 22px;
    background-image: url(highslide/graphics/loader.white.gif);
    background-repeat: no-repeat;
    background-position: 3px 1px;
}
a.highslide-credits,
a.highslide-credits i {
    padding: 2px;
    color: silver;
    text-decoration: none;
	font-size: 10px;
}
a.highslide-credits:hover,
a.highslide-credits:hover i {
    color: white;
    background-color: gray;
}
.highslide-move {
    cursor: move;
}
.highslide-overlay {
	display: none;
}
a.highslide-full-expand {
	background: url(highslide/graphics/fullexpand.gif) no-repeat;
	display: block;
	margin: 0 10px 10px 0;
	width: 34px;
	height: 34px;
}
/* Controlbar example */
.controlbar {	
	background: url(highslide/graphics/controlbar4.gif);
	width: 167px;
	height: 34px;
}
.controlbar a {	
	display: block;
	float: left;
	height: 27px;
}
.controlbar a:hover {
	background-image: url(highslide/graphics/controlbar4-hover.gif);
}
.controlbar .previous {
	width: 50px;
}
.controlbar .next {
	width: 40px;
	background-position: -50px 0;
}
.controlbar .highslide-move {
	width: 40px;
	background-position: -90px 0;
}
.controlbar .close {
	width: 36px;
	background-position: -130px 0;
}
/* Necessary for functionality */
.highslide-display-block {
    display: block;
}
.highslide-display-none {
    display: none;
}
/* END OF HIGHSLIDE */
