
/* 	--------------------------------------------------
	LAYOUT
    -------------------------------------------------- */


/* 	--------------------------------------------------
	TABLE OF CONTENTS
    -------------------------------------------------- 

	1.0 GENERAL
	2.0 HEADER
	3.0 CONTENT
	4.0 FOOTER
		4.1 FOOTER NAV
	5.0 NAVIGATION
		5.1 MAIN NAV
		5.3 TOP NAV
		5.3 SUB
		5.4 BREADCRUMB
		5.5 PAGINATION
		5.6 SITEMAP
		5.7 SOCIAL
		5.8 QUICK LINKS
		5.10 SLICK CAROUSEL NAVIGATION
	6.0 PROMO PODS
	7.0 LISTING
		7.1 BLOG LISTING
		7.2 SEARCH LISTING
		7.3 SECTION LISTING
		7.4 GRID LISTING
	8.0 SITE WIDE PODS
		8.1 BLOCKQUOTE POD
		8.2 CODE POD
		8.3 GENERAL POD
		8.4 IMAGE POD
		8.5 LISTING POD
		8.6 NEWSLETTER POD
		8.7 VIDEO POD
	9.0 STANDARD PAGE COMPONENTS
		9.1 TABBED
		9.2 ACCORDION
		9.3 QUOTES
		9.4 IMAGES
		9.5 GALLERY
		9.6 RESOURCES
		9.7 TABLES
		9.8 COMMENTS
		9.9 AUTHOR BIO
		9.10 IMAGE SLIDESHOW
		9.11 PRICING MENU
	10.0 ADVANCED PAGE COMPONENTS
	    10.1 STANDARD PAGE COMPONENTS ON ADVANCED PAGE
		10.2 BANNER
			10.2.2 BANNER VIDEOS
		10.3 CTA STRIP
    	10.4 PROMO PODS
	    10.5 TEXT WITH IMAGE / VIDEO
	    10.6 TEXT WITH SIGNUP
	    10.7 SIGNUP WITH LISTING
	    10.8 APC TABBED
	    10.9 GRID
		10.10 IMAGE CAROUSEL
        10.11 FEATURED BLOGS
        10.12 POD WINDOWS
	11.0 FORMS
		11.1 SITE SEARCH
		11.2 AJAX LOADING
		11.3 COOKIES
	12.0 MISC
		12.1 OVERLAY ICONS
	
	
	COLOURS 
	
	c1	#1c4484		241,103,57
	c2	#cccccc		204,204,204
	c3	#151515		21,21,21
	c4	#f4f4f4		244,244,244
	c5 	#ffffff		255,255,255
	c6  #eeeeee		238,238,238
	c7  #f16739		241,103,57
	c8  #006db2		0,109,178
	c9  #f47b20		244,123,32
	
*/

/*
	
	BOOTSTRAP BREAKPOINTS
	
	.col-xs-	< 768px		(container width 100%)
	.col-sm-	> 768px		(container width 750px)
	.col-md-	> 992px		(container width 970px)
	.col-lg-	> 1200px	(container width 1170px)
	
*/



/*	----------------------------------------------------------------------------------------------------
	1.0 GENERAL
	---------------------------------------------------------------------------------------------------- */
	
	body { 
		position:relative;
		
    	-webkit-animation-duration: 0.5s;
    	animation-duration: 0.5s;
    	-webkit-animation-name: fadeIn;
    	animation-name: fadeIn;
		}
	body:not(.no-header) { 
		padding-top:70px;
		}
	#site {
		position:relative; z-index:2;
		box-shadow:0 0 100px rgba(0,0,0,0.1);
		}	
		
	@media (min-width:768px) {
		
	}
		
	@media (min-width:992px) {
		
	body:not(.no-header) {
		padding-top:140px;
		}
		
	}	
		
	@media (min-width:1200px) {
		
	}	
		
	@media (min-width:1500px) {
		
	body.fixed-width #site,
    body.fixed-width header {
	    right:auto; left:auto;
	    max-width:1500px; margin:0 auto;
	    }	

	}


/*	----------------------------------------------------------------------------------------------------
	2.0 HEADER
	---------------------------------------------------------------------------------------------------- */

	header {
		position:fixed; top:0; right:0; left:0;
		width:100%; min-height:70px;
		z-index:500;
		overflow:visible;
        background-color: rgba(28,68,132,0.975);
		/*background-color:rgba(21,21,21,0);*/
		box-shadow:0 0 0 0 rgba(0,0,0,0);
		
		-webkit-transition:background-color 0.3s ease-in-out 0s, height 0.3s ease-in-out 0s, top 0.3s ease-in-out 0s, bottom 0.3s ease-in-out 0s, box-shadow 0.3s ease-in-out 0s;
		-moz-transition:background-color 0.3s ease-in-out 0s, height 0.3s ease-in-out 0s, top 0.3s ease-in-out 0s, bottom 0.3s ease-in-out 0s, box-shadow 0.3s ease-in-out 0s;
		-ms-transition:background-color 0.3s ease-in-out 0s, height 0.3s ease-in-out 0s, top 0.3s ease-in-out 0s, bottom 0.3s ease-in-out 0s, box-shadow 0.3s ease-in-out 0s;
		transition:background-color 0.3s ease-in-out 0s, height 0.3s ease-in-out 0s, top 0.3s ease-in-out 0s, bottom 0.3s ease-in-out 0s, box-shadow 0.3s ease-in-out 0s;
		}						
	html.reveal-out header {
		bottom:0; 
		height:100%; max-height:100%;
		overflow:auto;
		padding:70px 0 20px;
		}
	html.nav-up header {
		top:-90px;
		}
	html.nav-down header {
		top:0;
		}

html.nav-up header,
html.nav-down header {
    /*background-color: #151515;
    background-color: rgba(21,21,21,1);*/
    /*background-color: #1c4484;
    background-color: rgba(28,68,132,0.975);*/
    box-shadow: 0 2px 1px rgba(21,21,21,0.05);
}

html.nav-down.reached-top header {
    /*background-color: rgba(28,68,132,0.975);*/
    /*background-color: rgba(21,21,21,0);*/
    box-shadow: 0 0 0 0 rgba(0,0,0,0);
}	
		
	header #logo { 
		position:absolute; top:15px; left:15px; z-index:501;
        -webkit-transition: all 800ms;
        -moz-transition: all 800ms;
        -ms-transition: all 800ms;
        -o-transition: all 800ms;
        transition: all 800ms;
		}
	header #logo.no-image { 
		top:23px;
		}
	header #logo a { 
		display:block; 
		text-indent:-9999px;
		}
	header #logo.no-image a { 
		text-indent:0;
		font-size:30px;
		}
	header #logo a:active {
		position:relative;
		top:1px;
		}
	
	
	@media (min-width:0) and (max-width:991px) {

    html.nav-up:not(.reveal-out) header {
        top:-100px; /*Hides the 'mobile' menu top on scroll*/
        /*top: 0px*/
        }
		
	html.reveal-out header, html.nav-down.reached-top.reveal-out header {
		background-color:#151515; background-color:rgba(21,21,21,1);
		}	
		
	header nav.cta-link { 
		margin:10px 15px 20px;
		}
	header nav.cta-link a {
		display:block;
		}
		
	}		
			
	@media (min-width:480px) and (max-width:991px) {
	
	header .container {
		width:100%;
		}
		
	}
		
	@media (min-width:768px) {
		
	}	
	
	@media (min-width:992px) {
	
	header {		
		}
	html.reveal-out header {
		padding:0; overflow:visible; bottom:auto;
		}
	html.reveal-out header,
	header,
	header .container {
		height:140px;
		}
	header .container {
		position:relative;
		transition:all 1s ease-in-out 0s;
		} 
		
	header #logo {
		top:20px; 
		}
	header #logo.no-image { 
		top:38px;
		}
		
	header nav.cta-link { 
		position:absolute; top:88px; right:15px; z-index:1000;
		}
	header nav.cta-link a {
		height:50px;
		padding:14px 12px;
		}
		
	html.nav-up header #logo,
	html.nav-up header .site-search,
	html.nav-up header nav.top { 
		/*opacity:0;*/
        top: 92px;
        -webkit-transition: all 800ms;
        -moz-transition: all 800ms;
        -ms-transition: all 800ms;
        -o-transition: all 800ms;
        transition: all 800ms;
		}

    html.nav-down header #logo,
    html.nav-down header nav.main,
    html.nav-down header .site-search,
    html.nav-down header nav.top {
        -webkit-transition: all 800ms;
        -moz-transition: all 800ms;
        -ms-transition: all 800ms;
        -o-transition: all 800ms;
        transition: all 800ms;
        }
	html.nav-up header .container {
		width:100%;
		}
	html.nav-up header nav.cta-link { 
		right:2px;
        top: 89px;
		}
    html.nav-up header nav.top {
            /*right: 130px;*/
        }
		
	}
		
	@media (min-width:1200px) {
		
	}



/*	----------------------------------------------------------------------------------------------------
	3.0 CONTENT
	---------------------------------------------------------------------------------------------------- */
	
	.content { 
		padding:16px 0;
		}
	.content.short { 
		padding:8px 0;
		}
		
	@media (max-width:767px) {
	
	.content #left-col,
	.content #right-col,
	.content #mid-col {
		padding-bottom:24px;
		}
		
	}
		
	@media (min-width:768px) {
		
	.content { 
		padding:24px 0;
		}
		
	}
		
	@media (min-width:992px) {	
		
	.content { 
		padding:32px 0;
		}
		
	}	
		
	@media (min-width:1200px) {		
		
	.content { 
		padding:48px 0;
		}
	
	}


/*	----------------------------------------------------------------------------------------------------
	4.0 FOOTER
	---------------------------------------------------------------------------------------------------- */
	
	footer { 
		padding:16px 0;
		}
	footer p.heading {
		font-size:18px;
		}
	footer .company-details,
	footer .quick-links {
		margin-bottom:30px;
		}	
		
	@media (min-width:768px) {
		
	footer .company-details,
	footer .quick-links {
		margin-bottom:0;
		}
		
	}
		
	@media (min-width:768px) and (max-width:991px) {
		
	footer { 
		padding:24px 0;
		}
		
	}
		
	@media (min-width:992px) {	
		
	footer { 
		padding:32px 0 80px;
		}	
		
	}	
		
	@media (min-width:1200px) {	
		
	footer { 
		padding:48px 0 80px;
		}
		
	}	
	


/*  --------------------------------------------------
    5.0 NAVIGATION             
    -------------------------------------------------- */
     
	html.reveal-out {
		overflow:hidden;
		}
		
	.navigation {
		position:relative; z-index:5;
		}
	html.reveal-out .navigation {
		overflow:auto;
		}
		
	.navigation .reveal {
		display:none;
		}
	html.reveal-out .navigation .reveal {
		display:block;
		}
		
	header a.expand {
		position:absolute; top:0; right:0; z-index:300;
		width:70px; height:70px;
		display:block;
		text-indent:-9999px;
		text-decoration:none;
		cursor:pointer;
		}	
	header a.expand em {
		display:none; 
		-webkit-transition:none;
		-moz-transition:none;
		-ms-transition:none;
		transition:none;
		}	
	header a.expand span {
		display:block;
		width:30px; height:3px; 
		position:absolute; right:15px;
		background-color:#ffffff; background-color:rgba(255,255,255,1);
		
		-webkit-opacity:1;
		-moz-opacity:1;
		-ms-opacity:1;
		opacity:1;
		
		-webkit-transition:
			transform 0.3s ease-in-out 0s, 
			opacity 0.2s ease-in-out 0.3s, 
			left 0.3s ease-in-out 0.3s, 
			top 0.3s ease-in-out 0.3s, 
			width 0.3s ease-in-out 0.3s
			;
		-moz-transition:
			transform 0.3s ease-in-out 0s, 
			opacity 0.2s ease-in-out 0.3s, 
			left 0.3s ease-in-out 0.3s, 
			top 0.3s ease-in-out 0.3s, 
			width 0.3s ease-in-out 0.3s
			;
		-ms-transition:
			transform 0.3s ease-in-out 0s, 
			opacity 0.2s ease-in-out 0.3s, 
			left 0.3s ease-in-out 0.3s, 
			top 0.3s ease-in-out 0.3s, 
			width 0.3s ease-in-out 0.3s
			;
		transition:
			transform 0.3s ease-in-out 0s, 
			opacity 0.2s ease-in-out 0.3s, 
			left 0.3s ease-in-out 0.3s, 
			top 0.3s ease-in-out 0.3s, 
			width 0.3s ease-in-out 0.3s
			;
		}
	header a.expand.active span {
		
		-webkit-transition:
			transform 0.3s ease-in-out 0.2s, 
			opacity 0.2s ease-in-out 0s, 
			left 0.3s ease-in-out 0s, 
			top 0.3s ease-in-out 0.3s, 
			width 0.3s ease-in-out 0s
			;
		-moz-transition:
			transform 0.3s ease-in-out 0.2s, 
			opacity 0.2s ease-in-out 0s, 
			left 0.3s ease-in-out 0s, 
			top 0.3s ease-in-out 0.3s, 
			width 0.3s ease-in-out 0s
			;
		-ms-transition:
			transform 0.3s ease-in-out 0.2s, 
			opacity 0.2s ease-in-out 0s, 
			left 0.3s ease-in-out 0s, 
			top 0.3s ease-in-out 0.3s, 
			width 0.3s ease-in-out 0s
			;
		transition:
			transform 0.3s ease-in-out 0.2s, 
			opacity 0.2s ease-in-out 0s, 
			left 0.3s ease-in-out 0s, 
			top 0.3s ease-in-out 0.3s, 
			width 0.3s ease-in-out 0s
			;
		}
	header a.expand span.top {
		top:26px;
		}
	header a.expand span.mid {
		top:34px;
		}
	header a.expand span.bottom {
		top:42px;
		}
	header a.expand.active span.mid {
		width:0;
		}
	header a.expand.active span.top,
	header a.expand.active span.bottom {
		top:34px;
		}
	header a.expand.active span.top {
		transform:rotate(-45deg);
		-ms-transform:rotate(-45deg);
		-webkit-transform:rotate(-45deg); 
		-moz-transform:rotate(-45deg);
		}
	header a.expand.active span.bottom {		
		transform:rotate(45deg);
		-ms-transform:rotate(45deg);
		-webkit-transform:rotate(45deg); 
		-moz-transform:rotate(45deg);
		}
		
	
	@media (min-width:0) and (max-width:991px) {
	
	html.reveal-out #site { 
		height:0px;
		}	
		
	}
	
	@media (min-width:992px) {
		
	html.reveal-out {
		overflow:auto;
		}
	html.reveal-out .navigation {
		overflow:visible;
		}
	header a.expand {
		display:none;
		}
	.navigation .reveal {
		display:block;
		}
		
	}		
                            
                            
                            
