/* ---------------------------------------------------------------- */
/*
/*	 1.	主版面
/*	 2.	內頁共用
/*	 3.	首頁
/*	 4. 內頁
/* ---------------------------------------------------------------- */
/* ==========================================================================
	1.	主版面
 ========================================================================== */
 /*go- Top 返回頂部*/
	
	#go-top-Btn {
    font-size:1.2em;
	 font-family: "Helvetica Neue", "Helvetica", "Arial";
	 font-weight:bold;
	 text-align: center;
    text-decoration: none;
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #FF8000; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners圓角 */
	
}

#go-top-Btn:hover {
    background-color:  #D90000; /* Add a dark-grey background on hover */
	color: #FFFF73 ; /* Text color */
    font-size:1.2em;
	font-weight:bold;
    font-family: "Helvetica Neue", "Helvetica", "Arial";
   
 -webkit-transition: all 0.5s;  /* 轉場 */
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}
	
/* go-top返回頂部end*/
 
 
 
 
 /*網站地圖連結樣式 */
A.linkstylemap a {
  color: #040404;
  text-decoration: none;
  padding:3px;
  -webkit-transition: all 0.5s;  /* 轉場 */
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}
A.linkstylemap:link {
  color: #040404;
  text-decoration: none;
}
A.linkstylemap:hover {
  color: #cc0707;
  text-decoration: underline;
  background-color:#C0EBF8;
}
A.linkstylemap a:visited {
  color: #040404;
  text-decoration: none;
}
/*網站地圖連結樣式結束 */

 /* 展開收合效果 */
.slide_toggle {
font-size: 1.2em;
color: #FFFF4D;
text-decoration: none;
letter-spacing: 0.5px;
text-align: center;
cursor: pointer;
font-weight: bold;
/* 收合提示字串區 */
line-height: 250%;
background-color: #43BDD9;
margin:20px auto 0 0;
height:40px;
border-bottom: #23AFD5 solid 2px; /* 底線*/
border-top:#FFFFFF solid 1px; /* 底線*/

}
.slide_toggle:hover {
	filter: alpha(opacity=70);
	opacity: 0.7; 
  -webkit-transition: all 0.8s;  /* 轉場 */
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  	}
  
  
.slide_toggle + div {
	font: 1.1em Arial, 微軟正黑體;
	color: #040404;
	text-decoration: none;
	letter-spacing: 0.5px;
	align: center;
	text-height:1em;
	display: none;
	margin: 5px auto 0 10;
	padding:5px 15px 15px 20px;  /* 隱藏註解文字區塊 */
}
 /* 展開收合效果結束 */
 
/*header
**********************************/
#header {
  height: auto;
  padding-top:5px;
  padding-bottom:10px;

  z-index: 999;
  background-color: none;
}
#header .logo {
  background-image: url(image-index/tsmh-logo.png);
  background-repeat: no-repeat;
  width: 360px;
  height: 72px;
  display: block;
  margin: 5px 0 0 8px;
  transition: opacity .3s; 
}
#header .logo:hover {
  filter: alpha(opacity=70);
  opacity:0.7;
}
/* 上方連結列
*********************************/
#toplink {
  position:absolute;
  margin-left:46%;
  margin-top:10px;
  display: none;  /*設為none呼應下方螢幕小於   時隱藏圖層*/
}
 /*螢幕小於   時隱藏圖層↓*/
    @media only screen and (min-width:768px) {
      #toplink { display: block; }
    }
	 /*螢幕小於   時改變位置↓*/
	@media (max-width: 960px) {
		#toplink {
          position:absolute;
          margin-left:30%;
          margin-top:50px;
		  }
		  }
	
#toplink a {
  font-size: 103%;
  color: #040404;
  text-decoration: none;
  letter-spacing: 0.5px;
  padding: 0.9% 9px 0.9% 13px;
  border-left: 1px solid #cacaca;
  display: inline-block;
  
  -webkit-transition: all 0.5s;  /* 轉場 */
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}
#toplink a:first-child {
  border-left: 0;
}
#toplink a:hover , #toplink .select {
  color:#cc0707;
  text-decoration:underline;
}


