/* --- BASIC STYLES -------- -------- ------- ------ */

body { 
	margin: 0px;
	color: #000000;
	background-color: #ffffff;
	padding: 0px;
}

body, div, p, td, li, a, h1, h2, h3, h4, h5 {
 	font-family: Arial, Helvetica, Geneva, sans-serif; 
}

body, div, p, td, a, th, li, input, textarea {
	font-size: 11px;
	font-weight: normal;
}

p, td	{ 
	margin-top: 0; 
	padding-top: 0; 
	line-height: 1.5em;
}

ol { 
	margin-left: 0px; 
	padding-left: 8px; 
	line-height: 1.3em;
	list-style-type: decimal;
}

ul { 
	margin-left: 0px; 
	padding-left: 0px; 
	line-height: 1.3em; 
	list-style: disc;
}

li { 
	margin-left: 1.5em;
	margin-bottom:0.5em;
}

input, textarea{
	border-color: #000000;
	border-width: 1px;
	background-color: #ffffff;
	color: #000000;
}

/*  TOP MENU BAR  ------------- USAGE ------------------------ */

/* Menu bar is the black bar at the top of the page.
In the html page, start with "div id=menubar" with a width of 100%. 
The table holding the menu choices is within this div so it can have
fixed cell sizes that won't change with the size of screen.
Each cell holds a link. The a style uses display:block and width 100%. 
This allows the entire cell area, rather than just the text, to be sensitive
to a mouse click.  */


#menubar {
	color: White;
	background-color: Black;
	width: 100%;
	height: 20px;
}

#menubar table {
	border-style: none;
	margin: 0px;
	padding: 0px;
}

#menubar td {
	width: 185px;
	text-align: center;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 1px;
	line-height: 18px;
}

#menubar a {
	color: White;
	background: transparent;
	text-decoration: none;
	display: block;
	width: 100%;
	font-weight: bold;
}

#menubar a.performances:hover {
	background: #666699;
	color: White;
}

#menubar a.about:hover {
	color: White;
	background: #805480;
}

#menubar a.classes:hover {
	color: White;
	background: #ffd068;
}

#menubar a.guild:hover {
	color: White;
	background: #486ca2;
}

#menubar a.announce:hover {
	color: White;
	background: #996699;
}

/* STYLES FOR PAGE LAYOUT  - left column for navigation, right for content */

table#pagelayout {
	color: Black;
	background-color: White;
	width: 100%;
	height: 100%;
}

#navcol {
	padding: 0px;
	width: 145px;
	height: 100%;
} 

#contentcol {
	/*color: black;
	background-color: White;*/
	padding: 0px;
}



/* styles for left column navigation. colors are embedded in pages */ 

#sectionnav {
	margin-bottom: 2em;
	margin-top: 1em;
	width: 148px;
}

#sectionnav h3 {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 0px 0px 0px 6px;
	padding-left: 0px;
	width: 100%;
}

#sectionnav p {
	margin: 0px;
	font-size: 11px;
}

#sectionnav a {
	font-weight: bold;
	text-align: left;
	text-decoration: none;
	padding: 1px 0px 1px 6px;
	display: block;
	margin: 0px;
	width: 100%;
}

#sidegraphic {
	margin-top: 35px;
	padding: 0px;
	border-style: none;
}


#address {
	margin-top: 2em;
	width: 145px;
}

#address h3 {
	font-size: 11px;
	font-weight: bold;
	margin: 0px 0px 0px 2px;
	padding-left: 0px;
	width: 100%;
}

#address p {
	margin: 0px 0px 0px 2px;
	font-size: 11px;
}

#address a {
	font-weight: bold;
	font-size: 11px;
	text-align: left;
	text-decoration: underline;
	padding: 0px 0px 0px 1px;
	display: block;
	margin: 0px;
	width: 100%;
}


html>body #sectionnav a { width: auto; } ; /*for mozilla compatibility*/ 


/*STYLES FOR RIGHT COLUMN (CONTENT AREA)*/

/*Bar across the main portion of the page. Embedded style controls color.*/

#logobar {
	width: 100%;
}

#logobar table {
	width: 550px;
	border-style: none;
	padding: 0px;
}

#logobar td {
	line-height: 20px;
	text-align: right;
}

#logobar a{
	text-decoration: none;
	text-align: right;
	padding-left: 25px;
}


/*Styles for Content Area. Colors are in embedded styles*/

#content {
	margin-left: 30px;
	margin-top: 0px;
	height:  1000px;
	width: 530px;
	padding: 0px;
}

#content td {
	 padding: 0px;
	 vertical-align: top; 
}

#content h1 {
	font-size: 15px;
	margin-bottom: 3px;
	letter-spacing: 2px;
	text-transform: uppercase;
}


#content h2 {
	font-size: 12px;
	margin-top: 3px;
	margin-bottom: 1px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

#content h3 {
	font-size: 11px;
	margin-top: 3px;
	margin-bottom: 0px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

#content h4 {
	font-size: 11px;
	margin-top: 3px;
	margin-bottom: 0px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: Black;
	background-color: transparent;
}

#content a {
	text-decoration: none;
	font-weight: bold;
}

#content h1 a{
	font-size: 15px;
}

#content a:hover {
	text-decoration: none;
	border-bottom: 2px solid;	
}


/*classes controlling graphics*/

.img-right { 
	float: right; 
	margin: 0em 0em 1em 1em;
}

.img-left { 
	float: left; 
	margin: 0em 1em 1em 0em; 
}

.img-border {
	border: 1px solid;
	margin-top: 6px;
}


.centered {
	text-align: center;
}
}