input[type='checkbox'] {
    -webkit-appearance:none;
    width:20px;
    height:20px;
    background:white;
    border:1px solid #aaa;
    vertical-align:middle;
}

input[type='checkbox']:checked {
    background: url(/img/minicons/check.png);
    background-repeat: no-repeat;
    background-position: center; 
}

input[type='radio'] {
    -webkit-appearance:none;
    width:20px;
    height:20px;
    background:#ffffff;
    border:1px solid #aaa;
    border-radius: 10px;
    vertical-align:middle;
}

input[type='radio']:checked {
    background: url(/img/minicons/dot.png);
    background-repeat: no-repeat;
    background-position: center; 
}

.pickfirst, .smallfont {
	color: #838fac;
	font-size: small;
}

.centered {
    text-align: center;
}

.textfield {
	padding: 4px;
	font: 14pt "Lucida Grande", Lucida, Verdana, sans-serif;
}

.textfield2 {
	padding: 2px;
	font: 12pt "Lucida Grande", Lucida, Verdana, sans-serif;
}

.textfield-noblock {
	font: 12pt "Lucida Grande", Lucida, Verdana, sans-serif;
	padding: 4px;
	border-radius: 5px;
	border: 1px solid #d0cdb4;
}

.textfield-noborder {
	font: 12pt "Lucida Grande", Lucida, Verdana, sans-serif;
	padding: 4px;
	width: 100%;
	max-width:100%;
	margin: 5px;
	display:block;
	border: none;
}

textarea {
	padding: 4px;
	font: 12pt "Lucida Grande", Lucida, Verdana, sans-serif;
	width: 100%;
	margin: 5px;
}

.noul {
	text-decoration: none;
}

select {
  font-size: 16px;
  border: 1px solid #CCC;
  height: 34px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #eeeeee;
  padding-left: 10px;
	padding-right: 10px;
}

select::-ms-expand {
    display: none; /* Remove default arrow in Internet Explorer 10 and 11 */
}