@charset "utf-8";
/* CSS Document */
*{
	font-family: 微軟正黑體;
}
body{
	background-color: #efefef;
	position: relative;
}
p{
	margin: 0;
}

/*======custom select===========================*/
.multicheck{
	position: relative;
	padding-left: 25px;
	cursor: pointer;
}
/* Hide the browser's default checkbox */
.multicheck input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.multicheck .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 21px;
  width: 21px;
  background-color: #fdecff;
  border-radius: 25%;
  border: 1px solid #ba96da;
}

/* On mouse-over, add a grey background color */
.multicheck:hover input ~ .checkmark {
  background-color: #d7d7f7;
}

/* When the checkbox is checked, add a blue background */
.multicheck input:checked ~ .checkmark {
  background-color: #396df9;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.multicheck input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.multicheck .checkmark:after {
  left: 8px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}


/*------------*/
.radio{
	position: relative;
	padding-left: 25px;
	cursor: pointer;
}
/* Hide the browser's default radio button */
.radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.radio .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 21px;
  width: 21px;
  background-color: #fdecff;
  border-radius: 50%;
  border: 1px solid #ba96da;
}
/* On mouse-over, add a grey background color */
.radio:hover input ~ .checkmark {
  background-color: #d7d7f7;
}

/* When the radio button is checked, add a blue background */
.radio input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radio .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.radio .checkmark:after {
 	top: 6px;
	left: 6px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}

/*=====custom select END==================================*/
/*=====custom td=================================*/
/*border_bottom*/
tr.bb td{
	border-bottom: 2px solid #e4d3f5;
}
tr.bt td{
	border-top: 2px solid #e4d3f5;
}
td.bl{
	border-left: 2px solid #e4d3f5;
}
#header{
	background-color: #fff;
	box-shadow: 0 0 5px 2px #CCC;
	margin-bottom: 6px;
}
#header_nav{
	z-index: 2500 !important;
	background-color: #FAFAFA;
	box-shadow: 0 3px 5px -3px #CCC;
}
#navbar-example2{
	position: relative;
	z-index: 3000 !important;
}
#header_nav .navbar{
	background-color: none;
}
#section_main{
	margin-top: 10px;
}
#section_main .container{
	background-color: #fff;
	box-shadow: 0 7px 15px -6px #d9c5ff;
}
#section_main .form_section{
/*	border-bottom: 1px solid #AAA;*/
	padding-bottom: 15px;
}
#section_main .form_title{
	position: relative;
	background-color: #f1deff;
	margin-left: -15px;
	margin-right: -15px;
	padding: 15px;
}
#section_main .form_title p{
	font-weight: bold;
	font-size: 1.3rem;
}
#section_main .form_title i{
	color: #B563F3
}
#section_main .form_title button{
    position: absolute;
    right: 0;
    top: 0px;
    height: 100%;
	background-color:#BE80E7;
	color: #FFF;
}
#section_main .form_content{
	padding-top: 15px;
}
#section_main .form_block{
/*
	margin-bottom: 15px;
	padding-bottom: 15px;
*/
}
#section_main .form_block.hr{
	border-bottom: #CCC solid 1px;
}
#section_main .block_title{
	font-size: 1.2rem;
	color: #8328c5;
	font-weight: bold;
}
#section_main .block_content td{
	vertical-align: middle;
}
footer{
	height: 100px;
	background-color: #fff;
	box-shadow: 0 0 -5px -2px #CCC;
	margin-top: 30px;
}