/*
    ----------------------------------------
    Coastal Mobile Legal Service
    ----------------------------------------

        + General
        + Sidebar
            - Contact Details
            - Memberships
        + Navigation
        + Content
        + Footer
*/

/** General
---------------------------------------- */
body {
    background: #fff url(../images/background.jpg) repeat scroll 0 0;
    height: 100%;
    margin: 0;
}
a:link {
    color: #01a0c7;
    font-size: 12px;
    text-decoration: none;
}
a:visited {
    color: #01a0c7;
    text-decoration: none;
}
a:hover,
a:active {
    color: #33ccff;
    text-decoration: underline;
}

/** Sidebar
---------------------------------------- */
#sidebar {
    background: #10298e url(../images/nav.jpg) repeat-y scroll 0 0;
    float: left;
    height: 100%;
    margin: 0;
    width: 250px;
}
#sidebar img {
    padding-left: 10px;
}
    /** Contact Details */
    #sidebar .contact-details {
        font: 13px Arial, sans-serif;
        padding-left: 10px;
        color: #fff;
    }
    #sidebar .contact-details strong {
        font-size: 15px;
        font-weight: bold;
    }
    #sidebar .contact-details a {
        color: #fff;
    }
    /** Memberships */
    #sidebar .memberships a {
        cursor: pointer;
        display: block;
        height: 206px;
        text-indent: -9999em;
        width: 200px;
    }
    #sidebar .memberships a.anzcn {
        background: #10298e url(../images/anzcn-badge.gif) no-repeat scroll 0 0;
    }
    #sidebar .memberships a.uinl {
       background: #10298e url(../images/uinl-badge.gif) no-repeat scroll 0 0;
    }

/** Navigation
---------------------------------------- */
#nav-container {
    margin-left: 20px;
}
#nav-container ul {
    font-family: "Times New Roman", Times, Georgia, serif;
    font-weight: bold;
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: left;
}
#nav-container li {
    margin: 0 0 1px 0;
}
#nav-container a {
    background-color: #10298e;
    color: #fff;
    display: block;
    font-size: 18px;
    padding: 5px 10px;
    text-decoration: none;
    width: 140px;
}
#nav-container a:hover,
#nav-container ul ul a:hover {
    background-color: #69c;
    color: #fff;
    text-decoration: none;
}
#nav-container ul ul li {
    margin: 0 0 1px 0;
}
#nav-container ul ul a {
    background-color: #10298e;
    color: #fff;
    display: block;
    font-size: 14px;
    padding: 5px 5px 5px 30px;
    text-decoration: none;
    width: 125px;
}

/** Content
---------------------------------------- */
#content {
    background: #fff url(../images/conbgd.jpg) repeat-y scroll 0 0;
    border: 3px solid #10298e;
    border-top: none;
    font: 12px/1.5 Verdana, Arial, Helvetica, sans-serif;
    height: 100%;
    margin: 0 0 20px 255px;
    padding: 12px;
    position: relative;
    width: 500px;
}
#content h1 {
    font: bold 24px Georgia, "Times New Roman", Times, serif;
    color: #10298e;
}
#content h2 {
    font: bold 14px Arial, Helvetica, sans-serif;
    color: #10298e;
}
#content li {
    list-style: square;
}
#content img.photo {
    border: 2px solid #10298e;
    float: right;
    margin: 0 0 12px 12px;
}

/** Footer
---------------------------------------- */
#footer {
    font: 10px Verdana, Arial, Helvetica, sans-serif;
    text-align: center;
    width: 500px;
}
#footer a:link {
    color: #01a0c7;
    font-size: 10px;
    text-decoration: none;
}
#footer a:visited {
    color: #01a0c7;
    text-decoration: none;
}
#footer a:hover,
#footer a:active {
    color: #3cf;
    text-decoration: underline;
}