/* 上方主選單
*********************************/
#header .navigation {
  width:100%;
  position: absolute;
  left: 0px;
  top: 80px;
}
#header .navigation li {
  text-transform: uppercase;
}
#header .navigation li:hover ul,
#header .navigation li:focus ul {
  visibility: visible;
  filter: alpha(opacity=80);
  opacity: 0.8;
}
#header .navigation > ul > li {
  width:AUTO;
  margin:0 1% 0 0.5%;
  padding:0px 5px 0 5px;
  position: relative;
}
#header .navigation > ul > li > a {
  font-size: 120%;
  color: #2E81BE;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 0.5px;
  display: block;
  height: 28px;
  padding: 4px 0 0 0;
  text-align: center;
  
  -webkit-transition: background .25s ease-out;
  -moz-transition: background .25s ease-out;
  -o-transition: background .25s ease-out;
  transition: background .25s ease-out;
}
#header .navigation > ul > li > a:hover , #header .navigation > ul > li > a.select {
  color:#49C0D6;
  border-bottom: 3px solid #49C0D6;
}

#header .navigation > ul > li > ul {
  position: absolute;
  top: 25px;
  /*top: 25px;*/
  left:0px;  /*子選單的位置*/
  width: 150px;
  padding: 5px 5px !important;
  visibility: hidden;
  background-color: #2285CE;
  
  -webkit-transition: opacity .25s ease-out;
  -moz-transition: opacity .25s ease-out;
  -ms-transition: opacity .25s ease-out;
  transition: opacity .25s ease-out;
  z-index:999;
}
/* 上方次選單*********************************/
#header .navigation > ul > li > ul > li {
  text-transform: none;
  text-transform: uppercase;
  /*width: 140px !important;*/
  padding: 5px 5px 3px 5px !important;
  /*padding: 5px 6px 3px 12px !important;*/
  margin-bottom: 2px;
  display: block !important;
  z-index: 999;
  text-align: center;
}
#header .navigation > ul > li > ul > li:hover {
  background-color: #49C0D6;
}
#header .navigation > ul > li > ul > li > a {
  font: 110%/0.5 Arial, 微軟正黑體 !important;
  color: #ffffff;
  letter-spacing: 0.2px;
  text-decoration:none;
  
  -webkit-transition: background .25s ease-out;
  -moz-transition: background .25s ease-out;
  -o-transition: background .25s ease-out;
  transition: background .25s ease-out;
}

/*footer
**********************************/
#footer {
  color: #FFFFFF;
  position: relative;
  width: 100%;
  background-color: #F3F3F3;
  background-image: url(image-index/footer-bg.png);
  background-repeat: yes;
  background-position: center top;
  padding: 18px 0px 0px 0px;
  margin:0px 0px 0px 0px;
  font: 14px/1.1 Arial, 微軟正黑體;
}

#footer #footerBox {
  font: 1.1em Arial, 微軟正黑體;
  color: #FFFFFF;
  text-align: center;
  text-height: 1.3em;
  text-decoration: none;
  display: block;
  margin: 0 auto;
}

#footer A {
  color: #FFFFFF;
  text-decoration: none;
  -webkit-transition: all 0.8s;  /* 轉場 */
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}

#footer A:hover {
  color: #FFFF4D;
  text-decoration: underline;
  margin-top: 2px;
  }
#footer A:visited {
  color: #FFFF4D;
  text-decoration: none;
}
#footer .copyright {
  text-transform: uppercase;
  font:  1em Arial, 微軟正黑體;
  color: #FFFFFF;
  text-align: center;
  text-height: 0.8em;
  padding: 6px 0;
}


/* ==========================================================================
	3.	首頁	
 ========================================================================== */
 /* home按鈕
*********************************/
#homebt  {
  height: 80px;
  padding: 5px 0 0 0;
  background-image:url(image-index/homebt-bg.png);
}

#homebt a:hover {
  filter: alpha(opacity=70);
  opacity: 0.7;
  margin-top: 3px;
  
  -webkit-transition: all 0.8s;  /* 轉場 */
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}


/*首頁中間大按鈕*/
.homebt{	
	margin-left: auto;
	margin-right: auto;
	width: 86.45%;
	padding-left: 2.275%;
	padding-right: 2.275%;
	clear: none;
	float: none;
}
    @media only screen and (min-width:768px) {
      #homebt { display: block; }
    }
