body {
	height: 100%;
	margin: 0;
    position: absolute;
	width: 100%;
    background: #063d4c;
	direction:rtl;

}
#warp{width: 400px;display: block;margin: 40px auto;text-align: center;}
.container {
	width: 550px;
	height: 201px;
	margin: 150px auto;
}

.container #tooltip {
	position: relative;
	width: 300px;
	height: 100px;
	background: #0d6f8a;
	margin-bottom: 20px;
	right: 10px;
	top: -160px;
	opacity: 0;
	visibility: hidden;
	background-image: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.3)));
	background-image: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.3) 100%);
	background-image: -o-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.3) 100%);
	background-image: -ms-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.3) 100%);
	background-image: linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.3) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#4d000000',GradientType=0 );	
	
	-webkit-transition: all .3s 1s ease;
	-moz-transition: all .3s 1s ease;
	-ms-transition: all .3s 1s ease;
	-o-transition: all .3s 1s ease;
	transition: all .3s 1s ease;
	
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	
	box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.5), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.4);
	-moz-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.5), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.4);
	-webkit-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.5), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.4);
}

.container #tooltip .avatar {
	float: right;
	margin: 5px 5px 5px 15px;
	border: 5px solid rgba(0,0,0,0.2);
	z-index: 5;
	position: relative;
}

.container #tooltip .info h2 {	
	color: white;
	font: bold 14px/30px Tahoma, Geneva, sans-serif;
	text-shadow: 1px 1px 0px rgba(0,0,0,0.3);
	margin: 0;
}

.container #tooltip .info p {	
	font: 12px/14px Tahoma, Geneva, sans-serif;
	color: #aaa;
	margin-top: 0;
}


.container #tooltip:after {
	content: '';
	position: absolute;
	bottom: -10px;
	width: 20px;
	height: 20px;
	background: #0d6f8a;
	right: 40px;
	background-image: -webkit-linear-gradient(-45deg, rgba(0,0,0,0.27) 0%,rgba(0,0,0,0.3) 100%);
	background-image: -moz-linear-gradient(-45deg, rgba(0,0,0,0.27) 0%,rgba(0,0,0,0.3) 100%);
	background-image: -o-linear-gradient(-45deg, rgba(0,0,0,0.27) 0%,rgba(0,0,0,0.3) 100%);
	background-image: -ms-linear-gradient(-45deg, rgba(0,0,0,0.27) 0%,rgba(0,0,0,0.3) 100%);
	background-image: linear-gradient(-45deg, rgba(0,0,0,0.27) 0%,rgba(0,0,0,0.3) 100%);
	
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);

	
	box-shadow: 2px 2px 1px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 2px 2px 1px 0px rgba(0,0,0,0.2);
	-webkit-box-shadow: 2px 2px 1px 0px rgba(0,0,0,0.2);
}
	

.container {
	color: #aaa;
	font: 13px/18px Tahoma, Geneva, sans-serif;
}

.container a.trigger, .container a{
	color: white;
	text-decoration: none;
}


.container a.trigger:hover ~ #tooltip {
	opacity: 1;
	visibility: visible;
	top: -140px;
	
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.container #tooltip .close {
	position: absolute;
	top: 5px;
	left: 6px;
	font-size: 20px;
	font-weight: bold;
	line-height: 18px;
	color: #000000;
	text-shadow: 0 1px 0 #ffffff;
	opacity: 0.2;
	filter: alpha(opacity=20);
	text-decoration: none;
}

.container #tooltip .close:hover {
	color: #000000;
	text-decoration: none;
	opacity: 0.4;
	filter: alpha(opacity=40);
	cursor: pointer;
}