@charset "UTF-8";
/* CSS Document */

#GalleryContent {
	width: 850px; /*the width of the slideshow*/
	height: 650px; /*the height of the slideshow*/
	position: absolute; /*absolute position to center the element in relation to its parent element*/
	left: 50%; /*the left border of the element is positioned at half of the available width of the parent element*/
	top: 50%; /*the top border of the element is positioned at half of the available height of the parent element*/
	margin-left: -425px; /*half of the element width is removed from the left margin to center it*/
	margin-top: -325px; /*half of the element height is removed from the top margin to center it*/
	background-color: 44433d;
}
