/* Motion Gallery Styles */

#motioncontainer {
	/*margin:0 auto;  Uncomment this line if you wish to center the gallery on page */
	width: 100%; /* Set to gallery width, in px or percentage */
	height: 102px; /* Set to gallery height */
}

#motioncontainer a img {
	border: 1px solid #cccccc; /* Set image border color */
}

#motioncontainer a:hover img {
	border: 1px solid navy; /* Set image border hover color */
}

#statusdiv {
	background-color: lightyellow;
	border: 1px solid gray;
	padding: 2px;
	position: absolute; /* Stop Editing Gallery Styles */
	left: -300px;
	visibility: hidden;
}

#motioncontainer a:hover {
	color: red; /* Dummy definition to overcome IE bug */
}
/* End Gallery Styles */



/* Photo Album Styles */
.photogallery{ /*CSS for TABLE containing a photo album*/
	margin-right: auto;
	margin-left: auto;
}

.photogallery img{ /*CSS for images within an album*/
	border: 1px solid green;
}

.photonavlinks{ /*CSS for pagination DIV*/
	font: bold 14px Arial;
}

.photonavlinks a{ /*CSS for each navigational link*/
	margin-right: 2px;
	margin-bottom: 3px;
	padding: 1px 5px;
	border:1px solid gray;
	text-decoration: none;
	background-color: white;
}

.photonavlinks a.current{ /*CSS for currently selected navigational link*/
	background-color: yellow;
}