/**
 * Utilities
 */

/* Quick floats*/

.pull-right {
 	float: right;
}
.pull-left {
  float: left;
}

/* Toggling content*/

.hide {
 	display: none;
}
.show {
 	display: block;
}

/* Clearfix */

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

/* Margins */

.no-margin {
	margin: 0;
}

.margin-top-15 {
    margin-top: 15px;
}

.margin-top-min-5 {
    margin-top: -5px;
}

.margin-bottom-0 {
    margin-bottom: 0;
}

.margin-bottom-5 {
    margin-bottom: 5px;
}

.margin-bottom-10 {
    margin-bottom: 10px;
}

.margin-bottom-15 {
    margin-bottom: 15px;
}

.margin-bottom-20 {
    margin-bottom: 20px;
}

/* Paddings */

.padding-top-0 {
    padding-top: 0;
}

.padding-top-15 {
    padding-top: 15px;
}

.padding-top-50 {
    padding-top: 50px;
}

/* Display utilities */

.stretch {
	width: 100%;
}