/* Start of CMSMS style sheet 'Layout: Left sidebar + 1 column' */
/*****************
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-size: 0.75em;
_font-size: 12px;
font-family: Arial,Helvetica,sans-serif;
line-height: 140%;
color: #ffffff;
}

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

div #main ul{
list-style-type: square;
}

/*
if img is inside "a" it would have 
borders, we don't want that
*/
img {
   border: 0;
   padding: 0;
   margin: 0px;
   border: none;
   outline: none;
   -moz-user-select: none;
   -khtml-user-select: none
   -o-user-select:none
}

/*
default link styles
*/
/* set all links to have underline and bluish color */
a,
a:link 
a:active {
   text-decoration: none;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
   background-color: inherit;
   color: #FFFFFF;
   border: 0;
   outline: none;
}

a:visited {
   text-decoration: none;
   background-color: inherit;
   color: #FFFFFF;                /* a different color can be used for visited links */
}


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

/*****************
basic layout 
*****************/
body {
   background-color: #272727;
  /* color: #333;*/
   margin:1em; 
   margin: 1em 1em 0 1em; 
   /*margin: 1em 1em 0em 1em;*/
}

/* center wrapper, min max width */
div#pagewrapper {
   border: 0px solid black;
   margin: 0 auto;       /* this centers wrapper */
   width: 770px;
   max-width: 770px;   /* IE wont understand these, so we will use javascript magick */
   min-width: 770px;
   background-color: #272727;
   color: #ffffff;
}


/*** 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: 227px;    /* adjust according your image size */
   max-height: 227px;
   background: none;
   position: relative;
}

div#header h1 a {
/* you can set your own image here */
   background: none; 
   display: block;
/* height: 202px;              adjust according your image size */
/*  text-indent: -999em;   this hides the text */
/* text-decoration:none;  old firefox would have shown underline for the link, this explicitly hides it */
}

/* position for the search box */
div#search {
   float: right;
   width: auto;    /* enough width for the search input box */
   text-align: right;
   padding: 0.6em 0 0 0;
   margin: 0;
}

/*input#cntnt01searchinput {
  background-color: #1b1b1b;
  color: #FFFFFF;
  border: 1px solid;
  border-color: #666;
  padding: 2px;

}
 //////////////////////////////////// */

div#search submit{
   cursor:pointer;
   border:outset 1px #ccc;
   background:#999;
   color:#666;
   font-weight:bold;
   padding: 1px 2px;
}
/* ////////////////////////////////// */

div.breadcrumbs {
   padding: 1em 0 1em 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;        /* css shorthand rule will be opened to be "0 1em 0 1em" */
   border-bottom: 0px;
}

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

 div#content {
   margin: 0px;   /* some air above and under menu and content */
}


div#main {
  /* margin-left: 0px;  this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
 /*  margin-right: 0px;  and some air on the right */
   float: right;
   width: 565px;
   padding: 0px;
}

div#main_content {
   width: 530px;
   margin: 0 auto 0 auto;
   padding: 10px;
   background-color: #1B1B1B;
}

div#main_content_start {
   background-color: #1B1B1B;
padding: 5px;
}

div#main_content_news {
   width: 530px;
   margin: 0 auto 0 auto;
   padding: 0px;
}

.NewsPostDetailContent a {
   color: #8c8c8c;
}

.main_gallery {
margin-bottom: 15px;
padding: 10px;
background-color: #1b1b1b;
}


div#main_content_news img {
   /*margin-left: 10px;*/
}

div#main_content_news .gallery img {
border: 1px solid #5F5F5F;
margin: 5px;
padding: 10px;
background-color: #000000;
}

.gallery {
padding: 0px;
text-align: center;
}

div#main-start {
   margin-left: 12px; /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
   margin-right: 12px; /* and some air on the right */
   margin-bottom: 12px;
   float: left;
   width: 385px;
}

div#sidebar {
   float: left;        /* set sidebar on the left side. Change to right to float it right instead. */



   width: 188px;     /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX IE double margin bug */
   margin-left: 0px;
}

div#footer {
   clear: both;       /* keep footer below content and menu */
   color: #fff;
   background-color: #1B1B1B; /* same bg color as in header */
}

