/* REQUIRED BY TOPSHELF POPOVER */
*[data-ui='popover-panel']{
	position:fixed;
	display:none;
	top:100px;
	left:0;
	right:0;
	z-index:9999;
}
*[data-ui='popover-mask']{
	display:none;
	position:fixed;
	top:0;
	right:0;
	bottom:0;
	left:0;
}
/* DEFAULT SKIN */
.popover{
	margin: 0 auto !important;
	width:80%;
	padding:30px 30px;
	color:#555;
	background: #eaeaea; /* Old browsers */
	background: -moz-linear-gradient(top,  #fefefe 0%, #eaeaea 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fefefe), color-stop(100%,#eaeaea)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #fefefe 0%,#eaeaea 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #fefefe 0%,#eaeaea 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #fefefe 0%,#eaeaea 100%); /* IE10+ */
	background: linear-gradient(top,  #fefefe 0%,#eaeaea 100%); /* W3C */
	border:1px solid #dbdbdb;
	border-radius:3px;
	box-shadow:0px 3px 30px 0px rgba(0,0,0,0.3);
	
}
.popover ul{
	list-style-type: circle !important;
	list-style-image: none !important;
}
.close{
	position:absolute;
	display:block;
	top:5px;
	right:15px;
	width:20px;
	height:20px;
	text-indent:-999em;
	background:url(../img/close.png) no-repeat;
	background-size:30%; 
	background-position: center center;
	padding: 10px;
}
.popover-mask{
	background:rgba(0,0,0,0.1);
}
#firstPopover{
	height:auto;
}
#secondPopover{
	height:70%;
	overflow-y: scroll;
}
#thirdPopover{
	height:auto;
}