/*  common.css - MoinMoin Default Styles

Copyright (c) 2001, 2002, 2003 by Juergen Hermann
*/

/* content styles */

/* colours: /usr/X11R6/lib/X11/rgb.txt */
html {
	background-color: white;
	color: black;
	font-family: Arial, sans-serif;
	font-size: 1em;
	line-height: 1.25em;
    text-align: justify;
}

#editor-textarea {
    width: 50em;
}

#editor-comment {
    width: 50em;
}

#content {
    margin-top:25px;
}

p {
    margin: 0.5em;
}

/* links */
a:link { 
        color: #FF7F50;
        font-weight: bold;
        text-decoration: none;
}

a:visited  { 
        color: #FF7F50;
        font-weight: bold;
        text-decoration: none;
}

a:active   { color: RGB(0, 0, 0); }
a.nonexistent, a.badinterwiki {color: #404040;}

a#loginlink {
    color: grey;
    font-weight: normal;
    text-decoration: underline;
}

a#login {
    color: grey;
    font-weight: normal;
    text-decoration: underline;
}

#footer {
    color: grey;
    font-weight: normal;

}
a.mlink {
    text-decoration: underline;
}

#footer ul {
    display: inline;
}
#footer li {
    display: inline;
    padding: 0 0.5em 0 0;
}


/* Headings */

h1 {
	/* h1 is out of the content div! */
	margin: 0;
	padding: 0;
	color: black;
	font-size: 2em;
	line-height: 1.2em;
}

h1 a {
	text-decoration: none;    
}

h2, h3, h4, h5, h6
{
	color: #ccc;
    font: 40px Verdana,sans-serif;
	
    line-height: 1.2em;
}	

h2 {
	padding: 0.5em 0 0.3em 0;
    color: black;
    border-bottom: 2px solid #ccc;
    
    font-size: 1.6em;
}

h3 {
    font-size: 1.5em;
    margin-bottom: 0.6em;
}

h4 {
    margin: 0;
    padding: 0;
    font-size: 1.3em;
    padding: 0 0 0.6em 0;
}

h5, h6 {
    margin: 0;
    padding: 0 0 0.6em 0;
    font-size: 1em;
}

li p {
	margin: .25em 0;
}

li.gap {
	margin-top: 0.5em;
}

a, img, img.drawing {
	border: 0;
}

dt {
	font-weight: bold;
}

pre {
	padding: 0.5em;
	font-family: courier, monospace;
	border: 1pt solid #c0c0c0;
	background: #F0ECE6;
	white-space: pre;
	/* begin css 3 or browser specific rules - do not remove!
	see: http://forums.techguy.org/archive/index.php/t-249849.html */
    white-space: pre-wrap;
    word-wrap: break-word;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    /* end css 3 or browser specific rules */
}

table
{
	margin: 1em 0.5em;
	border-collapse: collapse;
}

td
{
	padding: 0.25em 0.5em;
	border: 1px dotted #000;
}

td p {
	margin: 0;
	padding: 0;
}

/* standard rule ---- */
hr {
	height: 1px;
	background-color: #c0c0c0;
	border: none;
}

/* custom rules ----- to ---------- */
.hr1 {height: 2px;}
.hr2 {height: 3px;}
.hr3 {height: 4px;}
.hr4 {height: 5px;}
.hr5 {height: 6px;}
.hr6 {height: 7px;}

/* Replacement for html 3 u tag */
.u {text-decoration: underline;}

.footnotes ul {
	padding: 0 2em;
	margin: 0 0 1em;
}

.footnotes li {
	list-style: none;
}

.info {
    font-size: 0.85em;
    color: gray;
}

#pageinfo {
    margin-top: 2em;
}

/* eye catchers */
.warning 
{
	color: red;
}

.error 
{
	color: red;
}

/*
strong.highlight 
{
	background-color: #ffcc99;
	padding: 1pt;
}
*/

#credits img {
	vertical-align: middle;
}

/* Recent changes */

.recentchanges p {
	margin: 0.25em;
}

.recentchanges td {
	vertical-align: top;
	border: none;
	border-bottom: 1pt solid #F0ECE6;
	background: #F7F6F2;
}

.rcdaybreak td {
	background: RGB( 20,  80, 120);
	border: none;
}

.rcdaybreak td a {
	font-size: 0.88em;
}

.rcicon1, .rcicon2 {
	text-align: center;
}

.rcpagelink {
	width: 33%;
}

.rctime {
	font-size: 0.88em;
	white-space: nowrap;
}

.rceditor {
	white-space: nowrap;
	font-size: 0.88em;
}

.rccomment {
	width: 66%;
	color: gray;
	font-size: 0.88em;
}

.rcrss {
	float: right;
}

.recentchanges[dir="rtl"] .rcrss {
	float: left;
}

/* User Preferences */

.userpref table, .userpref td {
	border: none;
}

/* CSS for new code_area markup used by Colorizer and ParserBase */

div.codearea { /* the div makes the border */
	margin: 0.5em 0;
	padding: 0;
	border: 1pt solid #AEBDCC;
	background-color: #F3F5F7;
	color: black;
}

div.codearea pre { /* the pre has no border and is inside the div */
	margin: 0;
	padding: 10pt;
	border: none;
}

a.codenumbers { /* format of the line numbering link */
	margin: 0 10pt;
	font-size: 0.85em;
	color: gray;
}

/* format of certain syntax spans */
div.codearea pre span.LineNumber {color: gray;}
div.codearea pre span.ID         {color: #000000;}
div.codearea pre span.Operator   {color: #0000C0;}
div.codearea pre span.Char       {color: #004080;}
div.codearea pre span.Comment    {color: #008000;}
div.codearea pre span.Number     {color: #0080C0;}
div.codearea pre span.String     {color: #004080;}
div.codearea pre span.SPChar     {color: #0000C0;}
div.codearea pre span.ResWord    {color: #A00000;}
div.codearea pre span.ConsWord   {color: #008080; font-weight: bold;}
div.codearea pre span.Error      {color: #FF8080; border: solid 1.5pt #FF0000;}
div.codearea pre span.ResWord2   {color: #0080ff; font-weight: bold;}
div.codearea pre span.Special    {color: #0000ff;}
div.codearea pre span.Preprc     {color: #803999;}

div#akct {
    position: absolute; top:0px; right: 0px; z-index: 2342; width:113px; height:88px;
    background-image: url(http://wiki.vorratsdatenspeicherung.de/images/Akvse.gif);
    background-repeat: no-repeat;
    background-position: right top;
    border:none;
    padding:0;
    margin:0;
    text-align: right;
}

div#akct img {
    border:none;
    padding:0;
    margin:0;
    background: none;
}

div#akct a#akpeel img {
        width: 113px;
        height: 88px;
}

div#akct a, div#akct a:hover {
    text-decoration: none;
    border:none;
    padding:0;
    margin:0;
    display: block;
    background: none;
}

div#akct a#akpeel:hover {
    position: absolute; top:0px; right: 0px; z-index: 4223; width:500px; height:500px;
    display: block;
    background-image: url(http://wiki.vorratsdatenspeicherung.de/images/Akvsb.gif);
    background-repeat: no-repeat;
    background-position: right top;
}

div#akct a#akpreload {
    background-image: url(http://wiki.vorratsdatenspeicherung.de/images/Akvsb.gif);
    background-repeat: no-repeat;
    background-position: 234px 0px;
}