div#footer p {
   font-size: 0.8em;
   padding: 1.5em;       /* some air for footer */
   text-align: center;  /* centered text */
   margin: 0;
}

div#footer p a {
   color: #fff; /* needed becouse footer link would be same color as background otherwise */
}

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

/* relational links under content */
div.left49 {
   width: 49%; /* 50% for both left and right might lead to rounding error on some browser */
}

div.right49 {
   float: right;
   width: 49%;
   text-align: right;
}

/********************
CONTENT STYLING
*********************/
div#content {

}

/* HEADINGS */
div#content h1 {
   font-size: 2em; /* font size for h1 */
   line-height: 1em;
   margin: 0;
}
div#content h2 {
   color: #FFFFFF; 
   font-size: 1em; 
   text-align: left; 
/* some air around the text */
   padding: 0.5em 0.5em 0.6em 1.5em;
/* set borders around header */
   border-bottom: 1px solid #c0c0c0; 
   line-height: 1.5em;
/* and some air under the border */
   margin: 0 0 0.5em 0;
   background-color: #1B1B1B
}
div#content h3 {
   color: #FFFFFF; 
   font-size: 1.3em;
   line-height: 1.3em;
   margin: 0 0 0.5em 0;
}
div#content h4 {
   color: #FFFFFF; 
   font-size: 1.2em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
div#content h5 {
   color: #294B5F; 
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
h6 {
   color: #294B5F; 
   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;
   /*word-spacing:0.25em;*/
   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: #4b4b4b;
   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: 1em;
   line-height: 1.4em;
   margin: 0 0 1.5em 0;
}

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

ul.nagrody {
   font-size: 1em;
   line-height: 1.4em;
   margin: 0 0 1.5em 0;
   list-style-type: square;
}

ul.nagrody li {
   margin: 0 0 0.25em 3em;
}

/* 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;
}

.style62 {
  font-weight: bold;
  color: #ff0000;
}

div#lang {
   height: 12px;
   min-height: 12px;
   background-color: #272727;
   margin: 0px;
   float: right;
   position: absolute; right: 0; top: 19px;
}

div#oferta_img {
   padding: 5px;
   /*background-color: #121212;*/
   float: left;
   margin: 0px 5px 0px 0px;
   text-align: justify;
   border: 1px solid #3f3f3f;
}

.oferta_img {
   padding: 5px;
   background-color: #000000;
   float: left;
   margin: 0px 5px 0px 0px;
   text-align: justify;
}

div#oferta {
   padding: 5px;
   background-color: #1B1B1B;
   float: left;
   text-align: justify;
   margin: 0px;
   height: auto;
   width: 530px;
   color: #ffffff;
}

div#wyp {
   padding: 5px;
   background-color: #1B1B1B;
   text-align: center;
   margin: 0 auto 0 auto;
   height: auto;
   width: 500px;
   color: #ffffff;
}

div#wyp table {
   text-align: center;
   margin: 0 auto 0 auto;
}

.oferta_bold {
   font-weight: bold;
   color: #FF0000;
}

#certyfikaty table {
   /*width: 548px;*/
   margin: 5px 0 5px 0;
   font-weight: bold;
   color: #ffffff;
   border-bottom: 1px solid #C0C0C0;
   /*background-color: #1B1B1B;*/
   width: 530px;
   max-width: 530px;
}

#certyfikaty img{
   margin:10px;
   float: left;
   display: inline;
}

#Nagrody {
   text-align: center;
   background-color: #1B1B1B;
padding: 8px 0 8px 0;
}

#Nagrody img {
   margin: 8px;
}

#m6fbrp__27 {
   width: 500px;
}

.kontakt {
font-weight: bold;
padding-top: 0.5em;
padding-right: 0.5em;
padding-bottom: 0.6em;
padding-left: 1.5em;
border: 0px;
line-height: 1.5em;
margin-top: 0pt;
margin-right: 0pt;
margin-bottom: 0.5em;
margin-left: 0pt;
background-color: #1b1b1b;
text-align: center;
}

#kontakt table {
width: 500px;
}

