/*

Stylesheet for SB Tabbed Widget
Author: Scott Bolinger
Author URI: http://scottbolinger.com/

*/

/* Contains the entire tabbed section */
.widget_sb_tabbed_widget {
	border: 1px solid #eee;
	background: #fff;
	overflow: hidden;
	padding: 0 !important;
	width: 100%; /* Need to change for responsive width */
}

/* List of tabs */
.widget_sb_tabbed_widget ul.sb_tabs {
	float: left;
	display: inline;
	width: 100%;
	margin: 0 !important;
	padding: 0;
}
.widget_sb_tabbed_widget .tab-content ul {
	margin: 0 !important;
}
.widget_sb_tabbed_widget ul.sb_tabs li {
	list-style: none;
	float: left;
	margin: 0;
	padding: 0;
	width: 33%;
	text-align: center;
	max-height: 42px;
	overflow: hidden;
	border-bottom: none;
}
.widget_sb_tabbed_widget ul.sb_tabs li:before {
	/* theme compatibility fix */
	border-bottom: none;
}
.widget_sb_tabbed_widget ul.sb_tabs li:last-child {
	margin-right: none;
	width: 34%;
}
.widget_sb_tabbed_widget ul.sb_tabs li a {
	overflow: hidden;
	display: block;
	margin: 0;
	padding: 15px 0;
	line-height: 1;
	font-size: 12px;
	background: #444;
	-moz-box-shadow:    inset 0 0 5px #333;
    -webkit-box-shadow: inset 0 0 5px #333;
    box-shadow:         inset 0 0 5px #333;
	color: #ccc;
}

.sb_tabbed ul.sb_tabs li a:hover {
	cursor: pointer;
}

/* The current selected tab */
.widget_sb_tabbed_widget ul.sb_tabs li a.tab-current {
	background: #fff;
	color: #333;
	box-shadow: none;
}

/* Post Meta */
.sb-date-meta, .sb-comment-meta, .sb-cat-meta {
	font-size: 12px;
	color: #999;
	font-style: italic;
}

.sb-date-meta, .sb-comment-meta {
	display: block;
}

/* Set the CSS to make sure the other tabs' content isn't shown other than the first */
.widget_sb_tabbed_widget div.t2, .widget_sb_tabbed_widget div.t3, .widget_sb_tabbed_widget div.t4 {
	display: none;
}

/* Content for inside your tabs' divs */
.widget_sb_tabbed_widget .tab-content {
	padding: 10px 20px;
	clear: both;
}

.widget_sb_tabbed_widget .tab-content ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.widget_sb_tabbed_widget .tab-content ul li {
	padding: 10px 0;
	border-bottom: 1px solid #eee;
	overflow: hidden;
	background: none;
}

.widget_sb_tabbed_widget .tab-content ul li img {
	border: 1px solid #eee;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

.widget_sb_tabbed_widget .tab-content ul li:last-child {
	border-bottom: none;
}