/**
 *
 *   Tab Control Style Sheet File
 *   Copyright (c) 2009. by MASSVision, http://massvision.net
 *   Author: Mladen Mijatov
 *
 **/

ul#tab_control {
	display: block;
	max-width: 700px;

	margin: 0px;
	padding: 0px;

	border-bottom: 1px solid #6a7983;

	list-style-type: none;
	list-style-image: none;
}

ul#tab_control li {
	display: inline-block;

	margin: 0px;
	margin-right: -7px;
	margin-bottom: -1px;
	padding: 0px;
	padding-right: 6px;

	position: relative;

	background-image: url(Tabs/tab_inactive_right.png);
	background-repeat: no-repeat;
	background-position: top right;

	cursor: pointer;
}

ul#tab_control li span {
	display: inline-block;
	height: 17px;

	padding-top: 4px;
	padding-left: 6px;

	background-image: url(Tabs/tab_inactive_left.png);
	background-repeat: no-repeat;
	background-position: top left;

	color: #c7cfd5;
	font-size: 11px;
}

ul#tab_control li.selected {
	background-image: url(Tabs/tab_active_right.png);
}

ul#tab_control li.selected span {
	background-image: url(Tabs/tab_active_left.png);

	color: black;
}

div#tab_list {
	display: block;
	max-width: 720px;
}

div#tab_list.empty {
	border-top: 1px solid #6a7983;
}

div#tab_list .tab_active {
	display: block;

	padding: 10px;
	padding-bottom: 0px;

	border-left: 1px solid #6a7983;
	border-right: 1px solid #6a7983;
	background-image: url(Tabs/container_back.png);
	background-repeat: repeat-x;
	background-position: top left;
	background-color: white;
}

div#tab_list .tab_inactive {
	display: none;
}

div#tab_list div.bottom_edge {
	display: block;
	padding-left: 10px;

	clear: both;

	background-image: url(Tabs/container_bottom_left.png);
	background-repeat: no-repeat;
	background-position: bottom left;
}

div#tab_list div.bottom_edge div {
	display: block;
	height: 24px;

	background-image: url(Tabs/container_bottom_right.png);
	background-repeat: no-repeat;
	background-position: bottom right;
}


.in_iframe {
	background-image: url(Tabs/container_back.png);
	background-repeat: repeat-x;
	background-position: 0px -10px;
	background-attachment: fixed;
	background-color: white;
}
