﻿@charset "utf-8";
/* CSS Document */

/*===景點照片===*/
.viewpoint1{
	width:120px; 
	height:80px; 
	background:url(../images/travel/travel_photo01.jpg) left top no-repeat;
	background-size:120px 80px;
    background-size:cover !important;
	text-indent:-9999px;}
	
.viewpoint2{
	width:120px; 
	height:80px; 
	background:url(../images/travel/travel_photo02.jpg) left top no-repeat; 
	background-size:120px 80px;
	text-indent:-9999px;}
	
.viewpoint3{
	width:120px; 
	height:80px; 
	background:url(../images/travel/travel_photo03.jpg) left top no-repeat; 
	background-size:120px 80px;
	text-indent:-9999px;}
	
.viewpoint4{
	width:120px; 
	height:80px; 
	background:url(../images/travel/travel_photo04.jpg) left top no-repeat; 
	background-size:120px 80px;
	text-indent:-9999px;}
	
.viewpoint5{
	width:120px; 
	height:80px; 
	background:url(../images/travel/travel_photo05.jpg) left top no-repeat;
	background-size:120px 80px;
	text-indent:-9999px;}
	
.viewpoint6{
	width:120px; 
	height:80px; 
	background:url(../images/travel/travel_photo06.jpg) left top no-repeat; 
	background-size:120px 80px;
	text-indent:-9999px;}


/*===Radio Button 換成 images===*/
.CheckCount {
	position: absolute;
	border: 0;
	clip: rect(0 0 0 0);
	width: 1px;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
}

/* make the label relative, add padding to the left for adding the custom radio button */
input + label {
    /*padding-left: 23px;*/
	cursor: pointer;
	position: relative;
	display: inline-block;
	line-height: 24px;
	margin: 5px 0;
}


/**
 * :before will be our new button!
 */
 
input + label:before{
	/*display:none\0/;*/
}

input + label:before {
	content: " ";
	z-index:9999;
	position: absolute;
	left: 2px;
	top: 2px;
	
	/* Your size */
	width: 26px;
	height: 26px;
	
	/* Your default background color */
	background-image:url(../../Images/ZH-TW/travel/check_box.png);
	background-position:left top;
	background-repeat:no-repeat;
}

input:checked + label:before {
	/* Your checked background color */
	background-image:url(../../Images/ZH-TW/travel/check_box.png));
	background-position:left bottom;
	background-repeat:no-repeat;
}