/*
Copyright (c) 2007, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 2.2.2
*/


.scroller {
	height: 600px;
	width: 160px;
	left: 0px;
	overflow-y:auto;
	overflow-x:hidden;
	position: absolute;
	border: 1px solid gray;
	background-color: #cbc5b5;
}

.yui-navset .yui-nav {
	height: 100%;
}

.yui-navset .yui-nav li div {
	border: 1px solid #8e877d;
	background-color: #8e877d;
	color: white;
	font-weight: bold;
	text-align: center;
	height: 20px;
	padding-top: 5px;
}


/**The selected Tab*/
.yui-navset .yui-nav .selected {
	background-color: #e0e0e0;
	border: 1px solid gray;
}

/*The selected tab link.*/
.yui-navset .yui-nav .selected a {
}

.yui-navset .yui-nav .selected em { /*tab text */
	color: #2f2f2f;
}

.yui-navset .yui-nav .selected img {
	border: 1px solid white;
	filter: alpha(opacity=90);
	-moz-opacity: .90;
	opacity: .90;
}



/**The selected tab and contents*/
.yui-navset .yui-nav .selected a, .yui-navset .yui-content {
    /*background-color: #fff; #E4E0CF;  active tab, tab hover, and content bgcolor */
}

.yui-navset {
	width: 100%;
}

/**The Tab Contents*/
.yui-navset .yui-content {
	padding: 2px 0 2px 20px;
	text-align: center;
	border-left: 1px solid gray;
	height: 600px;
}



/**The Tab Contents*/
.yui-navset .yui-content div td {
	vertical-align: top;
}



/*.yui-navset .yui-nav li em { padding:.5em; }  tab padding */

/*The Tab-Elements**/
.yui-navset .yui-nav li {
	margin: 0px;
	width: 150px;
	border: 1px solid #cbc5b5;


}

/**The tab links*/
.yui-navset .yui-nav li a {
  	text-decoration: none;
  	margin-left: 30px;

}
/**The Tab Text*/
.yui-navset .yui-nav li em { /*tab padding */
	padding:  0 0.4em 0.4em;
	font-size: 0.9em;
	font-weight: bold;
	color: #b3b2ad;
	text-align: center;
	text-decoration: none;
}

.yui-navset .yui-nav li img { /* tab padding */
	margin:.6em .6em 0 .6em;
	border: 1px solid #cbc5b5;
	text-decoration: none;
	filter: alpha(opacity=50);
	-moz-opacity: .50;
	opacity: .50;
}


/* defaults to orientation "top" */
.yui-navset .yui-nav .selected a {
    border-bottom-width:0; /* no bottom border for active tab */
    padding-bottom:1px; /* to match height of other tabs */
}

.yui-navset .yui-content {
    margin-top:-1px; /* for active tab overlap */
}

/* overrides for other orientations */

.yui-navset-bottom .yui-nav .selected a {
    border-width:0 1px 1px; /* no top border for active tab */
    padding:1px 0 0; /* to match height of other tabs */
}

.yui-navset-bottom .yui-content {
    margin:0 0 -1px; /* for active tab overlap */
}

.yui-navset-left .yui-nav li.selected a {
    border-width:1px 0 1px 1px; /* no right border for active tab */
    padding:0 1px 0 0; /* to match width of other tabs */
}

.yui-navset-left .yui-content {
    /*margin:0 0 0 -1px;  for active tab overlap */
    margin: 0 0 0 160px;
}

.yui-navset-right .yui-nav li.selected a {
    border-width:1px 1px 1px 0; /* no left border for active tab */
    padding:0 0 0 1px; /* to match width of other tabs */
}

.yui-navset-right .yui-content {
    margin:0 -1px 0 0; /* for active tab overlap */
}