/* CSS Document */

body {
	background-image: url(images/bg.jpg);
	background-repeat:repeat-x;
	background-color:#fe9b4c;
}
td
{
	font-family: Tahoma,Arial, Helvetica, sans-serif;
	font-size: 12px;
	color:#333333;
}
.footer
{
font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color:#7A4E29;
}

#main
{
	width:730px;
	height:290px;
	overflow:auto;
}

/******************************  plans details hover  *****************************/
.m_redDetails {
	color:#cb0000;
	font-size:12px;
	font-weight:bold;
	padding-right:0px;
	text-align:left;
	text-decoration:none;
}


.detailsPop{
position: relative;
z-index: 0;
text-decoration:none;
}

.detailsPop:hover{
background-color: transparent;
z-index: 50;
}

.detailsPop span{ /*CSS for enlarged image*/
	position: absolute;
	background-color: #ffd07e;
	padding: 5px;
	left: -1000px;
	border: 1px solid #BDBDBD;
	visibility: hidden;
	color: black;
	text-decoration: none;
	width:500px;
	height:auto;
}

.detailsPop:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: 0;
left: 125px; /*position where enlarged image should offset horizontally */
}
