/* Start of CMSMS style sheet '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: Georgia, "Times New Roman", Times, serif;
	font-size: 14px;
	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*/
a, a:link a:active {
	text-decoration: underline;
	background-color: inherit;
	color: #103C00;
        font-weight: bold;
        outline: none;
}
a:visited {
	text-decoration: underline;
	background-color: inherit;
	color: #103C00;
}
a:hover {
	text-decoration: none;
	background-color: inherit;
	color: #103C00;
}


/*****************basic layout *****************/
body {
	margin: 0;
	padding: 0;
	color: #103C00;
	background: #FBFAE9;
}
div#pagewrapper {
       width: 907px;
       margin: 0 auto;
       margin-top: 22px;
       margin-bottom: 22px;
}

p {
/* default p font size, this is set different in some other divs */
	font-size: 1em;
/* some air around p elements */
	margin: 0 0 1.5em 0;
	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;
}

pre {
/* black border for pre blocks */
	border: 1px solid #000;
/* set different from surroundings to stand out */
	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 */
div.templatecode {
	margin: 0 0 2.5em;
}

div#wrapper_top {
        background: url(uploads/layout/wrapper_top_bg.gif) no-repeat;
}

div#wrapper_bottom {
        background: url(uploads/layout/wrapper_bottom_bg.gif) no-repeat bottom;
}

div#wrapper_middle {
        background: url(uploads/layout/wrapper_middle_bg.gif) repeat-y top left;
}

div#header {
       text-align:center;
       padding-top: 10px;
}

div#main {
       padding: 30px;
       padding-top: 4px;
       background: url(uploads/layout/main_bg.gif) no-repeat 50% 30px;
}

div#left_col {
       float: left;
       width:244px;
}

div#right_col {
       float: right;
       width:603px;
}

div#content {
       margin: 35px 25px 20px 40px;
       padding-bottom: 50px;
       background: url(uploads/layout/content_bg.gif) no-repeat bottom right;
       text-align: justify;
}

div#banner_wesela{
       margin-top: 100px;
}



/* 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 0 1.5em 0;
}
div#main ul li,
div#main ol li {
	margin: 0 0 0.25em 3em;
}
/* definition lists topics on bold */
div#main dl {
	margin-bottom: 2em;
	padding-bottom: 1em;
	border-bottom: 1px solid #c0c0c0;
}
div#main dl dt {
	font-weight: bold;
	margin: 0 0 0 1em;
}
div#main dl dd {
	margin: 0 0 1em 1em;
}
/* END LISTS */

/* End of 'Podstawowy' */

