/*
 * style.css: default style sheet
 *
 * Copyright (c) 2005 Per Cederberg. Permission is granted to copy 
 * this document verbatim in any medium, provided that this copyright 
 * notice is left intact.
 */



/* * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 *
 *  Default Styles
 *
 */

/* Normal document settings */
body {
        margin: 0px; 
        background: white;
        color: black;
        background: rgb(255, 250, 245);
        font-family: verdana, helvetica, sans;
        font-size: 10pt;
        text-align: center; /* IE center page hack */
}

/* Header formats */
h1 {
        margin-top: 1em;
        margin-bottom: 1em;
        padding-left: 5px;
        font-size: 18px;
        background: url(images/line.jpeg) no-repeat 0% 100%;
}
h2 {
        margin-top: 1.5em;
        margin-bottom: 0.8em;
        padding-top: 3px;
        padding-bottom: 3px;
        padding-left: 6px;
        padding-right: 6px;
        background: rgb(240, 240, 240);
        font-size: 14px;
}
h3 {
        margin-top: 0.7em;
        margin-bottom: 0.3em;
        font-size: 100%;
}

/* Paragraph style */
p {
        margin-top: 0em;
        margin-bottom: 1em;
}

/* Separator style */
hr {
        margin-top: 2em; 
        width: 100%; 
        height: 1px;
        color: black;
}

/* Link styles */
a {
        font-weight: bold;
        text-decoration: none;
}
a:link,
a:active {
        color: rgb(210, 80, 50);
}
a:visited {
        color: rgb(240, 160, 100);
}
a:hover {
        text-decoration: underline;
}
a img {
        border-style: none;
}

/* Image style */
img {

        vertical-align: middle;
}

/* Code example style */
pre,
code {
        font-size: 8pt;
        color: rgb(140, 140, 140);
}

/* Table style */
table {
        width: auto; 
        border: none;
        border-collapse: collapse;
        font-size: 10pt;
}
th {
        border: none;
        padding: 0px;
        vertical-align: top; 
        text-align: left; 
}
td {
        border: none;
        padding: 0px; 
        vertical-align: top; 
}

/* List styles */
ul,
ol, 
dl {
        margin-top: 0.5em;
        margin-bottom: 0.5em;
}
dt {
        margin-top: 0.7em; 
        margin-bottom: 0em;
        margin-left: 30px;
}
dd {
        font-size: smaller;
        margin-left: 30px; 
        margin-top: 0.4em; 
        margin-bottom: 1em;
}
li {
        margin-bottom: 1em;
}

/* Form styles */
input,
textarea,
select {
        margin: 0px;
}


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 *
 *  Special Styles
 *
 */

/* Main style */
.main {
        width: 765px;
        margin-left: auto; 
        margin-right: auto;
        padding-left: 5px;
        background: url(images/orange.jpeg) white;
        background-repeat: repeat-y;
        background-position: 100% 0%;
        text-align: left; /* IE center page hack */
}

/* Header style */
.header {
        width: 570px;
        height: 95px;
        background: url(images/header.jpeg);
        background-repeat: no-repeat;
}

/* Logo style */
.logo {
        padding-top: 18px;
        padding-left: 14px;
        padding-bottom: 18px;
}

/* Menu style */
.menu {
        padding-top: 2px;
        padding-left: 10px;
        font-size: 13px;
}
.menu a {
        padding-top: 0px;
        padding-bottom: 1px;
        padding-left: 3px;
        padding-right: 3px;
}
.menu a:link,
.menu a:active,
.menu a:visited {
        color: black;
}
.menu a:hover,
.menu a.selected:hover {
        background: rgb(244, 207, 164);
        text-decoration: none;
}
.menu a.selected,
.menu a.selected:link,
.menu a.selected:active,
.menu a.selected:visited {
        background: rgb(180, 180, 180);
        color: white;
}

/* Content style */
.content {
        padding-top: 20px;
        padding-bottom: 20px;
        padding-left: 20px;
        padding-right: 20px;
}

/* Addon column style */
.addon {
        width: 187px;
        padding-top: 20px;
        padding-bottom: 20px;
        text-align: center;
}

/* Footer style */
.footer {
        font-size: smaller;
}

