/* 
  datepicker styles
  David Lee 2005
  all parts user servicable
*/
.date_picker {
  /* comment out this line to show by default: */
  display: none;
  /* comment out this line to prevent calendar 'floating' over page: */
  position: absolute;
  background-color:white;
  border: 1px solid #C3D9FF;
  z-index: 1;
}

.date_picker table {
  width: 155px;
  border:        0px solid silver;
  border-top:    0px solid silver;
  border-bottom: 0px solid silver;
  font-family: verdana, sans-serif;
  padding: 0px;
}

.date_picker th {
  font-size: 11px;
  color: #112ABB;
  text-align: center;
  font-weight: normal;
}

.date_picker .day_labels th {
  font-size:13px;
  color: #112ABB;
  text-align: center;
  font-weight: normal;
}

.date_picker td {
  width: 20px;
  height: 20px;
  background-color: white;
  font-size: 11px;
  text-align: center;
  padding: 0px;
}

.date_picker a {
  text-decoration: none;
  border-bottom: 0px dotted silver;
  color: black;
}

.date_picker a:hover   { 
  color: black; 
  background-color: white;
}

div.time-picker {
  position: absolute;
  height: 200px;
  width:4em; /* needed for IE */
  overflow: auto;
  background: #fff;
  border: 1px solid #000;
  z-index: 99;
  margin-top: 1.5em;
  font-family: Arial,Helvetica, sans-serif;
  font-size: 1.1em;
}
div.time-picker-12hours {
  width:6em; /* needed for IE */
}

div.time-picker ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
div.time-picker li {
  padding: 1px;
  cursor: pointer;
}
div.time-picker li.selected {
  background: #316AC5;
  color: #fff;
}
input {
	margin:0;
	padding: 1px;
}
