
.fs_style_1 {
			/* Shouldn't need to modify this */
			.kfTabsTop .kfTabsNav{
				list-style: none;
				width: 100%;
				margin: 0 0 0 3px;
				padding: 0;
			}
			/* Or this */
			.kfTabsTop .kfTabsNav:after{
				content: '.';
				clear: both;
				height: 0;
				visibility: hidden;
				display: block;
			}
			.kfTabsTop .kfTabsNav li{
				float: left;
				border: 1px solid gray; /* Change the border here */
				background-color: #6f5e21;
				margin-right: 3px; /* This provides some seperation between the tabs, it can be played with */
				cursor: pointer;
				padding: 0 0.5em;
				-moz-border-radius-topleft:3px;
				-moz-border-radius-topright: 3px;
				-webkit-border-top-left-radius:3px;
				-webkit-border-top-right-radius: 3px;
				border-top-left-radius:3px;
				border-top-right-radius: 3px;
				/* This is where you would set the background and font info for unselected tabs */
			}
			.kfTabsTop .kfTabContainer{
				border: 1px solid gray; /* This controls the border around the tab content */
				margin-top: -1px;
				width:100%; /* The width can be played with if desired */
				-moz-border-radius: 3px;
				-webkit-border-radius: 3px;
				border-radius: 3px;
			}
			/* Shouldn't need to touch this except if you play with the border */
			.kfTabsLeft .kfTabsNav{
				list-style: none;
				margin: 0;
				padding: 0;
				float: left;
				border-top: 1px solid black; /* Here's the border color, size, type for the top of the list*/
			}
			/* Can change borders and spacing for the tabs here */
			.kfTabsLeft .kfTabsNav li{
				border-bottom: 1px solid black;
				border-left: 1px solid black;
				cursor: pointer;
			}
			.kfTabsLeft .kfTabContainer{
				border: 1px solid black; /* This controls the border around the tab content */
				float: left;
				width: 400px; /*This controls the width of the tab content, you can set it to what you want */
			}
			/* Can change the background and fonts for the tab content here */
			.kfTabContent{
				display:none;
				width: 100%;
				padding: 0.5em;
			}
			/* Put what you want the tab to look like when it is selected here */
			.kfTabsNav li.kfTabSelected{
				background-color: white;
				border-bottom-color: white;
			}
			/* Shouldn't need to touch */
			.kfTabContentSelected{
				display:block;
			}

}

