/* mymain-11-19-25*/
/* --- Note: modifications to this file are discouraged. Check the documentation before making any changes to this file. --- */

/* sets the page at zero for a base for browser compatablity */
/* {
	padding:0;
	margin:0;
}*/

 /*.dropdown {
  position: relative;
  display: block;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #f1f1f1;}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #3e8e41;
}*/


html {
	max-width: 1400px;
	min-device-width:500px;
	height:100%;
	width:100%;
	margin: 0 auto;
}

@media only screen and (min-width: 320px) and (max-width: 1024px)  {
/* Values for iPhone and iPad */
	html {
		max-width: 1024px; /* 'maximum width' */
		min-width: 320px; /* 'minimum width' */
		height: 100%;
		width: 100%;
	}
}

/* body background color fills in blanks  - all other colors defined in divs */
body {
	overflow: scroll;
	color: #000;
	height:100%;
	width:auto;
	font:80% Verdana, Arial, Helvetica, sans-serif;
	background:#fff;
}

/* globally resets padding and margins for elements  */
h1, h2, h3, h4, h5, h6, pre, label, fieldset, address{ margin:.5em 1% .5em 0; }
ul {margin:1em .1em;}
ol {margin:1em 3%;}
dl {margin:.5em 0 1em;}
dd {margin:0 6%;}
dt {margin:.5em 0 0 0;} 
fieldset { padding: .5em;}
li {margin:0 5% 0em 0em;}
p {margin:0 0 1em 0;
	line-height:1.3em;
}
abbr {border:0;}

/* used to get the border off an image in IE without deprecating the image tag */
img {border:0;}

img {
	max-width: 100%;
	height: auto;
}

blockquote {margin:.5em 1em;}

/* On hover (desktop) or first tap (iOS), show the menu */
.hover-menu li:hover .hover-submenu {
	display: block;
	pointer-events: auto;
}

 /*For better accessibility, add focus-within if possible */
/*.hover-menu li:focus-within .hover-submenu {
	display: block;
	pointer-events: auto;
}*/

/* Prevent double-tap zoom on interactive elements */
.hover-submenu {
	display: none;
  /* Ensure pointer events are active when visible */
	pointer-events: none; 
}

/*@media (pointer: fine) {
	a:hover {
	background-color: darkblue;
	touch-action: manipulation;
	}
}
*/



/*@media (hover: hover) and (pointer: fine) {
	a:hover {
		background-color: darkblue;
		touch-action: manipulation;
	}
}

@media (hover: hover) and (pointer: fine) {
	menu-item:hover {
		background-color: darkgreen;
	}
}

@media (hover: hover) and (pointer: fine) {
	sub-menu:hover {
		background-color: red;
	}
}*/

a { 
	color:#000;
	text-decoration:none;
	font-weight:bold;
}

a:hover {
	color:red;
	text-decoration:underline;
}

dt {
	font-weight:bold;
}

/*Grid*/
.container {
	display: grid;
	grid-template-columns: auto;
	background-color: white;
 	padding: 1px;
	text-align: left;
	border: 0px solid black;
}

/*#target {
	width: 640px;
	height: 396px;
	overflow-y: auto;
	overflow-x: auto;
	resize: both;
	position: relative;
	z-index: 2;
}*/
        

.iframe {
	width: 640px;
    height: 600px;
    overflow-y: auto;
    overflow-x: auto;
    resize: both;
    position: relative;
    z-index: 2;
}

.sub-menu li {
	min-width:500px;
	position: absolute;
	border:2px solid #0f0;
	color:#f00;
	text-decoration:none;
}
/*.menu-item a:hover {
 	background-color:#046525;
	color:white;
}*/

.menu-item .active {
	background-color:green;
	color:white;
} 

.menu-item .inactive {
	background-color:teal;
	color:white;
} 

.alert {
  opacity: 1;
  transition: opacity 0.6s; /* 600ms to fade out */
}

/* Start of Banner Graphic */
/* Slideshow container */
#slide-container {
 	position: relative;
 	max-width: 700px; /* responsiveness */
}

/* First element to be in block mode for responsiveness */
#slide-first-element {
 	display: block; /* to get the dimensions set */
 	width: 100%;
 	height: auto;
}

