﻿/* the input field */

.date {
  text-align: center;
  width: 180px;
}
#calroot {
  /* place on top of other elements. set a higher value if nessessary */
  background: none repeat scroll 0 0 white;
  border: 1px solid #bdc8d2;
  margin-left: 200px;
  margin-top: -48px;
  position: absolute;
  top: 450px;
  width: 366px;
  z-index: 1;
}
#calbody {
  clear: both;
  font-family: sans-serif;
  width: 364px;
  font-size: 13px;
  border: 1px solid #bdc8d2;
  border-width: 1px 1px 0;
  background: #f5f9ff;
  -moz-box-shadow: 0 0 10px 0px #cccccc;
  -webkit-box-shadow: 0 0 10px 0px #cccccc;
}
#calhead {
  color: black;
}
#caltitle {
  font-family: sans-serif;
  text-align: center;
  font-size: 14px;
  float: left;
  width: 130px;
  padding: 4px;
}
#calnext,
#calprev {
  display: block;
  width: 20px;
  height: 20px;
  float: left;
  cursor: pointer;
  padding: 4px;
}
#calnext:before {
  content: ">>";
}
#calprev:before {
  content: "<<";
}
#calprev.caldisabled,
#calnext.caldisabled {
  visibility: hidden;
}
#caldays span {
  display: block;
  float: left;
  width: 52px;
  text-align: center;
  font-weight: bold;
  padding: 4px 0;
  font-size: 11px;
  color: #7e7e7e;
  line-height: 18px;
  background: white;
}
.calweek {
  clear: left;
  height: 50px;
  border-bottom: 1px solid #bdc8d2;
  border-top: 1px solid white;
}
.calweek a {
  display: block;
  float: left;
  width: 50px;
  height: 50px;
  text-decoration: none;
  font-size: 15px;
  text-align: center;
  line-height: 50px;
  color: black;
  border-right: 1px solid white;
  border-left: 1px solid #bdc8d2;
  text-shadow: 1px 1px 1px white;
}
a.calsunday {
  border-left: 1px solid transparent;
  color: #990000;
  background-color: #f2f2f2;
}
.calweek a:hover,
.calfocus {
  background: #ddeeff;
}
.calsun {
  color: red;
}
a.caloff {
  color: #999999;
  background: #eeeeee;
}
a.caloff.calfocus {
  background-color: #dddddd;
}
.caldisabled {
  background-color: #efefef !important;
  color: #cccccc !important;
  cursor: default;
}
.caloff:hover {
  background-color: #f5f5fa;
}
#caltitle select {
  font-size: 10px;
}
/* current day */

#calcurrent {
  background-color: #498ce2;
  color: white;
  text-shadow: 0 1px 0 black;
  border: 0;
  width: 52px;
  background-image: none;
  -moz-box-shadow: inset 0 0 10px 0px black;
}
/* today */

#caltoday {
  background-color: #666666;
  color: white;
  text-shadow: 0 1px 0 black;
}
