@charset "utf-8";
/* CSS Document */

@font-face {
    font-family: 'keson_sansbold';
    src: url('font/keson_sans_bold-webfont.woff2') format('woff2'),
         url('font/keson_sans_bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'keson_sanslight';
    src: url('font/keson_sans_light-webfont.woff2') format('woff2'),
         url('font/keson_sans_light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'keson_sansregular';
    src: url('font/keson_sans_regular-webfont.woff2') format('woff2'),
         url('font/keson_sans_regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'source_sans_problack';
    src: url('font/sourcesanspro-black-webfont.woff2') format('woff2'),
         url('font/sourcesanspro-black-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'source_sans_problack_italic';
    src: url('font/sourcesanspro-blackit-webfont.woff2') format('woff2'),
         url('font/sourcesanspro-blackit-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'source_sans_probold';
    src: url('font/sourcesanspro-bold-webfont.woff2') format('woff2'),
         url('font/sourcesanspro-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'source_sans_probold_italic';
    src: url('font/sourcesanspro-boldit-webfont.woff2') format('woff2'),
         url('font/sourcesanspro-boldit-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'source_sans_proitalic';
    src: url('font/sourcesanspro-it-webfont.woff2') format('woff2'),
         url('font/sourcesanspro-it-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'source_sans_proregular';
    src: url('font/sourcesanspro-regular-webfont.woff2') format('woff2'),
         url('font/sourcesanspro-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'source_sans_prolight';
    src: url('font/sourcesanspro-light-webfont.woff2') format('woff2'),
         url('font/sourcesanspro-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'source_sans_prolight_italic';
    src: url('font/sourcesanspro-lightit-webfont.woff2') format('woff2'),
         url('font/sourcesanspro-lightit-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

html,
body {
   margin:0;
   padding:0;
   height:100%;
}
#container {
   min-height:100%;
   width: 100%;
   position:relative;
}
#header {
	width: 100%;
	height: 100px;
	position: fixed;
	background-color: #927530;
	top: 0px;
	z-index: 99;
	
}
#headernav{
	width: 1200px;
	margin-top: 10px;
	margin-right: auto;
	margin-left: auto;
	
}
#logo{
	float:left;
}
/* ----------------MENU ITEMS---------- */
#mainnav{
	float:right;
	/*width: 800px;*/
	text-align:right;
	padding-top: 18px;
}
#mainnav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    /*background-color: #333;*/
}

#mainnav li {
    float: right;
}

#mainnav li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
	font-family: 'keson_sansregular', arial, helvetica, san-serif;
	font-size: 18px;
}

/* Change the link color to #111 (black) on hover */
#mainnav li a:hover {
    /*background-color: #262524;*/
	color: #4b5537;
}

/* ----------------MENU 2 ITEMS---------- */

#mainnav2{
	float:right;
	/*width: 800px;*/
	text-align:right;
	padding-top: 22px;
}

/* Giving a background-color to the nav container. */
nav {
    /*margin: 100px 0;
    background-color: #E64A19;*/
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
nav ul {
    padding:0;
    margin:0;
    list-style: none;
    position: relative;
    }

/* Positioning the navigation items inline */
nav ul li {
    margin: 0px -7px 0 0;
	padding: 8px 12px 8px 12px;
    display:inline-block;
    background-color: #927530;
	text-decoration: none;
	font-family: 'keson_sansregular', arial, helvetica, san-serif;
	font-size: 18px;
    }
nav ul li:hover {
	background-color: #b99747;
}

/* Styling the links */
nav a {
    display:block;
    padding:0 10px;
    color:#FFF;
    font-size:18px;
    /*line-height: 60px;*/
    text-decoration:none;
}

/* Background color change on Hover */
nav a:hover {
    /*background-color: #b99747;*/
	color: #4b5537;
}
/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
    display: none;
    position: absolute;
    /*top: 100%;*/
	text-align:left;
	margin-top:8px;
	margin-left:-86px;
	background-color: #dab357;
}

/* Display Dropdowns on Hover */
nav ul li:hover > ul {
    display:inherit;
	background-color: #dab357;
}

/* Fisrt Tier Dropdown */
nav ul ul li {
    min-width:170px;
    display:list-item;
    position: relative;
}

/* -----------BODY---------------- */
#bodymain {
   /*padding:10px;
	width:100%;*/
   padding-bottom:360px;   /* Height of the footer */
}
#slider{
	width: 1200px;
	height: auto;
	min-height: 500px;
	top: 100px;
	padding-top: 100px;
	/*position: 200px;*/
	margin: 0 auto 0 auto;
	background-color:#43793b;
}
#hero{
	width: 1160px;
	margin: 0 auto 0 auto;
	padding: 40px 20px 40px 20px;
	background-color: #ede4ce;
	text-align: center;
	position:relative;
	/*top: 100px;*/
}
#hero p {
	width: 900px;
	margin: 0 auto 0 auto;
	font-family: 'source_sans_proregular';
	font-size: 24px;
	line-height: 36px;
	color: #403c31;
}
#hero h1 {
	font-family: 'keson_sansregular', arial, helvetica, san-serif;
	font-size: 44px;
	color: #927530;
	margin-top:-2px;
}
#homecontent{
	width: 1200px;
	align:center;
	margin: 100px auto 0px auto;
	padding: 60px 0px 60px 0px;
	overflow: auto;

	/* background-color: #643b79;*/
}
#featurebox1{
	width: 260px;
	padding: 20px;
	margin-left: 74px;
	min-height: 300px;
	float: left;
	background-color: #cce1a3;
	/*background-color: #f5f0e3;*/
	text-align:center;
	font-family: 'source_sans_proregular';
	font-size: 18px;
	line-height: 24px;
	color: #403c31;
	
}
#featurebox1 h2{
	font-family: 'keson_sansregular', arial, helvetica, san-serif;
	font-size: 32px;
	color: #927530;
}

