/* General */

.cop_overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	background: #000;
	background: rgba(0,0,0,0.8);
	display: block;
	opacity: 0;
	pointer-events: none;
	-webkit-transition: opacity .4s;
}

@media all and (-webkit-min-device-pixel-ratio:10000), not all and (-webkit-min-device-pixel-ratio:0) {
      .cop_overlay {z-index: -1;}
      .cop_overlay:target {z-index: 99999;}
} /*Opera fix*/


.cop_overlay:target {
	opacity: 1;
	pointer-events: auto;
}

.cop_content {
	display: block;
	width: 500px;
	overflow: auto;
	background: #fff;
	padding: 20px;
	height: 530px;
	position: absolute;
	top: 100%;
	left: 50%;
	margin-top: -285px;
	margin-left: -270px;
	-webkit-box-shadow: 0px 0px 5px #111;
	-moz-box-shadow: 0px 0px 5px #111;
	-o-box-shadow: 0px 0px 5px #111;
	box-shadow: 0px 0px 5px #111;
	-webkit-transition: top .4s ease-in-out;
	-moz-transition: top .4s ease-in-out;
	-o-transition: top .4s ease-in-out;	
	-transition: top .4s ease-in-out;
}

.cop_overlay:target .cop_content {
	top: 50%;
}

/*.cop_overlay:before {
	content: "Hit 'escape' to go back.";
	color: #ccc;
	text-align: center;
	display: block;
	margin-top: 5px;
	font-family: Helvetica Neue, sans-serif;
	font-size: 11px;
	text-shadow: #000 0px 1px 1px;
}*/



/* Typography & Readability */

.cop_content, .cop_content p, .cop_content a, .cop_content a:visited, .cop_content a:hover, .cop_content a:active, .cop_content a:focus, .cop_content ul, .cop_content ol, .cop_content a li.cop_content a, .cop_content strong, .cop_content em {
	font-family: "Lucida Grande", sans-serif !important;
	font-size: 12px !important;
	line-height: 17px !important;
}

.cop_content p {
	margin-bottom: 20px !important;
}

.cop_content h1 {
	font-weight: bold !important;
	font-size: 20px !important;
	margin-top: 10px !important;
	margin-bottom: 20px !important;
}

.cop_content h2 {
	font-weight: bold !important;
	font-size: 14px !important;
	margin-top: 10px !important;
	margin-bottom: 12px !important;
}

.cop_content h3 {
	font-weight: bold !important;
	font-size: 12px !important;
	margin-top: 10px !important;
	margin-bottom: 10px !important;
}

.cop_content h4 {
	font-weight: normal !important;
	font-size: 14px !important;
	margin-top: 10px !important;
	margin-bottom: 8px !important;
	font-style: italic;
}

.cop_content ul, .cop_content ol {
	margin-left: 20px !important;
	margin-bottom: 20px !important;
}

.cop_content a, .cop_content a:visited {
	color: #000 !important;
	text-decoration: underline !important;
	border: none !important;
}

.cop_content a:hover {
	color: #000 !important;
	text-decoration: none !important;
	border: none !important;
}


/* Close Button */

a.cop_close_left, a.cop_close_left:visited, a.cop_close_left:hover {
	position: fixed !important;
	display: block !important;
	height: 25px !important;
	width: 25px !important;
	background: #000 !important;
	color: #fff !important;
	font-family: 'Lucida Grande', sans-serif !important;
	text-align: center !important;
	line-height: 25px !important;
	text-decoration: none !important;
	border: none !important;
	-webkit-border-radius: 30px !important;
	-moz-border-radius: 30px !important;
	-o-border-radius: 30px !important;
	border-radius: 30px !important;
	margin-top: -32px !important;
	margin-left: -32px !important;
	-webkit-box-shadow: #000 0px 0px 3px !important;
	-moz-box-shadow: #000 0px 0px 3px !important;
	-o-box-shadow: #000 0px 0px 3px !important;
	box-shadow: #000 0px 0px 3px !important;
	border: solid 2px #fff !important;
}

a.cop_close_right, a.cop_close_right:visited, a.cop_close_right:hover {
	position: fixed !important;
	display: block !important;
	height: 25px !important;
	width: 25px !important;
	background: #000 !important;
	color: #fff !important;
	font-family: 'Lucida Grande', sans-serif !important;
	text-align: center !important;
	line-height: 25px !important;
	text-decoration: none !important;
	border: none !important;
	-webkit-border-radius: 30px !important;
	-moz-border-radius: 30px !important;
	-o-border-radius: 30px !important;
	border-radius: 30px !important;
	margin-top: -32px !important;
	margin-left: 500px !important;
	-webkit-box-shadow: #000 0px 0px 3px !important;
	-moz-box-shadow: #000 0px 0px 3px !important;
	-o-box-shadow: #000 0px 0px 3px !important;
	box-shadow: #000 0px 0px 3px !important;
	border: solid 2px #fff !important;
}


/* Scrollbar */

.cop_overlay ::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

::-webkit-scrollbar-thumb {
	height: 50px;
	background: #999;
}

::-webkit-scrollbar-thumb:active {
	background: #666;
}