@charset "UTF-8";

/* SpryTabbedPanels.css - Revision: Spry Preview Release 1.4 */

/* 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.
 */
.TabbedPanels {
	margin: 0px;
	padding: 0px;
	float: left;
	clear: none;
	width: 100%; /* IE Hack to force proper layout when preceded by a paragraph. (hasLayout Bug)*/
}

/* This is the selector for the TabGroup. The TabGroup container houses
 * all of the tab buttons for each tabbed panel in the widget. This container
 * does not contribute anything visually to the look of the widget for our
 * default style.
 *
 * The name of the class ("TabbedPanelsTabGroup") used in this selector is not
 * necessary to make the widget function. You can use any class name you
 * want to style the TabGroup container.
 */
.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" 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;
	color:white;
	top: 1px;
	font-weight: bold;
	float: left;
	padding: 4px 10px;
	margin: 0px 3px 0px 0px;
	background-color: #639AB5;
	list-style: none;
	//border-left: solid 1px #E0EAEF;
	//border-bottom: solid 1px #E0EAEF;
	//border-top: solid 1px #E0EAEF;
	//border-right: solid 1px #E0EAEF;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	font-family: tahoma,arial,helvetica;
	font-size:11px;
 	-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright: 4px;
	-webkit-border-top-left-radius: 4px;
	-webkit-border-top-right-radius: 4px;
}

/* This selector is an example of how to change the appearnce of a tab button
 * container as the mouse enters it. The class "TabbedPanelsTabHover" is
 * programatically added and removed from the tab element as the mouse enters
 * and exits the container.
 */
.TabbedPanelsTabHover {

}

/* 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-color: #E0EAEF;
	color:#00577e;
	// border-bottom: 1px solid #E7EBEF;
	outline:none
	
}

/* 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.
 *
 * 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 {
	
	clear: both;
	// border-left: solid 1px #E0EAEF;
	// border-bottom: solid 1px #E0EAEF;
	// border-top: solid 1px #E0EAEF;
	// border-right: solid 1px #E0EAEF;
	background-color: #E0EAEF;
}

/* 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.
 */
.TabbedPanelsContent {
	padding: 6px;

}
/* the following class was added by DMogren 3/30/08 to hide table borders in econmists publications dynamic content */
.TabbedPanelsContent table, .TabbedPanelsContent td, .TabbedPanelsContent th { 
	border-collapse: separate !important;
	border-spacing: 2px !important;
	border: 0px !important;	
	padding: 3px !important;
}

/* the following class was added by DMogren 3/30/08 to hide table borders in econmists publications dynamic content */
.TabbedPanelsContent li { 
	display: list-item !important;	
	margin: 0.6em !important;
}

.TabbedPanelsContent ul { 
	margin-left: 2em !important;	
}

.TabbedPanelsContent p { 
	margin: 1em !important;	
}
/* 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 {	
	background-color: #E0EAEF;
}

span#defaultStyles li              { display: block }
span#defaultStyles head            { display: none }
span#defaultStyles table           { display: table }
span#defaultStyles tr              { display: table-row }
span#defaultStyles thead           { display: table-header-group }
span#defaultStyles tbody           { display: table-row-group }
span#defaultStyles tfoot           { display: table-footer-group }
span#defaultStyles col             { display: table-column }
span#defaultStyles colgroup        { display: table-column-group }
span#defaultStyles td, span#defaultStyles th          { display: table-cell }
span#defaultStyles caption         { display: table-caption }
span#defaultStyles th              { font-weight: bolder; text-align: center }
span#defaultStyles caption         { text-align: center }
span#defaultStyles body            { margin: 0px }
span#defaultStyles h1              { font-size: 2em; margin: .67em 0 }
span#defaultStyles h2              { font-size: 1.5em; margin: .75em 0 }
span#defaultStyles h3              { font-size: 1.17em; margin: .83em 0 }
span#defaultStyles h4, span#defaultStyles p,
span#defaultStyles blockquote, span#defaultStyles ul,
span#defaultStyles fieldset, span#defaultStyles form,
span#defaultStyles ol, span#defaultStyles dl, span#defaultStyles dir,
span#defaultStyles menu            { margin: 0px  }
span#defaultStyles h5              {  margin: 0px }
span#defaultStyles h6              {  margin: 0px  }
span#defaultStyles h1, span#defaultStyles h2, span#defaultStyles h3, span#defaultStyles h4,
span#defaultStyles h5, span#defaultStyles h6, span#defaultStyles b,
span#defaultStyles strong          { font-weight: bolder }
span#defaultStyles blockquote      { margin-left: 0px; margin-right: 0px }
span#defaultStyles i, span#defaultStyles cite, span#defaultStyles em,
span#defaultStyles var, span#defaultStyles address    { font-style: italic }
span#defaultStyles pre, span#defaultStyles tt, span#defaultStyles code,
span#defaultStyles kbd, span#defaultStyles samp       { font-family: monospace }
span#defaultStyles pre             { white-space: pre }
span#defaultStyles button, span#defaultStyles textarea,
span#defaultStyles input, span#defaultStyles select   { display: inline-block }
span#defaultStyles big             { font-size: 1.17em }
span#defaultStyles small, span#defaultStyles sub, span#defaultStyles sup { font-size: .83em }
span#defaultStyles sub             { vertical-align: sub }
span#defaultStyles sup             { vertical-align: super }
span#defaultStyles table           { border-spacing: 0px; }
span#defaultStyles thead, span#defaultStyles tbody,
span#defaultStyles tfoot           { vertical-align: middle }
span#defaultStyles td, span#defaultStyles th, span#defaultStyles tr      { vertical-align: top; padding: 0px}
span#defaultStyles s, span#defaultStyles strike, span#defaultStyles del  { text-decoration: line-through }
span#defaultStyles hr              { border: 1px inset }
span#defaultStyles ol, span#defaultStyles ul, span#defaultStyles dir,
span#defaultStyles menu, span#defaultStyles dd        { margin-left: 0px }
span#defaultStyles ol              { list-style-type: decimal }
span#defaultStyles ol ul, span#defaultStyles ul ol,
span#defaultStyles ul ul, span#defaultStyles ol ol    { margin-top: 0; margin-bottom: 0 }
span#defaultStyles u, span#defaultStyles ins          { text-decoration: underline }
span#defaultStyles br:before       { content: "\A"; white-space: pre-line }
span#defaultStyles center          { text-align: center }
span#defaultStyles :link, span#defaultStyles :visited { text-decoration: underline }
span#defaultStyles :focus          { outline: thin dotted invert }
span#defaultStyles ul, span#defaultStyles ol          { list-style-type: block }
p.indent {margin-left:2.0em !important;} 

h2.printableSubArticleLabel {
	display:none !important;
}

