
/* 整体设置 */
*{margin:0px;padding:0px;}


/**
 * 设置日历顶部盒子
 */
.calendar .calendar-title-box{
  position: relative;
  width: 100%;
  height: 25px;
  line-height: 36px;
  text-align:center;
  border-bottom: 1px solid #ddd;
  color: #ffffff;
  font:18px "微软雅黑";
}

/**
 * 设置上个月的按钮图标
 */
.calendar .prev-month {
  position: absolute;
  top: 4px;
  left: 10px;
  display: inline-block;
  width: 0px;
  height: 0px;
  border-left: 0px;
  border-top: 8px solid transparent;
  border-right: 18px solid #ffffff;
  border-bottom: 8px solid transparent;
  cursor: pointer;
}

/**
 * 设置下个月的按钮图标
 */
.calendar .next-month {
  position: absolute;
  top: 4px;
  right: 10px;
  display: inline-block;
  width: 0px;
  height: 0px;
  border-right: 0px;
  border-top: 8px solid transparent;
  border-left: 18px solid #ffffff;
  border-bottom: 8px solid transparent;
  cursor: pointer;
}



/* 当前天 颜色特殊显示 */
.currentDay {
  color: red;
  font-weight:bold;

}



/* 本月 文字颜色 */
.currentMonth {
  color: #red;
}

/* 其他月颜色 */
.otherMonth{
  color: #c5c1bd;
}






/**
 * 设置日历的大小
 */
.calendar{
  width: 200px;
  height: 188px;
  display: block;
  float:left;

	border:1px solid red;
	margin:10px auto auto 13px;

}






/* 设置日历表格样式 */
.calendar-table{
  	width: 200px;
	border-collapse: separate;
	border-spacing: 1px 1px;  /* 水平间距 垂直间距 */
  	text-align:center;
  	margin: auto;

}

/* 表格行高 */
.calendar-table tr{
  height: 22px;
  line-height: 20px;
}






#calendar table td{
	background-color: #ffffff;


}



#calendar table th{
	background-color: #00a0e9;
	color: #ffffff;
}






