body {
    font: 12px sans-serif;
}
div.calendar {
   /*position: relative;
    height: 390px;
    min-width: 760px;
    max-width: 1000px;
    margin: auto;*/
}
div#calendar-this-month {
   /* position: absolute;
    left: 50%;
    top: 20px;
    margin-left: -185px;*/
}
table.calendar {
    border-collapse: collapse;
    border: 1px solid rgb(200, 200, 200);
}
div.event,
div.event-info {
   /* position: absolute;*/
    bottom: -62px;
    left: -1px;
    right: 0;
    border-bottom: 1px solid rgb(200, 200, 200);
    border-left: 1px solid rgb(200, 200, 200);
    border-right: 1px solid rgb(200, 200, 200);
    background: white;
    display: none;
    height: 51px;
    padding: 5px;
    z-index: 2;
}
div.event-info {
    display: block;
    z-index: 1;
}
span.event-date {
    font-weight: bold;
}
td.this-month.event:hover > div.event {
    display: block;
}
table.calendar th {
    text-align: center;
    background: #fff;
}
table.calendar td {
    width: 50px;
    height: 50px;
    background: #fff;
    border: 1px solid rgb(200, 200, 200);
    vertical-align: top;
}
table.calendar td.last-month,
table.calendar td.next-month {
    background: rgb(222, 222, 222);
}




table.calendar  td.today {
    color: #FFFFFF;
	background: #A40E10;
}


table.calendar td.this-month.event {
    background: yellow;
}
table.calendar td.this-month.today.event {
    background: gold;
}
table.calendar th.month {
    text-align: center;
    font-size: 24px;
    font-weight: normal;
    border-bottom: 1px solid rgb(200, 200, 200);
    background: rgb(242, 242, 242);
}
table.calendar.last,
table.calendar.next {
    font-size: 10px;
    /*margin: 200px 20px 20px 20px;
	border-right: #a0a0a0 1px solid;*/
    cursor: pointer;
}
table.calendar.last th.month,
table.calendar.next th.month {
    font-size: 10px;
}
table.calendar.last td,
table.calendar.next td {
    width: 20px;
    height: 20px;
}
div#calendar-last-month {
   /* position: absolute;
    left: 0;
    top: 0;*/
}
div#calendar-next-month {
    position: absolute;
    right: 0;
    top: 0;
}
fieldset {
    margin: 0 auto;
    border: none;
    border-top: 1px solid rgb(200, 200, 200);
    max-width: 998px;
}
