@import url(http://fonts.googleapis.com/css?family=Lato:400,700);
/* font-family: 'Lato', sans-serif; */

/**********  GLOBAL STYLES  **********/

html {
	-webkit-font-smoothing: antialiased;
}

body {
    background: ##fff none;
	font-family: 'Lato', sans-serif; 
	font-size: 16px;
}

p, li, div, td {
	font-family: 'Lato', sans-serif;
	color: #666;
}  

a {
	font-family: 'Lato', sans-serif;
	outline: 0;
	color: #7a915c;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}

a:hover {
	text-decoration: none;
	color: #597533;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	color: #ffce54;
	line-height: 1;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	text-transform: none;
	color: #7a915c;
}

h1 a:hover, h2 a:hover h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
	text-decoration: none;
	color: #597533;
}

/**********  END GLOBAL STYLES  **********/

/**********  BACK TO TOP  **********/

.back-to-top {
    background: rgba(122,145,92,0.75);
    padding: 10px 15px;
    text-decoration: none;
    color: #fff;
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 999;
    display: none;
    border-radius: 0;
 	-webkit-transition: all 0s;
	-moz-transition: all 0s;
	transition: all 0s;
}

.ie7 .back-to-top, .ie8 .back-to-top {
	background: #7a915c;
}

.back-to-top i {
	font-size: 18px;
}

.back-to-top:hover {
    background: rgba(89,117,51,0.75);
    text-decoration: none;
    color: #fff;
 	-webkit-transition: all 0s;
	-moz-transition: all 0s;
	transition: all 0s;
}

.ie7 .back-to-top:hover, .ie8 .back-to-top:hover {
	background: #597533;
}

/**********  END BACK TO TOP  **********/

/**********  HEADER  **********/

.top-bar {
    background: #f9f9f9;
    height: 40px;
}

.top-bar .container {
	padding-top: 9px;
	text-align: right;
	overflow: auto;
}

.top-bar .container p {
	display: inline;
	margin-left: 20px;
	font-size: 14px;
	text-transform: uppercase;
}

.top-bar .container i {
	margin-right: 5px;
}

.top-bar .container .contact i, .top-bar .container .client i {
	color: #7a915c;
}

header {
    background: #fff none;
    height: 100px;
    margin: 0;
    padding: 0;
}

.ie7 header, .ie8 header {
	border-bottom: solid 1px #d1d1d1;
}

header .container {
	background: none;
	height: 100px;
}

header .header-logo {
    display: block;
    float: left;  
    margin: 34px 0 0 0;
    position: relative;
    z-index: 2;
}

header .header-logo .logo {
	margin: 0;
	font-family: Verdana, sans-serif;
	font-size: 40px;
	text-transform: none;
	color: #000;
}

/**********  END HEADER  **********/

/**********  NAVIGATION  **********/

nav#main #homeButton, nav#main .container ul li a + a {
    display: none;
}

nav#main {
    background: none;
    width: 960px;
    height: 0;
    margin: auto;
    padding: 0;
}

nav#main .container {
    background: none;
    width: 960px;
    height: auto;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    top: -50px;
    right: 0;
}

nav#main .container ul {
    float: right;
    margin: 0;
}

nav#main .container ul li {
    background: none;
    margin: 0 0 0 5px;
    padding: 0 0 11px 0;
}

nav#main .container ul li a {
	display: inline-block;
    margin: 0;
    padding: 6px 10px;
    font-size: 14px;
    text-align: center;
    color: #B9B9B9;
    border: solid 1px #B9B9B9;
}

nav#main .container ul li:hover a, nav#main .container ul li a.selected {
    background: #597533;
    text-decoration: none;
    color: #fff;
    border: solid 1px #597533;
}

nav#main .container ul ul {
	background: rgba(89,117,51,0.9);
	width: 200px;
	top: 23px;
	left: 0;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}

.ie7 nav#main .container ul ul, .ie8 nav#main .container ul ul {
	background: url(http://static.contentres.com.s3.amazonaws.com/media/custom/338069-thompson/images/agtf-ie-nav.png) repeat;
}

nav#main .container ul li:hover ul {
	background: rgba(89,117,51,0.9);
	top: 28px;
	left: 0;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}

