/* Start of CMSMS style sheet 'Layout: Top menu + 2 columns' */
/*****************
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;
   color:#6A6865;
   font-family:verdana;
   font-size: 11px;
}

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

.button {
border: 1px solid #9B9894; 
background-color:#A9A6A2; 
color:#FFFFFF;
font-size:10px;
font-weight:300; 
height:17px;
padding-bottom:2px
}

.ramka {
border: 1px solid #9B9894;
height:14px; 
font-size:10px; 
color:#9B9894; 
padding-top:1px
}

/*
default link styles
*/
/* set all links to have underline and bluish color */
a,
a:link 
a:active {
	text-decoration: none;
	color: #e42b38;
	font-weight: 600;
}

a:hover {
	text-decoration: underline;
	color: #e42b38;
	font-weight: 600;
}

.footer-colour {
	color: #cbd200;
}

#footer-copyright {
	display: block;
        margin-top:10px;
        align: center;
	text-align: center;
}

/*****************
basic layout 
*****************/
body {
background-color: #FFFFFF;
clear: both;
margin-right: 1em;
text-align: justify;
color: #6A6865;
margin:0px; /* gives some air for the pagewrapper */
}

/* center wrapper, min max width */
div#pagewrapper {
   border: 0px solid black;
   margin: 0 auto;     /* this centers wrapper */
   width: 827px; /* IE wont understand these, so we will use javascript magick */
   background-color: #FFFFFF;
   font-size:11px;
   line-height:16px;
   font-family:verdana;
   color: #6A6865;
}

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

div.breadcrumbs {
	text-decoration: none;
	color: #aba8a4;
        width:350px;
	font-weight: 300;
}

 div.breadcrumbs span.lastitem { 
	color: #aba8a4;
 }

div#content {
   margin: 0auto  0; /* some air above and under menu and content */
   background-color:#FFFDEE;
}

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


div#sidebar {
   float: left;  /* set sidebar on the left side. Change to right to float it right instead. */
   width: 26%;    /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX ie doublemargin bug */
   margin-left: 0;
}

/* if sidebar doesnt include menu but content add class="hascontent" */
div#sidebar.hascontent {
   padding: 0 1%;
   width: 24%;  /* make width smaller if there's padding, or it will get too wide for the floated divs in IE */
}

/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 2px;
   margin: 0px;
   color: #D3782F;
   width:100%
   border-bottom: 1px solid #D3782F;
}

/* relational links under content */
div.left49 {
  float: left;
  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 {
   line-height:26px;
}


/* HEADINGS */
div#content h1 {
   font-size: 14px;  /* font size for h1 */
   color: #D3782F;
   line-height: 16px;;
   border-bottom: 1px solid #D3782F;
   margin-bottom: 16px;
}
div#content h2 {
   color: #294B5F; 
   font-size: 1.5em; 
   text-align: left; 
/* some air around the text */
   padding-left: 0.5em;
   padding-bottom: 1px;
/* set borders around header */
   border-bottom: 1px solid #e7ab0b; 
   border-left: 1.1em solid #e7ab0b; 
   line-height: 1.5em;
/* and some air under the border */
   margin: 0 0 0.5em 0;
}
div#content h3 {
   color: #294B5F; 
   font-size: 1.3em;
   line-height: 1.3em;
   margin: 0 0 0.5em 0;
}
div#content h4 {
   color: #294B5F; 
   font-size: 1.2em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
div#content h5 {
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
h6 {
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
/* END HEADINGS */

/* TEXT */

blockquote {
   border-left: 10px solid #ddd;
   margin-left: 10px;
}
pre {
   font-family: monospace;
   font-size: 1.0em;
}
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;
}

textarea {
width:320px;
height:60px;
}

.pu {
border-bottom: 1px solid rgb(176, 175, 152);
padding: 6px;}

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%;   /* smaller font size, as these are usually not so important data */
}

.data-info {}

/* END TEXT */

/* LISTS */
div#main ul,
div#main ol,
div#main dl {
  font-size: 1.0em;
   line-height:1.4em;
}
div#main ul li,
div#main ol li {

}

div#dl dt {
   font-weight: bold;
   margin: 0 0 0.25em 3em;
}
div#dl dd {
   margin: 0 0 0 3em;
}
/* END LISTS */

