@charset "utf-8";
/* CSS Document */

#slides{
	position:relative;
}

.slidesjs-container{
	position:absolute;
	margin-bottom:5px;
	background:#BCBCBC;
}
.slidesjs-previous{
	overflow:hidden;
	text-indent:-999px;
	background:url(../images/btn_pre.png) center center no-repeat;
	width:20px;
	height:47px;
	float:left;
	position:absolute;
	top:200px;
	z-index:30;
	margin-left:0px;
	padding:20px;
}
.slidesjs-next{
	overflow:hidden;
	text-indent:-999px;
	background:url(../images/btn_next.png) center center no-repeat;
	width:20px;
	height:47px;
	float:left;
	position:absolute;
	top:200px;
	z-index:30;
	margin-left:1195px;
	padding:20px;
}


/* radio button */

input[type="checkbox"] {
    display:none;
}

input[type="checkbox"] + label {
    font-size:14px;
	font-weight:bold;
}

input[type="checkbox"] + label span {
    display:inline-block;
    width:19px;
    height:19px;
    margin:-1px 4px 0 0;
    vertical-align:middle;
    background:url(../images/check_radio_sheet.png) left top no-repeat;
    cursor:pointer;
}

input[type="checkbox"]:checked + label span {
    background:url(../images/check_radio_sheet.png) -19px top no-repeat;
}

input[type="radio"] {
    display:none;
}

input[type="radio"] + label {
    font-size:14px;
	font-weight:bold;
	text-transform:uppercase;
}

input[type="radio"] + label span {
    display:inline-block;
    width:19px;
    height:19px;
    margin:18px 4px 0 0;
    vertical-align:middle;
    background:url(../images/check_radio_sheet.png) -38px top no-repeat;
    cursor:pointer;
	float:left;
}

input[type="radio"]:checked + label span {
    background:url(../images/check_radio_sheet.png) -57px top no-repeat;
}