/*
 * Copyright (c) 2012-2013 Thibaut Courouble
 * http://www.cssflow.com
 *
 * Licensed under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 */

/* calendar style here */
.picker-container {
  position: fixed;
  z-index: 900;
}


.cal {
  background-color: white;
  display: block;
  width: auto;
  -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.4);
  border-collapse: collapse;
  border-spacing: 0;
}

.cal a {
  text-decoration: none;
}

.cal tr, .cal th, .cal td {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

.cal caption {
	font-size: 14px;
  line-height: 30px;
  font-weight: bold;
  color: #999;
  text-align: center;
  background: #e8e8e8;
  border-bottom: 1px solid #DEDEDE;
}
.cal caption a {
  display: block;
  line-height: 30px;
  padding: 0 10px;
  font-size: 18px;
  color: #666;
}
.cal caption .prev {
  float: left;
}
.cal caption .next {
  float: right;
}
.cal th, .cal td {
  text-align: center;
}
.cal th:first-child, .cal td:first-child {
  border-left: 0;
}
.cal th {
  line-height: 24px;
  font-size: 12px;
  color: #696969;
  text-transform: uppercase;
  background: #f0f0f0;
  border-left: 1px solid #f3f3f3;
}
.cal td {
  font-size: 14px;
  font-weight: bold;
  border-top: 1px solid #c2c2c2;
  border-left: 1px solid #c2c2c2;
}
.cal td a {
  clear: both;
  display: block;
  position: relative;
  width: 36px;
  line-height: 30px;
  color:  #888;
  background-color: #eee;
  -webkit-box-shadow: inset 1px 1px rgba(255, 255, 255, 0.5);
  box-shadow: inset 1px 1px rgba(255, 255, 255, 0.5);
}
.cal td a:hover {
  background: #ccc;
  color: #444;
}
.cal td.off a {
  background: #f9f9f9;
}
.cal td.off a {
  color: #bfbfbf;
}
.cal td.active a, .cal td a:active {
  color: #f3f3f3;
  /*text-shadow: 0 1px rgba(0, 0, 0, 0.3);*/
  background: #09f;
  -webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
}
.cal td.active:first-child a, .cal td:first-child a:active {
  border-left: 0;
  margin-left: 0;
}
.cal td.active:last-child a, .cal td:last-child a:active {
  border-right: 0;
  margin-right: 0;
}
.cal tr:last-child td.active a, .cal tr:last-child td a:active {
  border-bottom: 0;
  margin-bottom: 0;
}
