 body {
	background-image: url(bkgrd2.jpg);
	text-decoration: none;
}

#header {
	position: absolute;
	left: 1px;
	top: 10px;
	width: 100%;
	height: 105px;
	padding: 1px;
	background-image: url(whitetrim.gif);
	background-repeat: repeat-x;
	background-position: bottom;
	background-color: White;
	z-index: 3
}

#abovenav {
	position: absolute;
	left: 5px;
	top: 410px;
	width: 150px;
	height: 150px;
	padding: 2px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-style: normal;
	font-weight: normal;
	font-variant: small-caps;
	background-color: transparent;
	z-index: 1;
}

#nav {
	position: absolute;
	left: 5px;
	top: 125px;
	width: 150px;
	height: 160px;
	padding: 5px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-style: normal;
	font-weight: normal;
	font-variant: small-caps;
	background-color: transparent;
}
#belownav {
	position: absolute;
	right: 25px;
	top: 10px;
	width: 150px;
	height: 50px;
	padding: 5px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-style: normal;
	font-weight: normal;
	font-variant: small-caps;
	background-color: transparent;
	background-image: url(addressheader.jpg);
	background-position: bottom;
	background-repeat: no-repeat;
	z-index: 3
}
#body {
	position: relative; 
	clear: right;
	margin-left:155px; 
	margin-right:1px; 
   top:100px;
	height: 488px;
	padding: 5px;
	background-color: #FFFFFF;
	overflow: auto;
	z-index: 1
}
#sidebar {
	position: absolute;
	height: 625px;
	width: 15px;
	top:10px;
	right: 10px; 
	background: #FFFFFF;
}

#footer {
	position: absolute;
	left: 1px;
	width: 100%;
	height: 85px;
	padding: 1px; 
	top: 610px;
	height: 25px;
	padding: 5px;
	background-color:#FFFFFF;
	background-image: url(footer.jpg);
	background-repeat: no-repeat;
	background-position: right;
}

#logo {
	position: absolute;
	left: 5px;
	top: 10px;
	height: 80px;
	width: 350px;
	background-image: url(logo.jpg);
	background-repeat: no-repeat;
	background-position: center;	
}
#address {
	position: absolute;
	top: 3px;
	z-index: 2;
	height: 75px;
	width: 150px;
	background-repeat: no-repeat;
	background-position: bottom;
	background-image: url(addressheader.jpg);
}
.menutitle{
	cursor: pointer;
	margin-bottom: .5em;
	background-color: White;
	color: #999999;
	width: 140px;
	padding: 2px;
	text-align: center;
	font-weight: bold; /*/
	*/border: thin dashed; /* */
	border-bottom-style: none;
	border-color: #999999;
	font-family: Verdana, Arial, Helvetica, serif;
	font-size: 11px;
	font-style: normal;
	font-variant: small-caps;
}

.submenu{
	font-family: Verdana, serif;
	font-size: 11px;
	font-weight: normal;
	font-style: normal;
	text-decoration: none;
	margin-bottom: 1.8em;
}

a:link {
	color: #0060A7;
	text-decoration: none;
	line-height: 5px;
}
a:visited {
	text-decoration: none;
	color: #0060A7;
}
a:hover {
	text-decoration: none;
	color: #FFFFFF;
}
a:active {
	color: #0060A7;
	text-decoration: none;
	
	
}

.plus {
	background-color: transparent;
	color: White;
	font-size: 125%;
}




	

*** REMEMBER DO NOT PUT DUPLICATE TAGS IN THE HTML FILES from the main page - like body /head etc.
To make an iframe transparent (background of the iframe page is visible through the data from the other page), you just need to use 2 additonal code snippets.


1) In the iframe code add ALLOWTRANSPARENCY=TRUE
2) In the content page (the page seen through the iframe), add 
 <style type="text/css">body {background-color: transparent} 


If you have several pages linked to the same iframe and you want them all to be transparent, you must place the second code on each content page you want to appear in the iframe.  You can choose to make only SOME of the pages that appear in the iframe as transparent by not including the 2nd code on all the content pages
------------------------
Set the scrolling of the iframe to "yes" instead of "auto"

Open the html of the linked page:
place a table which is set to a width of 100%

within the table you can place your text
OR 

" overflow-x: false " in the css of the iframe page or maybe in the iframe tag itself, ie; style="overflow-x: false"

