/* 
    Created on : 12 mars 2014, 09:05:14
    Author     : sMoron
*/

.notify
{
	position: relative;
}


.notify > *
{
	display:none;
	position: absolute;
	left:0px;
	top:15px;
	
	min-width: 150px;
	
	padding: 3px;
	
	border:1px solid #cccccc;
	background: #eeeeee;
	
	z-index: 1;
}

.notify:hover > *
{
	display:inline-block;
}