0
0
Fork 0

import from old webserver

This commit is contained in:
Jannik Beyerstedt 2024-01-27 15:16:07 +01:00
commit 581270204f
650 changed files with 84412 additions and 0 deletions

View file

@ -0,0 +1,52 @@
/* CSS only needed for the demo */
body,html{
margin:0px;
padding:0px;
text-align:center;
background-color: #E2EBED;
font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif;
line-height: 130%;
text-align:center;
height:100%;
width:100%;
}
#mainContainer{
width:630px;
border-left:1px solid #317082;
border-right:1px solid #317082;
margin:0 auto; /* Center align content, equivalent to margin-left:auto;margin-right:auto; */
text-align:left; /* Override inherited text-align:center from the body tag */
background-color:#FFF;
height:100%;
}
#menuColumn{
width:160px;
float:left;
padding:5px;
font-size:0.9em;
}
#mainContent{
width:440px;
float:left;
}
.oddRow{
background-color:#FFF;
}
.evenRow{
background-color:#EEE;
}
.productTable{
border:3px double #000;
}
h3{
margin-top:0px;
}
/* End css for the demo */

90
css/tst/ajax-tooltip.css Normal file
View file

@ -0,0 +1,90 @@
/* CSS only needed for the demo */
body,html{
margin:0px;
padding:0px;
text-align:center;
background-color: #E2EBED;
font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif;
line-height: 130%;
text-align:center;
height:100%;
width:100%;
}
#mainContainer{
width:630px;
border-left:1px solid #317082;
border-right:1px solid #317082;
margin:0 auto; /* Center align content, equivalent to margin-left:auto;margin-right:auto; */
text-align:left; /* Override inherited text-align:center from the body tag */
background-color:#FFF;
height:100%;
}
#menuColumn{
width:160px;
float:left;
padding:5px;
font-size:0.9em;
}
#mainContent{
width:440px;
float:left;
}
.oddRow{
background-color:#FFF;
}
.evenRow{
background-color:#EEE;
}
.productTable{
border:3px double #000;
}
h3{
margin-top:0px;
}
/* End css for the demo */
/* CSS needed for the script */
#ajax_tooltipObj{
z-index:1000000;
text-align:left;
}
#ajax_tooltipObj div{
position:relative;
}
/* If you don't want the arrow - Just set the width of this div to 1 or something like that and drop the background selectors from the CSS below */
#ajax_tooltipObj .ajax_tooltip_arrow{ /* Left div for the small arrow */
background-image:url('../images/arrow.gif');
width:20px;
position:absolute;
left:0px;
top:0px;
background-repeat:no-repeat;
background-position:center left;
z-index:1000005;
height:60px;
}
#ajax_tooltipObj .ajax_tooltip_content{
border:2px solid #317082; /* Border width */
left:18px; /* Same as border thickness */
top:0px;
position:absolute;
width:150px; /* Width of tooltip content */
height:200px; /* Height of tooltip content */
background-color:#FFF; /* Background color */
padding:5px; /* Space between border and content */
font-size:0.8em; /* Font size of content */
overflow:auto; /* Hide overflow content */
z-index:1000001;
}

92
css/tst/default.css Normal file
View file

@ -0,0 +1,92 @@
/* - - - - - - - - - - - - - - - - - - - - -
Title : Default CSS for Lightbox Gone Wild
Author : Kevin Hale
URL : http://particletree.com/features/lightbox-gone-wild/
Created : January 13, 2006
Modified : February 1, 2006
- - - - - - - - - - - - - - - - - - - - - */
/* ----- CSS ----- */
*{
margin:0;
padding:0;
}
body{
margin:30px 0 30px 0;
text-align:center;
background-color:#62E122;
font-size:80%;
font-family:"Lucida Grande", Tahoma, sans-serif;
}
p{
margin:0 0 1em 0;
}
a{
color:green;
}
a img{
border:none !important;
}
#container{
margin:0 auto;
width:500px;
padding:40px;
text-align:left;
background-color:#fff;
}
#container ul{
text-align:center;
margin:0 0 30px 0;
list-style:none;
}
#container ul a{
border:1px solid #eee;
background-color:#f5f5f5;
color:#444;
font-size:1.5em;
line-height:2em;
padding:20px;
margin:0 0 20px 0;
display:block;
}
#container ul a:hover{
border:1px solid #B5DF99;
background-color:#CDEFB6;
color:#358610;
}
#lightbox h2{
margin:0 0 1em 0;
}
#lightbox h3{
color:#FF713F;
}
#lightbox.done p{
color:#333;
}
#form{
text-align:left;
margin:25px;
}
#form ul{
list-style:none;
}
#form li{
margin:0 0 1em 0;
}
#form textarea{
width:100%;
height:150px;
}
#definition{
margin:25px;
}
.highlight{
background-color:#FEFFAF;
}