.home-button {
	max-width:18%;
    background-color: none; /* 背景色 */
    border: none;
    color: #ffffff;
    padding: 15px 18px  15px  18px ;
    text-align: center;
    text-decoration: none;
    display: inline-block; /*橫排*/
    font-size:1.3em;
	line-height:1em;
	font-family:Microsoft JhengHei,serif,sans-serif,cursive,fantasy,monospace;
	letter-spacing: 0.5px;
    font-weight: bold;	
    margin: 4px 1px;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    cursor: pointer;
    border-radius: 8px;
}
.home-button a:{
	 color: #ffffff;
	text-decoration: none
	}
.home-button a:hover{
	text-decoration: none
	}
.home-button a:visited{
	color: #ffffff;
	text-decoration: none
	}
.home-button a:active{
	color: #ffffff;
	text-decoration: none
	}
.home-button1 {
	 background-image: url(image-index/homebt1.png);
    background-color: none; 
    color: #ffffff; 
    border: 1px solid #fff;
	box-shadow: 0 3px 5px 0 rgba(0,0,0,0.2), 0 3px 8px 0 rgba(0,0,0,0.19);/*陰影*/	
	
}

.home-button1:hover {
	background-image: url(image-index/homebt-hover.png);
    color: #333333;
	text-shadow: 2px 2px 3px #999999;
	border: 1px solid #aaaaaa;
	box-shadow: none;	
	
	-webkit-transition: all 0.3s;  /* 轉場 */
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}

.home-button2 {
	background-image: url(image-index/homebt2.png);
    background-color: none; 
    color: #ffffff; 
	border: 1px solid #fff;
	box-shadow: 0 3px 5px 0 rgba(0,0,0,0.2), 0 3px 8px 0 rgba(0,0,0,0.19);/*陰影*/	
}

.home-button2:hover {
	background-image: url(image-index/homebt-hover.png);
    background-color: none;
    color: #333333;
	text-shadow: 2px 2px 3px #999999;
	border: 1px solid #aaaaaa;
	box-shadow: none;	
	
		-webkit-transition: all 0.3s;  /* 轉場 */
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}

.home-button3 {
	background-image: url(image-index/homebt3.png);
    background-color: none; 
    color: #ffffff; 
	border: 1px solid #fff;
	box-shadow: 0 3px 5px 0 rgba(0,0,0,0.2), 0 3px 8px 0 rgba(0,0,0,0.19);/*陰影*/	
	
}

.home-button3:hover {
	background-image: url(image-index/homebt-hover.png);
    background-color: none;
    color: #333333;
	text-shadow: 2px 2px 3px #999999;
	border: 1px solid #aaaaaa;
	box-shadow: none;	
	
		-webkit-transition: all 0.3s;  /* 轉場 */
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}

.home-button4 {
	background-image: url(image-index/homebt4.png);
    background-color: none;
    color: #ffffff; 
	border: 1px solid #fff;
	box-shadow: 0 3px 5px 0 rgba(0,0,0,0.2), 0 3px 8px 0 rgba(0,0,0,0.19);/*陰影*/	
}

.home-button4:hover {
	background-image: url(image-index/homebt-hover.png);
	background-color: none;
	color: #333333;
	text-shadow: 2px 2px 3px #999999;
	border: 1px solid #aaaaaa;
	box-shadow: none;	
	
		-webkit-transition: all 0.3s;  /* 轉場 */
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
	}

.home-button5 {
	background-image: url(image-index/homebt5.png);
    background-color: none;
    color: #ffffff; 
	border: 1px solid #fff;
	box-shadow: 0 3px 5px 0 rgba(0,0,0,0.2), 0 3px 8px 0 rgba(0,0,0,0.19);/*陰影*/	
}

.home-button5:hover {
	background-image: url(image-index/homebt-hover.png);
    background-color: none;
    color: #333333;
	text-shadow: 2px 2px 3px #999999;
	border: 1px solid #aaaaaa;
	box-shadow: none;
	
	-webkit-transition: all 0.3s;  /* 轉場 */
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}


