body{
	font-size:12pt;
background-color:#CCCCCC ; 	MARGIN: 10px 10px 10px 10px;
} 
/*  body{font-size:10pt} 宣告主要字型大小為 10pt 
 MARGIN: 0px 0px 0px 0px 指定上右下左邊界之距離   */


/* 說明開始
A:link {color: blue} 一般連結：｛顏色：藍色｝
A:visited {color: gray} 參觀過的連結：｛顏色：灰色｝
A:active {color: green} 正在執行的連結：｛顏色：綠色｝
A:hover {color: red} 當滑鼠移到連結上：｛顏色：紅色｝
text-decoration: none  去除連結底線
text-decoration: underline 連結底線
font-size:16pt         字型大小
font-weight:bold       字型加粗
font-style: normal     字體(normal or 細明體 or 標楷體 等)
color:white            字型顏色
cursor: hand           游標形狀 手形
cursor: move           游標形狀 十字形
cursor: ne-resize      游標形狀 箭頭形

根據W3C標準(http://www.w3.org/TR/REC-CSS2/selector.html#dynamic-pseudo-classes)，
:hover、:active這些選擇器（selector）是可以用在超連結以外的HTML標籤上的！
例如，要使td的底色在游標滑過時改變，就可以使用td:hover{background:色彩;}，
相關範例可以參考W3C的Tests(http://www.w3.org/Style/CSS/Test/CSS3/Selectors/current/html/tests/css3-modsel-18.html)
只可惜，直到目前的IE第六版，都只能支援將:hover、:active用在超連結上。而Mozilla系列瀏覽器則有支援。

/*
font-weight : normal | bold | bolder | lighter | number 
normal : 正常的字體。相當於number為400。聲明此值將取消之前任何設置 
bold : 粗體。相當於number為700。也相當於b對象的作用 
bolder : IE5+　特粗體 
lighter : IE5+　細體 
number : IE5+　100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900

●正斜體：
font-style : normal | italic | oblique 
normal : 正常的字體 
italic : 斜體。對於沒有斜體變量的特殊字體，將應用oblique 
oblique : 傾斜的字體 

●字元間隔：
letter-spacing : normal | length 
normal : 　默認間隔
length : 　由浮點數字和單位標識符組成的長度值，允許為負值。

●行高：
line-height : normal | length 
normal : 　默認行高
length : 　百分比數字 | 由浮點數字和單位標識符組成的長度值，允許為負值。其百分比取值是基於字體的高度尺寸。

●文字： 
font: bold italic 12px/1.5 "新細明體","華康娃娃體",arial,sans-serif; 
font:寬度 樣式 大小/行高 字體 
說明：大小與行高之間一定要加"/"斜線，當文字有設定行高時，必須要設定字體，FireFox才會認得，否則在FireFox中將沒有效果
●文字簡單寫法： 
font: 12px/2 "新細明體",Arial; 
font:字型大小 / 行高 字型; 
(此寫法若是沒有寫字型進去的話，FireFox會沒有作用)

●一次設定所有外框屬性(僅適用於四邊的屬性都一樣時)： 
border: 1px solid #FFF; 
border: 外框寬度 外框樣式 外框色彩 
每個屬性之間需空一個空格

●同時設定外框粗細的四種方式： 
border-width: 值(上下左右都一樣) ; 
border-width: 值(上) 值(右) 值(下) 值(左); 
border-width: 值(上跟下) 值 (左跟右); 
border-width: 值(上) 值(右與左) 值(下); 

●同時設定外框樣式的四種方式： 
border-syle: 值(上下左右都一樣); 
border-style: 值(上) 值(右) 值(下) 值(左); 
border-style: 值(上跟下) 值 (左跟右); 
border-style: 值(上) 值(右與左) 值(下); 

●同時設定外框色彩的四種方式： 
border-color: 值(上下左右都一樣); 
border-color: 值(上) 值(右) 值(下) 值(左); 
border-color: 值(上跟下) 值 (左跟右); 
border-color: 值(上) 值(右與左) 值(下); 

 間距
border-spacing : length || length 
length : 　由浮點數字和單位識別符組成的長度值PT。不可為負值。

內距
padding : length 
length : 　由浮點數字和單位識別符組成的長度值 | 或者百分數。百分數是基於父對象的寬度。請參閱長度單位 

margin : auto | length 
auto : 　值被設定為相對邊的值
length : 　由浮點數字和單位識別符組成的長度值 | 百分數。百分數是基於父對象的高度。對於內聯對象來說，左右外延邊距可以是負數值。

●背景： 
background: #FFF(色彩) url(image/test.gif)(圖片URL) no-repeat(重複方向) 0px(左/右位置) 0px(上/下位置);

●色彩設定： 
#FFFFFF;  可寫成  #FFF; 
#666666;  可寫成  #666; 
#0066FF;  可寫成  #06F; 
#FF00FF;   可寫成  #F0F;

說明：色碼值兩個為一組，代表顏色的數值，也就是說RGB三色，R(兩碼)G(兩碼)B(兩碼)，合起來就組成了6碼，如果代表每個色碼的兩個直是一樣的話，就可以只寫一碼。但是要注意!! #FF0003不可寫成#F003

http://crow.myweb.hinet.net/css/

border-style : none | hidden | dotted | dashed | solid | double | groove | ridge | inset | outset 
none : 　無邊框。與任何指定的border-width值無關 
hidden : 　隱藏邊框。IE不支援 
dotted : 　在MAC平臺上IE4+與WINDOWS和UNIX平臺上IE5.5+為點線。否則為實線 
dashed : 　在MAC平臺上IE4+與WINDOWS和UNIX平臺上IE5.5+為虛線。否則為實線 
solid : 　實線邊框 
double : 　雙線邊框。兩條單線與其間隔的和等於指定的border-width值 
groove : 　根據border-color的值畫3D凹槽 
ridge : 　根據border-color的值畫菱形邊框 
inset : 　根據border-color的值畫3D凹邊 
outset : 　根據border-color的值畫3D凸邊 

W3C- 十六色色盤
#000000 Black
#ffffff White
#ff0000 Red
#ffff00 Yellow
#00ff00 Lime
#00ffff Aqua
#0000ff Blue
#ff00ff Fuchsia
#808080 Gray
#c0c0c0 Silver
#800000 Maroon
#808000 Olive
#008000 Green
#008080 Teal
#000080 Navy
#800080 Purple

cellpadding=內距 cellspacing=間距

*/

