@import url("reset.css");



/**************************************************************************
***************************** = FONTS = *****************************
**************************************************************************/

@font-face {
    font-family: 'gs_reg';
    src: url('../fonts/omnes_girlscouts-regular-webfont.eot');
    src: url('../fonts/omnes_girlscouts-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/omnes_girlscouts-regular-webfont.woff2') format('woff2'),
         url('../fonts/omnes_girlscouts-regular-webfont.woff') format('woff'),
         url('../fonts/omnes_girlscouts-regular-webfont.ttf') format('truetype'),
         url('../fonts/omnes_girlscouts-regular-webfont.svg#gs_reg') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'opt_reg';
    src: url('../fonts/opt_reg-webfont.eot');
    src: url('../fonts/opt_reg-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/opt_reg-webfont.woff2') format('woff2'),
         url('../fonts/opt_reg-webfont.woff') format('woff'),
         url('../fonts/opt_reg-webfont.ttf') format('truetype'),
         url('../fonts/opt_reg-webfont.svg#opt_reg') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'traj_reg';
    src: url('../fonts/trajanpro-regular-webfont.eot');
    src: url('../fonts/trajanpro-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/trajanpro-regular-webfont.woff2') format('woff2'),
         url('../fonts/trajanpro-regular-webfont.woff') format('woff'),
         url('../fonts/trajanpro-regular-webfont.ttf') format('truetype'),
         url('../fonts/trajanpro-regular-webfont.svg#traj_reg') format('svg');
    font-weight: normal;
    font-style: normal;
}


span.gs_reg { 
	font-family: 'gs_reg', Helvetica, Arial, sans-serif; 
}

span.opt_reg {
	letter-spacing:.0em; 
	font-family: 'opt_reg', Arial, Helvetica, sans-serif; 
	text-transform:uppercase;
	font-size:22px;
}

span.traj_reg {
	letter-spacing:.25em; 
	font-family: 'traj_reg', Arial, Helvetica, sans-serif; 
	text-transform:uppercase;
	font-size:48px;
	color:#ffffff;
	font-weight:normal;
	line-height: 60px;
}


/**************************************************************************
***************************** = BODY = *****************************
**************************************************************************/

body {
	background: repeat top #ffffff;
	padding:0px;
	margin:0px;
	font-family: Arial, Helvetica, sans-serif; 
	font-weight: normal; 
	font-size: 17px;
	color: #1d1d1d;
	min-width: 850px;
	text-align: center;
	overflow: scroll;
	-webkit-overflow-scrolling: touch;
}

div {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;	
}

table {
	padding:0px;
	border:0px;
	border-spacing:0px;
}

td {
	vertical-align:middle;
}

p {
	margin:0;
	text-align:left;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	font-size:18px;	
	/* text-shadow: -2px -2px #fbeeb7; */
	line-height:24px;
	font-size:16px; 
	font-family: 'gs_reg', Arial, Helvetica, sans-serif; 
	color:#1d1d1d;
	letter-spacing:.03em;
}

p+p {
	padding: 15px 0px 0px 0px;
}

hr {
	padding: 0;
    border: none;
    border-top: medium double #b9b9b9;
    color: #b9b9b9;
    text-align: center;
	margin:25px 0px 25px 0px;
}

div.vr {
	padding: 0;
    border: none;
    border-right: 1px dotted #b9b9b9;
    color: #b9b9b9;
    text-align: center;
	height:200px;
	margin: 0px 10px 0px 10px;
}


a {
	color:#7f1111;
	text-decoration:none;
}

/**************************************************************************
***************************** = FORM = *****************************
**************************************************************************/

input[type=text], input[type=password], textarea {
	max-width: 100%;
	width: 100%;
	height: 42px;
	background: #efefef;
	border: 1px solid #acacac;
	font-family: 'gs_reg', Helvetica, Arial, sans-serif;
	font-size: 14px;
	color: #1d1d1d;
	text-transform:uppercase;
	padding: 0px 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	min-width:50px;
	
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px; 
	-khtml-border-radius: 5px; 
	
    -moz-transition: all .2s linear;
    -webkit-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;	
}

input[type=text]:focus, input[type=password], textarea:focus {
	color:#1d1d1d;
	-webkit-box-shadow:0 0 6px #7f1111;
	-moz-box-shadow:0 0 6px #7f1111;
	box-shadow:0 0 6px #7f1111;
	outline:0;
	
	-moz-transition: all .2s linear;
	-webkit-transition: all .2s linear;
	-ms-transition: all .2s linear;
	-o-transition: all .2s linear;
	transition: all .2s linear;	
}