/*  --------------------------------------------------
    5.1 MAIN NAV             
    -------------------------------------------------- */

    .navigation nav.main {
        }	
		
	.navigation nav.main ul {
		}
	.navigation nav.main > ul {
		}

	.navigation nav.main ul li span {
		position:relative;
		display:block;
		}
	.navigation nav.main ul li span i {
		position:absolute; top:0; right:0;
		display:block;
		width:50px; height:50px;
		margin:0;
		padding-top:18px;
		text-align:center;
		color:#ffffff;
		}
	.navigation nav.main ul li span i {
		z-index:99;
		}
	html.touch .navigation nav.main ul li span i {
		z-index:101;
		background-color:rgba(255,255,255,0.1);
		}
	.navigation nav.main ul li a {
		display:block;
		}
	.navigation nav.main > ul > li > span a {
		position:relative;
		height:50px;
		padding:18px 15px;
		color:#ffffff;
		}
	.navigation nav.main ul li span a {
		z-index:101;
		}
	html.touch .navigation nav.main > ul > li > span a { 
		z-index:99;
		}
	.navigation nav.main ul li span.active a {
		}
	.navigation nav.main > ul > li.has-child > span a {
		padding-right:50px;
		}
	.navigation nav.main > ul > li > span.active,
	html.touch .navigation nav.main > ul > li.open,
	html.no-touch .navigation nav.main > ul > li:hover {
		background-color:#1c4484; background-color:rgba(241,103,57,1);
		}
	.navigation nav.main > ul > li > span.active > a,
	html.touch .navigation nav.main > ul > li.open > span > a,
	html.no-touch .navigation nav.main > ul > li:hover > span > a {
		color:#ffffff;
		}
		
	.navigation nav.main ul li ul li span > a {
		display:block;
		color:#ffffff;
		padding:18px 15px;
		}
		
	.navigation nav.main > ul > li.has-child ul { 
		position:relative;	
		background-color:#1c4484; background-color:rgba(241,103,57,1);
		}
	.navigation nav.main ul li span a::before { 
		content:"";
		position:absolute; top:0; bottom:0; left:0;
		width:3px; height:100%;
		}
		
	@media (min-width:0) and (max-width:991px) { 
		
	.navigation nav.main {
		border-width:0 0 1px; border-style:solid; border-color:rgba(255,255,255,0.2);
		}
	.navigation nav.main ul li {
		border-width:1px 0 0; border-style:solid; border-color:rgba(255,255,255,0.2);
		}
	.navigation nav.main ul li.has-child ul {
		display:none;
		}
	.navigation nav.main ul li.has-child.open-mobile > ul {
		display:block;
		}
	.navigation nav.main ul li.has-child ul li a {
		height:50px;
		}
		
	.navigation nav.main > ul > li > span a { 
		z-index:99;
		}
	.navigation nav.main ul li span.active a::before { 
		background-color:#151515; background-color:rgba(21,21,21,1);
		}
		
	.navigation nav.main ul li span i {
		z-index:101;
		background-color:rgba(255,255,255,0.1);
		}
	.navigation nav.main ul li span i { 
		border-width:0 0 0 1px; border-style:solid; border-color:rgba(255,255,255,0.2);
		}
	.navigation nav.main ul li.has-child.open > span i::before { 
    	-webkit-transform: rotate(180deg);
		-moz-transform: rotate(180deg); 
    	-ms-transform: rotate(180deg);
    	transform: rotate(180deg);
		}
		
	.navigation nav.main ul li.more-children {
		display:none!important;
		}
	
	}	
		
	@media (min-width:992px) { 
	
	.navigation,
	.navigation nav.main,
	.navigation nav.main ul {
		z-index:500;
		position:relative; overflow:visible;
		}
			
	.navigation nav.main {
		position:absolute; top:90px; 
        left:0px;
		height:50px;
		}
    html.nav-up .navigation nav.main {
        left:220px;
        -webkit-transition: all 800ms;
        -moz-transition: all 800ms;
        -ms-transition: all 800ms;
        -o-transition: all 800ms;
        transition: all 800ms;
        } 	
	.navigation nav.main > ul {
		position:relative; z-index:1000;
		line-height:0;
		overflow:visible;
		border:0 none;
		}
	.navigation nav.main > ul > li {
		float:left;
		}
	.navigation nav.main ul li span i {
		width:25px; height:50px;
		padding-top:20px;
		font-size:10px;
		}
	html.touch .navigation nav.main ul li span i {
		background-color:rgba(255,255,255,0.1);
		}
	.navigation nav.main > ul > li > span {
		position:relative;
		}
	.navigation nav.main > ul > li > span a {
		}
	html.touch .navigation nav.main > ul > li.has-child > span a { 
		padding-right:40px;
		}
	.navigation nav.main > ul > li.has-child > span a {
		padding-right:30px;
		}
	.navigation nav.main > ul > li { 
		z-index:1000;
		}
		
	/* DROPDOWN NAVIGATION */
	.navigation nav.main > ul > li.has-child {
		position:relative;
		}
	.navigation nav.main > ul > li.has-child ul {
		position:absolute; top:50px; left:-999em; z-index:2000;
		width:280px; height:auto;
		padding:0;
		text-align:left;
		
		-webkit-box-shadow:5px 5px 0 rgba(0,0,0,0.05);
		-moz-box-shadow:5px 5px 0 rgba(0,0,0,0.05);
		-ms-box-shadow:5px 5px 0 rgba(0,0,0,0.05);
		-o-box-shadow:5px 5px 0 rgba(0,0,0,0.05);
		box-shadow:5px 5px 0 rgba(0,0,0,0.05);
		}
	.navigation nav.main > ul > li.has-child ul li { 
		position:relative;
		}
	.navigation nav.main ul li.has-child ul li span a {
		display:block; float:none;
		height:auto;
		}
	html.touch .navigation nav.main > ul > li.has-child > ul > li.has-child > span a { 
		padding-right:40px;
		}
	.navigation nav.main ul li.has-child ul li span i {
		top:0; bottom:0;
		font-size:10px; padding-top:18px;
		height:100%;
		}
	.navigation nav.main ul li.has-child ul li span a::before { 
		background-color:rgba(255,255,255,0.1);
		}
	html.no-touch .navigation nav.main ul li.has-child ul li span a:hover::before { 
		background-color:rgba(255,255,255,0.5);
		}
	html.no-touch .navigation nav.main ul li.has-child ul li span.active a,
	html.no-touch .navigation nav.main ul li.has-child ul li span a:hover { 
		background-color:rgba(255,255,255,0.1);
		}
	html.no-touch .navigation nav.main ul li.has-child ul li span.active a:hover::before,
	.navigation nav.main ul li.has-child ul li span.active a::before { 
		background-color:rgba(21,21,21,1);
		}
		
	html.touch .navigation nav.main ul li.has-child.open ul,
	html.no-touch .navigation nav.main ul li.has-child:hover ul {
		left:0; 
		}
	html.touch .navigation nav.main ul li.has-child.open ul ul,
	html.no-touch .navigation nav.main ul li.has-child:hover ul ul {
		top:0; left:-999em; 
		}
	html.touch .navigation nav.main ul li ul li.has-child.open ul,
	html.no-touch .navigation nav.main ul li ul li.has-child:hover ul { 
		left:280px;
		}
	
	/* LAST CHILD & MORE DROPDOWN */	
	html.touch .navigation nav.main > ul > li.has-child.open:last-of-type ul,
	html.no-touch .navigation nav.main > ul > li.has-child:hover:last-of-type ul,
	html.touch .navigation nav.main ul li.has-child.more-children.open ul,
	html.no-touch .navigation nav.main ul li.has-child.more-children:hover ul {
		right:0; left:auto;
		}
	html.touch .navigation nav.main > ul > li.has-child.open:last-of-type ul ul,
	html.no-touch .navigation nav.main > ul > li.has-child:hover:last-of-type ul ul { 
		left:-999em; 
		}
	html.touch .navigation nav.main > ul > li:last-of-type > ul > li.has-child.open ul,
	html.no-touch .navigation nav.main > ul > li:last-of-type > ul > li.has-child:hover ul {
		right:auto; left:-280px;
		}
		
	.navigation nav.main ul li.more-children ul.more-dropdown ul,
	.navigation nav.main ul li.more-children ul.more-dropdown i {
		display:none!important;
		}
	
	}	
		
	@media (min-width:1200px) { 
			
	}
                            
                            
                            
/*  --------------------------------------------------
    5.2 TOP NAVIGATION             
    -------------------------------------------------- */

	.navigation nav.top {
		padding:15px 0 0 15px;
		}
	.navigation nav.top > ul,
	.navigation nav.top ul .dropdown-menu {
		font-size:14px;
		font-weight:500!important;
		border:0 none;
		}
	.navigation nav.top ul > li {
		display:block; margin:15px 0;
		}
	.navigation nav.top li a {
		color:#ffffff; color:rgba(255,255,255,1);
		}
	.navigation nav.top li i.ion-chevron-down { 
		font-size:10px;
		}
		
	@media (min-width:0) and (max-width:991px) {
	
	.navigation nav.top ul .dropdown-menu {
		position:relative; top:auto; right:auto; bottom:auto; left:auto;
		float:none!important;
		width:auto;
		background:none; border:0 none;
		box-shadow:none;
		}
	.navigation nav.top ul .dropdown-menu li a {
		padding:0;
		background:none!important;
		}	
		
	}	
		
	@media (min-width:768px) { 
		
	}
		
	@media (min-width:992px) {
		
	.navigation nav.top {
		position:absolute; top:22px; right:15px;
		padding:5px 0 0 0;
		}
		
	.navigation nav.top ul > li {
		display:block; float:left; margin:0 0 0 15px;
		}
    .navigation nav.top nav-down {
            right: 135px;
        }
	.navigation nav.top li a {
		display:block;
		padding:12px 0;
		height:30px;
		}
		
	.navigation nav.top ul .dropdown-menu {
		top:35px; right:0;
		margin:0; padding:0;
		min-width:160px;
		}	
	.navigation nav.top ul .dropdown-menu li {
		margin:0; float:none;
		}
	.navigation nav.top ul .dropdown-menu li a {
		display:block; padding:10px;
		height:auto;
		color:#1c4484; color:rgba(241,103,57,1);
		}
	.navigation nav.top ul .dropdown-menu li a:hover {
		border-radius:4px;
		}		
	}
				
	@media (min-width:1200px) { 
		
	}
		                     
                            
                            
/*  --------------------------------------------------
    5.3 SUB NAVIGATION             
    -------------------------------------------------- */

	nav.sub {
		position:relative;
		margin-bottom:30px;
		}
	nav.sub p.heading {
		font-size:18px;
		margin:0;
		}
	nav.sub.categories p.heading,
	nav.sub p.heading a { 
		display:block;
		}
		
	nav.sub ul {
		margin:0;
		}
	nav.sub ul ul {
		font-size:16px;
		}
	nav.sub ul ul ul {
		margin-left:10px;
		}
	nav.sub ul li {
		position:relative;
		}
	nav.sub ul li a {
		display:block; padding:10px 0;
		background:transparent;
		
		-webkit-transition:all 0.2s ease-in-out 0s;
		-moz-transition:all 0.2s ease-in-out 0s;
		-ms-transition:all 0.2s ease-in-out 0s;
		transition:all 0.2s ease-in-out 0s;
		}	
	html.no-touch nav.sub ul li a:hover {
		padding-left:3px;
		}	
	
	/* ACTIVE */	
	nav.sub ul li.active > a {
		color:#151515; color:rgba(21,21,21,1);
		}
		
	nav.sub ul ul {
		font-size:95%;
		}
	nav.sub ul ul li a {
		padding:6px 0 6px 15px;
		}
	html.no-touch nav.sub ul ul li a:hover {
		padding-left:20px;
		}
		
	nav.sub ul ul li::before {
		content:"";
		position:absolute; top:11px; left:0;
		width:10px; height:3px;
		background-color:rgba(241,103,57,0.3);
		}
	nav.sub ul ul li:not(.active):hover::before { 
		width:15px;
		background-color:#1c4484; background-color:rgba(241,103,57,1);
		}
	nav.sub ul ul li.active::before {
		background-color:rgba(21,21,21,1);
		}
		
	nav.sub ul li.active > a, html.no-touch nav.sub ul li.active > a:hover, nav.sub ul li.active > a, html.no-touch nav.sub ul li.active > a:hover {
		padding-left:0;
		}		
	nav.sub ul ul li.active > a, html.no-touch nav.sub ul ul li.active > a:hover, nav.sub ul ul li.active > a, html.no-touch nav.sub ul ul li.active > a:hover {
		padding-left:15px;
		}		
	
	@media (min-width:768px) {
		
	}
	
	@media (min-width:992px) {
		
	}
	
	@media (min-width:1200px) {
		
	}			
	
                            
                            
/*  --------------------------------------------------
    5.4 BREADCRUMB NAVIGATION             
    -------------------------------------------------- */

	.breadcrumb-trail {
		overflow:hidden;
		height:60px;
		}
	.c5-bg + .breadcrumb-trail {
		border-width:1px 0 0; border-style:solid; border-color:#f4f4f4; border-color:rgba(244,244,244,1);
		}
	.breadcrumb-trail ol { 
		padding:0; margin:0;
		background:transparent;
		font-size:14px;
		}
	.breadcrumb-trail ol li {
		position:relative;
		display:inline-block;
		}
	.breadcrumb-trail ol li.active {
		opacity:0.6;
		}
		
	.breadcrumb-trail ol li a {
		display:inline-block;
		height:60px;
		}
	.breadcrumb-trail ol li span {
		padding:23px 40px 0 10px;
		display:block;
		height:60px;
		}
	.breadcrumb-trail ol li:first-child span {
		padding-left:0;
		}	
		
	.breadcrumb-trail ol li::before,
	.breadcrumb-trail ol li::after {
		content:"";
		position:absolute; top:-7px; right:15px;
		width:3px; height:40px;
		background-color:#f4f4f4; background-color:rgba(244,244,244,1);
		
		-webkit-transform:rotate(-30deg); 
		-moz-transform:rotate(-30deg);
		-ms-transform:rotate(-30deg);
		transform:rotate(-30deg);
		}
	.breadcrumb-trail ol li::after {
		top:auto; bottom:-7px;
		
		-webkit-transform:rotate(30deg); 
		-moz-transform:rotate(30deg);
		-ms-transform:rotate(30deg);
		transform:rotate(30deg);
		}

	.breadcrumb-trail ol li.active::before,
	.breadcrumb-trail ol li.active::after {
		display:none;
		}		
	
	@media (min-width:768px) {
		
	}
	
	@media (min-width:992px) {
		
	}
	
	@media (min-width:1200px) {
		
	}
                            
                            
                            
/*  --------------------------------------------------
    5.5 PAGINATION NAVIGATION             
    -------------------------------------------------- */

	nav#pagination {
		margin-bottom:30px;
		}
	nav#pagination.post {
		}
	nav#pagination .pagination {
		position:relative;
		overflow:hidden; min-height:50px;
		margin:0;
		display:block;
		font-size:0;
		}
	.listing.shop nav#pagination {
		margin:0;
		}
	.listing.shop nav#pagination .pagination {
		border:0 none;
		}
	nav#pagination .pagination li {
		border:0 none;
		display:inline-block;
		font-size:15px;
		margin:0 4px;
		}
	nav#pagination .pagination li.prev,
	nav#pagination .pagination li.next {
		position:absolute; top:0; left:0;
		}
	nav#pagination .pagination li.next {
		right:0; left:auto;
		}
		
	nav#pagination .pagination li a {
		border:0 none; 
		padding:13px 20px; 
		color:#1c4484; color:rgba(241,103,57,1);
		}
	html.no-touch nav#pagination .pagination li:not(.active) a:hover {
		color:#ffffff; color:rgba(255,255,255,1);
		background-color:#1c4484; background-color:rgba(241,103,57,1);
		}
		
	nav#pagination .pagination li.prev,
	nav#pagination .pagination li.next {
		margin:0;
		}

	nav#pagination .pagination li.active a {
		font-weight:700;
		color:#ffffff; color:rgba(255,255,255,1);
		background-color:#151515; background-color:rgba(21,21,21,1);
		}
	
	@media (min-width:768px) {
		
	}
	
	@media (min-width:992px) {
		
	}
	
	@media (min-width:1200px) {
		
	}
                            
                            
                            
/*  --------------------------------------------------
    5.6 SITEMAP NAVIGATION             
    -------------------------------------------------- */

	nav.sitemap {
		overflow:hidden;
		height:100%;
		position:relative;
		}
	nav.sitemap ul { 
		margin:0; padding:0 0 8px;
		}
	nav.sitemap ul li {
		position:relative;
		display:block;
		padding:0; margin:0;
		}
	html.no-touch nav.sitemap ul li a:hover { 
		padding-left:20px;
		}
	nav.sitemap ul li::before,
	nav.sitemap ul li::after { 
		content:"";
		position:absolute; left:0;
		display:block;
		background-color:#eeeeee; background-color:rgba(238,238,238,1);
		}
	nav.sitemap ul li::before { 
		top:0; bottom:0;
		width:3px; height:100%;
		}
	nav.sitemap ul li::after { 
		top:15px;
		width:10px; height:3px;
		}
	nav.sitemap ul ul {
		margin-left:20px;
		}	
	
	@media (min-width:768px) {
		
	}
	
	@media (min-width:992px) {
		
	}
	
	@media (min-width:1200px) {
		
	}
                            
                            
                            
/*  --------------------------------------------------
    5.7 SOCIAL NAVIGATION        
    -------------------------------------------------- */
                    
	nav.social { 
		margin-bottom:30px;		
		}
	nav.social ul {
		line-height:0;
		}
	nav.social ul li {
		display:inline-block; position:relative;
		margin:0 2px 5px 0;
		}
	nav.social ul li a {
		display:block; float:left;
		text-indent:-9999px;
		width:40px; height:40px;
		background-image:url('/images/icons/social.png');
		background-repeat:no-repeat;
		background-size:40px auto;
		}	
	nav.social ul li.first a { 
		}
	nav.social ul li.last a { 
		}
	
	nav.social ul li.facebook a {
		background-position:left top;
		}
	nav.social ul li.twitter a {
		background-position:left -40px;
		}
	nav.social ul li.linkedin a {
		background-position:left -80px;
		}
	nav.social ul li.google_plus a {
		background-position:left -120px;
		}
	nav.social ul li.pinterest a {
		background-position:left -160px;
		}
	nav.social ul li.instagram a {
		background-position:left -200px;
		}
	nav.social ul li.flickr a {
		background-position:left -240px;
		}
	nav.social ul li.tumblr a {
		background-position:left -280px;
		}
	nav.social ul li.vimeo a {
		background-position:left -320px;
		}
	nav.social ul li.youtube a {
		background-position:left -360px;
		}
	nav.social ul li.dribble a {
		background-position:left -400px;
		}
	nav.social ul li.skype a {
		background-position:left -440px;
		}
	nav.social ul li.rss a {
		background-position:left -480px;
		} 
	nav.social ul li.soundcloud a {
		background-position:left -560px;
		}
	nav.social ul li.behance a {
		background-position:left -600px;
		}
	
	@media (min-width:768px) {
		
	}
	
	@media (min-width:992px) {
		
	}
	
	@media (min-width:1200px) {
		
	}

                            
                            
