/*
  CSS for creating a 'tabbed pane' and appropriate markup for respective elements
  Many thanks to Adam Kalsey of the Kalsey Consulting Group for the CSS and corresponding markup
  for these fantastic, logical tabs - http://www.kalsey.com/tools/csstabs/
*/
body {
	/* PROBLEM 6, FIX 1a - TO MAKE ALL ELEMENTS RESIZE CORRECTLY WITH CHANGES IN TwoColumnRMenu FOR EXPLORER 6 WIN- 
	can REMOVE this if width is set to 'auto' in .content (TwoColumnRMenu.css)*/
	/*min-width: 576px;*/
	/*width: 100%;*/
	margin : 0px;
	padding: 0px;
}
#menu {
	border-bottom : 1px solid #ccc;
	margin: 0;
	margin-left: 10px;
	margin-right: 16px;
	padding-bottom: 19px;
	padding-left: 10px;
	min-width: 411px; /*minimum width set to disallow resizing of tabs*/
}
#menu ul, #menu li	{
	display: inline;
	list-style-type: none;
	margin: 0;
	padding: 0;
	min-width: 411px; /*minimum width set to disallow resizing of sub-tab items, along with tabs above*/
}
#menu a:link, #menu a:visited	{
	background: #E8EBF0;
	border: 1px solid #ccc;
	color: #006699;
	float: left;
	font-size: 10;
	font-weight: bold;
	line-height: 14px;
	margin-right: 8px;
	padding: 2px 6px 2px 10px;
	text-decoration: none;
}
#menu a:hover	{
	color: #999999;
}
body.section-1 #menu li#nav-1 a, 
body.section-2 #menu li#nav-2 a,
body.section-3 #menu li#nav-3 a,
body.section-4 #menu li#nav-4 a {
	background: #fff;
	border-bottom: 1px solid #fff;
	color: #9900CC;
}
#menu #subnav-1,
#menu #subnav-2,
#menu #subnav-3,
#menu #subnav-4 {
	display: none;
	width: 90%;
}
body.section-1 #menu ul#subnav-1, 
body.section-2 #menu ul#subnav-2,
body.section-3 #menu ul#subnav-3,
body.section-4 #menu ul#subnav-4 {
	display: inline;
	left: 175px;
	position: absolute;
	top: 195px;
	z-index: 4;   /*z-index set to higher number to allow the links to work in NN*/
}
body.section-1 #menu ul#subnav-1 a, 
body.section-2 #menu ul#subnav-2 a,
body.section-3 #menu ul#subnav-3 a,
body.section-4 #menu ul#subnav-4 a {
	background: #fff;
	border: none;
	border-left: 1px solid #ccc;
	color: #999;
	font-size: 9px;
	font-weight: bold;
	line-height: 10px;
	/*margin-right: 4px;*/
	/*padding: 2px 10px 2px 10px;*/ 
	text-decoration: none;
}
 #menu ul a:hover {
	color: #006699 !important;
}
#contents {
	/*position: relative;*/
	background: #fff;
	border: 1px solid #ccc;
	border-top: none;
	clear: both;
	/*margin: 0px;*/
	margin-left: 10px;
	margin-right: 16px;
	margin-bottom: 10px;
	padding: 15px;
	/*width: 100%;*/
	min-width: 411px;
	z-index: 3;
}
#seminarTable{
	border-left: 1px solid #ccc;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}
#seminarTable td{
	border-right: 1px solid #ccc;
}