/*
Popr 1.0
Copyright (c) 2015 Tipue
Popr is released under the MIT License
http://www.tipue.com/popr
*/


.popr {
	cursor: pointer;
}

.popr a {
	color: #333;
	text-decoration: none;
}

.popr-box {
	display: none;
}

.popr_content {
	background-color: #fff;
	padding: 7px 0;
	margin: 0;
}

.popr-item {
	font: 300 14px/1.7 'Helvetica Neue', Helvetica, Arial, sans-serif;
	color: #333;
	padding: 4px 29px 5px 29px;
}

.popr-item:hover {
	color: #333;
	background-color: #dcdcdc;
}

.popr_container_bottom {
	display: none;
	position: absolute;
	margin-top: 10px;
	box-shadow: 2px 2px 5px #f9f9f9;
	z-index: 1000;
}

.popr_container_top {
	display: none;
	position: absolute;
	box-shadow: 2px 2px 5px #f9f9f9;
	z-index: 1000;
}

.popr_point_top,
.popr_point_bottom {
	position: relative;
	background: #fff;
	border: 1px solid #dcdcdc;
}

.popr_point_top:after,
.popr_point_top:before {
	position: absolute;
	pointer-events: none;
	border: solid transparent;
	top: 100%;
	content: "";
	height: 0;
	width: 0;
}

.popr_point_top:after {
	border-top-color: #fff;
	border-width: 8px;
	left: 50%;
	margin-left: -8px;
}

.popr_point_top:before {
	border-top-color: #dcdcdc;
	border-width: 9px;
	left: 50%;
	margin-left: -9px;
}

.popr_point_bottom:after,
.popr_point_bottom:before {
	position: absolute;
	pointer-events: none;
	border: solid transparent;
	bottom: 100%;
	content: "";
	height: 0;
	width: 0;
}

.popr_point_bottom:after {
	border-bottom-color: #fff;
	border-width: 8px;
	left: 50%;
	margin-left: -8px;
}

.popr_point_bottom:before {
	border-bottom-color: #dcdcdc;
	border-width: 9px;
	left: 50%;
	margin-left: -9px;
}

@media screen and (max-width: 1500px) and (min-width:1366px) {
	.popr_container_top {
		margin-left: -100px !important;
	}
}

@media screen and (max-width: 1366px) {
	.popr_container_top {
		margin-left: -60px !important;
	}
}