#logowanie {
padding-top: 0.5em;
padding-right: 0.5em;
padding-bottom: 0.6em;
padding-left: 1.5em;
border: 0px;
line-height: 1.5em;
margin-top: 0pt;
margin-right: 0pt;
margin-bottom: 0.5em;
margin-left: 0pt;
background-color: #1b1b1b;
}

.album_thumb_Comment {
   text-align: justify;
}


div .album_thumb_Comment  img {
   float: left;
   margin-right: 5px;
}
.wyslane {background-color: #121212; padding: 10px;}
/* END LISTS */

div#identyfikator {
width: 770px;
height: 20px;
visibility: visible;
position: absolute;
padding: 0px;
top: 15%;
margin: 0px auto;
text-align: center;
background: transparent;
z-index: 2;
border: 0px;
}

/*###################round corners#######################33*/
div#nifty {
margin: 0 10%;
background: #121212;
max-width: 300px;
height: 150px;
}
b.rtop, b.rbottom {
display:block;
background: #1B1B1B;
}
b.rtop b, b.rbottom b {
display:block;
height: 1px;
overflow: hidden;
background: #121212;
}
b.r1 {
margin: 0 5px;
}
b.r2 {
margin: 0 3px;
}
b.r3 {
margin: 0 2px;
}
b.rtop b.r4, b.rbottom b.r4 {
margin: 0 1px;
height: 2px;
}

.tdoferta {
   border-top: 1px solid #3f3f3f;
   border-bottom: 1px solid #3f3f3f;
   color: #ffffff;
}

td {
color: #ffffff;
}

div#content h2.oferta{
color: #FFFFFF; 
font-size: 1em; 
text-align: left; 
/* some air around the text */
padding: 0.5em 0.5em 0.5em 1.5em;
/* set borders around header */
border-bottom: 1px solid #c0c0c0; 
line-height: 1.5em;
/* and some air under the border */
margin: 0 0 0.5em 0;
background-color: #1B1B1B;
width: 300px;
float: left;
max-height: 32px;
}

div#content h2.salony a{
color: #FFFFFF;
font-size: 1em;
text-align: left;
/* some air around the text */
padding: 0.5em 0.5em 0.5em 0.5em;
/* set borders around header */
border-bottom: 1px solid #c0c0c0;
line-height: 1em;
/* and some air under the border */
margin: 0px;
background-color: #0b0b0b;
float: left;
max-height: 25px;
}

div#content h2.salony a:hover{
color: #ffffff;
font-size: 1em;
text-align: left;
text-decoration: none;
/* some air around the text */
padding: 0.5em 0.5em 0.5em 0.5em;
/* set borders around header */
border-bottom: 1px solid #c0c0c0;
line-height: 1em;
/* and some air under the border */
margin: 0px 0px 0px 0px;
background-color: #3F3F3F;
float: left;
max-height: 25px;
}

div#content h2.salony{
background-color: transparent;
border: 0px;
}

div#separator{
width: 3px;
max-width: 3px;
height: 12px;
background-color: #1B1B1B;
border-bottom: 1px solid #c0c0c0;
margin: 18px 0px 0px 0px;
_margin: 15px 0px 0px 0px;
padding: 0px;
float: left;
}

#mapa {
margin: 0 auto;
}

/* ###########  SALONY ###########*/
#salony {
width: 524px;
margin: 0px auto 0px auto;
}
#salony a.salony_rollover {
width: 524px;
display: block;
overflow: hidden;
}
		
#salony a.salony_rollover img {
display: block;
border: 0;
}

#salony a.salony_rollover:hover img {
margin-left: -524px;
}

.opis_zdjecia {
font-size: 0.8em;
line-height: 12px;
color: #636363;
}

:focus {
-moz-outline-style: none;
outline: none;
}

.cytat {
   background-color: #272727;
   padding: 10px;
   border-top: 1px solid #C0C0C0;
   border-bottom: 1px solid #C0C0C0;
   text-align: center;
   font-weight: bold;
   font-size: 1.3em;
   color: #C0C0C0;
   margin-bottom: 15px;
}

#p_pagewrapper {
  display: inline;
  padding: 0px;
  margin: 0px;
}

#pagewrapper strong a {
  color: #C0C0C0;
}

#pagewrapper h1 a {
  color: #C0C0C0;
}
/* End of 'Layout: Left sidebar + 1 column' */

