/*  common.css - MoinMoin Default Styles

Copyright (c) 2001, 2002, 2003 by Juergen Hermann
Copyright (c) 2006 by Thilo Pfennig

This is a common style sheet intended to be on top of all other styles of a cascade.
Instead of changing EVERY style sheet you should change common important settings here,
import them with "@import (../../common/css/common.css) and overwrite them later in the themes. 

*/

/* import styles for MonthCalendar macro */
@import url("monthcalendar.css") 

/* content styles */

html {
	background-color: white;
	color: black;
	font-family: Arial, Lucida Grande, sans-serif;
	font-size: 1em;
}

/* Common link settings */

a, img, img.drawing {
	border: 0px; /* no border */
}


/* Common Icons for some links */
a.www:before {content: url(../img/icons/moin-www.png); margin: 0em 0.2em;}
a.http:before {content: url(../img/icons/moin-www.png); margin: 0em 0.2em;}
a.https:before {content: url(../img/icons/moin-www.png); margin: 0em 0.2em;}
a.file:before {content: url(../img/icons/moin-ftp.png); margin: 0em 0.2em;}
a.ftp:before {content: url(../img/icons/moin-ftp.png); margin: 0em 0.2em;}
a.nntp:before {content: url(../img/icons/moin-news.png); margin: 0em 0.2em;}
a.news:before {content: url(../img/icons/moin-news.png); margin: 0em 0.2em;}
a.telnet:before {content: url(../img/icons/moin-telnet.png); margin: 0em 0.2em;}
a.irc:before,a.ircs:before {content: url(../img/icons/moin-telnet.png); margin: 0em 0.2em;}
a.mailto:before {content: url(../img/icons/moin-email.png); margin: 0em 0.2em;}
a.attachment:before {content: url(../img/icons/moin-attach.png); margin: 0em 0.2em;}
a.badinterwiki:before {content: url(../img/icons/moin-inter.png); margin: 0em 0.2em;}
a.interwiki:before {content: url(../img/icons/moin-inter.png); margin: 0em 0.2em;}

/* Common list settings */

dt {
	font-weight: bold;
}

li p {
	margin: .25em 0em;
}

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

/* Common preformatted settings */

pre {
	padding: 5px;
	border: 1px solid #c0c0c0;
	font-family: courier, monospace;
	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 */
}

pre.comment {
    background-color: #CCCCCC;
    color: red;
    padding: 0em;
    margin: 0em;
    border: 0em;
}

pre.comment:before {
    content: url(../img/smileys/attention.png);
}
/* Common table settings */

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

td {
	padding: 0.25em 0.5em 0.25em 0.5em;
}

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

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

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


/* Replacement for deprecated html 3 <u> element and html 4 <strike> */
.u {text-decoration: underline;}
.strike {text-decoration: line-through;}



/* TableOfContents macro */

.table-of-contents { 
	font-size: small;
	text-align:left;
	margin: 0.5em; padding-left: 2em;
	width:50%; 
}
.table-of-contents ol { 
	margin:0em; margin-left:1em;
	list-style-type: decimal; 
}

.table-of-contents ul {
	margin:0em;
	list-style-type:none; 
}

.table-of-contents-heading { 
	font-weight:bold; 
	padding:0em; 
	margin:0em; 
}

/* Footnotes Unordered List */

.footnotes ul {
	padding: 0em 2em;
	margin: 0em 0em 1em;
	list-style: none;
}

/* Common Info Class */ 

.info {
    float: right;
    font-size: 0.7em;
    color: gray;
}

/* eye catchers */

.warning {
	color: red;
}

.error {
	color: red;
}

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

/* Recent changes */

.recentchanges td {
	border: none;
	vertical-align: top;
}

.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: 50%;
	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;}


/* for diff parser */
div.codearea pre span.DiffAdded   {color: #4876FF;}
div.codearea pre span.DiffRemoved {color: #FF0000;}
div.codearea pre span.DiffChanged {color: #FF7F50;}
div.codearea pre span.DiffSeparator {color: #228B22; font-weight: bold}

/* Miscellaneous common styles */
#pagebottom {
	clear: both;
	}






