body {
	font-family: "Open Sans";
	font-weight: 400;
	font-style: normal;
	line-height: 1.6;
	font-size: 16px;
	color:#666666;
	background: #ffffff;
	margin: 0;
	padding: 0;
	
}
/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 5px;
	padding-left: 5px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
h2 {
	color:#999;
	font-family: "Open Sans";
	font-weight: 600;
	font-style: normal;
	font-size: 18px;
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	font-family: "Open Sans";
    font-size:10px;
	color: #666666;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
/* ~~ This fixed width container surrounds all other divs ~~ */
.container {
	position:relative;
    
	width: 380px;
	height:auto;
	top: 25px;
	background: #FFF;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
    border: 1px solid #999;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;

    -moz-box-shadow: 2px 2px 5px 2px #888;
    -webkit-box-shadow: 2px 2px 5px 2px #888;
    box-shadow: 2px 2px 5px 2px #888;
    
    filter: progid:DXImageTransform.Microsoft.Shadow(Strength=5, Direction=135, Color='#aaaaaa');

}

.containerMail {
	position:relative;
    
	width: 380px;
	height:auto;
	top: 25px;
	/*background: #FFF;
	margin: 0 auto 15px; 
    border: 1px solid #999;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;

    -moz-box-shadow: 2px 2px 5px 2px #888;
    -webkit-box-shadow: 2px 2px 5px 2px #888;
    box-shadow: 2px 2px 5px 2px #888;
    
    filter: progid:DXImageTransform.Microsoft.Shadow(Strength=5, Direction=135, Color='#aaaaaa');*/

}


.content {
	width: 380px;
	position:relative;
    
}
.mobileContainer {
	width: 320px;
	height:auto;
	background: #FFF;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}
.mobileContent {
	width: 320px;
	height:auto;
	position:relative;
}
#centerColumn
{
	position:relative;
	left:0px;
	padding: 10px 10px 10px 10px ;
	margin:65px auto 0px;
	width: 320px;
	height:auto;
	font-family: "Open Sans";
	font-size:12px;
	text-align:left;
}

#centerMailColumn
{
	position:relative;
	left:0px;
	padding: 10px 10px 10px 10px ;
	margin:40px auto 0px;
	width: 320px;
	height:auto;
	font-family: "Open Sans";
	font-size:12px;
	text-align:left;
}


#leftColumn{
	position:relative;
	left:0px;
    top: 38px;
	width:150px;
	padding:5px;
    float:left;
}
#title{
	position:relative;
	
	left: 0px;
	top: 0px;
	margin: 10px 10px 10px 20px;
	color:#666666;
	font-family: "Open Sans";
	font-size: 24px;
}
#mobileTitle{
	position:relative;
	text-align:center;
	left: 0px;
	top: 0px;
	margin: 10px 10px 0px 20px;
	color:#BBBBBB;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 24px;
}
#privacy{
	position:relative;
	left:400px;
	top: 0px;
	width: 90px;
    margin: 10px 10px 5px 0px;
	
}

.mobileContainer #privacy{
	position:relative;
	left:230px;
	top: 0px;
	width: 90px;
	
}
#privacy a{
	
	text-decoration:none;
}
#rightColumn {
	position:relative;
	
	padding: 10px 10px 20px 10px ;
	
	width: 360px;
    font-family: "Open Sans";
    font-weight: 400;
    font-style: normal;
    line-height: 1.6;
    font-size: 13px;
}
#sendButton{
	position:relative;
	margin: 5px 30px;
}
input[type="submit"] {
        font-family: "Open Sans";
    font-weight: 600;
    font-style: normal;
    line-height: 1.6;
    font-size: 14px;
    background-color:transparent;
    border:none;
    color:#777;
    cursor:pointer;
}
input[type=submit] {
    background: url(images/SubmitButton.png);
    border: 0;
    display: block;
    height: 50px;
    width: 50px;
        cursor:pointer;
}

#mailContactPic {
    position: absolute;
    top: -20px;
    left: -20px;
	background-image: url(images/MailGraySmall.png);
    background-repeat: no-repeat;
	width:80px;
	height:80px;
	display:block;
	cursor:pointer;
}
#mailContactPic.active{
    position: absolute;
    top: -20px;
    left: -20px;
	background-image: url(images/MailBlueSmall.png);
    background-repeat: no-repeat;
	width:80px;
	height:80px;
	display:block;
	cursor:pointer;
}
#buttonBG {
    width:280px;
    height:1px;
    background-color:#777;
    border:none;
    position:absolute;
    top:50px;
    left:40px;
}

