/* 
    Document   : index.css
    Created on : Apr 11, 2009, 8:59:58 AM
    Author     : Steven
    Description:
        root style sheet for Lakeview Haven RV Park.

    Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/

    root {
        display: block;
    }

    body {
        lang:en-US;
        font-family: Helvetica, Arial, sans-serif;
        background-color: mintcream;
        background-image: url(bgdrops.jpg);
    }

    .header, .footer {
        text-align: center;
        }

    a:hover {
        color: darkred;
        text-decoration: none;
    }

    h1  {
        text-align: center;
        font-family: "Lucida Handwriting", times, serif;
        font-style: italic; font-size: 2em;
        text-shadow: lightblue 7 7 3;
    }

    h2  {
        text-align: center;
        font-family: "Lucida Handwriting", times, serif;
    }

    h3  {
        font-variant: small-caps;
        font-weight: 600;
        font-size: 1.1em;
        color: darkblue;
        letter-spacing: .4em;
    }

    .content {
      margin: 20px 15px 20px 15px ;
      background-color: #fbfdff;
      padding: 8px 20px ;
      border-style: outset;
      border-width: 1x;
    }

    .centeredBlock {    /* often requires element to have a fixed width 
                            width: 500px;     */
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .centeredText {
        text-align: center;
    }

    .buttonimg {
        border-style: none;
        margin: 8px;
    }

    .caption {
        margin: 5px;
    }
    
    .floatright  {
        float: right;
        margin: 5px;
        margin-left: 10px;
        border: none;
    }

    .floatleft  {
        float: left;
        margin: 5px;
        margin-right: 10px;
        border: none;
    }

    .pictureframe {
        top: 2em;
        border-width: 8px;
        border-style: ridge;
        border-color: grey;
        padding: 10px;
        background-color: beige;
    }

    .portrait {
        border-width: 3px;
        border-style: inset;
        border-color: #CCCCCC;
        padding: 8px;
        background: white;
    }

    .blocklabel {
        display: block; width: 10em; float: left; text-align:right;
        margin-right: 1em; margin-bottom: 1em;
    }

    #foot   {
        text-align: center;
        margin: 2em;
    }

    #links  {
        text-align: center;
        float: left; width: 10em;
        border: 10em;
        border-width: 0.2in;
        /*border-width: 0.01in;*/
    }

    #inner  {
        margin-left: 10.5em;
        padding-left: 1em;
        border-left: .2em solid forestgreen;
    }

    .disclaimer {
        font-size: 10px;
        font-family: arial, sans-serif;
    }
    
