@charset "iso-8859-1";

/*******************************************************************************
*  skidoo_too.css : 2005.08.29
* -----------------------------------------------------------------------------
*  A remake of the skidoo layout with the middle column appearing first in
*  source ordering.
*******************************************************************************/

/* begin with generic selectors so that they can be overridden if needed
 * by classes deeper in the stylesheet
 */
.clear
{
	clear: both;
	padding-bottom: 1px;	/* for Gecko-based browsers */
	margin-bottom: -1px;	/* for Gecko-based browsers */
}
.hide
{
	display: none !important;
}
.inside
{
	/* glitch in IE caused by vertical padding in this class, so 0 padding is
	 * set here and those blocks that need the vertical padding must be 
	 * applied to the parent element. the purpose of this class is to provide
	 * horizontal padding without using hacks to get around IE's broken box 
	 * model. so it's okay to apply vertical padding to the parent element, 
	 * just not horizontal padding.
	 */
	padding: 0 1em;
}

/* margin values and font sizes for headings, and margins on paragraphs
 * and lists are not consistent across browser platforms. to achieve a
 * consistent look we need to explicity set these values here. it may
 * seem an odd way to declare the margins like this but you never
 * know what kind of horizontal padding a browser may be using on an
 * element, and I only want to change the vertical padding.
 *
 * pixels are used here, rather than ems, because I want a consistent
 * margin on the different headings. if I use ems, 1em for an h1 element
 * is much larger than 1em on an h6 element. I don't wnat this.
 *
 * salt to taste
 */
ul, ol, dl, h1, h2, h3, h4, h5, h6
{
	margin-top: 14px;
	margin-bottom: 14px;
	padding-top: 0;
	padding-bottom: 0;
}
p
{
	font-family:Geneva, Arial, Helvetica, sans-serif; font-size:100%;
}
h1
{
	font-size: 220%;
}
h2
{
	font-size: 190%;
}
h3
{
	font-size: 160%;
}
h4
{
	font-size: 130%;
}
h5
{
	font-size: 100%;
}
h6
{
	font-size: 70%;
}

/* alter some HTML elements' default style
 */
a, a:link, a:visited, a:active
{
	text-decoration: underline;
}
a:hover
{
	text-decoration: none;
}
code
{
	font-family:Geneva, Arial, Helvetica, sans-serif; font-size:12px;
}
label
{
	cursor: pointer;
}
table
{
	font-size: 100%;
	font-family:Geneva, Arial, Helvetica, sans-serif; font-size:12px;
}
td, th
{
	vertical-align: top;
}

/* now we craft the core layout of the page. this includes positioning and
 * gutter space. colors and fonts should not come into play at this point.
 * when defining a border, default its color to white which is probably
 * the safest thing to do.
 */
body
{
	margin: 15px 1%;	/* margin instead of padding for the gutterspace around 
	 			   the layout because IE breaks the layout when 
	 			   horizontal padding is applied to the body element.
	 			   % over pixels for that horizontal gutterspace so that
	 			   it automatically goes below 20px on low-res browsers
	 			   to create more space for the content. */
	font-size: 100.1%;	/* resolve some font size issues in some layouts for
				   some browsers. (in other words, i got no clue.) */
	font-family:Geneva, Arial, Helvetica, sans-serif;
}
img {
	border: 0;
}
#pageWrapper
{
	border: solid 0px #fff;
	border-width: 0 0px;
	min-width: 40em;	/* IE doens't understand this property. EMs are used
				   so that as the font size increases, the proportional
				   limitations (min-width) increase with it, rather
				   than creating a middle column that can only fit
				   3 or 4 characters in it. */
	width: auto;
}
* html #pageWrapper
{
	/* \*/
		word-wrap: break-word;
	/* invalid CSS but keeps IE from breaking horribly under narrow viewports */
}
#masthead
{
	padding: 0em;
	border-top-width: 0px;
	border-right-width: 0;
	border-bottom-width: 1px;
	border-left-width: 0;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #FFFFFF;
	border-right-color: #FFFFFF;
	border-bottom-color: #FF0000;
	border-left-color: #FFFFFF;
}
#masthead h1
{
	padding: 0;
	margin: 0;
}
#outerColumnContainer
{
	border-right-width: 13em;
	border-left-width: 14em;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #000;
	border-left-color: #fff;
}
#innerColumnContainer
{
	border: solid 1px #fff;
	border-width: 0 1px;
	margin: 0 -2px;		/* compensate for the borders because of
				   100% width declaration */
	width: 100%;
	z-index: 1;
}
#leftColumn, #middleColumn, #rightColumn, * html #SOWrap
{
	overflow: visible;	/* fix for IE italics bug */
	position: relative;	/* fix some rendering issues */
}
#SOWrap
{
	float: left;
	margin: 0 -1px 0 0;
	width: 100%;
	z-index: 3;
}
#middleColumn
{
	float: right;
	margin: 0 0 0 -1px;
	width: 100%;
	z-index: 5;
}
#leftColumn
{
	float: left;
	margin: 0 1px 0 -14em;
	width: 14em;
	z-index: 4;
	background:url(/images/left_side_camo.jpg) 0 0 repeat;
}
#rightColumn
{
	float: right;
	width: 13em;
	margin: 0 -13em 0 1px;
	z-index: 2;
}
#footer
{
	border: solid 1px #fff;
	border-width: 1px 0;
	padding: 0.5em;
}

