/* Resets */
.graph-container,
.graph-container div,
.graph-container a,
.graph-container span {
	margin: 0;
	padding: 0;
}
/* Gradinet and Rounded Corners */
.graph-container, #tooltip, .graph-info a {
	background: #ffffff;
}

/*  Graph Container */
.graph-container {
	position: relative;
	width: 100%;
	height: 250px;
	padding: 20px;
	
	-webkit-box-shadow: 0px 0px 0px 1px #f2f2f2;
	-moz-box-shadow: 0px 0px 0px 1px #f2f2f2;
	box-shadow: 0px 0px 0px 1px #f2f2f2;
}

.graph-container > div {
	position: absolute;
	width: 97%;
	height: 93%;
	top: 10px;
	left: 25px;
}

/* Text Styles */
#tooltip, .graph-info a {
	height: 20px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight:normal;
	font-size: 12px;
	line-height: 20px;
	color: #58595b;
}

.tickLabel {
	font-weight:normal;
	font-size: 12px;
	color: #58595b;
	font-family: Arial, Helvetica, sans-serif;
}

/* Tooltip */
#tooltip {
	position: absolute;
	display: none;
	padding: 5px 10px;
	border: 1px solid #e1e1e1;
    min-height: 30px;
    height: auto;
}

/* Links */
.graph-info {
    margin-bottom: 15px;
}
.graph-info a {
	position: relative;
	display: inline-block;
	float: left;
    height: 23px;
	padding: 7px 10px 5px 30px;
	margin-right: 0px;
	text-decoration: none;
	cursor: default;
}

/* Color Circle for Links */
.graph-info a:before {
	position: absolute;
	display: block;
	content: '';
	width: 8px;
	height: 8px;
	top: 13px;
	left: 13px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

/* Colors For each Link */
.graph-info .graf1:before { background: #71c73e; }
.graph-info .graf2:before { background: #0093bd; }

/* Lines & Bars Buttons */
.graph-info .lines, .graph-info .bars {
	width: 34px;
	height: 34px;
	padding: 0;
	margin-right: 0;
	margin-left: 0px;
	float: right;
	cursor: pointer;
}

.lines.active, .bars.active {
}
.lines:hover, .bars:hover {
	background:#f5f5f5;
}

.lines span, .bars span {
	display: block;
	width: 34px;
	height: 34px;
	background: url('/assets/images/graph/g_spojnice.png') no-repeat center -34px;
}

.bars span { background: url('/assets/images/graph/g_sloupce.png') no-repeat center -34px; }

.lines.active span { background: url('/assets/images/graph/g_spojnice.png') no-repeat center 0px; }
.bars.active span { background: url('/assets/images/graph/g_sloupce.png') no-repeat center 0px; }

/* Hide the First and Last Y Label */
.yAxis .tickLabel:first-child,
.yAxis .tickLabel:last-child { display: none; }

/* Clear Floats */
.graph-info:before, .graph-info:after,
.graph-container:before, .graph-container:after {
	content: '';
	display: block;
	clear: both;
}