/* Colum styles */
.leftcolumn {
        padding-right: 20px;
}
.rightcolumn {
        width: 180px;
        border: 1px solid black;
        padding: 10px;
        background: rgb(250, 250, 250);
        font-size: smaller;
}
.rightcolumn h1 {
        margin-top: 0.5em;
        margin-bottom: 0.5em;
        padding: 0px;
        background: rgb(250, 250, 250);
}
.rightcolumn h2 {
        margin-top: 1em;
        margin-bottom: 0.3em;
        padding: 0px;
        color: rgb(120, 120, 120);
        background: rgb(250, 250, 250);
        font-size: 100%;
}
.rightcolumn p {
        margin-top: 0.3em;
        margin-bottom: 0.3em;
}

/* Credits style */
table.credits {
        border: none;
}
table.credits td {
        padding: 0px; 
        font-size: smaller;
        vertical-align: top;
}
table.credits td.advert {
        padding-left: 10px;
        font-size: 6pt;
        color: rgb(150, 150, 150);
        text-align: center;
}
table.credits p {
        margin-top: 0em;
        margin-bottom: 0.7em;
}



/* * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 *
 *  Table Styles
 *
 */

/* Compact table style */
table.compact {
        border: none;
}
table.compact th {
        padding: 0px; 
        padding-left: 5px; 
        padding-right: 5px;
}
table.compact td {
        padding: 0px; 
        padding-left: 5px; 
        padding-right: 5px;
}
                    
/* Bordered table style */
table.border {
        border: solid 1px rgb(210, 80, 50);
}
table.border th {
        border: solid 1px rgb(210, 80, 50);
        padding-top: 3px; 
        padding-bottom: 3px; 
        padding-left: 8px; 
        padding-right: 8px;
        background: rgb(255, 220, 150);
        color: rgb(230, 110, 40);
}
table.border td {
        border: solid 1px rgb(210, 80, 50);
        padding-top: 3px; 
        padding-bottom: 3px; 
        padding-left: 8px; 
        padding-right: 8px;
}

/* Form table style */
table.form th, table.form td {
        padding-top: 3px;
        padding-bottom: 3px;
        padding-left: 6px;
        padding-right: 6px;
}
table.form th.field, table.form td.field {
        padding-right: 30px;
/*        background-color: rgb(250, 250, 200); */
}
table.form td.details {
/*        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 10px;
        padding-right: 20px; */
}

table.progress {
        margin-bottom: 16px;
        font-size: 12px;
}
table.progress td {
        height: 30px;
        padding-top: 6px;
        padding-left: 10px;
        padding-right: 10px;
}
table.progress td.prev {
        background: url(images/progress-prev.gif) repeat-x;
}
table.progress td.active {
        background: url(images/progress-active.gif) repeat-x;
        font-weight: bold;
}
table.progress td.next {
        background: url(images/progress-next.gif) repeat-x;
}
table.progress td.prevprev,
table.progress td.prevactive,
table.progress td.activenext,
table.progress td.nextnext,
table.progress td.nextend {
        width: 22px;
        padding: 0;
}
table.progress td.prevprev {
        background: url(images/progress-prev-prev.gif) no-repeat;
}
table.progress td.prevactive {
        background: url(images/progress-prev-active.gif) no-repeat;
}
table.progress td.activenext {
        background: url(images/progress-active-next.gif) no-repeat;
}
table.progress td.nextnext {
        background: url(images/progress-next-next.gif) no-repeat;
}
table.progress td.nextend {
        background: url(images/progress-next-end.gif) no-repeat;
}


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 *
 *  Other Styles
 *
 */

/* Location style */
.location {
        color: rgb(200, 200, 200);
        font-weight: bold;
        font-size: smaller;
}

/* Semantic markers */
.figure {
        background: white; 
        margin: 6px;
        padding: 0.5cm; 
        padding-top: 0.1cm;
        padding-bottom: 0.3cm;
        border-style: solid; 
        border-width: 1px;
}
.example {
        padding-left: 1.5em;
}
.illustration {
        text-align: center;
}
.details {
        font-size: smaller;
}
.mandatory {
        color: red; 
        font-weight: bolder; 
        font-size: smaller;
        vertical-align: super;
}
.important {
        padding: 3px;       
        background: #ffdddd;
        color: red; 
        font-weight: bolder; 
}
.important a,
.important a:link,
.important a:visited,
.important a:active {
        background: rgb(255, 204, 204);
        color: red;
}
.unimportant {
        color: rgb(170, 170, 170);
}
.correct {
        color: green;
}
.incorrect {
        color: red;
}
.draft {
        background: rgb(255, 204, 204);
        color: red;
        padding-left: 3px;
        padding-right: 3px;
}
