.sinsombras{
	box-shadow: none;
	-webkit-box-shadow: none;
}

.m-10 {
	margin-top: 10px !important;
	margin-bottom: 0px!important;
}

.mt-150 {
	margin-top: 150px !important;
	margin-bottom: 0px!important;
}

.mt-60 {
	margin-top: 60px !important;
}

.mtb-20{
	margin-top: 20px !important;
	margin-bottom: 20px !important;
}
.mb-60 {
	margin-bottom: 60px!important;
}

// mixin para iterar los colores del menu
// #zz13_RootAspMenu > li > ul > li:nth-child(1) > a
.make-color-menu(@i: length(@menuColors)) when (@i > 0) {
	.make-color-menu(@i - 1);
	@color: extract(@menuColors, @i); 
	.ms-core-listMenu-horizontalBox ul > li > ul > li:nth-child(@{i}) > a {
		border-bottom: solid @color 2pt ;
		padding-bottom: 6px;
		margin-right: 23px;
	}
}


.link-default(@link:@negro,@visited:@negro,@hover:#666,@active:@negro){
	text-decoration: none;
	a:link{color:@link!important}
	a:visited{color:@visited!important}
	a:hover{color:@hover!important}
	a:active{color:@active!important}
}