26
css/tst/demos.css Normal file
View file

@ -0,0 +1,26 @@
#mainContainer{
width:500px;
margin:0 auto;
margin-top:10px;
border:1px double #000;
padding:5px;
}
/* Alternative layout for the message box - used by one of the messages */
.modalDialog_contentDiv_error{
border:3px solid #FFF;
padding:2px;
z-index:100;/* Always needed */
position:absolute; /* Always needed */
background-color:#F00; /* White background color for the message */
color:#FFF;
}
.modalDialog_contentDiv_error a{
color:#FFF;
}
h1{
margin-top:0px;
}

104
css/tst/lightbox.css Normal file
View file

@ -0,0 +1,104 @@
#lightbox{
position: absolute;
top: 40px;
left: 0;
width: 100%;
z-index: 100;
text-align: center;
line-height: 0;
}
#lightbox a img{ border: none; }
#outerImageContainer{
position: relative;
background-color: #fff;
width: 250px;
height: 250px;
margin: 0 auto;
}
#imageContainer{
padding: 10px;
}
#loading{
position: absolute;
top: 40%;
left: 0%;
height: 25%;
width: 100%;
text-align: center;
line-height: 0;
}
#hoverNav{
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
z-index: 10;
}
#imageContainer>#hoverNav{ left: 0;}
#hoverNav a{ outline: none;}
#prevLink, #nextLink{
width: 49%;
height: 100%;
background: transparent url(../images/blank.gif) no-repeat; /* Trick IE into showing hover */
display: block;
}
#prevLink { left: 0; float: left;}
#nextLink { right: 0; float: right;}
#prevLink:hover, #prevLink:visited:hover { background: url(../images/prevlabel.gif) left 15% no-repeat; }
#nextLink:hover, #nextLink:visited:hover { background: url(../images/nextlabel.gif) right 15% no-repeat; }
#imageDataContainer{
font: 10px Verdana, Helvetica, sans-serif;
background-color: #fff;
margin: 0 auto;
line-height: 1.4em;
}
#imageData{
padding:0 10px;
}
#imageData #imageDetails{ width: 70%; float: left; text-align: left; }
#imageData #caption{ font-weight: bold; }
#imageData #numberDisplay{ display: block; clear: left; padding-bottom: 1.0em; }
#imageData #bottomNavClose{ width: 66px; float: right; padding-bottom: 0.7em; }
#overlay{
position: absolute;
top: 0;
left: 0;
z-index: 90;
width: 100%;
height: 500px;
background-color: #000;
filter:alpha(opacity=60);
-moz-opacity: 0.6;
opacity: 0.6;
}
.clearfix:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
* html>body .clearfix {
display: inline-block;
width: 100%;
}
* html .clearfix {
/* Hides from IE-mac \*/
height: 1%;
/* End hide from IE-mac */
}

33
css/tst/modal-message.css Normal file
View file

@ -0,0 +1,33 @@
/************************************************************************************************************
* DHTML modal dialog box (CSS for the DHTMLSuite_modalMessage class)
*
* Created: August, 26th, 2006
* @class Purpose of class: Display a modal dialog box on the screen.
*
* Css files used by this script: modal-message.css
*
* Update log:
*
************************************************************************************************************/
.modalDialog_transparentDivs{
filter:alpha(opacity=60); /* Transparency */
opacity:0.6; /* Transparency */
background-color:#AAA;
z-index:1;
position:absolute; /* Always needed */
}
.modalDialog_contentDiv{
border:3px solid #000;
padding:2px;
z-index:100;/* Always needed */
position:absolute; /* Always needed */
background-color:#FFF; /* White background color for the message */
}
.modalDialog_contentDiv_shadow{
z-index:90;/* Always needed - to make it appear below the message */
position:absolute; /* Always needed */
background-color:#555;
filter:alpha(opacity=30); /* Transparency */
opacity:0.3; /* Transparency */
}

204
css/tst/old.css Normal file
View file