input[type=submit], div.button { 
	width: 100%;
	font-size: 14px;
	line-height:40px;
	background-color: #7f1111;
	color: #ffffff;
	border: 0;
	-webkit-appearance: none;
	-webkit-border-radius: 0;
	font-family: 'gs_reg', Helvetica, Arial, sans-serif;
	font-weight:normal;
	text-align:center;
	vertical-align:middle;
	margin:auto;
	text-decoration:none;
	text-transform:uppercase;
	
    -moz-transition: all .2s linear;
    -webkit-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;	
}

input[type=submit]:hover, div.button:hover {
	background-color: #b42b2b;
	cursor: pointer;	
	
    -moz-transition: all .2s linear;
    -webkit-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;	
}

.form_select select {
	background: #efefef;
	width: 100%;
	padding: 12px;
	font-family: 'gs_reg', Helvetica, Arial, sans-serif;
	font-size: 14px;
	line-height: 18px;
	border: 1px solid #acacac;
	text-transform:uppercase;
	border-radius: 0;
	-webkit-appearance: none;
	color: #1d1d1d;	
	
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px; 
	-khtml-border-radius: 5px; 
   }
   
.form_select {
   width: 100%;
   overflow: hidden;
   border: 0px;
 }

table.form_wrap {
	width:100%;	
	font-size:17px;
	margin:25px 0px 0px 0px;
}

table.form_wrap td {
	padding-bottom:10px;
}

td.form_label {
	font-family: 'gs_reg', Helvetica, Arial, sans-serif;
	font-size: 14px;
	color:#1d1d1d;
	line-height: 40px;
	text-align:center;
	vertical-align:middle;
	
}

td.form_input {
	text-align:left;
}

td.form_break {
	width:10px;
}


/**************************************************************************
***************************** = STYLES = *****************************
**************************************************************************/

.bg_intro {
	background: url(../../images/layout/bg_lodge2.jpg) no-repeat center;
	background-attachment:fixed;
    -webkit-background-size: 100%; 
    -moz-background-size: 100%; 
    -o-background-size: 100%; 
    background-size: 100%; 
    -webkit-background-size: cover; 
    -moz-background-size: cover; 
    -o-background-size: cover; 
    background-size: cover; 
	width: 100%;
	height: 80%;
	z-index: 100;
	padding: 40px 0px 40px 0px;
	position:relative;
	overflow:hidden;
	box-sizing: content-box;
}

.bg_rsvp {
	background: url(../../images/layout/bg_mountain3.jpg) no-repeat center; 
	background-attachment:fixed;
    -webkit-background-size: 100%; 
    -moz-background-size: 100%; 
    -o-background-size: 100%; 
    background-size: 100%; 
    -webkit-background-size: cover; 
    -moz-background-size: cover; 
    -o-background-size: cover; 
    background-size: cover; 
	width: 100%;
	z-index: 100;
	padding: 75px 0px 75px 0px;
	position:relative;
	overflow:hidden;
	color:#ffffff;
	font-size:18px;
	line-height:24px;
}

.bg_reserve {
	background: url(../../images/layout/bg_room.jpg) no-repeat center;
	background-attachment:fixed; 
    -webkit-background-size: 100%; 
    -moz-background-size: 100%; 
    -o-background-size: 100%; 
    background-size: 100%; 
    -webkit-background-size: cover; 
    -moz-background-size: cover; 
    -o-background-size: cover; 
    background-size: cover; 
	width: 100%;
	z-index: 100;
	padding: 75px 0px 75px 0px;
	position:relative;
	overflow:hidden;
	color:#ffffff;
	font-size:18px;
	line-height:24px;
}

.logo_stowe-leaf { 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	border: 0;
	position:relative;
	margin: 20px 0px 20px 0px;
	
}

div.topbar {
	background-color:#7f1111; 
	width:100%; 
	line-height:45px; 
	text-align:center; 
	font-size:14px; 
	font-family: 'gs_reg', Helvetica, Arial, sans-serif; 
	color:#ffffff; 
	text-transform:uppercase;	
}

div.wrap_main {
	width:800px;
	position:relative;
	margin-top:40px;
	margin-bottom:40px;
	display: inline-block;
	text-align:center
}

div.frame_wrap {
	display: table; 
	margin: 0 auto;	
}
