/* 
Document   : layout
Created on : Jan 6, 2009, 10:48:17 AM
Author     : l
Description:
Purpose of the stylesheet follows.
*/

/* 
TODO customize this sample style
Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/

root { 
    display: block;
}

html, body, div, /*ul, ol, li, */dl, dt, dd, h1, h2, h3, h4, h5, h6, hr, pre, form, p, blockquote, fieldset, input {
    margin: 0;
    padding: 0;
}

a {
    color: #0099CC;
    text-decoration: none;
}

a:hover {
    color: #000;
}

blockquote {
    font-style: italic;
    background: url("../images/quote-left.gif") no-repeat top left;
    padding-left: 2em;
}

.blockquote-end {
    background: url("../images/quote-right.gif") no-repeat right bottom;
    padding-right: 2em;
}

body {
    background: url("../images/background.gif") repeat-y;
    border-left: 11px solid #01A0C7;
    behavior: url("../css/csshover3.htc"); /*For IE*/
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    width: 843px;
}

h2 {
    font-size: 16px;
    margin: .5em 0;
}

h3 {
    font-size: 16px;
    margin: .5em 0;
}

.hr {
    border-top: 1px solid #E1E7E5;
    clear: both;
    margin: 1em 0;
}

img {
    border: none;
}

p {
    margin: 0 0 1em 0;
}

table {
    border-collapse: collapse;
}

td {
    vertical-align: top;
}

/* Header ////////////////////////////////////////////////////////////////////*/

#header {
    float: left;
    width: 186px;
}

#logo h1 {
    background-image: url("../images/logo.gif");
    background-repeat: no-repeat;
    height: 193px;
    margin: 0;
    text-indent: -9999px;
}

#menu {
    font-family: Georgia, "Times New Roman", Times, serif;
    margin: 17px 0 0 11px;
}

/* Menu //////////////////////////////////////////////////////////////////////*/

#menu ul {
    list-style: none;
    margin: 0;
    padding: 0;

    width: 87px;
}

#menu ul li {
    position: relative;

    height: 2.5em;
}

#menu ul li:hover > a {
    color: #009BE0;
}

#menu ul li a {
    color: #575757;
    font-size: 19px;
}

#menu ul li ul {
    display: none;
    left: 100%;
    position: absolute;
    top: 0;

    background-image: url("../images/menu.png");
    background-repeat: no-repeat;
    text-align: right;
    width: 80px;
}

#menu ul li ul li {
    height: 1.6em;
}

#menu ul li ul li a {
    font-size: 12px;
    font-style: italic;
    color: #949494;
}

#menu ul li:hover ul {
    display: block;
}

/* Center and Footer /////////////////////////////////////////////////////////*/

#center {
    float: right;
    line-height: 1.5em;
    margin-top: 34px;
    width: 657px;
}

#center h1 {
    font-size: 28px;
    padding: 0 0 .25em;
}

#content {
    margin: 0 0 3em 30px;
    width: 600px;
}

#footer {
    border-top: 1px solid #E1E7E5;
    clear: both;
    color: #666;
    padding: 1em 0 1em 30px;
}

#footer strong {
    color: #000;
}

/* Convenience Classes ///////////////////////////////////////////////////////*/

.blue {
    color: #0099CC;
}

.caption {
    color: #666;
    font-size: 11px;
    line-height: 1.5em;
}

.float-left {
    float: left;
    margin-right: 20px;
}

.left {
    float: left;
    margin-right: 20px;
}

.float-right {
    float: right;
    margin-left: 20px;
}

.right {
    float: right;
    margin-left: 20px;
}

.gray {
    color: #666;
}

.indent {
    margin-left: 30px;
}

.img-border {
    border: 1px solid #E1E7E5;
}

.orange {
    color: #FF6600;
}

.piped {
    margin: 0 0 1em 0;
    padding: 0;
}

.piped .first {
    border: none;
    padding-left: 0;
}

.piped li {
    border-left: 1px solid #999;
    display: inline;
    padding: 0 .5em 0 .5em;
}

.strong {
    font-weight: bold;
}