/* 
 * Sliding Tabs - jQuery Plugin
 * Copyright 2012, Christian André
 *
 * CHANGING THE WIDTH: To change the width of the tabs layout see line 14.
 *
------------------------------------------------------------------------------------- */

div.st_vertical { /* The main container */
	position:relative;
	float:left;
	clear:both;
	width:1000px; /* Set the full width */
	color:#616161;
}

/* Control buttons
------------------------------------------------------------------------------------- */
div.st_vertical a.st_prev, 
div.st_vertical a.st_next { /* Directional buttons (previous/next) */	
	display:none;
	float:left;
	position:relative;
	z-index:100;	
	height:36px;
	width:109px;
	border:1px solid #d4d4d4;
	border-top:0 none;
	outline:none;	
	text-align: center;
	background: url(../images/slidingtabs/btn_arrows.gif) #4D4D4D no-repeat;	
}

div.st_vertical a.st_prev { /* Previous button */
	border-right:0 none;
	background-position:-77px -47px;
}

div.st_vertical a.st_prev:hover { /* Previous button hover */
	background-color:#5f5f5f;
}

div.st_vertical a.st_next { /* Next button */
	background-position: -76px -79px;
}

div.st_vertical a.st_next:hover { /* Next button hover */
	background-color:#5F5F5F;
}

div.st_vertical a.st_prev.st_btn_disabled,
div.st_vertical a.st_next.st_btn_disabled { /* Previous and next buttons disabled state */
	cursor:default;
	background-position: 34px -79px;
	background-color:#f7f7f7;
}

div.st_vertical a.st_prev.st_btn_disabled { /* Previous button disabled state */
	background-position:-76px -47px;
}

div.st_vertical a.st_next.st_btn_disabled { /* Next button disabled state */
	background-position:-76px -79px;
}

/* Tabs
------------------------------------------------------------------------------------- */
div.st_vertical div.st_tabs_container { /* Tabs main container */  	
	position:relative;
	z-index:100;
	float:left;
	width:221px; /* +1px for the negative right margin */
	height:337px;
	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:221px;	
	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:179px;
	height:15px;
	margin:0px;
	padding:14px 20px 14px 20px;
	font-size:12px;
	color:#5c5c5c;
	font-weight:bold;
	line-height:normal;
	text-decoration:none;
	outline:none;
	border-right:1px solid #d4d4d4;
	border-bottom:1px solid #d4d4d4;
	border-left:1px solid #d4d4d4;
	background:#f7f7f7 ;	
}

div.st_vertical ul.st_tabs li a span {
	display:block;
	clear:both;
	font-weight:normal;
	color:#838383;
	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;
	padding-right: 21px;
	color:#b32017;
	background:#fff;
}

/* Content
------------------------------------------------------------------------------------- */
div.st_vertical div.st_view_container { /* Main content container */
	position:relative;
	z-index:5;
	height:450px;
	padding:0 0 0 20px; /* Set the padding for the content here */
	line-height:22px;

	background-color:#fff;
	overflow:hidden; /* To make the content scroll if Javascript is disabled, set to: auto */
}

div.st_vertical div.st_view { /* Slide-container for the content */
	position:relative;
	height:100%;
	overflow:hidden;
}

div.st_vertical div.st_tab_view { /* Individual content containers */	
	width:100%;	
	margin-bottom:20px;
	background-color:#fff;
}

div.st_vertical div.st_view h2 {	
	font-size:16px;
	color:#454545;
	margin:0 0 16px;
	padding:0px;
}

div.st_vertical div.st_view p {	
	margin:14px 0 0;
	padding:0px;
}

div.st_vertical div.st_view blockquote {
	float:left;
	width:243px;
	margin:18px 14px 0 0;
	padding:0 0 0 14px;
	border-left:2px solid #5c5c5c;
	font:italic 17px/21px Georgia, "Times New Roman", Times, serif;
	color:#A8A8A8;
}

div.st_vertical div.st_view blockquote p {
	margin:0px;
}

/* Right aligned tabs
------------------------------------------------------------------------------------- */
div.st_vertical.align_right div.st_tabs_container { /* Tabs main container */  	
	float:right;
	margin-left:-1px;
	margin-right:0px;
}

div.st_vertical.align_right ul.st_tabs li a { /* Tab links */
	border-right:1px solid #d4d4d4;
}

div.st_vertical.align_right ul.st_tabs a.st_tab_active { /* Tab active/highlighted state */
	padding-right:0px;
	border-left-color:#ffffff;
}