@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-U+00FF, U+2150-U+2169;/* ASCII,羅馬數字*/
    src: local(Arial), local("Lucida Grande"), local(Tahoma), local(Verdana);
}

/* 日文假名專用 */
@font-face {
    font-family: MyCustomFont;/* 同樣的 font-family */
    unicode-range: U+3040-30FF;/* Hiragana, Katakana */
    src: local("MS PGothic"),/* OS X */local(Meiryo);/* Windows Vista+ */
}

body,html {
    height: 100%;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: MyCustomFont,"Microsoft JhengHei", sans-serif;
    -webkit-text-size-adjust: none;
	word-break: break-all;
	text-align: justify;
	text-justify:inter-ideograph;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

ul, ol {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

img{
    border: 0px;
}

iframe{
    border-top-width: 0px;
    border-right-width: 0px;
    border-bottom-width: 0px;
    border-left-width: 0px;
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;
    margin: 0px;
    padding: 0px;
}