/* == FONT WEIGHT == */ .font_weight_100 { font-weight: 100; } .font_weight_200 { font-weight: 200; } .font_weight_300 { font-weight: 300; } .font_weight_400 { font-weight: 400; } .font_weight_500 { font-weight: 500; } .font_weight_600 { font-weight: 600; } .font_weight_700 { font-weight: 700; } .font_weight_800 { font-weight: 800; } .font_weight_900 { font-weight: 900; } .font_weight_bold { font-weight: bold; } .font_weight_bolder { font-weight: bold; } .font_weight_lighter { font-weight: lighter; } .font_weight_normal { font-weight: normal; } /* == FLOATS == */ .float_left { float: left; } .float_right { float: right; } .float_clear_left { clear: left; } .float_clear_right { clear: right; } .float_clear_both { clear: both; } /* == POSITION == */ .position_absolute { position: absolute; } .position_relative { position: relative; } /* == DISPLAY == */ .display_inline { display: inline; } .display_table { display: table; } .display_block { display: block; } .display_none { display: none; } .display_none_important { display: none !important; } .display_inline_block { display: inline; } /* == TEXT ALIGN == */ .text_align_center { text-align: center; } .text_align_left { text-align: left; } .text_align_right { text-align: right; } .text_align_justify { text-align: justify; } /* == VERTICAL ALIGNT == */ .v_align_top { vertical-align: top; } .v_align_middle { vertical-align: middle; } .v_align_bottom { vertical-align: bottom; } .margin_zero { margin: 0px; } .margin_center { margin: 0 auto; } .color_transparent { color: transparent; background-color: transparent; border-color: transparent; }