.floatright{
	float:right!important;
}
.floatleft{
	float:left!important;
}
.css-table{
	display: table;
    width: 100%;
    table-layout: fixed;
}
.css-table .cell{
    display: table-cell;
    vertical-align: middle;
}
.flex-table{
	display: flex;
    width: 100% ;
    /*justify-content: center;*/
    -webkit-justify-content: space-around; /* Safari 6.1+ */
    justify-content: space-around
}
.flex-table .cell{
    display: flex;
    align-items: center;
}
.cell-10{
    width: 10%;
}
.cell-20{
    width: 20%;
}
.cell-30{
    width: 30%;
}
.cell-40{
    width: 40%;
}
.cell-50{
    width: 50%;
}
.cell-80{
    width: 80%;
}
.text-left{
	text-align:left!important;
}
.text-right{
	text-align:right!important;
}
.blue-button {
    border: 0;
    cursor: pointer;
    display: inline-block;
    outline: 0;
    font-family: 'Advent Pro', sans-serif;
    background: #09f;
    color: #fff;
    padding: 5px 10px 5px 10px;
    text-transform: uppercase;
}
.blue-button:hover, 
.blue-button:active{
    background: #000;
    color: #fff;
}
.font-kaufmann{	
	font-family:"kaufmannbold";
}
.font-12pt{ font-size:12pt }
.font-18pt{ font-size:18pt }

/* GRiD */
	
.row{
	display: table;
	width: 100%;
}

[class*="col-"] {
    /*float: left;*/
    display: inline-block;
    vertical-align:top;
    height: 100%;
    /*display: table-cell;*/
}
.row::after {
    content: "";
    clear: both;
    display: table;
}
@media screen and (min-width: 768px) {
    /* For desktop: */
	.col-1 {width: 8.33%;}
	.col-2 {width: 16.66%;}
	.col-3 {width: 25%;}
	.col-4 {width: 33%;}
	.col-5 {width: 41.66%;}
	.col-6 {width: 50%;}
	.col-7 {width: 58.33%;}
	.col-8 {width: 66.66%;}
	.col-9 {width: 75%;}
	.col-10 {width: 83.33%;}
	.col-11 {width: 91.66%;}
	.col-12 {width: 100%;}
}