p.fontsize-set
{
	text-align: center;
	vertical-align:bottom;
}
p.fontsize-set img
{
	border-width: 0;
}

/* vertical navigation stuff. mostly exactly as seen in the vnav.css styleheet
 * in the original skidoo layout.
 */
.vnav
{
	margin: 1em 0;
}
.vnav ul, .vnav ul li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: block;
}
.vnav ul
{
	border: solid 0px #fff;
	border-bottom-width: 0;
	
}
.vnav ul li
{
	border: solid 0px #fff;
}
.vnav ul li, .vnav ul li a
{
	margin: 0;
	display: block;
	padding: 0;
	line-height: normal;
	border-right: solid 1px #666;
	border-top: solid 1px #666;
}
.vnav ul li a
{
	display: block;
	padding: 2px 5px 3px 5px;
}
.vnav ul li a, .vnav ul li a:link, .vnav ul li a:visited, .vnav ul li a:active, .vnav ul li a:hover
{
	text-decoration: none;
	cursor: pointer;
}
.vnav h3
{
	margin-bottom: 0;
	padding-bottom: 0;
	font-size: 126%;
	color:#FF0000;
	text-align:center;
}
* html .vnav ul li a/* hide from IE5.0/Win & IE5/Mac */
{
	height: 0.01%;
}
* html .vnav ul
{
	position: relative;	/* IE needs this to fix a rendering problem */
}

/* horizontal navigation elements. create a DIV element with the class hnav
 * and stick one unordered list inside it to generate a horizontal menu.
 */
