/*
--- simple tabs ---
--- js code from:
--- http://www.sohtanaka.com/web-design/simple-tabs-w-css-jquery/
*/


ul.tabs {
	margin: 20px 0 -5px 0;
	padding: 0;
	float: left;
	height: 40px;
	width: 510px;
	
	width: 680px;  /*max szelesseg h beferjen 1024be */
	
	border: 5px solid #434D43;
	
	box-shadow:         0 0 5px #222 inset, 3px 3px 3px #303030;
	-moz-box-shadow:    0 0 5px #222 inset, 3px 3px 3px #303030;
	-webkit-box-shadow: 0 0 5px #222 inset, 3px 3px 3px #303030;
	
	border-radius:          5px 5px 0 0;
	-moz-border-radius:     5px 5px 0 0;
	-webkit-border-radius:  5px 5px 0 0;
}

ul.tabs li {
	float: left;
	height: 30px;
	margin: 5px 0 5px 5px;
	overflow: hidden;
	position: relative;
}

ul.tabs li a {
	color: #eaeaea!important;
	display: block;
	outline: none;
	padding: 0 18px;
	font: bold 18px/30px "Arial Narrow", "Segoe UI", "Trebuchet MS", arial, sans-serif;
}

ul.tabs li a:hover {
	background: #434D43;
	text-decoration: none!important;
	/* color: #48ef6f; */
	
	border-radius:          5px;
	-moz-border-radius:     5px;
	-webkit-border-radius:  5px;
}

html ul.tabs li.active, 
html ul.tabs li.active a:hover  { 
	color: #48ef6f;
	background: #434D43;
    height: 40px;
    
    border-radius:          5px 5px 0 0;
    -moz-border-radius:     5px 5px 0 0;
    -webkit-border-radius:  5px 5px 0 0;
}

.tab_container {
	overflow: hidden;
	clear: both;
	float: left; 
	width: 100%;
	margin-bottom: 20px;
	background: #434D43;
	
	border-color: 1px solid #415446;
	
	border-radius:          0 0 5px 5px;
	-moz-border-radius:     0 0 5px 5px;
	-webkit-border-radius:  0 0 5px 5px;
	
	box-shadow:         3px 3px 3px #303030;
	-moz-box-shadow:    3px 3px 3px #303030;
	-webkit-box-shadow: 3px 3px 3px #303030;
}

.tab_content { padding: 5px; }


.tab_content ul {
    list-style: square outside;
    margin-left: 20px;
    font-size: 13px;
}