/*
 Table Of Contents
 1.) Eric Meyer's Reset
 2.) Global Typography
	 2.0.1) Global Headings
	 2.0.2) List styles
	 2.0.3) General Text Formatting
	 2.0.4) Link elements
 3.) Site Wide Content
 4.) Header Style
 5.) Footer Style
 ===============================================*/

/*
 1.) Eric Meyer's Reset
 ----------------------------------------*/
/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*
 1.) Global Typography
 ----------------------------------------*/
*, :before, :after{
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
html {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	font-size: 100%;
}
body {
	font-family: Georgia, Times New Roman, Times, serif;
	font-size: 18px;
	color:#000000;
	line-height: 25px;
	/*background: url('../images/home.png') no-repeat center top;*/
	text-align: center;
}

b, strong {font-weight:bold;}
i, em {font-style:italic;}


/*
 2.0.2) List Styles
 ---------------------------------*/
ul, ol, dl {
	font-size:14px;
	line-height: 1.5;
}
li, dt {
	line-height: 1.5;
}
dl {
	margin: 0 0 10px 0;
}
dd {
	margin: 0 0 10px 8px;
}
ul {
	list-style-type: none;
	
}
ol {
	list-style-type: decimal;
	margin: 0 0 10px 0;
}
ul ul, ol ul {
	list-style-type: circle;
	margin-top: 0;
}
ol ol {
	list-style-type: lower-latin;
	margin-top: 0;
}

/*
 2.0.3) General Text Formatting
 -----------------------------------*/

blockquote, cite, q, var, dfn {
	font-style: italic;
}
blockquote {
	background: transparent;
	color: #666666;
}
small {
	 font-size: 12px; 
	
	line-height: 1.75;
}
pre, code, kbd, tt, samp, var {
	font-size: 100%;
}
pre {
	font-size: 100%;
	line-height: 1.5;
	margin: 0 0 10px 0;
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}
pre, code {
	color: #880000;
}
kbd, samp, var {
	color: #666666;
	font-weight: bold;
}
acronym, abbr {
	border-bottom: 1px #aaa dotted;
	font-variant: small-caps;
	cursor: help;
}
sub, sup {
	font-size:12px;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -2px;
}
sub {
	bottom: -2px;
}
img{
	max-width: 100%;
	height: auto;
}
/*
 2.0.4) Link style
 -------------------------*/
a {
	color: #ffffff;
	text-decoration: none;
}
a:hover {
	color: #ff7f00;
	text-decoration: none;
}
a:active {
	outline: none;
}

span{
	display: block;
}





/* Containers
----------------------------------------------------------------------------------------------------*/
.container{
	max-width: 1280px;
	margin: 0 auto;
	padding:22px 60px 18px; 
	text-align:left;
}





/* Clear Floated Elements
----------------------------------------------------------------------------------------------------*/

/* http://sonspring.com/journal/clearing-floats */

.clear {
	clear: both;
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}

/* http://perishablepress.com/press/2008/02/05/lessons-learned-concerning-the-clearfix-css-hack */

.clearfix:after {
	clear: both;
	content: ' ';
	display: block;
	font-size: 0;
	line-height: 0;
	visibility: hidden;
	width: 0;
	height: 0;
}

.clearfix {
	display: inline-block;
}

* html .clearfix {
	height: 1%;
}

.clearfix {
	display: block;
}
/*
 3.) Site Wide Content
 ------------------------------*/
body{
/*	background: url('../images/home.png') no-repeat center top;*/
}
#wrapper {
	
/*opacity: 0.5;*/
}

/*
 2.0.1) Global Headings
 -----------------------------*/
h1, h2, h3,  h4, h5, h6 {
	font-weight: normal;
	color: #343e2d;
	text-transform:capitalize;
	font-family: 'Cinzel Decorative', cursive;
}

h2 {
	 font-size: 36px; 
	line-height: 36px;
	margin:  0 0 24px 0; 
	}
h3 {
	color:#ffffff;
	 font-size: 30px;
	line-height: 30px;
	margin:  0 0 5px 0;
}
h4 {
	font-family: 'Cinzel Decorative', cursive;
	text-transform:capitalize;
	font-weight: 400;
	color:#ffffff;
	font-size:30px;
	line-height: 30px;
	word-spacing: 2px;
	display: block;
}
h5 {
 font-size: 16px; 
	
	margin:  0 0 20px 0;
}
h6 {
 font-size: 14px; 
	
	line-height: 1.5;
	margin:  0 0 20px 0;
}
p {
	font-family:Georgia;
	font-size: 18px;
	color:#000000;
	line-height: 25px;
	margin-bottom: 18px;
}
span{
	color:#000000;
}
p a{
	color:#b20000;
}
p a:hover{
	color:#468c00;
}

/*
 4.) Header Styles
 ------------------------------*/
#header 
{
	background:url('../images/header-bg.png') repeat;
	text-align: center;
	position: relative;
	color:#fff;
	border-bottom:10px solid #7b725c;
}
#header span{
	margin-bottom:21px;
	font-style:italic;
	color:#ffffff;
}

#header span a:hover{
	color:#343e2d;
}

h1{
	font-size:80px;
	line-height: 80px;
	letter-spacing: 1px;
	 margin-bottom: 13px;
}
h1 a{
		color: #343e2d;

}
h1 a:hover,h1 a:focus,h1 a:active{
		color: #343e2d;

}

.menu-icon
	{
		background: url('../images/navicon.png') no-repeat 0 0 ;
		display: inline-block;
		position: absolute;
    	right: 45px;
    	 top: 62px;
    	 width:69px;
    	 height:64px;
		display: none;
	}
 nav{
 	padding:0 43px;
 	background: url('../images/nav-bg.png') repeat;
 }

nav > ul > li
{
	float:left;
	font-size: 26px;
	font-family: Georgia;
	text-transform:capitalize;
    padding:5px 17px 7px;
    margin-right:9px;
	
}
nav ul li a
{
	color:#fff;
}
nav ul li a:hover
{
	color:#8cb892;
	
}
/*
 5.) Footer Styles
 ------------------------------*/

#footer .container
{
	background: url('../images/footer-bg.png') repeat;
	overflow: hidden;
	    padding-top: 29px;
   padding-bottom: 17px;
}
.footer-left{
	float:left;
	 padding: 6px 1px;
}
address{
	font-size:16px;
	color:#fff;
	line-height: 23px;
	  margin-bottom: 15px;
}

#footer span{
	font-size:12px;
	color:#ffffff;
}
#footer address span{
	font-size:16px;
	color:#ffffff;
}
#footer a:hover{
	color:#d8d800;
}
.footer-right {
	float:right;
}
.footer-right ul li{
	float:left;
	margin-left:20px;
}
.footer-right ul li:first-child{
	margin-top:15px;
}
.footer-right ul li:last-child {
    margin-right: -7px;
    margin-top: 3px;
}
#footer .container{
	padding-bottom:32px;
}