#featurebox1 a {
	background-color: #927531;
    border: none;
    color: white;
    padding: 10px 16px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
	text-transform: uppercase;
	margin-top: 30px;
}
#featurebox1 a:hover {
	background-color: #4b5537;
}
# callbar{
	width: 100%;
	background-color: #2c2626;
	overflow: auto;
	font-family: source_sans_probold_italic;
}
#call1 {
	width: 1000px;
	height: 80px;
	margin: 0 auto 0 auto;
	padding: 40px 0px 20px 100px;
	background-color: #2c2626;
	text-align: right;
	font-family: source_sans_probold_italic;
	color: #fff;
	font-size: 32px;
	
}
#call1 a {
	background-color: #927531;
	border: none;
	color: white;
	padding: 10px 16px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 22px;
	text-transform: uppercase;
	margin-left: 60px;
}
#call1 a:hover {
	background-color: #4b5537;
}
#herorhl{
	width: 100%;
	height: 180px;
	position: absolute;
	top: 100px;
	margin: -320px auto 0 auto;
	background-color:#1d2e43;
	background-image: url(img/FFC_banner1.jpg);
	background-repeat: no-repeat;
    background-position: top center; 
	padding-left: 20px;
    /*vertical-align: middle*/ 
}
#herohold{
	width: 78%;
	align:center;
	margin: 0px auto 0px auto;
}
#herorhl h1 {
	font-family: 'keson_sansregular', arial, helvetica, san-serif;
	font-size: 40px;
	color: #ffffff;
	margin-top: 60px;
}
#homecontent2{
	width: 1200px;
	align:center;
	margin: 320px auto 0px auto;
	padding: 40px 0px 60px 0px;
	overflow: auto;
	/*position: relative;
	background-color: #643b79;*/
}
#homecontent3{
	width: 1200px;
	align:center;
	margin: 320px auto 0px auto;
	/*padding: 0px 0px 60px 0px;*/
	/*overflow: auto;*/
	background-image: url("img/milton-fine-full-size.jpg"); 
	background-repeat: no-repeat, repeat;
	 background-position: center top;
	/*position: static;
	margin-top:20px;
	background-color: #643b79;*/
}
#pgmenu{
	width: 260px;
	min-height: 300px;
	float: left;
	margin-left: 20px;
	
}
#pgmenu ul {
	list-style-type: none;
    margin: 0;
    padding: 0;
}