/* Other element to be in absolute position */
#slide-element-2,
#slide-element-3,
#slide-element-4,
#slide-element-5,
#slide-element-6,
#slide-element-7
{
 position: absolute;
 width: 100%;
 height: auto;
 top: 0;
 bottom: 0;
 left: 0;
 right: 0;
}

/* Style images */
.slide-image {
	width: 700px;
	height: auto;
 	border-radius: 0px;
}

/* Style text */
.slide-text {
 position: absolute;
 bottom: 10px;
 background-color: #0042b1bb;
 color: white;
 width: 100%;
 text-align: center;
 font-size: 1.5rem;
}
/* Animation settings for individual elements */
/* For more images the animations have to be adjusted */
#slide-first-element {
 animation: fade-1 10s infinite;

}#slide-element-2 {
 animation: fade-2 10s infinite;

}#slide-element-3 {
 animation: fade-3 10s infinite;

}#slide-element-4 {
 animation: fade-4 10s infinite;

}#slide-element-5 {
 animation: fade-5 10s infinite;
}

#slide-element-6 {
 animation: fade-6 10s infinite;
}

#slide-element-7 {
 animation: fade-7 10s infinite;
}


/* and more if there are more slides to show */
@keyframes fade-1 {
 0%  { opacity: 1; }
 14% { opacity: 0; }
 28% { opacity: 0; }
 42% { opacity: 0; }
 56% { opacity: 0; }
 70% { opacity: 0; }
 84% { opacity: 0; }
 100% { opacity: 1; }
}
@keyframes fade-2 {
  0% { opacity: 0; }
 14% { opacity: 1; }
 28% { opacity: 0; }
 42% { opacity: 0; }
 56% { opacity: 0; }
 70% { opacity: 0; }
 84% { opacity: 0; }
 100% { opacity: 0; }
}
@keyframes fade-3 {
  0% { opacity: 0; }
 14% { opacity: 0; }
 28% { opacity: 1; }
 42% { opacity: 0; }
 56% { opacity: 0; }
 70% { opacity: 0; }
 84% { opacity: 0; }
 100% { opacity: 0; }
}/* example for a 4th slide */
@keyframes fade-4 {
  0% { opacity: 0; }
 14% { opacity: 0; }
 28% { opacity: 0; }
 42% { opacity: 1; }
 56% { opacity: 0; }
 70% { opacity: 0; }
 84% { opacity: 0; }
 100% { opacity: 0; }
}
@keyframes fade-5 {
  0% { opacity: 0; }
 14% { opacity: 0; }
 28% { opacity: 0; }
 42% { opacity: 0; }
 56% { opacity: 1; }
 70% { opacity: 0; }
 84% { opacity: 0; }
 100% { opacity: 0; }
}

@keyframes fade-6 {
  0% { opacity: 0; }
 14% { opacity: 0; }
 28% { opacity: 0; }
 42% { opacity: 0; }
 56% { opacity: 0; }
 70% { opacity: 1; }
 84% { opacity: 0; }
 100% { opacity: 0; }
}

@keyframes fade-7 {
  0% { opacity: 0; }
 14% { opacity: 0; }
 28% { opacity: 0; }
 42% { opacity: 0; }
 56% { opacity: 0; }
 70% { opacity: 0; }
 84% { opacity: 1; }
 100% { opacity: 0; }
}
/* End of Automatic Slideshow */
/*_________________________________________________________*/ 
/* The Modal (background) */
#myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#myImg:hover {opacity: 0.7;}

/* Model */
.modal {
  display: none; /* Hidden by default */
  position: absolute; /* Stay in place */
  z-index: 2; /* Sit on top */
  
  top: 110; /* The height of my "banner" */
  padding-top: 0px; /* Location of the top of the image/video/anaimation */
  right: 0;
  left: 0;
	
  width:100%; /* Full width */
  height: 100%; /* Full height */
  overflow: hidden; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.75); /* Black w/ opacity */
}
  /* Menu for jumping to places within a video. */
