/***********************************************************************
** pmwiki.css
**  Copyright 2004-2006 Patrick R. Michaud (pmichaud@pobox.com)
**  Copyright 2006 Hagan Fox
**  This file is part of PmWiki; you can redistribute it and/or modify
**  it under the terms of the GNU General Public License as published
**  by the Free Software Foundation; either version 2 of the License, or
**  (at your option) any later version.  See pmwiki.php for full details.
***********************************************************************/

/* This sets the overall frame for the site */
body {
  margin:0px; background-color: #FFFFFF; 
  font-family:Arial,Helvetica,sans-serif; font-size:14px;
}

/* These control the fixed-width text elements of the page */
pre, code { font-family:'Lucida Console','Andale Mono','Courier New',Courier; }
pre code, code code, pre pre { font-size:100%; }

/* These primarily adjust the size and spacing of heading elements,
** most browsers have atrocious defaults for these. */
h1, h2, h3, h4, h5, h6 { margin-top: 10px; margin-bottom: 5px; font-weight: bold; }
h1
{
	font-size: 32px;
}

h2
{
	font-size: 26px;
}

h3
{
	font-size: 21px;
}

h4
{
	font-size: 17px;
}

h5
{
	font-size: 14px;
}

h6
{
	font-size: 12px;
}

a {text-decoration: none;}

#wikihead { 
  position:absolute;
  left:265px; top:4px;
  font-size: 40px;
  color:#FFFFFF;
  z-index:2;
} 

/* These are for the left-sidebar. */
#wikileft {
  text-align:left;
  font-size:11px;
  padding:0px;
}
#wikileft ul {
  padding: 3px 3px 3px 5px;
  list-style:none;
  overflow: hidden;
  margin-left: 10px;
  margin-right: 10px;
  border-left: 1px solid #000000;
  border-right: 1px solid #000000;
  border-bottom: 1px solid #000000;
  background-color: #CFE6DA;
}

#wikileft ul ul{
  padding: 0px 0px 0px 3px;
  list-style:none;
  overflow: hidden;
  margin-left: 10px;
  margin-right: 0px;
  margin-bottom: 5px;
  border-left: 2px solid #8FB3A0;
  border-right: 0px;
  border-bottom: 0px;
}

#wikileft li{
  margin-top: 4px;
  margin-bottom: 4px;
  line-height: 11px
}

#wikileft a
{
	font-weight: bold;
}

#wikileft a:link
{
	color: #339;
}

#wikileft a:visited
{
	color: #339;
}


#wikileft a:hover
{
	color: #33F;
}

#wikileft a:active {
	color: #F33;
}

.sidehead {
  font-weight: bold;
  padding: 3px 3px 3px 12px;
  background-color: #8FB3A0;
  border-left: 1px solid #000000;
  border-right: 1px solid #000000;
  border-top: 1px solid #000000;
  margin-left: 10px;
  margin-right: 10px;
}

/* These affect the main content area. */
#wikibody { 
  padding:0px 0px 10px 0px; background-color:white; 
}
#wikicmds { 
  float:right; white-space:nowrap; 
  font-family:Verdana,sans-serif; font-size:80%; 
}
#wikicmds ul { list-style:none; margin:0px; padding:0px; }
#wikicmds li { display:inline; margin:0px 5px; }
#wikicmds li a { text-decoration:none; color:black; border:none; }
#wikicmds li a.createlink { display:none; }
#wikicmds li a:hover { text-decoration:underline; color:blue; }
.pagegroup { margin-top:8px; margin-bottom:2px; }
.pagetitle { margin:0px; font-weight:normal; }
.wikiaction { margin-top:4px; margin-bottom:4px; }
#wikitext { margin-top:12px; margin-right:12px;}
#wikitext table { font-size:100%;} /* For MSIE 5.5 */

/* These are for the edit form. */
#wikiedit form { margin:0px; width:100%; }
#wikiedit textarea { width:100%; }
.wikimessage { margin-top:4px; margin-bottom:4px; font-style:italic; }

/* These affect the lines at the very bottom. */
#wikifoot { 
  padding-left:178px; padding-bottom:4px; border-top:1px #cccccc solid;
  font-family:Verdana,sans-serif; font-size:80%; 
}

/* These affect the printed appearance of the web view (not the separate
** print view) of pages.  The sidebar and action links aren't printed. */
@media print {
  body { width:auto; margin:0px; padding:0.5em; }
  #wikihead, #wikileft, #wikicmds, .footnav { display:none; }
  #wikifoot { padding:2px; }
}

