/*
jQuery.ganttView v.0.7.2
Copyright (c) 2010 JC Grubbs - jc.grubbs@devmynd.com
MIT License Applies
*/

div.ganttview-hzheader-month,
div.ganttview-hzheader-day,
div.ganttview-hzheader-dow,
div.ganttview-vtheader,
div.ganttview-vtheader-item-name,
div.ganttview-vtheader-series,
div.ganttview-grid,
div.ganttview-grid-row-cell {
	float: left;
}

div.ganttview-hzheader-month,
div.ganttview-hzheader-day {
	text-align: center;
}

div.ganttview-grid-row-cell.last,
div.ganttview-hzheader-day.last,
div.ganttview-hzheader-month.last {
	border-right: none;
}

div.ganttview {
	border: 1px solid #999;
}


/* Horizontal Header */

div.ganttview-hzheader-month {
	width: 60px;
	height: 20px;
	border-right: 1px solid #d0d0d0;
	line-height: 20px;
}

div.ganttview-hzheader-dow,
div.ganttview-hzheader-day {
	width: 20px;
	height: 20px;
	border-right: 1px solid #f0f0f0;
	border-top: 1px solid #d0d0d0;
	line-height: 20px;
	color: #777;
    text-align: center;
}

div.ganttview-hzheader-dow.ganttview-saturday,
div.ganttview-hzheader-day.ganttview-saturday {
    background-color: #f0f8ff;
}

div.ganttview-hzheader-dow.ganttview-sunday,
div.ganttview-hzheader-day.ganttview-sunday {
    background-color: #ffe4e1;
}


/* Vertical Header */

div.ganttview-vtheader {
	margin-top: 41px;
	width: 240px;
	overflow: hidden;
}

div.ganttview-vtheader-item {
	overflow: hidden;
	color: #666;
}

div.ganttview-vtheader-item-name {
	width: 100px;
	padding-left: 5px;
	border-top: 1px solid #d0d0d0;
	line-height: 16px;
}

div.ganttview-vtheader-series-name {
	width: 130px;
	height: 21px;
	border-top: 1px solid #d0d0d0;
	line-height: 16px;
	padding-left: 5px;
}

div.ganttview-vtheader-item-name-selected {
    background-color: #fff5ee !important
}

div.ganttview-vtheader-series-name-selected {
    background-color: #fff5ee !important
}


/* Slider */

div.ganttview-slide-container {
	overflow: auto;
	border-left: 1px solid #999;
}


/* Grid */

div.ganttview-grid-row-cell {
	border-top: 1px solid #f0f0f0;
	border-right: 1px solid #f0f0f0;
}

div.ganttview-grid-row-cell.ganttview-weekend {
	background-color: #fafafa;
}

div.ganttview-grid-row-cell.ganttview-saturday {
    background-color: #f0f8ff; 
}

div.ganttview-grid-row-cell.ganttview-sunday {
    background-color: #ffe4e1;
}

div.ganttview-grid-row-cell-selected {
    background-color: #fff5ee !important
}


/* Blocks */

div.ganttview-blocks {
	margin-top: 40px;
}

div.ganttview-blocks.ganttview-with-day-of-week {
    padding-top: 21px;
}

div.ganttview-block-container {
	height: 18px;
	padding-top: 4px;
}

div.ganttview-block {
	position: relative;
	height: 15px;
	background-color: #E5ECF9;
	border: 1px solid #c0c0c0;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}

div.ganttview-block.ganttview-readOnly {
    background-color: #f5f5f5;
}

div.ganttview-block-text {
	position: absolute;
	height: 12px;
	font-size: 0.8em;
	color: #999;
	padding: 2px 3px;
}

div.ganttview-block-selected {
}
