/*
 * full-page calendar.
 */
#calendarWrap
{
   color: #000;
   font: 90%/1.5em verdana,arial,helvetica,sans-serif;
   height: 100%;
   margin: 10px auto;
   position: relative;
   scrollbar-3dlight-color: #d2b11e;
   scrollbar-arrow-color: #b99c1b;
   scrollbar-base-color: #b99c1b; 
   scrollbar-darkshadow-color: #b99c1b;
   scrollbar-face-color: #ead56e;
   scrollbar-highlight-color: #faf5dc;
   scrollbar-shadow-color: #d2b11e;
   scrollbar-track-color: #f0df94;
   text-align: center;
   width: 100%;
}

/* calenday chooser row */
#calChoose
{
   background-color: #99b06e;
   border: 1px #fff solid;
   color: #fff;
   font-weight: bold;
   height: 30px;
   margin: 0px auto;
   margin-left: 1%;
   padding: 5px 0px;
   position: relative;
   text-align: center;
   width: 98%;
}

#calChooseWrap
{
   margin: 0px auto;
   width: 605px;
}

#calPrev
{
   float: left;
   font-size: 11px;
   height: 30px;
   text-align: left;
   vertical-align: middle;
   width: 200px;
}

#calCurrent
{
   float: left;
   font-size: 14px;
   height: 30px;
   text-align: center;
   vertical-align: middle;
   width: 200px;
}

#calNext
{
   float: left;
   font-size: 11px;
   height: 30px;
   text-align: right;
   vertical-align: middle;
   width: 200px;
}
   
/* calendar header row */
#calHeader
{
   height: 30px;
   margin: 0px auto;
   position: relative;
}

#calHeader #calSunday,
#calHeader #calMonday,
#calHeader #calTuesday,
#calHeader #calWednesday,
#calHeader #calThursday,
#calHeader #calFriday,
#calHeader #calSaturday
{
   background-color: #af874b;
   border: 1px #fff solid;
   color: #fff;
   font-size: 12px;
   font-weight: bold;
   height: 30px;
   padding: 5px 0px;
   position: absolute;
   text-align: center;
   top: 0px;
   width: 14%;
}

#calSunday
{
   left: 1%;
}

#calMonday
{
   left: 15%;
}

#calTuesday
{
   left: 29%;
}

#calWednesday
{
   left: 43%;
}

#calThursday
{
   left: 57%;
}

#calFriday
{
   left: 71%;
}

#calSaturday
{
   left: 85%;
}

/* calendar date rows */
.calRow
{
   height: 110px;
   margin: 0px auto;
   position: relative;
}

.calRow div.dayCell1,
.calRow div.dayCell2,
.calRow div.dayCell3,
.calRow div.dayCell4,
.calRow div.dayCell5,
.calRow div.dayCell6,
.calRow div.dayCell7
{
   background-color: #f0df94;
   border: 1px #fff solid;
   color: #000;
   font-weight: bold;
   height: 110px;
   position: absolute;
   text-align: center;
   top: 0px;
   width: 14%;
}

.dayCell1
{
   left: 1%;
}

.dayCell2
{
   left: 15%;
}

.dayCell3
{
   left: 29%;
}

.dayCell4
{
   left: 43%;
}

.dayCell5
{
   left: 57%;
}

.dayCell6
{
   left: 71%;
}

.dayCell7
{
   left: 85%;
}

.noDay
{
   background-color: #c2a272;
   color: #000;
   width: 100%;
   height: 110px;
}

.dayNumber
{
   border: none;
   float: left;
   font-size: 14px;
   height: 20px;
   padding-left: 2px;
   position: relative;
   text-align: left;
   width: 96%;
}

.calText
{
   float: right;
   font-size: 10px;
   font-weight: normal;
   height: 85px;
   line-height: 1.25em;
   margin-top: 0px;
   margin-bottom: 5px;
   overflow: auto;
   padding-right: 4px;
   position: relative;
   text-align: left;
   width: 90%;
}


/* calendar bottom row */
#calBottom
{
   background-color: #99b06e;
   border: 1px #fff solid;
   color: #fff;
   font-weight: bold;
   margin: 0px auto;
   margin-left: 1%;
   padding: 0px;
   position: relative;
   text-align: center;
   width: 98%;
}

/*
 * event page.
 */
.backUp
{
   text-align: center;
}

#eventPage
{
   margin: 0px auto;
   text-align: left;
   width: 75%;
}


/*
 * popup calendar.
 */
#popupCal
{
   background: #fff;
   border: 1px solid #003063;
   color: #000;
   font-size: 11px;
   font-weight: bold;
   padding: 4px;
   text-align: center;
   width: 200px;
}

#popupCal a
{
   color: #000;
   text-decoration: none;
}

#popupCal a:hover
{
   color: #900;
   text-decoration: none;
}

#popupCal table
{
   width: 190px;
}

#popupCal td
{
   background: #efebef;
   border: 1px solid #fff;
   color: #000;
}

#popupCal .body
{
   background: #fff;
   color: #000;
   padding: 0px;
}

#popupCal .cellAvail,
#popupCal .cellGreen
{
   background: #cbf7bd;
}

#popupCal .cellCurrent,
#popupCal .cellCurrent a,
#popupCal .cellCurrent a:hover
{
   color: #900;
}

#popupCal .cellGray,
#popupCal .cellGrey,
#popupCal .cellPast
{
   background: #d6d6d6;
   color: #999;
}

#popupCal .cellRed
{
   background: #f7bebd;
   color: #999;
}

#popupCal .close td
{
   background: #fff;
   padding: 0px;
   text-align: center;
}

#popupCal .days td
{
   background: #f7f7de;
   font-size: 13px;
   width: 14%;
}

#popupCal .days td,
#popupCal .grid td
{
   padding: 1px;
   text-align: center;
   vertical-align: middle;
}

#popupCal .month td
{
   background: #cedbe7;
   padding-bottom: 3px;
   padding-top: 3px;
}

#popupCal .next,
#popupCal .prev
{
   font-size: 14px;
   text-align: center;
   vertical-align: middle;
}

#popupCalClose,
#popupCalNext,
#popupCalPrev
{
   display: none;
}

#popupCalTitle
{
   font-size: 14px;
   text-align: center;
}