.menu-container {
	font:80% Verdana, Arial, Helvetica, sans-serif;
	color: #000000;
	background:#f00;
	margin-top: 0; 
	overflow-y: auto; 
	overflow-x: hidden; 
	height: 75%; /*This determines the height that is scrolled */
	width: 90%; /*Likewise the width */
	background-color: white; 
	padding:0; 
	margin: auto auto; 
	font-size: large;
	scroll-behavior:auto;
}
/* Greenman Navigation */
.greenman-navigation {
  display: grid;
	font:100% Verdana, Arial, Helvetica, sans-serif;
/*  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: bold; */
   margin: 0;
}

.greenman-navigation ul {
  background: #000;
  list-style: none;
  width: auto;
  margin: 0;
  padding-left: 0;
}

.greenman-navigation li {
  color: #fff;
  background: #000;
  display: block;
  float: left;
  margin: 0 2px 0 0;
  padding: 12px;
  width: auto;
  position: relative;
  text-decoration: none;
  text-transform: capitalize;
}
  
.greenman-navigation li a {
  color: #fff;
  width: auto;
  text-decoration: none;
  display: block;
}

.greenman-navigation li:hover {
	transition:background, 0.15s;
	background: #0a3;
/* 	height: 2px; */
/*	padding:2 2 2 2; */
	cursor: pointer;
}

/* Add a caret to a dropdown menu */
/*.site-navigation a.caret {
  background-color: #04AA6D;
  color: red;
}*/

/* Add a color to the active/current link */
.greenman-navigation a.active {
  background-color: #0a3;
  color: white;
/*	padding:8 2 8 2; */
}

.greenman-navigation ul li ul {
/*  background: #0a3; */
  background: #000;
	visibility: hidden;
  float: left;
  min-width: 150px;
max-width: 400px;
  position: absolute;
/*  transition: visibility 0.65s ease-in;*/
  margin-top:12px;
  left: 0;
  z-index: 999;
}

.greenman-navigation ul li:hover > ul,
.greenman-navigation ul li ul:hover {
   visibility: visible;
}

/* Greenman Modal */
.greenman-modal {
  display: none; /* Hidden by default */
  position: absolute; /* Stay in place */
  z-index: 2; /* Sit on top */
  
  top:110; /* The height of my "banner" */
  padding-top: 0px; /* Location of the top of the image/video/anaimation */
  right: 0;
  left: 0;
	
  width:100%; /* Full width */
  height: 100%; /* Full height */
  overflow: hidden; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.75); /* Black w/ opacity */
}

  /* iFrame containg Greenman video segments. */
.myiFrame {
	margin-left: auto;
	margin-right: auto;
	width: 800;
	height: 500px;
	autoplay: 1;
}

/* Modal Content */
.modal-image-content {
  margin: auto;
  left: 0;
  top: 0;
  display: block;
  width: 80%;
  max-width: 480px;
  animation-name: zoom;
  animation-duration: 1.0s;
}

/* Modal Video Content */
/*.hallgren-modal {
	display: none; 
 	position: absolute;
 	z-index: 2;
	top:0;
	padding-top: 0px;
	right: 0;
	left: 0;
	width: 800px;
	height: 500px;
	max-width: 800px;
	animation-name: zoom;
	animation-duration: 1.0s;
}
*/
.modal-video-content {
  margin: auto;
  display: block;
  width: 640px;
  height: 400px;
  max-width: 700px;
  animation-name: zoom;
  animation-duration: 1.0s;
}

/* Greenman Modal Video Content */
.greenman-modal-video-content {
  margin: auto;
  display: block;
  width: 800px;
  height: 500px;
  max-width: 800px;
  animation-name: zoom;
  animation-duration: 1.0s;
}

/* Caption of Modal */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 480px;
  text-align: left;
  font-size: 18px;
  color: #fff;
  padding: 10px 0;
  height: 150px;
  animation-name: zoom;
  animation-duration: 1.0s;
}
	
@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}

@keyframes shrink {
  from {transform:scale(1)} 
  to {transform:scale(0)}
}

/* The Close Button */
.close-video {
  position: absolute;
  top: 0%; /* Top of the modal */
/*  right: 100px; */
	left: 95%;
  color: #0f0;
  font-size: 40px;
  font-weight: bold;
  animation-name: shrink;
  animation-duration: 1.0s;
}

.close-video:hover,
.close-video:focus {
  color: #f00;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 300px){
  .modal-video-content {
    width: 100%;
  }
}

/*_________________________________________________________*/ 