.ie7 nav#main .container ul li:hover ul, .ie8 nav#main .container ul li:hover ul {
	background: url(http://static.contentres.com.s3.amazonaws.com/media/custom/338069-thompson/images/agtf-ie-nav.png) repeat;
}

nav#main .container ul ul li {
	margin: 0;
	padding: 0;
}

nav#main .container ul ul li a {
	display: block;
	padding: 10px;
	text-align: left;
	border: none;
}

nav#main .container ul li:hover ul li a {
	background: none;
	border: none;
}

nav#main .container ul li:hover ul li a:hover, nav#main .container ul li:hover ul li a.selected {
	background: #9bac85;
}

/**********  END NAVIGATION  **********/

/**********  HERO ROTATOR  **********/
#hero .container #hero1 img {
    background: url(http://static.contentres.com.s3.amazonaws.com/media/custom/338069-thompson/images/agtf-hero-01.jpg) no-repeat !important;
    width: 940px;
    height: 349px;
}

#hero .container #hero2 img {
    background: url(http://static.contentres.com.s3.amazonaws.com/media/custom/338069-thompson/images/agtf-hero-02.jpg) no-repeat !important;
    width: 940px;
    height: 349px;
}

#hero .container #hero3 img {
    background: url(http://static.contentres.com.s3.amazonaws.com/media/custom/338069-thompson/images/agtf-hero-03.jpg) no-repeat !important;
    width: 940px;
    height: 349px;
}

#hero .container #hero4 img {
    background: url(http://static.contentres.com.s3.amazonaws.com/media/custom/338069-thompson/images/agtf-hero-04.jpg) no-repeat !important;
    width: 940px;
    height: 349px;
}

#hero .backArrow, #hero .forwardArrow {
    display: none;   
}

#hero {
    background: none;
    height: 380px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 10px 7px -7px rgba(0,0,0,0.2) inset;
}

#hero .container {
    height: 380px;
    margin: 0 auto;
}

#hero .container .hero {
    border-left: solid 10px #fff;
    border-right: solid 10px #fff;
    border-bottom: solid 10px #fff;
    box-shadow: 0 0 7px rgba(0,0,0,0.3);
    position: absolute;
    z-index: -1;
}

#hero aside {
    width: 940px;
    height: 349px;
    margin: 0 0 0 10px;
    position: relative;
}

.ie7 #hero aside {
	margin-top: -349px;
}

#hero aside .wrapper {
	margin: 0;
    padding: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
}

#hero aside .wrapper h2 {
	float: left;
    background: rgba(0,0,0,0.5);
    margin: 0 0 5px 0;
    padding: 5px 15px;
    font-size: 30px;
}

.ie7 #hero aside .wrapper h2, .ie8 #hero aside .wrapper h2 {
	background: url(http://static.contentres.com.s3.amazonaws.com/media/custom/338069-thompson/images/agtf-ie-hero.png) repeat;
}

#hero aside .wrapper p {
    float: left;
    background: rgba(0,0,0,0.5);
    margin: 0 0 5px 0;
    padding: 5px 15px;
    font-size: 20px;
    color: #fff;
}

#hero aside #hero1_wrapper p {
    width: 805px;
}

#hero aside #hero2_wrapper p {
    width: 800px;
}

#hero aside #hero3_wrapper p {
    width: 545px;
}

.ie7 #hero aside .wrapper p, .ie8 #hero aside .wrapper p {
	background: url(http://static.contentres.com.s3.amazonaws.com/media/custom/338069-thompson/images/agtf-ie-hero.png) repeat;
}

#hero aside .wrapper p + p {
	clear: left;
    background: none;
    width: 150px !important;
    margin: 0;
    padding: 0;
}

#hero aside .wrapper p a {
    display: block;
    background: #ffce54;
    margin: 0;
    padding: 5px 0;
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    color: #000;
}

#hero aside .wrapper p a + a {
    display: none;
}

#hero aside .wrapper p a:hover {
    background: #f6bb42;
}

/**********  END HERO ROTATOR  **********/

/**********  MAIN CONTENT  **********/

#content .container {
    background: none;
    padding-top: 50px;
    padding-bottom: 50px;
}

#content .container article, #content .container aside {
    padding: 0;
}

#content .container article .rule {
    background: #d1d1d1 none;
    width: 630px;
    height: 1px;
}

