#calcWrapper {
	border: 1px solid #aaa;
	/*
	max-width: 500px;
	margin: 0px auto;
	*/
	background: white;
}
#calcItems {
}

.calcDescription {
	border-bottom: 1px solid #aaa;
	padding: 10px;
	display: none;
	background: #eee;
}
.calcDescription h2 {
	display: none;
}
.calcItem, .scoreItem, .scoreDescription {
	position: relative;
	padding: 10px;
	border-bottom: 1px solid #aaa;
}
.calcItem {
	display: none;
	line-height: 1.5em;
}
.calcItem .validationMessage {
	display: none;
	color: red;
	padding-left: 20px;
}
.scoreDescription {
	display: none;
}
.calcItem label {
	/*
	display: inline-block;
	display: inline-block;
	width: 90%;
	*/
	padding-left: 20px;
	vertical-align: top;
	display: block;
}
.calcItemValue {
	font-size: 0.8em;
	color: #666;
}

.calcItem input[type="checkbox"], .calcItem input[type="radio"] {
/*	position: absolute;
	right: 10px;
	top : 10px;
*/
	border: none;
	margin-left: -20px;
}
.calcItem input[type="text"], .calcItem input[type="number"] {
	/*
	position: absolute;
	right: 2px;
	top: 2px;
	float: right;
	*/
	border: 1px solid #aaa;
	width: 60px; /*80px;*/
	font-size: 15px;
	position: absolute;
	right: 10px;
	top: 10px;
}
.calcItem .radiogroup {
}

.groupItem {
	/*
	border-radius: 10px;
	margin: 10px;
	border: 3px solid #ddd;
	*/
	min-height: 250px;
}
.groupItem label {
	font-size: 1.2em;
	margin: 20px 0px 3px 0px;
}

.scoreItem {
	background: #666;
	color: white;
	padding: 20px;
	min-height: 25px;
}
.scoreItem * {
	color: white;
}
.scoreItem ul {
	text-align: left;
	padding-left: 10px;
}
#calcScoreWrapper {
	position: absolute;
	right: 20px;
	top: 5px;
	font-weight: bold;
	min-width: 50px;
	z-index: 1; /* IE7 cuts it off without this.. i know right?! */
}
#calcScore {
	font-size: 3em;
	line-height: 1em;
}

.calcItem input[type="checkbox"] {

}
#calcClear {
	display: block;
	border: none;
	padding: 10px 50px;
	border-radius: 10px;
	font-size: 15px;
	background: #ddd;
	color: #555;
	font-weight: bold;
	margin: 10px auto;
}
.calcButton {
	/*
	display: block;
	*/
	border: 2px solid #aaa;
	padding: 10px 40px;
	border-radius: 10px;
	font-size: 15px;
	background: #ddd;
	color: #555;
	font-weight: bold;
}
#calcClear:hover, .calcButton:hover {
	background: #aaa;
}


ul.examples {
	margin-top: 5px;
	color: #666;
}

@media screen and (max-width: 400px) {

	#calcScoreWrapper {
		position: static;
	}
	.scoreItem {
		text-align: center;
	}
}

