/* ######### CSS for Inverted Modern Bricks II Tabs. Remove if not using ######### */

.modernbricksmenu2{
	padding: 0px;
	margin: 0px;
	width: 100%;
	border-bottom: 6px solid #3d0c04; /*Brown color theme*/ 
	background: transparent;
	height: 32px;
}

.modernbricksmenu2 ul{
	margin:0;
	padding: 0;
	list-style: none;
}

.modernbricksmenu2 li{
	display: inline;
	height: 32px;
	padding: 0px;
	margin: 0px;
	text-transform:uppercase;
}

.modernbricksmenu2 a{
	float: left;
	display: block;
	font: bold 16px trebuchet ms, arial;
	color: #3d0c04;
	text-decoration: none;
	margin: 0 1px 0 0; /*Margin between each menu item*/
	padding: 5px 30px;
	background-color: #ffffff; /*Brown color theme*/ 
}

.modernbricksmenu2 a:hover{
	background-color: #3d0c04; /*Brown color theme*/ 
	color: white;
}

.modernbricksmenu2 a.selected{ /*currently selected tab*/
	background-color: #3d0c04; /*Brown color theme*/ 
	color: white;
}

.tabcontent{
	display:none;
}

@media print {
	.tabcontent {
		display:block !important;
	}
}