@ -0,0 +1,204 @@
.announcement
{
text-align: center;
}
div.announcement
{
margin-bottom: 5px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 0px;
padding-top: 0px;
border-left-style: none;
border-bottom-style: dashed;
border-right-style: none;
border-top-style: dashed;
border-width: thin;
}
ul
{
text-align: left;
}
div.chapter
{
margin-top: 30px;
}
div.box
{
padding: 2px;
border-style: solid;
border-width: thin;
margin-top: 20px;
margin-bottom: 20px;
}
h4
{
margin-bottom: 10px;
}
.line
{
display: block;
}
li
{
padding-bottom: 10px;
}
input
{
margin-top: 5px;
margin-bottom: 5px;
}
tr.dbhead
{
background: #7d9fc4;
color: rgb(255,255,255);
font-family: verdana, helvetica, arial, sans-serif;
font-size: 71%; /* Enables font size scaling in MSIE */
}
tr.db1
{
background: rgb(250,250,250);
color: rgb(0,0,0);
font-family: verdana, helvetica, arial, sans-serif;
font-size: 71%; /* Enables font size scaling in MSIE */
}
tr.db0
{
background: rgb(230,230,230);
color: rgb(0,0,0);
font-family: verdana, helvetica, arial, sans-serif;
font-size: 71%; /* Enables font size scaling in MSIE */
}
td.db
{
border-color: #7d9fc4;
}
table.db
{
border-spacing: 0.05em;
empty-cells: show;
}
tr.dbhead
{
height: 3em;
border-spacing: 0.05em;
}
td.db
{
padding: 0.2em;
border-left-style: dotted;
border-bottom-style: none;
border-right-style: dotted;
border-top-style: none;
border-width: thin;
vertical-align: top;
}
input.db, textarea.db, select.db
{
width: 99%;
margin-bottom: 10px;
}
select.dbdata
{
width: 105px;
margin: 0px;
}
textarea
{
height: 50px;
}
.big
{
height: 100px;
}
.verybig
{
height: 200px;
}
.line
{
display: block;
}
.line
{
display: block;
}
.topic
{
font-style: italic;
display: block;
}
.right
{
text-align: right;
}
p
{
font-weight: normal;
}
.small
{
font-size: 80%;
}
.announcement
{
font-weight: bold;
}
.warning
{
background-color: #ff0000;
color: #000000;
}
.confirmation
{
background-color: #00aa00;
color: #000000;
}
h1, h2, h3, h4
{
font-weight: bold;
}
h5, h6
{
font-weight: normal;
}

136
css/tst/sinorca-print.css Normal file
View file

@ -0,0 +1,136 @@
/************************************
* TITLE: Sinorca Print Stylesheet *
* URI : sinorca/sinorca-print.css *
* MODIF: 2003-May-01 19:30 +0800 *
************************************/
/* ##### Common Styles ##### */
body {
color: black;
background-color: white;
font-family: "times new roman", times, roman, serif;
font-size: 12pt;
margin: 0;
padding: 0;
}
acronym, .titleTip {
font-style: italic;
border-bottom: none;
}
acronym:after, .titleTip:after { /* Prints titles after the acronyms/titletips. Doesn't work in MSIE */
content: "(" attr(title) ")";
font-size: 90%;
font-style: normal;
padding-left: 1ex;
}
.doNotPrint {
display: none !important;
}
/* ##### Header ##### */
#header {
margin: 0;
padding: 0;
border-bottom: 1px solid black;
}
.superHeader {
display: none;
}
.headerTitle {
color: black;
background-color: transparent;
font-family: "trebuchet ms", verdana, helvetica, arial, sans-serif;
font-size: 200%;
font-weight: normal;
text-decoration: none;
margin: 0;
padding: 0 0 0.5ex 0;
}
.subHeader {
display: none;
}
/* ##### Side Bar ##### */
#side-bar {
display: none;
}
/* ##### Main Copy ##### */
#main-copy {
text-align: justify;
margin: 0;
padding: 0;
}
#main-copy h1 {
font-family: "trebuchet ms", verdana, helvetica, arial, sans-serif;
font-size: 120%;
margin: 2ex 0 1ex 0;
padding: 0;
}
#main-copy a {
color: black;
background-color: transparent;
text-decoration: none;
}
#main-copy a:after { /* Prints the links' URIs after the links' texts. Doesn't work in MSIE */
content: "<" attr(href) ">";
font-size: 90%;
padding-left: 1ex;
}
p {
margin: 0 0 2ex 0;
padding: 0;
}
dl {
margin: 0;
padding: 0;
}
dt {
font-weight: bold;
margin: 0;
padding: 0 0 1ex 0;
}
dd {
margin: 0 0 2ex 1.5em;
padding: 0;
}
.topOfPage {
display: none;
}
/* ##### Footer ##### */
#footer {
margin: 2em 0 0 0;
padding: 1ex 0 0 0;
border-top: 1px solid black;
}
#footer a {
color: black;
background-color: transparent;
text-decoration: none;
}

