/**
 * Tabby v7.3.0
 * Simple, mobile-first toggle tabs., by Chris Ferdinandi.
 * http://github.com/cferdinandi/tabby
 * 
 * Free to use under the MIT License.
 * http://gomakethings.com/mit/
 */

/*  Hide tab navigation by default */
.tabs {
  display: none;
  visibility: hidden; }

/*  Display tab navigation if javascript enabled.
 *  This requires on the included js-accessibility.js-tabby script. */
.js-tabby .tabs {
  display: block;
  visibility: visible; }

/*  Force browser to show a pointer on tab navigation. */
.tabs a, .tabs button {
  cursor: pointer; }

/*  Hide tab content if javascript is enabled. */
.js-tabby .tabs-pane {
  display: none;
  visibility: hidden; }

/*  Show tab content when active class is added.
 *  This class is added via javascript. */
.tabs-pane.active {
  display: block;
  visibility: visible; }

/* Clearfix */
.tabs:before, .tabs:after {
  display: table;
  content: ""; }

.tabs:after {
  clear: both; }




/*  SIDEBAR WIDGETS */

.popular-container {
	display: block;
	padding: 5px;
	background-color: #ECECEC;
}

.sidebar-widget ul.tabs {
	display: block;
	border-bottom: 1px solid #ececec;
}

.sidebar-widget .tabs-content {
	display: block;
	padding: 10px;
	padding-top: 15px;
	background-color: #fff;
	min-height: 190px;

}

.sidebar-widget .tabs-content a{
	color: #222;
}

.sidebar-widget .tabs-content a:hover {
	color: #c50000;
}


.sidebar-widget ul.tabs li{
	display: block;
	float: left;
	padding: 6px;
	padding-left: 13px;
	padding-right: 13px;
	
	border-right: 1px solid #ececec;
	background-color: #ececec;

	
border-radius:5px 5px 0px 0px;
-moz-border-radius:5px 5px 0px 0px;
-webkit-border-radius:5px 5px 0px 0px;	

}

.sidebar-widget ul.tabs li:last-child {
	border-right: 0px;
}

.sidebar-widget ul.tabs li.active {
	background-color: #fefefe;
	border-bottom: 1px solid #fff;
	margin-bottom: -1px;
}

.sidebar-widget ul.tabs li a {
	color:  #222;
	-moz-transition: 0s ease-in-out;
	-webkit-transition: 0s ease-in-out;
}

.sidebar-widget ul.tabs li.active  a{
	font-weight: 600;
	text-decoration: none;
	color: #c50000;
	
	
}

.sidebar-widget ul.tabs li a{
	background-color: transparent;
	outline: none;
}