
/**
 * Reset browser default settings. Do not reset settings for those elements,
 * which are not later defined in typo.css or forms.css.
 *
 * @package    themes
 * @subpackage default2
 * @author     Dmitri Lakachauskis <lakiboy83@gmail.com>
 */

/* Block elements */
body, p, pre { /* blockquote */
    margin: 0;
    padding: 0;
}


/* Headers */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-size: 1em;
    font-weight: normal;
}


/* Lists */
dl, dt, dd, ul, ol, li {
    margin: 0;
    padding: 0;
}
ol, ul {
    list-style: none;
}


/* Misc */
a {
    outline: none;
}
img, iframe {
    border: none;
}


/* Tables */
th, td {
    margin: 0;
    padding: 0;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
caption, th, td {
    text-align: left;
}


/* Forms */
form, fieldset, legend, input, textarea, select {
    margin: 0;
    padding: 0;
}
fieldset {
    border: none;
}
input, textarea, select {
    font-size: 1em;
    font-family: inherit;
}


/* Inline elements */
/*
address, cite, code, dfn, em, strong, var {
    font-style: normal;
    font-weight: normal;
}
abbr, acronym {
    border: 0;
}
*/

/**
 * Tools:
 *   - easy clearing method
 *   - replace (useful for screen readers)
 *   - accessibility (useful for screen readers)
 *
 * @package    themes
 * @subpackage default2
 */

/* clearing */
.stretch,
.clear {
    clear: both;
    height: 1px;
    margin: 0;
    padding: 0;
    font-size: 15px;
    line-height: 1px;
}
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.clearfix { /* make method ie7 compatible */
    display: inline-block;
}

html .clearfix {
    /* Hides from IE-mac \*/
	height: 1%;
	display: block; /* restore block display for ie6 */
	/* End hide from IE-mac */
}

/* end clearing */


/* replace */
.replace {
    display: block;

	background-repeat: no-repeat;
	background-position: left top;
	background-color: transparent;
}
/* tidy these up */
.replace * {
    text-indent: -10000px;
    display: block;

    background-repeat: no-repeat;
    background-position: left top;
    background-color: transparent;
}
    .replace a {
		text-indent: 0;
	}
        .replace a span {
            text-indent: -10000px;
        }
/* end replace */


/* accessibility */
span.accesskey {
    text-decoration: none;
}
.accessibility {
    position: absolute;
    top: -9999em;
    left: -9999em;
}
/* end accessibility */


/* hide */
.hide {
    display: none;
}
/**
 * Typography.
 *
 * @package    themes
 * @subpackage default2
 * @author     Julien Casanova <julien_casanova@yahoo.fr>
 * @author     Dmitri Lakachauskis <lakiboy83@gmail.com>
 */

/* Blocks */
body {
    font-family: Verdana, sans serif;
    font-size: 12px;
    line-height: 1.3em;
    color: #464646;
}
p {
    margin-bottom: 0.7em;
}
pre { /* blockquote */
    margin-bottom: 1em;
    border: 1px solid #666;
    border-left: 5px solid #666;
    padding: 1em;
    background-color: #eee;
    font-family: monospace;
    font-size: 1em;
}
/* END blocks */


/* Headings */
h1 {
    color: #ed1b2e;
    font-family: Tahoma, sans serif;
    font-size: 15px;
    font-weight: bold;
    margin-top: 1.8em;
    margin-bottom: 1.4em;
}
h2 {
    /*
    margin-bottom: 0.5em;
    font-size: 1.3em;
    font-weight: bold;
    line-height: 1.3em;
    color: #666;
    */
    color: #464646;
    font-family: Tahoma, sans-serif;
    font-size: 14px;
    font-weight: bold;
    margin-top: 1.3em;
    margin-bottom: 0.9em;
}
h3 {
    /*
    margin-bottom: 0.3em;
    font-size: 1.2em;
    font-weight: bold;
    line-height: 1.2em;
    color: #666;
    */
    color: #464646;
    font-family: Tahoma, sans-serif;
    font-size: 12px;
    font-weight: bold;
    margin-top: 1.3em;
    margin-bottom: 0.9em;
}
h4 {
    /*
    margin-bottom: 0.2em;
    font-size: 1.2em;
    font-weight: bold;
    line-height: 1.2em;
    color: #666;
    */
}
h5 {
    /*
    margin-bottom: 0.1em;
    font-size: 1.1em;
    font-weight: bold;
    line-height: 1.1em;
    color: #666;
    */
}
h6 {
    /*
    margin-bottom: 0.1em;
    font-size: 1em;
    font-weight: bold;
    line-height: 1em;
    color: #666;
    */
}
.pageTitle {
    margin-top: 0px;
}
/* END headings */


/* Lists */
ul {
	margin: 0 0 0.7em 1em;
    list-style: none outside url(http://www.edokumenty.eu/themes/e09/images/bullets/default.gif);
    line-height: 1.3em;
}
    ul li {
        margin-left: 30px;
	}
ol {
    margin: 0 0 0.7em 1em;
    list-style: outside decimal;
    line-height: 1.3em;
}
    ol li {
        margin-left: 30px;
	}
dl {
    margin-bottom: 0.7em;
    line-height: 1.3em;
}
	dl dt {
	    font-weight: bold;
	}
	dl dd {
        margin-bottom: 0.2em;
		margin-left: 30px;
	}
/* END lists */


/* Links */
a,
a:link {
    font-family: Tahoma, sans-serif;
    text-decoration: underline;
    color: #464646;
}

a:active {
    color: #ED1B2E;
}

a:visited {
}
a:hover {
    text-decoration: underline;
}
/* END links */


/* Misc */
hr {
    display: none;
}
div.hr {
    margin: 1em auto;
    height: 1px;
    background-color: #999;
    line-height: 1px;
}

/**
 * Forms.
 *
 * @package    themes
 * @subpackage default2
 * @author     Dmitri Lakachauskis <lakiboy83@gmail.com>
 */

/* Fieldset / legend */
fieldset {
    margin-bottom: 0.6em;
    padding: 1em 0 0.5em;
    #padding-top: 0; /* fix MSIE fieldsetPadding behaviour */
}
fieldset.noLegend {
    padding-top: 0;
}
fieldset.hr {
    border-top: 1px solid black;
}
fieldset.lastChild {
    margin-bottom: 0;
    padding-bottom: 0;
}
    fieldset legend {
        #margin-bottom: 0.8em; /* fix MSIE behaviour */
        #margin-left: -7px;
        #padding-bottom: 0.2em;

        padding-right: 0.5em;
        font-weight: bold;
        font-size: 1.1em;
        color: #333;
    }


/* Form elements */
input.text, select, textarea {
    border-width: 1px;
    border-style: solid;
    border-color: #7c7c7c #c3c3c3 #ddd #c3c3c3;
    width: 170px;
    padding: 2px;
    background: #fff url(http://www.edokumenty.eu/themes/e09/images/bg/form_input_m.gif) repeat-x left top;
    font-size: 0.9em;
    color: #666;
}
textarea {
    height: 6em;
}
label {
    color: #333;
}


/* Ordered list for displaying form elements */
form fieldset ol {
    margin: 0;
    list-style: none;
    line-height: 1em;
}
    form fieldset ol li {
        clear: left;
        margin: 0;
        padding-bottom: 0.6em;
        padding-left: 180px;
            }
        form fieldset ol li div {
                        #display: inline; /* fix MSIE */
            margin-bottom: 0;
        }
        form fieldset ol li label {
            float: left;
            margin-left: -180px;
            width: 160px;
            text-align: right;
        }
        form fieldset ol li p { /* field comments */
            margin-top: 0.2em;
            margin-bottom: 0;
            font-size: 0.9em;
        }
        form fieldset ol li p.error { /* field error */
            margin-top: 0;
            margin-bottom: 0.3em;
            color: #f00;
        }


/* Fields on top */
form fieldset ol.onTop {
}
    form fieldset ol.onTop li {
        clear: none;
        padding-left: 0;
            }
        
        form fieldset ol.onTop li label {
            float: none;
            display: block;
            margin-left: 0;
            margin-bottom: 0.2em;
            width: auto;
            text-align: left;
        }


/* Additional */
form em {
    font-style: normal;
    color: #f00;
}
form div,
form p {
    margin-bottom: 0.6em;
}
form .fieldIndent {
    margin-left: 180px;
}


/* No forms layout */
div.fieldsetlike {
    padding-bottom: 0.6em;
}
    div.fieldsetlike h3 {
        margin-bottom: 0.6em;
        font-weight: bold;
        font-size: 1.1em;
        line-height: 1.1em;
        color: #333;
    }
    div.fieldsetlike dl {
        margin-left: 160px;
        margin-bottom: 0;
        line-height: 1em;
    }
        div.fieldsetlike dl dt {
            float: left;
            display: inline;

            overflow: hidden; /* one row label only */
            height: 1.2em;

            margin-left: -160px;
            width: 140px;
            text-align: right;
            font-weight: normal;
            color: #333;
        }
        div.fieldsetlike dl dd {
            margin-left: 0;
            margin-bottom: 0.4em;

            min-height: 1.2em;
            _height: 1.2em; /* min height for ie6 */

            padding-bottom: 0.2em; /* fix MSIE bug */
            color: #666;
        }
/* END no forms layout */
/**
 * Site specific layout.
 *
 * @package    themes
 * @subpackage default2
 * @author     Julien Casanova <julien_casanova@yahoo.fr>
 * @author     Dmitri Lakachauskis <lakiboy83@gmail.com>
 */

html { /* inforces screen to show scrollbar */
    height: 100%;
    /*margin-bottom: 1px;*/
}
body {
    /*padding-bottom: 10px;*/
    background-color: white;
}

/* Body table */
table#bodyTable {
    width: 100%;
}
table#bodyTable td#topLeftCol {
    background: white url(http://www.edokumenty.eu/themes/e09/images/bg/bg_header_left.jpg) repeat-x;
}
table#bodyTable td#topRightCol {
    background: white url(http://www.edokumenty.eu/themes/e09/images/bg/bg_header_right.jpg) repeat-x;
}
table#bodyTable td#topMiddleCol {
    width: 901px;
    min-width: 901px;
    max-width: 901px;
}
table#bodyTable td#navMiddleCol {
    background: white url(http://www.edokumenty.eu/themes/e09/images/bg/bg_menu.gif) repeat-x;
}
table#bodyTable td#bodyMiddleCol {
    background: white url(http://www.edokumenty.eu/themes/e09/images/bg/bg_m.gif) repeat-x;
	background-position: bottom;
    padding-top: 30px;
}
table#bodyTable td#bottomMiddleCol {
    background: white url(http://www.edokumenty.eu/themes/e09/images/bg/bg_footer.gif) repeat-x;
}


