/* General Demo Style */
@import url(https://fonts.googleapis.com/css?family=Lato:300,400,700);

html { height: 100%; }

body {
    font-family: 'Lato', Calibri, Arial, sans-serif;
    font-weight: 300;
    font-size: 15px;
    color: #333;
    -webkit-font-smoothing: antialiased;
    overflow-y: scroll;
    overflow-x: hidden;
}

a {
	color: #555;
	text-decoration: none;
}

.overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-color: rgba(0,0,0,0.7); /*dim the background*/
}

.container {
		height: 100%;
		width: 100%;
		position: absolute;
		right: 0;
		background:#fff url("../imgs/jacobs-architecture-group-bkg.jpg") repeat;
		-webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		z-index: -1;
		opacity: .6;
}

.clr {
	clear: both;
	padding: 0;
	height: 0;
	margin: 0;
}

.main {
	width: 90%;
	margin: 0 auto;
	position: relative;
}

.container > header {
	margin: 10px;
	padding: 20px 10px 10px 10px;
	position: relative;
	display: block;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
    text-align: center;
}

.container > header h1 {
	font-size: 30px;
	line-height: 38px;
	margin: 0;
	position: relative;
	font-weight: 300;
	color: #666;
	text-shadow: 0 1px 1px rgba(255,255,255,0.6);
}

.container > header h2 {
	font-size: 24px;
	font-weight: 300;
	margin: 0;
	padding: 15px 0 5px 0;
	color: #666;
	font-family:'telegrafico';
	font-style: italic;
	text-shadow: 0 1px 1px rgba(255,255,255,0.6);
	max-width: 100%;
    height: auto;
    width: auto\9; /* ie8 */
}


/* GLOBALS */

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

.form-4 {
    /* Size and position */
    width: 250px;
	min-height:700px;
    padding: 0px 10px;
    position: relative;

    /* Font styles */
    font-family: 'Raleway', 'Lato', Arial, sans-serif;
    color: white;
    text-shadow: 0 2px 1px rgba(0,0,0,0.3);
}

.form-4 header {
	position:relative;
	padding:0;
}


.form-4 h1 {
    font-size: 22px;
    padding-bottom: 10px;
}

.form-4 h3 {
    font-size: 14px;
    padding-bottom: 5px;
}

.form-4 input[type=text],
.form-4 input[type=file],
.form-4 input[type=password],
.form-4 textarea,
.form-4 select {
    /* Size and position */
    width: 100%;
    padding: 8px 4px 8px 10px;
    margin-bottom: 10px;

    /* Styles */
    border: 1px solid #4e3043; /* Fallback */
    border: 1px solid rgba(78,48,67, 0.8);
    background: rgba(0,0,0,0.15);
    border-radius: 2px;
    box-shadow: 
        0 1px 0 rgba(255,255,255,0.2), 
        inset 0 1px 1px rgba(0,0,0,0.1);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;

    /* Font styles */
    font-family: 'Raleway', 'Lato', Arial, sans-serif;
    color: rgba(255,255,255,1);
    font-size: 13px;
}

/* Placeholder style (from http://stackoverflow.com/questions/2610497/change-an-inputs-html5-placeholder-color-with-css) */

.form-4 input::-webkit-input-placeholder,
.form-4 textarea::-webkit-input-placeholder,
.form-4 select::-webkit-input-placeholder {
    color: rgba(255,255,255, 1.8); /*rgba(37,21,26,0.5);*/
    text-shadow: 0 1px 0 rgba(37,21,26,0.5); /*rgba(255,255,255,0.15);*/
}

.form-4 input:-moz-placeholder,
.form-4 textarea:-moz-placeholder,
.form-4 select:-moz-placeholder {
    color: rgba(37,21,26,0.5);
    text-shadow: 0 1px 0 rgba(255,255,255,0.15);
}

.form-4 input:-ms-input-placeholder,
.form-4 textarea:-ms-input-placeholder,
.form-4 select:-ms-input-placeholder {
    color: rgba(255,255,255,0.95);
    text-shadow: 0 1px 0 rgba(255,255,255,0.15);
}

