/* basic page formatting style */
body { 	
	background-image: url('../images/piptop.jpg');  /* bkgd image */
	background-position: top;  /* bkgd image to center */
	background-repeat: repeat-x;		/* bkgd image does not repeat */  
	/* also bkgd image repeat-y or repeat-x */
	background-color: #000000;  
	margin: 0px auto 0px auto;
	padding: 0px 0px 10px 0px;
	font-family: verdana, geneva, arial, sans-serif;  /* default fonts */
	color: #daeef2;
	font-size: small;  /* default font size 10 px */
	text-align: center; /* default text alignment */
	}	

div>p:first-child {					/* this causes ie and compliant browsers to display first p in a div the same */
	margin-top: 0px;
	}
	
img {  /* removes border from linked images */
	border: 0px;
	}
 	
#container {   /* <div id="container"> */
	width: 735px;
	background-color: transparent;
	margin: 25px auto 0px auto;
	padding: 0px 10px 10px 10px;
	text-align: left;
	}

#header {   /* <div id="header"> */
	position: static;
	width: 688px;	
	margin: 0px auto 0px auto;
	}
	
#menu {   /* <div id="nav"> used for side navigation */
	position: static;
	width: 170px;
	background-color: transparent;
	margin: 10px 0px 0px 10px;
	padding: 5px 5px 5px 5px;
	text-align: left;	
	}
	
#maincopy {  /* <div id="maincopy"> used for right copy by navigation */
	position: static;
	width: 430px;
	margin: 0px 0px 0px 0px;
	padding: 10px 20px 10px 10px;
	text-align: left;
	}

#footer {   /* <div id="footer>*/
	width: 698px;
	text-align: center;
	font-family: Verdana;
	font-size: 100%;
	margin: 0px auto 0px auto;
	padding-top: 15px;
	padding-bottom: 10px;
	}
	
#superfooter {  /* space below footer */	
	height: 185px;
	background: url(../images/pipbottom.jpg) repeat-x;
	margin: 0px auto 0px auto;
	padding: 20px 20px 0px 0px;
	}	
	
.floatl {   /* floats to the left*/
	float: left;
	display: inline;					/* fix IE double margin bug on floats */
	}

.floatr {  /* floats to the right*/
	float: right;
	display: inline;					/* fix IE double margin bug on floats */
	}
	
img.floatr {   /* floats to the right with white space on the left*/
	padding-left: 20px;
	}
	
img.floatl {  /* floats to the left with white space on the right*/
	padding-right: 20px;
	}
	
.fullwidth {  /* 680 wide division*/
	width: 680px;
	margin: 0px;
	padding: 20px 10px 10px 10px;
	text-align: left;
	}
	
.clear {  /* clears fullwidth division*/
	clear: both;
	width: 5px;
	margin: 0px;
	padding: 0px;
	font-size:1px;
	line-height:0;
	}
	
.fullwidthpadded {   /* 50 px white space added inside fullwidth division*/
	width: 552px;
	margin: 0px auto 0px auto;
	padding: 10px 50px 10px 50px; 
	text-align: left;
	}	
	
.halfwidth {  /* 276 wide division, floatl or floatr*/
	width: 276px;
	margin: 0px auto 0px auto;
	padding: 5px 0px 5px 0px;		
	}	

	
.halfwidthpadded {   /* 20 px white space added inside 288 px halfwidth division.  Can not be used inside a fullwidthpadded*/
	width: 288px;
	margin: 0px;
	padding: 20px 0px 10px 0px;
	text-align: left;
	}
	
.divcenter{      /* creates an auto centering division */
	margin: 0px auto 0px auto;
	}

.nobottom {   /* forces bottom text to move up */
	margin-bottom:	0;
	padding-bottom:	0;
	}
	
.notop {     /* forces top text to move up */
	margin-top:	0;
	padding-top:	0;
	}		

/* end basic page formatting style */
	
/* begin site specific page formatting style */
	
	a {  /* color of link */
  	color:	 #a6a6a6;
  	text-decoration:	none;
  	padding:	0px;
  	}
	
	a:visited {  /* color of visited link */
		color:  #848484;
		text-decoration: none;
		padding:	0px;
		}

	a:hover {  /* color of link when hovered*/
		color: #0097a6;
		text-decoration: none;
		padding:	0px;
		}
		
ul {  /* definition of an unordered list */
	margin-top:		0;
	padding-top: 	0;
	margin-left:	10px;
	padding-left:	10px;
	}
		
ul.image {  /* image at the beginning of an unordered list */
	list-style-image: url('../images/bullet.jpg');
	}
		
ul.noimage {	 /* no image at the beginning of an unordered list */
 	list-style-type: none;
	}		
	
li {
	margin-top:		0px;
	padding-top: 	5px;
	margin-left:	0px;
	padding-left:	0px;
	}
		
li.line {	 
	border-bottom: 1px #4e3d56 solid;	
	}	
		
#menu ul {  /* definition of an unordered list */
	margin: 0px auto 0px auto;
	padding: 0px 0px 0px 0px;
	}	
	
#menu li {
	margin: 0px auto 0px auto;
	padding: 15px 0px 0px 0px;
	}
		
li.line {	 
	border-bottom: 1px #4e3d56 solid;	
	}			


table {  /* table with 10 px padding and no margins */
	padding:	10px;	
	margin: 	0px auto 0px auto;
	}	
	
td {  /* table cell with 10 px padding on top and 15 px padding on the right */
	padding-top:		10px;		
	padding-right:	15px;	
	}

	
h1 {  /* headline 1 */
  font-size:      190%;	
	text-align:			center;
	font-weight:    normal;	
	}
	
h2 {  /* headline 2 */
  font-size:      150%;
	text-align:			center;	
	font-weight:    normal;	
	}
	
h3 {  /* headline 3 */
  font-size:      120%;	
	font-weight:    normal;
	}	

.tl {   /* text left */
	text-align:	left;
	font-weight:    normal;
	}
	
.tc {   /* text center*/
	text-align:	center;
	font-weight:    normal;
	}
	
.tr {   /* text right*/
	text-align:	right;
	font-weight:    normal;
	}
	
.tj {   /* text justified*/
	text-align:	justify;
	font-weight:    normal;
	}
	
.t85 {    /* small text left */
	font-size:      85%;	
	}
	
.t110 {
	font-size:   110%;	
	line-height: 0.5cm;  /* specifies space between lines */
	}	
	
.t120 {   /* large text left */
	font-size:      120%;	
	}		

.border {   /* adds a 1px black border*/
	border: 1px solid black;
	}
	
.teal {
	color: #0097a6;
	}
	
.white {
	color: #ffffff;
	}

	

	



  	
