/* ######### CSS for Indented CSS Tabs. Remove if not using ######### */
.taburi {
background:#dde7b2;
border-bottom:1px solid gray; 
border-left:1px solid gray; 
border-right:1px solid gray; 
width:328px; 
height: 300px; 
padding: 5px; 
margin-bottom:1em;
}

.indentmenu{
font: bold 13px Arial;
width: 100%; /*leave this value as is in most cases*/
border-bottom:1px solid gray;
}

.indentmenu ul{
margin: 0;
padding: 0;
float: left;
/* width: 80%; width of menu*/
background: transparent;
color: #000;
}

.indentmenu ul li{
display: inline;
background:#fff;
}

.indentmenu ul li a{
background:#fff;
border: 1px solid gray; /*gray border*/
float: left;
color: #000; /*text color*/
padding: 5px 11px;
text-decoration: none;
border-right: 1px solid gray; /*gray divider between menu items*/
margin-right:3px;
}

.indentmenu ul li a:visited{
color: #000;
}

.indentmenu ul li a.selected{
color: #000 !important;
padding-top: 6px; /*shift text down 1px*/
padding-bottom: 4px;
background: #dde7b2;
border-bottom: 1px solid #dde7b2; 
}


.tabcontentstyle{ /*style of tab content oontainer*/
border: 1px solid gray;
width: 450px;
margin-bottom: 1em;
padding: 10px;
}

.tabcontent{
display:none;
}

@media print {
.tabcontent {
display:block !important;
}
}