/*
 * $Header: /cvsroot/tikiwiki/tiki/styles/technology.css,v 1.7.2.4 2004/03/17 20:06:12 damosoft 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. */
	color: rgb(255,255,204);
	background: rgb(102,153,153) url('technology/tecbkgnd.gif') repeat fixed;
 
 /* 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;
}

a:link
{
	color: rgb(0,51,51);
}
a:visited
{
	color: rgb(204,204,153);
}
a:active
{
	color: rgb(255,255,255);
}

/* headings */
h1
{
	color: rgb(204,204,153);
	background: transparent url('technology/atecbnr.gif') no-repeat;
	padding-top: 12px; 
	text-align: center;
}
h2, marquee
{
	color: rgb(204,204,153);
	font-size: 2.2em;
}
h3
{
	color: rgb(204,204,153);
	font-size: 2em;
}
h4
{
	color: rgb(204,204,153);
}
h5
{
	color: rgb(204,204,153);
}
h6
{
	color: rgb(204,204,153);
}

/* lists */
ul
{
	list-style-image: url('technology/atecbul1.gif');
}
ul ul
{
	list-style-image: url('technology/atecbul2.gif');
}
ul ul ul
{
	list-style-image: url('technology/atecbul3.gif');
}
li:hover
{
	list-style-image: url('technology/tecbull1.gif');
}
li li:hover
{
	list-style-image: url('technology/tecbull2.gif');
}
li li li:hover
{
	list-style-image: url('technology/tecbull3.gif');
}

/* images have no border by default */
img {
	border: 0;
}

/* 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: transparent url(technology/tecvbs.gif) no-repeat scroll top;
	border: dotted 0.2em rgb(0,51,51);
	margin: 0.2em;
}
div.box:hover {
	background-image: url(technology/tecvbh.gif);
}
div.box-title {
	text-align: center;
	padding-top: 15px;
}
div.box-title table {
	width: 100%;
}
.box-data {
	padding-top: 10px;
}
/*
 * 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('technology/up.gif') no-repeat center;
}
.movemoddown {
	background: transparent url('technology/down.gif') no-repeat center;
}
.movemodopside {
	background: transparent url('technology/admin_move.gif') no-repeat center;
}
.removemod {
	background: transparent url('technology/delete.gif') no-repeat center;
}

/*
 * common page classes
 */
.linkbut {
	font-size: 0.8em;
	padding: 1px 3px 1px 3px;
	color : rgb(255,255,204);  
	background: rgb(102,153,153); 
	text-decoration: none;
	border: 1px solid rgb(0,102,102);
}
.pagetitle {
	display: block;
	color: rgb(204,204,153);
	background: transparent url('technology/tecbnr.gif') repeat-x;
	padding-top: 9px; 
	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;
}

/*
 ***** 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%;
}

