/*
 Body, universal text and link styles, structural divs. This page duplicates the old table site.
 */
body {
  background: url("graphics/bg-rocks.jpg") repeat;
  margin: 0;
  font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
  color: #000000;
}

#wrapper {
  width: 750px;
  border: 1px solid #ffffff; /*lots of these borders in here to replicate the table look, cleverly placed borders on divs */
  margin: 0 auto 0 auto;
  background: url("graphics/main_bg.png") repeat-y top left; /* yeah, this sucks, I know */
}

a {
  color: #6d1a10;
  text-decoration: underline;
}

a:hover {
  color: #6d1a10;
  text-decoration: none;
}

h1 {
  font-size: 18px;
  font-weight: bold;
}

h2 {
  font-size: 15px;
  font-weight: normal;
}

h3 {
  font-size: 13px;
  font-weight: bold;
}

p {
  font-size: 12px;
}

ul, ol {
  font-size: 12px;
  margin-left: 0px;
  padding-left: 20px;
}

.nomargin { /*used when I need, well, no margin on an element */
  margin: 0;
}

hr { /*set horizontal line width to 75% */
  width: 75%;
}
/*
 header styles
 */
#header {
  background: #6d1a10 url('graphics/topbanner_ay.png') bottom no-repeat; /*the image has a white border on top to mimic table cell*/
  height: 105px;
  text-align: center;
  border-bottom: 1px solid #ffffff;
  color: #ffffff;
}

#header ul {
  margin: 0px auto 0px auto;
  padding: 6px 0 0 0;
  height: 28px;
  text-align: center;
}

#header ul li {
  display: inline;
}

#header ul li a {
  padding: 5px 10px 7px 10px;
  color: #ffffff;
  text-decoration: underline;
  font-weight: bold;
  font-size: 11px;
}

#header ul li a:hover {
  text-decoration: none;
}
/*
 Content structure and text/link styles. the contentwrapper div is no longer needed and can be removed.
 */

#content {
  float: right;
  width: 588px;
}

#content img {
  margin: 5px;
}

#content h1, h2, h3, p, ul {
  margin-left: 3px;
  margin-right: 5px;
}
/*
 text, link, and list styles for left column
 */
#leftcolumn {
  margin-right: 590px;
  padding: 0 5px 0 5px;
}
/*
 footer styles
 */
#footer {
  background: url('graphics/footerbg.png') top left repeat; /* one pixel red image, if I use a solid red color it "spills out" in IE6. Peas. */
  text-align: center;
  clear: both;
  border-top: 1px solid #ffffff;
  margin-left: auto;
  margin-right: auto;
  padding: 5px;
  color: #ffffff;
}
/*
 home page table styles to preserve formatting from old table layout. Easier to use a four-column table than to use four divs, although it could probably be done with "float: left" */

td.picturecell {
  text-align: left;
  margin: 0;
  padding: 0;
}

td.picturecell img {
  display: block; /* get rid of the default margin on the bottom of picture */
  border-bottom: 1px solid #ffffff; /*remember, it's an ugly hack to mimic table cell borders*/
  border-left: 1px solid #ffffff; /*yeah, it's so ugly I have to hack even when I actually have a table cell */
}

td.linkcell {
  text-align: center;
  border-left: 1px solid #ffffff;
  background: #6d1a10;
}

td.linkcell a {
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  background: url(graphics/arrow.gif) center left no-repeat;
  display: block;
  padding: 10px 5px 10px 5px;
}

td.linkcell a:hover {
  color: #ffffff;
  background: #52130c url(graphics/arrow-hover.gif) center left no-repeat;
}

td.column1 {
  padding: 5px;
  background: #87A796;
  vertical-align: top;
  border-top: 1px solid #ffffff;
}

td.column2 {
  padding: 5px;
  background: #A5BCAF;
  vertical-align: top;
  border-left: 1px solid #ffffff;
  border-top: 1px solid #ffffff;
}

td.column3 {
  padding: 5px;
  background: #BDCEC5;
  vertical-align: top;
  border-left: 1px solid #ffffff;
  border-top: 1px solid #ffffff;
}

td.column4 {
  padding: 5px;
  background: #CDDAD2;
  vertical-align: top;
  border-left: 1px solid #ffffff;
  border-top: 1px solid #ffffff;
}
/* for lists of PDF's, like the bulletins */
.pdflist {
  list-style-image: url('graphics/pdficon_small.gif');
  margin-left: 0;
  padding-left: 25px;
}

.pdflist li {
  margin-top: 10px;
  padding-left: 5px;
}
/*styles for the podcast generator */

.episode {
  margin: 5px 5px 10px 5px;
  padding: 5px;
  border: 1px solid #666666;
  background: #eeeeee;
}

.episode_date {
  margin: 0;
  padding: 0;
  font-size: 13px;
  display: none;
}

.episode_info {
  font-size: 10px;
  margin: 0;
  padding: 0;
  color: #555555;
  display: none;
}

.episode_download {
	font-size:10px;
	padding:0;
	margin:0;
}

.episode_imgdesc {
  list-style:none;
	text-decoration:none;
  margin: 0;
  padding: 0;
}

.episode_imgdesc li {
	padding-left:10px;
}	

.episode_title {
  margin-top: 0;
}

/*
styles for bulletin page till we fix it. _I_ think that it should be a list of pdfs.
*/
#bulletincontent {
  background: #ffffff;
  padding: 5px;
  text-align: center;
}

