/*!
 * Adapted from http://tangledindesign.com/how-to-create-a-contact-form-using-html5-css3-and-php/
 */

 /* Want a blue H3 here for the emai l us title */
h3.blue {
	color: #669FFf;
}

/* Block = get everything in a line */
label {
	text-align: left;    
    display:block;
    margin-top:20px;
    letter-spacing:2px;
}

/* Style the text boxes */
input, textarea {
	width:100%;
	height:40px;
	background:#FAFAFA;
	border:1px solid #A0A0A0;
	padding:10px;
	margin-top:3px;
	font-size:0.9em;
	color:#3a3a3a;
	-moz-border-radius:5px;
    -webkit-border-radius:5px;
    border-radius:5px;
 }

textarea {
	height:213px;
	background: #FAFAFA;
}

input:focus, textarea:focus {
    border:1px solid #669FFf;
}
    
/*Now overriding the 'input' for anything with ID submit (the button) so it isn;t a standard input point*/
#submit {
    width:127px;
    height:38px;
    background: #669FFf;
    color: white;
    border: none;
    margin-top:20px;
    cursor:pointer;
}

#submit:hover {
	    opacity:.9;
}

#map-container { 
	height: 400px;
}

img.img-mine{
	margin-right: 10px;
	margin-bottom: 10px;
	float:left;
}

.jumbotron a,
.jumbotron a:link {
    color: #C1C1C1;
}
.jumbotron a:visited {
    color: #C1C1C1;
}
.jumbotron a:hover {
    color: #525252;
}

.ul li {
text-align: left;}

ul {
    list-style-position: inside;
    padding-left:0;
}

