/*
 * 	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: #000000;
	opacity: 0.6;
	filter: alpha(opacity=60);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	display: none;
}

.portBox {
	max-width:800px;
	min-width:300px;
	position: absolute;
	display:none;
	background: #ffffff;
	z-index: 1001;
	padding: 30px;
	text-align:left;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 10px;
	-moz-box-shadow: 0 0 10px rgba(0,0,0,.4);
	-webkit-box-shadow: 0 0 10px rgba(0,0,0,.4);
	-box-shadow: 0 0 10px rgba(0,0,0,.4);
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box; 
	box-sizing: border-box;
}

.close-portBox{
	font-size: 20px;
	line-height: .5;
	position: absolute;
	top: -6px;
	right: -7px;
	color: #fff !important;
	text-shadow:none;
	font-weight:bold;
	cursor: pointer;
	border-radius:50%;
	padding:5px;
	background-color:#5c5c5c;
	overflow:visible;
	border:2px solid #fff;
	text-decoration:none;
}

.close-portBox:hover{
	color: #5c5c5c !important;
	background-color:#fff;
	border:2px solid #5c5c5c;	
}

.close-portBox:before {
	content: "";
	width: 0%;
}




.portBox ul li {
	list-style: circle !important;
	list-style-position:inside !important;
	padding-bottom:5px;
    text-indent: -1em;
	padding-left:1em;
	font-size:18px;
	margin-left:10px;
	line-height:1.2;
}

.portBox ol li {
	list-style-type:decimal;
	list-style-position: inside;
    text-indent: -1em;
    padding-left: 1em;
	line-height:1.3;
	font-size:18px;
}

.portBox p {
	text-align:left !important;
	padding:10px !important;
}

@media only screen and (min-width: 200px) and (max-width: 767px) {
.portBox {padding: 10px; max-width:98%;}
.portBox img {width:100% !important;}
.portBox h1 {font-size:14px; font-weight:400;padding:0;margin:0;}
.portBox p {font-size:14px;padding:5px;}
.portBox ul {margin-top:20px;}
.portBox ul li {font-size:14px;}
.portBox ol li {font-size:14px;margin-top:20px;}
}

