
/*
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: #4A4A4A;
     text-decoration: none;
     border: 0;
}
.popr-box
{
     display: none;
     border-radius: 10px;
}
.popr_content
{
     background-color: #FFF;
     padding: 10px 0;
     margin: 0;
}
.popr-item
{
     color: #4A4A4A;
     font-size: 12px;
     font-weight: 700;
     padding: 12px 0px; 
     text-align: center;
}
.popr-item:hover
{
     color: #4A4A4A;
     background-color: #FAFAFA;
}

.popr_container_bottom
{
     display: none;
     position: absolute;
     margin-top: 10px;
     box-shadow: 0px 0px 4px #E5E5E5;
     z-index: 1000;
     width: 120px;
}
.popr_container_top
{
     display: none;
     position: absolute;
     box-shadow: 0px 0px 4px #E5E5E5;
     z-index: 1000;
}
.popr_point_top, .popr_point_bottom 
{
    position: relative;
	background: #fff;
	border: 1px solid #E5E5E5;
}
.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;
}

