/* #Page Styles
===========================================================================================   */
	
	.container {
		width: 959px;
		margin: 0 auto;
		padding: 0;
		text-align: left;	
		position: relative;
		box-sizing: border-box;
	}
	.container::after {
	    content: '';
	    display: table;
	    clear: both;
	}
	
	.conpadd { padding: 60px; }
	.horpadd { padding: 0 60px; }
	
	#main {
		line-height: 21px;
		width: 100%;
	}
	

/* Header
===========================================================================================   */		

	header {
		height: 65px;
		width: 100%;
		z-index: 10;
		padding-top: 15px;
		position: absolute;
		background: rgba(255,255,255,.9);
	}
	header .menu {
		display: none;
	}
	.push { height: 80px}
	
	header span {
		float: right;
	}
	header .logo {
		text-indent: -9000px;
		background: url(/_img/layup/logo_int.png) no-repeat;
		width: 43px;
		height: 49px;
		background-size: 100%;
		float: left;
		outline: 0;
		opacity: 1;
		transition: opacity .3s ease-in-out
	}
	
	
	.printlogo {
		display: none;
	}
	
	
	#searchform {
		float: right;
		margin: 52px 0 0 20px;
	}
	#searchform input {
		width: 250px;
		float: left;
		margin-top: 15px;
	}
	
	.b_home header {
		background: none;
	}
	.b_home header .logo {
		background-image: url(/_img/layup/logo.png);
		width: 317px;
		height: 96px;
		opacity: 0.3;
		position: absolute;
		right: 12vw;
		top: 300px;
	}
	
	header .logo:hover {
		opacity: 1;
	}
	
	

/* Top navigation
===========================================================================================   */	
	
	#topnavi {
		float: right;
	}
	
	.b_home #topnavi {
		float: none;
	}
	
	#topnavi ul  {
		margin: 5px 0 0 0;
		padding: 0;
	}
	#topnavi li {
		list-style: none;
		float: left;
		position: relative;
		display: inline;
		margin: 0 ;
		padding: 0 ;
		
	}
	#topnavi a {
		display: block;
		text-align: center;
		color: #000;
		padding: 0 15px;
		text-decoration: none;
		box-sizing: border-box;
		font-size: 20px;
		white-space: nowrap;
		text-transform: uppercase;
	}
	.b_home #topnavi a { color: #fff }
	
	#topnavi a:hover,
	#topnavi a:focus,
	#topnavi .on,
	#topnavi ul li:hover a {
		text-decoration: none;
		color: #7B1152;
	}


		#topnavi ul ul {	
			display: none;
			position: absolute;
			z-index: 9999;
			top: 20px;
			left: 0;
			height: auto;
			padding: 10px 0 0 0;
			width: auto;
			min-width: fit-content;
			
			
		}
		#topnavi ul ul li {
			float: none;
			display: block;
			background: #7b1152;
		}
		#topnavi ul ul a {
			display: block;
			float: none;
			text-align: left;
			padding: 8px 15px;
			font-size: 17px;
			margin: 0;
			white-space: nowrap;
			line-height: 1;
			color: #fff !important;
		}
		#topnavi ul ul a:hover{
			background: #000;
		}		
		
		#topnavi li:hover > ul {
			display: block;
		}
					
		#topnavi ul ul ul {
			display: none;
			left: 100%;
			top: 0;
		}
		

		
	

/* Hero
===========================================================================================   */

	#hero {
		clear: both;
		background: #3d3d3d;
		border-bottom: 1px solid #fff;
	}

	#slideimages { 
		position:relative; margin: 0; padding: 0; overflow: hidden;
        animation:fadeIn ease-in 1.5s;
	}
	
	#slideimages li{ 
		position:absolute; 
		z-index:0; 
		margin: 0; 
		padding: 0; 
		list-style: none;
		background-position: center bottom; 
		background-repeat: no-repeat;
		background-size: cover;
	 }
	.b_home #slideimages li {
		background-position: center top; 
	} 

	#slideimages li.previous { z-index: 1; }
	#slideimages li.active { z-index: 2; }
	
	
	#hero,
	#imgholder,
	#slideimages,
	#slideimages li,
	#slideimages video {
		width: 100%;
		height: 350px;
		overflow: hidden;
		object-fit: cover;
	}
	
	.b_home #hero,
	.b_home #imgholder,
	.b_home #slideimages,
	.b_home #slideimages li,
	.b_home #slideimages video {
		height: 100vh;
	}
	
	

	@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
	
	
