/* If you're using the icon option, use this next selector to style them */
.loader {
    width: 100%;
    height: 100px;
    text-align: center;
}
.loader img {
    margin-top: 500px;
}
.tooltipster-icon {
	cursor: help;
	margin-left: 4px;
}
.tooltipster-kinopod {
    position: absolute;
    z-index: 999999;
    box-shadow: 0 2px 15px rgba(0,0,0,1);
    padding: 10px;
    width: 320px;
    min-height: 130px;
    height: auto;
    border: 1px solid #666;

    /* gradient background */
    background: white; /* very old browsers */
    background:        -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fafafa), color-stop(20%,#ffffff), color-stop(40%,#ffffff), color-stop(100%,#f8f8f8)); /* Chrome, Safari4+ */
    background: -webkit-linear-gradient(top, #fafafa 0%, #ffffff 20%, #ffffff 40%, #f8f8f8 100%); /* Chrome10+, Safari5.1+ */
    background:    -moz-linear-gradient(top, #fafafa 0%, #ffffff 20%, #ffffff 40%, #f8f8f8 100%); /* FF3.6+ */
    background:      -o-linear-gradient(top, #fafafa 0%, #ffffff 20%, #ffffff 40%, #f8f8f8 100%); /* Opera 11.10+ */
    background:         linear-gradient(to bottom,  #fafafa 0%,#ffffff 20%,#ffffff 40%,#f8f8f8 100%); /* W3C */
}
.tooltipster-kinopod .tooltipster-content {
    font-family: PTSansRegular,Helvetica,Arial,sans-serif;
    font-size: 13px;
    line-height: 16px;
    padding: 8px 10px;
    overflow: hidden;
}

.tooltipster-kinopod .tooltipster-content .person-origname{
    font-size: 14px;
}
.tooltipster-kinopod .tooltipster-content .person-image{
    float: left;
    width: 60px;
}

.tooltipster-kinopod .tooltipster-content .person-videos{
    float: right;
    width: 220px;
    height: 100%;
}

/* These next classes handle the styles for the little arrow attached to the tooltip. By default, the arrow will inherit the same colors and border as what is set on the main tooltip itself. */
.tooltipster-arrow {
	display: block;
	text-align: center;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.tooltipster-arrow span, .tooltipster-arrow-border {
	display: block;
	width: 0; 
	height: 0;
	position: absolute;
}
.tooltipster-arrow-top span, .tooltipster-arrow-top-right span, .tooltipster-arrow-top-left span {
	border-left: 8px solid transparent !important;
	border-right: 8px solid transparent !important;
	border-top: 8px solid;
	bottom: -8px;
}
.tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-top-left .tooltipster-arrow-border {
	border-left: 9px solid transparent !important;
	border-right: 9px solid transparent !important;
	border-top: 9px solid;
	bottom: -8px;
}

.tooltipster-arrow-bottom span, .tooltipster-arrow-bottom-right span, .tooltipster-arrow-bottom-left span {
	border-left: 8px solid transparent !important;
	border-right: 8px solid transparent !important;
	border-bottom: 8px solid;
	top: -8px;
}
.tooltipster-arrow-bottom .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
	border-left: 9px solid transparent !important;
	border-right: 9px solid transparent !important;
	border-bottom: 9px solid;
}
.tooltipster-arrow-top span, .tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-bottom span, .tooltipster-arrow-bottom .tooltipster-arrow-border {
	left: 0;
	right: 0;
	margin: 0 auto;
}
.tooltipster-arrow-top-left span, .tooltipster-arrow-bottom-left span {
	left: 6px;
}
.tooltipster-arrow-top-left .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
	left: 5px;
}
.tooltipster-arrow-top-right span,  .tooltipster-arrow-bottom-right span {
	right: 6px;
}
.tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border {
	right: 5px;
}
.tooltipster-arrow-left span, .tooltipster-arrow-left .tooltipster-arrow-border {
	border-top: 8px solid transparent !important;
	border-bottom: 8px solid transparent !important; 
	border-left: 8px solid;
	top: 50%;
	margin-top: -7px;
	right: -7px;
}
.tooltipster-arrow-left .tooltipster-arrow-border {
	border-top: 9px solid transparent !important;
	border-bottom: 9px solid transparent !important; 
	border-left: 9px solid;
	margin-top: -8px;
}
.tooltipster-arrow-right span, .tooltipster-arrow-right .tooltipster-arrow-border {
	border-top: 8px solid transparent !important;
	border-bottom: 8px solid transparent !important; 
	border-right: 8px solid;
	top: 50%;
	margin-top: -7px;
	left: -7px;
}
.tooltipster-arrow-right .tooltipster-arrow-border {
	border-top: 9px solid transparent !important;
	border-bottom: 9px solid transparent !important; 
	border-right: 9px solid;
	margin-top: -8px;
}


/* Some CSS magic for the awesome animations - feel free to make your own custom animations and reference it in your Tooltipster settings! */

.tooltipster-fade {
	opacity: 0;
	-webkit-transition-property: opacity;
	-moz-transition-property: opacity;
	-o-transition-property: opacity;
	-ms-transition-property: opacity;
	transition-property: opacity;
}
.tooltipster-fade-show {
	opacity: 1;
}

.tooltipster-grow {
	-webkit-transform: scale(0,0);
	-moz-transform: scale(0,0);
	-o-transform: scale(0,0);
	-ms-transform: scale(0,0);
	transform: scale(0,0);
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-ms-transition-property: -ms-transform;
	transition-property: transform;
	-webkit-backface-visibility: hidden;
}
.tooltipster-grow-show {
	-webkit-transform: scale(1,1);
	-moz-transform: scale(1,1);
	-o-transform: scale(1,1);
	-ms-transform: scale(1,1);
	transform: scale(1,1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}

.tooltipster-swing {
	opacity: 0;
	-webkit-transform: rotateZ(4deg);
	-moz-transform: rotateZ(4deg);
	-o-transform: rotateZ(4deg);
	-ms-transform: rotateZ(4deg);
	transform: rotateZ(4deg);
	-webkit-transition-property: -webkit-transform, opacity;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-ms-transition-property: -ms-transform;
	transition-property: transform;
}
.tooltipster-swing-show {
	opacity: 1;
	-webkit-transform: rotateZ(0deg);
	-moz-transform: rotateZ(0deg);
	-o-transform: rotateZ(0deg);
	-ms-transform: rotateZ(0deg);
	transform: rotateZ(0deg);
	-webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 1);
	-webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); 
	-moz-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); 
	-ms-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); 
	-o-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); 
	transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
}

