/* 
Document   : layout
Created on : 19/12/2007, 20:02:57
Author     : Kenneth
Description: This lays out the basic page layout. 
To not use a section of the layout simply comment out it's div, eg 
<!--div id="leftBar">
Left Bar
</div-->

*/

@media print {
    root { 
        display: block;
        size: auto;
    }
}

#noPrint {
    display: none;
}

.noPrint {
    display: none;
}

body {
    background-image: none;
}

#container {
    width: 100%; 
}

#header {
    padding: 1em;
}

#header div {
    display: none;
}

#leftBar {
    display: none;   
}

#content {
    float: left;
    padding: 0em 0em 0.2em 1em;
    margin: 0em 0em 0em 0em;
}

#rightBar { 
    display: none;
    width: 0em;
}

#footer { 
    clear:both;
    padding: 0.5em;
    margin: 0.5em;
} 

/* 
Styles added by K affecting text, etc 
*/
/* This is for major page-top headings */
#header h4 {
    clear: left;
    font-weight: bold;
    font-size: 150%;
    color: #000000;
    background-color: transparent;
    padding: 0.1em 0.3em 0.1em 0.3em;
    margin: 0.3em 0em 0em 0em;
}

/* This is for ALL paragraphs in the main content */
#content p {
    padding: 0.2em 0em 0.2em 0em;
    margin: 0em;
}

/* This is for minor headings. There might be lots of these in a page.*/
#content h4 {
    font-weight: bold;
    font-size: 150%;
    color: #000000;
    background-color: transparent;
    padding: 0.5em 0em 0.3em 0em;
    margin: 0em;
}

/* This is for minor headings. There might be lots of these in a page.*/
#content h5 {
    font-weight: bold;
    font-size: 130%;
    color: #000000;
    background-color: transparent;
    padding: 0.5em 0em 0.3em 0em;
    margin: 0em;
}

/* This is for very minor headings. There might be lots of these in a page.*/
#content h6 {
    font-weight: bold;
    font-size: 115%;
    color: #000000;
    background-color: transparent;
    padding: 0.5em 0em 0.3em 0em;
    margin: 0em;
}

/* Puts a crotchet as the bullet image */
#content ul li {
    list-style-image: url(images/demisemiquaverSmall.gif);
}

/* Puts the specified background colour behind all table headers */
#content th {
    background-color: transparent;
    font-weight: bold;
    text-align: center;
}

#backgroundColoured {
    background-color: transparent;
    padding: 0.6em 0.6em 0.6em 0.6em;
}

/* Adds some padding to any element assigned this class - eg webuijsf:panelLayout panels in tabs */
.padding {
    padding-top: 1em;
    padding-right: 1em;
    padding-bottom: 1em;
    padding-left: 1em;    
}

/* Put the same border around almost anything with this class */
.border {
    border: 1px #000000 solid;
}

/* These are used by the pop box image viewer javascript */
.PopBoxImageSmall {
    display: none;
}

.PopBoxImageLarge {
    display: none;
}