/* Projects
===========================================================================================   */	
	
    .projectgrid {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		grid-auto-rows: 13vw;
		gap: 10px;
		margin: 0;
		padding: 0
    }

    .projectgrid li {
		list-style: none;
		margin: 0;
		padding: 0;
		position: relative;
		overflow: hidden;
		background: #000;
		color: #fff;
    }

    .projectgrid li img {
		width: 100%;
		height: 100% !important;
		object-fit: cover;
		display: block;
    }
    


   .projectgrid li div,
   .intropage li span {
		position: absolute;
		z-index: 1;
		inset: 0;
		background: rgba(123, 17, 82, 0.6);
		opacity: 0;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
		transition: 0.5s ease;
		color: white;
		padding: 10px;
		font-size: 50px;
		line-height: 50px;
    }
    
    .projectgrid li div:after,
    .intropage li span:after {
	    content: '';
	    background: url(/_img/layup/arrow.svg) no-repeat 0 0;
	    background-size: contain;
	    width: 32px;
	    height: 36px;
	    margin-top: 10px;
    }
    
    
	.projectgrid li div span {
		display: block;
		font-size: 30px; 
	}

    .projectgrid li:hover div,
    .intropage li:hover span {
		opacity: 1;
    }

    .p2x2 { grid-column: span 2; grid-row: span 2; }
    .p1x1 { grid-column: span 1; grid-row: span 1; }
    
    .projectgrid li.p1x1 div { font-size: 30px; line-height: 30px}
    .projectgrid li.p1x1 div:after { width: 19px; height: 21px}
    .projectgrid li.p1x1 div span { font-size: 20px}
    
    
/* Map
===========================================================================================   */

	#gmap {
	    width: 100%;
	    height: 400px;
	}
	
	.bubble {
	    text-align: left;
	}
	
	.bubble a {
	    position: static;
	    margin-top: 5px;
	    display: block;
	    text-align: center;
	    background: #000;
	    color: #fff;
	    text-decoration: none;
	    font-weight: bold;
	    padding: 2px 0;
	}
	
/* Footer
===========================================================================================   */	
	

	footer {
		clear: both;
		margin: 0;
		padding: 20px 0; 
		background: #000;
		color: #fff;
		overflow: hidden;
	}
	
	footer ul{
		margin: 0;
		padding: 0;
		text-align: left;
		float: left;
		width: 400px;
	}
	footer ul li{ 
		width: 50%;
		margin: 0;
		padding: 0;
		list-style: none;
		float: left;
	}
	footer ul li a{
		color: #eee;
		text-decoration: none;	
		padding: 0;
		font-size: 16px;
		line-height: 1;
	}
	footer ul a:hover {
		text-decoration: underline;
		color: #fff;
	}
	footer address {
		float: right;
		text-align: right;
	}
	
	footer address a {
		font-size: 37px;
		line-height: 1.2;
		color: #fff;
		text-decoration: none;
	}
	footer address a:hover {
		color: #8a336c;
	}
	footer address a.email {
		font-size: 25px;
		
	}
	
	.social {
	    float: right;
	    margin: 20px 0 10px;
	    padding: 0;
	    clear: right;
	}
	
	.social li {
	    margin: 0 0 0 12px;
	    padding: 0;
	    text-align: center;
	    list-style: none;
	    float: left;
	    border: 1px solid transparent;
	}
	
	.social li a:before {
	    color: #fff;
	    font: normal 35px / 35px 'Font Awesome 5 Brands';
	}
	
	.social li a.s1:before {
	    content: '\f0d3';
	}
	
	.social li a.s2:before {
	    content: '\f08c';
	}
	
	.social li a.s3:before {
	    content: '\e055';
	}
	
	.social li a {
	    font-size: 0;
	    text-decoration: none;
	}
	.social li a:hover:before {
		color: #8a336c;
	}
	
	
	
