body {
	background: #111;
	margin: 10px;
	padding-left: 50px;
	padding-right: 100px;
	padding-top: 50px;
	padding-bottom: 100px;	
	color: b6b6b6;
	text-align: left;
	font-size: 12pt;
	font-family: Frutiger, Univers, "Helvetica Neue", "Lucida Grande", Calibri, Helvetica, Verdana, sans-serif;
}

#name2 {
	font-size: 0pt;
	position: relative;
	left: -100px;	
}

#name { 
	font-family: "Times New Roman", Times, serif;
	font-size: 22pt;
	font-weight: bold;
	text-align: right;
	color: white;
	position: relative;
	top: 15px;	
}

#address { 
	border-bottom: thin solid; 
	color: white;
}

#addresslist {  
	text-align: right; 
	font-size: 11pt;
}

#addresslist li { 
	list-style-type: none; 
	text-align: right; 
	display: inline; 
	padding-left: 15px; 
	background-image: url(../images/white-checked.gif);
	background-repeat: no-repeat;
	background-position: 0px 4px;
	position: relative;
	top: 5px;	
}

#heading {
	padding-top: 10px;
	padding-left: 5px;
	border-bottom: thin solid;
	font-size: 13pt;
	font-variant: small-caps;
	color: white;
	font-weight: bold;
}

#group {
	
}

#subheading {
	font-style: italic;
	color: white;
}

#firstlist {
	list-style-image: url(../images/white-checked.gif);
}

#secondlist {
	list-style-image: none;	
	list-style-type: disc; 
}

#thirdlist {
	list-style-image: url(../images/white-checked.gif);	
}

#fourthlist {
	list-style-image: url(../images/white-checked.gif);	
}

#employer {
	font-size: 13pt;
	margin-top: 1em;
	font-weight: bold;
	font-style: normal;
	color: white;
}

#fifthlist {
	list-style-image: none;	
	list-style-type: disc; 
}

#fifthlist li {
	font-style: italic;
	font-weight: normal;
	/*color: white;*/
}

#sixthlist {
	list-style-image: url(../images/white-checked.gif);	
}

#description {
	position: relative;
	top: -13px;	
	padding-left: 25px;
	margin-bottom: 0px;
	font-style: normal;	
}

#description2 {
	position: relative;
	top: -13px;	
	padding-left: 25px;
	margin-bottom: 0px;
	font-style: normal;	
}

#nav td{
	text-align: center; 
}

#nav img {
	border-style: none;
	height: 50px;
}

a:link, a:visited {
	color: #fff;
	text-decoration: none;
}

#sixthlist a {
 	text-decoration: underline;
}

/* Tooltip */
.tooltip {
  position:relative;
  border-bottom:1px dashed white; /* If you want dots under the hoverable text: 1px dotted black;*/
}

.tooltip:before {
  content: attr(data-text); /* here's the magic */
  position:absolute;
  
  /* vertically center */
  top:50%;
  transform:translateY(-50%);
  
  /* move to right */
  left:100%;
  margin-left:15px; /* and add a small left margin */
  
  /* basic styles */
  width:200px;
  padding:10px;
  border-radius:10px;
  background: #666;
  color: white;
  text-align:center;

  display:none; /* hide by default */
}

.tooltip:hover:before {
  display:block;
}

.tooltip:after {
  content: "";
  position:absolute;
  
  /* position tooltip correctly */
  left:100%;
  margin-left:-5px;
 
  /* vertically center */
  top:50%;
  transform:translateY(-50%);
 
  /* the arrow */
  border:10px solid #666;
  border-color: transparent #666 transparent transparent;
  
  display:none;
}

.tooltip:hover:before, .tooltip:hover:after {
  display:block;
}