body {
	background-color: white;
	margin: 0;
	padding: 0;
}

/* ------------------------------------------------------------------------------------
 * OUTER TABS
 * ------------------------------------------------------------------------------------   */

div.outer-tabs-panel {
	margin: 0;
	padding: 0;
	overflow: auto;
	border-top: 4px solid #cee1ef;
	background-color: white;
}

ul.outer-tabs {
	list-style: none;
	display: block;
	clear: both;
	padding: 0;
	text-align: right;
	/* Negative margin for the sake of those without JS: all tabs display */
	margin-bottom: 0;
}

.outer-tabs:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}


ul.outer-tabs li {
	display: inline;
	float: left;
    margin: 0 0 0 2px;
	padding: 0.4em;
}

ul.outer-tabs li {
	-moz-border-radius-topleft: 3px;
	-khtml-border-top-left-radius: 3px;
	-webkit-border-top-left-radius: 3px;
	border-top-left-radius: 3px;
	
	-moz-border-radius-topright: 3px;
	-khtml-border-top-right-radius: 3px;
	-webkit-border-top-right-radius: 3px;
	border-top-right-radius: 3px;
}

ul.outer-tabs li {
	background-color: #eee !important;
}

ul.outer-tabs li.spacer {
	background-color: #fff !important;
}

ul.outer-tabs li.ui-tabs-selected {
	background-color: #cee1ef !important;
}

ul.outer-tabs li a {
	color: #555;
	font-weight: bold;
	text-decoration: none;
}

ul.outer-tabs li.ui-tabs-selected a {
	color: #000;
	font-weight: bold;
	text-decoration: none;
}

/* ------------------------------------------------------------------------------------
 * INNER TABS
 * ------------------------------------------------------------------------------------   */

div.inner-tabs-panel {
	margin: 0 5px 0 0px;
	padding: .5em .9em;
	overflow: auto;
	border-width: 2px;
	border-style: solid;
	border-color: #99CC66;
}

ul.inner-tabs {
	list-style: none;
	margin: 0;
	display: block;
    content: " ";
	clear: both;
}

.inner-tabs:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}

ul.inner-tabs li {
	display: inline;
	float: left;
    margin: 0 0 0 2px;
	padding: 0.4em;
	border-top: 1px solid #99CC66 !important;
	border-left: 1px solid #99CC66 !important;
	border-right: 1px solid #99CC66 !important;	
}

ul.inner-tabs li a {
	color: #519e2d; 
	
}

ul.inner-tabs li {
	-moz-border-radius-topleft: 3px;
	-khtml-border-top-left-radius: 3px;
	-webkit-border-top-left-radius: 3px;
	border-top-left-radius: 3px;
	-moz-border-radius-topright: 3px;
	-khtml-border-top-right-radius: 3px;
	-webkit-border-top-right-radius: 3px;
	border-top-right-radius: 3px;
}

ul.inner-tabs li.ui-tabs-selected  {
	background-color: #99CC66 !important;
}


ul.inner-tabs li.ui-tabs-selected a {
    position: relative;
    top: 1px;
    z-index: 2;
    margin-top: 0;
	font-weight: bold;
	text-decoration: none;
	color: #333;
}

/* Additional IE specific bug fixes... */
* html .inner-tabs-nav { /* auto clear @ IE 6 & IE 7 Quirks Mode */
    display: inline-block;
}
*:first-child+html .inner-tabs-nav  { /* auto clear @ IE 7 Standards Mode - do not group selectors, otherwise IE 6 will ignore complete rule (because of the unknown + combinator)... */
    display: inline-block;
}

/* ------------------------------------------------------------------------------------
 * CURRENT ITEMS
 * ------------------------------------------------------------------------------------   */

div.current {
	min-height: 100px;
	margin: 0;
	background-color: #fff;
	border-bottom: 2px solid #ccc;	
	display: block;
	clear: both;
	margin-bottom: 10px;
}

div.current {
	margin-top: 0;
	padding-top: 0;
}

div.current ul {
	min-height: 10px;
	min-width: 10px;
}

div.current table {
	width: 100%;
	border-spacing: 0;
}

div.current table col {
	width: 50%;
}

div.current table tr tr {
	vertical-align: top;;
}

/* ------------------------------------------------------------------------------------
 * BUTTONS
 * ------------------------------------------------------------------------------------   */

a.addlink {
	line-height:1.5em;
	padding: 6px 4px;
	border: 1px solid #464646;
	background-color: #E5E5E5;
	color: #224466;
	font-weight: bold;
	text-decoration: none;
	-moz-border-radius-bottomleft:3px;
	-moz-border-radius-bottomright:3px;
	-moz-border-radius-topleft:3px;
	-moz-border-radius-topright:3px;
	font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,Verdana,sans-serif;
	font-size:12px;
}

a.addlink:hover {
	color:#D54E21;
}

/* ------------------------------------------------------------------------------------
 * FORM ELEMENTS
 * ------------------------------------------------------------------------------------   */

#exhibit-input-container select {
	vertical-align: middle;
}

.uhoh {
	border: 2px solid red;
	padding: 4px;
	font-weight: bolder;
	text-align: center;
	color: red;
}


/**
 * styling for tip content
 * mostly for example
 * note: canvas (the tip itself) cannot be styled here. use javascript options for that.
 */
.bt-content {
  font-size: small;
  color: #000;
  line-height: normal;
}

/* styling for active target elements - usually for background hilighting */
.bt-active {
  /* example:
  background-color: yellow !important;
  */
}