/* $Id: example.css,v 1.5 2006/03/27 02:44:36 pat Exp $ */

/*--------------------------------------------------
  REQUIRED to hide the non-active tab content.
  But do not hide them in the print stylesheet!
  --------------------------------------------------*/
.tabberlive .tabbertabhide {
 display:none;
}

/*--------------------------------------------------
  .tabber = before the tabber interface is set up
  .tabberlive = after the tabber interface is set up
  --------------------------------------------------*/
.tabber {
}
.tabberlive {
 margin-top:1em;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
 margin:0;
 padding: 3px 0;
 border-bottom: 1px solid #778;
 font: bold 12px Verdana, sans-serif;
}

ul.tabbernav li
{
 list-style: none;
 margin: 0;
 display: inline;
}

ul.tabbernav li a
{
	padding: 3px 0.5em;
	margin-left: 3px;
	border: 1px solid #778;
	border-bottom: none;
	text-decoration: none;
	background-color: #CE2043;
}

ul.tabbernav li a:link { color: #fff; }

ul.tabbernav li a:visited { color: #667; }

ul.tabbernav li.tabberactive a
{
 color: #CE2043;
 background-color: #fff;
 border-bottom: 1px solid #fff;
}

/* tab on mouse over */
ul.tabbernav li a:hover
{
	color: #fff;
	border-color: #227;
	background-color: #CE2043;
}

ul.tabbernav li.tabberactive a:hover
{
 color: #CE2043;
 background: white;
 border-bottom: 1px solid white;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
 padding:5px 5px 5px 8px;
 border:1px solid #aaa;
 border-top:0;

 /* If you don't want the tab size changing whenever a tab is changed
    you can set a fixed height */

 height:70px;

 /* If you set a fix height set overflow to auto and you will get a
    scrollbar when necessary */

 /* overflow:auto; */

 font-family:Verdana, sans-serif;
 font-size:.73em;
 line-height:155%;

}

/* If desired, hide the heading since a heading is provided by the tab */
.tabberlive .tabbertab h2 {
 display:none;
}
.tabberlive .tabbertab h3 {
 display:none;
}

/* Example of using an ID to set different styles for the tabs on the page */


#tb0 a, #tb1 a, #tb2 a, #tb3 a, #tb4 a, #tb5 a {
	color:#fff;
	font-weight:bold;
} 
#tb0 {
	/* http://en.wikipedia.org/wiki/Image:Polarlicht_2.jpg */
	background-image:url(/images/bg-alaska1.jpg);
	background-repeat:no-repeat;
	background-position: left top;
	background-color: #6975A5;
}
#tb1 {
	background-image:url(/images/bg-arizona1.jpg);
	background-repeat:no-repeat;
	background-position: left top;
	background-color: #AB7934;
}

#tb2 {
	/* http://en.wikipedia.org/wiki/Image:PB050006.JPG */
	background-image:url(/images/bg-california1.jpg);
	background-repeat:no-repeat;
	background-position: left top;
	background-color: #A95D3D;
}


#tb3 {
	background-image:url(/images/bg-nevada1.jpg);
	background-repeat:no-repeat;
	background-position: left top;
	background-color: #04477C;
}

#tb4 {
	background-image:url(/images/bg-oregon1.jpg);
	background-repeat:no-repeat;
	background-position: left top;
	background-color: #304C1B;
}

#tb5 {
	/* http://en.wikipedia.org/wiki/Image:MG_4949wp.jpg */
	background-image:url(/images/bg-washington1.jpg);
	background-repeat:no-repeat;
	background-position: left top;
	background-color:#70A8D9;
}





.tabberlive#tab1 {
}
.tabberlive#tab2 {
}
.tabberlive#tab2 .tabbertab {
 height:200px;
 overflow:auto;
}

.innerDisplay {
 float:left;width:200px;
}
.innerDisplay a {
	text-decoration:none;
	color:#666;
}
.innerDisplay a:hover {
	text-decoration:underline;
	color:#CE2043;
}





