@charset "UTF-8";

.TabbedPanels { margin: 0px; padding: 0px; float: left; clear: none; width: 100%; /* IE Hack to force proper layout when preceded by a paragraph. (hasLayout Bug)*/ }

.TabbedPanelsTabGroup { margin: 0px; padding: 0px; }

/* This is the selector for the TabbedPanelsTab. This container houses
 * the title for the panel. This is also the tab "button".
 *
 * For our default style, each tab is positioned relatively 1 pixel down from
 * where it would 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.
 */
.TabbedPanelsTab { position: relative; top: 1px; float: left; padding: 4px 10px; margin: 0px 1px 0px 0px; font: bold 0.7em sans-serif; background-color: #f3db76; background-image:url(../imgLayout/tabbedPannelsTabBkg.gif); list-style: none; border-left: solid 0px #f9f9f8; border-bottom: solid 1px #d1d1d5; border-top: solid 1px #f9f9f8; border-right: solid 0px #f9f9f8; -moz-user-select: none; -khtml-user-select: none; cursor: pointer; 
}

/* This selector "TabbedPanelsTabHover" is
 * programatically added and removed from the tab element as the mouse enters
 * and exits the container.
 */
.TabbedPanelsTabHover {	background-color: #FFF; background-image:url(../imgLayout/tabbedPannelsTabBkgOver.gif); }

/* 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-color: #f9ebae; background-image:url(../imgLayout/tabbedPannelsTabBkgOver.gif); border-bottom: 1px solid #eedd95; 
}

/* This selector is an example of how to make a link inside of a tab button
 * look like normal text. Users may want to use links inside of a tab button
 * so that when it gets focus, the text *inside* the tab button gets a focus
 * ring around it, instead of the focus ring around the entire tab.
 */
.TabbedPanelsTab a {
	color: black;
	text-decoration: none;
}

/* 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.
 */
.TabbedPanelsContentGroup { clear: both; border-left: solid 1px #d1d1d5; border-bottom: solid 1px #d1d1d5; border-top: solid 1px #d1d1d5; border-right: solid 1px #d1d1d5; background-color: #FFF; 
}

/* This is the selector for the Content panel. The Content panel holds the
 * content for a single tabbed panel. For our default style, this container
 * provides some padding, so that the content is not pushed up against the
 * widget borders.
 */
.TabbedPanelsContent { padding: 4px; font-size: 12px; }

/* This selector is an example of how to change the appearnce of the currently
 * active container panel. The class "TabbedPanelsContentVisible" is
 * programatically added and removed from the content element as the panel
 * is activated/deactivated.
 */
.TabbedPanelsContentVisible {
}

