/* SETTINGS */

a{
	text-decoration:none;
}

button{
	cursor:pointer;
}

input{
	outline:none;
}

/* COLORS */

.st_white,
.st_white a{
	color:#fff;
}

/* 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_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;
	}
