@charset "utf-8";
/* CSS Document */

/* undohtml.css */
/* (CC) 2004 Tantek Celik. Some Rights Reserved.                  */
/*   http://creativecommons.org/licenses/by/2.0                   */
/* This style sheet is licensed under a Creative Commons License. */

/* Purpose: undo some of the default styling of common (X)HTML browsers */

/* remove the inconsistent (among browsers) default ul,ol padding or margin  */
/* the default spacing on headings does not match nor align with 
   normal interline spacing at all, so let's get rid of it. */
/* zero out the spacing around pre, form, body, html, p, blockquote as well */
/* form elements are oddly inconsistent, and not quite CSS emulatable. */
/*  nonetheless strip their margin and padding as well */
ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,body,html,p,blockquote,fieldset,input
{ margin:0; padding:0 }

/* whoever thought blue linked image borders were a good idea? */
a img,:link img,:visited img { border:none }

p {
	margin-bottom:1.0em;
	
	
}
h1 {
	font-size: 130%;
	color: #573D98;
	margin-left: 25px;margin-bottom:1.0em;
}
#main_content ul {
	font-family: Arial, Helvetica, sans-serif;
	list-style-position: inside;
	list-style-type: disc;margin-bottom:1.0em;
}

h3  {
	margin-bottom:0em;
	margin-top: 1em;
	font-size: 110%;
	color: #9A1C1F;
}
.job_descrip {
	font-size: 85%;
	color: #666;
	display: block;
}

h2 {
	margin-bottom:1em;
	font-size: 120%;
	color: #573D98;
}
h4 {margin-bottom:5px;}
h5 {margin-bottom:1.0em;}

#wrapper {
	margin: 0 auto;
	width: 808px;
	background-image: url(background_images/wrapper_bg.jpg); overflow:hidden;
}
#navcontainer {
	background-color: #573D98;
	height: 30px;
	width: 764px;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: solid;
	border-top-color: #C90000;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}
#header {
	background-image: url(background_images/header_bg.jpg);
	height: 117px;
}
#footer {
	background-image: url(background_images/footer_bg.jpg); background-repeat:no-repeat;
	clear: both;
	height: 59px;
}
body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	background-color: #999;
	color: #333;
}
#navlist ul
{
margin-left: 0;
padding-left: 0;
white-space: nowrap;
}

#navlist li
{
display: inline;
list-style-type: none;
line-height:30px; 
font-weight:bold;
font-size:12px;
color:#FFF;

}

#navlist a { padding: 7px 17px;}

#navlist a:link, #navlist a:visited
{
color: #FFF;
letter-spacing: 0.1em;
text-decoration: none;
}

	
#navlist a:hover
{
color: #333333;
text-decoration: none;
background-color: #AB9ECB;}
#main_content {
	padding: 22px; margin-left:11px;
}
#main_content ul {
	font-family: Arial, Helvetica, sans-serif;
	list-style-position: inside;
	list-style-type: disc;margin-bottom:1.0em;
}
#footer p {text-align:center; line-height:54px; font-size:90%; margin-bottom:0}
#footer a {text-decoration:none; color:#333}
#footer a:visited {text-decoration:none; color:#333}
#footer a:hover {text-decoration:none; color:#000}
#rotator {float:left; width:494px; display:block;  }
#homepage {margin-left:22px }
#play {position:relative; top:0; left:0; width:494px; display:block;}

#quick {
	width: 250px;
	padding: 10px 16px 0 10px;
	margin-left: 504px;
}

#quick p {font-size: 80%; font-style:italic; color:#666;}
#quick h3 {margin-top:0px}

.img_staff {
	float: left;
	margin-top: 0px;
	margin-right: 5px;
	margin-bottom: 10px;
	margin-left: 0px;
	border: 1px solid #9A1C1F;
	padding: 1px;
	clear: both;
}
.staff {
	height: 150px;
	clear: both;
}


#main_content form {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
  font:100% arial,sans-serif;
  margin: auto;
  padding: 0;
  min-width: 450px;
  max-width: 450px;
  width: 450px; 
}

#main_content form fieldset {
  /* clear: both; note that this clear causes inputs to break to left in ie5.x mac, commented out */
  border-color: #000;
  border-width: 1px;
  border-style: solid;
  padding: 10px;        /* padding in fieldset support spotty in IE */
  margin: 0;
}

#main_content form fieldset legend {
	font-size:1.0em; /* bump up legend font size, not too large or it'll overwrite border on left */
                       /* be careful with padding, it'll shift the nice offset on top of border  */
}

#main_content form label { 
	display: block;  /* block float the labels to left column, set a width */
	float: left; 
	width: 150px; 
	padding: 0; 
	margin: 5px 0 0; /* set top margin same as form input - textarea etc. elements */
	text-align: right; 
}

#main_content form fieldset label:first-letter { /* use first-letter pseudo-class to underline accesskey, note that */
	text-decoration:underline;    /* Firefox 1.07 WIN and Explorer 5.2 Mac don't support first-letter */
                                    /* pseudo-class on legend elements, but do support it on label elements */
                                    /* we instead underline first letter on each label element and accesskey */
                                    /* each input. doing only legends would  lessens cognitive load */
                                   /* opera breaks after first letter underlined legends but not labels */
}

#main_content form input, #main_content form textarea {
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	width:auto;      /* set width of form elements to auto-size, otherwise watch for wrap on resize */
	margin:5px 0 0 10px; /* set margin on left of form elements rather than right of
                              label aligns textarea better in IE */
}

#main_content form input#reset {
	margin-left:0px; /* set margin-left back to zero on reset button (set above) */
}

#main_content textarea { overflow: auto; }

#main_content form small {
	display: block;
	margin: 0 0 5px 160px; /* instructions/comments left margin set to align w/ right column inputs */
	padding: 1px 3px;
	font-size: 88%;
}

#main_content form .required{font-weight:bold;} /* uses class instead of div, more efficient */

#main_content form br {
	clear:left; /* setting clear on inputs didn't work consistently, so brs added for degrade */
}
