/*form { position: relative; }*/
	
a, a:active {
	color: #00bbaa;
	text-decoration: none;
	outline: none;
}
	
p { text-align: justify; }
.reqd { color: #f06; }
.tc { font-size: 12px; }
	
.full, .fullbottom, .oneninth, .oneeighth, .onesixth, .twoninths, .quarter, .third, .threeighths {
	float: left;
	width: 100%;
	margin: 0;
	/*background-color: magenta;*/
}
	
.fullbottom {
	margin-bottom: 21px;
	/*background-color: #ccc;*/
}

.oneninth { width: 11.11%; }
.oneeighth { width: 12.5%; }
.onesixth { width: 16.67%; }
.twoninths { width: 22.22%; }
.quarter { width: 25%; }
.third { width: 33.33%; }
.threeighths { width: 37.5%; }
	
input {
	display: block;
	width: 100%;
	height: 42px;
	padding: 0 5px;
	color: #333;
	font-size: 14px;
	font-weight: 600;
	background-color: #fff;
	border: 1px solid #ccc;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /*background-color: cyan;*/
}
	
input[type="radio"] {
	z-index: 999;
	display: none;
	left: 0;
	width: 30px;
	height: 30px;
	padding: 0;
}
	
input:focus { background-color: ivory; }
	
select {
	z-index: 99999;
	width: 100%;
	height: 42px;
	padding: 0 5px;
	color: #000;
	background-color: white;
	border: 1px solid #ccc;	
	box-shadow: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	-webkit-appearance: none;
    -moz-appearance: none;
	appearance: none;
    cursor: pointer;
    /*background-color: yellow;*/
}
	
	select option {
		height: 42px;
		box-shadow: none;
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		border-radius: 0;
		-webkit-appearance: none;
    	-moz-appearance: none;
    	appearance: none;
	}
	
		option.line1 { color: gray; }
			
		select option:nth-child(even) { background: #eee; }		
		select:focus { outline: none; }
			
		select:-moz-focusring {
    		color: transparent;
    		text-shadow: 0 0 0 #000;
		}
		
		.selectbox:after, .currencybox:after {
			z-index: 10000;
    		position: absolute;
    		top: 268px;
    		left: 94%;
    		height: 0;
    		width: 0;
    		content: " ";
    		pointer-events: none;
    		border: solid transparent;
    		border-color: rgba(0, 0, 0, 0);
    		border-top-color: #000;
    		border-width: 10px;
		}
			
		.currencybox:after {
			top: 455px;
		}
	
label {
	display: block;
	width: 100%;
	height: 21px;
	padding: 0 5px;
	background-color: rgba(255,255,255,0.5);
	-webkit-user-select: none;
   	-moz-user-select: none;
    -ms-user-select: none;
	/*background-color: yellow;*/
}
	
	label.radiolabel {
		position: relative;
		float: left;
		width: 33%;
		height: 40px;	
		padding: 9px 0 0 4px;
		border-left: none;
		cursor: pointer;
	}
		
		label.radiolabel:before {
			content: " ";
    		position: absolute;
    		width: 24px;
    		height: 24px;
			background-color: #ddffee;
			border-radius: 50%; 
    		box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, .3), 0px 1px 0px 0px rgba(255, 255, 255, .8);
		}
		
	input[type=radio]:checked + label:before {
    	content: "\2022";
    	color: #ddffee;
    	font-size: 22px;
    	line-height: 22px;
    	text-align: center;
    	text-shadow: 2px 2px 2px rgba(0, 0, 0, .3);
    	background-color: #00bbaa;
	}

	label.radiolabel span { padding-left: 30px; }
			
	.symbol {
		height: 42px;
		margin: 0;
		padding: 10px 0 0 0;
		color: #333;
		font-size: 14px;
		font-weight: 600;
		text-align: right;
		background-color: #fff;
		border-top: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		-webkit-user-select: none;
   		-moz-user-select: none;
    	-ms-user-select: none;
	}
		
	.symbol.first { border-left: 1px solid #ccc; }
		
	#full, #deposit, #balance, #fee, #amount, #currency {
		border-left: none;
		-webkit-user-select: none;
   		-moz-user-select: none;
    	-ms-user-select: none;
	}
		
	#num { text-align: center }
		
#submit {
	width: 100%;
	height: 42px;
	margin: 0;
	color: #00bbaa;
	font-size: 14px;
	font-weight: 600;	
	border: 1px solid #ccc;
	cursor: pointer;
}
	
	#submit:hover { color: #f06; }
	
.error {
	color: #f06;
	font-weight: bold;
	padding: 5px;
}

.errornote {
	width: 100%;
	height: 21px;
	text-align: center;
	background-color: rgba(255,255,255,0.5);
	/*background-color: yellow;*/
}