/* Image Gallery */

/* Complete Gallery Container */
.Gallery_Container
{
    border-style: none;
    border-color: #B9AF79;
    position: relative;
    overflow: hidden;
    text-align: center;
    margin: auto;
}

/* Style for Gallery Title and Image Title */
.Gallery_Container .Gallery_Title
{
    font: bold 16px Arial, Helvetica, sans-serif;
    color: #4F0000;
    text-align: center;
    width: 100%;
    padding-top: 5px;
    padding-bottom: 5px; /*background: #BEBE7E;*/
}

/* 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: 2px solid #3C0000;
    padding: 2px;
    cursor: pointer;
}
