
/*---------------------------------------------------Layout styles------------------------------------------------
Move down to TEXT to add or edit existing TEXT styles*/

body {
	font: 100%/1.0 Verdana, Arial, Helvetica, sans-serif;
	color:#100803;
	margin: 0;
	padding: 0;
	background: url(/images/pattern.jpg) center center fixed;
}
/* ~~ 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 block. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 10px;
	padding-left: 10px; /* adding the padding to the sides of the elements within the blocks, instead of the block elements themselves, gets rid of any box model math. A nested block with side padding can also be used as an alternate method. */
	
}
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 {
	color:#0000FF;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color:#0000FF;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}
a[href^="tel:"]{
    text-decoration: none;
	color:#100803;
}
/*-----Changes color on form buttons-----*/
input[type="button"] {
	background: #CCC;
	color: #333;	
}
input[type="button"]:hover {
	background: #B6DCAF;
	color: #275212;	
}
input[type="submit"] {
	background: #CCC;
	color: #333;	
}
input[type="submit"]:hover {
	background: #B6DCAF;
	color: #275212;	
}
/* ~~ This fixed width container surrounds all other blocks ~~ */
.container {
	padding-top: 0px;
	width: 1000px;
	margin: 0 auto;
	-webkit-box-shadow: 0 0px 15px 8px #000;
	   -moz-box-shadow: 0 0px 15px 8px #000;
	        box-shadow: 0 0px 15px 8px #000;
	position: relative;
	background: #fffff0;
}
/* ~~ The header is not given a width. It will extend the full width of your layout. ~~ */
header {
	height: 575px;
}
/* ------Photo Gallery space in header(additonal changes made in galleria.classic.css)------*/
#galleria {
	width: 100%;
	height: 450px;
}
/*------Booking Engine interface in template-----*/
#booking {
	background:url(/images/icons/booking-button.png);
	z-index: 1003;
	position: absolute; top: 365px; right: 35px;
	width: 300px;
	height: 95px;
	padding: 0px;
}
/*-----Banner running across the page-----*/
#main_banner {
	background-color: #FFFFF0;
	padding-top: 25px;
	padding-bottom: 25px;
	width: 100%;
	min-width: 1000px;
	height: 100px;
	border-top:solid 1px;
	border-bottom:solid 1px;
	border-color: #967117;
	-webkit-box-shadow: 0 0px 10px 1px #000;
	   -moz-box-shadow: 0 0px 10px 1px #000;
	        box-shadow: 0 0px 10px 1px #000;
	z-index:1000;
	position: absolute; top: 440px; left: auto;
}
#main_banner_content {
	height: 100px;
	padding: 0px 15px 0px 10px;
	position: absolute; top: 450px;
	z-index:1002;
	background:none;
	width: 1000px;
}
/*-------------------------------Main Navigation------------------------------------*/
.fancyNav{
	/* Affects the UL element */
	overflow: hidden;
	display: inline-block;
	min-width: 650px;
}
.fancyNav li{
	margin-bottom: 8px;
	background-color: #fffff0;
	border-top:solid 1px;
	border-bottom:solid 1px;
	border-color: #967117;
	position:relative;
	float: left;
	list-style: none;
}
.fancyNav li a{
	color: #967117;
	display: inline-block;
	font: 18px/1 "Times New Roman", Times, serif;
	font-variant: small-caps;
	padding: 7px 10px 9px 10px;
	position: relative;
	z-index:2;
	text-decoration:none !important;
	white-space:nowrap;
}
.fancyNav li a:hover{	
	color: #fffff0;
	background-color: #967117;
}
#home a:hover {
	background-color: #fffff0;
}

/*---------------------------------These are the columns for the layout.--------------------------------------*/ 

.sidebar1 {
	float: left;
	width: 250px;
	margin-left: 20px;
	margin-bottom: 80px;
	padding-left: 0px;
	margin-right: 20px;
	padding-top: 100px;
}
.content {
	padding-top: 50px;
	margin-bottom: 50px;
	width: 665px;
	min-height: 300px;
	float: right;
	border-left: #967117 solid 1px;
	background:#fffff0;
}
aside {
	float: left;
	width: auto;
	padding-bottom: 0px;

}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol {
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

/*------------------------------------------The footer--------------------------------------------*/
footer {
	font-size: 18px;
	margin-top: 0px;
	font-family:"Times New Roman", Times, serif;
	font-variant:small-caps;
	border-top: 0px solid #967117;
	border-bottom: 0px solid #967117;
	padding: 0px 0px 40px 0px;
	color: #967117;
	background: #100803; 
}
footer a:link{
	color: #967117;
	text-decoration: underline;
	font-family:Verdana, Geneva, sans-serif;
	font-size:11px;
	font-variant:normal;
	line-height: 12px;
}
footer a:visited {
	color: #967117;
	text-decoration: underline;
}
footer a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}
footer a[href^="tel:"]{
    text-decoration: none;
	color:#967117;
}

/* ~~ Miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 5px;
}
.clearfloat { /* this class can be placed on a <br /> or empty block element as the final element following the last floated block (within the .container) if the footer is removed or taken out of the .container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

/*HTML 5 support - Sets new HTML 5 tags to display:block so browsers know how to render the tags properly. */
header, section, footer, aside, nav, article, figure {
	display: block;
}

/*------------------------ Video Menu --------------------------*/
.trigger{
	position: absolute;
	top: 585px; left: 20px;
	color:#967117;
	border: 1px solid #967117;
	font: 18px/1 "Times New Roman", Times, serif;
	font-variant: small-caps;
	padding: 20px 20px 10px 20px;
	background:#EDE3B3;
	display: block;
	width: 230px;
	text-align:center;
}

