body {
	margin: 0;
	padding: 0;
}

/* CALCULATOR */
#calculator {
	width: 100%;
	border: solid 1px #ccc;
  -webkit-box-shadow: 0px 0px 25px 0px #999 inset;
          box-shadow: 0px 0px 25px 0px #999 inset;
  -webkit-border-radius: 5px;
          border-radius: 5px; 
  -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box;
}
#calculator p {
	padding: 12px 0;
}
#calculator label {
	font-weight: bold;
}
#calculator input {
	margin: 0 5px;
	text-indent: 5px;
}
#calculator input[type="text"] {
	border: solid 1px #666;
  -webkit-border-radius: 3px;
          border-radius: 3px;
}
#calculator select {
	margin: 0 2px;
}
#calculator .invest,
#calculator .return {
	display: none;
}
#calculator .cell {
	float: left;
	min-width: 320px;
	width: 42%;
	margin: 20px 0;
	padding: 0 2%;
}
#calculator .cell.chart {
	min-width: 390px;
	padding-bottom: 40px;
	padding-left: 1%;
	border-left: dotted 1px #9999FF;
	clear: right;
}
#calculator .slider {
	margin:10px 0;
}
#calculator .icon-bg {
	font-weight: bold;
	padding: 45px 0 0 45px;
	height: 75px;
	background:url('../images/muni_info_icon.png') no-repeat 0 0;
}
#calculator .icon-bg .invest {
	display: block;
}

/* SLIDER */
#slider {
	margin: 15px 0 10px 7px;
	width: 310px;
}
#slider-text {
	position: relative;
	color: #555;
	font-size: 11px;
	padding-bottom: 10px;
	height: 20px;
}
#slider-text .slide-select {
	font-weight: bold;
}
#slider-text span {
	position: absolute;
}

/* CHART */
#chart {
	position: relative;
	margin: 10px 0 0 50px;
	height:100px;
	overflow: visible;
	font-size: 11px;
}
#chart .lines {
	position: absolute;
	z-index: 1;
	margin: 0 0 0 25px;
	width: 210px;
	height: 100%;
}
#chart .lines hr {
	width: 100%;
	margin: 0 0 23px 0;
	padding:0;
}
#chart .line {
	width: 100%;
	margin: 0 0 24px 0;
	height: 0;
	border-top: solid 1px #ccc;
}
#chart .lines .range {
	position: absolute;
	text-align: right;
	left: -20px;
}
#chart .lines .rng-1 {
	top:-8px;
}
#chart .lines .rng-2 {
	bottom: -8px;
}

#chart .column {
	position: absolute;
	z-index: 100;
	bottom: 0;
	width: 80px;
	background-color: #aaa;
	overflow: visible !important;
}
#chart .column.cd {
	left:50px;
	background-color: #5d87b7;
}
#chart .column.muni {
	left:130px;
	background-color: #a5c6e0;
}
#chart .column.difference-cd,
#chart .column.difference-muni {
	width: 78px;
	left:130px;
	border: dashed 1px #fdbf5a;
	display: none;
	background-color: rgba(253,243,200);
	background-color: rgba(253,243,200,0.6);
}
#chart .column.difference-cd {
	left:50px;
}
.lt-ie9 #chart .column.difference-cd,
.lt-ie9 #chart .column.difference-muni {
	background: transparent;
	background-color: #FDF3C8;
	filter:alpha(opacity=60);
}
#chart .column .val {
	position: absolute;
	bottom: 0;
	width: 100%;
	text-align: center;
	text-shadow: 1px 1px 2px #333333;
	color: #FFFFFF;
}
#chart .column.small .val {
	top:-17px;
	color: #000000;
}
#chart .column .label {
	position: absolute;
	bottom: -23px;
	width: 100%;
	text-align: center;
	font-weight: bold;
}

#chart .highlight {
	color: #990000;
}
#chart .description {
	position: absolute;
	left: 250px;
	width: 100px;
	font-weight: bold;
}
#chart .type {
	position: absolute;
	bottom: -42px;
	width: 210px;
	margin-left: 25px;
	text-align: center;
}