/* UniHeader */
div.uniHeader {
    display: block;
    height: 20px;
}


/* Header */
table#header {
    width: 100%;
}
table#header td#headerLogo {
    width:276px;
    line-height: 0em;
}
table#header td#headerBlocks {
    background: white url(http://www.edokumenty.eu/themes/e09/images/header.jpg) no-repeat;
    width: 724px;
    vertical-align: top;
    text-align: left;
}
/* END header */
    

/* Footer */
div#footer {
    width: 900px;
    margin: 0 auto;
    height: 111px;
    text-align: center;
    font-family: Tahoma, sans-serif;
    font-size: 11px;
}
    div#footer table {
        width: 100%;
    }
    div#footer td#footerTopCol {
        height: 35px;
    }
    div#footer td#footerLeftCol {
        height: 76px;
        width: 150px;
        text-align: left
    }
    div#footer td#footerRightCol {
        text-align: right;
    }
    div#footer div {
        display: inline;
    }
    div#footer div.footerMenuItemSeparator {
        padding-left: 10px;
        padding-right: 10px;
        background: transparent url(http://www.edokumenty.eu/themes/e09/images/nav/f_menu_sep.gif) center no-repeat;
    }
/* END footer */


/* Content */
table#contentTable {
        width: 900px;
        margin: 0px auto;
    }
    
    table#contentTable td {
        vertical-align: top;
       /* text-align: justify; */
    }

    /* Left Col */
    table#contentTable td#leftCol {
        padding-right: 10px;
    }
    table#contentTable td#leftCol div.leftColSubarea {
        width: 100%;
    }

    /* Content */
    table#contentTable td#contentCol {
        padding-left: 10px;
        width: 592px;
    }
    
    /* H1 for page content */
    table#contentTable td#contentCol h1 {
        border-bottom: #d5d6d7 solid 1px;
        padding-bottom: 14px;
        margin-top: 0px;
    }
    
