
/* tell the container's children to float left: */
.float-my-children > * {
    display: inline-block;
    margin-right:5px;
}

/* it makes sure that the container's children floats are cleared, without using extra markup */

.clearfix {
    *zoom:1 /* for IE */
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

input{
	margin-bottom:10px;
}
/* end clearfix*/

