// style.css


	html, body {
		height: 100%;         /* required */
	}
	
	body {
		text-align: center;   /* horizontal centering hack for IE */
		padding: 0;           /* required to "hide" distance div */
		margin: 0;            /* required to "hide" distance div */
	}
	
	#distance { 
		margin-bottom: -120px; /* half of content height */
		/*background: red; */     /* temporary - used to see div */
		width: 10px;           /* required to "hide" distance div */
		height: 50%;          /* required */
		float: left;          /* required */

	}
	
	#content {
		position: relative;   /* positions content on top of distance */
		text-align: left;     /* horizontal centering hack for IE */
		height: 240px;         /* required - desired height */
		width: 600px;          /* required - desired width */
		/*background: blue;  */   /* cosmetic */
		margin: 0 auto;       /* required */
		clear: left;          /* required */
	}

	#se {
		/*width: 740px;
		margin: 150px 0 0 0; */
		
	 	/*background: green;  */
		color: #bbb; 
		font-family: Georgia, serif; 
		font-size: 38pt;
		font-style: italic; 
		text-align: right;
	}

	#myname { 
		/*width: 700px;
		margin: 0 0 0 0; */
		
		/*background: yellow;*/  
		color: gray; 
		font-family: Georgia, serif; 
		font-size: 88pt; 
		font-style: italic; 
		/*text-align: right; */
	}

	#links {
		/*margin: 0 0 0 200px; */
		/*background: olive; */ 
		color: gray; 
		font-family: Georgia, serif; 
		font-size: 20pt; 
		font-style: italic; 
	}


	#links a {
		color: gray;
		text-decoration: none;
		border-bottom:1px dotted gray;
	}

	#links a:hover {
		text-decoration: none;
		border: none;
		color: #555;
	}

	.popup {
		background-color: #eee;
		font-family: serif; 
		font-size: 12pt; 
		font-style: italic;
		color: #222;
		text-align: left;

	}

	.popup a {
		color: #222;
		text-decoration: none;
		border-bottom:1px dotted #222;
	}

	.popup a:hover {
		text-decoration: none;
		border: none;
		color: #222;
	}

	.decrText {
		font-style:  italic;
		font-weight: bold;
		font-size:   10pt;
		margin-left: 20px;
		line-height: 20pt;
	}
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	