@charset "utf-8";
/* CSS Document */

a#popup:visited {
	text-decoration:none;
}
/* this is the styling for the popup definition box */
a#popup {
	/* font color the #nogo link */
color:#c20808;
	text-decoration:none;
	position:relative;
	left:0;
	font-weight:normal;
	
	font-style:normal;
}
/* nothing will display unless it 
  has an id or class allocated to it */
a#popup span {
	display:none;
}
a#popup:hover {
	cursor:default;
}
/*all these next tags that contain :hover are 
  the box popping styles */
a#popup:hover #popbox {
	display:block;
	position:absolute;
	/* position on the page that the box pops up
  to the top and left of the word */ 
top:-65px;
	left:-75px;
	width:150px;
	height:auto;
	background-color:#fff;
	color:#000;
	border:2px solid #000;
	text-align:left;
	font-family:"Times New Roman", Times, serif;
	font-size:11px;
	padding-left:10px;
	padding-top:20px;
	padding-right: 10px;
	padding-bottom: 10px;
}
/* this is the colored border at the top */
a#popup:hover #poptop {
	display:block;
	position:absolute;
	top:0;
	left:0;
	/* width of box plus 40px for warning box */ 
width:170px;
	/* height of top colored border */ 
height:18px;
	/*color of popbox top border you can change 
  it to another color */
background-color:#9ECA98;
	/* color of the border font */ 
color:#333333;
	text-align:center;
	font-weight:bold;
	line-height:20px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #333333;
}
/* all these rules to make the left side of
  the popup box */

/* rule for the question mark */

/* this is the rule for the definition text padding: 2em;*/
acronym {
	color:#000;
	border:0;
	
}