.hnav
{
	border-bottom: solid 1px #fff;
	text-align: center;
}
.hnav, .hnav ul li a
{
	/* need to middor veritcal padding on .hnav and child anchor elements
	 * because the anchors are _not_ block elements. since they are not
	 * block elements web browsers will not expand .hnav to contain them
	 * even with the extra padding. by applying the same padding to both
	 * the parent .hnav _looks_ like its containing the child anchor
	 * elements. 
	 */
	padding-top: 3px;
	padding-bottom: 4px;
}
.hnav ul, .hnav ul li
{
	display: inline;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.hnav ul li a
{
	margin: 0 -1px 0 0;
	padding-left: 10px;
	padding-right: 10px;	/* short-hand padding attribute would overwrite
				   top/bottom padding set in a previous rule */
	border-left: solid 1px #ff0000;
	border-right: solid 1px #ff0000;
	white-space: nowrap;
}
.hnav ul li a:link, .hnav ul li a:visited, .hnav ul li a:active, .hnav ul li a:hover
{
	text-decoration: none;
	color: #fff;
	font-weight:bolder;
}
.hnav ul li span.divider
{
	display: none;
}
* html .hnav ul li, * html .hnav ul li a
{
	width: 1%; /* IE/Mac needs this */
	display: inline-block;	/* IE/Mac needs this */
	/* \*/
		width: auto;
		display: inline;
	/* reset above hack */
}
* html .hnav, * html .hnav ul a
{
	/* \*/ height: 0.01%; /* hasLayout hack to fix render bugs in IE/Win. 
				 IE/Mac will ignore this rule. */
}
* html .HNAV
{
	padding: 0;	/* IE5/Win will resize #hnav to fit the heights of its
			   inline children that have vertical padding. So this
			   incorrect case selector hack will be applied only by
			   IE 5.x/Win */
}

/* everything below this point is related to the page's "theme" and could be
 * placed in a separate stylesheet to allow for multiple color/font scemes on
 * the layout. you should probably leave a default theme within this stylesheet
 * just to be on the safe side.	
 */
#pageWrapper, #masthead, #innerColumnContainer, #footer, .vnav ul, .vnav ul li, .hnav
{
	border-color: #000;
}
.hnav ul li a {
	border-left, border-right: 2px #ff0000 solid;
	border-color: #000000;
	color: #ffffff;
}
html, body
{
	/* note that both html and body elements are in the selector.
	 * this is because we have margins applied to the body element
	 * and the HTML's background property will show through if
	 * it is ever set. _DO_NOT_ apply a font-size value to the
	 * html or body elements, set it in #pageWrapper.
	 */
	background-color: #fff;
	color: #000;
	font-family: arial, helvetica, sans-serif;
}
#pageWrapper
{
	font-size: 80%;	/* set your default font size here. */
}
#masthead
{
	background-color: #FFFFFF;
	color: #fff;
}
.hnav
{
	background-color: #000000;
	border-top: 2px #b9ac78 solid;
	border-bottom: 2px #b9ac78 solid;
	color: #fff;
	background-image: url(/images/top_camo_bg.jpg);
	background-repeat: repeat-x;
}
#outerColumnContainer
{
	border-left-color: #000000;	/* left column background color */
	border-right-color: #b9ac78;	/* right column background color */
	background-color: #fff;		/* set the background color for the
					   middle column here */
}
.vnav ul li a:link, .vnav ul li a:visited, .vnav ul li a:active
{
	background:url(/images/leftvnavneg.gif) 0 50% no-repeat;
	text-decoration: none;
	background-color: #000000;
	color: #fff;
	font-weight: bold;
	text-align:left;
	text-indent: 15px;
}
#rightColumn .vnav ul li a:link, #rightColumn .vnav ul li a:visited, #rightColumn .vnav ul li a:active
{
	background-color: #ded;
}
.vnav ul li a:hover, #rightColumn .vnav ul li a:hover
{
	background:url(/images/leftvnav.gif) 0 50% no-repeat;
	text-decoration: none;
	background-color: #ffffff;
	color: #000;
	text-align:left;
	text-indent: 15px;
}
.hnav ul li a:link, .hnav ul li a:visited
{
	background: url(/images/topbuttonneg.jpg) 0 50% no-repeat;
	color: #000;
}
.hnav ul li a:hover
{
	background: url(/images/topbutton.jpg) 0 50% no-repeat;
 	border-left, border-right: 2px #000000 solid;
	color: #fff;
}
#rightColumn .inside
{
	/* if you apply a font size to just #rightColumn, then its width,
	 * which is specified in EMs, will also be affected. you don't want
	 * that. so apply font size changes to the .inside element which exists
	 * inside underneath all three columns
	 */
	font-size: 90%;
	border:0px solid #000000;
}
#rightColumn .inside .vnav
{
	font-size: 110%;
}
#footer
{
	background-color: #000000;
	color: #fff;
	text-align: center;
}
#footercopyright {
  text-align:justify;
  font-size:9px;
}

/******************************************************************************/

.header {
  background: #000;
  width: 100%;
}
/* .headerlogo {
  background: url(/images/bckdrp_01.jpg) 0 0 no-repeat;
} */
.headerlogo {
	background: url(/images/top_head_bg.jpg) 0 0 no-repeat;
}

.headerrightcorner {
  height: 110px;
  background: url(/images/cornertoprightblack.jpg) 100% 0 no-repeat;
}
.headerbanner {
  text-align: center;
  padding-top: 20px;
}
.headernav {
  text-align: center;
  color:#000000;
  font-family:Geneva, Arial, Helvetica, sans-serif;
  font-size:10px;
}
.covershot {
  text-align:center;
  padding:10px;
}
.leftnavbanner {
  text-align:center;
  padding-top:10px;
  padding-bottom:10px;
}
#Image_Text_wrap_Content {
}
#Left_Floated_Image {
float:left;
clear:left;
padding: 0;
margin-right: 15px;
margin-bottom:10px;
font-size: 9px;
text-decoration:none;
} 

#Right_Floated_Image {
float:right;
clear:right;
padding: 0;
margin-left: 15px;
margin-bottom:10px;
text-decoration:none;
font-size: 9px;
}
#left_bkissue {
float:left;
clear:left;
padding: 10px;
margin: 5px;
font-size: 14px;
text-decoration:none;
text-align:center;
} 

