/* **********	This CSS Style Block is specifically for the 
				color examples on some tabs  ******************** */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;700&display=swap');

.testBox {
	padding: 1.5em;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3;
	color: #AAA;
	background-color: #000;
	border-radius: 24px;
	-webkit-font-smoothing: auto;
	-moz-osx-font-smoothing: auto;
	font-smooth: auto;
}

.testBoxWhite {
	padding: 1em;
	color: #00F;
	background-color: #FFF;
	border-radius: 16px;
}

.testBoxBeige {
	padding: 1em;
	color: #009;
	background-color: #FE9;
	border-radius: 16px;
}

.thinFont {
	line-height: 1.6;
	font-size: 18px;
	font-weight: 200;
}
.thinFont3 {
	line-height: 1.6;
	font-size: 18px;
	font-weight: 300;
}
.smoothBlend {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: greyscale;
	font-smooth: always;
}
