/*
	Cudazi Tabbed Content plugin Styles
*/

/* Outer wrap */
.tab_wrap {
	font-family: sans-serif;
	font-size: 13px;
	line-height: 170%;	
	border:1px solid #eee;
	background:#f0f0f0;
	padding:10px;	
	margin: 0 0 20px 0;
	
}

/* Reset UL lists */
.tab_wrap ul.tab_container,
.tab_wrap ul.tab_navigation {
	margin: 0 !important;
	padding: 0 !important;
}

/* Reset UL LI Lists */
.tab_wrap ul.tab_container li.tab_content,
.tab_wrap ul.tab_navigation li.tab {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: inline;
}

/* Set rounded edges in tab container and tab wrap */
.tab_wrap,
.tab_wrap .tab_container {
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	border: 1px solid #fff;
}

/* Add a slight shadow and remove border on top left */
.tab_wrap .tab_container {
	-moz-top-left-radius: 0;
	-webkit-top-left-radius: 0;
	border-top-left-radius: 0;
	
	-moz-box-shadow: 2px 2px 2px #e9e9e9;
	-webkit-box-shadow: 2px 2px 2px #e9e9e9;
	box-shadow: 2px 2px 2px #e9e9e9;
	
	padding: 20px 10px;

}

/* Set a background */
.tab_wrap ul.tab_container,
.tab_wrap .tab_navigation .active a,
.tab_wrap ul.tab_navigation .active a:hover,
.tab_wrap ul.tab_container li.tab_content {
	background: #fff;
}

/* Tab container element styles */
.tab_wrap ul.tab_container li.tab_content {
	padding: 20px;
	display: block;
}

/* Reset float in navigation */
.tab_wrap ul.tab_navigation {
	overflow: hidden;
}

/* Tab navigation links */
.tab_wrap ul.tab_navigation a {
	padding: 12px 35px 10px 35px;
	margin-right: 2px;
	text-decoration: none;	
	font-weight: bold;
	line-height: 100%;
	color: #999;
	background: #fafafa;	
	display: block;
	float: left;	
	-moz-border-radius: 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0;
	border-radius: 5px 5px 0 0;
}

/* Tab navigation active/hover */
.tab_wrap .tab_navigation .active a,
.tab_wrap ul.tab_navigation a:hover {
	color: #444;		
}

/* Tab navigation background on hover */
.tab_wrap ul.tab_navigation a:hover {
	background: #f7f7f7;
}

/* Link border removed on click */
.tab_wrap a:active{
	outline: none;
}

/* Reset P margin/padding on last element */
.tab_wrap .tab_container li.tab_content p:last-child {
	padding-bottom: 0 !important;
	margin-bottom: 0 !important;
}
