
/* CARBON TILE */
.carbon_tile	{
	background-color: rgba(0, 0, 0, 0.9);
	border-radius: 2px;
	background-image: url('/images/frosted_glass/frosted_glass9f.png');
	box-sizing: border-box;
	padding: 1% 2%;
	color: white;
}

.white_tile {
	background-color: rgba(255,255,255,0.99);
	padding: 1% 2%;
	box-sizing: border-box;
	color: black;
}

.grey_tile {
	background-color: rgba(228,228,228,0.98);
	border-radius: 2px;
	padding: 1% 2%;
	box-sizing: border-box;
	color: black;
}



.white_tile p {
	color: black;
}

.white_tile h1, .white_tile h2, .white_tile h3, .white_tile h4, .white_tile h5, .white_tile h6 {
	color: black;
}

.black_tile {
	background-color: rgba(0,0,0,0.95);
	border-style: solid;
	border-color: #383838 #606060 #505050 #2f2f2f;
	border-width: 0.5px;
	border-radius: 2px;
	padding: 1% 2%;
	box-sizing: border-box;
	color: white;
}

.black_tile p {
	color: white;
}

.black_tile strong, .black_tile em {
	color: #2688e2;
}

.black_tile h1, .black_tile h2, .black_tile h3, .black_tile h4, .black_tile h5, .black_tile h6 {
	color: white;
}

main .black_tile h1, main .black_tile h2, main .black_tile h3, main .black_tile h4, main .black_tile h5, main .black_tile h6 {
	color: #2688e2;
}

main section .black_tile, main section .white_tile, main section .grey_tile, main section .carbon_tile {
	/* box-shadow: none; */
}

.box_glow_shadow {
	box-shadow: 1px 1px 2px black, -1px -1px 2px black;
}

.box_glow_shadow_small {	
       	box-shadow: 1px 1px 1px black, -1px -1px 1px black;
}

.mock_box_shadow_ridge 	{
	border-width: 2px;
	border-radius: 2px;
	border-style: ridge;
	border-color: #383838 #606060 #505050 #2f2f2f;
	
}

.mock_box_shadow_solid	{
	border-width: 2px;
	border-radius: 2px;
	border-style: solid;
	border-color: #383838 #606060 #505050 #2f2f2f;
}

@media print {
.carbon_tile, .white_tile, .black_tile {
	text-shadow: none !important;
	border: 2px solid lightGrey;
	border-radius: 2px;
}	
}	