說明結束 */

/*H1~H6標題設定 */
H1 {font-size: 14pt/20%; font-weight:normal ; font-family: Arial ;letter-spacing : 0pt}
H2 {font-size: 12pt/20%; font-weight:normal ; font-family: Arial ;letter-spacing : 1pt}
H3 {font-size: 10pt/20%; font-weight:normal ; font-family: Arial ;letter-spacing : 1pt}
H4 {font-size: 9pt/30% ; font-weight:normal ; font-family: Arial ;letter-spacing : 2pt}
H5 {font-size: 8pt/40% ; font-weight:normal ; font-family: Arial ;letter-spacing : 2pt}
H6 {font-size: 7pt/50% ; font-weight:normal ; font-family: Arial ;letter-spacing : 2pt}

/* 表格設定 */
.box-1px-solid-black  {border-width: 1px ; border-style :solid ; border-color:black; }
.box-1px-solid-White  {border-width: 1px ; border-style :solid ; border-color:White; }
.box-1px-solid-Red    {border-width: 1px ; border-style :solid ; border-color:Red;   } 
.box-1px-solid-Yellow {border-width: 1px ; border-style :solid ; border-color:Yellow;}
.box-1px-solid-Blue   {border-width: 1px ; border-style :solid ; border-color:Blue;  }
.box-1px-solid-Silver {border-width: 1px ; border-style :solid ; border-color:Silver;}
.box-1px-solid-Green  {border-width: 1px ; border-style :solid ; border-color:Green; }
.box-1px-solid-Maroon {border-width: 1px ; border-style :solid ; border-color:Maroon;}
.box-1px-solid-Navy   {border-width: 1px ; border-style :solid ; border-color:Navy;  }
.box-1px-solid-Navy   {border-width: 1px ; border-style :solid ; border-color:Navy;  }

