/* 這個檔案沒有版權, 可以隨意修改. */
/* 很好的參考點: http://www.westciv.com/style_master/academy/css_tutorial/ */
/* 最簡單語法:  ELEMENT_SELECTOR.CLASS_SELECTOR { PROPERTY: VALUE; } */

body {
#    font-family: "sanserif";
    line-height: 130%;
}

a {
    text-decoration: underline;
}

em, .em {
#    text-decoration: underline;
    font-weight: bold;
    font-style: normal;
}

strong, .strong {
    font-weight: bold;
}

pre, code, .code { font-family: courier, monospace; }
code, .code { font-weight: bold; }

code em { text-decoration: none; }

p.noindent { text-indent: 0; }

img.left { float: left; }
img.right { float: right; }
img.alone { clear: both; }

.note {
    font-size: 70%;
    font-weight: bold;
}

