﻿:root {
    /* Positions */
    --static_pos: static;
    --initial_pos: initial;
    --relative_pos: relative;
    --absolute_pos: absolute;
    --fixed_pos: fixed;
    /* Table Layout */
    --fixed_table_layout: fixed;
    /* Horizontal Alignment */
    --horizontal_center_align: center;
    --horizontal_left_align: left;
    --horizontal_right_align: right;
    /* Vertical Alignment */
    --vertical_middle_align: middle;
    --vertical_top_align: top;
    --vertical_bottom_align: bottom;
    /* Font-Family */
    --timesnewroman_font: "Times New Roman", Times, serif;
    --courier_new_font: "Lucida Console", "Courier New", monospace;
    --Trebuchet_MS_font: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    --arial_font: Arial, Helvetica, sans-serif;
    --monotype_corsiva_font: Monotype Corsiva;
    --roboto_sans_serif: "Roboto", sans-serif;
    --gotham_helvetica_neue: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
    --font_awesome: FontAwesome;
    /* Font-Weights */
    --bold_font_weight: bold;
    --bold_font_weight_300: 300;
    --inherit_font_weight: inherit;
    --initial_font_weight: initial;
    --normal_font_weight: normal;
    --lighter_font_weight: lighter;
    /* White Space */
    --normal_white_space: normal;
    --white_space_no_wrap: nowrap;
    /* DISPLAYS */
    /* Display Property */
    --display_none: none;
    --display_inline: inline;
    --display_block: block;
    --display_inline_block: inline-block;
    --display_table: table;
    --display_table_row: table-row;
    --display_table_column: table-column;
    --display_table_cell: table-cell;
    --display_flex: flex;
    /* Flex Directions */
    --flex_direction_initial: initial;
    --flex_direction_row: row;
    --flex_direction_row_reverse: row-reverse;
    --flex_direction_column: column;
    --flex_direction_column_reverse: column-reverse;
    /* Justify Content */
    --justify_content_flex_start: flex-start;
    --justify_content_flex_end: flex-end;
    --justify_content_center: center;
    --justify_content_space_between: space-between;
    --justify_content_space_around: space-around;
    --justify_content_space_evenly: space-evenly;
    --justify_content_initial: initial;
    /* Border Types */
    --border_groove: groove;
    --border_solid: solid;
    --border_dotted: dotted;
    --border_dashed: dashed;
    --border_double: double;
    --border_ridge: ridge;
    --border_inset: inset;
    --border_outset: outset;
    --border_none: none;
    --border_mixed: dotted dashed solid double;
    /* Outline Types */
    --outline_none: none;
    /*Rotate Degrees*/
    --r_minus_135_deg: -135deg;
    --r_minus_90_deg: -90deg;
    --r_minus_45_deg: -45deg;
    --r_minus_30_deg: -30deg;
    --r_minus_20_deg: -20deg;
    --r_minus_15_deg: -15deg;
    --r_minus_10_deg: -10deg;
    --r_minus_5_deg: -5deg;
    --r_0_deg: 0deg;
    --r_5_deg: 5deg;
    --r_15_deg: 15deg;
    --r_25_deg: 25deg;
    --r_30_deg: 30deg;
    --r_35_deg: 35deg;
    --r_45_deg: 45deg;
    --r_90_deg: 90deg;
    --r_135_deg: 135deg;
    --r_180_deg: 180deg;
    --r_270_deg: 270deg;
    --r_360_deg: 360deg;
    /*Text Transform*/
    --text_transform_up: uppercase;
    --text_transform_low: lowercase;
    --text_transform_cap: capitalize;
    --text_transform_none: none;
    /*List Style*/
    --list_style_none: none;
    /*Inset - Outset*/
    --ins: inset;
    --out: outset;
    /*Cursor Values*/
    --c_pointer: pointer;
    --c_text: text;
    --c_none: none;
    --c_auto: auto;
    --c_default: default;
    /*Height - Width AUTO*/
    --w_h_auto: auto;
    /*Float Values*/
    --float_left: left;
    --float_right: right;
    --float_none: none;
    /*List Style Type Values*/
    --list_style_type_none: none;
    /*Overflow*/
    --overflow_hidden: hidden;
    --overflow_scroll: scroll;
    --overflow_auto: auto;
    /*Box-Shadow Values*/
    --box_shadow_none: none;
    /*Box-Shadow Values*/
    --text_shadow_none: none;
    /*Text_Decoration Values*/
    --text_decoration_none: none;
    /*Background Values*/
    --background_none: none;
    --background_cover: cover;
    /*Margin - Padding Auto*/
    --mar_pad_auto: auto;
    /*Height - Width Auto*/
    --hw_auto: auto;
    /*Background Repeat*/
    --background_repeat: repeat;
    --background_x_repeat: repeat-x;
    --background_y_repeat: repeat-y;
    --background_no_repeat: no-repeat;
    /*ZOOM Values*/
    --zoom_one: 1;
    /*Word Wrap*/
    --word_wrap_break_word: break-word;
    /*Box Sizing*/
    --box_sizing_border_box: border-box;
    /*Text Overflow*/
    --text_overflow_ellipsis: ellipsis;
}