.form-4 input[type=text]:hover,
.form-4 input[type=file]:hover,
.form-4 input[type=password]:hover,
.form-4 textarea:hover,
.form-4 select:hover,
.button {
    border-color: #333;
}

.form-4 input[type=text]:focus,
.form-4 input[type=file]:focus,
.form-4 input[type=password]:focus,
.form-4 input[type=submit]:focus,
.form-4 input[type=button]:focus,
.form-4 textarea:hover,
.form-4 select:hover,
.button {
    box-shadow: 
        0 1px 0 rgba(255,255,255,0.2), 
        inset 0 1px 1px rgba(0,0,0,0.1),
        0 0 0 3px rgba(255,255,255,0.15);
    outline: none;
}

/* Fallback */
.no-boxshadow .form-4 input[type=text]:focus,
.no-boxshadow .form-4 input[type=file]:focus,
.no-boxshadow .form-4 input[type=password]:focus,
.no-boxshadow .form-4 textarea:focus,
.no-boxshadow .form-4 select:focus {
    outline: 1px solid white;
}

.form-4 input[type=submit],
.form-4 input[type=button],
.button {
    /* Size and position */
    width: 100%;
    padding: 8px 5px;
    margin-bottom: 10px;
	
    /* Styles */
    background: #634056;
    background: -moz-linear-gradient(rgba(99,64,86,0.5), rgba(76,49,65,0.7));
    background: -ms-linear-gradient(rgba(99,64,86,0.5), rgba(76,49,65,0.7));
    background: -o-linear-gradient(rgba(99,64,86,0.5), rgba(76,49,65,0.7));
    background: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(99,64,86,0.5)), to(rgba(76,49,65,0.7)));
    background: -webkit-linear-gradient(rgba(99,64,86,0.5), rgba(76,49,65,0.7));
    background: linear-gradient(rgba(99,64,86,0.5), rgba(76,49,65,0.7));    
    border-radius: 5px;
    border: 1px solid #4e3043;
    box-shadow: inset 0 1px rgba(255,255,255,0.4), 0 2px 1px rgba(0,0,0,0.1);
    cursor: pointer;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;

    /* Font styles */
    color: white;
    text-shadow: 0 1px 0 rgba(0,0,0,0.3);
    font-size: 16px;
    font-weight: bold;
    font-family: 'Raleway', 'Lato', Arial, sans-serif;
}

.form-4 input[type=submit]:hover,
.form-4 input[type=button]:hover,
.button {
    box-shadow: 
        inset 0 1px rgba(255,255,255,0.2), 
        inset 0 20px 30px rgba(99,64,86,0.5);
}

/* Fallback */
.no-boxshadow .form-4 input[type=submit]:hover,
.no-boxshadow .form-4 input[type=button]:hover,
.no-boxshadow .button {
    background: #594642;
}

.form-4 label {
    display: none;
    padding: 0 0 5px 2px;
    cursor: pointer;
}

.form-4 label:hover ~ input {
    border-color: #333;
}

.no-placeholder .form-4 label {
    display: block;
}

.button {
	padding: 8px 59px;
}

#myDiv 
{
	height:200px;
	width:200px;
	/* Styles */
    border: 1px solid #4e3043; /* Fallback */
    border: 1px solid rgba(78,48,67, 0.8);
    background: rgba(0,0,0,0.15);
    border-radius: 2px;
    box-shadow: 
        0 1px 0 rgba(255,255,255,0.2), 
        inset 0 1px 1px rgba(0,0,0,0.1);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;

    /* Font styles */
    font-family: 'Raleway', 'Lato', Arial, sans-serif;
    color: rgba(255,255,255,1);
    font-size: 13px;
}
#myDiv img
{
	max-width:100%; 
	max-height:100%;
	margin:auto;
	display:block;
}

@font-face {
    font-family: "telegrafico";
    src: url(../font/telegrafico.ttf) format("truetype");
}