/* ----------------------------	*/
/*				*/
/*       OVERLAY STYLES		*/
/*				*/
/* ----------------------------	*/


/* START CSS FOR WIDTHS AND OVERLAY LOCATION */

/* OUTER OPAQUE GRAY BACKGROUND */

.SOLbackground {
	width: 100%;
	height: 100%;
	position:fixed;
	top:0;
	left:0;
	z-index: 1001;
	background-color: #999999;
	opacity:0.70;
	-moz-opacity:0.70;
	filter: alpha(opacity=70);
	}
  
.SOLselect {
	position: absolute;
	top: 15%;
	left: 50%;
	width: 100%;
	height: auto;
	margin-left: -50%;
	margin-top: 0px;
	z-index: 1002;
	text-align: center;
	}

/* IMAGES */

img.SOLimage, img.SOLcloseimage {
	max-width: 100%;
	height: auto;
	opacity: 1.0;
	-moz-opacity:1.0;
	filter: alpha(opacity=100);
	border: #999999 0px solid;
	display: block; margin: 0 auto;
	}

.SOLinner {
	line-height: normal;
	padding-top: 0px;
	}

/* MAIN COLORED CENTER BOX */

.SOL-box {
	position: relative;
	width: 60%;
	max-width: 600px;
	margin: 0 auto;
	padding: 0px;
	border: #000000 15px solid;
	box-sizing: border-box;
	text-align: center;
	background-color: rgba(5,50,83,0.99);
	background: -webkit-linear-gradient(rgba(5,50,83,0.99), rgba(101,222,92,0.99)); /* For Safari 5.1 to 6.0 */
	background: -o-linear-gradient(rgba(5,50,83,0.99), rgba(101,222,92,0.99)); /* For Opera 11.1 to 12.0 */
	background: -moz-linear-gradient(rgba(5,50,83,0.99), rgba(101,222,92,0.99)); /* For Firefox 3.6 to 15 */
	background: linear-gradient(rgba(5,50,83,0.99), rgba(104,195,92,0.99)); /* Standard Syntax */
/* CORNER ROUNDING */
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	-khtml-border-radius: 6px;
	border-radius: 6px;
		}


/* CLOSE BUTTON */

.SOLclose {
	position: absolute;
	top: -15px;
	left: -15px;
	width: 30px;
	height: 30px;
	margin-left: 0px;
	margin-top: 0px;
	padding: 0px;
	z-index: 1003;
	text-align: center;
	background-color: #CC0000;
	border: #FFFFFF 3px solid;
/* CORNER ROUNDING */
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	-khtml-border-radius: 0px;
	border-radius: 0px;
	}


/* TEXT */

.selecttitle	{ color: #FFFFFF; font-size: 30px; font-weight: normal; }
.selecttitle-black	{ color: #000000; font-size: 35px; font-weight: bold; }
.selecttitle-red	{ color: #ff0000; font-size: 35px; font-weight: bold; }
.selecttitle-yellow	{ color: #ffff00; font-size: 32px; font-weight: bold; }
.selectnote	{ color: #ffffff; font-size: 35px; font-weight: bold; }
.selectnote1	{ color: #ffffff; font-size: 22px; font-weight: bold; }
.selectsubtitle	{ color: #ffffff; font-size: 35px; font-weight: bold; }
.selectsubtitle1	{ color: #ffffff; font-size: 28px; font-weight: bold; }
.SOL-notes	{
		color: #000000;
		font-size: 16px;
		font-weight: normal;
		margin-top: 6px;
		padding-top: 6px;
		border-top: #CCFFCC 1px solid;
		}

/* LINK COLORS */

.SOL-box a:link, .SOL-box a:visited, .SOL-box a:active 
				{ color: #ffffff; text-decoration: none; }
.SOL-box a:hover		{ color: #ffff00; text-decoration: none; }






/***************
START Media Queries #1 - RESPONSIVE FOR SMALLER MOBILE SCREENS (1200 DEFAULT)
***************/
@media handheld and (max-width: 1200px),
   screen and (max-device-width: 1200px),
   screen and (max-width: 1200px) 
	{


.SOL-box { width: 85%; }


	}
/***************
END Media Queries #1
***************/






/***************
START Media Queries #2 - RESPONSIVE FOR SMALLER MOBILE SCREENS (652 DEFAULT)
***************/
@media handheld and (max-width: 652px),
   screen and (max-device-width: 652px),
   screen and (max-width: 652px) 
	{


.SOL-box { width: 96%; }

.selecttitle	{ font-size: 22px; }

.selectnote	{ font-size: 16px; }

.selectsubtitle	{ font-size: 20px; }

.SOL-notes	{ font-size: 12px; }


	}
/***************
END Media Queries #2
***************/


