@charset "utf-8";
/* CSS Document */

/* Set the font and font size here */
Body { font-family: Arial, Helvetica, sans-serif; font-size: 12px; }

/* Search Form Starts Here */

input[type=text], select { border: 1px solid gray; }
input[type=image] { border-width: 0; }
input.shortNum { width: 3em; }
input#rateCode { width: 5em; }
select { border: 1px solid black; }

button.calendar {
/* you can change the graphic used for the calendar and insert the new file name here */
	background: url(icon_calendar.jpg);
	border: 0;
	cursor: pointer;
	/* if you do change the graphic, change the width and heigh here to match the size of the new graphic */
	width: 20px;
	height: 22px;
	position: relative;
	margin-top: 5px;
}

/* All the code below is what styles the pop-up calendar, if you want to change the colors of the graphics used the easiest way is to open the file in photoshop, then go to Image (in the top menu) > Adjustments > Hue/Saturation and play with the toggles until you get the color you want. Then click ok and save the file. - This should be done before all the file are upload to the server to go live */
div.calendar {
background-attachment: scroll;
background-color: transparent;
background-image: url(calendar.png);
background-repeat: repeat;
display: block;
height: 195px;
left: 285px;
margin-bottom: 0px;
margin-left: 0px;
margin-right: 0px;
margin-top: 0px;
opacity: 1;
padding-bottom: 0px;
padding-left: 6px;
padding-right: 6px;
padding-top: 0px;
position: absolute;
text-align: center;
top: 190px;
visibility: visible;
width: 147px;
z-index: 1000;
-webkit-background-clip: border;
-webkit-background-origin: padding;
}	
	div.calendar div {
		background: none !important;
		height: 185px;
		overflow: hidden;
		padding-top: 10px;
		position: relative;
		width: 147px;
	}	
	
	div.calendar caption {
		color: #333;
		font: normal 12px/16px Arial, Helvetica, sans-serif;
		padding-top: 6px;
		text-align: center;
		width: 100%;
	}
	div.calendar caption a {
		cursor: pointer;
		display: block;
		height: 12px;
		overflow: hidden;
		position: absolute;
		text-indent: -100px;
		top: 17px;
		width: 11px;
	}
	div.calendar caption a.prev {
		background-image: url(calendar-prev.gif);
		left: 0;
	}
	div.calendar caption a.next {
		background-image: url(calendar-next.gif);
		right: 0;
	}
	div.calendar caption a:hover {
		background-position: 0 12px;
	}
	div.calendar caption span {
		height: 25px;
		position: relative;
		text-align: center;
	}
	div.calendar caption span.month {
		padding-right: 8px;
	}
	div.calendar caption span.month:after {
		content: ',';
	}

	div.calendar table {
		background: #FFF;
		border: 0;
		border-collapse: collapse;
		border-spacing: 0;
		cursor: default;
		margin: 0 auto;
		overflow: hidden;
		width: 147px;
	}
	div.calendar td,
	div.calendar th {
		border: 0;
		color: #333333;
		font: normal 12px Arial, Helvetica, sans-serif;
		height: 21px;
		text-align: center;
		width: 21px;
	}
	div.calendar td {
		background: url(calendar-td.gif);
		color: #FFF;
		font-size: 11px;
	}
	div.calendar td.invalid {
		color: #999;
	}
	div.calendar td.valid {
		background: url(calendar-valid.gif);
		color: #333333;
		cursor: pointer;
	}
	div.calendar td.hilite {
		background: url(calendar-hilite.gif);
	}
	div.calendar td.inactive {
		background: url(calendar-td.gif) 0 100%;
		color: #FFF;
	}
	div.calendar td.active,
	div.calendar td.hover {
		background: url(calendar-valid.gif) 0 100%;
		color: #FFF;
		cursor: pointer;
	}


/* Search Form Ends Here */

