@charset "utf-8";
/* CSS Document */

/*-------------------------------------------------------------------------------------------------------------
 *****1.初始化所有樣式*****
-------------------------------------------------------------------------------------------------------------*/	
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
input, select, button, textarea, 
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	background:none; 
	-webkit-font-smoothing: antialiased; 
	-webkit-text-size-adjust: none; 
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
	margin: 0;
	padding: 0;
	text-align: left;
}

body {
	line-height: 1;
}

table {
	border-droop: droop;
	border-spacing: 0;
	padding-right: 5px;
	text-align: left;
	text-indent: 5px;
}
fieldset, img {
	border:0;
}

img { vertical-align: top;font-weight: normal;font-size: 100%; }

address, caption, cite, code, dfn, em, strong, th, var {	
	font-style:normal;font-weight:normal;
}
ol, ul {
	list-style:none;
}
caption, th {
	text-align:left;
}
h1, h2, h3, h4, h5, h6 {	
	font-size:100%;font-weight:normal;	
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
abbr, acronym {
	border:0;
}
a{
	cursor:pointer;
}
/*-------------------------------------------------------------------------------------------------------------
 *****2.解決 Flort 父層元素穿插問題*****
-------------------------------------------------------------------------------------------------------------*/	
.clearfix:after {
	content: ".";display: block;clear: both;visibility: hidden;line-height: 0;height: 0;
}
/*.clearfix {
	//display: inline-block;
}*/
html[xmlns] .clearfix {
	display: block;
}
* html .clearfix {
	height: 1%;
}

/*-------------------------------------------------------------------------------------------------------------
 *****3.預設 CSS 樣式*****
-------------------------------------------------------------------------------------------------------------*/	
html,
body{
	padding: 0px;
	margin: 0px;
	width: 100%;
	height: auto;
	font-family: 'Open Sans',arial,sans-serif;
}

/*-------------------------------------------------------------------------------------------------------------
	共用結構
-------------------------------------------------------------------------------------------------------------*/
.none{display:none !important;visibility:hidden;}	
.warningTxt{color:#e60012;}	
#Search_List li{ font-size:12px;}
#Search_List .form_control{ height:24px; padding:0px;}
#Search_List .data_st{ display: block; float:left;}
#Search_List .data_ed{ display: block; float:left;}


/*-------------------------------------------------------------------------------------------------------------
	共用結構 / 客製化下拉式選單
-------------------------------------------------------------------------------------------------------------*/

/*-------------------------------------------------------------------------------------------------------------
		多樣式CSS調整版型
-------------------------------------------------------------------------------------------------------------*/

/*--例：如果視窗最小寬度為500px，就套用這些CSS--*/
@media screen and (min-width:500px) {
   /*--CSS goes here--*/
}

/*--例：如果視窗為直立，就套用這些CSS--*/
@media screen and (orientation: portrait) {
   /*--CSS goes here--*/
}

/*--例：如果視窗在400px和700px之間(兩者需同時符合)，就套用這些CSS--*/
@media screen and (min-width: 400px) and (max-width: 700px) {
   /*--CSS goes here--*/
}

/*--例：如果是彩色螢幕或彩色投影機兩者之一(兩者符合一種即可)，就套用這些CSS--*/
@media screen and (color), projection and (color) {
   /*--CSS goes here--*/
}

/*--target mobile devices--*/
@media only screen and (max-device-width: 480px) {
    body { max-width: 100%; }
}
 
/*--recent Webkit-specific media query to target the iPhone 4's high-resolution Retina display--*/
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
   /*--CSS goes here--*/
}
 
/*--should technically achieve a similar result to the above query,
// targeting based on screen resolution (the iPhone 4 has 326 ppi/dpi)--*/
@media only screen and (min-resolution: 300dpi) {
   /*--CSS goes here--*/
}
