/**
 * jQuery.popover example stylesheet.
 * By Davey IJzermans
 * http://daveyyzermans.nl
 * 
 * License: public domain
 */
.inner-txt {
    background: none repeat scroll 0 0 #EEEEEE;
    clear: both;
    cursor: pointer;
    float: left;
    line-height: 20px;
    margin-top: 1px;
    padding: 2px 2px 2px 10px;
    width: 94%;
}

.inner-txt > img {
    float: right;
    margin: 1px 4px 0 0;
    text-align: center;
}

.inner-txt:hover{color: #bfbfbf;} 
.popover {
	position: absolute;
	top: 0; left: 0;
	max-height: 240px;
	width: 220px;
	display: none;
	-webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.1);
}
.popover.wider {
	width: 340px;
}
.popover.large {
	width: 470px;
	max-height: 350px;
}
.popover .arrow, .popover .top-arrow {
	position: absolute;
	top: 0; left: 50%;
	margin: -10px 0 0 -3px;
	width: 0; height: 0;
	border-top: 5px solid transparent;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 5px solid #121212;
}
.popover .bottom-arrow {
	top: 100%; left: 50%;
	margin: 0 0 0 -3px;
	border-top: 5px solid #121212;
	border-bottom: 5px solid transparent;
}
.popover .left-arrow {
    border-bottom: 5px solid transparent;
    border-right: 5px solid #444;
    height: 0;
    left: -16px;
    margin: -5px 0 0;
    top: 50%;
    width: 6px;
}
.popover .right-arrow {
	top: 50%; left: 100%;
	margin: -3px 0 0;
	border-left: 5px solid #121212;
	border-bottom: 5px solid transparent;
}
.popover .wrap {
	  background: none repeat scroll 0 0 #447d94;
    border: 3px solid #82d1e0;
    border-radius: 4px;
    box-shadow: 1px 9px 7px #717171;
}
span.inner-txt {
    border-bottom: 1px solid #82d1e0;
}
.popover .content span:last-child {
    border-bottom: none;
}
.inner-txt.even {
    background: #447d94;
    color: #fff;
}
.inner-txt.odd {
    background: #447d94;
    color: #fff;
}

.popover .title {
	/*background: #121212 url(popover_gradient.png) repeat-x;*/
	color: white;
	font-size: 1.3em;
	text-align: center;
	padding: 8px 0 0 0;
	height: 27px;
}
.popover .content {
	padding: 1px;
	max-height: 175px;
	overflow: auto;
	line-height: 1.3em;
	font-size:13px;
}
.popover.large .content {
	max-height: 285px;
}
