.tabscontainer {
	width: 100%; /* main width */
}

/* The Tabs -------------------------------------------- */

#tabsmenu a:link{
	color: #fff; /* Link Colour */
	font-size: 1.0em;
	font-weight: bold;
	text-decoration: none;
}

#tabsmenu a:visited {
	color: #fff; /* Visited Link Colour */
	font-weight: bold;
	text-decoration: none;
}

#tabsmenu a:hover {
	color: #fff; /* Hover Link Colour */
	font-weight: bold;
	text-decoration: none;
}

#tabsmenu {
	margin-left: 10px; /* tabs left margin - if centering tabs or using non-rounded corners, you can set to zero */
}

#tabsmenu ul, #tabs ul li {
	list-style: none;
	margin: 0;
	padding: 0;
}

#tabsmenu ul {
	padding: 5px 0 5px 0;
	text-align: left; /* align tabs left, right or center */
}

#tabsmenu ul li {
	display: inline;
	margin-right: 0px; /* Gap Between Each Tab */
}

#tabsmenu ul li a {
	background: url(images/tableft.jpg) no-repeat left top;
	text-decoration: none;
	padding: 5px 0;
}

#tabsmenu ul li span {
	background: url(images/tabright.jpg) no-repeat right top;
	padding: 5px 9px 5px 2px; /* Top Right Bottom Left */
	margin: 4px 0 7px 7px;
}

#tabsmenu ul li a:hover span {
	text-decoration: none;
	background-position: 100% -75px;
	color: #fff;
}

#tabsmenu ul li a:hover {
	background-position: 0 -75px;
	color: #fff;
}

#tabsmenu #selected a {
	background-position: 0 -150px;
	color: #fff;
}

#tabsmenu #selected a span {
	background-position: 100% -150px;
	color: #fff;
}


/* Tabbed Content Default Display -------------------------------------------- */

.tabcontent{
	display: none;
	padding-left: 0px; /* content padding */
}

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


