@charset "UTF-8";
/* SpryTabbedPanels.css - version 0.4 - Spry Pre-Release 1.6.1 */

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

/* Horizontal Tabbed Panels
 *
 * The default style for a TabbedPanels widget places all tab buttons
 * (left aligned) above the content panel.
 */

/* This is the selector for the main TabbedPanels container. For our
 * default style, this container does not contribute anything visually,
 * but it is floated left to make sure that any floating or clearing done
 * with any of its child elements are contained completely within the
 * TabbedPanels container, to minimize any impact or undesireable
 * interaction with other floated elements on the page that may be used
 * for layout.
 *
 * If you want to constrain the width of the TabbedPanels widget, set a
 * width on the TabbedPanels container. By default, the TabbedPanels widget
 * expands horizontally to fill up available space.
 *
 * The name of the class ("TabbedPanels") used in this selector is not
 * necessary to make the widget function. You can use any class name you
 * want to style the TabbedPanels container.
 */
.VTabbedPanels .TabbedPanels{
	margin: 0px;
	padding: 0px;
	clear: none;
	width: 100%; /* IE Hack to force proper layout when preceded by a paragraph. (hasLayout Bug)*/
}

/* 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: 260px;
	height: auto;
	background-color: transparent;
	position: relative;
	margin: 0;
	padding: 0;
}

/* 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;
	margin: 0px;
	position: relative;
	top: 1px;
	padding: 4px 30px 4px 30px;
	margin: 0px 1px 0px 0px;
	background-color: transparent;
	list-style: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	height: 16px;
	background-attachment: scroll;
	background-image: url(../images_mpa/newsGraphics/smlTabBluStrokeUpYloLine.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #666;
}

/* 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: transparent;
	color: #000;
	font-size: 14px;
	background-attachment: scroll;
	background-image: url(../images_mpa/newsGraphics/smlTabYloOVRboxArro.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	outline: none 0;
	padding-left: 50px;
}
.VTabbedPanels .TabbedPanelsTabHover {
	background-color: transparent;
	color: #000;
	font-size: 14px;
	background-attachment: scroll;
	background-image: url(../images_mpa/newsGraphics/smlTabYloOVRboxArro.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	outline: none 0;
	padding-left: 50px;
}

/* 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.
 */
.VTabbedPanels .TabbedPanelsTab a{
	color: black;
	text-decoration: none;
}

/* This selector floats the content panels for the widget so that they
 * render to the right of the tabbed buttons.
 */
.VTabbedPanels .TabbedPanelsContentGroup {
	clear: none;
	float: left;
	padding: 0px;
	width: 590px;
	height: auto;
	margin-left: 10px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #666;
	font-size: 16px;
	text-indent: 40px;
}
.VTabbedPanels .TabbedPanelsContentGroup a {
	font-weight: bold;
	color: #5394BE;
	font-size: 18px;
	font-style: normal;
}
.VTabbedPanels .TabbedPanelsContentGroup #recReqlink a{
	color: #000;
	font-size: 12px;
}




/* 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.
 *
 * The name of the class ("TabbedPanelsContent") used in this selector is
 * not necessary to make the widget function. You can use any class name you
 * want to style the Content container.
 */
.VTabbedPanels .TabbedPanelsContent{
	padding: 5px 0px 10px 10px;
}
/* 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.
 */
.VTabbedPanels .TabbedPanelsContentVisible{
}
#infoContent .VTabbedPanels .TabbedPanelsContentGroup p {
	padding: 3px 0 0 20px;
}
#infoContent .VTabbedPanels #wellCarePanel h5 {
	text-indent: 0px;
	font-style: italic;
	color: #999;
	padding: 0 100px 0 60px;

}
#infoContent .VTabbedPanels #wellCarePanel #wcVisitsTable {
	padding: 10px 0 10px 60px;


}
#infoContent .VTabbedPanels #wellCarePanel #wcVisitsTable td {
	padding: 3px 0;
	text-indent: 60px;

}
#infoContent .VTabbedPanels h4 {
	font-size: 28px;
	text-indent: 0px;
	text-align: center;
	margin: 0px;
	color: #5394BE;
}
#infoContent .VTabbedPanels #mdSchedPanel #mdSchedTbl {
	text-indent: 0px;
	border-color: #88AC26;
	margin-left: 0px;

}
#mdSchedTbl caption {
	color: #5394BE;
	font-size: 28px;
	margin-bottom: 10px;
}
#infoContent .VTabbedPanels #mdSchedPanel #mdSchedTbl #mdSchedTopRow {
	text-indent: 0px;
	font-style: italic;
	color: #333;
	text-align: center;
	font-size: 18px;
}
#infoContent .VTabbedPanels #mdSchedTbl  td {
	padding: 2px;
	text-align: center;
}
#infoContent .VTabbedPanels #mdSchedTbl th.mdNameRow {
	padding: 7px 1px 7px 20px;
	font-size: 20px;
	color: #5394BE;
}
