.gantt, .gantt2 {
    width: 100%;
    /*box-shadow:1px 1px 5px black;*/
    margin: 20px auto;
   /* border: 1px solid white;
        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;
        border-radius: 6px;*/
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
}

.gantt:after {
    content: ".";
    visibility: hidden;
    display: block;
    height: 0;
    clear: both;
}

.fn-gantt {
    width: 100%;
}

.fn-gantt .fn-content {
    overflow: hidden;
    position: relative;
    width: 100%;
}




/* === LEFT PANEL === */

.fn-gantt .leftPanel {
    float: left;
    width: 225px;
    overflow: hidden;
    border-right: 1px solid #DDD;
    position: relative;
    z-index: 20;
    background:white;
}

.fn-gantt .row {
    float: left;
    height: 24px;
    line-height: 24px;
    margin-left: -24px;
}

.fn-gantt .leftPanel .fn-label {
    display: inline-block;
    margin: 0 0 0 5px;
    color: #484A4D;
    width: 110px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.fn-gantt .leftPanel .row0 {
    border-top: 1px solid #DDD;
}
.fn-gantt .leftPanel .name, .fn-gantt .leftPanel .desc {
    float: left;
    height: 23px;
    margin: 0;
    border-bottom: 1px solid white;
    background-image: linear-gradient(bottom, rgb(205,216,250) 5%, rgb(237,237,245) 53%, rgb(214,223,240) 77%);
background-image: -o-linear-gradient(bottom, rgb(205,216,250) 5%, rgb(237,237,245) 53%, rgb(214,223,240) 77%);
background-image: -moz-linear-gradient(bottom, rgb(205,216,250) 5%, rgb(237,237,245) 53%, rgb(214,223,240) 77%);
background-image: -webkit-linear-gradient(bottom, rgb(205,216,250) 5%, rgb(237,237,245) 53%, rgb(214,223,240) 77%);
background-image: -ms-linear-gradient(bottom, rgb(205,216,250) 5%, rgb(237,237,245) 53%, rgb(214,223,240) 77%);
background-image: -webkit-gradient(
	linear,
	left bottom,
	left top,
	color-stop(0.05, rgb(205,216,250)),
	color-stop(0.53, rgb(237,237,245)),
	color-stop(0.77, rgb(214,223,240))
);

}

.fn-gantt .leftPanel .name {
    width: 110px;
    font-weight: bold;
}

.fn-gantt .leftPanel .desc {
    width: 115px;
}

.fn-gantt .leftPanel .fn-wide, .fn-gantt .leftPanel .fn-wide .fn-label {
    width: 225px;
}

.fn-gantt .spacer {
    margin: -2px 0 1px 0;
    border-bottom: none;
    background-color: white;
}




/* === RIGHT PANEL === */

.fn-gantt .rightPanel {
    overflow: hidden;
}

.fn-gantt .dataPanel {
    margin-left: 0px;
    border-right: 1px solid #DDD;
    background-image: url(img/grid.png);
    background-repeat: repeat;
    background-position: 24px 24px;
    position: relative;
}

.fn-gantt .day, .fn-gantt .date {
    overflow: visible;
    width: 24px;
    line-height: 24px;
    text-align: center;
    border-left: 1px solid #C0C0C0;
    border-bottom: 1px solid #C0C0C0;
    margin: -1px 0 0 -1px;
    font-size: 11px;
    color: #484a4d;
    text-align: center;
}

.fn-gantt .holiday {
   background-color: #f9e5e2;
    height: 23px;
    margin: 0 0 -1px -1px;
}

.fn-gantt .today {
    background-color: #9999FF;
    height: 23px;
    margin: 0 0 -1px -1px;
    font-weight: normal;
    text-align: center;
}

.fn-gantt .sa, .fn-gantt .sn, .fn-gantt .wd {
    height: 23px;
    margin: 0 0 0 -1px;
    text-align: center;
}

.fn-gantt .sa, .fn-gantt .sn {
    color: red;
    background-color: #E1E1FF;
    text-align: center;
}

.fn-gantt .wd {
    background-color: #f6f6f6;
    text-align: center;
}

.fn-gantt .rightPanel .month, .fn-gantt .rightPanel .year {
    float: left;
    overflow: hidden;
    border-left: 1px solid #DDD;
    border-bottom: 1px solid #DDD;
    height: 23px;
    margin: 0 0 0 -1px;
    background-image: url(img/section_header.gif);
    font-weight: normal;
    font-size: 11px;
    color: black;
    text-shadow: 0 1px 0 rgba(255,255,255,0.75);
    text-align: center;
    font-weight:bold;
}

.fn-gantt .rightPanel .month {
    font-weight:normal;
    background: white !important;
    
}

.fn-gantt-hint {
    border: 1px solid navy;
    background-image: url(img/section_header.gif);
    padding: 10px;
    position: absolute;
    display: none;
    box-shadow:5px 5px 5px silver;
    z-index: 11;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
    color:navy;
    font-style:italic;
}

.fn-gantt .bar {
	background-color: blue;
	margin: 4px 3px 3px 3px;
	position: absolute;
	z-index: 10;
	text-align: center;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	height: 16px;
}

.fn-gantt .bar .fn-label {
	line-height: 6px;
	font-weight: normal;
	white-space: nowrap;
	width: 100%;
	text-overflow: ellipsis;
	overflow: hidden;
	color: #414B57 !important;
	text-align: center;
	font-size: 11px;
}

.fn-gantt .ganttGreen {
	background-color: green !important;
}

.fn-gantt .ganttOrange {
	background-color: orange !important;
}

.fn-gantt .ganttRed {
	background-color: red !important;
}

.fn-gantt .ganttRed .fn-label {
	color: #78436D !important;
}

.fn-gantt .ganttGreen {
	background-color: green !important;
}

.fn-gantt .ganttGreen .fn-label {
	color: white !important;
}

.fn-gantt .ganttOrange {
	background-color: orange;
	opacity: 0.8;
	height: 9px;
	top: 10px;
}

.fn-gantt .ganttOrange .fn-label {
	color: black !important;
}

/*end of small bar*/



.fn-gantt .depLine {
	background-color: transparent;
	position: absolute;
	z-index: 9999;
}

.fn-gantt .depLineSh {
	margin-top: 2px;
	margin-left: 2px;
	opacity: 0.3;
}

.fn-gantt .depStart,.fn-gantt .depEnd {
	position: absolute;
	width: 5px;
	height: 5px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	border: 2px solid #fff;
	-webkit-box-shadow: 1px 1px 1px 0px #444;
	box-shadow: 1px 1px 1px 0px #444;
	z-index: 10001;
}

/* === BOTTOM NAVIGATION === */
.fn-gantt .bottom {
    clear: both;
    background-color: white;
    width: 100%;
}
.fn-gantt .navigate {
    border-top: 1px solid navy;
    padding: 10px 0 10px 225px;
}

.fn-gantt .navigate .nav-slider {
    height: 20px;
    display: inline-block;
}

.fn-gantt .navigate .nav-slider-left, .fn-gantt .navigate .nav-slider-right {
    text-align: center;
    height: 20px;
    display: inline-block;
}

.fn-gantt .navigate .nav-slider-left {
    float: left;
}

.fn-gantt .navigate .nav-slider-right {
    float: right;
}

.fn-gantt .navigate .nav-slider-content {
    text-align: left;
    width: 160px;
    height: 20px;
    display: inline-block;
    margin: 0 10px;
}

.fn-gantt .navigate .nav-slider-bar, .fn-gantt .navigate .nav-slider-button {
    position: absolute;
    display: block;
}

.fn-gantt .navigate .nav-slider-bar {
    width: 155px;
    height: 6px;
    background-color: #838688;
    margin: 8px 0 0 0;
        -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.6) inset;
        -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.6) inset;
        box-shadow: 0 1px 3px rgba(0,0,0,0.6) inset;
            -webkit-border-radius: 3px;
            -moz-border-radius: 3px;
            border-radius: 3px;
}