/*  --------------------------------------------------
    5.8 QUICK LINKS           
    -------------------------------------------------- */
     
	.quick-links {
		}
	.quick-links ul {
		}
	.quick-links ul li {
		margin-bottom:10px;
		}      
	.quick-links ul li a {
		display:block;
		padding-left:10px;
		}
	html.no-touch .quick-links ul li a:hover {
		padding-left:15px;
		}
	.quick-links ul li a::after {
		content:"";
		position:absolute; top:7px; left:15px;
		display:block;
		width:5px; height:3px;
		background-color:rgba(21,21,21,0.3);
		} 
	html.no-touch .quick-links ul li a:hover::after { 
		width:10px;
		background-color:rgba(21,21,21,0.5);
		}
	footer .quick-links ul li a::after { 
		background-color:rgba(255,255,255,0.3);
		}
	html.no-touch footer .quick-links ul li a:hover::after { 
		background-color:rgba(255,255,255,0.5);
		}
	
	@media (min-width:768px) {
		
	}
	
	@media (min-width:992px) {
		
	}
	
	@media (min-width:1200px) {
		
	}
                            
    
                        
/*  --------------------------------------------------
    5.9 FOOTER NAVIGATION             
    -------------------------------------------------- */
     
	nav.footer {
		padding:80px 0 0;
		}
	nav.footer ul {
		font-size:12px;
		}
	nav.footer ul li {
		display:block; padding:10px 0;
		}	
	nav.footer ul li a,
	nav.footer ul li div {
		display:inline;
		padding:0;
		}
	nav.footer ul li.site-credit a {
		font-weight:500;
		}
		
	@media (min-width:768px) {
		
	nav.footer ul li {
		margin:0 8px 0 0; padding:0;
		display:inline-block;
		}
		
	nav.footer ul li.site-credit {
		clear:both;
		display:block;
		padding:40px 0 0;
		}
		
	}
		
	@media (min-width:768px) and (max-width:991px) {	
		
	}
		
	@media (min-width:992px) {
		
	nav.footer ul li.site-credit {
		float:right; clear:none; padding:0;
		}
		
	}
		
	@media (min-width:1200px) {
		
	}	
                            
                            
                            
/*  --------------------------------------------------
    5.10 SLICK CAROUSEL NAVIGATION            
    -------------------------------------------------- */
		
	.slick-prev, .slick-next {		
   		display: table;
		}
	.slick-prev i, .slick-next i {
		position:relative;
		margin:0!important;
		display:block;
		text-align:center;
   		display: table-cell;
   		vertical-align: middle;
		}
		
	.slick-prev, .slick-next {
		width:50px; height:50px;
		position:absolute; top:50%; z-index:200;
		background:none;
		border:0 none;
		cursor:pointer;
		background-color:rgba(241,103,57,0.8);
		color:#ffffff; color:rgba(255,255,255,1);
		
		transform:translateY(-50%);
		}		
	.slick-prev {
		left:0;
		background-color:rgba(241,103,57,0.4);
		}
	.slick-next {
		right:0;
		}
	html.no-touch .slick-prev:hover, html.no-touch .slick-next:hover {
		background-color:rgba(241,103,57,1);
		}
		
	.c1-bg .slick-prev, .c1-bg .slick-next { 
		background-color:rgba(21,21,21,0.8);
		}
	.c1-bg .slick-prev { 
		background-color:rgba(21,21,21,0.4);
		}
	html.no-touch .c1-bg .slick-prev:hover, html.no-touch .c1-bg .slick-next:hover {
		background-color:rgba(21,21,21,1);
		}
		
	.slick-prev i, .slick-next i {
		font-size:20px;
		}		
		
	ul.slick-dots {
		position:absolute; right:0; bottom:20px; left:0;
		width:100%;
		margin:0;
		text-align:center;
		}
	ul.slick-dots li {
		margin:0 5px;
		display:inline-block;
		width:10px; height:10px;
		}
	ul.slick-dots li button {
		border-radius:50%;
		width:12px; height:12px;
		background-color:rgba(21,21,21,0.4);
		
		-webkit-transition:background-color 0.2s ease-in-out 0s, border-color 0.2s ease-in-out 0s;
		-moz-transition:background-color 0.2s ease-in-out 0s, border-color 0.2s ease-in-out 0s;
		-ms-transition:background-color 0.2s ease-in-out 0s, border-color 0.2s ease-in-out 0s;
		transition:background-color 0.2s ease-in-out 0s, border-color 0.2s ease-in-out 0s;
		}	
	ul.slick-dots li.slick-active button {
		background-color:#151515; background-color:rgba(21,21,21,1);
		}
		
	.banner ul.slick-dots li button,
	.c1-bg ul.slick-dots li button, .c2-bg ul.slick-dots li button, .c3-bg ul.slick-dots li button {
		background-color:rgba(255,255,255,0.4);
		}
	.banner ul.slick-dots li.slick-active button,
	.c1-bg ul.slick-dots li.slick-active button, .c2-bg ul.slick-dots li.slick-active button, .c3-bg ul.slick-dots li.slick-active button {
		background-color:#ffffff; background-color:rgba(255,255,255,1);
		}
	
	@media (min-width:768px) {
		
	.image-carousel .slick-prev, .image-carousel .slick-next {
		top:35%;
		}
		
	}	
		
		
	@media (min-width:992px) {
		
	.banner .slick-prev, .banner .slick-next {
		width:50px; height:50px;
		}
		
	}					
		                       
                            
                            
/*  ----------------------------------------------------------------------------------------------------
    6.0 PROMO PODS         
    ---------------------------------------------------------------------------------------------------- */

	.promo-pods {
		position:relative;
		height:100%;
		}
	.promo-pods .row.alt { 
		/* margin:0; */
		}
		
	.promo-pods .item {
		position:relative;
		margin:0 0 30px;
		}
	.promo-pods .alt .item { 
		/* padding:0; margin:0;*/
		}
		
	html.no-touch .promo-pods .item a:hover .heading,
	html.no-touch .promo-pods .item a:hover .text {
		text-decoration:none;
		}
		
	.promo-pods .item .image {
		margin:0 0 15px;
		}
	.promo-pods .item .inner .image { 
		margin:-15px -15px 15px;
		}
	.promo-pods .alt .item .image { 
		margin:0;
		}
	.promo-pods .item img { 
		overflow:hidden;
		}
		
	.promo-pods .alt .item .info { 
		position:absolute; /* right:0; bottom:0; left:0; */ right:15px; bottom:0; left:15px;
		padding:15px;
		background-color:rgba(21,21,21,0.3);
		}
	html.no-touch .promo-pods .alt .item .info { 
		top:0;
		}
	html.no-touch .promo-pods .alt .item a .info { 
		background-color:rgba(21,21,21,0.3);
		}
	html.no-touch .promo-pods .alt .item a:hover .info {
		background-color:rgba(241,103,57,0.8);
		}
		
	.promo-pods .item a {
		}
		
	.promo-pods .item .heading { 
		display:block;
		margin:0;
		font-size:18px;
		text-decoration:none;
		}
		
	.promo-pods .item .text { 
		display:block;
		margin-top:10px;
		}
	.promo-pods .item .text :first-child {
		margin-top:0;
		}
	.promo-pods .item .text :last-child {
		margin-bottom:0;
		}
	.promo-pods .item .text a {
		display:inline;
		}
	html.no-touch .promo-pods .item .text a:hover { 
		text-decoration:underline;
		}
		
	.promo-pods .item .link {
		margin:20px 0 0;
		}
	.promo-pods .item .link a { 
		}
		
		
	@media (min-width:480px) and (max-width:767px) {
		
	.promo-pods .item {
		width:50%!important; float:left!important;
		}
		
	}
		
	@media (min-width:768px) and (max-width:991px) {
		
	.promo-pods .item:nth-of-type(2n+1) {
		clear:both;
		}
		
	}
		
	@media (min-width:992px) {
		
	.promo-pods .item:nth-of-type(3n+1) {
		clear:both;
		}
		
	.promo-pods .item .inner .image { 
		margin:-20px -20px 20px;
		}
		
	.promo-pods .item .heading {
		font-size:20px;
		}
		
	}
		
	@media (min-width:1200px) {
		
	.promo-pods .item .inner .image { 
		margin:-30px -30px 30px;
		}
		
	.promo-pods .item .heading {
		font-size:22px;
		}
	
	}
                            
                            
                            
/*  ----------------------------------------------------------------------------------------------------
    7.0 LISTING   
    ---------------------------------------------------------------------------------------------------- */

	.listing { 
		position:relative;
		height:100%;
		}
	.apc .listing {
		padding:0; margin:0;
		}	
	.listing .item { 
		margin:0 0 30px;
		}
			
	.listing .item a { 
		}		
	.listing .item .image {
		margin-bottom:15px;
		}
		
	.listing .item .heading { 
		display:block;
		font-size:18px;
		margin:0;
		}
		
	.listing .item .text {
		display:block;
		margin-top:10px;
		}
	.listing .item .text :first-child {
		margin-top:0;
		}
	.listing .item .text :last-child {
		margin-bottom:0;
		}
	.listing .item .text a {
		display:inline;
		}
	html.no-touch .listing .item .text a:hover { 
		text-decoration:underline;
		}
		
	.listing .item .link {
		margin:20px 0 0;
		}
	.listing .item .link a { 
		}
	
		
	@media (max-width:767px) {
		
	.spc.listing .item .pull-right {
		float:none; text-align:left;
		}
	
	}	
		
	@media (min-width:768px) {
		
	}
		
	@media (min-width:992px) {
		
	.listing .item .heading {
		font-size:20px;
		}
		
	}
		
	@media (min-width:1200px) {
		
	.listing .item .heading {
		font-size:22px;
		}
	
	}	      
                            
                            
/*  --------------------------------------------------
    7.1 BLOG LISTING   
    -------------------------------------------------- */
			
	.listing.blog {
		}
		
	.listing.blog .item .inner .image { 
		margin:-15px -15px 15px;
		}

	.listing div.meta { 
		text-transform:uppercase;
		letter-spacing:0.025em;
		font-size:10px;
		}
	html.no-touch div.meta a:hover { 
		text-decoration:underline!important;
		}

	div.meta { 
		}
	.apc .spc .meta { 
		margin-top:0;
		}
	.meta .categories { 
		display:block;
		margin-bottom:10px;
		}
	.meta a {
		display:inline;
		}
	html.no-touch .meta a:hover { 
		text-decoration:underline;
		}
	.meta .author-date {
		margin-top:10px;
		padding-bottom:10px;
		}	
	div.meta .inner {
		}
	.item div.meta {
		margin-top:15px;
		}
	div.meta .row { 
		}
	div.meta .comments {
		padding-bottom:10px;
		}	
		
	@media (min-width:580px) and (max-width:767px) {
		
	.listing.blog .item.col-sm-6 { 
		width:50%;
		}	
	.listing.blog .item:nth-of-type(2n+1) {
		clear:both;
		}
		
	}
		
	@media (min-width:768px) {
		
	}	
		
	@media (min-width:768px) and (max-width:991px) {
				
	.listing.blog .item:nth-of-type(2n+1) {
		clear:both;
		}	
	.apc.featured-blogs .listing.blog .item:nth-of-type(2n+1) {
		clear:none;
		}
		
	}
		
	@media (min-width:992px) {
				
	#left-col .listing.blog .item:nth-of-type(2n+1),
	#right-col .listing.blog .item:nth-of-type(2n+1),
	#mid-col .listing.blog .item:nth-of-type(2n+1) {
		clear:both;
		}
		
	#wide-col .listing.blog .item.col-sm-6 { 
		width:33.3333333%;
		}
	#wide-col .listing.blog .item:nth-of-type(3n+1) {
		clear:both;
		}
		
	.listing.blog .item .inner .image { 
		margin:-20px -20px 20px;
		}

	.listing.blog .item .heading {
		font-size:22px;
		}
	.listing.blog .item:not(.col-sm-6) .heading {
		font-size:25px;
		}
		
		/*
	.listing.blog .item:not(.col-sm-6) .meta .comments,
	.listing.blog .item:not(.col-sm-6) .meta .categories,
		*/
	.spc .meta .comments,
	.spc .meta .categories { 
		width:50%; float:left;
		}
		/*
	.listing.blog .item:not(.col-sm-6) .meta .categories,
		*/
	.spc .meta .categories { 
		text-align:right;
		}
		
	}	
		
	@media (min-width:1200px) {
		
	.listing.blog .item .inner .image { 
		margin:-30px -30px 30px;
		}
		
	.listing.blog .item .heading {
		font-size:25px;
		}
	.listing.blog .item:not(.col-sm-6) .heading {
		font-size:30px;
		}
		
	}
                            
                            
                            
/*  --------------------------------------------------
    7.2 SEARCH LISTING   
    -------------------------------------------------- */
			
	.listing.search {
		}
	.listing.search .item { 
		}
		
	.listing.search .item .link { 
		margin-top:10px;
		font-size:12px;
		}
		
	@media (min-width:768px) {
		
	}
		
	@media (min-width:992px) {
		
	}
		
	@media (min-width:1200px) {
		
	}

                            
                            
                            
/*  --------------------------------------------------
    7.3 SECTION LISTING   
    -------------------------------------------------- */
			
	.listing.section:not(.grid) {
		}
	.listing.section:not(.grid) .item { 
		}	
	.listing.section:not(.grid) .item.inner { 
		padding-right:0; padding-left:0;
		}
		
	.listing.section:not(.grid) .item .image {
		margin-bottom:5px;
		}
		
	.listing.section:not(.grid) .heading {
		margin-top:10px;
		}
		
	@media (min-width:768px) {
		
	}
		
	@media (min-width:992px) {
		
	.listing.section:not(.grid) .item.inner { 
		padding-right:5px; padding-left:5px;
		}
		
	}
		
	@media (min-width:1200px) {
		
	.listing.section:not(.grid) .item.inner { 
		padding-right:15px; padding-left:15px;
		}
		
	}
                            
                            
                            
/*  --------------------------------------------------
    7.4 GRID LISTING   
    -------------------------------------------------- */
			
	.listing.grid {
		}
	.listing.grid .item {
		} 
		
	.listing.grid .item .inner .image { 
		margin:-15px -15px 15px;
		}
		
	@media (min-width:580px) and (max-width:767px) {
		
	.listing.grid .item.col-sm-6 { 
		width:50%;
		}
	.listing.grid .item:nth-of-type(2n+1) { 
		clear:both;
		}
		
	}
		
	@media (min-width:768px) {
		
	}	
		
	@media (min-width:768px) and (max-width:991px) {
				
	.listing.grid .item:nth-of-type(2n+1) {
		clear:both;
		}	
		
	}
		
	@media (min-width:992px) {
				
	#left-col .listing.grid .item:nth-of-type(2n+1),
	#right-col .listing.grid .item:nth-of-type(2n+1),
	#mid-col .listing.grid .item:nth-of-type(2n+1) {
		clear:both;
		}
		
	#wide-col .listing.grid .item.col-sm-6 { 
		width:33.3333333%;
		}
	#wide-col .listing.grid .item:nth-of-type(3n+1) {
		clear:both;
		}
		
	.listing.grid .item .inner .image { 
		margin:-20px -20px 20px;
		}
		
	}
		
	@media (min-width:1200px) {
		
	.listing.grid .item .inner .image { 
		margin:-30px -30px 30px;
		}
		
	}


/*  ----------------------------------------------------------------------------------------------------
    8.0 SITE WIDE PODS
    ---------------------------------------------------------------------------------------------------- */

	.swp {
		margin-bottom:30px;
		}
	.swp .item {
		position:relative;
		margin-bottom:30px;
		}
	.swp .item:last-child { 
		margin-bottom:0;
		}	
	.swp .item .heading a {
		text-decoration:none;
		}
	.swp .item .heading i {
		font-size:15px;
		display:none;
		}
	
	.swp .item .link {
		margin-bottom:0;
		}
		
		

