#media-inline-html-div {
	overflow-y: hidden !important;
	padding: 0 !important;
}

#chart-popup{ 
	overflow: none;
}

#chart-container * {
	margin: 0;
	padding: 0;
	line-height: normal;
}

#chart-container {
	width: 655px;
	height: 494px;
	/*border: 1px solid #404041;*/
	position: relative;
	background-color: #f6d4da;
	overflow: none;
}

/*Nav*/
#chart-container #nav-bar {
	width: 215px;
	height: 494px;
	background-color: #db536a;
	position: absolute;
	top: 0;
	left: 0;
}

#chart-container #nav-bar ul {
	list-style: none;
	width: 195px;
	margin-left: 8px;
}

#chart-container #nav-bar ul li:hover {
	color: #db536a;
}

#chart-container #nav-bar ul li{
	position: relative;
	list-style: none;
	background-color: white;
	color: #602023;
	font-size: 12px;
	text-indent: 5px;
	font-weight: bold;
	/*border-top: 1px dotted #404041;*/
	cursor: pointer;
}

#chart-container #nav-bar ul li.first{
	background-color: #602320;
	border: none;
	color: white;
}

#chart-container #nav-bar ul li.first:hover {
	color: #db536a;
}

#chart-container #nav-bar ul li.first.expandable:hover {
	color: white;
}

#chart-container #nav-bar ul li ul{
	border: 2px solid #602320;
	margin: 0;
	margin-top: 5px;
	height: 25px;
	overflow: hidden;
}

#chart-container #nav-bar ul li ul li{
	height: 25px;
	line-height: 25px;
}

#chart-container #nav-bar ul li ul li.selected {
	color: #db536a;
}
	
#chart-container #nav-bar ul li .rightArrow {
	width: 0; 
	height: 0; 
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	border-left: 10px solid white;
	position: absolute;
	right: 15px;
	top: 5px;
}

#chart-container #nav-bar ul li.expanded .rightArrow {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    /*-ms-transform:rotate(90deg);*/
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
}

/*Chart*/
#chart-container #chart-title {
	position: absolute;
	font-size: 21px;
	font-family: georgia;
	font-weight: bold;
	width: 400px;
	text-align: center;
	left: 240px;
	top: 28px;
	color: #a32020;
	font-style: italic;
}

#chart-container #chart {
	width: 345px;
	height: 355px;
	position: absolute;
	top: 80px;
	left: 325px;
	border-left: 2px solid #404041;
}

#chart-container #chart .ticks {
	position: absolute;
	left: -10px;
	width: 305px;
	height: 160px;
	border-bottom: 2px dashed #404041;
}

#chart-container #chart #topticks {
	top: 15px;
	border-top: 2px dashed #404041;
}

#chart-container #chart #bottomticks {
	bottom: 15px;
}

/*y-Axis*/
#chart-container #y-axis {
	position: absolute;
	left: 225px;
	top: 85px;
	width: 100px;
	border: black;
}

#chart-container #y-axis .y-legend {
	width: 95px;
	margin-bottom: 140px;
	height: 100%;
}

#chart-container #y-axis .y-legend .caption {
	width: 60px;
	font-weight: bold;
	font-size: 12px;
	font-style: italic;
	font-family: georgia;
	float: left;
	text-align: right;
}

#chart-container #y-axis .circle {
	border-radius: 50%;
	width: 25px;
	height: 25px;
	float: right;
}

#chart-container #y-axis #strength .circle {
	background-color: #602023;
}

#chart-container #y-axis #neither .circle {
	background-color: #a32020;
}

#chart-container #y-axis #weak .circle {
	background-color: #db536a;
}

/*x-Axis*/
#chart-container #x-axis {
	width: 400px;
	height: 50px;
	position: absolute;
	left: 346px;
	top: 445px;
}

#chart-container #x-axis .x-legend{
	width: 52px;
	float: left;
	text-align: center;
	font-weight: bold;
	font-style: georgia;
	font-size: 12px;
	margin-right: 15px;
}

/*Data*/
#chart-container #chart #databars {
	width: 400px;
	height: 355px;
	position: absolute;
	top: 0;
	left: 0;
}

#chart-container #chart #databars .bar {
	background-color: #db536a;
	background-image: url('family.png');
	background-repeat: no-repeat;
	background-position: center 3px;
	width: 52px;
	height: 0;
	position: absolute;
	bottom: 0;
}

.clear {
	clear: both;
}