#avgcalcwp * { 
	box-sizing: border-box; 
}

#avgcalcwp {
	width: 320px;
	margin: 32px auto;
	padding-top: 10px;
	padding-bottom: 10px;
	background-color: #1f73b7;
	border-radius: 0px;
	font-family: Arial,sans-serif;
	font-size: 15px;
}

#avgcalcwp-aantal-waarden {
	width: 180px;
	height: 25px;
	margin: 0px 0px 20px 50px;
}

label#avgcalcwp-label {
	display: inline-block;
	float:left;
	line-height: 1.8;
}

select#avgcalcwp-select {
	margin: 0px;
	display: inline-block;
	float: right;
	color: black;
    background-color: white;
	padding: 4px;
	font-family: inherit;
	font-size: 16px;
	border: 1px solid gray;
	border-radius: 0px;
	line-height: 1.8;
}

#avgcalcwp input[type="text"] {
	color: black;
    background-color: white;
	padding: 5px;
	font-family: inherit;
	font-size: 16px;
	height: inherit;
	border: 1px solid gray;
	border-radius: 1px;
	line-height: 1.8;
}

select#avgcalcwp-select:focus, #avgcalcwp input[type="text"]:focus { 
	outline-color: black;
}

#avgcalcwp-calculator-top {
	margin: 0;
	padding: 0;
	color: white;
	background-color: rgb(31,115,183);
}

#avgcalcwp-calculator-top h2 {
	color: white;
	margin-bottom: 15px;
	font-weight: normal;
	font-family: "Trebuchet MS";
	font-size: 22px;
	text-align: center;
	line-height: 1.8;
}

#avgcalcwp-calculator-inner{
	width: 300px;
	margin: 0px auto;
	padding: 30px 0 1px;
	color:black;
	background-color:rgb(249,249,249);
}

#avgcalcwp-calculator-bottom {
	margin: 0;
	height: 64px;
	background-color: rgb(31,115,183);
}

.avgcalcwp-grid {
	width: 280px;
	margin: 0px auto 32px;
}


.avgcalcwp-grid-header {
	text-align: center;
}

.avgcalcwp-cell {
    display: block;
	float: left;
	padding: 6px 8px;
}

.avgcalcwp-col1 {
	width: 26px;
	padding: 14px 4px 0px 0px;
	text-align: right;
}

.avgcalcwp-col2 {
	width: 127px;
}

.avgcalcwp-col2.plain {
	width: 254px;
}

.avgcalcwp-col3 {
	width: 127px;
}

#avgcalcwp input[type="text"].avgcalcwp-input-waarde {
    width: 111px;
}

#avgcalcwp input[type="text"].avgcalcwp-input-waarde.plain {
    width: 238px;
}

#avgcalcwp input[type="text"].avgcalcwp-input-gewicht {
    width: 111px;
}

#avgcalcwp input[type="text"].avgcalcwp-red {
    border-color: red;
}

#avgcalcwp input[type='button']#avgcalcwp-btn-compute {
    background-color: rgb(92,184,92);
    border-color: rgb(92,184,92);	
	float: right;
	margin-right: 25px;
}

#avgcalcwp input[type='button']#avgcalcwp-btn-reset {
    background-color: rgb(240,173,78);
    border-color: rgb(240,173,78);
	float: left;
	margin-left: 25px;
}

#avgcalcwp input[type='button'] {
	color: white;
}

#avgcalcwp-answer {
	min-height: 105px;
	margin: 32px 2px 2px;
	padding: 0px 10px 20px;
    border: 1px solid rgb(170,170,170);
    border-radius: 2px;
	color: black;
	background-color: white;
	line-height: 28px;
	font-size: 18px;
	font-family: Arial, sans-serif;
}

#avgcalcwp-answer h3 {
	margin: 12px 0;
    display: block;
	text-align: center;
	color: rgb(31,115,183);
    font-weight: bold;
	font-size: 20px;
}

#avgcalcwp-answer hr {
	margin: 20px -10px;
	border-top: 1px solid rgb(170,170,170);
}

.avgcalcwp-clear-both {
    clear: both;
}