/*  ----------------------------------------------------------------------------------------------------
    8.1 BLOCKQUOTE POD
    ---------------------------------------------------------------------------------------------------- */

	.swp .item.blockquote-pod { 
		}
	.swp blockquote p {
		font-size:16px;
		}
		
	@media (min-width:992px) {
		
	.swp blockquote p {
		font-size:20px;
		}
		
	}
		
	

/*  ----------------------------------------------------------------------------------------------------
    8.2 CODEPOD
    ---------------------------------------------------------------------------------------------------- */

	.swp .item.code-pod { 
		}
	

/*  ----------------------------------------------------------------------------------------------------
    8.3 GENERAL POD
    ---------------------------------------------------------------------------------------------------- */

	.swp .item.general-pod { 
		}
	

/*  ----------------------------------------------------------------------------------------------------
    8.4 IMAGE POD
    ---------------------------------------------------------------------------------------------------- */

	.swp .item.image-pod { 
		}
	

/*  ----------------------------------------------------------------------------------------------------
    8.5 LISTING POD
    ---------------------------------------------------------------------------------------------------- */

	.swp .item.listing-pod { 
		}
	.swp .item.listing-pod .inner > .heading {
		margin-bottom:30px;
		}
	.swp .item.listing-pod .link {
		margin:20px 0 0;
		}
		
	.swp .listing {
		margin:0; padding:0;
		}
	.swp .listing .item {
		margin:0; padding:0;
		}
	.swp .listing .item::after {
		content:"";
		display:block;
		width:20px; height:3px;
		margin:15px 0;
		background-color:#eeeeee; background-color:rgba(238,238,238,1);
		}
	.swp .listing .item .heading {
		font-size:16px; 
		}
	html.no-touch .swp .listing .item .heading a:hover { 
		color:#151515; color:rgba(21,21,21,1);
		}
	.swp .listing .item .meta {
		margin:10px 0 0; padding:0;
		font-size:12px;
		}
	.swp .listing .item:last-of-type::after { 
		height:0;
		}
	

/*  ----------------------------------------------------------------------------------------------------
    8.6 NEWSLETTER POD
    ---------------------------------------------------------------------------------------------------- */

	.swp .item.newsletter-pod { 
		}
	

/*  ----------------------------------------------------------------------------------------------------
    8.7 VIDEO POD
    ---------------------------------------------------------------------------------------------------- */

	.swp .item.video-pod { 
		}
	



/*  ----------------------------------------------------------------------------------------------------
    9.0 STANDARD PAGE COMPONENTS
    ---------------------------------------------------------------------------------------------------- */

	.spc {
		position:relative;
		margin-bottom:30px;
		}
	
	body.standard-page .spc.forms .newsletter.form .inner { 
		padding:0;
		}	
		

/*  --------------------------------------------------
    9.1 TABBED
    -------------------------------------------------- */

	.tabbed {
		}
	nav.tabs .nav {
		border:0 none;
		}
	nav.tabs .nav li {
		}
	.spc nav.tabs .nav li:first-child {
		margin-left:0;
		}
	.spc nav.tabs .nav li:last-child {
		margin-right:0;
		}
	nav.tabs .nav li a {
		padding:10px 15px; 
		background:none;
		min-width:50px;
		border-width:2px; border-color:#eeeeee; border-color:rgba(238,238,238,1);
		background-color:#f4f4f4; background-color:rgba(244,244,244,1);
		}
	html.no-touch nav.tabs .nav li:not(.active) a:hover {
		border-width:2px;
		border-top-color:#cccccc; border-top-color:rgba(204,204,204,1);
		background-color:#ffffff; background-color:rgba(255,255,255,1);
		}
	nav.tabs .nav li.active a {
		border-width:2px;
		color:#151515; color:rgba(21,21,21,1);
		border-top-color:#1c4484; border-top-color:rgba(241,103,57,1);
		border-bottom-color:#ffffff; border-bottom-color:rgba(255,255,255,1);
		background-color:#ffffff; background-color:rgba(255,255,255,1);
		}		
		
	.tabbed .tab-content {
		margin-top:-1px;
		padding:20px;
		border-width:2px; border-style:solid; border-color:#eeeeee; border-color:rgba(238,238,238,1);
		}
	.spc.tabbed .tab-content { 
		background-color:#ffffff; background-color:rgba(255,255,255,1);		
		}
		
	.widetabs {
		padding: 10px 120px!important;
	}	

	@media (min-width:768px) {
		
	}
		
	@media (min-width:992px) {
		
	}
		
	@media (min-width:1200px) {
	
	}	


/*  --------------------------------------------------
    9.2 ACCORDION
    -------------------------------------------------- */

	.accordion {
		}
	.accordion .heading {
		margin:5px 0 0; font-size:14px;
		}
	.accordion .heading a {
		position:relative;
		display:block; padding:15px 45px 15px 15px;
		border-width:2px; border-style:solid; border-color:#e1e1e1; border-color:rgba(225,225,225,1);
		text-decoration:none!important;
		/*background-color:#f4f4f4; background-color:rgba(244,244,244,1);*/
		background-color:#e9e9e9; background-color:rgba(233,233,233,1); 
		}	
	.accordion .heading a:not(.collapsed),
	html.no-touch .accordion .heading a.collapsed:hover {
		color:#151515; color:rgba(21,21,21,1);
		border-left-color:#1c4484; border-left-color:rgba(241,103,57,1);
		/*background-color:#ffffff; background-color:rgba(255,255,255,1);*/ 
		background-color:#f4f4f4; background-color:rgba(244,244,244,1);
		}	
	.c1-bg .accordion .heading a:not(.collapsed),
	html.no-touch .c1-bg .accordion .heading a.collapsed:hover {
		border-left-color:#151515; border-left-color:rgba(21,21,21,1);
		}
	.accordion .heading a.collapsed {
		border-color:#e1e1e1; border-color:rgba(225,225,225,1);
		}
		
	.accordion .heading i {
		font-size:15px; 
		position:absolute; top:15px; right:15px;
		}
	.accordion .heading a:not(.collapsed) i.ion-minus,
	.accordion .heading a.collapsed i.ion-plus { 
		display:block;
		}
	.accordion .heading a.collapsed i.ion-minus,
	.accordion .heading a:not(.collapsed) i.ion-plus { 
		display:none;
		}
				
	.accordion .panel-body {
		padding:15px 0; 
		}	
	.apc .spc.accordion .panel-body { 
		padding:15px; 
		border-width:0 2px 2px; border-style:solid; border-color:#e1e1e1; border-color:rgba(225,225,225,1);
		background-color:#ffffff; background-color:rgba(255,255,255,1);		
		}
		
		
	@media (min-width:768px) {
		
	}
		
	@media (min-width:992px) {
		
	}
		
	@media (min-width:1200px) {
		
	.accordion .heading {
		font-size:15px;
		}
	
	}



/*  --------------------------------------------------
    9.3 QUOTES
    -------------------------------------------------- */

	.spc.quotes {
		} 	
	.spc.quotes blockquote p {
		font-size:22px;
		}
		
	@media (min-width:768px) {
		
	}
		
	@media (min-width:992px) {
		 
	.spc.quotes blockquote {
		padding-top:40px;
		}
	.spc.quotes blockquote p {
		font-size:28px;
		}
	.spc.quotes blockquote cite {
		font-size:14px;
		}		
	.quotes blockquote::before {
		font-size:40px;
		}
	.quotes blockquote::after {
		font-size:30px;
		}
		
	}	
		
	@media (min-width:1200px) {
          
	.spc.quotes blockquote p {
		font-size:32px;
		}                

	}  
                            
                            
/*  --------------------------------------------------
    9.4 IMAGES
    -------------------------------------------------- */
                            
	.spc.image {
		margin-bottom:16px;
		}                
	.spc.image img { 
		display:block;
		overflow:hidden;
		max-width:100%;
		height:auto; 
		}           
	.spc.image .info {
		}
	.spc.image .info .text {
		margin:10px 0 0;
		font-size:90%; font-style:italic;
		
		-webkit-opacity:0.6;
		-moz-opacity:0.6;
		-ms-opacity:0.6;
		opacity:0.6;
		}
	

                            
/*  --------------------------------------------------
    9.5 GALLERY        
    -------------------------------------------------- */
	
	.spc.gallery { 
		margin-bottom:15px;
		}
	.gallery .item {
		margin-top:15px;
		margin-bottom:15px;
		}
	.gallery .item a {
		}
	.gallery .item .image {
		position:relative;
		}
        

	@media (max-width:991px) {

	.spc.gallery .item:nth-of-type(2n+1) {
		clear:both;
		}

	}

	@media (min-width:992px) {

	.spc.gallery .item:nth-of-type(3n+1) {
		clear:both;
		}

	}	

	@media (min-width:1200px) {

	}		

                            
                            
/*  --------------------------------------------------
    9.6 RESOURCES         
    -------------------------------------------------- */

	.resources { 
		}
	.resources .item {
		padding:15px;
		border-width:2px;
		background-color:#ffffff; background-color:rgba(255,255,255,1);
		}
	.resources .item:not(:first-child) {
		margin-top:-2px;
		}
	.resources .item .heading {
		display:block;
		font-size:16px;
		margin-bottom:4px;
		color:#1c4484; color:rgba(241,103,57,1);
		}
	.resources .item:hover .heading { 
		color:#151515; color:rgba(21,21,21,1);
		}
	.resources .item .size {
		font-size:12px; 
		}
		
	@media (min-width:768px) {
		
	}
		
	@media (min-width:992px) {
		
	}
		
	@media (min-width:1200px) {
		
	.resources .item .heading {
		font-size:18px;
		}
	
	}



/*  --------------------------------------------------
    9.7 TABLES
    -------------------------------------------------- */

	table {
		width:100%;
		background-color:#f4f4f4; background-color:rgba(244,244,244,1);
		}
	thead {
		color:#ffffff; color:rgba(255,255,255,1);
		background-color:#151515; background-color:rgba(21,21,21,1);
		}
	table th, table td {
		padding:15px;	
		}
	table tr:nth-of-type(even) td {
		background-color:#ffffff; background-color:rgba(255,255,255,1);
		}
	.tables table tr:nth-of-type(even) td, .tables .body .item:nth-of-type(even) {
		background-color:#ffffff; background-color:rgba(255,255,255,1);
		}
	table th {
		font-weight:500; font-size:15px;
		}
	table tr p:first-of-type {
		margin-top:0;
		}
	table tr p:last-of-type {
		margin-bottom:0;
		}
		
	@media (min-width:768px) {
		
	}
		
	@media (min-width:992px) {
		
	}
		
	@media (min-width:1200px) {
	
	}
				

                            
/*  --------------------------------------------------
    9.8 COMMENTS 
    -------------------------------------------------- */
	
	#comments {
		}	
		

                            
/*  --------------------------------------------------
    9.9 AUTHOR BIO
    -------------------------------------------------- */
	
	.spc.author-bio {
        overflow:hidden; height:100%;
		margin:0;
		}
	.author-bio p.heading {
		margin-bottom:0;
		}
	.author-bio .image {
		margin-top:15px;
		}
    .author-bio .image img {
		width:auto; max-width:100%;
		}
	.author-bio .info {
		padding:15px 0;
		}
	.author-bio .info p.heading {
		font-size:16px;
		}
	.author-bio .info .text p {
		}
		
	@media (min-width:768px) {
		
	.author-bio .info {
		padding:15px 15px 15px 0;
		}
		
	}
    
    @media (min-width:992px) {
		
	.author-bio .image {
		float:right;
		margin:0 0 15px 40px;
		}
		
	}	
	
	
	
/*  --------------------------------------------------
	9.10 IMAGE SLIDESHOW
    -------------------------------------------------- */
	
	.slideshow {
		}
	.slideshow .item {
		display:block;
		}
	.slideshow .item .image {
		}
	.slideshow .item .image img {
		display:block;
		overflow:hidden;
		}        
	.slideshow .item .info {
		}
	.slideshow .item .info .text {
		padding:10px 0 0;
		font-size:80%;
		
		-webkit-opacity:0.6;
		-moz-opacity:0.6;
		-ms-opacity:0.6;
		opacity:0.6;
		}	
	
	
	
/*  --------------------------------------------------
	9.11 PRICING MENU
    -------------------------------------------------- */
	
	.pricing-menu {
		}
	.pricing-menu .head {
		padding:10px 0 20px; margin-bottom:10px;
		border-width:0 0 2px; border-style:solid; border-color:#1c4484; border-color:rgba(241,103,57,1);
		}
	.pricing-menu .head .heading {
		margin:0;
		font-size:14px;
		}
	.pricing-menu .item {
		padding:15px 0;
		border-width:0 0 1px; border-style:solid; border-color:#eeeeee; border-color:rgba(238,238,238,1);
		}
	.pricing-menu .item:last-of-type {
		border:0 none;
		}
	.pricing-menu .item .heading {
		text-transform:none; letter-spacing:0;
		font-size:16px;
		margin:0 0 8px;
		}
	.pricing-menu .item .text p {
		margin:0 0 5px;
		font-size:90%; font-style:italic;
		}
	.pricing-menu .price p {
		margin:5px 0 0;
		}
		
	@media (min-width:768px) {
		
	}
		
	@media (min-width:992px) {
		
	.pricing-menu .item .heading {
		font-size:18px;
		}
	.pricing-menu .item .price {
		text-align:right;
		}
	.pricing-menu .price p {
		margin:0 0 10px;
		}
		
	}
		
	@media (min-width:1200px) {
		
	}	
	
	
	
/*  --------------------------------------------------
	9.12 TEXT BLOCK
    -------------------------------------------------- */
	
	.spc.textblock {
		margin-bottom:15px;
		}
	.spc.textblock :first-child { 
		margin-top:0;
		}
	.spc.textblock :last-child { 
		margin-bottom:0;
		}
		
	/* BODY COLOR */	
	body .apc.c1-bg .spc.textblock {
		color:#ffffff; color:rgba(255,255,255,0.95);
		}
	body .apc.c2-bg .spc.textblock {
		}
	body .apc.c3-bg .spc.textblock {
		color:#eeeeee; color:rgba(238,238,238,1);
		}
	body .apc.c4-bg .spc.textblock {
		}
	body .apc.c5-bg .spc.textblock {
		}
	body .apc.c6-bg .spc.textblock {
		}
	
	/* LINKS */	
	body .apc.c1-bg .spc.textblock a, body .apc.c1-bg .spc.textblock a:active, body .apc.c1-bg .spc.textblock a:focus {
		color:#ffffff; color:rgba(255,255,255,0.95);
		text-decoration:underline;
		}
	body .apc.c2-bg .spc.textblock a, body .apc.c2-bg .spc.textblockextblock a:active, body .apc.c2-bg .spc.textblock a:focus {
		}
	body .apc.c3-bg .spc.textblock a, body .apc.c3-bg .spc.textblock a:active, body .apc.c3-bg .spc.textblock a:focus {
		}
	body .apc.c4-bg .spc.textblock a, body .apc.c4-bg .spc.textblock a:active, body .apc.c4-bg .spc.textblock a:focus {
		}
	body .apc.c5-bg .spc.textblock a, body .apc.c5-bg .spc.textblock a:active, body .apc.c5-bg .spc.textblock a:focus {
		}
	body .apc.c6-bg .spc.textblock a, body .apc.c6-bg .spc.textblock a:active, body .apc.c6-bg .spc.textblock a:focus {
		}
	
	/* HEADINGS */	
	body .apc.c1-bg .spc.textblock h1, body .apc.c1-bg .spc.textblock h2, body .apc.c1-bg .spc.textblock h3,
	body .apc.c1-bg .spc.textblock h4, body .apc.c1-bg .spc.textblock h5, body .apc.c1-bg .spc.textblock h6,
	body .apc.c1-bg .spc.textblock .heading {
		color:#ffffff; color:rgba(255,255,255,1);
		}
	body .apc.c2-bg .spc.textblock h1, body .apc.c2-bg .spc.textblock h2, body .apc.c2-bg .spc.textblock h3,
	body .apc.c2-bg .spc.textblock h4, body .apc.c2-bg .spc.textblock h5, body .apc.c2-bg .spc.textblock h6,
	body .apc.c2-bg .spc.textblock .heading {
		}
	body .apc.c3-bg .spc.textblock h1, body .apc.c3-bg .spc.textblock h2, body .apc.c3-bg .spc.textblock h3,
	body .apc.c3-bg .spc.textblock h4, body .apc.c3-bg .spc.textblock h5, body .apc.c3-bg .spc.textblock h6,
	body .apc.c3-bg .spc.textblock .heading {
		color:#ffffff; color:rgba(255,255,255,1);
		}
	body .apc.c4-bg .spc.textblock h1, body .apc.c4-bg .spc.textblock h2, body .apc.c4-bg .spc.textblock h3,
	body .apc.c4-bg .spc.textblock h4, body .apc.c4-bg .spc.textblock h5, body .apc.c4-bg .spc.textblock h6,
	body .apc.c4-bg .spc.textblock .heading {
		}
	body .apc.c5-bg .spc.textblock h1, body .apc.c5-bg .spc.textblock h2, body .apc.c5-bg .spc.textblock h3,
	body .apc.c5-bg .spc.textblock h4, body .apc.c5-bg .spc.textblock h5, body .apc.c5-bg .spc.textblock h6,
	body .apc.c5-bg .spc.textblock .heading {
		}
	body .apc.c6-bg .spc.textblock h1, body .apc.c6-bg .spc.textblock h2, body .apc.c6-bg .spc.textblock h3,
	body .apc.c6-bg .spc.textblock h4, body .apc.c6-bg .spc.textblock h5, body .apc.c6-bg .spc.textblock h6,
	body .apc.c6-bg .spc.textblock .heading {
		}


                            
