@charset "UTF-8";
.tryWell {
	background-color: #CCC;
	background: -moz-linear-gradient(right top, #cccccc 0%, #ffffff 50%, #cccccc 100%);
	background: -webkit-linear-gradient(right top, #cccccc 0%, #ffffff 50%, #cccccc 100%);
	background: -webkit-gradient(linear, right top, left bottom, color-stop(0, #cccccc), color-stop(0.5, #ffffff), color-stop(1, #cccccc));
	background: -o-linear-gradient(right top, #cccccc 0%, #ffffff 50%, #cccccc 100%);
	background: -ms-linear-gradient(right top, #cccccc 0%, #ffffff 50%, #cccccc 100%);
	background: linear-gradient(right top, #cccccc 0%, #ffffff 50%, #cccccc 100%);
	margin-left: 10px;
	margin-right: 50px;
	margin-top: 30px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px 6px #666;
	-moz-box-shadow: inset 0 0 6px 6px #666;
	box-shadow: inset 0 0 6px 6px #666;
	padding-bottom: 20px;
}
.tryWell p {
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 0;
	font-size: 80%;
	text-align: justify;
}
.tryWell p.first {
	margin-top: 0;
	padding-top: 20px;
	padding-bottom: 0;
}
.tryWell p.second {
	padding-top: 0;
	padding-bottom: 6px;
}
.tryBtn {
	color: #FFF;
	display: block;
	font-size: 90%;
	text-align: center;
	letter-spacing: 0.2em;
	border: #FFF solid 2px;
	margin-bottom: 4px;
	margin-left: auto;
	margin-right: auto;
	color: #FFF;
	overflow: hidden;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	-webkit-box-shadow: #000 0 0 8px;
	-moz-box-shadow: #000 0 0 8px;
	box-shadow: #000 0 0 8px;
	background-color: #8e0c07;
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(180, 18, 11)), to(rgb(104, 6, 3)));
	background-image: -webkit-linear-gradient(top, rgb(180, 18, 11), rgb(104, 6, 3));
	background-image: -moz-linear-gradient(top, rgb(180, 18, 11), rgb(104, 6, 3));
	background-image: -o-linear-gradient(top, rgb(180, 18, 11), rgb(104, 6, 3));
	background-image: -ms-linear-gradient(top, rgb(180, 18, 11), rgb(104, 6, 3));	
	background-image: linear-gradient(top, rgb(180, 18, 11), rgb(104, 6, 3));
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#b4120b', EndColorStr='#680603');
	text-shadow: #000 1px 1px 1px;
}
.tryBtn a:link, .tryBtn a:visited {
	color: #FFF;
	padding-top:8px;
	padding-bottom:6px;
	display: block;
	text-decoration: none;
}
.tryBtn a:hover, .tryBtn a:active, .tryBtn a:focus {
	color: #FFF;
	background-color: #b31312;
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(228, 29, 26)), to(rgb(131, 10, 10)));
	background-image: -webkit-linear-gradient(top, rgb(228, 29, 26), rgb(131, 10, 10));
	background-image: -moz-linear-gradient(top, rgb(228, 29, 26), rgb(131, 10, 10));
	background-image: -o-linear-gradient(top, rgb(228, 29, 26), rgb(131, 10, 10));
	background-image: -ms-linear-gradient(top, rgb(228, 29, 26), rgb(131, 10, 10));
	background-image: linear-gradient(top, rgb(228, 29, 26), rgb(131, 10, 10));
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#e41d1a', EndColorStr='#830a0a');
	text-shadow: #000 1px 1px 1px;
}
p.form {
	font-size: 100%;
	margin-top: 12px;
	margin-bottom: 0;
	margin-left:0;
	margin-right:8px;
	padding: 0 8px;
}
/*#try input {
	width: 65%;
}*/
#overlay {
	background-color: #CCC;
	background: -moz-linear-gradient(right top, #cccccc 0%, #ffffff 50%, #cccccc 100%);
	background: -webkit-linear-gradient(right top, #cccccc 0%, #ffffff 50%, #cccccc 100%);
	background: -webkit-gradient(linear, right top, left bottom, color-stop(0, #cccccc), color-stop(0.5, #ffffff), color-stop(1, #cccccc));
	background: -o-linear-gradient(right top, #cccccc 0%, #ffffff 50%, #cccccc 100%);
	background: -ms-linear-gradient(right top, #cccccc 0%, #ffffff 50%, #cccccc 100%);
	background: linear-gradient(right top, #cccccc 0%, #ffffff 50%, #cccccc 100%);
    color:#efefef;
	border: #fff solid 4px;
    height:280px;
	border-radius: 16px;
	-moz-box-shadow: inset #000 0 0 10px;
	-webkit-box-shadow: inset #000 0 0 10px;
	-box-shadow: inset #000 0 0 10px;
}
/* container for external content. uses vertical scrollbar, if needed */
div.contentWrap {
    height:280px;
    overflow-y:auto;
}
/* the overlayed element */
.apple_overlay {

    /* initially overlay is hidden */
    display:none;

    /* growing background image */
    background-image:url(../_images/white.png);

    /*
      width after the growing animation finishes
      height is automatically calculated
      */
    width:400px;

    /* some padding to layout nested elements nicely  */
    padding:35px;

    /* a little styling */
    font-size:11px;
}

/* default close button positioned on upper right corner */
.apple_overlay .close {
    background-image:url(../_images/close2.png);
    position:absolute; right:-12px; top:-14px;
    cursor:pointer;
    height:26px;
    width:26px;
}
/* get rid of those system borders being generated for A tags */
a:active {
    outline:none;
}
:focus {
    -moz-outline-style:none;
}
#try #submit {
	width: 180px;
	margin-left:104px;
}
