/*無邊框間隔設定*/
body {
	border:0px;
	margin:0px;
	/*font-family: Arial, Helvetica, sans-serif;*/
	font-family: "Source Sans Pro",sans-serif;
	line-height: 1.5em;
	text-align: center;
	color: #646466;
}

div{
	border:0px;
	margin:0px;
}

img{
	border:0px;					
	margin:0px;
	margin-right: auto;
	margin-left: auto;
}

table{ 
	border-collapse:collapse;   
}

table td {
	border:0px;					
	margin:0px;
}

/*超連結設定*/
a{
	color: #646466;
	text-decoration:none;		 /*無底線*/
}
/*宣告連結顏色*/
a:link {						
    color: #646466;
    text-decoration: none;		/*無底線*/
}
/*訪問過連結顏色*/
a:visited {
    color: #646466;
    text-decoration: none;		/*無底線*/
}
/*經過時連結顏色*/
a:hover {	
    color: #00B7FF;
    text-decoration: none;		/*無底線*/
}

/*字體設定*/
button{
	font-size: 1em;
}

h1{
	font-size:2em;
}

h2{
	font-size: 1.75em;
}

h3{
	font-size: 1.5em;
}

h4{
	font-size: 1.25em;
}

h5{
	font-size: 1.125em;
}

h6{
	font-size: 1em;
}

h1, h2, h3, h4, h5, h6{
    font-family: "Source Sans Pro",sans-serif;
	line-height: 1.5em;
	font-weight: 400;
	margin:5px 0px;
	padding:0px;
}

/*pointer設定*/
.pointer{
	cursor:pointer;
}

/*粗體設定*/
.strong{
	/*font-weight: bolder;*/
	font-weight: 600;
}

/*所在路徑連結*/
.link_path a{
	color: #007BC7;
	text-decoration:none;		 /*無底線*/
}

.link_path a:visited {
    color: #007BC7;
    text-decoration: none;		/*無底線*/
}

.link_path a:hover {	
    color: #00B7FF;
    text-decoration: none;		/*無底線*/
}

/*資料表格*/
.show_table {
	text-align:left;
}

.show_table td{
	border-left: 1px solid #CCCCCC;
    border-right: 1px solid #CCCCCC;
    border-top: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
	padding:4px;
}

/*div模擬table置中*/
.center {
  width: auto;
  display: table;
  margin-left: auto;
  margin-right: auto;
}

/*bootstrap垂直置中*/
.vertical-center {
	min-height: 50%;
	min-height: 50vh;
	display: flex;
	align-items: center;
}
		
/*路徑*/
.breadcrumb{
	border-radius: 0px;
	background-color: #F2F2F2;
}

.breadcrumb > li + li::before {
	color:#007BC7;
}

/*使用者的螢幕裝置超過1200px(寬螢幕)*/
@media (min-width: 1200px) {
	body {
		font-size: 16px;
	}
}

/*使用者的螢幕裝置在992px~1199px(電腦)*/
@media (min-width: 992px) and (max-width: 1199px) {
	body {
		font-size: 16px;
	}
}

/*使用者的螢幕裝置在767px~991px(平板)*/
@media (min-width: 768px) and (max-width: 991px) {
	body {
		font-size: 14px;
	}
}	

/*使用者的螢幕裝置在767px以下(手機)*/
@media (max-width: 767px) {
	body {
		font-size: 12px;
	}
}
