/* This is the selector for the TabbedPanelsTab. This container houses
 * the title for the panel. This is also the tab "button" that the user clicks
 * on to activate the corresponding content panel so that it appears on top
 * of the other tabbed panels contained in the widget.
 *
 * For our default style, each tab is positioned relatively 1 pixel down from
 * where it wold normally render. This allows each tab to overlap the content
 * panel that renders below it. Each tab is rendered with a 1 pixel bottom
 * border that has a color that matches the top border of the current content
 * panel. This gives the appearance that the tab is being drawn behind the
 * content panel.
 *
 * The name of the class ("TabbedPanelsTab") used in this selector is not
 * necessary to make the widget function. You can use any class name you want
 * to style this tab container.
 */
.TabbedPanelsTab {
	position: relative;
	float: left;
	padding: 4px 10px;
	font: bold 11px Arial, Helvetica, sans-serif;
	color:rgb(23,87,161);
	list-style: none;
	border-left: #1757A1;
	border-top: 2px solid #1757A1;
	border-right: 2px solid #1757A1;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	background: #FFFFFF;
	border-bottom-color: #1757A1;
	margin-top: 0px;

}
/* This is the selector for the ContentGroup. The ContentGroup container houses
 * all of the content panels for each tabbed panel in the widget. For our
 * default style, this container provides the background color and borders that
 * surround the content.
 *
 * The name of the class ("TabbedPanelsContentGroup") used in this selector is
 * not necessary to make the widget function. You can use any class name you
 * want to style the ContentGroup container.
 */
.TabbedPanelsContentGroup {
	background: #FFFFFF;
	border-top: 2px solid #1757a1;
	border-right: 2px solid #1757a1;
	border-bottom: 2px solid #1757a1;
	border-left: 0px solid #1757a1;
	clear: left;
	padding-left: 10px;
	padding-right: 10px;

}
/* This selector is an example of how to change the appearance of a tab button
 * container after the user has clicked on it to activate a content panel.
 * The class "TabbedPanelsTabSelected" is programatically added and removed
 * from the tab element as the user clicks on the tab button containers in
 * the widget.
 *
 * As mentioned above, for our default style, tab buttons are positioned
 * 1 pixel down from where it would normally render. When the tab button is
 * selected, we change its bottom border to match the background color of the
 * content panel so that it looks like the tab is part of the content panel.
 */
.TabbedPanelsTabSelected {
	background: rgb(23,87,161);
	border-bottom-style: none;
	color: #FFFFFF;
	font-weight: bold;

}
.creditsscreen    {
	padding: 10px;
	display: none;
	
}
.creditsprint {
	visibility: visible;
	display: block;
}
.creditsprint img {
	padding: 10px;
}
body			{

	background: #FFFFFF;
}

#container {
	width:auto;
	border-style: none;
}
#banner {
	background-repeat:no-repeat;
	width: 100%;
}
#banner a {

	display: none;
}
	
	#mainContent	{
border: none;
}


#navigation {
	width: 100%;

}

.odd {
	background: #FEF3B2;
}
.even {
	background: #ffffff;
}
