@charset "UTF-8";
/*use box-sizing to keep padding within full width of block*/
* {
 -webkit-box-sizing: border-box;
 -moz-box-sizing: border-box;
 box-sizing: border-box;
}
/* ~~ cf is to clear floats correctly (clear fix via Nicolas Gallagher.) ~~ */
.cf:before,
.cf:after {
   content: " ";
   display: table;
}

.cf:after {
   clear: both;
}

.cf {
   *zoom: 1; /* for IE6 and IE7 */
}