/* Image Gallery */

/* Complete Gallery Container */
.Gallery_Container{
	border:2px solid #C3DAF9;
	position:relative;
	overflow:hidden;
	text-align:center;
}

/* Style for Gallery Title and Image Title */
.Gallery_Container .Gallery_Title{
	font: bold 14px Arial, Helvetica, sans-serif;
	color:#4B74AF;
	text-align:center;
	width:100%;
	padding-top:5px;
	padding-bottom:5px;
	background:#DEECFD;
}

/* Style for Thumbnails Container */
.Gallery_Container .Thumb_Container{
	position: absolute;
	bottom:0px;
	left:0px;
	white-space:nowrap;
	height:100px; 

}

/* Style for Thumbnails Images */
.Gallery_Container .Thumb_Container img{
	border:1px solid #C3DAF9;
	margin:2px;
	padding:2px;
	display:inline;
}

/* Style for Displacement Left Button */
.Gallery_Container .Left_Arrow{
	position: absolute;
	left:0px;
	cursor: pointer;
	width: 30px;
	height:28px;
	bottom:40px;
	background-image:url("left.gif");
	background-repeat: no-repeat;
	background-position: left;
}

/* Style for Displacement Right Button */
.Gallery_Container .Right_Arrow{
	position: absolute;
	right:0px;
	cursor: pointer;
	bottom:40px;
	width: 30px;
	height:28px;
	background-image:url("right.gif");
	background-repeat: no-repeat;
	background-position: right;
}

/* Style for Center Image Container */
.Gallery_Container .Center_Image{
	position:relative;
	margin:auto;
}

/* Style for Selected Image */
.Gallery_Container .Center_Image img{
	border:1px solid #C3DAF9;
	padding:2px;
	cursor: pointer;
}