/*ffeback*/
.feedback_font{
	color:#000;
	width:140px;
	font-weight:bold;
	font-family:arial;
	vertical-align:top;
	font-size:12px;
}
/*tiles calculator*/
.calc_bg{
	background:#2196DB;
	width:auto;
	padding-bottom:7px;
	padding-left:3px;
	padding-right:3px;
	padding-top:7px;
	border-right:2px solid #fff;
	font-weight:bold;
	text-align:center;
	}
	
/*according Menu*/
#accordion ul {
			list-style: none;
			border: 0px solid #cccccc;
			margin-top: 0px;
			padding-top:0px;
			min-width: 150px;
			max-width: 200px;
		}

		#accordion ul li {
			height: 20px;
			border-bottom: 1px solid #cccccc;
			transition: height 1s ease-in-out;
			-webkit-transition: height 1s ease-in-out;
			-moz-transition: height 1s ease-in-out;
			-ms-transition: height 1s ease-in-out;
			-o-transition: height 1s ease-in-out;    
			overflow: hidden;
			font-weight:bold;
		}

		#accordion ul li:last-child {
			border-bottom: 0px;
		}

		#accordion ul li:target {
			height: 100px;
		}

		#accordion ul li ul{
			opacity: 0;
			margin:10px;
			padding-left: 10px;
			padding-right: 10px;
			border: 0px;
			max-width: 100%;
			/*max-height: 80px;*/
			max-height: 80px;
			overflow-y: auto;
			transition: all 1s ease-in-out;
			-webkit-transition: all 1s ease-in-out;
			-moz-transition: all 1s ease-in-out;
			-ms-transition: all 1s ease-in-out;
			-o-transition: all 1s ease-in-out;    
		}

		#accordion ul li:target ul{
			opacity: 1;            
		}	