#mailPic {
    position: absolute;
    top: 2px;
    left: 11px;
	background-image: url(images/MailGraySmall.png);
    background-repeat: no-repeat;
	width:80px;
	height:80px;
	display:block;
	cursor:pointer;
}
#mailPic.active{
    position: absolute;
    top: 2px;
    left: 11px;
	background-image: url(images/MailBlueSmall.png);
    background-repeat: no-repeat;
	width:80px;
	height:80px;
	display:block;
	cursor:default;
}
#facePic {
    position: absolute;
    top: 2px;
    left: 201px;
	background-image: url(images/FacebookGraySmall.png);
    background-repeat: no-repeat;
	width:80px;
	height:80px;
	display:block;
	cursor:pointer;
}
#facePic.active{
    position: absolute;
    top: 2px;
    left: 201px;
	background-image: url(images/FacebookBlueSmall.png);
    background-repeat: no-repeat;
	width:80px;
	height:80px;
	display:block;
	cursor:default;
}
#twitPic {
    position: absolute;
    top: 2px;
    left: 296px;
	background-image: url(images/TwitterGraySmall.png);
    background-repeat: no-repeat;
	width:80px;
	height:80px;
	display:block;
	cursor:pointer;
}
#twitPic.active{
    position: absolute;
    top: 2px;
    left: 296px;
	background-image: url(images/TwitterBlueSmall.png);
    background-repeat: no-repeat;
	width:80px;
	height:80px;
	display:block;
	cursor:default;
}
#inPic {
    position: absolute;
    top: 2px;
    left: 106px;
	background-image: url(images/LinkedInGraySmall.png);
    background-repeat: no-repeat;
	width:80px;
	height:80px;
	display:block;
	cursor:pointer;
}
#inPic.active{
    position: absolute;
    top: 2px;
    left: 106px;
	background-image: url(images/LinkedInBlueSmall.png);
    background-repeat: no-repeat;
	width:80px;
	height:80px;
	display:block;
	cursor:pointer;
}

#logo{
	position:relative;
	background-image:url(images/logo_blackstream.png);
	background-repeat:no-repeat;
	width:165px;
	height:40px;
	left: 25px;
	margin: 10px 0px 0px 0px;
	top: 0px;
	
}
#captchaBox{
	position:relative;
	font-family: "Open Sans";
	font-weight: 400;
	font-style: normal;
	line-height: 1.6;
	font-size: 16px;
	color:#666666;
}
 #captchaTable{
	 border: 1px solid #dfdfdf !important;
	 width:318px;
     position: relative;
     margin: 0 auto;
 }
 #recaptcha_image{
	 margin:8px 8px 2px 8px;
	 border: 1px solid #dfdfdf !important;
 }
 #imageText, #audioText{
	 margin: 0px 5px 5px 8px;
	 font-size: 13px;
 }
 #recaptcha_response_field{
	 margin-left:8px;
	 width:170px;
	 font-size: 14px;
	 padding:5px
 }
#captchaButtons{
	position:absolute;
	left:205px;
	top:90px;
}
    #captchaButtons img {
        display: block;
    }
#recaptcha_logo{
	position:absolute;
	left:235px;
	top:95px;
}
#privacyTerms{
	 margin: 0 0 5px 8px;
	 font-size: 10px;
}
#privacyTerms a{
	color:#0033FF;
	text-decoration:none;
}
#lowerSection{
	Position:relative;
}
#lblResult{
	padding:0px 0px 10px 0px;
	font-size: 12px;
}
#sendDoc {
padding: 5px;
margin: 10px auto;

}

   .recaptchatable .recaptcha_image_cell, #recaptcha_table {
    background-color:#fbfbfb  !important; 
  }
  
  #recaptcha_table {
    border-color: #d1d1d1 !important; 
  }
  
 

  textarea {
font-family: "Open Sans";
font-weight: 400;
font-style: normal;
line-height: 1.6;
font-size: 14px;
width: 307px;
padding: 5px;
margin-left: 0px;
resize:none;
}

input[type="text"],input[type="email"]{
	
width: 310px;
text-align: center;

padding: 5px;
font-size: 14px;
margin: 5px 0px;
border-style: solid;
border-color: #999999;
border-width: 0px 0px 1px 0px;
}
#recaptcha_response_field {
    border-width: 1px 1px 1px 1px;
}
label {
    margin-left:0px;
}
.mobileContent textarea {
	font-family:Arial,Verdana;
	width:294px;
}
.mobileContent input[type="text"],.mobileContent input[type="email"]{
	
width:296px;
}
#rightColumn label
{
	padding:10px 5px 5px 5px;
	margin:2px;
}
.validation-summary-errors 
{

	font-size: 12px;
	color: red;
	padding:5px;
position: relative;
top: 100px;
left:40px;

}
.mobileContainer #captchaBox{
	position:relative;
	width:320px;
	height:auto;
	left: 0px;
	top: 0px;
}
.mobileContainer #lowerSection{
	Position:relative;
	margin-top:10px;
}
.field-validation-error
{
	font-size: 12px;
	color: red;
    margin-left: 10px;
}
::-webkit-input-placeholder {
   color: #bbbbbb;
   letter-spacing: 0.1125em;
}

:-moz-placeholder { /* Firefox 18- */
   color: #bbbbbb; 
   letter-spacing: 0.1125em;
}

::-moz-placeholder {  /* Firefox 19+ */
   color: #bbbbbb;  
   letter-spacing: 0.1125em;
}

:-ms-input-placeholder {  
   color: #bbbbbb; 
   letter-spacing: 0.1125em;
}
.placeholder {
   color: #bbbbbb; 
   letter-spacing: 0.1125em;

}