div#content {
    /*background-color: #fff;*/
    width: 100%;
    /*
    background-image: url(http://www.edokumenty.eu/themes/e09/images/bg/column_tm.gif);
    background-repeat: repeat-x;

    color: white;
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: 12px;
    font-weight: normal;
    text-align: justify;
    */
}
    div#content img.framed {
        border: solid 1px #e1e1e1;
    }
    
    table#contentTable div.articleNews {
        /*padding-top: 16px;*/
    }
/* END content */


/* Left/right blocks */
div.block {
    margin-bottom: 1.5em;
}
    div.block h2 {
        margin: 0 10px 8px;
        border-bottom: 1px solid #09c;
        padding-bottom: 0.4em;
        font-size: 1.1em;
        color: #09c;
    }
    div.block div.content {
        padding: 0.4em 10px;
        font-size: 0.9em;
    }
/* END left/right blocks */

/* Home page */
/* border-right: #a68c71 1px solid; */
table#homeBlocks {
    width: 100%;
}
table#homeBlocks td {
    vertical-align: top;
    text-align: justify;
}
td#homeTop {
    padding-bottom: 16px;
}
td#homeMiddleLeft {
    width: 282px;
    padding-right: 25px;
}
td#homeMiddleRight {
    width: 285px;
}
td#homeBottom {
}