/*  ----------------------------------------------------------------------------------------------------
    10.0 ADVANCED PAGE COMPONENTS
    ---------------------------------------------------------------------------------------------------- */

	.apc {
		position:relative;
		padding:30px 0;
		overflow:hidden; height:100%;
		}
	.apc.no-padding .text-side,
	.apc.no-padding .listing-side,
	.apc.no-padding .form-side .inner { 
		padding-top:30px; padding-bottom:30px;
		}
		
	.apc .overview {
		margin-bottom:30px;
		}
	.apc .outro {
		margin-top:30px;
		}
	.apc .overview .text :first-child,
	.apc .outro .text :first-child {
		margin-top:0;
		}
	.apc .overview .text :last-child,
	.apc .outro .text :last-child {
		margin-bottom:0;
		}
		
	.apc.promo-pods .outro,
	.apc.tabbed-listing .outro { 
		margin-top:0;
		}
		
	.apc.no-padding .overview {
		margin-top:30px;
		}
	.apc.no-padding .outro {
		margin-bottom:30px;
		}
		
	.apc .image.video {
		position:relative;
		}
		
	.apc.banner {
		padding:0!important;
		}
	.apc.banner,
	.apc.promo-pods {
		margin:0;
		}
		
	.apc .heading.main {
		font-size:25px;
		margin:0;
		}
	.apc .heading.main + .text { 
		margin:15px 0 0;
		}
		
	.apc .text + .link { 
		margin:40px 0 0;
		}
		
	@media (min-width:768px) {
		
	.apc {
		padding:35px 0;
		}	
	.apc.no-padding .text-side,
	.apc.no-padding .listing-side,
	.apc.no-padding .form-side .inner { 
		padding-top:35px; padding-bottom:35px;
		}
		
	.apc.no-padding .overview {
		margin-top:35px;
		}
	.apc.no-padding .outro {
		margin-bottom:35px;
		}
		
	.apc.banner:first-child .heading.main {
		font-size:30px;
		}
		
	}	
		
	@media (min-width:992px) {
		
	.apc {
		padding:45px 0;
		}
		
	.apc.no-padding .form-side .inner { 
		padding:45px;
		}
	.apc.no-padding .text-side,
	.apc.no-padding .listing-side,
	.apc.no-padding .form-side .inner { 
		padding-top:45px; padding-bottom:45px;
		}
		
	.apc.no-padding .overview {
		margin-top:45px;
		}
	.apc.no-padding .outro {
		margin-bottom:45px;
		}
		
	.apc.banner:first-child .heading.main {
		font-size:35px;
		}
		
	}	
		
	@media (min-width:1200px) {
		
	.apc {
		padding:60px 0;
		}
		
	.apc.no-padding .form-side .inner { 
		padding:60px;
		}
	.apc.no-padding .text-side,
	.apc.no-padding .listing-side,
	.apc.no-padding .form-side .inner { 
		padding-top:60px; padding-bottom:60px;
		}
		
	.apc.no-padding .overview {
		margin-top:60px;
		}
	.apc.no-padding .outro {
		margin-bottom:60px;
		}
		
	.apc.banner:first-child .heading.main {
		font-size:40px;
		}
		
	}	
		
                            
/*  --------------------------------------------------
    10.1 STANDARD PAGE COMPONENTS ON ADVANCED PAGE
    -------------------------------------------------- */              

	.apc.standard-components {
		}	
	.apc.standard-components .spc {
		margin-bottom:0;
		}
		
	@media (min-width:768px) {
		
	}	
		
	@media (min-width:992px) {
		
	}	
		
	@media (min-width:1200px) {
		
	}

                            
/*  --------------------------------------------------
    10.2 BANNER  
    -------------------------------------------------- */                   
	
	.apc.banner {
		overflow:hidden; height:auto;
		position:relative; z-index:0;
		}
	header + #content > .apc.banner:first-child { 
		margin-top:-70px;
		}
		
	.apc.banner .item {
		position:relative; z-index:0;
		
		background-repeat:no-repeat; background-position:center;
		background-size:cover;
		}
		
	.apc.banner .item.short, 
	.apc.banner .item.short .container, 
	.apc.banner .item.short .row {
		height:35vh; min-height:270px;
		}
		
	.apc.banner .item.medium, 
	.apc.banner .item.medium .container, 
	.apc.banner .item.medium .row {
		height:50vh; min-height:370px;
		}
		
	.apc.banner .item.takeover, 
	.apc.banner .item.takeover .container, 
	.apc.banner .item.takeover .row {
		height:100vh;
		}
	body.browser-ios:not(.no-header) .apc.banner .item.takeover, 
	body.browser-ios:not(.no-header) .apc.banner .item.takeover .container, 
	body.browser-ios:not(.no-header) .apc.banner .item.takeover .row {
		height:100vh;
		
		height:calc(100vh - 68px);
		
		height:-o-calc(100vh - 68px); 
		height:-webkit-calc(100vh - 68px); 
		height:-moz-calc(100vh - 68px);
		}

	.apc.banner .item.overlay::before {
		content:"";
		position:absolute; top:0; right:0; bottom:0; left:0; z-index:10;
		}

.apc.banner .item .image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    /* Automatically make the banner images darker */
    /*background: linear-gradient( rgba(0,0,0,0.5), rgba(0,0,0,0.5) );*/
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
	/* will not work on iOS: https://stackoverflow.com/questions/23236158/how-to-replicate-background-attachment-fixed-on-ios */	
	body:not(.browser-ios) .apc.banner .item.parallax .image {
		background-attachment:fixed; 
		}
					
	.apc.banner .info {
		position:absolute; top:0; right:0; bottom:0; left:0; z-index:11;
		width:100%; height:100%;
		padding:0;
		}
		
	header + #content > .apc.banner:first-child .item:not(.takeover) .info { 
		padding-top:20px;
		}	
					
	.apc.banner .info .heading.main {
		margin:0;
		}
		
	.apc.banner .info .heading.main + .text { 
		margin-top:10px;
		}
	.apc.banner .info .text :first-child {
		margin-top:0;
		}
	.apc.banner .info .text :last-child {
		margin-bottom:0;
		}
		
	.apc.banner .info .heading.main + .link {
		margin:20px 0 0;
		}
	.apc.banner .info .text + .link {
		margin:30px 0 0;
		}

    .textshadowonly {
        text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.65);
    }
		
		
	/* SCROLL PROMPT */	
	.apc.banner .scroll-prompt {
		position:absolute; right:0; bottom:30px; left:0; z-index:100;
		width:100%;
		
	    -webkit-animation-duration: 1s;
	    animation-duration: 1s;
	    -webkit-animation-delay: 3s;
	    animation-delay: 3s;
	    -webkit-animation-fill-mode: both;
	    animation-fill-mode: both;
		-webkit-animation-name: fadeIn;
    	animation-name: fadeIn;
		}	
	.apc.banner .scroll-prompt a {
		display:inline-block; 
		width:100%; height:40px;
		margin:0 auto;
		cursor:pointer;
		text-decoration:none!important;
		}
	.apc.banner .scroll-prompt a i {
		font-size:30px;
		line-height:40px;
		display:block;
		padding:0; margin:0 0 0 2px;
		}
		
	.apc.banner .scroll-prompt .mouse-scroll {
		position:relative;
		width:21px; height:35px;
		margin:0 auto;
		border-width:2px; border-style:solid; border-color:#ffffff; border-color:rgba(255,255,255,1);
		border-radius:10px;
		}	
	.apc.banner .scroll-prompt .mouse-scroll::before {
		content:"";
		position:absolute; top:10px; left:7px;
		width:3px; height:6px;
		border-radius:50%;
		background-color:#ffffff; background-color:rgba(255,255,255,1);
		
    	-webkit-animation-iteration-count: infinite;
    	animation-iteration-count: infinite;
	    -webkit-animation-duration: 1.25s;
	    animation-duration: 1.25s;
	    -webkit-animation-delay: 3s;
	    animation-delay: 3s;
	    -webkit-animation-fill-mode: both;
	    animation-fill-mode: both;
		-webkit-animation-name: fadeInDown;
    	animation-name: fadeInDown;
		}
		
		
	@media (min-width:768px) {
		
	.apc.banner .item.short, 
	.apc.banner .item.short .container, 
	.apc.banner .item.short .row {
		height:40vh; min-height:400px;
		}
		
	.apc.banner .item.medium, 
	.apc.banner .item.medium .container, 
	.apc.banner .item.medium .row {
		height:60vh; min-height:550px;
		}
		
	.apc.banner .item.takeover, 
	.apc.banner .item.takeover .container, 
	.apc.banner .item.takeover .row {
		height:100vh;
		}
	body.browser-ios:not(.no-header) .apc.banner .item.takeover, 
	body.browser-ios:not(.no-header) .apc.banner .item.takeover .container, 
	body.browser-ios:not(.no-header) .apc.banner .item.takeover .row {
		height:100vh;
		
		height:calc(100vh - 26px);
		
		height:-o-calc(100vh - 26px); 
		height:-webkit-calc(100vh - 26px); 
		height:-moz-calc(100vh - 26px);
		}
		
	}
		
	@media (min-width:992px) {	
		
	header + #content > .apc.banner:first-child { 
		margin-top:-140px;
		}
		
	header + #content > .apc.banner:first-child .item:not(.takeover) .info { 
		padding-top:35px;
		}
		
	}	
	
	@media (min-width:768px) and (max-width:1199px) { 
		
	.apc.banner .info .table { 
		padding-right:40px; padding-left:40px;
		}	
	
	}
		
	@media (min-width:1200px) {	
		
	.apc.banner .item.short, 
	.apc.banner .item.short .container, 
	.apc.banner .item.short .row {
		min-height:500px;
		}
		
	.apc.banner .item.medium, 
	.apc.banner .item.medium .container, 
	.apc.banner .item.medium .row {
		min-height:650px;
		}
		
	.apc.banner .scroll-prompt a {
		height:auto; padding-bottom:20px;
		}
	.apc.banner .scroll-prompt a span {
		font-size:9px;
		text-transform:uppercase;
		letter-spacing:0.09em;
		display:block; margin-top:15px;
		display:none;
		}
	.apc.banner .scroll-prompt a i {
		font-size:20px;
		}
		
	}
		
	@media (min-width:1500px) {
	
	body.fixed-width .apc.banner .item { 
		background-size:1500px auto;
		}

	}
	


/*  --------------------------------------------------
    10.2.2 BANNER VIDEOS
    -------------------------------------------------- */ 
		
	.apc.banner .item .video {
		}

	.apc.banner .item .video .video-player {
		
		position:absolute; top:50%; left:50%;
    	z-index: -1; /* for accessing the video by click */
    	overflow: hidden;
	
	    -webkit-transform: translate(-50%, -50%);
	    -moz-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		}


	@media (min-width:0) and (max-width:767px) {
	
	}
		
	@media (min-width:768px) {	
		
	}
		
	@media (min-width:992px) {	
		
	}
		
	@media (min-width:1200px) {	
		
	}


                            
/*  --------------------------------------------------
    10.3 CTA STRIP  
    -------------------------------------------------- */                  
	
	.apc.cta-strip {
		}
		
	.apc.cta-strip .row + .row { 
		margin-top:15px;
		}
		
	.apc.cta-strip p.link {
		margin-top:0;
		}
		
	@media (min-width:768px) {	
		
	}
		
	@media (min-width:992px) {	
		
	}
		
	@media (min-width:1200px) {	
		
	}

                       
/*  --------------------------------------------------
    10.4 APC PROMO PODS  
    -------------------------------------------------- */                
	
	.apc.promo-pods {
		
		} 
		
	@media (max-width:991px) {
	
	.apc.promo-pods .item:nth-of-type(2n+1) {
		clear:both!important;
		}

	}
		
	@media (min-width:992px) {	
		
	}	                 
	

                            
/*  --------------------------------------------------
    10.5 TEXT WITH IMAGE / VIDEO
    -------------------------------------------------- */               
	
	.apc.text-with-image-or-video {
		}   
	.apc.text-with-image-or-video .info {
		padding-top:20px;
		} 
	.apc.text-with-image-or-video .info .heading {
		margin-top:0;
		}
	.apc.text-with-image-or-video p.link {
		margin-top:30px; margin-bottom:0;
		}
	.apc.text-with-image-or-video .overlayicon {
		font-size:60px;
		}
		
	@media (min-width:768px) and (max-width:991px) {
		
	.apc.text-with-image-or-video.wide .image {
		max-width:720px; margin:0 auto;
		}
		
	}
		
	@media (min-width:992px) {
		
	.apc.text-with-image-or-video.wide {
		padding:0;
		}
	.apc.text-with-image-or-video .item {
		display:table;
		}
	.apc.text-with-image-or-video .info {
		padding-top:0;
		
		display:table-cell; vertical-align:middle;
		}  
	.apc.text-with-image-or-video.wide .info {
		padding:48px 0;
		}    
	.apc.text-with-image-or-video .overlayicon {
		font-size:100px;
		}
		
	.apc.text-with-image-or-video:not(.wide) .pull-right .image {
		margin-left:-15px;
		}
	.apc.text-with-image-or-video:not(.wide) .pull-left .image {
		margin-right:-15px;
		}
	.apc.text-with-image-or-video.wide .image {
		margin:0 -15px;
		}
		
		
	}
		
	@media (min-width:1200px) {
		
	.apc.text-with-image-or-video.wide .info {
		padding:64px 0;
		} 
		
	.apc.text-with-image-or-video .overlayicon {
		font-size:140px;
		}
		
	}         
	

                            
/*  --------------------------------------------------
    10.6 TEXT WITH FORM  
    -------------------------------------------------- */                
	
	.apc.text-with-form {
		
		} 
		
	.apc.text-with-form .form .btn { 
		display:block;
		width:100%;
		}	
		
	@media (min-width:768px) {
		
		
	}
		
	@media (min-width:992px) {		
		
	}
		
	@media (min-width:1200px) {
		
		
	}               
	

                            
/*  --------------------------------------------------
    10.7 SIGNUP WITH LISTING
    -------------------------------------------------- */     	
	
	.apc.signup-listing {
		}
		
	.apc.signup-listing .listing .item {
		margin:20px 0 0;
		position:relative;
		}
	.apc.signup-listing .listing .item:first-of-type {
		margin-top:30px;
		}
	.apc.signup-listing .listing .item .heading {
		font-size:16px;
		}
	.apc.signup-listing .listing .item .meta {
		margin:10px 0 0;
		}
		
	.apc.signup-listing .listing .item::after {
		content:"";
		display:block;
		width:20px; height:3px;
		margin:20px 0 25px;
		background-color:#eeeeee; background-color:rgba(238,238,238,0.3);
		}
	.apc.signup-listing .listing .item:last-of-type::after { 
		height:0;
		}
		
	.apc.signup-listing.c1-bg .listing .heading, .apc.signup-listing.c3-bg .listing .heading,
	.apc.signup-listing.c1-bg .listing .text,
	.apc.signup-listing.c1-bg .listing .meta,
	.apc.signup-listing.c1-bg .listing .meta a,
	.apc.signup-listing.c3-bg .listing .meta a { 
		color:#ffffff; color:rgba(255,255,255,1);
		}
	.apc.signup-listing.c3-bg .listing .text, 
	.apc.signup-listing.c3-bg .listing .meta { 
		color:#e1e2e5; color:rgba(225,226,229,1);
		}
	.apc.signup-listing.c3-bg .apc.signup-listing .listing .item::after {
		background-color:rgba(238,238,238,0.2);
		}
		
	.apc.signup-listing .form .btn { 
		display:block;
		width:100%;
		}
		
	@media (min-width:768px) {
		
	}
		
	@media (min-width:992px) {
		
	.apc.signup-listing .listing .item .heading {
		font-size:22px;
		}
	}
		
	@media (min-width:1200px) {
		
	.apc.signup-listing .listing .item .heading {
		font-size:25px;
		}
		
	}

                            
