/* root element for tabs  */
ul.tabs {
	list-style:none;
	padding:0;
	height:30px;
	border-bottom-width: 1px;
	border-bottom-style: none;
	border-bottom-color: #FF0000;
	display: block;
	background-image: none;
	background-repeat: no-repeat;
	background-position: 0 -100px;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 60px;
}

/* single tab */
ul.tabs li {
	float:left;
	text-indent:0;
	list-style-image:none !important;
	padding: 0;
	
}

/* link inside the tab. uses a background image */
ul.tabs a {
	font-size:11px;
	display:block;
	height: 30px;
	line-height:30px;
	width: 90px;
	text-align:center;
	text-decoration:none;
	color:#FF0000;
	padding:0px;
	margin:0px;
	position:relative;
	top:1px;
	background-color: #CCCCCC;
	background-image: url(tabs-scroll_files/Button.jpg);
}

ul.tabs a:active {
	outline:none;		
}

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
	background-position: -420px -31px;
	color:#FFFFFF;
}

/* active tab uses a class name "current". it's highlight is also done by moving the background image. */
ul.tabs a.current, ul.tabs a.current:hover, ul.tabs li.current a {
	background-position: -420px -62px;
	cursor:default !important;
	color:#FFFFFF !important;
}

#flowtabs #t1 			{ background-position: 0 0; }
#flowtabs #t2 			{ background-position: -189px 0; }
#flowtabs #t3 			{ background-position: -378px 0; }
#flowtabs #t4 			{ background-position: -567px 0; width:192px;}
 
/* mouseover state */
#flowtabs a:hover 		{
	color:#039;
}
#flowtabs #t1:hover 	{ background-position:      0 -33px; }
#flowtabs #t2:hover 	{ background-position: -189px -33px; }
#flowtabs #t3:hover 	{ background-position: -378px -33px; }
#flowtabs #t4:hover 	{ background-position: -567px -33px; }

/* currently selected tabs */
#flowtabs a.current	  {
	cursor:default;
	color:#00C;
	line-height:34px;
}
#flowtabs #t1.current { background-position:      0 -66px; }
#flowtabs #t2.current { background-position: -189px -66px; }
#flowtabs #t3.current { background-position: -378px -66px; }
#flowtabs #t4.current { background-position: -567px -90px; }


/* initially all panes are hidden */ 
div.panes div.pane {
	display:none;
	width: auto;
}

/* tab pane styling */
div.panes div {
	display:none;
	height:auto;
	font-size:14px;
	width:815px;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 10px;
	border-top-width: 1;
	border-right-width: 1;
	border-bottom-width: 1px;
	border-left-width: 1;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #999;
	border-right-color: #999;
	border-bottom-color: #999;
	border-left-color: #999;
	background-image: none;
}

/* end tab styling */

body {
	font-family:"Lucida Grande","Lucida Sans Unicode","bitstream vera sans","trebuchet ms",verdana;
	font-weight: bold;
	font-size:15px
	
}

/* get rid of those system borders being generated for A tags */
a:active {
  outline:none;
}
:focus {
  -moz-outline-style:none;
}
