/*
* jQuery UI CSS Framework
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
* Dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses.
*/

/* Layout helpers
----------------------------------*/
.ui-helper-hidden
{
	display: none;
}
.ui-helper-hidden-accessible
{
	position: absolute;
	left: -99999999px;
}
.ui-helper-reset
{
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	line-height: 1.3;
	text-decoration: none;
	font-size: 100%;
	list-style: none;
}
.ui-helper-clearfix:after
{
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.ui-helper-clearfix
{
	display: inline-block;
}
/* required comment for clearfix to work in Opera \*/
* html .ui-helper-clearfix
{
	height: 1%;
}
.ui-helper-clearfix
{
	display: block;
}

/* end clearfix */
.ui-helper-zfix
{
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
}

/*
* jQuery UI CSS Framework
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
* Dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses.
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana,Arial,sans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=0&bgColorHeader=ffffff&bgTextureHeader=03_highlight_soft.png&bgImgOpacityHeader=75&borderColorHeader=ffffff&fcHeader=000000&iconColorHeader=000000&bgColorContent=ffffff&bgTextureContent=01_flat.png&bgImgOpacityContent=75&borderColorContent=194898&fcContent=000000&iconColorContent=000000&bgColorDefault=E1E9F4&bgTextureDefault=02_glass.png&bgImgOpacityDefault=75&borderColorDefault=194898&fcDefault=000000&iconColorDefault=000000&bgColorHover=E1E9F4&bgTextureHover=02_glass.png&bgImgOpacityHover=75&borderColorHover=194898&fcHover=000000&iconColorHover=000000&bgColorActive=194898&bgTextureActive=02_glass.png&bgImgOpacityActive=65&borderColorActive=194898&fcActive=ffffff&iconColorActive=000000&bgColorHighlight=194898&bgTextureHighlight=02_glass.png&bgImgOpacityHighlight=55&borderColorHighlight=194898&fcHighlight=000000&iconColorHighlight=000000&bgColorError=fef1ec&bgTextureError=05_inset_soft.png&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=01_flat.png&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=01_flat.png&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
*/

/* Accordion
----------------------------------*/
.ui-accordion .ui-accordion-header
{
	cursor: pointer;
	position: relative;
	margin-top: 1px;
}
.ui-accordion .ui-accordion-li-fix
{
	display: inline;
}
.ui-accordion .ui-accordion-header-active
{
	border-bottom: 0 !important;
	margin-top: 1px;
}
.ui-accordion .ui-accordion-header a
{
	display: block;
	font-size: 1.2em;
	padding: .5em;
	border-width: 1px 1px 1px 1px;
	border-style: solid solid solid solid;
	border-color: #194898;
	background: #194898;
	color: #E1E9F4;
}
.ui-accordion .ui-accordion-content
{
	padding: 5px 0 10px 0;
	border-top: 0;
	margin-top: -2px;
	position: relative;
	top: 1px;
	margin-bottom: 2px;
	overflow: auto;
	display: none;
	border: 1px solid #194898;
	background: #E1E9F4;
	color: #000;
}
.ui-accordion .ui-accordion-content-active
{
	display: block;
}
.ui-accordion a
{
	font-weight: bold;
}

/* Tabs
----------------------------------*/
.ui-tabs
{
	padding: .2em;
	margin-top: 20px;
}
.ui-tabs .ui-tabs-nav
{
	list-style: none;
	position: relative;
	padding: 0;
}
.ui-tabs .ui-tabs-nav li
{
	position: relative;
	float: left;
	border-bottom-width: 0 !important;
	margin: 0 10px -1px 0;
	padding: 0;
	border-width: 1px 1px 0px 1px;
	border-style: solid solid none solid;
	border-color: #194898;
	background: #E1E9F4;
}
.ui-tabs .ui-tabs-nav li a
{
	float: left;
	text-decoration: none;
	padding: .3em 1em;
	font-weight: bold;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-selected
{
	padding-bottom: 1px;
	border-bottom-width: 0;
	background: #194898;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a
{
	color: #fff;
}
.ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a
{
	cursor: pointer;
}
/* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
.ui-tabs .ui-tabs-panel
{
	padding: 0 0 10px 0;
	display: block;
	border-width: 1px 1px 0px 1px;
	border-style: solid solid none solid;
	border-color: #194898;
	background: #194898;
	color: #fff;
}
.ui-tabs .ui-tabs-hide
{
	display: none !important;
}

