/* Main Selectors */
body {
	background: #56534E url(back.gif) repeat-x;
	color: #F7C3D3;
  	font-family: verdana;
	font-size: 12pt;

}

a, a:visited {
	background-color: transparent;
	color: #A178A7;
	text-decoration: none;
}

a:hover {
	background-color: transparent;
	color: #BE5372;
	text-decoration: none;

}

a img {
	border:none;
	text-decoration: none;
}



h1{
color: #692B45;
font-size: 14pt;
letter-spacing: -.05em;
font-family: verdana;
}
.ggg
 {
  float: left;
  width:100px;
  height:400px;
  border:0px solid #FCFE13;
 padding-right: 0px;
  padding-top: 8px;
}

.maintext {
  position: relative;
  left: 100px;
  width: 440px;
  height:300px;
  border:0px solid #FCFE13;
  overflow: auto;
  top: 70px;
  padding-left: 0px;
  font-family: garamond;
  font-size: 10pt;

}
.menutext {
  position: relative;
  left: 100px;
  width: 440px;
  height:20px;
  border:1px solid #FCFE13;
  overflow: auto;
  top: 50px;
  padding-left: 0px;
  font-family: garamond;
  font-size: 10pt;

}




.postit {
  float: left;
  width: 200px;
  height:80px;
  border:0px solid #FCFE13;
  overflow: none;
  top: 40px;
  padding-left: 0px;
  font-family: arial;
}


.contentBlock {
  font-size: 10pt;
  top: 0px;
  border:0px solid #FCFE13;
  font-family: sans-serif,arial,helvetica;

}

.picture {
  float: right;
  width: 270px;
  height:350px;
  border:0px solid #FCFE13;
  padding-left: 10px;
}



#popitmenu{
position: absolute;
background-color: #F7C3D3;
border:1px solid #F7C3D3;
line-height: 18px;
z-index: 100;
visibility: hidden;
text-align: left;

}

#popitmenu a{
text-decoration: none;
padding-left: 6px;
color: black;
display: block;
text-align: left;
width: 150px;

}

#popitmenu a:hover{ /*hover background color*/
background-color: #F7C3D3;
}


=================================
 start of Tooltip css code here
================================= */
a.info{
    position:absolute;           /*this is the key*/
    z-index:24; 
	background-color:#;    /* background colour of display text */
	border: 1px dashed #F7C3D3;
    color:#000000;               /* colour of display text */
    text-decoration:none;
	font-style:regular;
	}

a.info:hover {
			 z-index:25; 
			 background-color:#;

			 }

a.info span{
	   display: none;  /* hide the span text using this css */
	   }

a.info:hover span{ /*the span will display just on :hover state*/
    display:block;
    position:absolute;
    top: 5em;       /* offset of the tooltip from the top */
	left: 30%;      /* offset of the tooltip from the left */
	width:30em;
    border:1px solid #A93C3C; /* border colour */
    background-color:#F7C3D3; /* background colour here */
    color:#55374C;         /* text colour */
    text-align: left;
    font-size: 12px;
    font-family: sans serif;
	text-indent: 0px;
    padding: 5px;
	}
/*