/* Introduction Page
===========================================================================================   */		
	
	.intropage {
	    margin: 50px -12px 20px;
	    padding: 0;
	    display: flex;
	    flex-wrap: wrap;
	}
	
	.intropage li {
	    width: calc( 25% - 24px);
	    margin: 0 12px 24px;
	    padding: 0 ;
	    list-style: none;
	    overflow: hidden;
	    float: left;
	    position: relative;
	}
	.intropage div {
	    display: block;
	    width: 100%;
	    padding-bottom: 100%;
	    background-size: cover;
	    margin-bottom: 10px;
	}
	
	.intropage h3  {
		margin: 0;
		padding: 0;
		text-align: right;
		font-size: 35px;
	}
	.intropage li span { bottom: 10px}
	.intropage p  {
		margin: 10px 0 0 0;
		font-size: 15px;
		line-height: 1.2;
	}
	.intro_services h3 {
		position: absolute;
		right: 0;
		bottom: 0;
		z-index: 10;
	}
	.intro_services a {
		color: #000;
	}
	
	.intro_services div {
		position: relative;
		filter: grayscale(1);
		opacity: 0.7;
	}
	
/* Standard CMS
===========================================================================================   */


	.fullwidth {
		width: 100vw;
		position: relative;
		left: 50%;
		right: 50%;
		margin: 0 -50vw;
		color: #fff;
	}	

	
	
	.docs {
		margin: 0;
		padding: 0;
	}
	.docs li{
		margin: 0;
		padding: 0;
		clear: left;
		list-style: none;
	}
	.docs a{
		padding: 0 0 10px;
		float: left;
		text-decoration: none 
	}
	
	.docs span{
		float: left;
		padding: 3px 0 0 20px;
		color: #999;
		font-size: 11px;
	}
	.docs a:before {
		color: #711d50;
		font: bold 20px/1 'Font Awesome 5 Pro';
		margin-right: 10px;
		text-decoration: none;
		content: '\f016';
	}
	
	.jpeg:before, 
	.jpg:before, 
	.gif:before, 
	.png:before, 
	.bmp:before, 
	.tif:before, 
	.tiff:before  { content: '\f1c5' !important; }

	.doc:before, 
	.docx:before, 
	.docm:before  { content: '\f1c2' !important; }

	.xls:before, 
	.xlsx:before, 
	.xlsm:before  { content: '\f1c3' !important; }

	.ppt:before, 
	.pptx:before, 
	.pptm:before  { content: '\f1c4' !important; }

	.pdf:before  { content: '\f1c1' !important; }
		

	
	
	
	#sitemap,
	#sitemap ul{
		margin: 0;
		padding: 0 0 0 20px;
		
	}
	#sitemap  a {
		display: block;
		text-decoration: none;
		font-weight: bold;
		color: #666;
		padding: 2px 0 2px 18px;
	}
	#sitemap  a:hover { 
		color: #000;
	}

	#sitemap ul a {
		font-weight: normal;
	}
	#sitemap li {
		border-left: 1px solid #CDCDCD;
		background: url(/_img/layup/sitemapli.gif) no-repeat 0 .5em;
		list-style: none;
	}
	
	.paging {
		float: right;
		margin: 0;
		padding: 15px 0 0;
	}
	.paging li {
		float: left;
		margin: 0;
		padding: 0;
		list-style: none;
	}
	.paging li a {
		display: block;
		margin: 0 0 0 1px;
		padding: 2px 0;
		width: 20px;
		text-align: center;
		text-decoration: none;
		color: #666;
		background: #eaeaea;
		line-height: 1.3em;
	}
	
	.paging li a:hover, .paging li .on{
		background: #363636;
		color: #fff;
	}
	
	.paging .next a, .paging .last a, .paging .back a, .paging .first a {
		padding: 2px 7px !important;
		width: auto !important;
	}
	.pagenumbers {
		float: left;
		padding-top: 15px;
	}
	

	#cmsForm button{
		float: right;
	}
	.contactCheck {
		position: absolute; 
		left: -9999px;
	}

	
	/* Extras */
	
	.hidden {
		position: absolute; 
		left: -9999px; 
	}
	.hand {
		cursor: pointer;
	}
	.textleft {
		text-align: left !important;
	}
	.textcenter {
		text-align: center !important;
	}
	.textright {
		text-align: right !important;
	}
	.right {
		float: right;
		width: calc(50% - 30px);
	}
	.left {
		float: left;
		width: calc(50% - 30px);
	}
	
	
	
