/*CSS Layout Image_Overlay JQuery*/
.image-overlay
{
	list-style: none;
	text-align: left;
}
.image-overlay LI
{
	display: inline;
}
.image-overlay A:link, .image-overlay A:visited, .image-overlay A:hover, .image-overlay A:active
{
	text-decoration: none;
}
.image-overlay A:link IMG, .image-overlay A:visited IMG, .image-overlay A:hover IMG, .image-overlay A:active IMG
{
	border: none;
}
.image-overlay A
{
	margin: 0;
	float: left;
	background: #FFF;
	overflow: hidden;
	position: relative;
}
.image-overlay IMG
{
	position: absolute;
	top: 0;
	left: 0;
	border: 0;
}
.image-overlay .caption
{
	float: left;
	position: absolute;
	background-color: #000;
	width: 100%;
	cursor: pointer;
/*The way to change overlay opacity is the follow properties. Opacity is a tricky issue due to
longtime IE abuse of it, so opacity is not offically supported - use at your own risk.
To play it safe, disable overlay opacity in IE.
For Firefox/Opera/Safari/Chrome*/
	opacity: .8;
/*For IE 5-7*/
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
/*For IE 8*/
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}
.image-overlay .caption H1, .image-overlay .caption H2, .image-overlay .caption H3, .image-overlay .caption H4, .image-overlay .caption H5, .image-overlay .caption H6
{
	margin: 10px 0 10px 2px;
	font-size: 20px;
	font-weight: bold;
	padding: 0 0 0 5px;
}
.image-overlay P
{
	text-indent: 0;
	margin: 10px;
	font-size: 1em;
}