/*  --------------------------------------------------
    10.8 APC TABBED
    -------------------------------------------------- */                
	
	.apc.tabbed {
		}
		
	.apc.tabbed .tab-content {
		border:0 none;
		padding:0;
		background:none;
		}
		
	.apc.tabbed .listing {
		margin:0;
		}
		
                            
/*  --------------------------------------------------
    10.9 GRID
    -------------------------------------------------- */  

	.apc.umb-grid {
		}
		
	/* BODY COLOR */	
	body .apc.umb-grid.c1-bg {
		color:#ffffff; color:rgba(255,255,255,0.95);
		}
	body .apc.umb-grid.c2-bg {
		}
	body .apc.umb-grid.c3-bg {
		color:#eeeeee; color:rgba(238,238,238,1);
		}
	body .apc.umb-grid.c4-bg {
		}
	body .apc.umb-grid.c5-bg {
		}
	body .apc.umb-grid.c6-bg {
		}
	
	/* LINKS */	
	body .apc.umb-grid.c1-bg a, body .apc.umb-grid.c1-bg a:active, body .apc.umb-grid.c1-bg a:focus {
		color:#ffffff; color:rgba(255,255,255,0.95);
		text-decoration:underline;
		}
	body .apc.umb-grid.c2-bg a, body .apc.umb-grid.c2-bg a:active, body .apc.umb-grid.c2-bg a:focus {
		}
	body .apc.umb-grid.c3-bg a, body .apc.umb-grid.c3-bg a:active, body .apc.umb-grid.c3-bg a:focus {
		}
	body .apc.umb-grid.c4-bg a, body .apc.umb-grid.c4-bg a:active, body .apc.umb-grid.c4-bg a:focus {
		}
	body .apc.umb-grid.c5-bg a, body .apc.umb-grid.c5-bg a:active, body .apc.umb-grid.c5-bg a:focus {
		}
	body .apc.umb-grid.c6-bg a, body .apc.umb-grid.c6-bg a:active, body .apc.umb-grid.c6-bg a:focus {
		}
	
	/* HEADINGS */	
	body .apc.umb-grid.c1-bg h1, body .apc.umb-grid.c1-bg h2, body .apc.umb-grid.c1-bg h3,
	body .apc.umb-grid.c1-bg h4, body .apc.umb-grid.c1-bg h5, body .apc.umb-grid.c1-bg h6,
	body .apc.umb-grid.c1-bg .heading {
		color:#ffffff; color:rgba(255,255,255,1);
		}
	body .apc.umb-grid.c2-bg h1, body .apc.umb-grid.c2-bg h2, body .apc.umb-grid.c2-bg h3,
	body .apc.umb-grid.c2-bg h4, body .apc.umb-grid.c2-bg h5, body .apc.umb-grid.c2-bg h6,
	body .apc.umb-grid.c2-bg .heading {
		}
	body .apc.umb-grid.c3-bg h1, body .apc.umb-grid.c3-bg h2, body .apc.umb-grid.c3-bg h3,
	body .apc.umb-grid.c3-bg h4, body .apc.umb-grid.c3-bg h5, body .apc.umb-grid.c3-bg h6,
	body .apc.umb-grid.c3-bg .heading {
		color:#ffffff; color:rgba(255,255,255,1);
		}
	body .apc.umb-grid.c4-bg h1, body .apc.umb-grid.c4-bg h2, body .apc.umb-grid.c4-bg h3,
	body .apc.umb-grid.c4-bg h4, body .apc.umb-grid.c4-bg h5, body .apc.umb-grid.c4-bg h6,
	body .apc.umb-grid.c4-bg .heading {
		}
	body .apc.umb-grid.c5-bg h1, body .apc.umb-grid.c5-bg h2, body .apc.umb-grid.c5-bg h3,
	body .apc.umb-grid.c5-bg h4, body .apc.umb-grid.c5-bg h5, body .apc.umb-grid.c5-bg h6,
	body .apc.umb-grid.c5-bg .heading {
		}
	body .apc.umb-grid.c6-bg h1, body .apc.umb-grid.c6-bg h2, body .apc.umb-grid.c6-bg h3,
	body .apc.umb-grid.c6-bg h4, body .apc.umb-grid.c6-bg h5, body .apc.umb-grid.c6-bg h6,
	body .apc.umb-grid.c6-bg .heading {
		}

                            
/*  --------------------------------------------------
    10.10 IMAGE CAROUSEL 
    -------------------------------------------------- */                  
	
	.apc.image-carousel {
		}
		
	.apc.image-carousel .slick-prev,
	.apc.image-carousel .slick-next { 
		transform:none;
		}
  	.apc.image-carousel .slick-prev {
		left:auto;
		}
  	.apc.image-carousel .slick-next {
		right:0;
		}
		
	@media (min-width:0) and (max-width:991px) {	
		
	.apc.image-carousel .slick-slider {
		padding-bottom:70px;
		}
		
	.apc.image-carousel .slick-prev,
	.apc.image-carousel .slick-next {
		top:auto; bottom:0; left:auto;
		}
	.apc.image-carousel .slick-prev {
		right:50px;
		}
	
	}
		
	@media (min-width:768px) {	
		
	}
		
	@media (min-width:992px) {
		
  	.apc.image-carousel .slick-prev,
  	.apc.image-carousel .slick-next {
		top:-60px;
		width:40px; height:40px;
		}
  	.apc.image-carousel .slick-prev {
		right:40px;
		}	
		
	}
		
	@media (min-width:1200px) {	
		
	}


/*  --------------------------------------------------
    10.11 FEATURED BLOGS
    -------------------------------------------------- */

  	.apc.featured-blogs {
		}
	.apc.featured-blogs .slick-track { 
		padding-bottom:3px;
		}
	.apc.featured-blogs .slides, .apc.featured-blogs .slick-list {
		}
		
	.apc.featured-blogs .slick-prev,
	.apc.featured-blogs .slick-next { 
		transform:none;
		}
  	.apc.featured-blogs .slick-prev {
		left:auto;
		}
  	.apc.featured-blogs .slick-next {
		right:15px;
		}
		
  	.apc.featured-blogs .listing {
		overflow:visible;
		padding:0 15px; margin:0 -15px;
		}
  	.apc.featured-blogs .listing .item {
		margin:0 15px;
		clear:none!important;
		}	
		
  	.apc.featured-blogs .item .heading {
		font-size:18px;
		}
		
	@media (min-width:0) and (max-width:991px) {	
		
	.apc.featured-blogs .slick-slider {
		padding-bottom:70px;
		}
		
	.apc.featured-blogs .slick-prev,
	.apc.featured-blogs .slick-next {
		top:auto; right:15px; bottom:0; left:auto;
		}
	.apc.featured-blogs .slick-prev {
		right:65px;
		}
	
	}
		
	@media (min-width:992px) {
		
  	.apc.featured-blogs .slick-prev,
  	.apc.featured-blogs .slick-next {
		top:-60px;
		width:40px; height:40px;
		}
  	.apc.featured-blogs .slick-prev {
		right:55px;
		}
		
	}
		
	@media (min-width:992px) {
		
  	.apc.featured-blogs .item .heading {
		font-size:25px;
		}
		
	}
		
	@media (min-width:1200px) {	
		
  	.apc.featured-blogs .item .heading {
		font-size:30px;
		}
		
	}


/*  --------------------------------------------------
    10.12 POD WINDOWS
    -------------------------------------------------- */

  	.apc.pod-windows {
		}
  	.apc.pod-windows .row { 
		overflow:visible;
		}
  	.apc.pod-windows .container-fluid {
		padding:0;
		}
  	.apc.pod-windows .row.smaller-items {
		padding-right:0; 
		}
		
  	.apc.pod-windows .item {
    	position:relative; 
		margin:10px 0;
		}
  	.apc.pod-windows .item::before {
    	content:"";
    	display:block;
    	padding-top:100%;
		}
  	.apc.pod-windows .item.half-item::before {
    	padding-top:50%;
		}
		
  	.apc.pod-windows .item .info {
		position:absolute; top:0; right:15px; bottom:0; left:15px; z-index:1;
		display:block;
		color:#555555;
		text-decoration:none;
		background-repeat:no-repeat; background-position:center;
		background-size:100%;
		box-shadow:0 2px 1px rgba(21,21,21,0.05);
		}
  	html.no-touch .apc.pod-windows .item a.info:hover { 
		box-shadow:0 3px 2px rgba(21,21,21,0.15);
		}
  	.apc.pod-windows .item .info::before { 
		content:"";
		position:absolute; top:0; right:0; bottom:0; left:0; z-index:-1;
		width:100%; height:100%;
		}
		
  	.apc.pod-windows .item .info .table-cell { 
		vertical-align:top;
		}
		
  	.apc.pod-windows .item .heading {
		margin:0;
		}
  	.apc.pod-windows .item .heading + .text { 
		margin-top:15px;
		}
  	.apc.pod-windows .item .text :first-child { 
		margin-top:0;
		}
  	.apc.pod-windows .item .text :last-child { 
		margin-bottom:0;
		}
  	.apc.pod-windows .item .link {
		margin-bottom:0;
		}
		
  	.apc.pod-windows .item .link {
		position:absolute; bottom:20px; left:15px; z-index:120;
		opacity:0;
		
		-webkit-transition:width 0.3s ease-in-out 0s, opacity 0.2s ease-in-out 0s;
		-moz-transition:width 0.3s ease-in-out 0s, opacity 0.2s ease-in-out 0s;
		-ms-transition:width 0.3s ease-in-out 0s, opacity 0.2s ease-in-out 0s;
		transition:width 0.3s ease-in-out 0s, opacity 0.2s ease-in-out 0s;
		}
  	html.touch .apc.pod-windows .item .link,
  	html.no-touch .apc.pod-windows .item:hover .link { 
		opacity:1;
		}
		
  	.apc.pod-windows .item .link::after {
		content:"";
		display:block;
		margin-top:2px; 
		width:0; 
		border-width:0 0 3px; border-style:solid; border-color:inherit;
		opacity:0;
		
		-webkit-transition:width 0.3s ease-in-out 0.2s, opacity 0.3s ease-in-out 0s;
		-moz-transition:width 0.3s ease-in-out 0.2s, opacity 0.3s ease-in-out 0s;
		-ms-transition:width 0.3s ease-in-out 0.2s, opacity 0.3s ease-in-out 0s;
		transition:width 0.3s ease-in-out 0.2s, opacity 0.3s ease-in-out 0s;
		}
  	html.touch .apc.pod-windows .item .link::after,
  	html.no-touch .apc.pod-windows .item:hover .link::after { 
		width:100%; 
		opacity:1;
		}
		
  	.apc.pod-windows .item .info .overlayicon { 
		background:none;
		font-size:100px;
		}
			
	
	@media (min-width:0) and (max-width:991px) {
		
  	.apc.pod-windows .row.smaller-items {
		margin:0; padding:0;
		}
		
	}
	
	@media (min-width:0) and (max-width:499px) {
	
	}
	
	@media (min-width:500px) {
		
  	.apc.pod-windows .item {
		margin:15px 0;
		}
  	.apc.pod-windows .item.quarter-item { 
		width:50%;
		}
  	.apc.pod-windows .item.half-item::before {
    	padding-top:48.5%;
		}
  	.apc.pod-windows .item.quarter-item::before {
    	padding-top:97.5%;
		}
		
	}
		
	@media (min-width:992px) {
		
  	.apc.pod-windows .row.smaller-items {
		margin:0; padding:0;
		}
		
  	.apc.pod-windows .full-item .heading {
		font-size:30px;
		}
  	.apc.pod-windows .half-item .heading {
		font-size:25px;
		}
  	.apc.pod-windows .quarter-item .heading {
		font-size:20px;
		}	
		
  	.apc.pod-windows .item .link {
		bottom:20px; left:20px;
		}
				
	}
		
	@media (min-width:1200px) {
		
  	.apc.pod-windows .full-item .heading {
		font-size:40px;
		}
  	.apc.pod-windows .half-item .heading {
		font-size:30px;
		}
		
  	.apc.pod-windows .item .link {
		bottom:30px; left:30px;
		}
		
	.apc.pod-windows .item.full-item .overlayicon {
		font-size:160px;
		}
		
	}

                            
/*  ----------------------------------------------------------------------------------------------------
    11.0 FORMS
    ---------------------------------------------------------------------------------------------------- */
	
	textarea { resize:none; }
	
	fieldset {
		margin:0 0 16px;
		}
	legend {
		padding:0 0 8px;
		margin:8px 0 16px;
		}
	label {
		font-weight:normal;
		/*display:block;*/
		}	
	em.req {
		font-style:normal;
		}
    .form-control {
        /*border-width:3px;
		        border-radius:0; min-height:50px;*/
        border-width: 1px;
        border-radius: 6px;
        min-height: 36px;
        background-color: #fff7f2;
    }
	.form-control:focus {
		border-color:#1c4484; border-color:rgba(241,103,57,1);
		box-shadow: 0 0 5px rgba(241,103,57,1);
		}

    .form-control.select {
        float:left;
    }
	/*select, select option {
		-webkit-appearance:none;
		-moz-appearance:none;
		-ms-appearance:none;
		appearance:none;
		}*/	
		
	fieldset label em.req {
		color:#a94442; color:rgba(169,68,68,1);
		}

	/* VALIDATION */
	.input-validation-error {
		border-color:#a94442;
		}
	.input-validation-error:focus {
		border-color:#a94442;
		box-shadow:0 1px 1px rgba(0,0,0,0.075) inset, 0 0 8px rgba(169,68,66,0.5);
		}

    .field-validation-error {
        display: block;
        padding: 7px;
        font-size: 12px;
        background-color: #f0e1d6; /*#a94442;*/
        /*color: #ffffff;
        color: rgba(255,255,255,1);*/
        border-radius: 0 0 10px 10px;
        }

    .field-validation-valid {
        display: none;
    	}
    .validation-summary-valid {
        display: none;
    	}

	footer .newsletter fieldset {
		position:relative;
		}
	footer .newsletter .btn {
		position:absolute; top:0; right:0;
		min-height:40px;
		}					



/*	----------------------------------------------------------------------------------------------------
	11.1 SITE SEARCH
	---------------------------------------------------------------------------------------------------- */
	
	.site-search {
		position:relative;
		margin:15px 0 0;
		}
	footer .site-search { 
		margin:15px 0 30px;
		}
	header .site-search { 
		margin:15px;
		}		
	.site-search fieldset {
		position:relative; pointer-events:all;
		}
	.site-search .form-group {
		}
	.site-search .form-control {
		width:100%; height:50px; min-height:50px; padding-right:50px;
		}
	header .site-search .form-control,
	footer .site-search .form-control {
		height:40px; min-height:40px; padding-right:40px;
		border:0 none;
		}
	.site-search button {
		width:50px; height:50px; padding-top:14px;
		position:absolute; top:0; right:0;
		font-size:20px; text-align:center;
		border:0 none;
		}
	header .site-search button,
	footer .site-search button {
		width:40px; height:40px; padding-top:10px;
		}
		
	@media (min-width:768px) {	
		
	}
		
	@media (min-width:992px) {
		
	header .site-search {
		margin:0;
		position:absolute; top:20px; left:250px;
		width:25%;
		}	
		
	}	
		
	@media (min-width:1200px) {	
		
	header .site-search {
		width:20%;
		}
		
	}

		
                            
/*  --------------------------------------------------
    11.2 AJAX LOADING         
    -------------------------------------------------- */

	.ajax-wrap {
		position:relative;
		width:100%;
		height:100%;
		}
	.ajax-wrap .ajax-loading {
	  	position:absolute; top:0; right:0; bottom:0; left:0; z-index:10;
		background-color:rgba(255,255,255,0.9);
		} 
	.ajax-wrap .ajax-loading .loading {
		margin:0;
		position:relative;
		text-align:center;
		display:table;
		width:100%; height:100%;
		}
	.ajax-wrap .ajax-loading .loading span.message {
		display:table-cell;
		width:100%; height:100%;
		text-indent:-9999px;
		vertical-align:middle;
		background-repeat:no-repeat; background-position:center;
		background-image:url('/images/icons/loading-on-white.gif');
		}
		
	@media (min-width:768px) {	
		
	}
		
	@media (min-width:992px) {
		
	}	
		
	@media (min-width:1200px) {	
		
	}
	


