/* CSS Document */
*
{
	margin:0;
	padding:0;	
}

html, body {
	font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;
	color: #fff;
	font-size:11px;
	background:#e2001a;
}

.spacer{clear:both;  padding: 0; margin:0;}

p
{
	margin-bottom:10px;
}

.button1
{
	margin:5px 5px 0 0;
	padding:5px;
	font-size:12px;
}

.datefieldbutton
{
	float:right;
	margin:3px 0px 0 0;
	font-size:10px;
	padding:3px;
}

#stylized label
{
	display:block;
	margin:0 0 4px 0;
	font-weight:bold;
}

.ordtextfield,.datefield
{
font-family:Arial, Helvetica, sans-serif;
padding:8px;
width:213px;
color:#666;
background:#fff url(../giffs/textfield-bgd.jpg) repeat-x;
border:1px solid #333;
font-size:11px;
margin-bottom:4px;
-moz-border-radius:8px;
-webkit-border-radius:8px;
border-radius:8px;
}
.datefield
{
width:160px;
}

.ordtextfield:focus, select:focus, textarea:focus,.datefield:focus, select:focus, textarea:focus
{
	color:#000;
}

.captcha
{
	margin:0 0 4px 0px;
	padding:5px;
	background:#fff;
	border:1px solid #333;
	-moz-border-radius:8px;
-webkit-border-radius:8px;
border-radius:8px;
}

/* DATE PICKER //////////////////////////////////////////////////*/

/* the div that holds the date picker calendar */
.dpDiv {
	margin-left:5px;
	margin-top:0px;
	}
 
 
/* the table (within the div) that holds the date picker calendar */
.dpTable {
	font-family: Tahoma, Arial, Helvetica, sans-serif;
	font-size: 11px;
	text-align: center;
	color: #333;
	background-color:#fff;
	padding:10px;
	
	-webkit-border-radius: 8px;
	-moz-border-radius: 0 0 8px 8px;
	border-radius:8px;
	
	-moz-box-shadow: 3px 3px 8px #990000;
	-webkit-box-shadow: 3px 3px 8px #990000;
    box-shadow: 3px 3px 8px #990000;


	}
 
 
/* a table row that holds date numbers (either blank or 1-31) */
.dpTR {
	}
 
 
/* the top table row that holds the month, year, and forward/backward buttons */
.dpTitleTR {
	}
 
 
/* the second table row, that holds the names of days of the week (Mo, Tu, We, etc.) */
.dpDayTR {
	}
 
 
/* the bottom table row, that has the "This Month" and "Close" buttons */
.dpTodayButtonTR {
	}
 
 
/* a table cell that holds a date number (either blank or 1-31) */
.dpTD {
	border: 1px solid #ccc;
	padding:0px 5px 0px 5px;
	}
 
 
/* a table cell that holds a highlighted day (usually either today's date or the current date field value) */
.dpDayHighlightTD {
	background-color: #e2001a;
	color:#fff;
	}
 
 
/* the date number table cell that the mouse pointer is currently over (you can use contrasting colors to make it apparent which cell is being hovered over) */
.dpTDHover {
	background-color: #000;
	cursor: pointer;
	color: #fff;
	}
 
 
/* the table cell that holds the name of the month and the year */
.dpTitleTD {
	}
 
 
/* a table cell that holds one of the forward/backward buttons */
.dpButtonTD {
	}
 
 
/* the table cell that holds the "This Month" or "Close" button at the bottom */
.dpTodayButtonTD {
	}
 
 
/* a table cell that holds the names of days of the week (Mo, Tu, We, etc.) */
.dpDayTD {
	background-color: #e2001a;
	color: #fff;
	}
 
 
/* additional style information for the text that indicates the month and year */
.dpTitleText {
	font-size: 11px;
	color: #000;
	}
 
 
/* additional style information for the cell that holds a highlighted day (usually either today's date or the current date field value) */ 
.dpDayHighlight {
	color: #fff;
	font-weight: bold;
	}
 
 
/* the forward/backward buttons at the top */
.dpButton {
	font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #fff;
	background: #e2001a;
	padding: 0px;
	border:none;
	}
 
 
/* the "This Month" and "Close" buttons at the bottom */
.dpTodayButton {
	width:18px;
	height:18px;
	background: url(../giffs/error.png) no-repeat;
	float:right;
	border:none;
	text-indent:-8999px;
	}

/* CSS Document */