| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283 |
- /**** global HTML elements ****/
- body
- {
- font-weight: 400;
- font-family: Verdana, Sans-serif;
- font-size: 9pt;
- color: #000000;
- line-height: 120%;
- text-align: center;
- margin: 0px;
- padding: 0px;
- }
- img
- {
- border: 0px;
- }
- a
- {
- color: #0088CC;
- font-weight: 800;
- text-decoration: none;
- }
- a:hover
- {
- color: #FFFFFF;
- background-color: #0088CC;
- }
- div
- {
- text-align: left;
- margin: 0px;
- }
- h2
- {
- text-align: center;
- font-size: 130%;
- font-weight: 800;
- padding-top: 0px;
- padding-bottom: 8px;
- }
- h3
- {
- text-align: left;
- font-size: 115%;
- font-weight: 800;
- }
- pre
- {
- color: navy;
- background-color: #F6F6F6;
- }
- li
- {
- margin-top: 5px;
- margin-bottom: 5px;
- }
- ul
- {
- list-style-type: square;
- border-top: dashed 1px #00CCFF;
- border-right: dashed 1px #00CCFF;
- border-bottom: dashed 1px #00CCFF;
- }
- /**** main window elements ****/
- #main
- {
- position: relative;
- margin: auto;
- left: 0px;
- top: 4px;
- width: 760px;
- }
- #window
- {
- background-color: #FFFFFF;
- border: 2px solid #00CCFF;
- border-top: 0px;
- position: absolute;
- padding: 0px;
- left: 128px;
- top: 100px;
- width: 500px !important;
- width: 504px;
- padding-bottom: 12px;
- }
- #left
- {
- background-color: #00CCFF;
- font-weight: 800;
- color: #000000;
- position: absolute;
- left: 0px;
- top: 100px;
- width: 130px;
- }
- #right
- {
- background-color: #00CCFF;
- font-weight: 800;
- color: #000000;
- position: absolute;
- left: 630px;
- top: 100px;
- width: 130px;
- }
- #header
- {
- background-image: url('../images/weblogo.png');
- position: absolute;
- left: 0px;
- top: 0px;
- width: 756px !important;
- width: 760px;
- height: 100px;
- border: solid 2px #00CCFF;
- }
- /**** Classes & Misc ****/
- .menu
- {
- padding-top: 15px;
- padding-bottom: 10px;
- }
- .menu a
- {
- color: #000000;
- }
- .menu a:hover
- {
- text-decoration: underline;
- background-color: #00CCFF;
- color: #000000;
- }
- .menu hr
- {
- height: 1px;
- border: 0px;
- width: 100%;
- color: #FFFFFF;
- background-color: #FFFFFF;
- }
- .menu h3
- {
- text-align: center;
- margin: 0px;
- font-size: 120%;
- font-weight: 800;
- }
- .menu ul
- {
- padding: 0px;
- padding-right: 2px;
- margin-left: 14px;
- margin-top: 10px;
- margin-bottom: 0px;
- list-style-type: none;
- border: none;
- }
- .menu li
- {
- margin-top: 2px;
- margin-bottom: 2px;
- }
- .rightlinks li
- {
- text-align: right;
- margin-right: 14px;
- }
- .textview
- {
- padding-top: 8px;
- padding-bottom: 10px;
- padding-left: 16px;
- padding-right: 16px;
- text-align: left;
- }
- .newstext
- {
- padding-top: 8px;
- padding-bottom: 8px;
- padding-left: 16px;
- padding-right: 16px;
- text-align: left;
- }
- .newstext h3
- {
- font-size: 105%;
- color: #000000;
- margin: 0px;
- padding: 0px;
- }
- .smalltext
- {
- font-size: 80%;
- }
- .texthr
- {
- margin-top: 4px;
- margin-bottom: 4px;
- border: 0px;
- width: 100%;
- height: 2px;
- color: #00CCFF;
- background-color: #00CCFF;
- }
- ul ul
- {
- border: none;
- }
- .nocsshint
- {
- display: none;
- }
- /**** Tables ****/
- table
- {
- border: none;
- padding: 0px;
- margin: 0px;
- text-align: left;
- font-size: 100%;
- border-bottom: solid 1px #00CCFF;
- }
- th
- {
- background-color: #00CCFF;
- color: #000000;
- text-align: center;
- font-weight: bold;
- }
- td
- {
- padding: 3px;
- }
- /**** Forms ****/
- input, textarea
- {
- border: 2px solid #00CCFF;
- background-color: #FFFFFF;
- font-family: Verdana, Sans-serif;
- font-size: 10pt;
- }
|