/*
--------------------------------------------------------------------------------------

	Wins
	wins.css

--------------------------------------------------------------------------------------
*/



/*
-------------------------------------------
	Utilities
-------------------------------------------
*/

/* floats */

.go-left {
	float: left;
	margin: 0 30px 30px 0;
}

.go-right {
	float: right;
	margin: 0 0 30px 30px;
}


/* text */

.ta-c {text-align: center;}


/* margins */

.mt-0 {margin-top:0;}
.mt-10 {margin-top: 10px;}
.mt-20 {margin-top: 20px;}
.mt-30 {margin-top: 30px;}
.mt-40 {margin-top: 40px;}
.mt-50 {margin-top: 50px;}

.mb-0 {margin-bottom:0;}
.mb-5 {margin-bottom: 5px;}
.mb-10 {margin-bottom: 10px;}
.mb-20 {margin-bottom: 20px;}
.mb-30 {margin-bottom: 30px;}
.mb-40 {margin-bottom: 40px;}
.mb-50 {margin-bottom: 50px;}


/* padding */

.padded-block {padding: 60px 0;}
.padded-block--border {border-top: 1px solid #eee;}


/* colors */

.text-color-grey {
	color: #777; 
	background-color: transparent;
}

.bg-color-gold {
	background-color: #CC9A3D;
	color: #fff;
}

.bg-color-grey {
	background-color: #f5f5f5;
	color: #777;
}




@media 
only screen and (max-width: 600px), 
only screen and (max-device-width: 600px) {


.padded-block {padding: 40px 0;}

.go-left,
.go-right {max-width: 40%;}


} /* end media query */