/* 消息區塊
*********************************/
#homenews {
  height:290px;
  padding: 25px 0 0 0  ;
  background-color: #FFFFFF;
  background-repeat: no-repeat; 
  background-position: center center; 
  border-bottom: #C6C6C6 dotted 2px; /* 底線*/
}
/* 最新消息----------齊左------------*/
.homeleft {
  float: left;
}
/* 媒體報導----------齊右------------*/
.homeright {
  float: right;
}

/* 消息區塊-共用------------------*/
.homebox {
  font-size:1.1em;
  padding: 15px 15px 15px 15px  ;
  position: relative;
  margin-top:20px;
  margin-right:5px;
  margin-bottom:5px;
  background-color: #FFFFFF;
  border-radius: 8px; /* Rounded corners圓角 */
  background-image:url(image-index/homeboxbg.png);
  background-repeat: repeat-x;
  box-shadow: 0 3px 5px 0 rgba(0,0,0,0.1), 0 3px 5px 0 rgba(0,0,0,0.1);/*陰影*/	
}

/*homebox標題*/
.homebox h2 {
  font-size: 22px;
  font-weight: bold;
  color: #333333;
  line-height: 1;
  padding: 0px 20px 8px 0px;/* 上 右 下 左*/
  margin: 0 0 12px 0;
  display: inline-block;
  border-right: #CECECE solid 1px; /* 標題後的直線*/
  text-shadow: 2px 2px 3px #cccccc;/*X 軸、Y 軸、模糊範圍blur、陰影 顏色*/	
}
.homebox .h2more { /* 更多訊息*/
  position: absolute;
  top: 20px;
  left: 90px;
  color: #666666;
  font-size: 12px;
  font-weight: normal;
  text-align: center;
  text-decoration: none;
  min-width: 120px;
  height: 18px;
  line-height: 18px;
  letter-spacing: 0.5px;
  margin: 0 0 0 15px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

A.h2more:hover {
  color: #cc0707;
  text-decoration: underline;
  filter: alpha(opacity=70);
  opacity:0.7;
  margin-top:2px ;
  }
.homebox h3 { /*訊息列表*/
  font-size:  22px;
  font-weight: bold;
  color: #3163BC ;
  line-height: 1;
  padding: 0px 20px 8px 0px;/* 上 右 下 左*/
  margin: 0 0 12px 0;
  display: inline-block;
  text-shadow: 2px 2px 3px #cccccc;/*X 軸、Y 軸、模糊範圍blur、陰影 顏色*/	
}

.homefirst { /* 第一條訊息 */
  border-bottom:#d0d0d0 dotted 2px;
  height:160px;
  display:block;/*元素會以區塊方式呈現*/
}


.homefirst .pic { /* 第一條訊息的圖片位置 */
  width:160px;
  margin:0 10px 0 0;
  overflow: hidden;
  float: left;
}
.homefirst .pic img { /* 第一條訊息的圖片尺寸 */
  width: 140px;
  height: 106px;
  -webkit-transition: all 0.8s; /* 轉場 */
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
.homefirst .pic:hover img {  /* 第一條訊息的圖片效果 */
  width: 150px;
  height: 114px;
}
.homefirst h3 {
	font-size: 1.1em;
	background-color:#DAF4FE;
	padding-top:2px;
	padding-bottom:2px;
	margin: 0 0 3px 0 ; 
	display:block;/*元素會以區塊方式呈現*/
	}
	
.homefirst h3 a {
  color: #333333;
  font-size: 1.1em;
  font-weight: bold;
  line-height: 1.4em;
  text-decoration: none;
  height: 40px;
  overflow: hidden;
  
}
.homefirst p {
  color:#838383;
  line-height:1.5;
  letter-spacing:0.5px;
  height:30px;
  overflow:hidden;
  margin:0 0 8px 0;
  display:block;/*元素會以區塊方式呈現*//*元素會以區塊方式呈現*/
}
.homefirst .date{
  color: #0080C0;
  font-size: 12px;
  float: left;
  margin-top: 8px;
}
.homefirst .newsmore {
  color:#3068a7;
  font-size:12px;
  font-weight:bold;
  float:right;
  -webkit-transition: all 0.5s; /*轉場*/
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  margin-top: 10px;
  margin-right: 10px;
}
.homefirst .newsmore:hover , .homefirst h3 a:hover{
  color: #B20000;
  text-decoration: underline;
  margin-top:12px ;
}
/* 共用區塊，內頁的中間區塊-------------------*/
.homebox2 .pic  { /* homebox2內頁 裡的圖片*/
  width:85%;
  height: auto;
  margin:0px auto  ; 
  padding:10px 10px 10px 10px;
  display:block;
   
}
.homebox2 {
  font-size:1.1em;
  padding: 15px 15px 15px 15px  ;
  position: relative;
  margin-top:0px;
  margin-bottom:10px;
  background-color: #FFFFFF;
  border-radius: 8px; /* Rounded corners圓角 */
  background-image:url(image-index/homeboxbg2.png);
  background-repeat: repeat-x;
  box-shadow: 0 5px 5px 0 rgba(0,0,0,0.15), 0 5px 5px 0 rgba(0,0,0,0.19);/*陰影*/	
}
.homebox2 h1 {
  font-size: 1.6em;
  font-weight: bold;
  color: #333333;
  line-height: 1.3em;
  padding: 10px 15px 5px 0px;/* 上 右 下 左*/
  margin: 0 0 12px 0;
  display: inline-block;
}
.homebox2 h2 {
  font-size: 1.2em;
  font-weight: bold;
  color: #B20000;
  line-height: 1.2em;
  padding: 5px 15px 5px 20px;/* 上 右 下 左*/
  margin: 0 0 5px 0;
  display: inline-block;
/*   border-bottom: #cc0707 solid 2px; 標題後的直線*/
}
.homebox2 h3 {
  font-size: 1.4em;
  font-weight: bold;
  color: #3163BC ;
  line-height: 1.3em;
  padding: 5px 10px 3px 20px;/* 上 右 下 左*/
  margin: 0 0 12px 0;
  display: inline-block;
}
.homebox2 h11 { /*內文*/
  font-size: 1.1em;
  color: #333333 ;
  line-height: 1.25em;
  padding: 5px 10px 5px 10px;/* 上 右 下 左*/
  margin: 5px 5px 5px 5px;
  display: inline-block;
}
.homebox2 h12 { /*內文*/
  font-size: 1.2em;
  font-weight:bold;
  color: #333333 ;
  line-height: 1.2em;
  padding: 5px 10px 5px 10px;/* 上 右 下 左*/
  margin: 0 0 5px 0;
  display: inline-block;
}
.homebox2-left {
  font-size:1.1em;
  padding: 0px 0px 0px 0px  ;
  position: relative;
  margin-top:20px;
  margin-bottom:5px;
  background-color: #FFFFFF;
  border-radius: 8px; /* Rounded corners圓角 */
  box-shadow: 0 5px 5px 0 rgba(0,0,0,0.15), 0 5px 5px 0 rgba(0,0,0,0.19);/*陰影*/	
}



/*首頁訊息列表*/
.homelist {
 margin:8px 0 0 0 !important;
}
.homelist a {
  color:#333333;
  font-size:1.1em;
  line-height: 1.5em;
  text-decoration:none;
  display:block;/*元素會以區塊方式呈現*//*元素會以區塊方式呈現*/
  width:99%;
  height:26px;
  overflow:hidden;
  margin:5px 0 5px 0;
  padding: 0 5px;
  letter-spacing:1px;
}
.homelist a:hover {
  color:#3068a7;
  font-size:1.1em;
  line-height: 1.5em;
  text-decoration:underline;
  background-color:#F0F0F0;
}
.homelist .date {
  color:#0080C0;
  font-weight:bold;
  margin: 0 12px 0 0;
  letter-spacing:0px;
  float:left;
}


/*內頁訊息列表*/
.homelist2 {
 margin:8px 25px 0 25px !important;
}
.homelist2 a {
  color:#333333;
  font-size:1.1em;
  line-height: 1.5em;
  text-decoration:none;
  display:block;/*元素會以區塊方式呈現*//*元素會以區塊方式呈現*/
  width:99%;
  height:26px;
  overflow:hidden;
  margin:5px 0 5px 0;
  padding: 0 5px;
  letter-spacing:1px;
}
.homelist2 a:hover {
  color:#3068a7;
  font-size:1.1em;
  line-height: 1.5em;
  text-decoration:underline;
  background-color:#F0F0F0;
}
.homelist2 .date {
  color:#0080C0;
  font-weight:bold;
  margin: 0 12px 0 0;
  letter-spacing:0px;
  float:left;
}
/*內頁次選單列表*/
.homeboxmenu{
 margin:0px 0 0 0 !important;
}
.homeboxmenu a {
  color:#333333;
  font-size:1.1em;
  line-height: 1.8em;
  text-decoration:none;
  display:block;/*元素會以區塊方式呈現*//*元素會以區塊方式呈現*/
  width:100%;
  height:30px;
  overflow:hidden;
  margin:0px 0px 0px 0px;
  padding:3px 5px 5px 10px;
  letter-spacing:1px;
}
.homeboxmenu a:hover {
  color:#3068a7;
  font-size:1.1em;
  line-height: 1.8em;
  text-decoration:none;
  background-color:#F0F0F0;
}

/* 影音區塊+友善連結
*********************************/

/* 齊左 齊右----------------------*/
.homeleft2 {
  float: left;
}

.homeright2 {
  float: right;
}


.homefirst2 { /* 第一條訊息 */
  border-bottom:#d0d0d0 dotted 2px;
  width:auto;
  height:130px;
  display:block;/*元素會以區塊方式呈現*/
}
.homefirst2 h3 {
  margin: 0 0 5px 0 ;
  display:block;/*元素會以區塊方式呈現*//*元素會以區塊方式呈現*/
}
.homefirst2 h3 a {
  color: #333333;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
  text-decoration: none;
  height: 40px;
  overflow: hidden;  
}
.homefirst2-link {
  color: #333333;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
}

.homefirst2-link2 {
	font-family: "Microsoft JhengHei","Verdana", "Arial";
	FONT-SIZE: 15px;
	line-height : 20px;
	color : #646464;
	font-style: normal;
	}
	
.homefirst2-img { /* 友善連結小ban 145x78 */
  width: 145px;
  border:0px;
}
.homefirst2-img:hover {
  width: 145px;
  filter: alpha(opacity=70);
  opacity:0.7;
  -webkit-transition: all 0.5s; /* 轉場 */
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;

}

.homefirst2 .newsmore2 {
  color:#3068a7;
  font-size:12px;
  font-weight:bold;
  float:right;
  -webkit-transition: all 0.5s; /*轉場*/
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  margin-top: 10px;
  margin-right: 10px;
}
.homefirst2 .newsmore:hover , .homefirst h3 a:hover{
  color: #B20000;
  text-decoration: underline;
  margin-top:12px ;
}



/* ==========================================================================
	2.	內頁
 ========================================================================== */

/*main700
**********************************/
.main700 {
  width: 710px;
  float: right;
  padding: 20px 20px 30px 10px;
  margin: 10px 0 10px 0;
}
.mainleft {
  width: 210px;
  float: left;
  padding: 20px 0 30px 10px;
  margin: 10px 0 10px 0;
}
.clear{ clear:both} /*清除浮動*/

/*sidmemubar左選單
**********************************/
#sidmemubar {
  width: 200px;
  float: left;
  margin: 15px 0 20px 10px;
}
#sidmemubar li {
  border-bottom: 1px solid #d9d9d9;  
}
#sidmemubar li a {
  color: #333333;
  font-size: 15px;
  text-decoration: none;
  border-top: 1px solid #fff;
  display: block; /*元素會以區塊方式呈現*/
  padding: 15px 0 10px 25px;
}
#sidmemubar li a:hover {
  font-weight: bold;
  background: url(image-index/inco-sidbar.png) no-repeat 10px 17px #EEF5FD !important;/*滑過的背景色*/
}
#sidmemubar li .active {
  font-weight: bold;
  background: url(image-index/inco-sidbar.png) no-repeat 10px 17px #EEF5FD;
}
/* 收費項目 - 表格*/
.tablefee{
	border:#cccccc solid 1px;
	}
