/* Start of CMSMS style sheet 'Layout: podstawowy' */
/*****************
browsers interpret margin and padding a little differently, 
we'll remove all default padding and margins and
set them later on
******************/
* {
margin:0;
padding:0;
}

/*
Set initial font styles
*/
body {
   text-align: left;
   font-family: Arial,  Verdana, Geneva, Helvetica, sans-serif;
   font-size: 75.01%;
   line-height: 1em;
}

/*
set font size for all divs,
this overrides some body rules
*/
div {
   font-size: 1em;
}

/*
if img is inside "a" it would have 
borders, we don't want that
*/
img {
   border: 0;
}

/*
default link styles
*/
/* set all links to have underline and bluish color */
a,
a:link 
a:active {
   color: #217EAA;
}

a:visited {
   color: #217EAA;
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;

}

/*****************
basic layout 
*****************/
body {
   background: #2f576a url(images/bg.gif) repeat;
   color: #6c5e5b;
   text-align: center;
}
#tlobiale {
 background: url(images/tlobiale.gif) repeat-y center center;
 margin: 0 auto;
 

}

#wrapper { background: url(images/tlo.jpg) no-repeat top center;}

/* center wrapper, min max width */
div#pagewrapper {
   margin: 0 auto;       /* this centers wrapper */
   width: 911px;
   position: relative;
}


/*** header ***
we will hide text and replace it with a image
we need to assign a height for it so that the image wont cut off
*/
div#header {
   height: 280px;   
   padding-top: 120px;
   width: 911px;
   margin:0 auto;
      
}

/* position for the search box */
div#search {
   position: absolute;
   top: 95px;
   margin-left: 645px;
}
#search input {
   font-size: 11px;
   background: #201E1F;
   color: #999;
   border: 1px solid #999;
   margin-left: 4px;
}
#search label {display:none;}
div.breadcrumbs {
   padding: 1em 0 1.2em 0; /* CSS short hand rule first value is top then right, bottom and left */
   font-size: 90%;        /* its good to set fontsizes to be relative, this way viewer can change his/her fontsize */
   margin: 0 1em;        /* css shorthand rule will be opened to be "0 1em 0 1em" */
   border-bottom: 1px dotted #000;
}

div.breadcrumbs span.lastitem { 
   font-weight:bold; 
}

div#content {
   padding-top: 10px;
   width: 911px;
   color: #6c5e5b;
   overflow: hidden;
}

div#main {
   width: 545px;
   margin-left: 6px;
   display: block;
   overflow: hidden;
   margin-top: 30px;
   text-align: left;

}

div#sidebar {
   float: left;        /* set sidebar on the left side. Change to right to float it right instead. */
   width: 200px;     /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX IE double margin bug */
   margin: 270px 35px 0 95px;
   font-size: 12px;
   text-align: left;
}
#sidebar strong {color: #217EAA;}


div#footer {
   clear: both;       
   color: #999;
   height: 200px;
   background: url(images/footer-bg.gif) no-repeat -54px 0;
   font-size: 0.8em;
   text-align: left;  
   margin: 0 auto;
   width: 629px;
   padding: 70px 0 0 390px;
}
#footer p {   line-height: 2em;}

div#footer  a {
   color: #999; /* needed becouse footer link would be same color as background otherwise */
}
#footer img {margin: 0 15px; vertical-align:middle;}

/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   padding: 1em;
   border-bottom: 1px dotted black;
   margin: 1em;
}


/********************
CONTENT STYLING
*********************/
/* HEADINGS */
#content h1 {
   font-size: 2em; /* font size for h1 */
   line-height: 1em;
   margin: 0;
}
#content h2 {
	color: #1A1A1A; 
	font-size: 1.5em; 
	text-align: left; 
	margin-bottom: 10px;
        margin-top: 10px;

}

h6 {
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
/* END HEADINGS */

/* TEXT */
p {
   font-size: 1em;
   margin: 0 0 1.5em 0; /* some air around p elements */
   line-height: 1.4em;
   padding: 0;
}

blockquote {
   border-left: 10px solid #ddd;
   margin-left: 10px;
}
strong, b {
/* explicit setting for these */
   font-weight: bold;
}
em, i {
/* explicit setting for these */
   font-style:italic;
}

/* Wrapping text in <code> tags. Makes CSS not validate */
code, pre {
 white-space: pre-wrap;       /* css-3 */
 white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
 white-space: -pre-wrap;      /* Opera 4-6 */
 white-space: -o-pre-wrap;    /* Opera 7 */
 word-wrap: break-word;       /* Internet Explorer 5.5+ */
 font-family: "Courier New", Courier, monospace;
 font-size: 1em;
}

pre {
   border: 1px solid #000;  /* black border for pre blocks */
   background-color: #ddd;
   margin: 0 1em 1em 1em;
   padding: 0.5em;
   line-height: 1.5em;
   font-size: 90%;


}

/* Separating the divs on the template explanation page, with some bottom-border */
div.templatecode {
  margin: 0 0 2.5em;
}

/* END TEXT */

/* LISTS */
/* lists in content need some margins to look nice */
div#main ul,
div#main ol,
div#main dl {
   font-size: 1.0em;
   line-height: 1.4em;
   margin: 0;
}

div#main ul li,
div#main ol li {
   margin: 0;
}

/* definition lists topics on bold */
div#main dl dt {
   font-weight: bold;
   margin: 0 0 0 1em;
}
div#main dl dd {
   margin: 0 0 1em 1em;
}

div#main dl {
  margin-bottom: 2em;
  padding-bottom: 1em;
  border-bottom: 1px solid #c0c0c0;
}

a.back:active, .back a:active {
   outline:none;
}

