/* BASE LAYOUT CSS */
/* Defines the base layout for the page, to be used throughout all themes/layouts */
/* Be sure to manually give elements the class contentWidth where required, as widths are not defined here */

/* BASE */
html, body {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
}

/* PAGE; Full Height */
body {
    text-align: center;
}
div#page_shell {
    position: relative;
    min-height: 100%; /* full height */
    /* content width */
    margin: 0px auto;
    text-align: center; /* ie */
}
* html div#page_shell {
    height: 100%; /* full height ie */
}
div#page {
    position: relative;
    padding-bottom: 40px; /* footer + margin */
    zoom: 1; /* fix "hasLayout" dissapearing ie bug */
}

div#preview_page_info, div.preview_page_info_reference {
    display: none; /* seo info pages */
}

/* FOOTER; Page Base */
div#footer_shell {
    position: relative;
    height: 30px;
    margin: 0px auto;
    margin-top: -30px;
    text-align: center; /* ie */
    font-size: 0.8em;
    letter-spacing: 0px;
}
div#footer {
    position: relative;
    text-align: left;
}

div#footer_menu {
    text-align: center;
    /* left padding */
}
div#footer_left {
    position: absolute;
    top: 0px; left: 2px;
}
div#footer_right {
    position: absolute;
    top: 0px; right: 2px;
}

/* MENU */
table.menuHorizontal {
    width: 100%;
}
table.menuHorizontal td {
    text-align: center;
    font-size: 1em;
}
table.menuVertical td {
    font-size: 0.9em;
    text-align: left;
}
table#menuTable td {
    height: 1.8em;
    overflow: visible;
    vertical-align: middle;
}

/* ADDITIONAL */
.break {
    display: block;
    clear: both;
    height: 0px;
    line-height: 0px;
    visibility: hidden;
    overflow: hidden;
}


/* */