/* Text Editor Styles
===========================================================================================   */	
	
	
	.largetext {
		font-size: 24px;
		line-height: 1.1;
	}
	
	.highlight {
		color: #8b1d57;
		font-weight: bold;
	}
	
	.imgleft,
	.imgright {
		border: 1px solid #d7d7d7;
	}
	.imgleft {
		margin: 0 10px 10px 0; 
		float: left;	
	}
	.imgright {
		margin: 0 0 10px 10px; 
		float: right;	
	}
	
		
	
	.bg_1 { background-color: #fff ; color: #000 }
	.bg_2 { background-color: #7b1152 ; color: #fff }
	.bg_3 { background-color: #93a0a8 ; color: #fff }
	.bg_4 { background-color: #e5e5e5 ; color: #606060  }
	.bg_5 { background-color: #000000 ; color: #fff }
	
	
	.bg_1, .bg_2, .bg_3, .bg_4, .bg_5 { padding: 20px}
	
	.bg_1 h2, .bg_4 h2,
	.bg_1 h3, .bg_4 h3 { color: #000 ;}
	
	.bg_2 a,  .bg_3 a, .bg_5 a,
	.bg_2 h1, .bg_3 h1, .bg_5 h1,
	.bg_2 h2, .bg_3 h2, .bg_5 h2,
	.bg_2 h3, .bg_3 h3, .bg_5 h3 { color: #fff;}
	
	

/* #Firefox Styles
===========================================================================================   */

	@-moz-document url-prefix() {
	
	}	
		

	


/* #Media Queries
===========================================================================================   */

	body:before {  position: fixed; z-index: 99999999; background: #fff; }




/* More than 1500 
===========================================================================================   */
@media only screen and (min-width: 1500px)  {
	
	body:before { content: '1500+';}
	
	.container { width: 1500px; } 
	
	/* Max Font Size */
	h1 { font-size: 50px; }
	h2 { font-size: 50px; }
	h3 { font-size: 30px; }
	
	#hero,
	#imgholder,
	#slideimages,
	#slideimages li {
		height: 36vw;
	}


	.b_home header .logo { width: 20vw; height: auto; padding-bottom: 10%; right: 15vw; }
	
}



/* Less than 1500 
===========================================================================================   */
@media only screen and (max-width: 1499px)  {
	
	body:before { content: '<1500';}
		
	.container { width: 1350px; }
	
	/* Adjusted Font Size */
	h1 { font-size: calc(35px + 0.5vw); }
	h2 { font-size: calc(30px + 0.5vw); }
	h3 { font-size: calc(25px + 0.5vw); } 	
	
}



/* All less than 1350
===========================================================================================   */
@media only screen and (max-width: 1350px)  {
	
	body:before { content: '<1350';}
		
	.container { width: 1200px; } 
	
}


/* All less than 1200
===========================================================================================   */
@media only screen and (max-width: 1200px)  {
		
	body:before { content: '<1200';}
	
	.container  { width: 100%; }
	
}





/* All less than 980
===========================================================================================   */
@media only screen and (max-width: 980px)  {
	
	
	body:before { content: '<980';}
	
	
	#cmsForm #contact_details { height: 150px; }
	#cmsForm button { float: none; }
	.right, .left { float: none !important; width: 100%; }
	

	
	header .menu {
		display: block;
		position: fixed;
		right: 20px;
		top: 20px;
		z-index: 999999;
		text-decoration: none;
		color: #333;
	}
	header .menu:before {
		font: bold 30px/1 'Font Awesome 5 Pro';
		content: '\f0c9';	
		background: rgba(255,255,255,0.8);
		padding: 3px 4px;
		box-sizing: border-box;		
	}
	
	
	
	#topnavi {
		position: absolute;
		box-sizing: border-box;
		z-index: 10;
		top: -15px;
		left: 0;
		width: 100%;
		height: 100vh;
		max-height: 0;
		margin: 0;
		overflow: hidden;
		border: none;
		transition: max-height 0.7s;
		background: rgba(255,255,255,0.8);
    }
    
    #quicksearch div {
		transition: opacity 0.7s; 
    }
        
    
    #hero,
	#imgholder,
	#slideimages,
	#slideimages li {
		transition: height 0.7s;
    }
    

   .out #topnavi {
    	display: block;
        max-height: 100vh;
    }
    
	#topnavi ul	{
		width: 100%;
		height: auto;
		margin: 0 auto;
		padding: 70px 0 0 ;
		text-align: left;
		overflow: hidden;
		background: none;
		display: block;
	}
	
	#topnavi ul li	{
		float: left;
		clear: both;
		width:100%;	
		position: relative;
		border-bottom: none;
	}
	#topnavi a,
	.b_home #topnavi a	{
		float: left;
		clear: both;
		width: 100%;
		padding: 7px 30px;
		color: #000;
		text-align: left;	
		box-sizing: border-box;
	}
	
	#topnavi ul ul {
		position: static;
		padding: 0 0 10px 15px;
	}
	
	#topnavi ul ul li	{ border: none}
	#topnavi ul ul a { color: #711d50 !important }	
	#topnavi ul ul a:hover {
	    background: #fff;
	}


	#topnavi ul span {
		display: block;
	}
	#topnavi ul span:before {
		font-family: 'Font Awesome 5 Pro';
		content: '\f078';
		color: #333; 		
		font-size: 20px;
		position: absolute;
		right: 25px;
		top: 11px;
	}
	
	.intropage li {  width: calc( 50% - 24px) }
	
}