/* Artistic link to full article */
table.moreLinkTable {
    width: 100%;
}
    table.moreLinkTable td.moreLinkLeftBar {
        min-width:29px;
        background: transparent url(http://www.edokumenty.eu/themes/e09/images/sep_l.png) no-repeat center;
    }
    table.moreLinkTable td.moreLinkMiddleBar {
        width: 100%;
        background: transparent url(http://www.edokumenty.eu/themes/e09/images/sep_m.png) repeat-x center;
    }
    table.moreLinkTable td.moreLinkRightBar {
        min-width: 29px;
        background: transparent url(http://www.edokumenty.eu/themes/e09/images/sep_r.png) no-repeat center;
    }
    table#contentTable table.moreLinkTable td.moreLinkButton {
        min-width: 30px;
        text-align: right;
    }
/* END Home page */


/* Recent Articles */
table.recentArticlesTable {
    width: 100%;
    background: #fafafa url(http://www.edokumenty.eu/themes/e09/images/bg/menu_2_bg.gif) top left repeat-x;
}
td.recentArticle {
    padding: 20px;
}
div.recentArticleHeader {
    background: transparent url(http://www.edokumenty.eu/themes/e09/images/bullets/kwad_aktual.gif) left top repeat-y;
    display: block;
    font-size: 10px;
    font-family: Tahoma, sans-serif;
    padding-left: 17px;
}
div.recentArticleSummarise {
    padding: 10px 0px 3px 17px;
}
div.recentArticleSummarise p {
    margin-bottom: 0em;
}
div.recentArticleMoreLink {
    display: block;
    text-align: right;
}
td.recentArticlesSeparator div {
    display: block;
    width: 92%;
    margin: 0px auto;
    font-size: 0px;
    max-height: 3px;
    background: transparent url(http://www.edokumenty.eu/themes/e09/images/nav/separator.gif) bottom repeat-x;
}


/* Breadcrumbs */
div#breadcrumbs {
    height: 33px;
}
div#breadcrumbs div.breadcrumbsSeparator {
    padding-left: 8px;
    padding-right: 8px;
}



/* More Link */
a.moreLink {
    font-family: Tahoma, sans serif;
    color: #0096db;
    font-size: 11px;
    font-weight: bold;
}

TABLE.ArticleTable TD {
	padding: 4px;
}

/**
 * Blocks.
 *
 * @package    themes
 * @subpackage default2
 * @author     Dmitri Lakachauskis <lakiboy83@gmail.com>
 */

/* Logout */
div#block-logout {
}
    div#block-logout strong {
        color: #666;
        color: #333;
    }
    div#block-logout em {
        font-style: normal;
    }


