@charset "utf-8";
@font-face {
    font-family: MyCustomFont;
    src: local("Microsoft JhengHei");
}
/* 英文數字專用 */
@font-face {
    font-family: MyCustomFont; /* 同樣的 font-family */
    unicode-range: U+00-7F, U+00C0-00FF, U+2150-2169; /* ASCII,羅馬數字*/
    src: local(Verdana), local(Geneva), local(Arial), local(Helvetica);
  }
body {
    font-family: MyCustomFont, sans-serif;
    background-color: #fff;
    font-size: 18px;
}
.ClassTitle {
	font-size: 1.5em;
	font-weight: bold;
	color: blue;
}
img {
    border: 0;
}
a{
	font-size: 1em;
	line-height: 1.8em;
    font-weight: bold;
	color: #003399;
	text-decoration: none;
}
a:link
{
    COLOR: #6b9ece;
    TEXT-DECORATION: none
}
a:visited
{
    COLOR: red;
    TEXT-DECORATION: none
}
a:hover
{
    COLOR: #990000;
    TEXT-DECORATION: underline
}
a > img {
    margin-right: 0.5em;
}
.item {
    position: relative;
}
.detailItem {
    position: relative;
    display: none;
    margin-left: 1em;
}
.detailItem a::before {
    content: "→";
    position: relative;
    font-weight: bold;
    margin-right: 0.5em;
    color: #333;
}