View file

@ -0,0 +1,304 @@
/*************************************
* TITLE: Sinorca Screen Stylesheet *
* URI : sinorca/sinorca-screen.css *
* MODIF: 2003-Apr-30 19:31 +0800 *
*************************************/
/* ##### Common Styles ##### */
body {
color: white;
background-color: #cccccc;
font-family: verdana, helvetica, arial, sans-serif;
font-size: 71%; /* Enables font size scaling in MSIE */
margin: 0;
padding: 0;
}
html > body {
font-size: 8.5pt;
}
acronym, .titleTip {
border-bottom: 1px dotted #cccccc;
cursor: help;
margin: 0;
padding: 0 0 0.4px 0;
}
.doNotDisplay {
display: none;
}
.smallCaps {
font-size: 110%;
font-variant: small-caps;
}
/* ##### Header ##### */
.superHeader {
color: white;
background-color: black;
height: 2em;
}
.superHeader a {
color: white;
background-color: transparent;
text-decoration: none;
font-size: 91%;
margin: 0;
padding: 0 0.5ex 0 0.25ex;
}
.superHeader a:hover {
text-decoration: underline;
}
.superHeader .left {
position: absolute;
left: 1.5mm;
top: 0.75ex;
}
.superHeader .right {
position: absolute;
right: 1.5mm;
top: 0.75ex;
}
.midHeader {
color: black;
background-color: #cccccc;
height: 4.5em;
}
.midHeader .left {
position: absolute;
left: 1.5mm;
top: 2.75ex;
}
.midHeader .right {
position: absolute;
right: 1.5mm;
top: 2.75ex;
}
.headerTitle {
font-size: 337%;
font-weight: normal;
margin: 0 0 0 4mm;
padding: 0.25ex 0;
}
.subHeader {
color: black;
background-color: #ff0000;
margin: 0;
padding: 1ex 1ex 1ex 1.5mm;
}
.subHeader a {
color: black;
background-color: transparent;
text-decoration: none;
font-weight: bold;
margin: 0;
padding: 0 0.75ex 0 0.5ex;
}
.subHeader a:hover {
text-decoration: underline;
}
.superHeader .highlight, .subHeader .highlight {
color: #aaaaaa;
background-color: transparent;
}
/* ##### Side Bar ##### */
#side-bar {
width: 15em;
float: left;
clear: left;
border-right: 1px solid #cccccc;
color: white;
background-color: black;
}
#side-bar div {
border-bottom: 1px solid #cccccc;
}
.sideBarTitle {
font-weight: bold;
margin: 0 0 0.5em 2.5mm;
padding: 1em 0 0 0;
}
#side-bar ul {
list-style-type: none;
list-style-position: outside;
margin: 0;
padding: 0 0 1.1em 0;
}
#side-bar li {
margin: 0;
padding: 0.1ex 0; /* Circumvents a rendering bug (?) in MSIE 6.0 */
}
#side-bar a, .thisPage {
color: white;
background-color: transparent;
text-decoration: none;
margin: 0;
padding: 0.75em 1ex 0.75em 5mm;
display: block;
}
.thisPage {
color: black;
background-color: #ff0000;
padding-left: 4mm;
border-top: 1px solid rgb(153,153,153);
border-bottom: 1px solid rgb(153,153,153);
}
#side-bar a:hover {
color: black;
background-color: #ff0000;
text-decoration: none;
}
.sideBarText {
line-height: 1.5em;
margin: 0 0 1em 0;
padding: 0 1.5ex 0 2.5mm;
display: block;
}
#side-bar .sideBarText a {
text-decoration: underline;
margin: 0;
padding: 0;
display: inline;
}
#side-bar .sideBarText a:hover {
color: black;
background-color: transparent;
text-decoration: none;
}
.lighterBackground {
color: inherit;
background-color: white;
}
/* ##### Main Copy ##### */
#main-copy {
color: black;
background-color: #dddddd;
text-align: justify;
line-height: 1.5em;
margin: 0 0 0 15em;
padding: 0.5mm 5mm 5mm 5mm;
border-left: 1px solid rgb(153,153,153);
}
#main-copy p {
margin: 1em 1ex 2em 1ex;
padding: 0;
}
#main-copy a {
color: #ff0000;
background-color: transparent;
text-decoration: underline;
}
#main-copy a:hover {
text-decoration: none;
}
#main-copy h1 {
color: black;
background-color: #ff0000;
font-size: 100%;
font-weight: bold;
margin: 3em 0 0 0;
padding: 0.5ex 0 0.5ex 1ex;
}
#main-copy .topOfPage {
color: black;
background-color: transparent;
font-size: 91%;
font-weight: bold;
text-decoration: none;
margin: 2.5ex 1ex 0 0; /* For MSIE */
padding: 0;
float: right;
}
#main-copy > .topOfPage {
margin: 2.75ex 1ex 0 0; /* For fully standards-compliant user agents */
}
dl {
margin: 1em 1ex 2em 1ex;
padding: 0;
}
dt {
font-weight: bold;
margin: 0 0 0 0;
padding: 0;
}
dd {
margin: 0 0 2em 2em;
padding: 0;
}
/* ##### Footer ##### */
#footer {
color: black;
background-color: #ff0000;
font-size: 91%;
margin: 0;
padding: 1em 2.5mm 2.5ex 2.5mm;
clear: both;
}
#footer .left {
line-height: 1.45em;
float: left;
clear: left;
}
#footer .right {
text-align: right;
line-height: 1.45em;
}
#footer a {
color: white;
background-color: transparent;
text-decoration: underline;
}
#footer a:hover {
text-decoration: none;
}