object {
	font: large;
	background:#ffffff;
	color:000;
	display: inline-flex;
	width: 700px; /*700*/
	height: 1000; /*800*/
	word-wrap: auto;
	word-break: auto;
}

.flex-container {
  display:flex;
  flex-direction: row;
  background-color: white;
}

.flex-container > div {
  background-color: #fff;
  width: 100%;
  margin: 4px;
  text-align: left;
  line-height: auto;
}


.treatment-grid-container {
/* 	font:80% Verdana, Arial, Helvetica, sans-serif;
	color: #000000;
	background:#fff;
	margin-top: 0; 
	overflow-y: auto; 
	overflow-x: hidden; 
	height: 75%;
	width: 90%;
	background-color: white; 
	padding:0; 
	margin: auto auto; 
	font-size: large;*/
	display: grid;
		grid-template-columns: auto 30%;
 	font:80% Verdana, Arial, Helvetica, sans-serif;
	color: #000000;
	background:#fff;
	font-size: large;
 /*		padding: 2px;*/
		text-align: left;
/*		border: 2px solid black;*/
}
	
.treatment-grid-container > div {
 		background-color: white;
/* 		border: 1px solid black; */
 		padding: 8px;
 /*		font-size: 30px; */
 		text-align:left;
	
}

/* ----------------------------------------------------- */
.scroll { 
			scrollbar-color:white green;
			margin-top: 0; 
			overflow-y: auto; 
			overflow-x: hidden; 
/*			height: 500px; /*This determines the height that is scrolled */
			height: 75%; /*This determines the height that is scrolled */
			width: 90%; /*Likewise the width */
			padding:0; 
			margin: auto auto; 
		} 

/* Formatting Structure */
/* ----------------------------------------------------- */

div#myindent {
	padding:0px 0px 0px 20px;
}

div#myindent2x {
	padding:0px 0px 0px 40px;
}

div#myindent3x {
	padding:0px 0px 0px 60px;
}

div#jump { 
  position:absolute; 
  left:0px; 
  top:-500px; 
  width:1px; 
  height:1px; 
  overflow:hidden;
} 

div#wrapper {
	position:0px;
	width:100%;
	margin:0 auto 0;
}

.menu-container {
	font:80% Verdana, Arial, Helvetica, sans-serif;
	color: #000000;
	background: #f00;
	margin-top: 0; 
	overflow-y: visible; 
	overflow-x: hidden; 
	height: 80%; /*This determines the height that is scrolled */
	width: 90%; /*Likewise the width */
	background-color: white; 
	padding:0; 
	margin: auto auto; 
	font-size: large;
/*	scroll-behavior:auto;*/
}	

.site-container {
	font:80% Verdana, Arial, Helvetica, sans-serif;
	color: #000000;
	background:#f00;
	margin-top: 0; 
	overflow-y: scroll; 
	overflow-x: hidden; 
	height: 100%; /*This determines the height that is scrolled */
	width: 90%; /*Likewise the width */
	background-color: white; 
	padding:0; 
	margin: auto auto; 
	font-size: large;
	scroll-width: auto;
	scroll-behavior: auto;
	scrollbar-color: red;
}

/*_________________________________________________________*/
.site-navigation {
  display: grid;
	font:100% Verdana, Arial, Helvetica, sans-serif;
	margin: 0;
}

/*.site-navigation ul {
  background: #000;
  list-style: none;
  width: auto;
  margin: 0;
  padding-left: 0;
}

.site-navigation li {
  color: #fff;
  background: #000;
  display: block;
  float: left;
  margin: 0 2px 0 0;
  padding: 12px;
  width: auto;
  position: relative;
  text-decoration: none;
  text-transform: capitalize;
}
  
.site-navigation li a {
  color: #fff;
  width: auto;
  text-decoration: none;
  display: block;
}

.site-navigation li:hover {
	transition:background, 0.15s;
	background: #0a3;
	cursor: pointer;
}

.site-navigation a.active {
  background-color: #0a3;
  color: white;
}

.site-navigation ul li ul {
  background: #000;
	visibility: hidden;
  float: left;
  min-width: 150px;
	max-width: 400px;
  position: absolute;
  margin-top:12px;
  left: 0;
  z-index: 999;
}

.site-navigation ul li:hover > ul,
.site-navigation ul li ul:hover {
   visibility: visible;
}
*/
/*_________________________________________________________*/

