/*

EXTERNAL LINK INTERCEPT SCRIPT
- Interacts with links to add a modal window when an external link is clicked.

Created By: Andy Reid
Original Date: October 15, 2010

Modifications;
DATE		NAME		DESC
1/5/2011	Andy Reid	Added word-wrap and overflow hiddens to infoBar to account for really long urls
*/



#exitMsg-box {
	width: 450px;
	height: 260px;
	padding: 10px;
	margin: 15px;	
	background-color: #fff;
	border: #ccc solid 5px;
	text-align: left;
	position: absolute;
	z-index: 20;
	display: none;
	color: #666;
}

	#exitMsg-box .infoBar {                     
	   	margin: 15px 5px 15px 5px;    
	   	padding:10px 10px 10px 10px;  
	   	border-bottom: 1px solid #ccc;
	   	border-top: 1px solid #ccc;   
	   	font-size:11px;
	   	font-color:#999;              
	   	background-color: #f8f8f8;  
	   	word-wrap: break-word;
	   	overflow: hidden;

	}                              
	
	#exitMsg-box #exitMsg-box-close {
		text-align: right;
		font-weight:bold;
		margin:0px;
		padding:0px;
	}
	#exitMsg-box #exitMsg-box-close p { 
		margin:0px;
		padding:0px;
	}
	
	#exitMsg-box h2 { margin:10px 5px 5px 5px; padding:3px; border:none; font-size:15px; }
	#exitMsg-box h3 { margin:5px; padding:3px; border:none; font-size:13px; }
	#exitMsg-box p { margin:5px; padding:3px;  }
		
	#exitMsg-box a   { color: #b28000; font-weight: bold; text-decoration: none; font-size:12px; }
	#exitMsg-box a:visited { color: #b28000; font-weight: bold; text-decoration: none }
	#exitMsg-box a:hover   { color: #b28000; font-weight: bold; text-decoration: underline }


#exitMsg-screen {
	position: absolute;
	left: 0;
	top: 0;
	background: #000;
	display:none; 
}    