#pgmenu li a {
    display: block;
    width: 240px;
	padding: 8px 0 8px 16px;
	background-color: #f5f0e3;
    text-decoration: none;
	font-family: 'keson_sansregular', arial, helvetica, san-serif;
	font-size: 18px;
	color: #927530;
}
#pgmenu li a:hover  {
	background-color: #cce1a3;
	color: #4b5537;
}
#pgmenu li a.active {
    background-color: #a59b55;
    color: #4b5537;
}
#pgmenu li.head {
	display: block;
    width: 240px;
	padding: 8px 0 8px 16px;
	font-family: 'keson_sansbold', arial, helvetica, san-serif;
	font-size: 18px;
    background-color: #4b5537;
    color: #a59b55;
}
#pgbody{
	width: 800px;
	min-height: 400px;
	float: left;
	margin-left: 70px;
	font-family: 'source_sans_proregular';
	font-size: 20px;
	line-height: 32px;
	color: #403c31;
}
#pgbody h2{
	font-family: 'keson_sansregular', arial, helvetica, san-serif;
	font-size: 32px;
	color: #927531;
}
#pgbody2{
	width: 1150px;
	min-height: 800px;
	float: none;
	font-family: 'source_sans_proregular';
	font-size: 1.125rem;
	line-height: 1.75rem;
	color: #000;
	padding:50px;

}
#pgbody2 h2{
	font-family: 'keson_sansregular', arial, helvetica, san-serif;
	font-size: 32px;
	color: #927531;
}
#pgbody2content{
	position: relative;
	/*float:none;*/
	width:87%;
	background-color: white; 
	opacity: 0.65; 
	margin-top:380px;
	padding: 50px;
	border-radius: 20px;
	font-family: 'keson_sansregular', arial, helvetica, san-serif;
}
.sub1{
	font-family: 'keson_sansbold', arial, helvetica, san-serif;
	font-size: 24px;
	/*color: #927531;*/
	color: #4b5537;
}
a.sub1L{
	color: #927531;
}
a.sub1L:hover{
	color: #4b5537;
}
.sub2{
	font-family: 'keson_sansbold', arial, helvetica, san-serif;
	font-size: 18px;
	color: #4b5537;
	margin-top: -10px;
}
#mgmnt1{
	width: 360px;
	float: left;
	/*padding: 20px;*/
	position: relative;
	/*margin-left: 40px;*/
	margin-top: 70px;
	background-color: #cce1a3;
	font-family: 'source_sans_proregular';
	font-size: 18px;
	line-height: 20px;
}
#mgmnt2{
	width: 360px;
	float: left;
	/*padding: 20px;*/
	position: relative;
	margin-left: 70px;
	margin-top: 70px;
	background-color: #cce1a3;
	font-family: 'source_sans_proregular';
	font-size: 18px;
	line-height: 20px;
}
a.manlink {
	font-family: 'keson_sansbold', arial, helvetica, san-serif;
	font-size: 22px;
	color: #927530;
	text-decoration: none;
}
a.manlink:hover {
	color: #4b5537;
}
#man-img{
	width: 100px;
	height: 100px;
	float: left;
	padding-right: 20px;
}
.scroll-top-wrapper {
    position: fixed;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	text-align: center;
	z-index: 99999999;
    background-color: #d4c874;
	color: #eeeeee;
	width: 50px;
	height: 48px;
	line-height: 48px;
	right: 40px;
	bottom: 40px;
	padding-top: 2px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-ms-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
.scroll-top-wrapper:hover {
	background-color: #4b5537;
}
.scroll-top-wrapper.show {
    visibility:visible;
    cursor:pointer;
	opacity: 1.0;
}
.scroll-top-wrapper i.fa {
	line-height: inherit;
}
#footer {
   position:absolute;
   bottom:0;
   width:100%;
   height:360px;   /* Height of the footer */
   background-color:#927530;
   overflow:auto;
}
#footerwrap{
	width: 1200px;
	margin: 0 auto 0 auto;
	position:relative;
	z-index: 99;
}
#footerlinks {
	width: 700px;
	float: left;
	margin: 40px 0 0 60px;
	position:relative;
}
#footerlinks ul {
	list-style-type: none;
    margin: 0;
    padding: 0;
}

#footerlinks li a {
    display: block;
    width: 300px;
	padding: 8px 0 8px 16px;
    text-decoration: none;
	font-family: 'keson_sansregular', arial, helvetica, san-serif;
	font-size: 18px;
	color: #ffffff;
	text-decoration: none;
}
#footerlinks li a:hover {
	color: #4b5537;
}
#footercontact{
	width: 300px;
	float: left;
	margin: 40px 0 0 60px;
	position:relative;
	font-family: 'keson_sansregular', arial, helvetica, san-serif;
	font-size: 16px;
	color: #ffffff;
	text-decoration: none;
}
#footercpyrt{
	width: 100%;
	float: left;
	position:relative;
	margin: 20px 60px 0 60px;
	text-align: center;
	font-family: 'keson_sansregular', arial, helvetica, san-serif;
	font-size: 11px;
	color: #ffffff;
}
@media only screen and (max-width: 480px) {
  #hero{
	width: 100%;
  }
	#herohold{
	width: 100%;
	}
	#herorhl{
	width: 1200px;
	}
	# callbar{
		width: 1200px;}
	#footer {

		width:1200px;}
}

@media only screen and (max-width: 992px) {
  #hero{
	width: 100%;
  }
	#herohold{
	width: 100%;
	}
		# callbar{
		width: 1200px;}
	#footer {

		width:1200px;}
}