.fn-gantt .navigate .nav-slider-button {
    width: 17px;
    height: 60px;
    background: url(img/slider_handle.png) center center no-repeat;
    left: 0px;
    top: 0px;
    margin: -26px 0 0 0;
    cursor: pointer;
}

.fn-gantt .navigate .page-number {
    display: inline-block;
    font-size: 10px;
    height: 20px;
}

.fn-gantt .navigate .page-number span {
    color: #666666;
    margin: 0 6px;
    height: 20px;
    line-height: 20px;
    display: inline-block;
}

.fn-gantt .navigate a:link, .fn-gantt .navigate a:visited, .fn-gantt .navigate a:active {
    text-decoration: none;
}

.fn-gantt .nav-link {
    margin: 0 3px 0 0;
    display: inline-block;
    width: 20px;
    height: 20px;
    font-size: 0px;
    background: #4377FF url(img/icon_sprite.png) !important;
   
    cursor: pointer;
    vertical-align: top;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        border-radius: 2px;
           box-shadow:0px 0px 5px gray;
                -webkit-box-sizing: border-box;
                -moz-box-sizing: border-box;
                box-sizing: border-box;
}
.fn-gantt .nav-link:active {
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.25) inset, 0 1px 0 #FFF;
    -moz-box-shadow: 0 1px 1px rgba(0,0,0,0.25) inset, 0 1px 0 #FFF;
    box-shadow: 0 1px 1px rgba(0,0,0,0.25) inset, 0 1px 0 #FFF;
}

.fn-gantt .navigate .nav-page-back {
    background-position: 1px 0 !important;
    margin: 0;
}

.fn-gantt .navigate .nav-page-next {
    background-position: 1px -16px !important;
    margin-right: 15px;
}

.fn-gantt .navigate .nav-slider .nav-page-next {
    margin-right: 5px;
}

.fn-gantt .navigate .nav-begin {
    background-position: 1px -112px !important;
}

.fn-gantt .navigate .nav-prev-week {
    background-position: 1px -128px !important;
}

.fn-gantt .navigate .nav-prev-day {
    background-position: 1px -48px !important;
}

.fn-gantt .navigate .nav-next-day {
    background-position: 1px -64px !important;
}

.fn-gantt .navigate .nav-next-week {
    background-position: 1px -160px !important;
}

.fn-gantt .navigate .nav-end {
    background-position: 1px -144px !important;
}

.fn-gantt .navigate .nav-zoomOut {
    background-position: 1px -96px !important;
}

.fn-gantt .navigate .nav-zoomIn {
    background-position: 1px -80px !important;
    margin-left: 15px;
}

.fn-gantt .navigate .nav-now {
    background-position: 1px -32px !important;
}

.fn-gantt .navigate .nav-slider .nav-now {
    margin-right: 5px;
}

.fn-gantt-loader {
    background-image: url(img/loader_bg.png);
    z-index: 30;
}

.fn-gantt-loader-spinner {
    width: 100px;
    height: 20px;
    position: absolute;
    margin-left: 50%;
    margin-top: 50%;
    text-align: center;
}
.fn-gantt-loader-spinner span {
    color: #fff;
    font-size: 12px;
    font-weight: bold;
}

.row:after {
    clear: both;
}
