
/*
   This sample stylesheet lists all possible stylesheet sections, that
   ewiki and its plugins may output. But don't forget to also have a look
   into the README section about this. (This also obsoletes the 'core.css'
   sample in the fragments/css/ directory.)
*/



/* a typical wiki page outout is separated into following classes:

 .wiki.<action>.<PageName>
    .text-head
       h2.text-title
    .text-body
       <...>
    .wiki-plugins
       .action-links
       .<more-plugins>
*/
.wiki.edit.FrontPage {
   background: transparent;
}

.wiki {
  text-align: left;
  text-indent: 0pt;
  padding: 0pt 0pt 0pt 0pt;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 10pt;
  color: #000000;
  font-weight: normal;
  text-shadow: none;
  font-style: normal;
  text-decoration: none;
}

.wiki h3 {
  text-align: left;
  text-indent: 0pt;
  padding: 12pt 0pt 3pt 0pt;
  font-family: Verdana, Helvetica, Arial, sans-serif;
  font-size: 11pt;
  color: #FF6633;
  font-weight: bold;
  text-shadow: none;
  font-style: normal;
  text-decoration: none;
}

.text-head {
  font-family: Verdana, Helvetica, Arial, sans-serif; 
  font-size: 18px; 
  font-weight: bold; 
  color: #000099;
}

/*-- links to non-existent pages*/
.NotFound * {
   text-decoration: none;
   border-bottom: dashed 1px blue;
}
.NotFound a {
   color: red;
   border-bottom-style: none;
}


