/* SETTINGS */

a{
	text-decoration:none;
}

button{
	cursor:pointer;
}

input,
textarea{
	outline:none;
}

/* COLORS */

.st_white,
.st_white a{
	color:#fff;
}

.st_red,
.st_red a{
	color:#f00;
}

.st_green,
.st_green a{
	color:#0f0;
}

.st_gold,
.st_gold a{
	color:#efbf04;
}

.st_tail,
.st_tail a{
	color:#5effd8;
}

.st_black,
.st_black a{
	color:#000;
}

/* STRUCT */

.st_box{
	max-width:1200px;
	margin:0 auto;
	padding:0 10px;
}

	.st_box_600{
		float:left;
		width:600px;
	}
	
	.st_box_50_50{
		display:grid;
		grid-template-columns:50% 50%;
	}
	
	.st_box_33_33_33{
		display:grid;
		grid-template-columns:33% 33% 33%;
	}
	
	.st_box_25_25_25_25{
		display:grid;
		grid-template-columns:25% 25% 25% 25%;
	}
	
	.st_box_50{
		float:left;
		width:50%;
	}
	
	.st_box_33{
		float:left;
		width:33%;
	}
	
	.st_box_25{
		float:left;
		width:25%;
	}

.st_center{
	text-align:center;
}

.st_right{
	text-align:right;
}

.st_right_float{
	float:right;
}

.st_left{
	text-align:left;
}

.st_clear{
	clear:both;
}

/* UL HORIZONTAL */

.st_ul_hor ul{
	list-style:none;
}

	.st_ul_hor ul li{
		display:inline;
	}
