﻿/*Global styles*/
body
{
    background-color: #FFFFFF; /*White background*/
    color: #666666; /*Dark gray text*/
    font-family: Arial, Arial, Helvetica, sans-serif; /* Set font to Arial, Helvetica or sans-serif*/
}

/*Header styles*/
header {
    background-color: #002171; /*Deep blue background*/
    color: #FFFFFF; /*White text*/
    background-image: url('sunset.jpg');
    background-position: right;
    background-repeat: no-repeat;
    line-height: 400%;
    text-indent: 1em;
}

/*Navigation styles*/
nav{
    background-color: #BBDEFB; /*Sky blue background*/
    font-weight: bold;
}

nav a{
    text-decoration: none;
}

/*h2 element styles*/
h2{
    color: #1976D2; /*Medium blue text*/
    font-family: Georgia, Times New Roman, serif;
}

/* dt element styles (for questions)*/
dt{
    color: #002171; /*Dark blue text*/
}

/* Class for resort name*/
.resort{
    color: #1976D2; /*Medium blue text*/
    font-weight: bold;
}

h1{
    font-family: Georgia, Times New Roman, serif;
}

h3{
    font-family: Georgia, Times New Roman, serif;
    color: #000033;
}

ul{
    list-style-image: url('marker.gif');
}

/*Footer styles*/
footer{
    font-size: 75%;
    font-style: italic;
    text-align: center;
    font-family: Georgia, Times New Roman, serif;
}

#contact{
    font-size: 90%;
}