/* Outermost Container */
.freeow {
	position: fixed;
	width: 300px;
	z-index: 9999;
	top: 10px;
	right: 10px;
	color: white;
}

.freeow .background {
	border: 3px solid #000;
	-moz-border-radius: 12px;
	border-radius: 12px;
	background: #000;
	opacity: .65;
	-moz-box-shadow: 2px 2px 3px #888;
	-webkit-box-shadow: 2px 2px 3px #888;
	box-shadow: 2px 2px 3px #888;
}
.freeow:hover .background {
	border-color: #fff;
}
.freeow .content {
	margin: 5px 5px 5px 69px;
}
.freeow h2 {
	font-weight: bold;
	font-size: 13px;
	line-height: 16px;
	text-align:left;
}
.freeow p {
	padding-top: 8px;
	font-weight: normal;
	font-size: 11px;
	line-height: 14px;
}

/* Message */
.freeow > div {
	position: relative;
	margin-bottom: 5px;
	cursor: pointer;
}
.freeow h2, .freeow p {
	margin: 0;
	padding: 0;
}
.freeow .icon {
	position: absolute;
	display: block;
	width: 48px;
	height: 48px;
	top: 5px;
	left: 10px;
	background: transparent no-repeat 0 0;
	z-index: 1;
}
.freeow .close {
	position: absolute;
	display: block;
	width: 24px;
	height: 24px;
	top: 8px;
	left: 8px;
	background: none;
	z-index: 2;
}
.freeow div:hover .close {
	background: transparent url(../../images/icon-notifications-close.png) no-repeat 0 0;
}


/* Icons -------------------------------------------------------------------- */
.freeow .success .icon { background-image: url(../../images/icon-large-success.png); }
.freeow .error .icon   { background-image: url(../../images/icon-large-error.png); }
.freeow .notice .icon  { background-image: url(../../images/icon-large-notice.png); }
