.calc-popup-layout {
	display:none; 
	width: 100%;
	height: 100%;
	position: fixed;
	left:0;
	top:0;
	background: #333;
    opacity: 0.5;
    z-index: 108;
}
.calc-popup {
	background: #fff;
	width: 310px;
	margin: -125px 0 0 -158px;
	display: none;
	position: fixed;
    z-index: 109;
	left: 50%;
	top: 50%;
	border: 1px solid #bbc1ce;
    -webkit-box-shadow: 0 2px 20px #333333;
       -moz-box-shadow: 0 2px 20px #333333;
    		box-shadow: 0 2px 20px #333333;
    -webkit-border-radius: 5px;
       -moz-border-radius: 5px;
    	-ms-border-radius: 5px;
    		border-radius: 5px;
    font-family: "Lucida Grande", Tahoma;
    color: gray;
}
.calc-popup span {
	padding: 2px 3px 2px 10px;
    display: block;
    color: gray;
    font-size: 11px;
    clear: both;
}
.calc-popup input {
	border: 1px solid #98a198;
    width: 320px;
    border-radius: 0px;
    color: black;
    font-size: 12px;
    padding: 5px 3px !important;
    outline: 0;
    width: 280px;
}
.calc-popup .popup-error {
	background: #f2dede;
}
.calc-success {
	color: #fff;
	font-weight: bold;
	background: #98c462;
	padding: 5px;
	margin: 7px 10px;
}
.calc-popup button {
	border-top: 1px solid #8a9cc2;
    border-right: 1px solid #4b5e84;
    border-bottom: 1px solid #4b5e84;
    border-left: 1px solid #4b5e84;  
    -webkit-box-shadow: 0 -1px 0 #4b5e84;
       -moz-box-shadow: 0 -1px 0 #4b5e84;
    	box-shadow: 0 -1px 0 #4b5e84;
    background: #637bad;
    padding: 4px 7px 5px;
    color: white;
    font-size: 13px;
    font-weight: bold;
    border-radius: 0px;
    text-shadow: 0 1px 0 #757575;
    margin: 0;
    cursor: pointer;
    width: 140px;
    outline: 0;
}
.calc-popup h6 {
	border-bottom: 1px solid #e9e9e9;
    color: #3b5998;
    font-size: 13px;
    padding: 10px 0 9px 10px;
    margin: 0 0 7px 0;
}
.calc-popup-close {
	text-shadow: 0 1px 0 #4d659f;
    height: 20px;
    width: 20px;
    font-size: 13px;
    overflow: hidden;
    border-radius: 2px;
    text-align: center;
    padding: 0 3px 3px;
    float: right;
    display: inline;
    color: #fff!important;
    text-shadow: none;
    margin: 7px 8px 0 0;
    cursor: pointer;
    text-decoration: none;
	background: #4d659f;
}