
/* $Id: styles_event_calendar.css 9 2009-01-11 06:03:21Z john $ */

/* Calendar: a Javascript class for Mootools that adds accessible and unobtrusive date pickers to your form elements <http://electricprism.com/aeron/calendar> */
/* Experimental CSS for Calendar (navigation: 1), Copyright (c) 2007 Aeron Glemann <http://electricprism.com/aeron> */

button.se_ats_calendar {
    background:transparent url(../images/ats_calendar_icon.gif) 0 0;
    border:0;
    cursor:pointer;
    height:20px;
    margin:0 6px 0px 3px;
    width:20px;
	vertical-align:bottom;
}
div.se_ats_calendar_container
{
  margin-bottom: 4px;
  display:block;
  height: 20px;
}
   /*
input.se_ats_calendar,
select.se_ats_calendar
{
  margin-right: 6px;
  width: 149px;
  float: left;
}      */

div.se_ats_calendar_container button.se_ats_calendar
{
	background: url(../images/ats_calendar_icon.gif);
	border: 0;
	cursor: pointer;
	float: left;
	height: 20px;
	width: 20px;
	margin-right: 6px;
  line-height: 100%;
}

button.se_ats_calendar:hover,
button.se_ats_calendar.active
{
	background-position: 0 20px;
}

div.se_ats_calendar
{
	background: url(../images/ats_calendar_bg.png) no-repeat;
	/* height: 278px; */
	height: 140px;
	padding: 4px;
	width: 164px;
}

div.se_ats_calendar * {
  margin: 0;
  padding: 0;
}

div.se_ats_calendar div {
  background-repeat: no-repeat;
  background-position: 8px 8px;
  cursor: move;
	/* height: 278px; */
	height: 140px;
  overflow: hidden;
  position: relative;
  width: 164px;
}


/* 
We won't be using the caption element traditionally
We have to make sure it doesn't take up space in the browser and offset the other elements
Unfortunately position: absolute is not supported by all browsers for table-caption
IEX only responds to line-height
*/

div.se_ats_calendar caption {
  color: #808080;
  height: 0%;
  line-height: 0;
}
div.se_ats_calendar caption a {
  cursor: pointer;
  display: block;
  height: 25px;
  overflow: hidden;
  position: absolute;
  text-indent: -100px;
  top: 0;
  width: 23px;
  z-index: 200;
}
div.se_ats_calendar caption a.prev {
  background-image: url(../images/ats_calendar_prev.png);
  left: 0;
}
div.se_ats_calendar caption a.next {
  background-image: url(../images/ats_calendar_next.png);
  right: 0;
}
div.se_ats_calendar caption a:hover {
  background-position: 0 25px;
}
div.se_ats_calendar caption span.month {
  bottom: 8px;
  font: normal 11px Arial, Helvetica, sans-serif;
  position: absolute;
  right: 10px;
  z-index: 100;
}

/* 
IEX won't work if all the children of the caption element are absolutely positioned
Since we can't just leave the year un-positioned, we will have to hide it
(Remarkably this actually works in IEX)
*/

div.se_ats_calendar caption span.year {
  display: none;
}

div.se_ats_calendar table {
  border: 0;
  border-collapse: collapse;
  border-spacing: 0;
  /* margin: 143px 10px 0 7px; */
  margin: 9px 10px 0 7px;
}
div.se_ats_calendar tbody {
  cursor: default;
}
div.se_ats_calendar td {
  border: 0;
  color: #FFF;
  font: normal 9px Arial, Helvetica, sans-serif;
  height: 21px;
  text-align: right;
  vertical-align: bottom;
  width: 21px;
}
div.se_ats_calendar td.active,
div.se_ats_calendar td.hover {
  background: url(../images/event_calendar_active.gif);
  color: #25A8C2;
  cursor: pointer;
}
div.se_ats_calendar td.invalid {
  background: url(../images/event_calendar_invalid.gif);
  color: #DA2727;
}
div.se_ats_calendar td.valid {
  color: #808080;
  cursor: pointer;
}
div.se_ats_calendar td.inactive {
  background: url(../images/event_calendar_inactive.gif);
  color: #808080;
}

div.se_ats_calendar thead {
   /* display: none; */
	font-size:10px;
	height:20px;
}

