/* tabbed.css for adding tabs to any page via Plugin Lists
	Copyright 2015 Website Chameleon */

/*tabs for list items*/
	.usertabs {
		padding:.5em 0 0.5em 3em;
		margin:0 .25em .15em -2.95em; /* placement of tabs, original left margin was -.5em*/
		clear:both; /* added next three lines since not clearning the footer*/
		float:left;
		height: 100%;}
			
			.usertabs li {
				list-style:none;
				display:inline;	
			}

			.usertabs a {
				padding:.6em .8em;
				display:inline-block;
				background:#666;
				color:#F7F4F2;
				text-decoration:none;
				font-size: 1.2em;
				/*margin: -13px;*/
				border-top-right-radius: 3px;
				border-top-left-radius: 3px;
				
			}

			.usertabs a.active {
				background:#F7F4F2;
				color:#000;
				border: 1px solid #ddd;
			}
			.usertabscontent{
				width: 100%; /*width of content box*/
				min-height: 300px;
				min-width: 350px;
				/*margin-left: 40px;  offset for the main content box*/
				background-color:#F7F4F2; 
				padding: 10px;
				margin-top: -8px;
				border: 1px solid #ddd;
				float: left;
			}
			.usertabscontent img{
					padding:0 !important;
					margin:0 !important;
					-moz-box-shadow: none; /* Firefox */
					 -webkit-box-shadow: none; /* Safari/Chrome */
					 box-shadow: none; /* Opera and other CSS3 supporting browsers */
					 -ms-filter: "none";/* IE 8 */
					 border: 0;
					 box-shadow: none !important;
			}
/*Tabs Listing*/


.cd-tabs {
  position: relative;
  width: 90%;
  max-width: 960px;
  margin: 2em auto;
}
.cd-tabs::after {
  clear: both;
  content: "";
  display: table;
}
.cd-tabs::after {
  /* subtle gradient layer on top right - to indicate it's possible to scroll */
  position: absolute;
  top: 0;
  right: 0;
  height: 60px;
  width: 50px;
  z-index: 1;
  pointer-events: none;
  background: -webkit-linear-gradient( right , #f8f7ee, rgba(248, 247, 238, 0));
  background: linear-gradient(to left, #f8f7ee, rgba(248, 247, 238, 0));
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}
.no-cssgradients .cd-tabs::after {
  display: none;
}
.cd-tabs.is-ended::after {
  /* class added in jQuery - remove the gradient layer when it's no longer possible to scroll */
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
}
.cd-tabs nav {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: #f8f7ee;
  box-shadow: inset 0 -2px 3px rgba(203, 196, 130, 0.06);
}