@charset "utf-8";
/* CSS Document */
.tabbox {
	width: 680px; 
	height: 440px;
	border-top: 5px solid #016698;
	clear: both;
}
.tab { width: auto; padding: 0; }
.tab ul {
	margin:0;
	margin-left: 10px; /*margin between first menu item and left browser edge*/
	padding: 0;
	list-style: none;
}
.tab li {
	display: inline;
	margin: 0 2px 0 0;
	padding: 0;
}
.tab a, .tab a:visited {
	float: left;
	display: block;
	font: bold 11px Arial;
	color: #CCC;
	text-decoration: none;
	margin: 0;
	padding: 5px 10px;
	border-bottom: 1px solid #ADC0E2;
	background-repeat: repeat-x;
}
.tab img {
	margin: 0 1px 0 0; /*Margin between each menu item*/
	float: left;
}
.tab li a, .tab li img { border-bottom: 1px solid #ADC0E2; }

.tab a:hover {
	text-decoration: underline;
}
.tab a.selected { /*currently selected tab*/
	color: white;
	border-color: #016698; 
}
.tab img.selected {
	border-bottom: 1px solid #016698;
}
.tab li a.selected {
	background-image: url(img/tab_016698_top.png);
}
.tab li a {
	background-image: url(img/tab_gray_top.png);
}
.tabcontent {
	display:none;
}
.tabcontent_image {
	height: 400px;
	width: 100%;
}
.tabcontent_descr { 
	font-style: italic;
	font-size: 15px;
	width: 100%;
	height: 40px;
	text-align: center;
}
.catalog_link {
	font-style: normal;
	font-weight:bold;
	font-size: 10px;
	text-decoration:none;
}
@media print {
	.tabcontent {
		display:block !important;
	}
}

