/*
 * $Header: /cvsroot/tikiwiki/tiki/styles/simple.css,v 1.7.2.7 2004/06/16 12:12:13 redflo Exp $
 *
 * 'Simple' style for TikiWiki - simple and easy to understand yet pleasant for your eye
 * Enables font re-sizing in all browsers, aims to be WCAG 1.0 compatible (not yet), one simple css file.
 * We also try to make better templates (*.tpl files in templates/styles/simple) towards xhtml 1.0 strict validity.
 * For proper CSS2 syntax and possible values see e.g. http://www.zvon.org/xxl/CSS2Reference/Output/
 *
 */

/*
 * first go common html elements; here we start with styling the body
 */

body {
 /* setting up the background. the color, then bg image and its form of repeating. */
 background: #ffffff; /* url('background.png') repeat-y; Someone forgot to upload that pic? */
 /* shorthand for default font setting. size in percentage and font-family here */
 font: 75% 'Trebuchet MS', 'Luxi Sans', 'Lucida Grande', Tahoma, helvetica, sans-serif;
 /* size of 75% here prevents unreadable microscopic font size in MSIE when using em for further elements sizes */
 margin: 0; /* zero margins for body */
 padding: 0; /* and padding */
}

/* default font size for all text in divs. works together with 75% font-size for body */
div {
 font-size: 1em;
 padding: 0.2em;
}

/* default color for links */
a {
 color: #0077cc;
}

/* default color for hovered links */
a:hover {
 color: #0099ee;
}

/* headings */
h1 {
 text-align: center;
}
/*
h2 {
 font-size: 2.2em;
}
h3 {
 font-size: 2em;
}
*/

/* images have no border by default */
img {
 border: 0;
}
TABLE.galtable {
        border-collapse: collapse;
        width: 100%;
}

/* Description on wiki pages */
small {
	font-size: 0.8em;
}

/* Prevent forms from generating unwanted padding or margins */
form {
	margin: 0;
	padding: 0;
}


/*
 ***** Here we define classes *****
 */
.hidden {
 display: none;
}
/*
 ** This can be floated left or right **
 */
.float-wrapper {
 /*float: left; *//*width: 80%;*/
 }
/*  This gets margined the same direction as #maincontent gets floated */
.left {
 /*margin-right: 75%;*/
 /*float: left;*/
}
/* This gets margined the same direction as .float-wrapper gets floated */
.right {
 /*margin-left: 80%;*/
 /*float: right;*/
}


/* we use this e.g. for <br /> to clear all instead of <br clear="all" /> */
.clear {
 clear: both;
}

/*
 * modules
 */
.box {
 background-color: #ddeeff;
 border: dashed 0.2em #abcdef;
 margin: 0.2em;
}
div.box-title {
 background: #abcdef;
 text-align: center;
}
div.box-title table {
    width: 100%;
}
.box-data {}
/*
 * controls for modules (logged-in users only)
 */
.modcontrols { /* group of control buttons */
 display: block;
 float: right;
 width: 64px;
 height: 16px;
}
/* every button setting */
.modcontrols a {
 display: block;
 float: left;
 width: 16px;
 height: 16px;
}
.modcontrols a span {
 display: none; /*prevents displaying alternative text over control buttons */
}
.movemodup {
 background: transparent url('simple/up.gif') no-repeat center;
}
.movemoddown {
 background: transparent url('simple/down.gif') no-repeat center;
}
.movemodopside {
 background: transparent url('simple/admin_move.gif') no-repeat center;
}
.removemod {
 background: transparent url('simple/delete.gif') no-repeat center;
}

/*
 * common page classes
 */
.linkbut {
 font-size: 0.8em;
}
.pagetitle {
 display: block;
 text-align: center;
 font-size: 1.3em;
}
.titlebar {
 background-color: #abcdef;
}
/*
 * content boxes
 */
.cbox-title {
 font-size: medium;
}
/*
 * wiki pages
 */
.wikitext {
 background-color: #ffffff;
}
.wiki-edithelp {
 display: none;
}
/*
 * articles
 */
.titlea {
 font-size: medium;
}
/*
 * image galleries
 */
.showimage {
 text-align: center;
}

/*
 ***** Here we define IDs *****
 */
/*** This can be floated left or right ***/
#maincontent {
 /*float: right;*/
 /*width: 70%;*/
 /*position: relative;
 margin: auto;*/
 /*position: absolute;
 top: 2em;*/
}
#modules1 {
 /*width: 24%;*/
}
#modules2 {
 /*width: 24%;*/
}
/* hide comments and the form */
#comzone {
 display: none;
}
/* TikiIntegrator: By default copy rules dialog not shown */
#rules-copy-panel {
    display: none;
}

TABLE.admin{
  width: 100%;
}