.box-2px-double-black  {border-width: 3px ; border-style :double ; border-color:black; }
.box-2px-double-White  {border-width: 3px ; border-style :double ; border-color:White; }
.box-2px-double-Red    {border-width: 3px ; border-style :double ; border-color:Red;   }
.box-2px-double-Yellow {border-width: 3px ; border-style :double ; border-color:Yellow;}
.box-2px-double-Blue   {border-width: 3px ; border-style :double ; border-color:Blue;  }
.box-2px-double-Silver {border-width: 3px ; border-style :double ; border-color:Silver;}
.box-2px-double-Green  {border-width: 3px ; border-style :double ; border-color:Green; }
.box-2px-double-Maroon {border-width: 3px ; border-style :double ; border-color:Maroon;}
.box-2px-double-Navy   {border-width: 3px ; border-style :double ; border-color:Navy;  }
.box-2px-double-Navy   {border-width: 3px ; border-style :double ; border-color:Navy;  }

.box-3px-double-black  {border-width: 4px ; border-style :double ; border-color:black; }
.box-3px-double-White  {border-width: 4px ; border-style :double ; border-color:White; }
.box-3px-double-Red    {border-width: 4px ; border-style :double ; border-color:Red;   }
.box-3px-double-Yellow {border-width: 4px ; border-style :double ; border-color:Yellow;}
.box-3px-double-Blue   {border-width: 4px ; border-style :double ; border-color:Blue;  }
.box-3px-double-Silver {border-width: 4px ; border-style :double ; border-color:Silver;}
.box-3px-double-Green  {border-width: 4px ; border-style :double ; border-color:Green; }
.box-3px-double-Maroon {border-width: 4px ; border-style :double ; border-color:Maroon;}
.box-3px-double-Navy   {border-width: 4px ; border-style :double ; border-color:Navy;  }
.box-3px-double-Navy   {border-width: 4px ; border-style :double ; border-color:Navy;  }

/*表格內文字內容*/

/* 以下為一般字型之CSS */

