@charset "UTF-8";

div.divBodyTabbedPanels {
    /*
    border-top-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-right-style: solid;
    border-top-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-right-width: 1px;
    border-top-color: #000000;
    border-bottom-color: #000000;
    border-left-color: #000000;
    border-right-color: #000000;
    */
    width: 100%;
    vertical-align: top;
}

/* SpryTabbedPanels.css - version 0.4 - Spry Pre-Release 1.6.1 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* Vertical Tabbed Panels
 *
 * The following rules override some of the default rules above so that the
 * TabbedPanels widget renders with its tab buttons along the left side of
 * the currently active content panel.
 *
 * With the rules defined below, the only change that will have to be made
 * to switch a horizontal tabbed panels widget to a vertical tabbed panels
 * widget, is to use the "VTabbedPanels" class on the top-level widget
 * container element, instead of "TabbedPanels".
 */

/* This selector floats the TabGroup so that the tab buttons it contains
 * render to the left of the active content panel. A border is drawn around
 * the group container to make it look like a list container.
 */
.VTabbedPanels .TabbedPanelsTabGroup {
	float: left;
	width: 10em;
        width: 200px;
	height: 20em;
        height: 100%;
	position: relative;
	border-top:    none;
	border-right:  none;
	border-left:   none;
	border-bottom: none;
}

/* This selector disables the float property that is placed on each tab button
 * by the default TabbedPanelsTab selector rule above. It also draws a bottom
 * border for the tab. The tab button will get its left and right border from
 * the TabGroup, and its top border from the TabGroup or tab button above it.
 */
.VTabbedPanels .TabbedPanelsTab {
	float: none;
        font-family: 'Times New Roman',Times,serif;
        font-size: 10px;
        height: 40px;
	margin: 0px;
        background-color: #c0ccff;
	border-top:    solid 1px #999;
	border-right:  none;
	border-left:   solid 1px #999;
	border-bottom: solid 1px #999;
}

/* This selector disables the float property that is placed on each tab button
 * by the default TabbedPanelsTab selector rule above. It also draws a bottom
 * border for the tab. The tab button will get its left and right border from
 * the TabGroup, and its top border from the TabGroup or tab button above it.
 */
.VTabbedPanels .TabbedPanelsTabSelected {
	background-color: #7878ff;
	border-bottom: solid 1px #999;
}

/* This selector floats the content panels for the widget so that they
 * render to the right of the tabbed buttons.
 */
.VTabbedPanels .TabbedPanelsContentGroup {
	clear: none;
	background-color: #eeeeff;
	border-left:   solid 1px #999;
	border-top:    solid 1px #999;
	border-right:  solid 1px #999;
	border-bottom: solid 1px #999;
	float: left;
	padding: 0px;
	width: 30em;
        width: 594px;
	height: 20em;
        height: 400px;
}

.VTabbedPanels .TabbedPanelsContent {
    font-family: 'Times New Roman',Times,serif;
    line-height: 16px;
}

.VTabbedPanels .TabbedPanelsContent .ItemTitle {
    font-size: 12px;
    color: #3333ff;
}

.VTabbedPanels .TabbedPanelsContent .ItemPublishDateTime {
    font-size: 10px;
    color: #999999;
    font-style: italic;
}

.VTabbedPanels .TabbedPanelsContent .ItemContent {
    font-size: 10px;
    color: #000000;
    font-style: normal;
    font-weight: normal;
}