

.container {
	width: 210px;
	height:150px;
	
	
}

.container #tooltip { 
    bottom: 10%;
    color: #ffffff;
    display: block;
    left: 100%;
    margin-top: 1px;
    pointer-events: none;
    width: 100%;
	padding:20px;
	position: relative;
	height: 100%;
	background: #222222;
	opacity: 0.1;
	visibility: hidden;
	z-index: 1;
	 -webkit-transition: all .5s ease-out;
     -moz-transition: all .5s ease-out;
      -ms-transition: all .5s ease-out;
       -o-transition: all .5s ease-out;
          transition: all .5s ease-out;
           -webkit-transform: translateY(10px);
     -moz-transform: translateY(10px);
      -ms-transform: translateY(10px);
       -o-transform: translateY(10px);
          transform: translateY(10px);
            -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
     -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
      -ms-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
       -o-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
          box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
	
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	
}





.container #tooltip .info h2 {	
	color: white;
	font: bold 16px/20px Arial;
	text-shadow: 1px 1px 0px rgba(0,0,0,0.3);
	margin: 0;
}

.container #tooltip .info p {	
	font: 12px/14px  "Gill Sans", Impact, sans-serif;
	color: #aaa;
	margin-top: 0;
}

.container #tooltip:after {
	content: '';
	position: absolute;
	bottom: 50%;
	width: 20px;
	height: 20px;
	background: #222222;
	left: -5px;
	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.livecontainer {
	width: 200px;
	height:100px;
	
	
}

.container.livecontainer #tooltip { 
    bottom: 10%;
    color: #ffffff;
    display: block;
    left: 100%;
    margin-top: 80px;
    pointer-events: none;
    width: 100%;
	padding:10px 20px;
	position: relative;
	height: 100%;
	background: #222222;
	opacity: 0.1;
	visibility: hidden;
	z-index: 1;
	 -webkit-transition: all .5s ease-out;
     -moz-transition: all .5s ease-out;
      -ms-transition: all .5s ease-out;
       -o-transition: all .5s ease-out;
          transition: all .5s ease-out;
           -webkit-transform: translateY(10px);
     -moz-transform: translateY(10px);
      -ms-transform: translateY(10px);
       -o-transform: translateY(10px);
          transform: translateY(10px);
            -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
     -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
      -ms-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
       -o-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
          box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
	
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	
}

.container {
	color: #aaa;
	font: 13px/18px Arial, sans-serif;
}

.container a.trigger, .container a{
	color: white;
	text-decoration: none;
}

.container a.trigger:hover ~ #tooltip {
	opacity: 1;
	visibility: visible;
	top: -140px;
	
	 pointer-events: auto;
  -webkit-transform: translateY(0px);
     -moz-transform: translateY(0px);
      -ms-transform: translateY(0px);
       -o-transform: translateY(0px);
          transform: translateY(0px);
}


.container #tooltip .close {
	position: absolute;
	top: 5px;
	right: 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;
}