.7sc-blue {  font-size: 7pt; font-style: normal; font-family: arial; color: blue}
.7sc-black {  font-size: 7pt; font-style: normal; font-family: arial; color: black}
.7sc-white {  font-size: 7pt; font-style: normal; font-family: arial; color: white}
.7sc-green {  font-size: 7pt; font-style: normal; font-family: arial; color: green}
.7sc-999999 {  font-size: 7pt; font-style: normal; font-family: arial; color: #999999}
.7sc-666666 {  font-size: 7pt; font-style: normal; font-family: arial; color: #666666}
.7sc-336699 {  font-size: 7pt; font-style: normal; font-family: arial; color: #336699}
.7sc-dddddd {  font-size: 7pt; font-style: normal; font-family: arial; color: #dddddd}
.7sc-red { font-size: 7pt; font-style: normal; font-family: arial; color: red}
.7sc-important {  font-size: 7pt; font-style: normal; font-family: arial;color:red ; font-weight:bold}

.8sc-red {  font-size: 8pt; font-style: normal; font-family: arial; color: red}
.8sc-blue {  font-size: 8pt; font-style: normal; font-family: arial; color: blue}
.8sc-black {  font-size: 8pt; font-style: normal; font-family: arial; color: black}
.8sc-white {  font-size: 8pt; font-style: normal; font-family: arial; color: white}
.8sc-green {  font-size: 8pt; font-style: normal; font-family: arial; color: green}
.8sc-999999 {  font-size: 8pt; font-style: normal; font-family: arial; color: #999999}
.8sc-666666 {  font-size: 8pt; font-style: normal; font-family: arial; color: #666666}
.8sc-336699 {  font-size: 8pt; font-style: normal; font-family: arial; color: #336699}
.8sc-dddddd {  font-size: 8pt; font-style: normal; font-family: arial; color: #dddddd}
.8sc-important {  font-size: 8pt; font-style: normal; font-family: arial; color:red ; font-weight:bold}

.9sc-red {  font-size: 9pt; font-style: normal; color: red}
.9sc-blue {  font-size: 9pt; font-style: normal; color: blue}
.9sc-black {  font-size: 9pt; font-style: normal; color: black}
.9sc-white {  font-size: 9pt; font-style: normal; color: white}
.9sc-green {  font-size: 9pt; font-style: normal; color: green}
.9sc-336699 {  font-size: 9pt; font-style: normal; color: #333333}
.9sc-336699 {  font-size: 9pt; font-style: normal; color: #336699}
.9sc-666666 {  font-size: 9pt; font-style: normal; color: #666666}
.9sc-336699 {  font-size: 9pt; font-style: normal; color: #990000}
.9sc-999999 {  font-size: 9pt; font-style: normal; color: #999999}
.9sc-dddddd {  font-size: 9pt; font-style: normal; color: #dddddd}
.9sc-important {  font-size: 9pt; font-style: normal; color:red ; font-weight:bold}

.10sc-red {  font-size: 10pt; font-style: normal; color: red;line-height : 24px;}
.10sc-blue {  font-size: 10pt; font-style: normal; color: blue;line-height : 24px;}
.10sc-black {  font-size: 10pt; font-style: normal; color: black;line-height : 24px;}
.10sc-white {  font-size: 10pt; font-style: normal; color: white;line-height : 24px;}
.10sc-green {  font-size: 10pt; font-style: normal; color: green;line-height : 24px;}
.10sc-333333 {  font-size: 10pt; font-style: normal; color: #333333;line-height : 24px;}
.10sc-336699 {  font-size: 10pt; font-style: normal; color: #336699;line-height : 24px;}
.10sc-666666 {  font-size: 10pt; font-style: normal; color: #666666;line-height : 24px;}
.10sc-990000 {  font-size: 10pt; font-style: normal; color: #990000;line-height : 24px;}
.10sc-999999 {  font-size: 10pt; font-style: normal; color: #999999;line-height : 24px;}
.10sc-dddddd {  font-size: 10pt; font-style: normal; color: #dddddd;line-height : 24px;}
.10sc-important {  font-size: 10pt; font-style: normal; color:red ; font-weight:bold}

.12sc-red {  font-size: 12pt; font-style: normal; color: red}
.12sc-blue {  font-size: 12pt; font-style: normal; color: blue}
.12sc-black {  font-size: 12pt; font-style: normal; color: black}
.12sc-white {  font-size: 12pt; font-style: normal; color: white}
.12sc-green {  font-size: 12pt; font-style: normal; color: green}
.12sc-336699 {  font-size: 12pt; font-style: normal; color: #333333}
.12sc-336699 {  font-size: 12pt; font-style: normal; color: #336699}
.12sc-666666 {  font-size: 12pt; font-style: normal; color: #666666}
.12sc-336699 {  font-size: 12pt; font-style: normal; color: #990000}
.12sc-999999 {  font-size: 12pt; font-style: normal; color: #999999}
.12sc-dddddd {  font-size: 12pt; font-style: normal; color: #dddddd}
.12sc-important {  font-size: 12pt; font-style: normal; color:red ; font-weight:bold}

.16sc-red {  font-size: 16pt; font-style: normal; color: red}
.16sc-blue {  font-size: 16pt; font-style: normal; color: blue}
.16sc-black {  font-size: 16pt; font-style: normal; color: black}
.16sc-white {  font-size: 16pt; font-style: normal; color: white}
.16sc-green {  font-size: 16pt; font-style: normal; color: green}
.16sc-666666 {  font-size: 16pt; font-style: normal; color: #333333}
.16sc-336699 {  font-size: 16pt; font-style: normal; color: #336699}
.16sc-666666 {  font-size: 16pt; font-style: normal; color: #666666}
.16sc-666666 {  font-size: 16pt; font-style: normal; color: #990000}
.16sc-999999 {  font-size: 16pt; font-style: normal; color: #999999}
.16sc-dddddd {  font-size: 16pt; font-style: normal; color: #dddddd}
.16sc-important {  font-size: 16pt; font-style: normal; color:red ; font-weight:bold}

/* 以下為超連結之CSS 連結時無底線*/
A.9sc-666666-Red:link {color:#666666; font-size:9pt; text-decoration: none; cursor: hand} 
A.9sc-666666-Red:visited {color:#666666; font-size:9pt; text-decoration: none; cursor: hand} 
A.9sc-666666-Red:active {color:red; font-size:9pt; text-decoration: none; cursor: hand}
A.9sc-666666-Red:hover {color:red; font-size:9pt; text-decoration: none; cursor: hand} 
A.10sc-666666-Red:link {color:#666666; font-size:10pt; text-decoration: none; cursor: hand} 
A.10sc-666666-Red:visited {color:#666666; font-size:10pt; text-decoration: none; cursor: hand} 
A.10sc-666666-Red:active {color:red; font-size:10pt; text-decoration: none; cursor: hand}
A.10sc-666666-Red:hover {color:red; font-size:10pt; text-decoration: none; cursor: hand} 
A.12sc-666666-Red:link {color:#666666; font-size:12pt; text-decoration: none; cursor: hand} 
A.12sc-666666-Red:visited {color:#666666; font-size:12pt; text-decoration: none; cursor: hand} 
A.12sc-666666-Red:active {color:red; font-size:12pt; text-decoration: none; cursor: hand}
A.12sc-666666-Red:hover {color:red; font-size:12pt; text-decoration: none; cursor: hand} 
A.16sc-666666-Red:link {color:#666666; font-size:16pt; text-decoration: none; cursor: hand} 
A.16sc-666666-Red:visited {color:#666666; font-size:16pt; text-decoration: none; cursor: hand} 
A.16sc-666666-Red:active {color:red; font-size:16pt; text-decoration: none; cursor: hand}
A.16sc-666666-Red:hover {color:red; font-size:16pt; text-decoration: none; cursor: hand} 

A.9sc-999999-Red:link {color:#999999; font-size:9pt; text-decoration: none; cursor: hand} 
A.9sc-999999-Red:visited {color:#999999; font-size:9pt; text-decoration: none; cursor: hand} 
A.9sc-999999-Red:active {color:red; font-size:9pt; text-decoration: none; cursor: hand}
A.9sc-999999-Red:hover {color:red; font-size:9pt; text-decoration: none; cursor: hand} 
A.10sc-999999-Red:link {color:#999999; font-size:10pt; text-decoration: none; cursor: hand} 
A.10sc-999999-Red:visited {color:#999999; font-size:10pt; text-decoration: none; cursor: hand} 
A.10sc-999999-Red:active {color:red; font-size:10pt; text-decoration: none; cursor: hand}
A.10sc-999999-Red:hover {color:red; font-size:10pt; text-decoration: none; cursor: hand} 
A.12sc-999999-Red:link {color:#999999; font-size:12pt; text-decoration: none; cursor: hand} 
A.12sc-999999-Red:visited {color:#999999; font-size:12pt; text-decoration: none; cursor: hand} 
A.12sc-999999-Red:active {color:red; font-size:12pt; text-decoration: none; cursor: hand}
A.12sc-999999-Red:hover {color:red; font-size:12pt; text-decoration: none; cursor: hand} 
A.16sc-999999-Red:link {color:#999999; font-size:16pt; text-decoration: none; cursor: hand} 
A.16sc-999999-Red:visited {color:#999999; font-size:16pt; text-decoration: none; cursor: hand} 
A.16sc-999999-Red:active {color:red; font-size:16pt; text-decoration: none; cursor: hand}
A.16sc-999999-Red:hover {color:red; font-size:16pt; text-decoration: none; cursor: hand} 

A.9sc-white-Red:link {color:white; font-size:9pt; text-decoration: none; cursor: hand} 
A.9sc-white-Red:visited {color:white; font-size:9pt; text-decoration: none; cursor: hand} 
A.9sc-white-Red:active {color:red; font-size:9pt; text-decoration: none; cursor: hand}
A.9sc-white-Red:hover {color:red; font-size:9pt; text-decoration: none; cursor: hand} 
A.10sc-white-Red:link {color:white; font-size:10pt; text-decoration: none; cursor: hand} 
A.10sc-white-Red:visited {color:white; font-size:10pt; text-decoration: none; cursor: hand} 
A.10sc-white-Red:active {color:red; font-size:10pt; text-decoration: none; cursor: hand}
A.10sc-white-Red:hover {color:red; font-size:10pt; text-decoration: none; cursor: hand} 
A.12sc-white-Red:link {color:white; font-size:12pt; text-decoration: none; cursor: hand} 
A.12sc-white-Red:visited {color:white; font-size:12pt; text-decoration: none; cursor: hand} 
A.12sc-white-Red:active {color:red; font-size:12pt; text-decoration: none; cursor: hand}
A.12sc-white-Red:hover {color:red; font-size:12pt; text-decoration: none; cursor: hand} 
A.16sc-white-Red:link {color:white; font-size:16pt; text-decoration: none; cursor: hand} 
A.16sc-white-Red:visited {color:white; font-size:16pt; text-decoration: none; cursor: hand} 
A.16sc-white-Red:active {color:red; font-size:16pt; text-decoration: none; cursor: hand}
A.16sc-white-Red:hover {color:red; font-size:16pt; text-decoration: none; cursor: hand} 

A.9sc-black-Red:link {color:black; font-size:9pt; text-decoration: none; cursor: hand} 
A.9sc-black-Red:visited {color:black; font-size:9pt; text-decoration: none; cursor: hand} 
A.9sc-black-Red:active {color:red; font-size:9pt; text-decoration: none; cursor: hand}
A.9sc-black-Red:hover {color:red; font-size:9pt; text-decoration: none; cursor: hand} 
A.10sc-black-Red:link {color:black; font-size:10pt; text-decoration: none; cursor: hand} 
A.10sc-black-Red:visited {color:black; font-size:10pt; text-decoration: none; cursor: hand} 
A.10sc-black-Red:active {color:red; font-size:10pt; text-decoration: none; cursor: hand}
A.10sc-black-Red:hover {color:red; font-size:10pt; text-decoration: none; cursor: hand} 
A.12sc-black-Red:link {color:black; font-size:12pt; text-decoration: none; cursor: hand} 
A.12sc-black-Red:visited {color:black; font-size:12pt; text-decoration: none; cursor: hand} 
A.12sc-black-Red:active {color:red; font-size:12pt; text-decoration: none; cursor: hand}
A.12sc-black-Red:hover {color:red; font-size:12pt; text-decoration: none; cursor: hand} 
A.16sc-black-Red:link {color:black; font-size:16pt; text-decoration: none; cursor: hand} 
A.16sc-black-Red:visited {color:black; font-size:16pt; text-decoration: none; cursor: hand} 
A.16sc-black-Red:active {color:red; font-size:16pt; text-decoration: none; cursor: hand}
A.16sc-black-Red:hover {color:red; font-size:16pt; text-decoration: none; cursor: hand} 

A.9sc-blue-Red:link {color:blue; font-size:9pt; text-decoration: none; cursor: hand} 
A.9sc-blue-Red:visited {color:blue; font-size:9pt; text-decoration: none; cursor: hand} 
A.9sc-blue-Red:active {color:red; font-size:9pt; text-decoration: none; cursor: hand}
A.9sc-blue-Red:hover {color:red; font-size:9pt; text-decoration: none; cursor: hand} 
A.10sc-blue-Red:link {color:blue; font-size:10pt; text-decoration: none; cursor: hand} 
A.10sc-blue-Red:visited {color:blue; font-size:10pt; text-decoration: none; cursor: hand} 
A.10sc-blue-Red:active {color:red; font-size:10pt; text-decoration: none; cursor: hand}
A.10sc-blue-Red:hover {color:red; font-size:10pt; text-decoration: none; cursor: hand} 
A.12sc-blue-Red:link {color:blue; font-size:12pt; text-decoration: none; cursor: hand} 
A.12sc-blue-Red:visited {color:blue; font-size:12pt; text-decoration: none; cursor: hand} 
A.12sc-blue-Red:active {color:red; font-size:12pt; text-decoration: none; cursor: hand}
A.12sc-blue-Red:hover {color:red; font-size:12pt; text-decoration: none; cursor: hand} 
A.16sc-blue-Red:link {color:blue; font-size:16pt; text-decoration: none; cursor: hand} 
A.16sc-blue-Red:visited {color:blue; font-size:16pt; text-decoration: none; cursor: hand} 
A.16sc-blue-Red:active {color:red; font-size:16pt; text-decoration: none; cursor: hand}
A.16sc-blue-Red:hover {color:red; font-size:16pt; text-decoration: none; cursor: hand} 

/* 以下為超連結之CSS 連結時有底線*/
A.9scl-666666-666666:link {color:#666666; font-size:9pt; text-decoration: none; cursor: hand} 
A.9scl-666666-666666:visited {color:#666666; font-size:9pt; text-decoration: none; cursor: hand} 
A.9scl-666666-666666:active {color:#666666; font-size:9pt; text-decoration: underline; cursor: hand}
A.9scl-666666-666666:hover {color:#666666; font-size:9pt; text-decoration: underline; cursor: hand} 
A.10scl-666666-Red:link {color:#666666; font-size:10pt; text-decoration: none; cursor: hand} 
A.10scl-666666-Red:visited {color:#666666; font-size:10pt; text-decoration: none; cursor: hand} 
A.10scl-666666-Red:active {color:red; font-size:10pt; text-decoration: underline; cursor: hand}
A.10scl-666666-Red:hover {color:red; font-size:10pt; text-decoration: underline; cursor: hand} 
A.12scl-666666-Red:link {color:#666666; font-size:12pt; text-decoration: none; cursor: hand} 
A.12scl-666666-Red:visited {color:#666666; font-size:12pt; text-decoration: none; cursor: hand} 
A.12scl-666666-Red:active {color:red; font-size:12pt; text-decoration: underline; cursor: hand}
A.12scl-666666-Red:hover {color:red; font-size:12pt; text-decoration: underline; cursor: hand} 
A.16scl-666666-Red:link {color:#666666; font-size:16pt; text-decoration: none; cursor: hand} 
A.16scl-666666-Red:visited {color:#666666; font-size:16pt; text-decoration: none; cursor: hand} 
A.16scl-666666-Red:active {color:red; font-size:16pt; text-decoration: underline; cursor: hand}
A.16scl-666666-Red:hover {color:red; font-size:16pt; text-decoration: underline; cursor: hand} 

A.9scl-999999-Red:link {color:#999999; font-size:9pt; text-decoration: none; cursor: hand} 
A.9scl-999999-Red:visited {color:#999999; font-size:9pt; text-decoration: none; cursor: hand} 
A.9scl-999999-Red:active {color:red; font-size:9pt; text-decoration: underline; cursor: hand}
A.9scl-999999-Red:hover {color:red; font-size:9pt; text-decoration: underline; cursor: hand} 
A.10scl-999999-Red:link {color:#999999; font-size:10pt; text-decoration: none; cursor: hand} 
A.10scl-999999-Red:visited {color:#999999; font-size:10pt; text-decoration: none; cursor: hand} 
A.10scl-999999-Red:active {color:red; font-size:10pt; text-decoration: underline; cursor: hand}
A.10scl-999999-Red:hover {color:red; font-size:10pt; text-decoration: underline; cursor: hand} 
A.12scl-999999-Red:link {color:#999999; font-size:12pt; text-decoration: none; cursor: hand} 
A.12scl-999999-Red:visited {color:#999999; font-size:12pt; text-decoration: none; cursor: hand} 
A.12scl-999999-Red:active {color:red; font-size:12pt; text-decoration: underline; cursor: hand}
A.12scl-999999-Red:hover {color:red; font-size:12pt; text-decoration: underline; cursor: hand} 
A.16scl-999999-Red:link {color:#999999; font-size:16pt; text-decoration: none; cursor: hand} 
A.16scl-999999-Red:visited {color:#999999; font-size:16pt; text-decoration: none; cursor: hand} 
A.16scl-999999-Red:active {color:red; font-size:16pt; text-decoration: underline; cursor: hand}
A.16scl-999999-Red:hover {color:red; font-size:16pt; text-decoration: underline; cursor: hand} 

A.9scl-white-white:link {color:white; font-size:9pt; text-decoration: none; cursor: hand} 
A.9scl-white-white:visited {color:white; font-size:9pt; text-decoration: none; cursor: hand} 
A.9scl-white-white:active {color:white; font-size:9pt; text-decoration: underline; cursor: hand}
A.9scl-white-white:hover {color:white; font-size:9pt; text-decoration: underline; cursor: hand} 
A.10scl-white-Red:link {color:white; font-size:10pt; text-decoration: none; cursor: hand} 
A.10scl-white-Red:visited {color:white; font-size:10pt; text-decoration: none; cursor: hand} 
A.10scl-white-Red:active {color:red; font-size:10pt; text-decoration: underline; cursor: hand}
A.10scl-white-Red:hover {color:red; font-size:10pt; text-decoration: underline; cursor: hand} 
A.12scl-white-Red:link {color:white; font-size:12pt; text-decoration: none; cursor: hand} 
A.12scl-white-Red:visited {color:white; font-size:12pt; text-decoration: none; cursor: hand} 
A.12scl-white-Red:active {color:red; font-size:12pt; text-decoration: underline; cursor: hand}
A.12scl-white-Red:hover {color:red; font-size:12pt; text-decoration: underline; cursor: hand} 
A.16scl-white-Red:link {color:white; font-size:16pt; text-decoration: none; cursor: hand} 
A.16scl-white-Red:visited {color:white; font-size:16pt; text-decoration: none; cursor: hand} 
A.16scl-white-Red:active {color:red; font-size:16pt; text-decoration: underline; cursor: hand}
A.16scl-white-Red:hover {color:red; font-size:16pt; text-decoration: underline; cursor: hand} 

A.9scl-black-black:link {color:black; font-size:9pt; text-decoration: none; cursor: hand} 
A.9scl-black-black:visited {color:black; font-size:9pt; text-decoration: none; cursor: hand} 
A.9scl-black-black:active {color:black; font-size:9pt; text-decoration: underline; cursor: hand}
A.9scl-black-black:hover {color:black; font-size:9pt; text-decoration: underline; cursor: hand} 
A.10scl-black-Red:link {color:black; font-size:10pt; text-decoration: none; cursor: hand} 
A.10scl-black-Red:visited {color:black; font-size:10pt; text-decoration: none; cursor: hand} 
A.10scl-black-Red:active {color:red; font-size:10pt; text-decoration: underline; cursor: hand}
A.10scl-black-Red:hover {color:red; font-size:10pt; text-decoration: underline; cursor: hand} 
A.12scl-black-Red:link {color:black; font-size:12pt; text-decoration: none; cursor: hand} 
A.12scl-black-Red:visited {color:black; font-size:12pt; text-decoration: none; cursor: hand} 
A.12scl-black-Red:active {color:red; font-size:12pt; text-decoration: underline; cursor: hand}
A.12scl-black-Red:hover {color:red; font-size:12pt; text-decoration: underline; cursor: hand} 
A.16scl-black-Red:link {color:black; font-size:16pt; text-decoration: none; cursor: hand} 
A.16scl-black-Red:visited {color:black; font-size:16pt; text-decoration: none; cursor: hand} 
A.16scl-black-Red:active {color:red; font-size:16pt; text-decoration: underline; cursor: hand}
A.16scl-black-Red:hover {color:red; font-size:16pt; text-decoration: underline; cursor: hand} 

A.9scl-blue-Red:link {color:blue; font-size:9pt; text-decoration: none; cursor: hand} 
A.9scl-blue-Red:visited {color:blue; font-size:9pt; text-decoration: none; cursor: hand} 
A.9scl-blue-Red:active {color:red; font-size:9pt; text-decoration: underline; cursor: hand}
A.9scl-blue-Red:hover {color:red; font-size:9pt; text-decoration: underline; cursor: hand} 
A.10scl-blue-Red:link {color:blue; font-size:10pt; text-decoration: none; cursor: hand} 
A.10scl-blue-Red:visited {color:blue; font-size:10pt; text-decoration: none; cursor: hand} 
A.10scl-blue-Red:active {color:red; font-size:10pt; text-decoration: underline; cursor: hand}
A.10scl-blue-Red:hover {color:red; font-size:10pt; text-decoration: underline; cursor: hand} 
A.12scl-blue-Red:link {color:blue; font-size:12pt; text-decoration: none; cursor: hand} 
A.12scl-blue-Red:visited {color:blue; font-size:12pt; text-decoration: none; cursor: hand} 
A.12scl-blue-Red:active {color:red; font-size:12pt; text-decoration: underline; cursor: hand}
A.12scl-blue-Red:hover {color:red; font-size:12pt; text-decoration: underline; cursor: hand} 
A.16scl-blue-Red:link {color:blue; font-size:16pt; text-decoration: none; cursor: hand} 
A.16scl-blue-Red:visited {color:blue; font-size:16pt; text-decoration: none; cursor: hand} 
A.16scl-blue-Red:active {color:red; font-size:16pt; text-decoration: underline; cursor: hand}
A.16scl-blue-Red:hover {color:red; font-size:16pt; text-decoration: underline; cursor: hand} 