#content .container aside .rule {
    background: #d1d1d1 none;
    width: 300px;
    height: 1px;
    margin: 30px 0 30px 30px;
}

#content .container article #suggested a:hover img, #content .container article #allVideoContent .videoContent a:hover img {
    opacity: 0.9;
}

#content .container article h2 {
	margin-top: 0;
}

#content .container article h3 {
    margin: 30px 0 10px 0;
}

#content .container #suggested h3 {
	margin-top: 0;
}

#content .container #suggested h3 a {
	font-size: 18px;
}

#content .container #additional {
    background: #ecf0f1 none;
    padding: 20px;
    overflow: auto;
}

#content .container #additional .wrapper {
    padding: 0;
}

#content .container #additional .wrapper nav ul li {
    border: none;
}

#content .container #additional .wrapper nav ul li a, #content .container #additional .wrapper .viewAll a {
    font-size: 18px;
    text-transform: uppercase;
    color: #7a915c;
}

#content .container #additional .wrapper .matterContent .content h4 a {
    font-size: 16px;
    color: #7a915c;
}

#content .container #additional .wrapper nav ul li a:hover, #content .container #additional .wrapper .matterContent .content h4 a:hover, #content .container #additional .wrapper .viewAll a:hover, #content .container #additional .wrapper nav ul li a.selected {
    color: #597533;
}

#content .container #additional .wrapper nav ul li a.selected {
	font-weight: 700;
}

#content .container #additional .wrapper .viewAll a {
	font-size: 20px;
}

/**********  END MAIN CONTENT  **********/

/**********  HOMEPAGE  **********/

.homepage #content .container article .rule, .homepage #content .container article #additional, .homepage #content .container aside .rule {
    display: none;
}

.homepage #content .container {
    padding-top: 10px;
    padding-bottom: 0;
}

.homepage .welcome h2 {
    margin: 0 0 15px 0;
    font-size: 36px;
}

.homepage .welcome p {
    font-size: 18px;
}

.homepage #content .container article {
    float: right;
    width: 530px;
}

.homepage #content .container aside {
    width: 400px;
    margin: 0 30px 0 0;
}

.homepage #content .container aside .wrapper {
    padding: 0;
}

.homepage aside .box {
    float: right;
    width: 390px;
    height: 80px;
    margin: 0 0 20px 0;
    padding: 20px 0;
    position: relative;
}

.homepage aside .bottom {
    margin-bottom: 40px;
}

.homepage aside .box p {
    float: left;
    margin: 0 0 10px 0;
    padding: 0 20px 0 40px;
    font-size: 14px;
    line-height: 18px;
    color: #fff;
}

.homepage aside .box ul {
    float: left;
    margin: 0 0 10px 0;
    list-style-type: disc;
}

.homepage aside .box li {
    margin: 0 0 5px 70px;
    padding-right: 20px;
    font-size: 12px;
    color: #fff;
}

.homepage aside .box a {
    display: block;
    float: right;
    margin: 0 20px 0 0 ;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}

.homepage aside .box a:hover {
	text-decoration: underline;
}

.homepage aside .box .icon {
    position: absolute;
    top: -21px;
    left: -21px;
}

.homepage aside .box i {
	color: #fff;
}

.homepage aside .top i {
	font-size: 18px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.homepage aside .middle i {
	font-size: 20px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.homepage aside .bottom i {
	font-size: 23px;
	position: absolute;
	top: 0;
	left: 3px;
	z-index: 1;
}

.homepage aside .top {
    background: #435826;
}

.homepage aside .middle {
    background: #597533;
}

.homepage aside .bottom {
    background: #7a915c;
}

.homepage #helpful-content {
    border-top: solid 1px #D9D9D9;
}

.homepage #helpful-content .container {
    width: 940px;
    padding: 30px 10px 50px;
    overflow: auto;
}

.homepage #helpful-content #suggested {
    float: left;
    width: 100%;
}

.homepage #helpful-content #suggested .content {
    width: 245px;
    margin: 0 0 0 100px;
    padding: 0;
}

.homepage #helpful-content #suggested .left {
    margin: 0;
}

.homepage #helpful-content #suggested .content img {
    background-size: 225px 172px;
    width: 225px;
    height: 172px;
    margin: 0 0 15px 0;
    padding: 0;
    border: solid 10px #fff;
    box-shadow: 0 0 7px rgba(0,0,0,0.3);
}