/* Lang switcher */
div#langSwitcher {
    float: right;
}
    div#langSwitcher a {
        float: left;
        margin-left: 15px;
    }
        div#langSwitcher a img {
            display: block;
        }


/* Breadcrumbs */


/* Search */
div#searchForm {
    width: 230px;
}
div#searchForm table {
    position: relative;
    left: 415px;
    top: 30px;
}

div#searchForm input#searchInput {
    width: 140px;
    border-style: none;
    border-width: 0px;
    font-size: 11px;
    /*padding: 3px 7px 0px 7px;*/
    padding-top: 2px;
    padding-left: 7px;
    padding-right: 7px;
    line-height: 17px;
    max-height: 17px;
    height: 17px;
    color: #464646;
}
div#searchForm input#searchButton {
    margin-left: 4px;
    margin-top: 2px;
}
div.searchDetailsHeader {
    margin-bottom: 2px;
}
div.searchDetailsRow {
    margin-top: 18px;
}
div.searchDetailsFooter {
    margin-top: 16px;
    margin-bottom: 16px;
}

/**
 * Common.
 *   - error messages
 *   - debug panel
 *   - tooltips
 *
 * @package    themes
 * @subpackage default2
 * @author     Julien Casanova <julien_casanova@yahoo.fr>
 * @author     Dmitri Lakachauskis <lakiboy83@gmail.com>
 */

/* Messages & errors */
div.message {
    width: 80%;
    margin: 0 auto;
}
    div.message p {
        margin-bottom: 1em;
        border-width: 2px;
        border-style: solid;
        padding: 0.5em;
        text-align: center;
    }
    div.message p.message-error {
        border-color: #f30;
        color: #f30;
    }
    div.message p.message-info {
        border-color: #66a326;
        color: #66a326;
    }
    div.message p.message-warning {
        border-color: #999;
        color: #999;
    }
    /* PEAR */
    div.message p.pear {
        border-top: none;
        border-color: #f30;
        text-align: left;
    }
    div.message h4 {
        border: 2px solid #f30;
        border-bottom: none;
        margin-bottom: 0;
        padding: 0.5em;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 0.3em;
        font-size: 1.1em;
        font-weight: bold;
        color: #f30;
    }
div#broadcastMessage {
    position: absolute;
    z-index: 300;
    left: 30px;
    top: 30px;
    width: 300px;
    padding: 10px 20px;
    background-color: #ffe9d9;
    color: #333;
}
    div#broadcastMessage a {
        position: absolute;
        right: 5px;
        top: 5px;
    }
/* END messages & errors */


/* Debug panel */
div#debugPanel {
    position: absolute;
    z-index: 9999;
    top: 0;
    right: 0;
    overflow: auto;
    border: 1px black solid;
    margin: 10px;
    min-width: 150px;
    height: 300px;
    padding: 5px 10px;
    background-color: #808080;
    opacity: 0.9;
    font-size: 0.9em;
    color: #333;
}
    div#debugPanel h3 {
        margin-bottom: 0.5em;
        color: #fff;
    }
    div#debugPanel a {
        color: #ccc;
        text-decoration: none;
    }
    div#debugPanel dl {
        margin-bottom: 0;
    }
        div#debugPanel dl dt {
            margin-bottom: 0.2em;
            font-weight: normal
        }
        div#debugPanel dl dd {
            margin-left: 0;
            margin-bottom: 0.5em;
        }
/* END debug panel


/* Turn of tooltips */
.tipOwner .tipText {
    display: none;
}

.ArticleTable TD TH {
	padding: 5px;
}

/**
 * - navigation bar at the top
 * - 1 column (main)
 *
 * @package    themes
 * @subpackage default2
 * @author     Dmitri Lakachauskis <lakiboy83@gmail.com>
 */


