/*CSS (or Cascading Style Sheets) make it easier to work with many pages of xhtml because, rather than having to worry about re-inputting data you can simply make a standard order and have each page reference that order via the css file. Comments are good for letting yourself know what is going on in style sheets, and must be left in this format. Below are a number of the standard settings I have chosen for the ZCW web site, but that may change over time as determined by staff approval*/

/*ADRIAN!!! MAKE SURE TO UPLOAD IN ASCII MODE, NOT BINARY!!!*/

body {background:url(../images/gonzospecial.jpg);}
/*adds the texture image to the background, offering depth where before there was none*/

p.group {font-weight: bold; font-size: 1.25em; color: blue;}

p {color: purple;}
/*causes all text that falls within the <p> or paragraph element to come out blue*/

/*stops table cells from having colored lines around them*/

a:link {color: #0000FF; cursor: pointer; font-weight: normal; text-decoration: none;}
a:visited {color: #00CCCC; cursor: pointer; font-weight: normal; text-decoration: none;}
a:focus {color: #00CCCC; cursor: pointer; font-weight: normal; text-decoration: none;}
a:hover {color: black; cursor: pointer; font-weight: normal; text-decoration: none;}
a:active {color: black; cursor: pointer; font-weight: normal; text-decoration: none;}
/*modifies links to pages and web sites, keeping them uniform*/

ul {align: left;}

img {border: none;}
/*eliminates image borders in web pages*/

/*class selectors are below, and begin with a . */

.black {font-weight: normal; color: #000000;}

.blue {font-weight: normal; color: #000088;}

.dblue {font-weight: normal; color: #000088;}

.emph {font-style: italic;}

.indent {text-indent: 2em; }

.strong {font-weight: bold;}

.stremph {font-weight: bold; font-style: italic;}

.small {font-size: 75%; }

.stumpy {font-style: italic; font-size: 75%;}

.highlight {background-color: transparent; color: white;}

.under {text-decoration: underline;}

.leftsidebar {width: 200px; border: none; background: #CCF; color: blue; text-align: left; vertical-align: top; line-height: 200%;}
/*modifies left option sidebar*/

.articlecolumn {width: 500px; border: none; text-align: left; vertical-align: top; background: #FFFFCC;}
/*modifies main column area*/

.rightsidebar {width: 200px ; border: none; background: #CCF; text-align: left; vertical-align: top;}
/*modifies right option sidebar*/

.center {text-align: center;}
/*creates a standard for use with custom in-page code modification*/

.right {text-align: right;}
/*creates a standard for use with custom in-page code modification*/

.smallish {font-size: 75%;}

.main {vertical-align: top;}
/*creates a standard for use with custom in-page code modification*/

.middle {vertical-align: middle;}

.zenithbar {width: 980px; border: none; background: #ccc;} 

.big {font-size: 1.5em;}

.bigger {font-size: 2em;}

/*title selectors are below*/

div#big {font-size: 1.5em;}

div#bigger {font-size: 2em;}

#navbar ul {margin: 0; padding: 0; list-style: none;}

#navbar a {display: block; width: 10em;}

#navbar li {float: left; width: 10em;}

#navbar li:hover ul {display: block; width: 10em;}

div.content {clear: left;}