.tablefee,th,td{
   padding:5px 5px 5px 10px; /* 上右下左*/
   font-size:1em;
   color: #222222;
	}

/* ==========================================================================
	醫院訊息	
 ========================================================================== */
/* 醫院訊息 - 表格*/
.tablenews {
  width:99%;
  border-bottom: #5ba7e6 solid 1px;  
}
.tablenews tr:hover {
  background-color: #eef7ff;
  /*background-color: #F8F9FC;*/
}
.tablenews th {
	font-size:16px;
	font-weight:200;
	color: #FFFFFF;
	text-align:center;
	letter-spacing: 1px;
	padding: 10px 0;
	border-top:#dadada solid 1px;
	border-bottom:#dadada solid 1px;
	background: #256DDA; 
}
.tablenews th:before { /*日期前的直線*/
  content: "|";
  padding-right:25px;
  margin-left:-50px;
}
.tablenews th:first-child:before {
  display: none;
}
.tablenews td {
  padding: 6px;
  /*padding: 5px 10px;*/
  border-bottom: #666 dotted 1px;
}
.tablenews td a {
  color:#404040;
  text-decoration:none;
  letter-spacing:1px;
  padding: 5px;
  display:block;/*元素會以區塊方式呈現*/
}
.tablenews td a:hover {
  color: #d20202;
  /*color: #1F7CC9;*/
  /*font-weight: bold;*/
  text-decoration: underline;
}
#guideHealth .tablenews td:first-child + td + td {
  padding-right: 20px;
}
/*.tablenews th:first-child {
  text-align:center;
}
.tablenews th:first-child + th {
  width: 18%;
  padding-right: 15px;
  *+padding-right: 0px;
}
.tablenews th:first-child + th + th {
  width:18%;
  padding-right: 15px;
  *+padding-right: 0px;
}
.tablenews td:first-child + td {
  font-family: Verdana;
  padding-left: 32px;
}
.tablenews td:first-child + td + td {
  font-family: Verdana;
  padding-left: 32px;
  *+padding-left: 0px;
  *+text-align: center;
}*/