/**
 * - horizontal navigation
 * - toolbar
 *
 * @package    themes
 * @subpackage default2
 * @author     Dmitri Lakachauskis <lakiboy83@gmail.com>
 */

/* Main navigation */
div#nav-main {
    /*
    border-bottom: 1px solid #bbb;
    background-color: #fff;
    */
    background: url(http://www.edokumenty.eu/themes/e09/images/bg/bg_menu.jpg) repeat-x left top;
    height: 30px;
    
}
    div#nav-main div.inner {
        /*
        margin-bottom: 2px;
        height: 2.2em;
        border: 1px solid #bbb;
        */
        
        height: 30px;
        
        /*
        background-color: #eef7d4;
        */
        
        padding-left: 27px;
    }
    div#nav-main ul {
        margin: 0;
        list-style: none;
        /*
        line-height: 1em;
        */
    }
        div#nav-main ul li {
            margin: 0;
            float: left;
        }
            div#nav-main ul li a {
                display: block;
                /*
                border-right: 1px solid #fff;
                padding: 0.65em 1em 0.55em;
                font-weight: bold;
                color: #66a326;
                */
               padding-top: 7px;
               color: white;
               font-family: "Georgia", Times, serif;
               font-size: 10px;
               font-weight: bold;
               padding-right: 20px;
               text-transform: uppercase;
            }
            div#nav-main ul li a:hover, div#nav-main ul li.current a {
                /*
                background-color: #9c0;
                */
                color: black;
                text-decoration: none;
            }
/* END main navigation */


/* Toolbar */
div#nav-main div#toolbar {
    /*
    border: 1px solid #bbb;
    */
    margin-bottom: 2px;
    padding: 0.6em;
    height: 1.1em;
    font-size: 0.8em;
}
/* END toolbar */
div#content {
    position: relative;
    width: 582px;
}
div#main {
}
div#sub {
    display: none;
}
div#local {
    display: none;
}


/* Top Navigation */
div#topNav {
    height: 41px;
    line-height: 41px;
    width: 896px;    /* 7 times a width of li tag */
    margin: 0px auto;
}
    div#topNav ul {
        list-style-type: none;
            list-style-image: none;
            margin: 0px;
    }
    div#topNav li {
        width: 128px;
        margin: 0px;
        float: left;
    }
    /*line-height: 40px;*/
    div#topNav a {
        font-size: 11px;
        display: block;
        width: 100%;
        text-decoration: none;
    }
    div#topNav a:hover {
        text-decoration: none;
    }
    
    
/* Left Navigation */
div.leftNav {
    width: 100%;
    margin-bottom: 30px;
}
    div.leftNav table {
        width: 100%;
        font-family: Tahoma, sans serif;
        font-size: 12px;
        font-weight: bold;
        background: #fafafa url(http://www.edokumenty.eu/themes/e09/images/bg/menu_2_bg.gif) top left repeat-x;
    }
    div.leftNav td.menuItemCaption {
        padding-left: 15px;
    }
    table#contentTable div.leftNav td.menuItemIcon {
        text-align: middle;
        width: 20px;
        vertical-align: middle;
    }
    div.leftNav a {
        line-height: 44px;
        text-decoration: none;
    }
    table#contentTable div.leftNav a.current {
        color: #0096db;
    }
    div.leftNav td.menuSeparator div {
        display: block;
        width: 92%;
        margin: 0px auto;
        max-height: 3px;
        font-size: 0px;
        background: transparent url(http://www.edokumenty.eu/themes/e09/images/nav/separator.gif) bottom repeat-x;
    }

    
/* Left Advertisements */
div.leftAdv {
    width: 100%;
    margin-bottom: 30px;
}
 

/* Left News Area */
div.leftNews {
    width: 100%;
    margin-bottom: 30px;
}
    
    
/* Home Navigation R */
div.homeNavR {
    font-size: 0px;
}
    div.homeNavR ul {
        list-style-type: none;
        list-style-image: none;
        margin: 0px;
    }
    div.homeNavR li {
        margin: 0px;
    }