/*  --------------------------------------------------
    11.3 COOKIES
    -------------------------------------------------- */

	.cookie-notice {
		position:fixed; right:0; bottom:-100%; left:0; z-index:1000;
		padding:15px 0;
		opacity:0;
		
		-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,0);
		-moz-box-shadow:0 0 5px 0 rgba(0,0,0,0);
		-ms-box-shadow:0 0 5px 0 rgba(0,0,0,0);
		-o-box-shadow:0 0 5px 0 rgba(0,0,0,0);
		box-shadow:0 0 5px 0 rgba(0,0,0,0);
		
		-webkit-transition:bottom 1s ease-in-out 0.2s, opacity 0.75s ease-in-out 0.1s, box-shadow 1s ease-in-out 0.2s;
		-moz-transition:bottom 1s ease-in-out 0.2s, opacity 0.75s ease-in-out 0.1s, box-shadow 1s ease-in-out 0.2s;
		-ms-transition:bottom 1s ease-in-out 0.2s, opacity 0.75s ease-in-out 0.1s, box-shadow 1s ease-in-out 0.2s;
		-o-transition:bottom 1s ease-in-out 0.2s, opacity 0.75s ease-in-out 0.1s, box-shadow 1s ease-in-out 0.2s;
		transition:bottom 1s ease-in-out 0.2s, opacity 0.75s ease-in-out 0.1s, box-shadow 1s ease-in-out 0.2s;
		}
	.cookie-notice.open {
		bottom:0;
		opacity:1;
		
		-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,0.1);
		-moz-box-shadow:0 0 5px 0 rgba(0,0,0,0.1);
		-ms-box-shadow:0 0 5px 0 rgba(0,0,0,0.1);
		-o-box-shadow:0 0 5px 0 rgba(0,0,0,0.1);
		box-shadow:0 0 5px 0 rgba(0,0,0,0.1);
		}
		
	.cookie-notice .heading { 
		margin:0;
		}
	.cookie-notice .heading + .text { 
		margin-top:5px;
		}
	.cookie-notice .text :first-child { 
		margin-top:0;
		}
	.cookie-notice .text :last-child { 
		margin-bottom:0;
		}
		
	.cookie-notice p.link {
		margin:15px 0 0;
		}
		
	@media (min-width:768px) {	
		
	.cookie-notice p.link {
		margin:0;
		}
	.cookie-notice p.link a.btn { 
		display:block;
		}
		
	}
		
	@media (min-width:992px) {
		
	.cookie-notice {
		padding:20px 0;
		}
		
	}	
		
	@media (min-width:1200px) {	
		
	.cookie-notice {
		padding:30px 0;
		}
		
	}



/*	--------------------------------------------------
	12.0 MISC
	-------------------------------------------------- */		
	
	.inner {
		padding:15px;
		}
	.spc.quick-links .inner {
		padding-bottom:5px;
		}
	.c5-bg.inner {
		box-shadow:0 2px 1px rgba(21,21,21,0.05);
		}
		
	.has-borders {
		border-width:3px; border-style:solid;
		}
	.has-border-top {
		border-width:3px 0 0; border-style:solid;
		}
	.has-border-bottom {
		border-width:0 0 3px; border-style:solid;
		}
		
	.rounded {
		border-radius:3px;
		}		
	
	.item .table {
		margin:0;
		}	
	.table-cell {
    	padding:30px;
		}	
			
	.item-square {
		padding-bottom:100%;
		}
	.item-square .info {
		max-width:640px; margin:0 auto; padding:0;
		}
	.item-square .inner {
		position:absolute; top:0; right:0; bottom:0; left:0;
		}
	
	div.table {
		display:table; 
		width:100%; height:100%;
		margin:0;
		}
	div.table-cell {
    	display:table-cell;
    	vertical-align:middle;
		padding:0;
		}
	div.table-cell.align-top {
    	vertical-align:top;
		padding-top:140px;
		}
	div.table-cell.align-bottom {
    	vertical-align:bottom;
		padding-bottom:140px;
		}
		
	.no-padding {
		padding:0!important;
		}
	.no-padding-top {
		padding-top:0!important;
		}
	.no-padding-bottom {
		padding-bottom:0!important;
		}
		
	.padding-top {
		padding-top:30px!important;
		}
	.padding-bottom {
		padding-bottom:30px!important;
		}
		
	.short-padding {
		padding:20px 0!important;
		}
	.short-padding-top {
		padding-top:20px!important;
		}
	.short-padding-bottom {
		padding-bottom:20px!important;
		}
		
	.no-margin {
		margin:0!important;
		}
	.no-margin-top {
		margin-top:0!important;
		}
	.no-margin-bottom {
		margin-bottom:0!important;
		}
		
	.margin-top {
		margin-top:30px!important;
		}
	.margin-bottom {
		margin-bottom:30px!important;
		}
		
	.short-margin {
		margin:20px 0!important;
		}
	.short-margin-top {
		margin-top:20px!important;
		}
	.short-margin-bottom {
		margin-bottom:20px!important;
		}
		
		
	@media (max-width:991px) {
	
	.item-square {
		padding-bottom:75%;
		}
		
	.apc.banner .item.short div.table-cell,
	.apc.banner .item.medium div.table-cell {
		padding:0!important;
		}
		
	}	
		
	@media (min-width:768px) {
		
	.item-square {
		padding-bottom:50%;
		}
	.item-square .info {
		padding:0;
		}
		
	}
	
	@media (min-width:992px) {
		
	.container-fluid .item-square {
		}
	.inner {
		padding:20px;
		}
	.spc.quick-links .inner {
		padding-bottom:10px;
		}
		
	}	
	
	@media (min-width:1200px) {
		
	.container-fluid .item-square {
		padding-bottom:35%;
		}
	.inner {
		padding:30px;
		}
	.spc.quick-links .inner {
		padding-bottom:20px;
		}
		
	}


/*	--------------------------------------------------
	12.1 OVERLAY ICONS
	-------------------------------------------------- */
	
	.image {
		}
	.image a {
		display:block;
		position:relative;
		overflow:hidden;
		}	
		
	.overlayicon {
		position:absolute; top:0; right:0; bottom:0; left:0; z-index:20;
		padding:0; margin:0;
		background-color:rgba(0,0,0,0);
		
		text-align:center;
		font-size:40px; 
		
		display:table-cell; width:100%; height:100%; vertical-align:middle;
		
		-webkit-transition:background-color 0.2s ease-in-out 0s, opacity 0.2s ease-in-out 0s;
		-moz-transition:background-color 0.2s ease-in-out 0s, opacity 0.2s ease-in-out 0s;
		-ms-transition:background-color 0.2s ease-in-out 0s, opacity 0.2s ease-in-out 0s;
		transition:background-color 0.2s ease-in-out 0s, opacity 0.2s ease-in-out 0s;
		
		-webkit-opacity:0;
		-moz-opacity:0;
		-ms-opacity:0;
		opacity:0;
		}
	.item.video-pod a .overlayicon,
	div.video a .overlayicon {
		background-color:rgba(0,0,0,0.25);
		}
		
	html.no-touch a:hover .overlayicon,	
	.item.video-pod a .overlayicon,
	div.video a .overlayicon {
		
		-webkit-opacity:1;
		-moz-opacity:1;
		-ms-opacity:1;
		opacity:1;
		}
		
	html.no-touch a:hover .overlayicon,	
	html.no-touch .item.video-pod a:hover .overlayicon,
	html.no-touch div.video a:hover .overlayicon {
		background-color:rgba(0,0,0,0.75);
		}
		
  	.overlayicon::before {
		position:absolute; top:50%; left:50%;
		
    	-webkit-transform: translateX(-50%) translateY(-50%);
    	-moz-transform: translateX(-50%) translateY(-50%);
    	-ms-transform: translateX(-50%) translateY(-50%);
    	transform: translateX(-50%) translateY(-50%);
		}
	.masonry .overlayicon::before {
		position:relative; top:auto; left:auto;
		
		-webkit-transform:none;
		-moz-transform:none;
		-ms-transform:none;
		transform:none;
		
		top:35%;
		}
		
		
	@media (min-width:768px) {
		
	}
		
	@media (min-width:992px) {
		
	.overlayicon {
		font-size:50px;
		}
		
	}	
		
	@media (min-width:1200px) {
		
	.overlayicon {
		font-size:60px;
		}
		
	}

    .moveup {
        margin-top: -20px!important;
    }

    .orangebold {
        font-weight: bold;
        color: #f16739;
    }
    .lightorangebg {
        background-color:moccasin; /*#f4bd93;*/
    }

    .bluebold {
        font-weight: bold;
        color: #1c4484;
    }
    .lightbluebg {
        background-color:powderblue ;  /*#455c82;*/
    }

    .larger {
        font-size: larger;
    }

    .nopadding {
        padding: 0px!important;
    }

    .width90 {
        width: 90%;
    }

    .roundcorner25 {
        border-radius: 25px;
    }

    .roundcorner10 {
        border-radius: 10px;
    }

/*	--------------------------------------------------
	13.1 JQuery UI DatePicker
	-------------------------------------------------- */
.ui-datepicker {
    background-color: #fff;
    border: 1px solid #66AFE9;
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(102,175,233,.6);
    display: none;
    margin-top: 4px;
    padding: 10px;
    width: 240px;
}

    .ui-datepicker a,
    .ui-datepicker a:hover {
        text-decoration: none;
    }

        .ui-datepicker a:hover,
        .ui-datepicker td:hover a {
            color: #2A6496;
            -webkit-transition: color 0.1s ease-in-out;
            -moz-transition: color 0.1s ease-in-out;
            -o-transition: color 0.1s ease-in-out;
            transition: color 0.1s ease-in-out;
        }

    .ui-datepicker .ui-datepicker-header {
        margin-bottom: 4px;
        text-align: center;
    }

    .ui-datepicker .ui-datepicker-title {
        font-weight: 700;
    }

    .ui-datepicker .ui-datepicker-prev,
    .ui-datepicker .ui-datepicker-next {
        cursor: default;
        font-family: 'Glyphicons Halflings';
        -webkit-font-smoothing: antialiased;
        font-style: normal;
        font-weight: normal;
        height: 20px;
        line-height: 1;
        margin-top: 2px;
        width: 30px;
    }

    .ui-datepicker .ui-datepicker-prev {
        float: left;
        text-align: left;
    }

    .ui-datepicker .ui-datepicker-next {
        float: right;
        text-align: right;
    }

    .ui-datepicker .ui-datepicker-prev:before {
        content: "\e079";
    }

    .ui-datepicker .ui-datepicker-next:before {
        content: "\e080";
    }

    .ui-datepicker .ui-icon {
        display: none;
    }

    .ui-datepicker .ui-datepicker-calendar {
        table-layout: fixed;
        width: 100%;
    }

        .ui-datepicker .ui-datepicker-calendar th,
        .ui-datepicker .ui-datepicker-calendar td {
            text-align: center;
            padding: 4px 0;
        }

        .ui-datepicker .ui-datepicker-calendar td {
            border-radius: 4px;
            -webkit-transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
            -moz-transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
            -o-transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
            transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
        }

            .ui-datepicker .ui-datepicker-calendar td:hover {
                background-color: #eee;
                cursor: pointer;
            }

            .ui-datepicker .ui-datepicker-calendar td a {
                text-decoration: none;
            }

    .ui-datepicker .ui-datepicker-current-day {
        background-color: #ff6a00;
    }

        .ui-datepicker .ui-datepicker-current-day a {
            color: #fff
        }

    .ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover {
        background-color: #fff;
        cursor: default;
    }

.ui-datepicker-month,
.ui-datepicker-year {
    width: 60px !important;
    padding: 3px;
}


.italictext {
    font-style: italic;
}

.strikethrough {
    text-decoration: line-through!important;
}

.greytext {
    color: grey;
}

/*	--------------------------------------------------
	Font-Awesome icon colours
	-------------------------------------------------- */
	
i.fa_red {
    color: #980606;
}
i.fa_green {
    color: #015c06;
}
i.fa_orange {
    color: #d36f10;
}
i.fa_blue {
    color: #0a3bc2;
}
i.fa_brightgreen {
    color: #19b24b;
}
i.fa_grey {
    color: lightgray;
}

/* Extensions of Seeker classes */
#technical.comp-info {
    border-radius: 10px;
    border-top: solid 4px #980606;
    /*background-color: rgba(152, 6, 6, 0.05);*/
    background-color: rgba(215, 200, 200, 0.8);
}
#mobile.comp-info {
    border-radius: 10px;
    border-top: solid 4px #015c06;
    /*background-color: rgba(1, 92, 6, 0.05);*/
    background-color: rgba(182, 207, 189, 0.8);
}
#design.comp-info {
    border-radius: 10px;
    border-top: solid 4px #d36f10;
    /*background-color: rgba(211, 111, 16, 0.05);*/
    background-color: rgba(211, 190, 175, 0.8);
}
#systems.comp-info {
    border-radius: 10px;
    border-top: solid 4px #0a3bc2;
    /*background-color: rgba(10, 59, 194, 0.05);*/
    background-color: rgba(165, 172, 194, 0.8);
}
#prototype.comp-info {
    border-radius: 10px;
    border-top: solid 4px #0a3bc2;
    background-color: rgba(244, 123, 32, 0.1);
    /*background-color: rgba(10, 59, 194, 0.05);*/
    /*background-color: rgba(165, 172, 194, 0.25);*/
    /*background-color: rgba(255, 255, 255, 1);*/
    -webkit-box-shadow: 8px 8px 12px rgba(0,0,0,0.1);
    -moz-box-shadow: 8px 8px 12px rgba(0,0,0,0.1);
    -ms-box-shadow: 8px 8px 12px rgba(0,0,0,0.1);
    -o-box-shadow: 8px 8px 12px rgba(0,0,0,0.1);
    box-shadow: 8px 8px 12px rgba(0,0,0,0.1);
}

/*.comp-item .fa-mobile-alt {
    position: relative;
}*/
.comp-item .fa-mobile-alt:after {
    content: "\f10b";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    /*--adjust as necessary--*/
    color: #808080;
    opacity: 0.065;
    font-weight: 900;
    font-size: 300px;
    /*padding-right: 0.5em;*/
    position: absolute;
    bottom: -35px;
    right: 10px;
}

/*.comp-item .fa-desktop {
    position: relative;
}*/
.comp-item .fa-desktop:after {
    content: "\f108";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    /*--adjust as necessary--*/
    color: #808080;
    opacity: 0.065;
    font-weight: 900;
    font-size: 150px;
    /*padding-right: 0.5em;*/
    position: absolute;
    bottom: -2px;
    right: 10px;
}

/*.comp-item .fa-cogs {
    position: relative;
}*/
.comp-item .fa-cogs:after {
    content: "\f085";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    /*--adjust as necessary--*/
    color: #808080;
    opacity: 0.065;
    font-weight: 900;
    font-size: 200px;
    /*padding-right: 0.5em;*/
    position: absolute;
    bottom: 0px;
    right: 8px;
}

/*.comp-item .fa-pen-fancy {
    position: relative;
}*/
.comp-item .fa-pen-fancy:after {
    content: "\f1fc"; /*"\f247";*/ /*"\f1ea";*/
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    /*--adjust as necessary--*/
    color: #808080;
    opacity: 0.065;
    font-weight: 900;
    font-size: 170px;
    /*padding-right: 0.5em;*/
    position: absolute;
    bottom: 8px;
    right: 10px;
}

.comp-item .watchlist:before {
    content: "\f02e"; /*"\f247";*/ /*"\f1ea";*/
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    /*--adjust as necessary--*/
    color: #f16739;
    opacity: 1;
    font-weight: 900;
    font-size: 50px;
    /*padding-right: 0.5em;*/
    position: absolute;
    top: -22px;
    right: 16px;
    text-shadow: 5px 5px 5px rgba(0,0,0,0.3);
}

.comp-item .entered:before {
    content: "\f058"; /*"\f336";*/ 
    font-family: FontAwesome;
    /*font-family: Font Awesome 5 Pro;*/
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    /*--adjust as necessary--*/
    color: #f16739;
    opacity: 1;
    font-weight: 900;
    font-size: 50px;
    /*padding-right: 0.5em;*/
    position: absolute;
    top: -22px;
    right: 16px;
    text-shadow: 5px 5px 5px rgba(0,0,0,0.3);
}

span.item-text-display {
    cursor: pointer;
}
span.item-text-display:hover {
    color: rgba(211, 111, 16, 1);
}
span.item-text-editfield {
    display: none;
}

.semibold {
    font-weight: 600;
}
.align-centre {
    /*text-align: center;*/
    margin: auto;
    width: 50%;
}
.text-centre {
    text-align: center;
}
.floatright {
    float: right;
}
.padright50 {
    padding-right:50px;
}
.marginright75 {
    margin-right: 75px;
}
.col-centered {
    float: none;
    margin: 0 auto;
}

/* --------------------------------------------------- */
   /*SEEKER*/


/* Tr Category */

.tr-category {
    text-align: center;
}

