div.timeframe_container {
	display: inline;
	display: inline-block;
	margin: 0;
	padding: 0;
	text-align: center;
	text-shadow: none;
	font-family: Arial,Helvetica,sans-serif;
	color: #000;
}

/* Calendar*/
div.timeframe_container table.calendar {
	border-collapse: collapse;
	font-size: 15px;
}
	/* Month names */
	div.timeframe_container table.calendar caption {
		text-shadow: 0 0 0 #fff;
		cursor: default;
		line-height: 1.2em;
	}
		div.timeframe_container table.calendar caption > div {
			position: relative;
		}
		div.timeframe_container table.calendar caption .prevmonth,
		div.timeframe_container table.calendar caption .nextmonth {
			position: absolute;
			padding: 0 .1em;
			cursor: pointer;
		}
			div.timeframe_container table.calendar caption .prevmonth:hover,
			div.timeframe_container table.calendar caption .nextmonth:hover {
				background-color: #bbb;
			}
		div.timeframe_container table.calendar caption .prevmonth {
			top: 0;
			left: 0;
		}
		div.timeframe_container table.calendar caption .nextmonth {
			top: 0;
			right: 0;
		}
	/* Cell sizes */
	div.timeframe_container thead th, div.timeframe_container tbody td {
		width: 20px;
		height: 18px;
		line-height: 18px;
		margin: 0;
		padding: 2px 1px;
	}
	/* Weekday letters */
	div.timeframe_container thead {
		background: #222;
		color: #eee;
		cursor: default;
	}
	/* Days */
	div.timeframe_container tbody {
		background: #fff;
		-webkit-box-shadow: 0px 2px 6px #999;
	}
		div.timeframe_container tbody td {
			cursor: pointer;
			background-repeat: no-repeat;
		}
			/* Hover states not available in IE */
			div.timeframe_container tbody td.selectable:hover {
				background-color: #bbb;
			}
			div.timeframe_container tbody td.selected:hover, div.timeframe_container tbody td.stuck:hover {
				background-color: #e99a27;
			}
			/* Selected states */
			div.timeframe_container tbody td.selected {
				background-color: #ffb03b;
			}
			div.timeframe_container tbody td.stuck {
				background-color: #e99a27;
			}
			/* Range markers */
			div.timeframe_container tbody td.startrange, div.timeframe_container tbody td.endrange, div.timeframe_container tbody td.startendrange {
				cursor: col-resize;
			}
			div.timeframe_container tbody td.startrange {
				background-image: url(../images/timeframe/start.png);
			}
			div.timeframe_container tbody td.endrange {
				background-image: url(../images/timeframe/end.png);
			}
			div.timeframe_container tbody td.startendrange {
				background-image: url(../images/timeframe/startend.png);
			}
			/* Today */
			div.timeframe_container tbody td.today {
				background-color: #468966;
				color: #eee;
			}
				div.timeframe_container tbody td.today_selected {
					background-color: #b64926;
				}
				div.timeframe_container tbody td.today_stuck {
					background-color: #8e2800;
				}
			/* Post/pre-month */
			div.timeframe_container tbody td.beyond {
				background-color: #aaa;
				background-image: none;
				color: #ccc;
			}
				div.timeframe_container tbody td.beyond_selected {
					background-color: #999;
				}
				div.timeframe_container tbody td.beyond_stuck {
					background-color: #888;
				}
			div.timeframe_container tbody td.unselectable {
				color: #ccc;
				cursor: default;
			}