View file

@ -0,0 +1,302 @@
/*************************************
* TITLE: Sinorca Screen Stylesheet *
* URI : sinorca/sinorca-screen.css *
* MODIF: 2003-Apr-30 19:31 +0800 *
*************************************/
/* ##### Common Styles ##### */
body {
color: white;
background-color: #cccccc;
font-family: verdana, helvetica, arial, sans-serif;
font-size: 71%; /* Enables font size scaling in MSIE */
margin: 0;
padding: 0;
}
html > body {
font-size: 8.5pt;
}
acronym, .titleTip {
border-bottom: 1px dotted #cccccc;
cursor: help;
margin: 0;
padding: 0 0 0.4px 0;
}
.doNotDisplay {
display: none;
}
.smallCaps {
font-size: 110%;
font-variant: small-caps;
}
/* ##### Header ##### */
.superHeader {
color: white;
background-color: #ff0000;
height: 2em;
}
.superHeader a {
color: black;
background-color: transparent;
text-decoration: none;
font-size: 91%;
margin: 0;
padding: 0 0.5ex 0 0.25ex;
}
.superHeader a:hover {
text-decoration: underline;
}
.superHeader .left {
position: absolute;
left: 1.5mm;
top: 0.75ex;
}
.superHeader .right {
position: absolute;
right: 1.5mm;
top: 0.75ex;
}
.midHeader {
color: white;
background-color: #cccccc;
height: 4.5em;
}
.midHeader .left {
position: absolute;
left: 1.5mm;
top: 2.75ex;
}
.midHeader .right {
position: absolute;
right: 1.5mm;
top: 2.75ex;
}
.headerTitle {
font-size: 337%;
font-weight: normal;
margin: 0 0 0 4mm;
padding: 0.25ex 0;
}
.subHeader {
color: white;
background-color: black;
margin: 0;
padding: 1ex 1ex 1ex 1.5mm;
}
.subHeader a {
color: white;
background-color: transparent;
text-decoration: none;
font-weight: bold;
margin: 0;
padding: 0 0.75ex 0 0.5ex;
}
.subHeader a:hover {
text-decoration: underline;
}
.superHeader .highlight, .subHeader .highlight {
color: rgb(253,160,91);
background-color: transparent;
}
/* ##### Side Bar ##### */
#side-bar {
width: 15em;
float: left;
clear: left;
border-right: 1px solid rgb(153,153,153);
}
#side-bar div {
border-bottom: 1px solid rgb(153,153,153);
}
.sideBarTitle {
font-weight: bold;
margin: 0 0 0.5em 2.5mm;
padding: 1em 0 0 0;
}
#side-bar ul {
list-style-type: none;
list-style-position: outside;
margin: 0;
padding: 0 0 1.1em 0;
}
#side-bar li {
margin: 0;
padding: 0.1ex 0; /* Circumvents a rendering bug (?) in MSIE 6.0 */
}
#side-bar a, .thisPage {
color: rgb(0,102,204);
background-color: transparent;
text-decoration: none;
margin: 0;
padding: 0.75em 1ex 0.75em 5mm;
display: block;
}
.thisPage {
color: black;
background-color: #ff0000;
padding-left: 4mm;
border-top: 1px solid rgb(153,153,153);
border-bottom: 1px solid rgb(153,153,153);
}
#side-bar a:hover {
color: black;
background-color: #ff0000;
text-decoration: none;
}
.sideBarText {
line-height: 1.5em;
margin: 0 0 1em 0;
padding: 0 1.5ex 0 2.5mm;
display: block;
}
#side-bar .sideBarText a {
text-decoration: underline;
margin: 0;
padding: 0;
display: inline;
}
#side-bar .sideBarText a:hover {
color: black;
background-color: transparent;
text-decoration: none;
}
.lighterBackground {
color: inherit;
background-color: white;
}
/* ##### Main Copy ##### */
#main-copy {
color: black;
background-color: #dddddd;
text-align: justify;
line-height: 1.5em;
margin: 0 0 0 15em;
padding: 0.5mm 5mm 5mm 5mm;
border-left: 1px solid rgb(153,153,153);
}
#main-copy p {
margin: 1em 1ex 2em 1ex;
padding: 0;
}
#main-copy a {
color: #ff0000;
background-color: transparent;
text-decoration: underline;
}
#main-copy a:hover {
text-decoration: none;
}
#main-copy h1 {
color: black;
background-color: #ff0000;
font-size: 100%;
font-weight: bold;
margin: 3em 0 0 0;
padding: 0.5ex 0 0.5ex 1ex;
}
#main-copy .topOfPage {
color: black;
background-color: transparent;
font-size: 91%;
font-weight: bold;
text-decoration: none;
margin: 2.5ex 1ex 0 0; /* For MSIE */
padding: 0;
float: right;
}
#main-copy > .topOfPage {
margin: 2.75ex 1ex 0 0; /* For fully standards-compliant user agents */
}
dl {
margin: 1em 1ex 2em 1ex;
padding: 0;
}
dt {
font-weight: bold;
margin: 0 0 0 0;
padding: 0;
}
dd {
margin: 0 0 2em 2em;
padding: 0;
}
/* ##### Footer ##### */
#footer {
color: black;
background-color: #ff0000;
font-size: 91%;
margin: 0;
padding: 1em 2.5mm 2.5ex 2.5mm;
clear: both;
}
#footer .left {
line-height: 1.45em;
float: left;
clear: left;
}
#footer .right {
text-align: right;
line-height: 1.45em;
}
#footer a {
color: white;
background-color: transparent;
text-decoration: underline;
}
#footer a:hover {
text-decoration: none;
}