.homepage #helpful-content #suggested .content h3 {
    font-size: 16px;
    margin: 0 0 5px 10px;
}

.homepage #helpful-content #suggested .content p {
    margin: 0;
    padding: 0 10px;
}

.homepage #helpful-content .container #suggested a:hover img {
    opacity: 0.9;   
}

/**********  END HOMEPAGE  **********/

/**********  SUBPAGES  **********/

.subpage #content {
    box-shadow: 0 10px 7px -7px rgba(0,0,0,0.2) inset;
}

.subpage #content .container article h1 {
font-size: 30px;
}

.page-team #teamContent .principal .description, .page-team #teamContent .agent .description, .page-blog .post {
    line-height: 1.5;
}

.page-team #teamContent .info a img:hover {
	opacity: 0.9;
}

.page-team #teamContent .principal .description, .page-team #teamContent .agent .description, .page-team #teamContent .principal br + p, .page-team #teamContent .agent br + p {
	margin-left: 320px;
}

.ie8 .page-team #content .container aside {
    position: absolute;
    top: 50px;
}

.subpage #content .container article .flagBody {
	background: #7a915c;
	font-size: 18px;
	text-transform: uppercase;
	color: #fff;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}

.subpage #content .container article .flagBody:hover {
	background: #597533;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}

.page-tools-glossary #glossaryContent h3 a {
	font-weight: 700;
	text-transform: uppercase;
	color: #f6bb42;
}

.page-contact #content .container article .socialMedia {
	display: none;
}

.page-contact #content .container article h1 + table {
	margin: 0 50px 5px 0;
}

.page-contact #content .container article h2 {
	margin-top: 0;
}

.page-contact #content .container article .appt {
    font-size: 14px;
}

/**********  END SUBPAGES  **********/

/**********  SIDEBAR  **********/

.subpage #content .container aside section {
	overflow: auto;
}

#content .container aside section h2 {
	margin: 0 0 20px 0;
	padding: 0;
	font-size: 22px;
}

#content .container aside section input, #content .container aside section textarea {
	width: 250px;
	max-width: 250px;
}

#content .container aside section .submit {
	display: block;
	float: left;
	background: #7a915c;
	width: 80px;
	height: 30px;
	margin: 0;
	padding: 0;
	font-family: 'Lato', sans-serif;
	text-transform: uppercase;
	text-align: center;
	color: #fff;
	line-height: 1;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}

#content .container aside section .submit:hover {
	background: #597533;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}

#content .container aside .app .phones {
	margin: -10px 0 0 0;
}

#content .container aside .app p {
	width: 250px;
	margin: 0 0 15px 5px;
}

#content .container aside .app .iphone {
	margin: 0 5px;
}

/**********  END SIDEBAR  **********/

/**********  FOOTER  **********/

footer {
    background: #435826 none;
    min-height: 0;
    margin: 0;
    padding: 0;
}

footer .container {
    padding-top: 40px;
}

footer .container aside .wrapper {
	padding: 0 0 0 20px;
}

footer .container aside .wrapper .contact {
	width: 260px;
}

footer .container aside .wrapper .quickLinks {
	margin-left: 260px;
}

footer .container aside a:hover {
    text-decoration: underline;
}

footer .container .note a:hover {
	text-decoration: none;	
}

footer .container .note, footer .container .note p, footer .container .note a, footer .container aside .contact td, footer .container aside .contact p, footer .container aside .contact a, footer .container aside .quickLinks a {
    font-weight: 400;
	color: #fff;
}

footer .container aside .contact h4, footer .container aside .quickLinks h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #fff;
}

footer .socialMedia .facebook, footer .socialMedia .linkedIn {
	display: none;
}

footer .socialMedia a {
	display: block;
    float: left;
	background: #B9B9B9;
	width: 25px;
	height: 25px;
    margin-right: 2px;
	position: relative;
}

footer .socialMedia a:hover {
	background: #00549e;
}

footer .socialMedia a + a:hover {
    background: #007fb1;
}

footer .socialMedia a i {
	position: absolute;
	top: 6px;
	left: 9px;
}

footer .socialMedia a + a i {
    position: absolute;
    top: 6px;
    left: 6px;
}

/**********  END FOOTER  **********/