.MenuBar * , .TabbedPanelsWidget * , .form-grp * , .Button * , .Button, p, h1, h2, h3, h4, h5, h6, .AccordionPanelTab {
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

/*.SlideShowWidget *, .LightboxContent *, .PamphletWidget * {
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}*/

.thumb-title {
	-webkit-transform: scaleY(0.2);
	-ms-transform: scaleY(0.2);
	transform: scaleY(0.2);
	transform-origin: top;
	opacity: 0;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.thumb-container:hover .thumb-title {
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
	transform-origin: top;
	opacity: 1;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.thumb-btn {
	-webkit-transform: scale(0.2);
	-ms-transform: scale(0.2);
	transform: scale(0.2);
	transform-origin: bottom left;
	opacity: 0;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.thumb-container:hover .thumb-btn {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	transform-origin: bottom left;
	opacity: 1;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}