/**
 * The intention of this cascading-style-sheet, is to
 * format and layout the xhtml screen output.
 *
 * @package STBD
 * @author Dirk Kredler <kredler@zitrus.com>
 * @version $Id: screen.css 1840 2008-04-15 10:55:10Z dirk $
 */

/**
 * Document wide settings.
 *
 * We use relative values. To get a mapping
 * we set the document font-size to 
 *
 * 62.5% == 10px, 1pt = 1.333 px:
 *
 * 1em == 10px, 1.1em == 11px, 1.2em == 12px ...
 */
body { 
    margin: 0; padding: 0;
    font-family: Arial, Helvetica, Geneva, Verdana, sans-serif;    
    font-size: 62.5%;                                       
    color: #000000; 
    background-color: #c5d2ea;
    background-image: url(../img/background_main.jpg);
    background-repeat: repeat-x;
    background-position: 0 95px;
    width: 100%;
    min-width: 960px;
}

/**
 * Reset all margins, paddings and font-sizes for all elements to setup a uniform starting point
 */
* {
     margin: 0; padding: 0; font-size: 1em;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}

img {
    border: 0;
}

a {
    text-decoration: none;
    color: #1260A4;
}

a:hover {  
    color: #b71e24;
}

a.active {  
    color: #b71e24;
}

/**
 * Classes
 */
.bull {
    color: #b71e24;
}

.text {
    color: #585556;
}

/**
 * Sections
 */
#dMain {
    background-color: #ffffff;
    width: 960px;
    text-align: left;
}

#dLogo {
}

#dLogo img {
    margin: 20px 0 15px 40px;
}

#dSeparator {
    background-color: #85B9CE;
    height: 10px;
    font-size: 1px;
}

#dMenu {
    padding: 0 0 0 10px;
    font-size: 1.4em;
    background-color: #e5eff3;
    float: left;
    height: 600px;
    width: 170px;
    min-width: 170px;
}

#dMenu a {
    margin: 1em 0 0 0;
    display: block;
}

#dMenu a.sub {
    margin: 1em 0 0 1.2em;
}

#dMenu a.subactive {
    margin: 1em 0 0 1.2em;
    color: #b71e24;
}

#dMetaMenu {
    padding: 5px 0 40px 0;
    font-size: 0.8em;
    white-space: nowrap;
}

#dMetaMenu a {
    margin: 0 1em 0 0;
    font-weight: normal;
    display: inline;
}

#dVisual {
    width: 244px;
    min-width: 244px;
    float: left;
    background-color: #ffffff;
    height: 600px;
    border-right: 3px solid #e5eff3;
    font-size: 1.1em;
    line-height: 1.4em;
    color: #585556;
    margin-right: 35px;
}

#dVisual img {
    margin-bottom: 22px;
    display: block;
    width: 244px;
}

#dVisual address {
    padding: 0 0 0 15px;
    font-style: normal;
    font-weight: normal;
}

#dVisual h1 {
    padding: 0 0 0 15px;
    margin-bottom: 1em;
    color: #b71e24;
    font-size: 1.4em;
    line-height: 1.2em;
    font-weight: bold;
}

#dVisual h2 {
    padding-left: 15px;
    margin-top: 1.2em;
    margin-bottom: 0.3em;
    color: #1260A4;
    font-size: 1.25em;
    line-height: 1.4em;
    font-weight: bold;
}

#dVisual p {
    padding-left: 15px;
    font-size: 1.2em;
    line-height: 1.5em;
    margin-bottom: 0.50em;
    color: #585556;
}

#dContent {
    padding: 30px 15px 70px 0px;
    background-color: #ffffff;
    font-size: 1.2em;
    line-height: 1.4em;
    color: #585556;
    height: 500px;
}

#dContent h1 {
    margin-bottom: 1em;
    color: #b71e24;
    font-size: 1.65em;
    line-height: 1.4em;
    font-weight: bold;
    letter-spacing: 0.1em;
}

#dContent h2 {
    margin-top: 1.2em;
    margin-bottom: 0.3em;
    color: #1260A4;
    font-size: 1.45em;
    line-height: 1.4em;
    font-weight: bold;
}

#dContent p {
    font-size: 1.3em;
    line-height: 1.5em;
    margin-bottom: 0.50em;
    color: #585556;
}

#dContent p.small {
    font-size: 1.0em;
    line-height: 1.5em;
    margin-bottom: 0.50em;
    color: #585556;
}

#dContent ul {
    list-style-type: circle;
    list-style-position: outside;
    font-size: 1.3em;
    line-height: 1.5em;
    margin-bottom: 0.50em;
    color: #585556;
}

#dContent ul li {
}

#dContent strong {
    font-weight: bold;
    color: #1260A4;
}

#dLine {
    height: 1px;
    width: 100%;
    background-color: #789ccd;
    font-size: 0.1px;
    position: relative;
    top: -75px;
}
