/*
 * 	portBox 1.0 - jQuery plugin
 *	written by Joey Navarro	
 *	http://www.joeynavarro.com
 *
 *	Copyright (c) 2013 Joey Navarro (http://www.joeynavarro.com)
 *	Dual licensed under the MIT (MIT-LICENSE.txt)
 *	and GPL (GPL-LICENSE.txt) licenses.
 *
 *	Built for jQuery library
 *	http://jquery.com
 *
 */
/*-----------------------------------------
portBox CSS
------------------------------------------*/
.portBox-overlay {  
	height: 100%;
	width: 100%;
	background: #3e5563;
	opacity: 0.8;
	filter: alpha(opacity=60);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	display: none;
}

.portBox {
	max-width:1280px;
	position: absolute;
	display:none;
	background: #EEEEEE;
	z-index: 1001;
	padding: 20px;
	text-align:left;
	border-radius: 5px;
	-moz-box-shadow: 0 0 10px rgba(0,0,0,.2);
	-webkit-box-shadow: 0 0 10px rgba(0,0,0,.2);
	-box-shadow: 0 0 10px rgba(0,0,0,.2);
	min-width:300px;
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box; 
	box-sizing: border-box;
}

	.portBox h2 {margin: 0;}

.close-portBox{
		position: absolute;
		top: -10px;
		right: -10px;
		width: 30px;
		height: 30px;
		color: #fff !important;
		font-weight:bold;
		cursor: pointer;
		border-radius:50%;
		background:#eee url(../Images/box-close.png) 0 0 no-repeat;
		overflow:visible;
		text-decoration:none;
	    -webkit-transition: none;
	    -moz-transition: none;
	    transition: none;
		
}

    .close-portBox:hover {
        background-color: #432585;
        background-position: 0 -30px;
    }

/* Retina/HiDPI */
@media 	(-webkit-min-device-pixel-ratio: 2),
		(min-resolution: 192dpi) { 		
.close-portBox{background:#eee !important url(../img/box-close@2x.png) 0 0 no-repeat; background-size: 30px 60px;}
}