/* 
 * Sliding Tabs - jQuery Plugin
 * Copyright 2011, Christian André
 *
 * CHANGING THE WIDTH: To change the width of the tabs layout see line 14.
 *
------------------------------------------------------------------------------------- */
#st_horizontal, .st_tabs_container, .st_tabs_container  { 
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}

div.st_horizontal { /* The main container */	
	position:relative;
	float:left;
	clear:both;
	width:620px; /* Set the full width */	
	color:#333;
	margin-top: 22px;
}

/* Control buttons
------------------------------------------------------------------------------------- */
div.st_horizontal a.st_prev, 
div.st_horizontal a.st_next { /* Directional buttons (previous/next) */
	position:absolute;
	top:0px;
	z-index:110;
	display:none;
	height:38px;
	width:39px;
	border:1px solid #d4d4d4;
	outline:none;
	background:#fff url(../img/btn_arrows.gif) no-repeat;	
}

div.st_horizontal a.st_prev { /* Previous button */
	left:0px;
	background-position:13px 13px;
	border-top-left-radius:4px;
	-moz-border-radius-topleft:4px;
	-webkit-border-top-left-radius:4px;
}

div.st_horizontal a.st_prev:hover { /* Previous button hover */	
	background-position:-50px 13px;
	background-color:#f5f5f5;
}

div.st_horizontal a.st_next { /* Next button */
	right:0px;
	background-position:14px -14px;
	border-top-right-radius:4px;
	-moz-border-radius-topright:4px;
	-webkit-border-top-right-radius:4px;
}

div.st_horizontal a.st_next:hover { /* Next button hover */	
	background-position:-49px -14px;
	background-color:#f5f5f5;
}

div.st_horizontal a.st_prev.st_btn_disabled, 
div.st_horizontal a.st_next.st_btn_disabled { /* Previous and next buttons disabled state */
	cursor:default;
	background-color:#f7f7f7;
}

div.st_horizontal a.st_prev.st_btn_disabled { /* Previous button disabled state */
	background-position:-113px 13px;
}

div.st_horizontal a.st_next.st_btn_disabled { /* Next button disabled state */
	background-position:-112px -14px;
}

/* Tabs
------------------------------------------------------------------------------------- */
div.st_horizontal div.st_tabs_container { /* Tabs main container */
background: #25820e; /* Old browsers */
background: -moz-linear-gradient(top, #288b0f 33%, #37c215 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(33%,#288b0f), color-stop(100%,#37c215)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #288b0f 33%,#37c215 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #288b0f 33%,#37c215 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #288b0f 33%,#37c215 100%); /* IE10+ */
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#288b0f', endColorstr='#37c215'); /* IE */
background: linear-gradient(to bottom, #288b0f 33%,#37c215 100%); /* W3C */
border-right: 1px solid #288b0f;
border-bottom: 1px solid #288b0f;
	position:relative;
	z-index:100;
	width:100% !important;
	height:52px;
	margin-bottom:-1px;	
	overflow:hidden;
}

div.st_horizontal 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 */
}

div.st_horizontal div.st_sliding_active div.st_slide_container { /* The .st_sliding_active class is added to the div.st_tabs_container element when tab sliding is activated */
	margin:0px 40px; /* Adds side margins to make space for the arrow buttons */
}

div.st_horizontal ul.st_tabs { /* Tabs unordered list */
	width:10000px; /* Set to an arbitrary high value */
	height:52px;
	margin:0px;
	padding:0px;
	list-style:none;
	background: url(../img/tab-top.png) repeat-x top left;
}

div.st_horizontal ul.st_tabs li { /* Tab list elements */
	float:left; margin: 0; padding:0; background-image:none;
}

div.st_horizontal ul.st_tabs li a { /* Tab links */
	display: block;
	width:204px;
	margin:0px;
	padding:15px 0 6px 0;
	font-size:16px;
	line-height:16px; /* Aligns the tabs to the bottom of the content container */
	color:#fff;
	font-weight:bold;
	text-decoration:none;
	text-align: center;
	outline:none;
	text-transform: uppercase;
	border-left: 1px solid #25820e;
}
.ie7 div.st_horizontal ul.st_tabs li a  { }

div.st_horizontal ul.st_tabs a:hover { /* Tabs hover state */
	color:#333;
}

div.st_horizontal ul.st_tabs li a.st_first_tab {

} 

div.st_horizontal ul.st_tabs a.st_tab_active { /* Tab active/highlighted state */

}

/* Content
------------------------------------------------------------------------------------- */
div.st_horizontal div.st_view_container { /* Main content container */
background: #f2f2f2; /* Old browsers */
background: -moz-linear-gradient(top, #ffffff 33%, #f2f2f8 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(33%,#ffffff), color-stop(100%,#f2f2f8)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #ffffff 33%,#f2f2f8 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #ffffff 33%,#f2f2f8 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #ffffff 33%,#f2f2f8 100%); /* IE10+ */
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f2f2f8'); /* IE */
background: linear-gradient(to bottom, #ffffff 33%,#f2f2f8 100%); /* W3C */
	position:relative;
	z-index:5;
	height:220px;
	padding:20px; /* Set the padding for the content here */
	border-top:1px solid #d4d4d4;
	border-right:1px solid #d4d4d4;
	border-left:1px solid #d4d4d4;
	overflow:hidden; /* To make the content scroll if Javascript is disabled, set to: auto */
}

div.st_horizontal div.st_view { /* Slide-container for the content */
	position:relative;
	height:100%;
	overflow:hidden;
}

div.st_horizontal div.st_tab_view { /* Individual content containers */
	display:none; /* Hides the content when Javascript is disabled */
	width:100%;	
}

div.st_horizontal div.st_first_tab_view {
	display:block;
}

div.st_horizontal div.st_view h2 {
	font-size: 28px;
	color:#06c;
	margin:0 0 16px;
	padding:0px;
}

div.st_horizontal div.st_view p {
	margin:14px 0 0;
	padding:0px;
}

div.st_horizontal div.st_view blockquote {
	float:left;
	width:315px;
	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_horizontal div.st_view blockquote p {
	margin:0px;
}

/* Bottom aligned tabs
------------------------------------------------------------------------------------- */
div.st_horizontal.align_bottom a.st_prev, 
div.st_horizontal.align_bottom a.st_next { /* Directional buttons (previous/next) */
	border-bottom:1px solid #d4d4d4;
}

div.st_horizontal.align_bottom a.st_prev { /* Previous button */
	/* Reset top borders */
	border-top-left-radius:0px;
	-moz-border-radius-topleft:0px;
	-webkit-border-top-left-radius:0px;
	/* Set bottom borders */
	border-bottom-left-radius:4px;
	-moz-border-radius-bottomleft:4px;
	-webkit-border-bottom-left-radius:4px;
}

div.st_horizontal.align_bottom a.st_next { /* Next button */
	/* Reset top borders */
	border-top-right-radius:0px;
	-moz-border-radius-topright:0px;
	-webkit-border-top-right-radius:0px;
	/* Set bottom borders */
	border-bottom-right-radius:4px;
	-moz-border-radius-bottomright:4px;
	-webkit-border-bottom-right-radius:4px;
}

div.st_horizontal.align_bottom div.st_tabs_container { /* Tabs main container */
	position:absolute; /* Absolute position the tabs container at the bottom of the main container */
	bottom:-52px;
	left:0px;
	margin-bottom:0px;
	height: 52px;
}

div.st_horizontal.align_bottom ul.st_tabs a.st_tab_active { /* Tab active/highlighted state */
background: url(../img/tab-selected.png) no-repeat top center;
}
