html {

    font-family: Georgia;

    font-size: 16px;
    line-height: 22px;

    background: rgb(56, 116, 105);

    -webkit-user-select: none;
    -moz-user-select: none;
    -ie-user-select: none;

    cursor: default;
}

body {

    margin: 0px;
    padding: 0px;
}

div.title {

    font-family: Arial;

    font-style: italic;

    text-transform: uppercase;

    background: white;

    color: rgb(56, 116, 105);

    padding: 20px;
}

div.title h1 {

    font-size: 50px;
    line-height: 50px;

    text-align: center;

    margin: 0px;
}

div.title p {

    font-size: 30px;
    line-height: 30px;

    text-align: center;

    margin: 10px;
}

div.menu {

    font-family: Arial;

    font-size: 20px;
    line-height: 60px;

    text-align: center;
}

div.wrapper {

    background: white;
}

div.content {

    width: 700px;

    padding-top: 50px;
    padding-bottom: 50px;

    margin: auto;
}

div.footer {

    color: white;

    width: 700px;

    padding-top: 20px;
    padding-bottom: 20px;

    margin: auto;
}

h1 {

    font-family: Arial;

    font-size: 20px;
    line-height: 50px;

	color: rgb(56, 116, 105);

    margin: 0px;

    -webkit-user-select: text;
    -moz-user-select: text;
    -ie-user-select: text;
}

p {

    text-align: justify;

    -webkit-user-select: text;
    -moz-user-select: text;
    -ie-user-select: text;
}

a {

    font-weight: bold;

    text-decoration: none;

    color: rgb(56, 116, 105);

    -webkit-transition: color 0.5s;
    -moz-transition: color 0.5s;
    -ie-transition: color 0.5s;
}

div.menu a {

    color: white;

    margin-left: 20px;
    margin-right: 20px;
}

div.menu a:hover {

    color: rgb(219, 170, 138);
}