body {
		margin: 0 auto; /*Center container on page*/
		
		background-color:#666;
		
		font-family:Arial, Helvetica, sans-serif;
		font-size:12px; /*size of static font - not clickable*/
		padding:0;
		
	}
	


img { border: none; /*no border on pics*/

} 


a {
  color: yellow; /* yellow links */
  text-decoration: underline;
  font-size:16px; /*size of font on clickable type*/
}

a:hover {
  color:red;
  text-decoration: underline; /* makes links underline*/ 
}


#space{
	line-height: 150%; /* line height varies the leading btw lines*/ 
}






/********* tabs vitals *********/

.ui-tabs .ui-tabs-hide {
  display: none;
}

.ui-tabs {
  position: relative;
}

.ui-tabs .ui-tabs-nav, ui-tabs .ui-tabs-nav li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ui-tabs .ui-tabs-nav {
  clear: both;
  overflow: hidden;
}

.ui-tabs .ui-tabs-nav li {
  float: left;  
}

.ui-tabs .ui-tabs-nav li a {
  display: block;
}




/***** TAB STYLES button zone *****/
#tabs-global {
  float: left;
  width: 1000px; /* width of tab box 1 of 3*/
  
}

#tabs-global .ui-tabs-nav {
  width: 1000px; /* width of tab box 2 of 3*/
}

#tabs-global .ui-tabs-nav li a {
  height: 200px; /* height of topmost tab zone */
  background: url(../images/blockmenu.jpg) no-repeat; /* picture background for tabs untouched*/
}



/****** INACTIVE STATES *******/
#tabs-global .ui-state-default #things1 { width: 200px; background-position: 0px 0px;     }
#tabs-global .ui-state-default #things2 { width: 200px; background-position: -200px  0px;  }
#tabs-global .ui-state-default #things3 { width: 200px; background-position: -400px  0px;  }
#tabs-global .ui-state-default #things4 { width: 200px; background-position: -600px  0px;  }
#tabs-global .ui-state-default #things5 { width: 200px; background-position: -800px  0px;  }



/***** ACTIVE STATES *******/
#tabs-global .ui-state-active #things1 { background-position: 0px -200px; }
#tabs-global .ui-state-active #things2 { background-position: -200px -200px; }
#tabs-global .ui-state-active #things3 { background-position: -400px -200px;  }
#tabs-global .ui-state-active #things4 { background-position: -600px -200px;  }
#tabs-global .ui-state-active #things5 { background-position: -800px -200px;  }


#tabs-global .ui-tabs-panel {
  width: 1000px; /*width of tab box 3 of 3*/
  background: none;
  overflow: hidden;
}

#tabs-global .ui-tabs-panel .container { /*mention of container from body*/
  height: 500px; /* height is added with padded next to give true overall height of info box*/
  padding: 10px; /* padding also keeps text away from box edge */
  
  overflow: auto;
  border: 0px solid green; /* green outline on box*/
  
  background:#333; /* color fill of info zones  */
  color: #FF0; /* yellow type of static text  - link text color influenced by a tag */
}


#tabs-global .ui-tabs-panel .container img { /*center image in tabs column*/
	display:block;
	margin:auto;
}



#stuff2 em {
  display: none;
}

