/* 
    Document   : page
    Created on : May 2, 2010, 1:22:12 PM
    Author     : joecarney
    Description:
        Purpose of the stylesheet follows.
*/

* {
    padding: 0px;
    margin: 0px;
    font-family: sans-serif;
}

root { 
    display: block;
}

body {
    background-color: #605851;
    margin: 50px;
}

h1 {
    font-size: 40px;
    line-height: 40px;
    letter-spacing: -3px;
    color: #70461e;
    text-shadow: #fff 1px 1px 1px;
    margin: 10px;
}

.h1-color {
    color:#212526;
}

h2 {
    margin: 10px;
    font-size: 28px;
    line-height: 40px;
    letter-spacing: -2px;
    color:#212526;
    text-shadow: #fff 1px 1px 1px;
}

h3 {
    margin: 10px;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: -1px;
    color:#212526;
    text-shadow: #fff 1px 1px 1px;
}

.h3-color {
    color: #70461e;
}


p {
    margin-left: 20px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 20px;
    color: #70461e;
}

.p-color {
    color:#212526;
}

.address {
    border-bottom: 1px dotted #fff;
    padding-bottom: 10px;
    font-size: 16px;
    text-shadow: #fff 1px 1px 1px;
}

img {
    /* css3 drop shadow */
    -webkit-box-shadow: 0px 5px 10px #fff;
    -moz-box-shadow: 0px 5px 10px #fff;

    /* css3 border radius */
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;

    background:#fff;
    /* styling of the dialog box, i have a fixed dimension for this demo */
    width:150px;

    /* make sure it has the highest z-index */
    z-index:5000;
    float: right;
    margin-right: 10px;

}

#dialog-box {

    /* css3 drop shadow */
    -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5);

    /* css3 border radius */
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;

    background:#eee;
    /* styling of the dialog box, i have a fixed dimension for this demo */
    width:600px;

    /* make sure it has the highest z-index */
    z-index:5000;

    padding: 10px;
}

#dialog-text {
    margin-top: 40px;
    width: 600px;
}

#dialog-text p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}


#dialog-box .dialog-content {
    /* style the content */
    text-align:left;
}  