* {
    margin: 0;
}
/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
    background-color: #333333;
    color: #000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    line-height: 14px;
    margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
    padding-bottom: 20px;
    padding-top: 20px;
    text-align: center; /* Centers the page content container in IE 5 browsers. */
}
/* Commonly used to style page titles. */
h1 {
    color: #000;
    font-size: 14px;
    font-weight: bold;
    line-height: 14px;
}
/* Commonly used to style section titles. */
h2 {
    color: #000;
    font-size: 12px;
    font-weight: bold;
    line-height: 14px;
}
#lang {
    position: absolute;
    top: 2px;
    right: 2px;
}
#topmenu {
    text-align: left;
    background: #FFFFFF url(media/bg_topmenu.gif) repeat-x left top;
    border-bottom: 2px solid #FFFFFF;
    border-top-style: none;
    border-right-style: none;
    border-left-style: none;
    position: relative;
    height:26px;
    font-size: 11px;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
}
#topmenu ul {
    margin: 0px;
    padding: 0px;
    width: 774px;
    line-height: 26px;
    font-size: 11px;
}
#topmenu ul li {
    margin: 0px;
    padding: 0px;
    float: left;
    list-style: none;
    border-right: 1px solid #C4CBCA;
    border-top-style: none;
    border-bottom-style: none;
    border-left-style: none;
    font-size: 11px;
}
#topmenu ul li a {
    color: #000000;
    text-decoration: none;
    display: block;
    padding-right: 10px;
    padding-left: 10px;
        font-size: 11px;

}
#topmenu ul li a:hover {
    color: #006699;
    text-decoration: underline;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#page {
    min-width: 774px;
    text-align: left; /* Redefines the text alignment defined by the body element. */
    width: 774px;
    background: url(images/bg_page.gif) repeat-y left top;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
}
#page #wrapper #sidebar {
    background-image: url("images/bg_sidebar.gif");
    background-position: top right;
    background-repeat: no-repeat;
    float: right;
    width: 200px;
    padding-top: 10px;
    padding-right: 0px;
    padding-bottom: 10px;
    padding-left: 0px;
    position: relative;
    display: none;
}
#sidebar a {
    font-size: 11px;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#page #wrapper #content {
    width:774px;
    float:left;
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#page #wrapper .clearFloat {
    clear:both;
    display: block;
}
#page #footer {
    height: 50px;
    padding: 20px 20px 20px 20px;
    background: #333333 url(images/bg_footer.gif) no-repeat left top;
    text-align: center;
}
.tloopis ul {
    margin-top: 0px;
    margin-right: 10px;
    margin-bottom: 0px;
    margin-left: 10px;
    padding-top: 5px;
    padding-right: 10px;
    padding-bottom: 5px;
    padding-left: 10px;
    font-size: 10px;
}
.tloopis ul li {
    font-size: 12px;
    padding-top: 2px;
    padding-right: 5px;
    padding-bottom: 2px;
    padding-left: 5px;
    margin-top: 0px;
    margin-right: 10px;
    margin-bottom: 0px;
    margin-left: 10px;
}
.tloopis p {
    padding-top: 5px;
    padding-right: 0px;
    padding-bottom: 5px;
    padding-left: 0px;
}
#sidebar form, #sidebar p {
    color:#000000;
    float:right;
    margin:0px;
    padding:0px;
    position:relative;
    right:10px;
    width:170px;
}
#sidebar ul {
    margin:0px 0px 0px 30px;
    padding:0px 5px;
}
#sidebar ul li a {
    color:#FFFFFF;
    display:block;
}
#sidebar ul li ul li a {
    color:#CCCCCC;
}
#sidebar h2 {
    border-bottom:1px dotted #333333;
    color:#999999;
    font-family:Georgia, "Times New Roman", Times, serif;
    font-size:1.6em;
    font-size-adjust:none;
    font-stretch:normal;
    font-style:italic;
    font-variant:normal;
    font-weight:normal;
    left:20px;
    line-height:normal;
    margin:0px 0px 5px;
    padding:5px 0px;
    position:relative;
    width:160px;
}
#sidebar ul li {
    font-weight:bold;
    list-style-image:none;
    list-style-position:outside;
    list-style-type:disc;
    margin:0px;
    padding:2px 1px;
}
#sidebar ul li ul {
    margin:0px 0px 0px 15px;
    padding:0px;
}
#sidebar ul li ul li {
    font-weight:normal;
    list-style-image:none;
    list-style-position:outside;
    list-style-type:disc;
    margin:0px;
    padding:2px 1px;
}
.przycisk {
    background:transparent url(media/bg_h1.gif) repeat-x scroll left bottom;
    border-style:none;
    color:#FFFFFF;
    cursor:pointer;
    font-family:Georgia, "Times New Roman", Times, serif;
    font-size:1.4em;
    font-size-adjust:none;
    font-stretch:normal;
    font-style:italic;
    font-variant:normal;
    font-weight:normal;
    line-height:normal;
}
a.przyciskn {
    background:transparent url(media/bg_h1.gif) repeat-x scroll left bottom;
    border:1px solid #CCCCCC;
    color:#FFFFFF !important;
    height:auto;
    margin:5px;
    padding:2px;
    position:relative;
    text-align:center;
    text-decoration:none;
    width:160px;
}
a.przyciskn:hover {
    border:1px solid #2A2A7F;
    color:#1C1C53;
}
input.przyciskn {
    background-image:url(media/tlostopka.gif);
    background-position:left center;
    background-repeat:repeat-x;
    border:1px solid #CCCCCC;
    color:#FFFFFF;
    height:auto;
    margin:5px;
    padding:2px;
    position:relative;
    text-align:center;
    text-decoration:none;
    width:160px;
}
input.przyciskn:hover {
    border:1px solid #585858;
    color:#1C1C53;
}
#sidebar a:hover {
    text-decoration:underline;
}
.tloopis h3 {
    color: #515151;
    font: normal 24px/38px Georgia, "Times New Roman", Times, serif;
}
.tloopis h3 a {
    color: #006699;
    text-decoration: none;
    font: normal 24px Georgia, "Times New Roman", Times, serif;
}
.tloopis h3 a:hover {
    color: #333333;
    text-decoration: underline;
}
#page #wrapper #content .ramkastrona .tloopis a {
    color: #0066CC;
}
#page #wrapper #content .ramkastrona .tloopis a:hover {
    color: #990000;
    text-decoration: none;
}
#page #wrapper #content .tloopis #mapakdane .tdkreskap {
    border-right: 1px dotted #CCCCCC;
    border-top-style: none;
    border-bottom-style: none;
    border-left-style: none;
}
#page #wrapper #content .tloopis #mapakdane .tdkreskad {
    border-bottom: 1px dotted #CCCCCC;
    border-top-style: none;
    border-right-style: none;
    border-left-style: none;
    position: relative;
    height: 1px;
    line-height: 1px;
    font-size: 1px;
    margin: 0px;
    padding: 0px;
}
#page #wrapper #content .tloopis #mapakdane td, #page #wrapper #content .tloopis #mapakdane ul, #page #wrapper #content .tloopis #mapakdane li, #page #wrapper #content .tloopis #mapakdane a {
    font-size:11px;
    margin: 0px;
    padding: 1px 0px;
    list-style: none;
}
