.calBox {
  background-color: #e2f3ff;
  padding: 2px;
  -moz-border-radius: 4px;
  text-align: center;
  color: #4E4E4E;
  border-radius: 20px;
}

.calElement {
  margin: 1px;
  display: inline-block;
  overflow:hidden;
}

.calYear {
  font-size: 20px;
  padding-bottom: 5px;
  margin-bottom: 5px
}

.calYear .calElement {
}

.calMonth {
  padding-bottom: 5px;
  margin-bottom: 5px;
}

.calMonth .calElement {
  font-size: 14px;
}

.calDay {
}

.calDay .calElement {
  font-size: 12px;
  margin: 5px 33px;
}

.calDay .calElement.prev {
  background: transparent url(../images/prev.png) no-repeat 0 18px;
  width: 6px;
  height: 35px
}

.calDay .calElement.next {
  background: transparent url(../images/next.png) no-repeat 0 18px;
  width: 6px;
  height: 35px;
}
@media (max-width:800px) {
  .calDay .calElement {
    margin: 5px 10px;
  }
}
span.calElement.next:hover, span.calElement.prev:hover {
  border: 1px solid #999999;
  cursor: pointer;
}

.calDay .calElement .dayNumber {
  font-size: 20px;
}


.calElement.selected {
  background-color: #7001a7;
  color: #fff;
  border: 1px solid #404040;
  -moz-border-radius: 3px;
  border-radius: 30px;

}

span.calElement:hover {
  background-color: #7001a7;
  color: #fff;
  -moz-border-radius: 3px;
  cursor: pointer;
  border-radius: 30px;
}

.calElement.today {
  -moz-border-radius: 3px
}