/*------------------------ Left Sidebar Navigation------------------------*/
.sidenav{
	overflow:hidden;
	display: block;
}
.sidenav li{
	margin-bottom: 5px;
	margin-right: -20px;
	background-color: #fffff0;
	border-top:solid 1px;
	border-bottom:solid 1px;
	border-color: #967117;
	width: 310px;
	position:relative;
	float: left;
	list-style: none;
}
.sidenav li a{
	color: #967117;
	display: block;
	font: 18px/1 "Times New Roman", Times, serif;
	font-variant: small-caps;
	padding: 7px 10px 9px;
	position: relative;
	z-index:2;
	text-decoration:none !important;
	white-space:nowrap;
	width: 100%;
}
.sidenav li a:hover{	
	color: #fffff0;
	background-color: #967117;
}
.sidenav_inactive {
background-color: #f6f6dc; 
}
.sidenav #sidesubnav{
	border: none;
	padding-left: 25px;
}
.sidenav #sidesubnav a{
	border: none;
	font-size: 12px;
	font-family: Verdana, Geneva, sans-serif;
	font-variant: normal;
}

/*------------------------------- Popup styles-------------------------------*/
#extras_container {
	border: 1px solid #967117;
	/*-webkit-box-shadow: 0 0px 3px 1px #967117;
	   -moz-box-shadow: 0 0px 3px 1px #967117;
	        box-shadow: 0 0px 3px 1px #967117;*/
	padding: 15px 15px 15px 0px;
	width: 255px;
}
#extras_nav {
	font-size:11px;
	color: #967117;
	text-decoration:none;
}
#extras_nav a {
	font-size:11px;
	color: #967117;
	text-decoration:none;
}
.inline {
	outline:none;
	text-decoration: none;
}
.inline:focus {
	outline:none;
	text-decoration: underline;
}
.inline:hover {
	outline:none;
	text-decoration: none;
}
/*-------------------------------FORM styles---------------------------------*/
form {
	font-size:14px;
	line-height:25px;
	margin-left:10px;
	margin-right:10px;
}

label {
	display: inline-block;
	cursor: pointer;
	position: relative;
	padding-left: 35px;
	margin-right: 15px;
	font-size: 13px;
}
input[type=radio],
input[type=checkbox] {
	display: none;
}
label:before {
	content: url(/images/icons/radio-unselected.jpg);
	width: 25px;
	height: 25px;
	margin-right: 30px;
	position: absolute;
	left: 0;
	bottom: 1px;
}
input[type=radio]:checked + label:before {
    content: url(/images/icons/radio-selected.jpg);
    color: #fffff0;
    text-align: center;
}
label#text-input:before {
	content: none;
	margin-right: 30px;
}
label#text-input {
	padding-left:0px;
}
/*-------------------------------TEXT styles---------------------------------*/
.container p {
	font-size: 14px;
	line-height: 20px;
}
.container table {
	font-size: 14px;
	line height: 20px;
}
h1 { 
	font-family: "Times New Roman", Times, serif;
	font-size: 2.3em;
	color: #967117;
	margin: 0px 0px 0px 0px;
	font-weight: normal;
	font-variant:small-caps;
	text-align:center;
}
h2 {
	font-size: 1.5em;
	color: #967117;
	margin: 0em 0px .25em 0px;
	font-weight: normal;
	font-family: "Times New Roman", Times, serif;
	font-style: italic;
	line-height: -2em;
	text-align:center
}
h3 {
	font-size: 1.3em;
	color: #967117;
	margin: 0px 0px .5em 0px;
	font-family: Verdana, Geneva, sans-serif;
	font-style: normal;
	font-weight: normal;
	line-height: 1 em;
	
}
ul{
	font-size: 12px;
	line-height: 18px;
}
ol{
	font-size: 12px;
	line-height: 18px;
}
.accordian_detail {
	text-align: right;
	font-size: 10px;
	float:right;
}
.package {
	min-height: 110px;
	font-size: 14px;
	line-height: 18px;
	margin: 10px 0px 10px 0px;
	padding: 0px;
}
.item_title {
	font-weight:bold;
}
.item_price {
	font-family: "Times New Roman", Times, serif;
	font-style:italic;
	font-size:16px;
	text-align: right;
	padding-right: 15px;
}

blockquote {
  font: 16px/22px Verdana, Geneva, sans-serif;
  padding: 35px 25px 35px 60px;
  background-color: #fffff0;
  margin: 10px 45px 10px 45px;
  background-image: url(/images/icons/quote.png);
  background-position: top left;
  background-repeat: no-repeat;
  text-indent: 0px;
  }
  blockquote span {
    	font: 12px/20px Verdana, Geneva, sans-serif;
		display: block;
    	background-repeat: no-repeat;
    	background-position: bottom right;
		padding: 10px;
		text-align:right;
  }
.small_link_text {
	font-family:Verdana, Geneva, sans-serif;
	font-size: 9px;
}
.red_prices{
	font-family:"Times New Roman", Times, serif;
	color:#FF0000;
	font-style:italic;
}
@font-face {
    font-family: Jane Austen;
    src: url("/fonts/JaneAust.ttf") /* EOT file for IE */
}
/*@font-face {
    font-family: TempestaSevenCondensed;
    src: url("../fonts/pf_tempesta_seven_condensed.ttf") /* TTF file for CSS3 browsers */

#blog_title_excerpt {
	font-family: "Jane Austen", Times, serif;
	color: #100803;
	font-size: 26px;
	line-height: 24px;
	font-weight: normal;
	font-variant: normal;
	text-align:left;
}
#blog_snippet {
	background: #EDE3B3;
	border: 1px solid #967117;
	padding: 20px 10px 10px 10px;
}