/* Radio box */

div.radio {
    height: 10px;
    width: 10px;
    overflow: hidden;
    background: url(../images/bg/radio-button-bg.png) repeat-x left top;
    float: left;
    display: inline;
    margin-right: 10px;
    position: relative;
    /*-webkit-border-radius: 10px;
	-moz-border-radius: 9px;
	border-radius: 9px;
	border: solid 1px #ddd;*/
}

/*div.radio.focus {
	border-color: #999;
}

div.radio.focus span {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-position: center center;
}*/

div.radio span {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

div.radio span.checked {
    background: url(../images/bg/radio-button-bg.png) repeat-x left bottom;
}

div.radio span input {
    position: absolute;
    opacity: 0;
}

/* Select Box */

div.selector {
    display: block;
    width: 100%;
    border: solid 1px #d09a00;
    /*-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;*/
    position: relative;
    background: #fff;
    text-shadow: 0 1px 0 #fff;
    height: 20px;
    color: #909090;
}

div.selector select {
    width: 98%;
}

div.selector.focus {
    border-color: #1798eb;
}

div.selector span {
    position: absolute;
    left: 4px;
    top: 0px;
    padding: 0;
    display: block;
    padding-right: 20px;
    height: 20px;
    line-height: 20px;
    background: url(../images/bg/select-button-bg.png) no-repeat right top;
    right: 0;
}

div.selector.focus span {
    left: 4px;
    background: url(../images/bg/select-button-bg.png) no-repeat right -22px;
}

div.selector select {
    position: relative;
    font-size: 1.1em;
    padding: 0;
    line-height: 20px;
    height: 20px;
    border: 0;
    margin: 0;
}