.topnav {
  	position: sticky;
	top: 0;
	background-color: #333;
 	overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #04AA6D;
  color: white;
}

.content {
  padding: 16px;
}
/*_________________________________________________________*/

div#time_bar {
	position:center;
	height:relative;
	background-color:#063;
}

div#header_body {
	position:relative;
	height:relative;
	background-color:#fff;
/*	margin-inline-start:40px; */
/*	padding-inline-start:40px; */
}

div#header_disclosure {
	position:relative;
	height:relative;
	background-color:#fff;
}

div#header {
	position:relative;
	height:auto;
	background-color:#063;
}

div#header_container {
	position:relative;
	width:relative;	
	height:9em;
	margin:0 auto 0;
	background-color:#063;
}

div#wordmark {
	position:relative;
	float:left;
}

div#wordmark a{		
	display:block;
	background:url(../_images/wordmark.gif) no-repeat;
	width:183px;
	height:91px;
}

div#unit_image {
	position:relative;
	float:left;
}

div#unit_image a{
	display:block;
	background:url(../_images/title.gif) no-repeat;
	width:517px;
	height:91px;
}

div#unit_text {
	position:relative;
	margin:0em 1em 1em 1em;
	float:center;
	width:relative;
	height:5em;
	color:#fff;
	background-color:#063;
}

div#unit_text a{
	color:#fff;
	font-weight:normal;
	text-decoration:none;
}

div#unit_text a:hover {
	text-decoration:none;
}

div#unit_text p.Title {
	font-size:2.0em;
}

div#unit_text p.largeTitle {
	font-size:3.0em;
}

div#unit_text p.mediumTitle {
	font-size:2.8em;
}

div#unit_text p.smallTitle {
	font-size:2.0em;
}

div#unit_text p.smallTitle a {
	font-size:2.5em;
}

div#unit_text p {
	margin-bottom:.3em;
}
/* Code is executed if viewport less or equal to 400 */
@media screen and (max-width:400px) {
div#unit_text p.Title {
	font-size:2.0em;
	}

div#banner {
	position:relative;
/*	background:#ababab url(../_images/bg_banner.jpg) repeat-x; */			
	width:100%;
	height:auto;
	font-size:25px;
	color:#fff;
	font-weight:bold;
	background-color:#063;
	}
div#unit_text {
	position:relative;
	margin:0em 1em 1em 1em;
	float:center;
	width:relative;
	height:5em;
	color:#fff;
	background-color:#063;
	}
}

/* Code is executed if viewport greater than or equal to 400 */
@media screen and (min-width:400px) {
div#unit_text p.Title {
	font-size:3.0em;
	}

div#banner {
	position:relative;
/*	background:#ababab url(../_images/bg_banner.jpg) repeat-x; */			
	width:100%;
	height:auto;
	font-size:25px;
	color:#fff;
	font-weight:bold;
	background-color:#063;
	}
div#unit_text {
	position:relative;
	margin:0em 1em 1em 1em;
	float:center;
	width:relative;
	height:5em;
	color:#fff;
	background-color:#063;
	}
}

div#banner_graphic {
	position:relative;
	height: auto;
	width:auto;
	margin:0 auto 0;
}

div#banner_graphic img{
	display:block;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

div#banner_extra {
	
}

br#breakBanner {
	clear:both;
}


/* Secondary center aligned elements */

/* background color in this div gives illusion of sidebar stretching down - overflow:hidden stretches the div, but will not work in NN 7.1. Using clear:both in a br tag for cross-browser fix. */
div#columns {
	position:relative;
	margin:0 auto 0;
	width:100%;
	background-color:#ccc;
	height:1%;
	z-index:300;
}

div#sidebar {
	position:relative;
	float:left;
	width:24%;
	margin:0;
	background-color:#ccc;
	min-width: 20em;  /* Changed from 14em 12-7-24 */
}

body#one_column div#sidebar {
	display:none;
}

/* div#main min-height is set here for non-IE 6 broswers & height is adjusted for IE6 in the mainIE6.css stylesheet */
/* see general.js to see how min-height and height are also dynamically adjusted for this div depending on the length of the sidebar */
div#main {
	position:relative;
	min-height:30em;
    min-width:100px;
    max-width:1000px;
	float:left;
	width:65%;
	margin:0 0 0 0;
	padding:1em 1.5em 2em 1.5em;
	background-color:#eee;
}

