/* CSS CLASSES AND UTILITIES
This document should contain site-wide CSS classes, which includes utility classes. */

/* CONTAINER AND DISPLAY CLASSES */

.container { /* nothing for now */ }

.d_block { display:block; }

.d_none { display:none; }

.p_rel { position:relative; }

.p_abs { position:absolute; }


/* FLOATING CLASSES */

.f_left { float:left; }

.f_right { float:right;}

.f_clear { clear:both; }