.tooltipster-fall {
	top: 0;
	-webkit-transition-property: top;
	-moz-transition-property: top;
	-o-transition-property: top;
	-ms-transition-property: top;
	transition-property: top;
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
}
.tooltipster-fall-show {
}
.tooltipster-fall.tooltipster-dying {
	-webkit-transition-property: all;
	-moz-transition-property: all;
	-o-transition-property: all;
	-ms-transition-property: all;
	transition-property: all;
	top: 0px !important;
	opacity: 0;
}

.tooltipster-slide {
	left: -40px;
	-webkit-transition-property: left;
	-moz-transition-property: left;
	-o-transition-property: left;
	-ms-transition-property: left;
	transition-property: left;
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}
.tooltipster-slide.tooltipster-slide-show {
}
.tooltipster-slide.tooltipster-dying {
	-webkit-transition-property: all;
	-moz-transition-property: all;
	-o-transition-property: all;
	-ms-transition-property: all;
	transition-property: all;
	left: 0px !important;
	opacity: 0;
}


/* CSS transition for when contenting is changing in a tooltip that is still open. The only properties that will NOT transition are: width, height, top, and left */
.tooltipster-content-changing {
	opacity: 0.5;
	-webkit-transform: scale(1.1, 1.1);
	-moz-transform: scale(1.1, 1.1);
	-o-transform: scale(1.1, 1.1);
	-ms-transform: scale(1.1, 1.1);
	transform: scale(1.1, 1.1);
}

/* Tooltipster video/person */
.tooltipster-video, .tooltipster-person {
    position: absolute;
    z-index: 999999;
    min-height: 130px;
    height: auto;
    background: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,1);
    color: #2c2c2c;
    zoom: 1;
}
.tooltipster-video {
    width: 620px;
}
.tooltipster-person {
    width: 500px;
}

.tooltipster-video .tooltipster-content, .tooltipster-person .tooltipster-content {
    font-size: 13px;
    line-height: 16px;
    overflow: hidden;
}
.video-popup, .person-popup {
    padding: 20px;
}
.video-popup-title, .person-popup-title {
    font-size: 18px;
    font-weight: bold;
    line-height: 20px;
    margin-bottom: 10px;
}
.video-popup-orig, .person-popup-orig {
    font-size: 14px;
    color: #666;
}
.video-popup-info {
    margin: 0 0 10px 0;
    color: #666;
}
.video-popup-left {
    float:left;
    width: 400px;
}
.video-popup-right {
    float: right;
    min-width: 150px;
}
.video-popup-label {
    display: inline-block;
    min-width: 65px;
}
.video-popup-button {
    position: absolute;
    top: 50px;
    left: 452px;
}
.video-popup-stats {
    margin-top: 50px;
}
.video-popup-stats a {
    padding: 2px 0;
}
.video-popup-stats .icon {
    background: url(../images/icons.png) no-repeat 0 0;
    display: inline-block;
    width: 20px;
    height: 20px;
    overflow: hidden;
    font-size: 0;
    line-height: 0;
    text-indent: -3333px;
    text-align: center;
    vertical-align: middle;
    margin-right: 2px;
}
.video-popup-stats .icon.icon-favorite {
    background-position: 0 -20px;
}
.video-popup-stats .icon.icon-comments {
    background-position: 0 -40px;
}
.video-popup-stats .icon.icon-reviews {
    background-position: 0 -60px;
}
.video-popup-stats .icon.icon-likes {
    background-position: 0 -80px;
}
.video-popup-description {
    margin-bottom: 15px;
}
.video-popup table td {
    padding: 3px 0;
}
.video-popup table td.video-popup-col1 {
    vertical-align: top;
    width: 100px;
}
.video-popup table tr.video-popup-rating td {
    vertical-align: middle;
    padding: 15px 0 0;
}
.video-popup-rater, .video-popup-rater-value {
    display: inline-block;
    height: 16px;
    width: 160px;
    background: url(../images/jquery/stars.gif) repeat-x 0 0;
}
.video-popup-rater {
    position: relative;
    top: 2px;
}
.video-popup-rater-value {
    display: block;
    top: 0;
    background-position: 0 -32px;
}
.video-popup-ratings .video-popup-rating + .video-popup-rating {
    margin-left: 20px;
}
.video-popup-item {
    margin-left: 20px;
}

.person-popup-left {
    float:left;
    width: 120px;
}
.person-popup-right {
    float: right;
    width: 320px;
}
.person-popup-info {
    float: left;
    line-height: 40px;
}
.person-popup-button {
    float: right;
}
.person-popup-videos {
    margin-top: 10px;
}
.person-popup .top-videos-header {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}
.person-popup .top-videos {
    width: 100%;
}
.person-popup .top-videos td {
    padding: 2px 0;
}
.person-popup .top-videos-rating {
    width: 30px;
    text-align: center;
}