.category-list {
    border-radius: 4px;
    overflow: hidden;
}

    .category-list li {
        float: left;
        width: 20%;
        font-size: 16px;
        background-color: #fff;
        border-right: 1px solid #e6e3e6;
        border-bottom: 1px solid #e6e3e6;
        border-radius: 15px;
    }

        .category-list li a:hover {
            background-color: rgba(247, 148, 29, 0.75);
            border-radius: 10px;
            color: white;
        }

    .category-list.category-list-bottom li {
        border-bottom: 0;
    }

    .category-list li:last-child {
        border-right: 0;
    }

    .category-list li a {
        color: #b5b5b5;
        display: block;
        padding: 40px 15px;
        text-align: center;
        height: 180px;
    }

    .category-list span {
        display: block;
    }

    .category-list .category-title {
        color: #505050;
    }

    .category-list .icon {
        margin-bottom: 5px;
        min-height: 40px;
    }

        .category-list .icon img {
            display: inline-block;
            -webkit-filter: grayscale(1);
            -moz-filter: grayscale(1);
            -ms-filter: grayscale(1);
            -o-filter: grayscale(1);
            filter: grayscale(1);
        }

    .category-list li:hover .icon img {
        -webkit-filter: grayscale(0);
        -moz-filter: grayscale(0);
        -ms-filter: grayscale(0);
        -o-filter: grayscale(0);
        filter: grayscale(0);
    }


/*.category-list .icon i {
    display: inline-block;
    -webkit-filter: grayscale(1);
    -moz-filter: grayscale(1);
    -ms-filter: grayscale(1);
    -o-filter: grayscale(1);
    filter: grayscale(1);
}

.category-list li:hover .icon i {
    -webkit-filter: grayscale(0);
    -moz-filter: grayscale(0);
    -ms-filter: grayscale(0);
    -o-filter: grayscale(0);
    filter: grayscale(0);
}*/

.tr-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.tr-title {
    color: #000;
    display: block;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

/* Tr Banner */

.tr-banner {
    color: #fff;
    padding: 120px 0;
    background-image: url(../images/bg/banner.jpg);
}

.banner-content h1 {
    font-size: 48px;
    margin-top: 0;
}

.banner-content h2 {
    font-size: 24px;
    margin-bottom: 0;
}

.banner-form {
    text-align: center;
    margin-top: 35px;
}

    .banner-form form {
        background-color: #fff;
        position: relative;
        border-radius: 30px;
        max-width: 730px;
        display: inline-block;
    }

    .banner-form input,
    .banner-form .dropdown {
        background-position: 20px center;
        background-repeat: no-repeat;
        font-size: 16px;
    }

        .banner-form .dropdown li a {
            line-height: 20px;
        }

    .banner-form .dropdown {
        width: 290px;
        line-height: 45px;
        padding: 0 15px 0 40px;
        text-align: left;
        background-image: url(../images/icons/comps-bg.png);
        /*background-image: url(../images/others/location-bg.png);*/
        background-position: 10px center;
    }

    .banner-form .dropdown-menu {
        min-width: 100%;
    }

        .banner-form .dropdown-menu a {
            font-size: 16px;
        }

    .banner-form .dropdown a {
        display: block;
    }

        .banner-form .dropdown a i {
            float: right;
            margin-top: 15px;
        }

    .banner-form .dropdown a {
        font-size: 16px;
        margin: 0;
        color: #000;
        border: none;
        border-radius: 5px 0 0 5px;
        text-transform: capitalize;
    }

    .banner-form input {
        width: 325px;
        padding: 0 45px;
        color: #11414e;
        border: none;
        border-right: 1px solid #cdcdcd;
        border-radius: 30px 0 0 30px;
        background-image: url(../images/icons/search-bg.png);
        /*background-image: url(../images/others/search-bg.png);*/
    }

        .banner-form input:focus {
            border-right-color: #cdcdcd;
        }

        .banner-form input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
            color: #11414e;
        }

        .banner-form input::-moz-placeholder { /* Firefox 19+ */
            color: #11414e;
        }

        .banner-form input:-ms-input-placeholder { /* IE 10+ */
            color: #11414e;
        }

        .banner-form input:-moz-placeholder { /* Firefox 18- */
            color: #11414e;
        }

    .banner-form .dropdown a {
        color: #11414e;
    }

    .banner-form .form-control,
    .banner-form button.btn-primary,
    .banner-form .dropdown {
        float: left;
        height: 46px;
        margin-bottom: 0;
        background-color: #fff;
    }

    .banner-form button.btn-primary {
        color: #fff;
        font-size: 14px;
        width: 114px;
        margin-right: -1px;
        padding: 0;
        line-height: 47px;
        background-color: #008def;
        border: 1px solid #008def;
        border-radius: 0 30px 30px 0;
        text-transform: uppercase;
    }

        .banner-form button.btn-primary:before {
            display: none;
        }

.dropdown a:hover {
    /*color: #008def;*/
    color:white!important;
}


a,
a:hover,
a:focus,
input:focus {
    text-decoration: none;
    outline: none;
    color: #008def;
}

    a:hover {
        color: #008def;
    }

    a:active,
    a:focus, button:focus, .btn:focus,
    input:focus, textarea:focus, select:focus,
    .form-control, .form-control:focus {
        outline: none !important;
        text-decoration: none !important;
        box-shadow: none !important;
    }

.section-title h1 {
    font-size: 24px;
    color: #505050;
    text-align: center;
    text-transform: uppercase;
    margin: 0 0 45px;
}

    .section-title h1.short-padding-bottom {
        font-size: 24px;
        color: #505050;
        text-align: center;
        text-transform: uppercase;
        margin: 0 0 0px;
    }

.section-title h2 {
    font-size: 22px;
    color: #505050;
    text-align: center;
    /*text-transform: uppercase;*/
    margin: 10px 0 20px 0; /*0 45px;*/
}

.bg-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-padding {
    padding: 80px 0;
}

.page-content {
    margin: 80px 0;
}


.icon .tr-title i {
    font-size: 36px;
    display: block;
}

/*.icon .tr-title i:hover {
    font-size: 42px;
    display: block;
}*/


.comp-item {
    border-radius: 10px;
    position: relative;
    margin-bottom: 30px;
    z-index: 1;
    /*border-top: solid 3px red;*/
}

    .comp-item .btn.btn-primary {
        text-transform: capitalize;
        font-size: 14px;
        text-align: center;
    }

    .comp-item .comp-info {
        font-size: 14px;
        color: #353535;
        overflow: hidden;
        padding: 25px 25px 20px;
        margin-bottom: 30px !important;
        height: 320px;
    }

.padafter {
    text-align: left!important;
}

.comp-item .comp-info .padafter {
    display: block;
    padding-bottom: 10px;
}

.comp-item .comp-info .btmtext {
    font-size: 12px;
    position: absolute;
    bottom: 5px;
    right: 8px;
}

.comp-info .company-logo {
    margin-bottom: 30px;
}

.comp-info .tr-title {
    margin-bottom: 15px;
}

    .comp-info .tr-title span {
        font-size: 14px;
        display: block;
    }

    .comp-info .tr-title a {
        color: #000;
    }

        .comp-info .tr-title a:hover {
            color: #008def;
        }

.comp-info ul {
    margin-bottom: 30px;
}

.comp-meta li,
.comp-meta li a {
    color: #646464;
}

    .comp-meta li a:hover {
        color: #008def;
    }

.comp-meta li {
    font-size: 12px;
    margin-bottom: 10px;
}

    .comp-meta li span i {
        color: #000;
    }

    .comp-meta li i {
        margin-right: 15px;
    }

.comp-item .time {
    position: relative;
}

    .comp-item .time:after {
        position: absolute;
        content: "";
        bottom: 35px;
        left: -50px;
        width: 150%;
        height: 1px;
        background-color: #f5f4f5;
        z-index: -1;
    }

.comp-item:hover .time,
.comp-item:hover .time:after {
    opacity: 0;
}

.comp-item .time span {
    font-size: 12px;
    color: #bebebe;
    line-height: 25px;
}

.comp-item .btn.btn-primary,
.role .btn.btn-primary,
.comp-item .time a span {
    padding: 5px 10px;
    border-radius: 4px;
    line-height: 10px;
    font-size: 12px;
}

.comp-item .time a span {
    color: #fff;
    background-color: #f1592a;
    border-color: #f1592a;
}

    .comp-item .time a span.part-time {
        background-color: #00aeef;
        border-color: #00aeef;
    }

    .comp-item .time a span.freelance {
        background-color: #92278f;
        border-color: #92278f;
    }

.comp-item .item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 85%;
    border-radius: 10px 10px 0 0;
    /*background-color: #008def;*/
    background-color: rgba(28,68,132,1);
    color: #fff;
    opacity: 0;
    -webkit-transition: all 800ms;
    -moz-transition: all 800ms;
    -ms-transition: all 800ms;
    -o-transition: all 800ms;
    transition: all 800ms;
}
.comp-item .item-overlay.full {
    height: 100%!important;
    border-radius: 10px;
}
.comp-item .item-overlay.base {
    top: 85%;
    height: 15%;
    border-radius: 0 0 10px 10px;
    background-color: rgba(40,40,40,1);
    display: block;
}


.comp-item .item-overlay .linktext {
    font-size: larger;
    font-weight: bold;
    padding: 100px 20px;
    text-align: center;
}
.comp-item .item-overlay .linktext.full {
    padding: 120px 20px;
}
.comp-item .item-overlay .linktext.base {
    font-size: medium!important;
    padding: 15px 10px;
}

.comp-item .item-link .linktext {
    border-radius: 10px;
    background-color: rgba(211, 111, 16, 0.75);
    color: rgba(10, 59, 194, 0.95);
    font-size: larger;
    font-weight: bold;
    padding: 100px 20px;
    text-align: center;
}
.comp-item .item-link .linktext.full {
    padding: 120px 20px;
}
.comp-item .item-link .linktext.base {
    padding: 15px 10px;
}

.comp-item:hover .item-overlay {
    opacity: 0.95;
}

    .comp-item:hover .item-overlay .button {
        height: 20px;
        width: 80%;
        margin: -20px -10px;
        position: relative;
        top: 50%;
        left: 50%;
    }

.item-overlay .comp-info {
    padding: 45px 25px 40px;
    overflow: hidden;
}

.item-overlay .btn.btn-primary {
    background-color: #007bd4;
    border-color: #007bd4;
    margin-bottom: 10px;
}

.item-overlay .comp-info,
.item-overlay .comp-info ul li,
.item-overlay .comp-info ul li i,
.item-overlay .comp-info .tr-title a {
    color: #fff;
}
/*.link_fulldiv {
    display: inline-block;
    width: 100%;
    height: 100%;
}*/

.comp-social {
    margin-top: 35px;
}

    .comp-social li {
        float: left;
    }

        .comp-social li + li {
            margin-left: 15px;
        }

        .comp-social li a i {
            margin-right: 0;
            font-size: 14px;
        }

        .comp-social li a {
            width: 35px;
            height: 35px;
            text-align: center;
            display: block;
            background-color: #007bd4;
            line-height: 35px;
            border-radius: 100%;
            border: 1px solid #007bd4;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .comp-social li:last-child a {
            background-color: #fff;
        }

            .comp-social li:last-child a i {
                color: #008def;
            }

        .comp-social li a:before {
            position: absolute;
            content: "";
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            border-radius: 100%;
            background-color: #008def;
            -webkit-transform: scale(0);
            -moz-transform: scale(0);
            -ms-transform: scale(0);
            transform: scale(0);
        }

        .comp-social li a:hover:before {
            -webkit-transform: scale(1);
            -moz-transform: scale(1);
            -ms-transform: scale(1);
            transform: scale(1);
            padding: 5px;
        }

        .comp-social li a:hover {
            border-color: #fff;
        }

            .comp-social li a:hover i {
                color: #fff;
            }



/* --------------------------------------------------- */

/*---------------------------------------------
    Wizards
---------------------------------------------*/
    .wizard {
    }

    .wizard::after {
        content: '\00a0'; /* Add some space after the wizard tabs*/
    }

    .wizard .wizardtabs {
        text-align: right; /*center;*/
        font-size: small;
        border-style: solid;
        border-width: 2px;
        border-color: white;
        padding: 4px 2px;
        /*padding: 12px 2px;*/
        /*line-height: 2;*/
        /*background-color: rgba(220,220,220,.75);*/
        /*margin: 2px;*/
        /*border-collapse: separate;
    border-spacing: 5px;*/
    }

    .wizard .wizardtabs::after {
        /*padding-bottom: 50px;*/
    }

    .wizard .wizardtabs.selected {
        /*font-size: unset;*/
        font-weight: bold;
        /*border-color: darkgoldenrod;*/
        /*background-color: rgba(50,50,50,.75);*/
        color: sandybrown;
    }

    .wizard .wizardtabs.first {
        /*border-radius: 20px 20px 0 0;*/
        /*border-radius: 20px 0 0 20px;*/
    }

    .wizard .wizardtabs.last {
        /*border-radius: 0 0 20px 20px;*/
        /*border-radius: 0 20px 20px 0;*/
    }

    @media (min-width:0) and (max-width:767px) {
        .wizard .wizardtabs {
            font-size: 6pt;
        }
    }

    /* Form buttons */
    /*input[type=text] {
        padding: 5px;
        border: 2px solid #ccc;
        -webkit-border-radius: 5px;
        border-radius: 5px;
    }

        input[type=text]:focus {
            border-color: #333;
        }*/

input[type=submit] {
    padding: 5px 15px;
    background:#;
    border: 1px solid;
    border-color: #ccc;
    cursor: pointer;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

        input[type=submit]:hover {
            padding: 5px 15px;
            background: rgba(241,103,57,0.2);
            /*font-weight: bold;*/
            border:1px solid;
            border-color: rgba(241,103,57,0.5);
            cursor: pointer;
            -webkit-border-radius: 5px;
            border-radius: 5px;
        }


button.listtoggle {
    font-weight: normal;
    font-size:smaller;
    border-radius: 5px;
    padding: 2px 5px;
}
    button.listtoggle.mand:hover, button.listtoggle.wish:hover, button.listtoggle.dont:hover {
        background-color: moccasin;
    }
    button.listtoggle.mand {
        background-color: #e1d95a; /*#ccc54e; */ /*lightgoldenrodyellow;*/
    }
    button.listtoggle.wish {
        background-color: lightblue;
    }
button.listtoggle.dont {
    background-color:lightcoral;
}
.mand {
    background-color: #e1d95a; /*#ccc54e; */ /*lightgoldenrodyellow;*/
}

.wish {
    background-color: lightblue;
}

    .dont {
        background-color: lightcoral;
    }

.bg-lightyellow {
    /*background-color: #ccc54e;*/
    /*background-color: lightgoldenrodyellow;*/
    background-color:rgba(200,200,50,0.2);
    /*background-color: #e1d95a;*/
}
.bg-lightgreen {
    background-color: rgba(100,200,50,0.2);
}
.bg-medgreen {
    background-color: rgba(100,200,50,0.75);
    color:white;
}
.bg-lightblue {
    background-color: rgba(50,75,150,0.1);
}
.bg-lightred {
    background-color: rgba(200,50,50,0.2);
}
.bg-lightgrey {
    background-color: rgba(100,100,100,0.1);
}

.bluredge_yellow {
    box-shadow: 0 0 8px 8px rgba(200,200,50,0.2);
}
.bluredge_ltgreen {
    box-shadow: 0 0 8px 8px rgba(100,200,50,0.2);
}
.bluredge_medgreen {
    box-shadow: 0 0 8px 8px rgba(100,200,50,0.75);
}
.bluredge_blue {
    box-shadow: 0 0 8px 8px rgba(50,75,150,0.1);
}
.bluredge_red {
    box-shadow: 0 0 8px 8px rgba(200,50,50,0.2);
}
.bluredge_grey {
    box-shadow: 0 0 8px 8px rgba(100,100,100,0.1);
}

.infotextlrgitalic {
    font-size:large;
    font-style:italic;
}
.infotextlrg {
    font-size: large;
}

.infotextsmlitalic {
    font-size:small;
    font-style:italic;
}
.infotextsml {
    font-size: small;
}

/* For flipping order around when going mobile */
.rwd-line {
    display: block;
}
@media screen and (min-width: 576px) {
    .rwd-line {
        display: inline;
    }
}

.timelinebox {
    padding: 8px;
}
.pullright {
    text-align: right;
}
.blackbg-rounded {
    background-color:black;
    border-radius:4px;
    color:white;
    font-weight: bold;
}

.floatbox {
    padding: 0 15px;
    background-color: #fcfcfc;
    box-shadow: 5px 5px 10px #ddd;
    overflow: visible;
    max-width: 98%;
}
.headingpad15 {
    padding: 15px 5px!important;
}

table.vertmiddle {
    vertical-align: middle;
}




/*	--------------------------------------------------
	END
	-------------------------------------------------- */
	
