@charset "utf-8";
/* CSS Document styling the div hover element */

#divhover { 
	background:#fff;  /* Initial Background Color */
  /*  width:350px; 	 Optional */
	height:86px;   Optional but preferred */
	padding:10px;  
	overflow:hidden; 
}



#divhover:hover { 
	background:#eee;   /* Background color when you mouse over */
	cursor:pointer;  /* Turn cursor to hand */
}

#divhover p { 
	display:none;   /* Hide Links Initially */
}


/* Formatting Only -- Change to suit whatever site we put it in */
#divhover img { float:left; margin-right:7px; }
#divhover h1 { margin:0; padding:3px 0 0 0; font:bold 17px Arial; }
#divhover h2 { margin:0; padding:3px 0 0 0; font:bold 17px Arial; }
#divhover h3 { margin:0; padding:3px 0 0 0; font:bold 14px Arial; }
#divhover a { margin:0; padding:0; font:normal 15px Arial; text-decoration:none; color:#444; }
#divhover p { margin-left:25px; margin-top:5px; }
#divhover p a { font:bold 12px Arial; }
#divhover p a:hover { text-decoration:underline }




/* 
#############################
CSS for the same using thumnails 
#############################
*/
#divhoverthumbnail { 
	background:#fff;  /* Initial Background Color */
    width:120px; 	 /*Optional */
	/*height:165px;   Optional but preferred */
	padding:1px;  
	overflow:hidden; 
	text-align:center;
}



#divhoverthumbnail:hover { 
	/*background:#eee;    Background color when you mouse over */
	cursor:pointer;  /* Turn cursor to hand */
}

#divhoverthumbnail p { 
	display:none;   /* Hide Links Initially */
}


/* Formatting Only -- Change to suit whatever site we put it in */
#divhoverthumbnail img {margin:0; padding:0px 0 0 0;/* float:left; margin-right:7px; */}
#divhoverthumbnail h1 { margin:0; padding:3px 0 0 0; font:bold 17px Arial; }
#divhoverthumbnail h2 { margin:0; padding:3px 0 0 0; font:bold 17px Arial; }
#divhoverthumbnail h3 { margin:0; padding:3px 0 0 0; font:bold 14px Arial; }
#divhoverthumbnail a { margin:0; padding:0px 0 0 0; font:normal 15px Arial; text-decoration:none; color:#444; }
#divhoverthumbnail p { margin:0; padding:0px 0 0 0; }
#divhoverthumbnail p a { font:bold 12px Arial; }
#divhoverthumbnail p a:hover { text-decoration:underline }


