@charset "utf-8";
/* CSS Document */

/* tab pane styling */
.tabpanes {
	display:none;		
	padding:15px 10px;
	/*border:1px solid #999;*/
	border-top:0;
	min-height:100px;
	height:auto;
	background-color:#fff;
}

/* root element for tabs  */
ul.tabber { 
	list-style:none; 
	margin:0 !important; 
	padding:0;	
	border-bottom:1px solid #666;	
	height:52px;
}

/* single tab */
ul.tabber li { 
	float:left;	 
	text-indent:0;
	padding:0;
	margin:0 !important;
	list-style-image:none !important;
}
ul.tabber img{
	float:left;
	border:none;
	padding:4px 6px;} 
/* link inside the tab. uses a background image */
ul.tabber a { 
	background: url(/web/20161027160503oe_/http://www.benning.army.mil/common/rv4_images/toolbar_tab-generic.png) no-repeat -95px 0;
	display:block;
	height: 52px;  
	line-height:18px;
	width: 104px;
	text-align:right;	
	text-decoration:none;
	color:#fff;
	padding:8px 6px 0px 0px;
	margin:0px;	
	position:relative;
	margin-left:-1px;
	/*font-weight:normal;*/}

ul.tabber a:active {
	outline:none;		
}

/* when mouse enters the tab move the background image */
ul.tabber a:hover {
	background-position: -95px -52px;	
	color:#000;	
}

/* active tab uses a class name "current". it's highlight is also done by moving the background image. */
ul.tabber a.current, ul.tabber a.current:hover, ul.tabber li.current a {
	background-position: -95px -52px;		
	cursor:default !important; 
	color:#000 !important;
}

/* Different widths for tabs: use a class name: w1, w2, w3 or w2 */


/* width 1 */
ul.tabber a.s 			{ background-position: 0 -0px; width:89px; }
ul.tabber a.s:hover 	{ background-position: 0 -52px; }
ul.tabber a.s.current { background-position: 0 -52px; }

/* width 2 */
ul.tabber a.l 			{ background-position: -205px -0px; width:119px; }
ul.tabber a.l:hover 	{ background-position: -205px -52px; }
ul.tabber a.l.current  { background-position: -205px -52px; }



/* initially all panes are hidden */ 
div.tabpanes div.tabpane {
	display:none;		
}
