/* 
 * Sliding Tabs - jQuery Plugin
 * Copyright 2011, Christian André
 *
------------------------------------------------------------------------------------- */

div.st_vertical { /* The main container */
	position:relative;
	z-index:500; 
	float:left;
	clear:both;
	width:610px;

}

/* Control buttons
------------------------------------------------------------------------------------- */


/* Tabs
------------------------------------------------------------------------------------- */
div.st_vertical div.st_v_tabs_container { /* Tabs main container */  	
	position:relative;
	z-index:100;
	float:left;
	width:199px; /* +1px for the negative right margin */
	height:500px;
	margin-right:-1px;
	border-top:1px solid #d4d4d4;
	overflow:hidden;
}

div.st_vertical div.st_slide_container { /* Tabs slide-container */
	position:relative !important; /* The tabs position will be calculated from ul.tabs first parent element with position:relative */
	float:left;
	clear:both;
}

div.st_vertical ul.st_tabs { /* Tabs unordered list */
	float:left;
	width:198px;	
	margin:0px;
	padding:0px;
	list-style:none;
}

div.st_vertical ul.st_tabs li { /* Tab list elements */
	float:left;
	clear:both;
}

div.st_vertical ul.st_tabs li a { /* Tab links */
	display:block;
	width:193px;
	height:25px;
	margin:0px;
	padding:18px 5px 10px 5px;
	font-size:12px;
	color:#263F48;
	font-weight:bold;
	line-height:normal;
	text-decoration:none;
	outline:none;
	border-left:1px solid #d4d4d4;
	border-bottom:1px solid #d4d4d4;
	background:#fff url(http://www.corporate-eye.com/blog/wp-content/js/img/v_tab_bg.jpg) repeat-x 0px 0px;	
}

div.st_vertical ul.st_tabs li a span {
	display:block;
	clear:both;
	font-weight:normal;
	color:#263F48;
	padding-top:3px;
}

div.st_vertical ul.st_tabs a:hover { /* Tabs hover state */
	color:#333;
}

div.st_vertical ul.st_tabs a.st_tab_active { /* Tab active/highlighted state */
	position:relative;
	z-index:10;
	color:#4C7F90;
	padding-right:1px;
	background:#fff;
}

/* Content
------------------------------------------------------------------------------------- */
div.st_vertical div.st_v_content { /* Main content container */
	position:relative;
	z-index:5;
	float:left;	
	width:400px;
	height:475px;
	padding:5px; /* Set the padding for the content here */
	line-height:18px;
	border:1px solid #d4d4d4;
	background-color:#fff;
	overflow:auto; /* Makes the content scroll if Javascript is disabled */
}

div.st_vertical div.st_view_container { /* Slide-container for the content */
	position:relative;	
	height:475px;	
}

div.st_vertical div.st_tab_view { /* Individual content containers */	
	width:395px;
	margin-bottom:20px;
	padding-bottom:5px;
	background-color:#fff;
}


.text p a {
	font-weight: bold;
	float: right;
	}

