.calculator:after /* floaty ochistil, no ehto tak sovet, o takom ne vse i otsnositel'no opytnye znayut */{
	content: '';
	display: table;
	clear: both;
}
.calculator .calcleft {
	width: 260px;
	float: left;
}
.calculator .calcright {
	width: 300px;
	padding: 20px;
	float: right;
	background: #dedede;
}
.calculator .calcleft
.calculator .calcright {
	margin: 20px 0;
}

.calculator .calcright {
	margin-top: 40px;
	height: 454px;
}
.calculator .green{
	background-color: #dedede;
	padding: 0 15px;
	height: 40px;
	line-height: 40px;
	font-size: 14px;
	font-weight: bold;
	color: #000;
	margin-bottom: 0 !important;
}
.calculator .calcbox {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.calculator .calcbox.active, .calculator .calcbox:hover {
	color: #ffffff;
	background-color: #63a616;
	cursor: pointer;
}
.calculator .calcbox.active .mainrow, .calculator .calcbox:hover .mainrow{
	color: #ffffff;
}
.calcbox span {
	position: absolute;
	background: url(calcdec.png) no-repeat;
	height: 11px;
	width: 6px;
	top: 50%;
	right: 0px;
	margin-top: -6px;
	display: block;
	opacity: 0;
	-webkit-transition: 0;
     -o-transition: 0;
     -moz-transition: 0;
     transition: 0;
}
.calcbox.active span, .calcbox:hover span{
	opacity: 1;
	right: -6px;
	-webkit-transition: 0.3s linear;
     -webkit-transition-delay: 0.1s;
     -o-transition: 0.1s linear;
     -o-transition-delay: 0.3s;
     -moz-transition: 0.3s linear;
     -moz-transition-delay: 0.1s;
     transition: 0.3s linear;
     transition-delay: 0.1s;
}

.calculator .calcbox {
	padding: 15px;
}
.calculator .calcbox .mainrow {
	font-family: 'Open Sans Condensed', sans-serif;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 10px;
	color: #0093e8;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.calculator .calcbox .row {
	font-size: 14px;
}
.calculator .calcbox .row+.row {
	margin-top: 10px;
}
.calculator .calcright .leftblock, .calculator .calcright .rightblock {
	display: inline-block;
	vertical-align: middle;
}
.calculator .calcright .inp {
	margin-bottom: 30px;
}
#shosse {
	margin-top: 15px;
}
#shosse .inp{
	margin-top: 15px;
	margin-bottom: 0;
}
.calculator .calcright .inp .leftblock {
	margin-right: 10px;
}
.calculator .calcright .inp .leftblock input {
	width: 62px;
	padding: 0 10px;
	background-color: #fff;
	border: 1px solid #898989;
	height: 40px;
	line-height: 40px;
	font-size: 19px;
	color: #515151;
}

input[type="text"], textarea {
	height: 35px;
	padding: 5px 0 5px 15px;
	font-size: 17px;
	border: 1px solid #999999;
	background-color: #f9f9f9;
}

.calculator .calcright .inp .rightblock {
	font-size: 14px;
	line-height: 20px;
	color: #000;
}
.calculator .calcright .inp .rightblock span {
	display: block;
	font-size: 12px;
}

select {
	width: 62px;
	padding: 0 10px;
	background-color: #fff;
	border: 1px solid #898989;
	height: 40px;
	line-height: 40px;
	font-size: 19px;
	color: #515151;
	width: 298px;
}

.button {
	margin-top: 20px;
	font-family: 'Open Sans Condensed', sans-serif;
	font-size: 28px;
	background-color: #00abf2;
	color: #fff;
	display: inline-block;
	cursor: pointer;
	line-height: 50px;
	font-weight: bold;
	text-transform: uppercase;
	height: 50px;
	padding: 0 20px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.button:hover {
	background-color: #fff;
	color: #515151;
}
.calculator .calcright .error {
	margin: 10px 0 0 0;
	font-weight: bold;
	color: #ff0000;
	font-size: 16px;
	display: none;
}

.calculator .calcright .ok {
	margin: 10px 0 0 0;
	font-weight: bold;
	font-size: 16px;
	display: none;
}