#info {
	display: block;
        color: #6A6865;
        padding: 0px;
	margin-bottom: 10px;
}
#info a {
	text-decoration: none;
	color: #aba8a4;
	font-weight: 300;
}
#info a:hover {
	text-decoration: underline;
	color: #aba8a4;
	font-weight: 300;
}

#info-bottom {
	text-decoration: none;
	color: #7E7E7E;
        font-size:9px;
        margin-bottom:13px;
	font-weight: 300;
}

.top-tabela {
width:665px;
height:240px;
vertical-align:top;
padding:0px;
margin:0px;
background-image:url(images/top-1.png);
background-position:top;
background-repeat:no-repeat;
}

ul {
	list-style-type: none;
}

#content-main li {
	list-style-type: square;

}

#content-main ul li.more-space {
	margin-top: 2em;
}
#content-main address, p, #content-main li {
	font-size: 1.2em;
}

#breadcrumb-languages {
	display: block;
	float: right;
        width:220px;
	margin-top: 5px;
}
#breadcrumb-languages a {
	text-decoration: none;
	color: #aba8a4;
	font-weight: 300;
}
#breadcrumb-languages a:hover {
	text-decoration: underline;
	color: #aba8a4;
	font-weight: 300;
}

#content-main {
	display: block;
	float: left;
	width: 426px;
        font-size:11px;
        line-height:18px;
        font-family:verdana;
	margin-top: 4px;
	padding-top: 16px;
	padding-bottom: 16px;
}
#content-main1 {
	display: block;
	float: left;
	width: 326px;
	margin-top: 4px;
	padding-top: 16px;
	padding-bottom: 16px;
}

#content-main h1 {
	color: #989592;
	padding: 0;
	margin: 0;
	margin-bottom: 1em;
	font-size: 1.5em;
}
#content-main h1 a {
	color: #989592;
	text-decoration: none;
}
#content-main h1 a:hover {
	color: #989592;
	text-decoration: none;
}
#content-main h2 {
	color: #989592;
	padding: 0;
	margin: 10px 0px 0px;
	font-size: 1.3em;
}
#content-main h2 a {
	color: #cbd200;
	text-decoration: none;
}
#content-main h2 a:hover {
	color: #cbd200;
	text-decoration: none;
}
#content-main ul {
        margin-left:50px;
}
#content-main ul li.more-space {
	margin-top: 2em;

}
#content-main address, p, #content-main li {
	font-size: 1.2em;
}
.deep-1, deep-2 {
	font-size: 1em;
}
#content-main p {
	clear: both;
	margin-right: 1em;
	text-align: justify;
	padding: 0;
	margin-top: .5em;
	margin-bottom: .5em;
}
dl {
	font-size: 1.2em;
}
#content-main dd {
	margin-bottom: 1em;
	margin-right: 1em;
}
#content-main table {
	border: 1px solid gray;
}
.poczatek-artykulu {
	color: #cbd200;
}
.poczatek-artykulu:hover {
	color: #cbd200;
	text-decoration: none;
}
.czytaj-dalej {
	color: #cbd200;
	text-align: right;
	display: block;
	margin-bottom: 2em;
}

#content-right {
	display: block;
	float: left;
        margin:0px;
        padding:0px;
	width: 218px;
	background-color: transparent;
	/* background-color: gray; */
}
#content-right h3 {
	font-size: 1.2em;
	color: gray;
	margin-left: 4px;
        margin-bottom:16px;
}
#content-right p {
	font-size: .9em;
	color: gray;
	margin-left: 4px;
	text-align: justify;
}
#content-right-section {
	margin-left: 0px;
	margin-top: 0px;
}

.beforeLead {
	font-size: .9em;
}
.beforeLeadSource {
	text-align: left;
	display: block;
	float: left;
}
.beforeLeadDate {
	text-align: right;
	float: right;
}
.lead {
	font-weight: bold;
	margin-right: 1em;
	padding:0;
}
.to-upper {
	display: block;
	float: right;
	font-size: 1em;
}
.to-upper {
	display: block;
	float: right;
	font-size: 1em;
}
.h1-standard, .h1-standard:hover {
	color: #989592;
	text-decoration: none;
}
/* End of 'Layout: Top menu + 2 columns' */