.tablenews2 {
  width:100%;
  border-bottom: #5ba7e6 solid 1px;
}
.tablenews2 tr:hover {
  background-color: #eef7ff;
  /*background-color: #F8F9FC;*/
}
.tablenews2 th {
  color: #FFF;
  font-weight: normal;
  text-align:center;
  letter-spacing: 1px;
  padding: 14px 0;
  border-top:#dadada solid 1px;
  border-right:#FFF solid 1px;
  border-bottom:#dadada solid 1px;
  *+border-left:#9ac9ef solid 1px;
  background: rgb(61,154,233); /* Old browsers */
  background: -moz-linear-gradient(top,  rgba(61,154,233,1) 25%, rgba(58,151,231,1) 68%, rgba(43,137,218,1) 92%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(25%,rgba(61,154,233,1)), color-stop(68%,rgba(58,151,231,1)), color-stop(92%,rgba(43,137,218,1))); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top,  rgba(61,154,233,1) 25%,rgba(58,151,231,1) 68%,rgba(43,137,218,1) 92%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top,  rgba(61,154,233,1) 25%,rgba(58,151,231,1) 68%,rgba(43,137,218,1) 92%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top,  rgba(61,154,233,1) 25%,rgba(58,151,231,1) 68%,rgba(43,137,218,1) 92%); /* IE10+ */
  background: linear-gradient(to bottom,  rgba(61,154,233,1) 25%,rgba(58,151,231,1) 68%,rgba(43,137,218,1) 92%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3d9ae9', endColorstr='#2b89da',GradientType=0 ); /* IE6-9 */
}
.tablenews2 th:first-child:before {
  display: none;
}
.tablenews2 td {
  padding: 5px;
  border-right:#E1E1E1 solid 1px;
  border-bottom: #666 dotted 1px;
}
.tablenews2 td a {
  color:#404040;
  text-decoration:none;
  letter-spacing:1px;
  padding: 10px;
  display:block;/*元素會以區塊方式呈現*/
}
.tablenews2 td a:hover {
  color: #d20202;
  text-decoration: underline;
}

/* RWD youtube影片vedio設定開始 */
.video-container {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px;
height: 0;
overflow: hidden;
}

.video-container iframe, .video-container object, .video-container embed {
position: absolute;
top: 0;left: 0;
width: 100%;
height: 100%;}
/* RWD youtube影片設定結束 */
