* {
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	-moz-font-smoothing:antialiased;
	-o-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}

@font-face{
  	font-family: 'Segscript';
  	src: url('../font/ssc.ttf') format('truetype'), url('../font/sscb.ttf') format('truetype');	
}

body{
	background-color:#f4f4f4;
	color:#555;
	font-family: 'Open Sans', sans-serif;
	font-size:16px;
	line-height:1.6em;
	margin:0;
}

.container{
	width:80%;
	margin:auto;
	overflow:hidden;
}

.script-font{
	font-family: 'Segscript';
}

.caption {
    /* Make the caption a block so it occupies its own line. */
    display: block;
    padding: 20px;
    text-align: center;
}

#main-header{
	/* font-family: 'Segoe Script', sans-serif;*/
	font-size: 24px;
	background-color:#f78362;
	color:#fff;
}

#navbar{
	background-color:#333;
	color:#fff;
}

#navbar ul{
	padding:0;
	list-style: none;
}

#navbar li{
	display:inline;
}

#navbar a{
	color:#fff;
	text-decoration: none;
	font-size:18px;
	padding-right:15px;
}

#stack-list{
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}

#stack-list ul{
	list-style: none;
}

#stack-list li{
	display:inline-block;
}

#stack-list a{
	text-decoration: none;
	padding-right: 20px;
}

#showcase{
	background-image:url('../images/mountains.jpg');
	background-position:50% 85%;
	min-height:300px;
	margin-bottom:30px;
	text-align: center;
}

#showcase h1{
	color:#fff;
	font-size:50px;
	line-height: 1.6em;
	padding-top:30px;
}

#main{
	float:left;
	width:60%;
	padding:0 30px;
	box-sizing: border-box;
}

#sidebar{
	float:right;
	width:40%;
	background: #333;
	color:#fff;
	padding:10px;
	box-sizing: border-box;
}

#main-footer{
	background: #333;
	color:#fff;
	text-align: center;
	padding:20px;
	margin-top:40px;
}

@media(max-width:600px){
	#main{
		width:100%;
		float:none;
	}

	#sidebar{
		width:100%;
		float:none;
	}
}
/* css for form.html */

fieldset {
	border: medium none !important;
	margin: 0 0 10px;
	min-width: 100%;
	padding: 0;
	width: 100%;
}

/* form classes & id's */
.error {
	font-style: italic;
	font-weight: 300;
    	font-size: 13px;
    	color: red;
}

.result {
    	color: #ff9966;
    	text-align: center;
    	font-weight: bold;
    	font-size: 14px;
}

#contact input[type="text"], #contact input[type="email"], #contact textarea, #contact button[type="submit"] { font:400 12px/16px "Open Sans", Helvetica, Arial, sans-serif; }

#contact {
	float:right;
	width:40%;
	box-sizing: border-box;
	background:#F9F9F9;
	padding:0px;
	margin:0 auto; /*10px 0;*/
}

#contact h3 {
	color: #F96;
	display: block;
	font-size: 30px;
	font-weight: 400;
}

#contact h4 {
	margin:5px 0 15px;
	display:block;
	font-size:13px;
}

#contact input[type="text"], #contact input[type="email"], #contact textarea {
	width:100%;
	box-sizing: border-box;
	border:1px solid #CCC;
	background:#FFF;
	margin:5px 0 0px 0;
	padding:10px;
}

#contact input[type="text"]:hover, #contact input[type="email"]:hover, #contact textarea:hover {
	-webkit-transition:border-color 0.3s ease-in-out;
	-moz-transition:border-color 0.3s ease-in-out;
	transition:border-color 0.3s ease-in-out;
	border:1px solid #AAA;
}

#contact textarea {
	height:100px;
	max-width:100%;
  	resize:none;
}

#contact button[type="submit"] {
	cursor:pointer;
	width:100%;
	border:none;
	background:#f78362;
	color:#333;
	margin:0 0 5px;
	padding:10px;
	font-size:15px;
}

#contact button[type="submit"]:hover {
	background:#ededed;
	color:#aaa;
	-webkit-transition:background 0.3s ease-in-out;
	-moz-transition:background 0.3s ease-in-out;
	transition:background-color 0.3s ease-in-out;
}

#contact button[type="submit"]:active { box-shadow:inset 0 1px 3px rgba(0, 0, 0, 0.5); }

#contact input:focus, #contact textarea:focus {
	outline:0;
	border:1px solid #999;
}
::-webkit-input-placeholder {
 color:#888;
}
:-moz-placeholder {
 color:#888;
}
::-moz-placeholder {
 color:#888;
}
:-ms-input-placeholder {
 color:#888;
}