body#one_column div#main {
	width:51.63em;

}

div#callout {
	display:none;
}

/* call-out box is only viewable if body tag has the class "callout" */
body.callout div#callout {
	display:block;
	position:relative;
	width:14em;
	float:right;
	margin:0;
	padding:.5em .5em .5em 1em;
}


br#breakColumns {
	clear:both;
}

br#breakHeader {
	clear:both;
}


div#footer {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
	position:relative;
/*	margin: 0px 0px 0px 0px; */
	/*margin: auto 0;*/
/*	width:54.6em; */
	width:auto;
    background-color:#333;
	color:#fff;
}

div#footer div {
	position:relative;
	font-size:.7em;
} 

div#footer div a{
	color:#fff;
}

div#footer div p {
	margin:0;
	padding:.5em 0 0 0;
	text-align:center;
}

div#footer div p#aktl {
/*	margin:.5em 0 .5em 25em;*/
	margin:.5em 0 .5em 41%;
	width:240px;
	height:38px;
	text-align:center;
}

div#footer div p#aktl a {
	display:block;
	background:url(../_images/AKTL.gif) no-repeat;
	width:240px;
	height:38px;
	padding:.8em 0;
	
}

/* ------------------------------------ */

/* Breadcrumbs */
div#breadcrumbs {
	position:relative;
	font-size:.8em;
	margin:0 0 1.5em 0;
}

div#breadcrumbs a{
	font-weight:normal;	
	text-decoration:underline;
}

body#home div#breadcrumbs {
	display:none;
}

/* Topical */ 

div#sidebar div#navGlobal {
	position:relative;
	margin:0 0 1.5em 0;
	padding:0;
}

div#sidebar div#navGlobal ul {
	margin:0;
}

div#sidebar div#navGlobal ul li {
	border-bottom:solid 1px #bfbfbf;
	margin:0 0 0 0;
	background-color:#ccc;
	font:1em Verdana, Arial, Helvetica, sans-serif;	
	list-style:none;
}

div#sidebar div#navGlobal ul li a {
	display:block;
	padding:.4em .5em .4em 1.7em;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	text-decoration:none;
}

div#sidebar div#navGlobal ul li a:hover {
	text-decoration:underline;
}

div#sidebar div#navGlobal ul li a#active {
	background-color:#eee;
}

div#sidebar div#navGlobal ul li a#active:hover {
	text-decoration:none;
}

/* nested navigation */

div#sidebar div#navGlobal ul li ul {
	margin:0 0 0 4em;
	font-size:.9em;
}

div#sidebar div#navGlobal ul li ul li {
	list-style:disc;
	border:none;
}

div#sidebar div#navGlobal ul li ul li a {
	padding:.4em .5em .4em 0;
}


div#sidebar div#navGlobal ul li  ul li a#active {
	background-color:#ccc;
	color:#063;
}
/* ---- */




/* Extra text or image area below navigation */
div#navExtra{
	margin:1em;
}
div#navExtra img {
	text-align:center;
}

/* Call-out formatting */
div#callout div{	
	background-color:#ccc;
	padding:.7em .7em .5em .7em;
	margin:0 0 .5em .5em;
}

div#callout div h2{
	margin:0 0 0 0;
	padding:0 0 .2em 0;
	font-size:1em;
	border-bottom:solid 1px #ccc;
}

div#callout div ul {
	margin:.5em .5em 1em .5em;
}

div#callout div ul li {
	margin:.2em .2em .2em .5em;
	font-size:.9em;
	/* use just for UR sites: list-style-image:url(/_images/bullet.gif);*/	
}


/* Global classes */

.clear {
	clear:both;
}

.show {
	position:relative;
	left:0;
}

.hide {
	position:absolute;
	left:-9999px;
	width:100%;
	height:100%;	
}

.noBullets {
	list-style-type:none;
	margin:.5em 0;

}

.imgRight {
	float:right;	
	padding:.5em .5em .5em 1em;
}

.imgLeft {
	float:left;
	padding:.5em 1em .5em 0;
}



