/* The CSS for all GiftWidget objects */


/* The element responsible for collapsing.
 * Must be the same element that has the main background for the widget.
 */
.gift-widget {
	overflow: hidden;
}

/* Reserved classes for JavaScript.
 * DO NOT APPLY STYLES TO THESE CLASSES ANYWHERE!
 */
.gift-widget-no-collapse,
.gift-widget-auto-expand {
}

/* All elements that fully enclose the widget content need rounded corners.
 * The .gift-widget element is an example of an element that needs this class.
 */
.gift-widget-envelope {
	position: relative;
	top: 0px;
	left: 0px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}

/* The arrow that indicates this widget can be collapsed.
 */
.gift-widget-indicator {
	background: transparent url(/assets/img/GiftWidget/button.png) no-repeat scroll top left;
	width: 15px;
	height: 15px;
	top: 15px;
	right: 10px;
	position: absolute;
}

/* The element that becomes the clickable trigger 
 * for collapsing and expanding the widget.
 */
.gift-widget-trigger {
	height: 48px;
}

/* The part of the widget that is hidden when collapsed.
 */
.gift-widget-body {
	position: relative;
	top: 0px;
	left: 0px;
}