a.back, .back a{
padding-left: 12px;
color: #6e5e5e;
text-decoration: none;
background-color: transparent;
background-image: url(images/back.gif);
background-repeat: no-repeat;
background-attachment: scroll;
background-position: 0pt 4px;
font-weight: bold;
}

a.back:hover, .back a:hover {
color: #2283b0;
background-color: transparent;
background-image: url(images/back2.gif);
background-repeat: no-repeat;
background-attachment: scroll;
background-position: 0pt 4px;
}




/* END LISTS */

#menu_horiz {
   float: right;
   width: 570px;
   height: 50px;
   margin-top:20px;
   background: url(images/menu-bg.gif) repeat-x 0 32px; 
   font-size: 17px;
   font-family: Arial;
   font-weight: bold;
   text-align: left;
   line-height: 1em;
}
#menu_horiz ul {
  list-style-type: none;

}
#menu_horiz li{
   display: block;
   float: left;
   margin-right: 35px;
   height: 50px;
}
#menu_horiz li a{
   text-decoration: none;
   padding-bottom: 14px;
   color: #fff;

}
#menu_horiz li a:hover {
   border-bottom: 4px solid #217EAA;
}
#menu_horiz h3 {
   border-bottom: 4px solid #217EAA;
   padding-bottom: 15px;
   color: #fff;
   font-size: 17px;
   line-height: 1em;
}
#tresc-top {
  background: url(images/bg-photo-top.gif) center top no-repeat;
  padding: 15px 24px 2px;
  font-size: 24px;
  margin: 0 4px;
}
#tresc {
  padding: 20px 24px 0;
  margin: 0 4px;
  background: url(images/bg-tresc.gif) 0 10px no-repeat #1E1E1E;
}
#tresc p {
  line-height: 1.5em;
}
#tresc h3 {margin-bottom: 10px;}
#tresc-bottom {
  background: url(images/bg-news-bottom.gif) center bottom no-repeat;
  height: 30px;
  margin: 0 4px 10px;
}
.r {float: right; }
.l {float: left; }

#rezerwuj {text-align: left; color: #fff; width: 300px;}
#rezerwuj h1 {color: #fff;}

#rez-tbl { background:#283940; color: #fff;}
.n1 { background: #1b2f37;}

.rezerwuj a {
  font-family: Arial;
  display: block;
  background: #42626F;
  width: 104px;
  height: 18px;
  text-decoration: none;
  text-align: center;
  color: #fff;
  padding: 5px 3px 0;
  font-weight: bold;
  font-size: 10px;
  text-transform: uppercase;
}
.rezerwuj a:hover {
  color: #fff;
  padding-top: 5px;
}
#rezerwuj {
  padding: 10px;
}

#rezerwuj #content, #rezerwuj p {
  line-height: 1.5em;
}
.kup a {
  font-family: Arial;
  display: block;
  background: url(images/bg-rezerwuj.gif) no-repeat;
  width: 118px;
  height: 18px;
  text-decoration: none;
  color: #fff;
  padding: 2px 0 0 10px;
  font-weight: bold;
  font-size: 11px;
  text-transform: lowercase;
}
.kup a:hover {
  color: #fff;
  padding-top: 3px;
  background-position: 0 1px;
}
#nms {
    line-height: 1.2em;
    margin-bottom: 20px;
}

#nms input {
    background: #fff;
    border: 1px solid #ccc;
}

#nms #nms-submit input {
 font-family: Arial;
  display: block;
  background: #42626F;
  text-decoration: none;
  text-align: center;
  color: #fff;
  padding: 5px 3px 3px;
  font-weight: bold;
  font-size: 10px;
  text-transform: uppercase;
  border:none; 
  margin-top: 2px;
}

.sidebar-txt {
      font-family: Arial;
     width: 145px;
     margin:0 10px 10px 4px; 
     padding: 8px 10px 12px 12px; 
     background: url(images/bg-txt-tpl-czerwony.gif) no-repeat center bottom;
}
.sidebar-txt img {margin-bottom: 8px;}

.sidebar-txt h3 {font-size: 15px; color: #ffffff; font-weight: bold;}
.sidebar-txt h4 {font-size: 12px; color: #1a1a1a; padding: 2px 0; } 
.sidebar-txt strong {font-size: 11px; color: #1a1a1a; font-weight: bold;}
.sidebar-txt hr {position:relative;top:0;left:0; color: #FE0106; background: #FE0106; height: 1px; border:0; margin-bottom: 10px;}
.sidebar-img {
      background: url(images/bg-txt-tpl-czerwony-img.gif) no-repeat right top;  
}
#ciemny .sidebar-txt hr {color: #fff; background: #fff; }
#ciemny .sidebar-txt {
     background: url(images/bg-txt-tpl-czarny.gif) no-repeat center bottom;
}
#ciemny .sidebar-img {
      background: url(images/bg-txt-tpl-czarny-img.gif) no-repeat right top;  
}

#nms-submit input{
   font-size: 11px;
   padding: 0 2px;
   background: #201E1F;
   color: #999;
   border: 1px solid #999;
}

#stat {position: relative; top:0; left: 0; float: right; width: 60px; margin-right: 50px;}

#zont {position:relative; top: 150px; right:60px; color: #20343D; text-align: right; font-size: 10px;}
#footer #zont a {color: #20343D;}
#footer #zont:hover, #footer #zont a:hover {color: #fff;}

#najblizsze {
  position: absolute;
  top: 200px;
  left: 535px;
  width: 370px;
  height: 200px;
  padding-top: 20px;
  background: url(images/koncerty.gif) no-repeat;
  text-align: left;
}
#baner {position: absolute; top:20px; left:340px;}
#logobtn {position: absolute; top:90px; left:70px;}
/* End of 'Layout: podstawowy' */