#right_bkissue {
float:right;
clear:right;
padding: 10px;
margin: 5px;
text-decoration:none;
font-size: 14px;
text-align:center;
}
div.row{
  float: left;
  text-align: left;
  color: #000;
  width: 100%;
  background-color: #FFFFFF;
  border: 3px #FFFFFF solid;
  padding:10px;
}
div.rowmem{
  float: left;
  text-align: left;
  color: #000;
  width: 100%;
  background-color: #E8E8E8;
  border: 3px #E8E8E8 solid;
  padding:10px;
}
#rightnavform {
  background: #ccc;
  text-align:center;
    border:1px #000000 solid;
}
#rightnavbanner {
  background: #fff;
  text-align: center;
    border:1px #000000 solid;
}
#rightnavformlogin {
  background: #cccccc;
  text-align:center;
    border:1px #000000 solid;
}
#rightnavformtext {
  background: #ccc;
  text-align: center;
  color: red;
    border:1px #000000 solid;
}
a.rightnavformlinks {
  font-weight: bold;
  font-size: 10pt;
}
.rightnavthisissue {
  font-size:9px;
  font-family:Verdana, Arial, Helvetica, sans-serif;
}
.rightnavissuename {
  font-size:medium;
  font-family:Verdana, Arial, Helvetica, sans-serif;
  font-style:italic;
  font-weight:bold;
}
.rightnavarticles {
  padding: 3px;
  line-height: 150%;
}
a.navright {
  color: #003300;
  font-weight: bold;
  font-family:Geneva, Arial, Helvetica, sans-serif;
  font-size: 9pt;
  text-decoration:none;
}
a.navright:link {
  color: #003300;
  font-weight: bold;
  font-family:Geneva, Arial, Helvetica, sans-serif;
  font-size: 9pt;
  text-decoration:none;
}
a.navright:visited {
  color: #003300;
  font-weight: bold;
  font-family:Geneva, Arial, Helvetica, sans-serif;
  font-size: 9pt;
  text-decoration:none;
}
a.navright:active {
  color: red;
  font-weight: bold;
  font-family:Geneva, Arial, Helvetica, sans-serif;
  font-size: 9pt;
  text-decoration:none;
}
a.navright:hover {
  color: red;
  font-weight: bold;
  font-family:Geneva, Arial, Helvetica, sans-serif;
  font-size: 9pt;
  text-decoration:none;
}
.imagetextbuff {
	font-size:9;
	text-decoration:none;
	border: 1px #000000 solid;
	text-align: center;	
}
.imagetext {
	font-size:9px;
	text-decoration:underline;
	border: 1px #000000 solid;
	text-align: center;	
}
.linkspage {
	class="linkspage"
}
.contrib {
	width:50%;
	text-align:center;
	margin:10px;
	font-size: medium;
	font-family: Geneva, Arial, Helvetica, sans-serif;
}
.contribhead {
	color:#003300;
	margin:10px;
	text-align:center;
	font-size: large;
	font-style: italic;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
}
.contribtable {
align:center;
border:0px #003300 solid;
}
.contribtd {
text-align:center;
width:50%;
border-top:1px #003300 solid;
border-bottom:1px #003300 solid;
}
.myImg img {
height: 80%;
width: 80%;
min-width: 200px;
max-width: 500px;
}
#photo {
    width: 100%;
    height: auto;
}
.hid {
	display:none;
}
.vis {
	display:block;
}

#tabcontainer {
  position:relative; 
  padding-left:320px;
  }
#tabmenu {
  text-align:center; 
  position:relative; 
  height:3.5em;
  }
.box {
  position:relative; 
  float:left; 
  top:19px;
  }
#tabmenu a, #tabmenu a:visited {
  position:relative; 
  text-decoration:none; 
  background-color:#666633; 
  color:#fff; 
  display:block; 
  width:70px; 
  height:15px; 
  padding:5px;
  margin:0 1px;
  }
#tabmenu a .topleft, #tabmenu a .topright {
  position:absolute; 
  top:0; 
  width:0; 
  height:0; 
  overflow:hidden;
  border-top:10px solid transparent;
  }
#tabmenu a .topleft {
  left:0; 
  border-right:10px solid #666633; 
  }
#tabmenu a .topright {
  left:70px; 
  border-left:10px solid #666633; 
  }
#tabmenu a:hover {
  background-color:#999999; 
  }
#tabmenu a:hover .topleft {
  border-right:10px solid #999999; 
  border-top:10px solid transparent;
  }
#tabmenu a:hover .topright {
  border-left:10px solid #999999; 
  border-top:10px solid transparent;
  }