@charset "utf-8";
/* CSS Document */
body {
    /*background-color:#500;*/
    background-image: url(Images/background.png);
    font-family: Arial, Helvetica, sans-serif;
}
a:link {
    text-decoration: none;
}
a:visited {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
a:active {
    text-decoration: none;
}
h2 {
    color: #600;
}
h3 {
    color: blue;
}
h4 {
    color: #600;
}
#Container {
    position: relative;
    top: 25px;
    width: 800px;
    margin: 0 auto;
}
#MyBackground {
    position: relative;
    width: 800px;
    height: 600px;
    z-index: -100px;
}
#MyHOA {
    position: absolute;
    width: 150px;
    height: 100px;
    top: 100px;
    left: -85px;
    text-align: center;
    line-height: 100px;
    background-color: #CCC;
    border-style: solid;
    border-radius: 10px;
    z-index: 100px;
    cursor: pointer;
}
#MyClubs {
    position: absolute;
    width: 150px;
    height: 100px;
    top: 100px;
    left: 725px;
    text-align: center;
    line-height: 100px;
    background-color: #CCC;
    border-style: solid;
    border-radius: 10px;
    z-index: 100px;
    cursor: pointer;
}
#Calendar {
    position: absolute;
    width: 150px;
    height: 100px;
    top: 300px;
    left: -85px;
    text-align: center;
    line-height: 100px;
    background-color: #CCC;
    border-style: solid;
    border-radius: 10px;
    z-index: 200px;
    cursor: pointer;
}
#MyNeighbors {
    position: absolute;
    width: 150px;
    height: 100px;
    top: 300px;
    left: 725px;
    text-align: center;
    line-height: 100px;
    background-color: #CCC;
    border-style: solid;
    border-radius: 10px;
    z-index: 100px;
    cursor: pointer;
}
@keyframes pulsing {
    0% {
        opacity: 0.25;
    }
    40% {
        opacity: 1;
    }
    90% {
        opacity: 0.25;
    }
}
#NewsFlash {
    position: absolute;
    top: 450px;
    left: 750px;
    z-index: 100px;
    cursor: pointer;
    opacity: 0.25;
    animation: pulsing 1.5s linear infinite;
}
#EditNews {
    display: none;
}
#MyContent {
    position: absolute;
    width: 500px;
    top: 520px;
    left: 125px;
    padding: 15px;
    background-color: white;
    border-style: solid;
    border-radius: 10px;
    z-index: 300px;
}
#ContactTable {
    border-collapse: collapse;
}
#MyCalendar {
    background-color: white;
    z-index: 200px;
}
#MyCalendar td {
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
}
#TheCalendar {
    background-color: white;
}
.CalendarNav, .CalendarDay {
    cursor: pointer;
}
.CalendarNav:hover {
    background-color: blue;
    color: white;
}
#CalendarMonth {
    font-size: 24px;
    font-weight: bold;
}
.CalendarDay:hover {
    background-color: yellow;
}
.CalenderWeekDay {
    color: #600;
    font-weight: bold;
}
.ScheduleHeader {
    font-size: 16px;
    font-weight: bold;
    color: blue;
}
#EditMessage {
    font-size: 12px;
    font-weight: bold;
    color: red;
}
#RemoveItem {
    text-align: center;
}
#MONTHTable, #DAYTable {
    font-size: 14px;
}
#WelcomeMessage {
    width: 500px;
    margin: 0px auto;
    font-weight: bold;
}
#PrivacyTerms {
    position: relative;
    top: -60px;
    font-size: 12px;
}
#MyDirectory {
    font-size: 10px;
}
#TermsOfUse {
    background-color: white;
    font-size: 12px;
    border-collapse: collapse;
    border-color: lightgrey;
}
#PrivacyPolicy {
    background-color: white;
    font-size: 12px;
    border-collapse: collapse;
    border-color: lightgrey;
}
#ComeSee {
    font-style: italic;
    font-size: small;
    font-weight: bold;
    background-color: yellow;
}
#SendToList {
    font-size: small;
}