﻿/*sample base style for drop in box #1*/
div.dropinbox{
width:695px;
height:290px;
border:1px solid black;
padding:5px;
background:#e7e7e7;
}

/*sample base style for drop in box #2*/
div.dropinboxaltstyle{
width:695px;
height:290px;
padding:10px;
background:#e7e7e7;
-webkit-border-radius:8px;
-moz-border-radius:8px;
border-radius:8px;
font-size:small
}

/* Basic CSS3 shadow */
.standardshadow{
-webkit-box-shadow: 5px 5px 10px rgba(95, 95, 95, 0.5);
-moz-box-shadow: 5px 5px 10px rgba(95, 95, 95, 0.5);
box-shadow: 5px 5px 10px rgba(95, 95, 95, 0.5);
}


/* Some more "radical" CSS shadows. See http://nicolasgallagher.com/css-drop-shadows-without-images/demo/ */
.drop-shadow{
-webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
-moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
box-shadow:0 1px 3px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}

.drop-shadow:before, .drop-shadow:after{
content:"";
position:absolute; 
z-index:-2;
}

.lifted{
-moz-border-radius:4px; 
border-radius:4px;
}
        
.lifted:before, .lifted:after{ 
bottom:15px;
left:10px;
width:50%;
height:20%;
max-width:300px;
-webkit-box-shadow:0 15px 10px rgba(0, 0, 0, 0.7);   
-moz-box-shadow:0 15px 10px rgba(0, 0, 0, 0.7);
box-shadow:0 15px 10px rgba(0, 0, 0, 0.7);
-webkit-transform:rotate(-3deg);    
-moz-transform:rotate(-3deg);   
-ms-transform:rotate(-3deg);   
-o-transform:rotate(-3deg);
transform:rotate(-3deg);
}
        
.lifted:after{
right:10px; 
left:auto;
-webkit-transform:rotate(3deg);   
-moz-transform:rotate(3deg);  
-ms-transform:rotate(3deg);  
-o-transform:rotate(3deg);
transform:rotate(3deg);
}

input[type="text"]
{
	width:233px;
	height:29px;
	padding-left:5px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	color:#111;
	border:1px solid #fdf0c6;
	margin-bottom:3px;
}

select
{
	width:239px;
	height:27px;
	padding-left:5px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	color:#111;
	border:1px solid #fdf0c6;
	margin-bottom:3px;
}

textarea
{
	width:233px;
	height:42px;
	padding-left:5px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	padding-top:5px;
	color:#111;
	border:1px solid #fdf0c6;
	margin-bottom:3px;
}

input[type="submit"]
{
	font-family:Arial, Helvetica, sans-serif;
	font-size:16px;
	color:#FFF;
	padding-left:7px;
	text-align:left;
	background:url(images/submit-btn.jpg) no-repeat;
	width:105px;
	height:32px;
	border:none;
	font-weight:bold;
	margin-top:3px;
}



.agree
{
	font-family:Arial, Helvetica, sans-serif;
	font-size:10px;
	padding:3px 0px 3px 6px;
	
}