/* ================================================================
    CSS layout definition for an XSLies presentation.

    Modified for PLies by Dobrica Pavlinusic <dpavlin@rot13.org>

    Modified for pylize by Christopher Arndt <chris.arndt@web.de>

    Copyright 2000 Sami Lempinen (lempinen@iki.fi)
    See the file LICENSE for copyright information.

    $Id: default.css,v 1.10 2005/08/03 22:43:09 Administrator Exp $
   ================================================================ */

/* ---------------------------------------------------------------- */
/* General settings */

html {
    height: 100%;
}

body {
    margin: 0px;
    padding: 0px;
    font-family: verdana, arial, helvetica, sans-serif;
    font-size: large;
	background-color: #fff7f0;
}

#body {
    position: relative;
    top: 0px;
}

p, pre {
    font-family: verdana, arial, helvetica, sans-serif;
	font-style: normal;
	font-weight: normal;
}

a:link, a:visited, a:active {
    color: maroon;
    text-decoration: none;
}

a:hover {
    color: #804040;
}

/* ---------------------------------------------------------------- */
/* Headings */

h1 {
    margin-top: 0pt;
    margin-bottom: 0pt;
    font-size: xx-large;
}

h2 {
    margin-top: 0pt;
    margin-bottom: 0pt;
    font-size: x-large;
}

h3 {
    margin-top: 0pt;
    margin-bottom: 0pt;
    font-size: x-large;
    font-style: italic;
}

div.section-title h1 {
    text-align: center;
}

/* ---------------------------------------------------------------- */
/* Title page */

h1.title {
    font-size: xx-large;
    margin-top: 0pt;
    margin-bottom: 1em;
}

h2.subtitle {
    font-size: x-large;
    margin-top: 0pt;
    margin-bottom: 2em;
}

/* ---------------------------------------------------------------- */
/* Page header */

div#header {
	border: medium black double;
    margin: 0.5em;
}

div#header div#headercontents {
    background-color: #558899;
	border: small white solid;
}

div#header table {
	width: 100%;
	margin: 0px;
	padding: 0px;
}

div#header table td.logo {
	text-align: center;
	vertical-align: middle;
	padding-left: 1em;
	padding-right: 1em;
	padding-top: 0.2em;
	padding-bottom: 0.2em;
	width: 20%;
}

div#header table td.pagetitle {
    color:          #ffdd44;
/*	color: #b8b49c;*/
	text-align: right;
	vertical-align: middle;
	padding-left: 0.2em;
	padding-right: 0.4em;
	padding-top: 0.2em;
	padding-bottom: 0.2em;
}

/* ---------------------------------------------------------------- */
/* Page footer */

div#footer {
    width: 100%;
    position: relative;
}

table.footer {
    width: 100%;
    border-width: 0px;
}

td.footer {
    text-align: center;
}

td.footer-info {
    width: 33%;
    font-size: small;
    text-align: left;
}

td.footer-count {
    font-size: small;
    text-align: center;
}

td.footer-nav {
    width: 33%;
    font-size: small;
    text-align: center;
}

td.footer-org {
     font-size: small;
     text-align: right;
}

table.nav-links {
	margin-left: auto;
	margin-right: auto;
}

table.nav-links td {
	width: 10%;
	text-align: center;
}

table.nav-links td.link_toc {
	width: 10em;
}

/* ---------------------------------------------------------------- */
/* Page content */

div#content {
    position: relative;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
	width: 90%;
    font-size: large;
}

/* ---------------------------------------------------------------- */
/* Table of contents */

div.toc {
    text-align: left;
    margin-left: 5em;
    margin-right: 5em;
    font-size: normal;
}

div.toc h3 {
    text-align: left;
    font-size: x-large;
    font-weight: bold;
}

ul.toc-section {
    list-style-type: none;
    list-style-image: url(../icons/kaestchengrau.gif);
}

ul.toc-subsection {
    list-style-type: none;
/*
    list-style-image: url(../icons/pfeilgrau.gif);
*/
}

/* ---------------------------------------------------------------- */
/* Abstract */

div.abstract {
    text-align: justify;
    margin-top: 1em;
    margin-left: 3em;
    margin-right: 3em;
    font-size: normal;
}

div.abstract h3 {
    text-align: center;
    font-size: xx-large;
    font-weight: bold;
    margin-bottom: 0.5em;
}

/* ---------------------------------------------------------------- */
/* Particular elements */

.note {
    color: #ee5500;
}

pre, code {
    font-family: courier, monospaced;
}

small {
    font-size: x-small;
}

/* for better support of Mozilla composer */

blockquote {
    color: #333333;
    font-style: italic;
}

strong {
    color: #ee5500;
}

/* progress bar */
td.pcnt-done {
    background: #ee5500;
    font-size: x-small;
    text-align: center;
}

td.pcnt-left {
    background: #aac0cc;
    font-size: x-small;
    text-align: center;
}

/* ---------------------------------------------------------------- */
/* Special classes */

p.text {
    text-align: justify;
    margin-left: 3em;
    margin-right: 3em;
    font-size: large;
}

/* for code examples and the like */
pre.literal-block, pre.doctest-block, div.literal-block, pre.code {
	margin-left: 2em;
	margin-right: 2em;
	background-color: #eeeeee;
	border: thin black solid;
	padding: 5px;
	font-family: monospace;
}

/* for elements that appear only after hitting the spacebar */
.delayed {
    visibility: hidden;
}

/* for item lists with a nice check instead of a bullet */
ul.fancy {
    list-style-image: url(../icons/pingrau.gif);
}

/* for external links */
a.extlink:before {
    content: url(../icons/external.png);
}

/* nice tables */
table.fancytable {
	border: medium solid black;
	border-collapse: collapse;
	margin-left: auto;
	margin-right: auto;
}

table.fancytable tr {
}

table.fancytable th {
	border: thin solid black;
	font-weight: bold;
	color: white;
	background-color: gray;
	text-align: center;
}

table.fancytable td {
	border: thin solid black;
	font-weight: normal;
	color: black;
	background-color: lightgray;
	text-align: center;
}

/* ---------------------------------------------------------------- */
/* Printing */

@page {
    size: landscape;
}