322
css/tst/sinorca-screen.css Normal file
View file

@ -0,0 +1,322 @@
/*************************************
* TITLE: Sinorca Screen Stylesheet *
* URI : sinorca/sinorca-screen.css *
* MODIF: 2003-Apr-30 19:31 +0800 *
*************************************/
/* ##### Common Styles ##### */
body
{
color: white;
background-color: #ffffcc;
font-family: verdana, helvetica, arial, sans-serif;
font-size: 71%;
/* Enables font size scaling in MSIE */
margin: 0;
padding: 0;
}
html > body { font-size: 8.5pt; }
acronym, .titleTip
{
border-bottom: 1px dotted #cccccc;
cursor: help;
margin: 0;
padding: 0 0 0.4px 0;
}
.doNotDisplay { display: none; }
.smallCaps
{
font-size: 110%;
font-variant: small-caps;
}
/* ##### Header ##### */
.superHeader
{
color: white;
background-color: black;
height: 2em;
}
.superHeader a
{
color: white;
background-color: transparent;
text-decoration: none;
font-size: 91%;
margin: 0;
padding: 0 0.5ex 0 0.25ex;
}
.superHeader a:hover { text-decoration: underline; }
.superHeader .left
{
position: absolute;
left: 1.5mm;
top: 0.75ex;
}
.superHeader .right
{
position: absolute;
right: 1.5mm;
top: 0.75ex;
}
.midHeader
{
color: black;
background-color: #fcfcfc;
height: 4.5em;
}
.midHeader .left
{
position: absolute;
left: 1.5mm;
top: 2.75ex;
}
.midHeader .right
{
position: absolute;
right: 1.5mm;
top: 5.0ex;
}
.headerTitle
{
background-color: transparent;
font-size: 300%;
font-weight: normal;
margin: 0 0 0 4mm;
padding: 0.25ex 0;
}
.subHeader
{
color: black;
background-color: #ffffcc;
margin: 0;
padding: 1ex 1ex 1ex 1.5mm;
}
.subHeader a
{
color: black;
background-color: transparent;
text-decoration: none;
font-weight: bold;
margin: 0;
padding: 0 0.75ex 0 0.5ex;
}
.subHeader a:hover { text-decoration: underline; }
.superHeader .highlight, .subHeader .highlight
{
color: #aaaaaa;
background-color: transparent;
}
/* ##### Side Bar ##### */
#side-bar
{
width: 15em;
float: left;
clear: left;
border-right: 1px solid #cccccc;
color: black;
background-color: #ffffcc;
}
#side-bar div { border-bottom: 1px solid #cccccc; }
.sideBarTitle
{
font-weight: bold;
margin: 0 0 0.5em 2.5mm;
padding: 1em 0 0 0;
}
#side-bar ul
{
list-style-type: none;
list-style-position: outside;
margin: 0;
padding: 0 0 1.1em 0;
}
#side-bar li
{
margin: 0;
padding: 0.1ex 0;
/* Circumvents a rendering bug (?) in MSIE 6.0 */
}
#side-bar a, .thisPage
{
color: black;
background-color: transparent;
text-decoration: none;
margin: 0;
padding: 0.75em 1ex 0.75em 5mm;
display: block;
}
.thisPage
{
color: black;
background-color: #ddddee;
padding-left: 4mm;
border-top: 1px solid rgb(153,153,153);
border-bottom: 1px solid rgb(153,153,153);
}
#side-bar a:hover
{
background-color: #ffffee;
text-decoration: none;
}
.sideBarText
{
line-height: 1.5em;
margin: 0 0 1em 0;
padding: 0 1.5ex 0 2.5mm;
display: block;
}
#side-bar .sideBarText a
{
text-decoration: underline;
margin: 0;
padding: 0;
display: inline;
}
#side-bar .sideBarText a:hover
{
color: black;
background-color: transparent;
text-decoration: none;
}
.lighterBackground
{
color: inherit;
background-color: white;
}
/* ##### Main Copy ##### */
#main-copy
{
color: black;
background-color: #fcfcfc;
text-align: justify;
line-height: 1.5em;
margin: 0 0 0 15em;
padding: 0.5mm 5mm 5mm 5mm;
border-left: 1px solid rgb(153,153,153);
}
p
{
margin: 1em 1ex 2em 1ex;
padding: 0;
}
a
{
color: #ff0000;
background-color: transparent;
text-decoration: underline;
}
a:hover { text-decoration: none; }
h1
{
color: black;
background-color: #ddddee;
font-size: 100%;
font-weight: bold;
margin: 3em 0 0 0;
padding: 0.5ex 0 0.5ex 1ex;
}
.topOfPage
{
color: black;
background-color: transparent;
font-size: 91%;
font-weight: bold;
text-decoration: none;
margin: 2.5ex 1ex 0 0;
/* For MSIE */
padding: 0;
float: right;
}
#main-copy > .topOfPage
{
margin: 2.75ex 1ex 0 0;
/* For fully standards-compliant user agents */
}
dl
{
margin: 1em 1ex 2em 1ex;
padding: 0;
}
dt
{
font-weight: bold;
margin: 0 0 0 0;
padding: 0;
}
dd
{
margin: 0 0 2em 2em;
padding: 0;
}
/* ##### Footer ##### */
#footer
{
color: black;
background-color: #ff0000;
font-size: 91%;
margin: 0;
padding: 1em 2.5mm 2.5ex 2.5mm;
clear: both;
}
#footer .left
{
line-height: 1.45em;
float: left;
clear: left;
}
#footer .right
{
text-align: right;
line-height: 1.45em;
}
#footer a
{
color: white;
background-color: transparent;
text-decoration: underline;
}
#footer a:hover { text-decoration: none; }