/* 
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-->

*/

root { 
    display: block;
}

body {
    background-image: url(images/musicBackgroundFadedVery_298x150.gif);
    background-repeat: repeat-x;
    background-position: 0px 10px;
    font-size: 70%;
}

#container {
    width: 100%; 
}

#header {
    padding: 1em;
}

#leftBar {
    float: left; 
    width: 10em; 
    padding: 0.5em;    
}

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

#rightBar { 
    float: right; 
    width: 13em; 
    padding: 0em 0.5em 0.2em 0.5em;
    margin: 0em 1em 0.5em -16em;
    border: 2px green solid;
    background: url(images/musicBackgroundFadedVery_298x150.gif) repeat;
}

#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: #003333;
    background-color: #ff9900;
    padding: 0.1em 0.3em 0.1em 0.3em;
    margin: 0em 0em 0em 0em;
}

/* This is for major page-top headings */
#header h4 img {
    vertical-align: middle;
}

div.background
{
    width: auto;
    background: url(images/musicBackgroundFadedVery_298x150.gif) repeat;
    border: 2px solid green;    
}

div.transbox
{
    width: auto;
    color: #000000;
    background-color: transparent;
    text-align: center;
    padding: 0.3em 0.3em 0.3em 0.3em;
    margin: 0.4em; 
    border: 1px solid black;
    /*filter: alpha(opacity=30);*/
    /*opacity: 0.3;*/    
}

div.transbox p
{
    margin: 3em 4em;
    font-weight: bold;
    color: #000000;
}

/*p:first-letter {
    color: #000000;
    font-size: 110%;
    font-weight: bold;
}*/

/*h5:first-letter {
    color: #000000;
    font-size: 150%;
    font-weight: bold;
}*/

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

/* 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);
    font-size: 110%;
}

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

#rightBar h4 {
    font-weight: bold;
    color: #000000;
    /*background-color: transparent;*/
    padding: 0.4em 0.2em 0.1em 0.2em;
    margin: 0.1em 0em 0em 0em;
}

/*#rightBar h4:first-letter {
    color: #000000;
    font-size: 150%;
    font-weight: bold;
    background-color: transparent;
    padding: 0em;
    margin: 0em;
}*/

#rightBar p {
    color: #000000;
    /*background-color: transparent;*/
    padding: 0.1em 0.2em 0.4em 0.2em;
    margin: 0.1em 0em 0em 0em;
}

/*#rightBar p:first-letter {
    color: #000000;
    font-size: 100%;
    font-weight: bold;
    background-color: transparent;
    padding: 0em;
    margin: 0em;
}*/

#rightBar a {
    /*background-color: transparent;*/
    padding: 0.1em 0.2em 0.4em 0.2em;
    margin: 0.1em 0em 0em 0em;
}

#backgroundColoured {
    background-color: #FACD8A;
    padding: 0.3em 0.3em 0.3em 0.3em;
    margin: 0.5em 0em 0.5em 0em;
    /*font-size: 110%;*/
}

#rightBar #backgroundColoured {
    width: auto;
    color: #000000;
    /*background-color: transparent;*/
    padding: 0.3em 0.3em 0.3em 0.3em;
    margin: 0.5em 0em 0.5em 0em;
    /*font-size: 110%;*/
    background: url(images/musicBackgroundFadedVery_298x150.gif) repeat;
}

hr {
    border: 1px green solid;
}

/* 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 green solid;
}

/* These are used by the pop box image viewer javascript */
.PopBoxImageSmall {
    border: none 0px white;
    cursor: url(javascripts/magplus.cur), pointer;
}

.PopBoxImageLarge {
    border: solid thin #CCCCFF;
    cursor: url(javascripts/magminus.cur), pointer;
}