/* less than 768
===========================================================================================   */
@media only screen and  (max-width: 768px)  {
	
	body:before { content: '<768';}
	

	.conpadd {  padding: 50px 30px; }
	.horpadd { padding: 0 30px; }
	
	
	#cmsForm input[type="text"],
	#cmsForm input[type="password"],
	#cmsForm input[type="email"],
	#cmsForm textarea,
	#cmsForm select {
		width: 100%;
		box-sizing: border-box;
	}
	
	.paging  { float: none; display: flex; }
	.paging li { flex-grow: 1; }
	.paging li a { width: auto; min-width: 15px }
	.pagenumbers { display: none; }
	
	footer ul { width: 100%}
	footer address { margin-top: 30px}
	

	td, tr {  display: block; }
    thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    tr + tr {  margin-top: 30px; }
    td {
        border: none;
        position: relative;
        padding-left: 50%;
        text-align: left;
        margin-bottom: 5px;
    }
	
	td:before {
	    content: attr(data-label);
	    position: absolute;
	    left: 10px;
	    top: 50%;
	    width: calc(50% - 20px);
	    transform: translateY(-50%);
	    font-weight: 400;
	}
	
	
	.projectgrid {
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: 120px; 
	}
		
	.p2x2 {grid-column: span 2; grid-row: span 2;}
	.p2x1 {grid-column: span 2; grid-row: span 1;}
	.p1x1 {rid-column: span 1; grid-row: span 1;}
		
    
    
}



/* less than 480
===========================================================================================   */
@media only screen and  (max-width: 480px)  {
	
	body:before { content: '<480';}
	
	.intropage li {  width: calc( 100% - 24px) }
	
	.b_home header .logo { width: 85%; top: 100px; height: 120px;  }
	
}

/* less than 320
===========================================================================================   */
@media only screen and  (max-width: 320px)  {
	
	body:before { content: '<320';}
	
}

/* iPhone X Portrait
===========================================================================================   */
@media only screen and (min-device-width: 375px) and (max-device-height: 812px) and (orientation : landscape) and (-webkit-device-pixel-ratio: 3){

	.conpadd {  padding: 30px 50px; }
  	.horpadd { padding: 0 50px; }  
  	#topnavi ul li a { padding-left: 50px}
  	header .menu {right: 50px; }

}

/* iPhone XS Max, XR */
@media only screen and (min-device-width: 414px) and (max-device-height: 896px) and (orientation : landscape) and (-webkit-device-pixel-ratio: 3){
	
	.conpadd {  padding: 30px 50px; }
  	.horpadd { padding: 0 50px; }  
  	#topnavi ul li a { padding-left: 50px}
  	header .menu {right: 50px; }
  	
}

/* Animations for desktop only
===========================================================================================   */
@media only screen and  (min-width: 768px)  {
	
	#topnavi a,
	footer a,
	footer a:before {
		transition: color .3s ease-in-out
	}
	
	input, textarea, button {  transition: color .3s, border .3s ease-in-out; }
	
}

 body:before { display: none} 

/* #Bootstrap grid for advance CMS editor
===========================================================================================   */
#main *,.cke_editable *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}
#main img,.cke_editable img{max-width:100%;height:auto}

.row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;/* margin-right:-15px;margin-left:-15px */}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;/* padding-right:15px;padding-left:15px */}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}}


.row.rowbg { margin-right: 0; margin-left: 0;}


