/* calendar */

#my_cal_container {

}

#my_cal {
	
}

#calendar_table {
	border: 1px solid #666666;
	width: 170px; /* 1px border * 2 + (23px td width + 1px td border/padding) * 7 days per week */
}

#calendar_table td {
	text-align: center;
	vertical-align: middle;
}

#calendar_table tr.month_nav td {
	border-bottom: 1px solid #666666;
}

#calendar_table tr.second_month_nav td {
	border-top: 1px solid #666666;
}

#calendar_table tr.day_names td {
	width: 23px;
	font-size: 9pt;
}

#calendar_table tr.week td {
	width: 23px;
	border-top: 1px solid #666666;
	font-size: 9pt;
}

#calendar_table .is_available {
	border-left: 1px solid #ffffff;
	font-weight: bold;
}

#calendar_table .not_available {
	padding-left: 1px; /* Mimics the border-left of .is_available */
	background-color: #ffffff;
}

.is_past {}

.not_past {}

/* Styling using old method classes */
/*
.method_1 {
	background-color:#a5d2e3;
}

.method_2 {
	background-color:#bbc181;
}

.method_3 {
	background-color:#e3a5ad;
}

.method_4 {
	background-color:#ebbb87;
}
*/

/* Styling using new method classes */

.method_2day {
	background-color:#a5d2e3;
}

.method_free {
	background-color:#bbc181;
}

.method_overnight {
	background-color:#e3a5ad;
}

.method_saturday {
	background-color:#ebbb87;
}

.method_promo {
	background-color:yellow;
}

/* Old Key Styling */

.shipping_block{
	display:block;
	font-size:9pt;
	margin-bottom:3px;
	margin-top:3px;
	color:#333333;
}

.shipping_key{
	display:block;
	float:left;
	padding-top:6px;
	padding-right:6px;
	width:15px;
	height:8px;

}



/* Dictionary List version of the Shipping Method Color Key */
#shipping_color_key {
	padding: 0px;
	margin: 8px 0px 0px 0px;
}
#shipping_color_key dt {
	padding: 0px;
	margin: 0px 3px 3px 0px;
	float: left;
	width: 20px;
}
#shipping_color_key dd {
	margin: 0px 0px 3px 0px;
	padding: 0px;
}



/* Table version of the Shipping Method Color Key */
#shipping_key {
	padding: 0px;
	margin: 14px 0px 0px -3px;
	border: 0px solid black;
}

#shipping_key .key_pair {
	padding: 0px;
	margin: 0px;
}

#shipping_key .key_pair .key_color, #shipping_key .key_pair .key_text {
	vertical-align: bottom;
	font-size: 9pt;
	color: #333333;
}

#shipping_key .key_pair .key_color {
	height: 14px;
	width: 21px;
}

#shipping_key .key_pair .key_text {
	padding-left: 2px;
}

/* Overrides */
#conditional_calendar #my_cal_container {
	padding-right: 8px;
}

#conditional_calendar #shipping_key_container {
	/*padding-top: 7px;*/
}


