/*
 * start: LAYOUT - GENERIC 
 */
* {
	border: 0px;
	margin: 0px;
	padding: 0px;
}

.div_hidden { display: none; }
.div_visible { display: block; }

.al_left { text-align: left; }
.al_right { text-align: right; }
.al_justify { text-align: justify; }
.al_center { text-align: center; }

.box_rel { position: relative; display: block; }
.box_abs { position: absolute; display: block; }
.box_stat { position: static; display: block; }
.box_fix { position: fixed; display: block; }

.box_pos_lt { top: 0; left: 0; }
.box_pos_rt { top: 0; right: 0; }
.box_pos_lb { bottom: 0; left: 0; }
.box_pos_rb { bottom: 0; right: 0; }

.fl_left { float: left; }
.fl_right { float: right; }
.clr { clear: both; }

.no_margin { margin: 0px ! important; }

