/*Alert Box CSS
	Copyright 2007 Studio Gecko Interactive
	Author: Andrei Gonzales
	Will Only Appear If The sgdetect javascript file is loaded and activated
	The browser-specific transparency CSS code does not validate
	To validate this, browser opacity code must be ommitted
	Studio Gecko: http://www.studio-gecko.com
	This script is covered under the Creative Common's licence.
	Feel free to use and share this script on your website(s),
	but please do not resell nor claim this script as your own.
	If you are to modify this script, please do not state that
	it is still the work of Studio Gecko Interactive.
	However, we would appreciate a link back to the original file
*/

div#alert {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 1000;
	height: 100%;
	width: auto;
	margin: auto;
	background: #000000;
	border: #777777 solid 1px;
	padding: 40px;
	text-align: center;
	color: #FFFFFF;
	font-size: 10px;
	line-height: 2em;
	overflow: hidden;
	/* browser opacity code starts here */
	opacity: 0.9; 
	-moz-opacity: 0.9; 
	-khtml-opacity: 0.9; 
	filter: alpha(opacity=90); 
	/* browser opacity code ends here */
}

div#alertbox {
	margin: auto;
	margin-top: 10%;
	padding: 40px;
	padding-top: 20px;
	padding-bottom: 60px;
	height: 230px;
	width: 500px;
	border: #FFFFFF solid 1px;
}

div#alertbox p {
	font-size: 1.1em;
	color: #FFFFFF;
	margin-bottom: 10px;
}

h3#upgrade {
	font-size: 1.6em;
	color: #FFCC00;
	margin-bottom: 10px;
}

span#list_title {
	font-size: 1.2em;
	font-weight: bold;
	color: #FFFFFF;
}

a.suggest, a.suggest:link, a.suggest:visited {
	font-size: 1.1em;
	color: #FFFFFF;
	text-decoration: none;
}

a.suggest:active, a.suggest:hover {
	font-size: 1.1em;
	color: #FFFFFF;
	text-decoration: underline;
}

div#alert ul {
	margin-bottom: 15px;
}

a#close, a#close:link, a#close:visited {
	font-size: 1.2em;
	font-weight: bold;
	color: #FFFFFF;
	background: #000000;
	border: #FFFFFF 1px solid;
	padding: 3px 14px 3px 14px;
	line-height: 2em;
	margin-bottom: 10px;
}

a#close:active, a#close:hover {
	font-size: 1.2em;
	font-weight: bold;
	color: #FFCC00;
	background: #000000;
	border: #FFCC00 1px solid;
	padding: 3px 14px 3px 14px;
	line-height: 2em;
	margin-bottom: 10px;
}
