/* Sem Borda */
.border_none {
    border: none !important;
}

.no_border {
    border: none !important;
}

.no_border_top {
    border-top: none !important;
}

.no_border_bottom {
    border-bottom: none !important;
}

.no_border_left {
    border-left: none !important;
}

.no_border_right {
    border-right: none !important;
}



/* Borda Cinza */
.border_full {
    border: 1px solid #E0E0E0 !important;
}

.border_top {
    border-top: 1px solid #E0E0E0 !important;
}

.border_bottom {
    border-bottom: 1px solid #E0E0E0 !important;
}

.border_left {
    border-left: 1px solid #E0E0E0 !important;
}

.border_right {
    border-right: 1px solid #E0E0E0 !important;
}

.border_width {
    border-left: 1px solid #E0E0E0 !important;
    border-right: 1px solid #E0E0E0 !important;
}

.border_height {
    border-top: 1px solid #E0E0E0 !important;
    border-bottom: 1px solid #E0E0E0 !important;
}



/* Borda Preta */
.border_black {
    border-color: black !important;
}

.border_black_top {
    border-top: 1px solid black !important;
}

.border_black_bottom {
    border-bottom: 1px solid black !important;
}

.border_black_left {
    border-left: 1px solid black !important;
}

.border_black_right {
    border-right: 1px solid black !important;
}

.border_black_width {
    border-left: 1px solid black !important;
    border-right: 1px solid black !important;
}

.border_black_height {
    border-top: 1px solid black !important;
    border-bottom: 1px solid black !important;
}



/* Borda Colorida */
.border_bordergray {   /* "bordergray" é o nome do tom de cinza utilizado */
    border-color: #AAAAAA !important;
}

.border_gray {
    border-color: #DDDDDD !important;
}

.border_babygray {
    border-color: #EFEFEF !important;
}

.border_darkred {
    border-color: darkred !important;
}

.border_lightviolet {
    border-color: #DCAFCF !important;
}

.border_white {
    border-color: white  !important;
}



/* Tamanho da Borda */
.border_1 {
    border-width: 1px !important;
}

.border_2 {
    border-width: 2px !important;
}

.border_3 {
    border-width: 3px !important;
}

.border_4 {
    border-width: 4px !important;
}

.border_5 {
    border-width: 5px !important;
}



/* Borda Completa Colorida */
.box_gray {
    border: 1px solid #A0A0A0 !important;
}

.box_bordergray {   /* "bordergray" é o nome do tom de cinza utilizado */
    border: 1px solid #E0E0E0 !important;
}

.box_lightgray {
    border: 1px solid #E0E0E0 !important;
}



/* Borda Arredondada COmpleto */
.radius_3 {
    border-radius: 3px 3px !important;
}

.radius_5 {
    border-radius: 5px 5px !important;
}

.radius_7 {
    border-radius: 7px 7px !important;
}

.radius_10 {
    border-radius: 10px 10px !important;
}

.radius_15 {
    border-radius: 15px 15px !important;
}

.radius_20 {
    border-radius: 20px 20px !important;
}

.radius_25 {
    border-radius: 25px 25px !important;
}

.radius_30 {
    border-radius: 30px 30px !important;
}



/* Borda Arredondada Acima */
.radius_top_3 {
    border-radius: 3px 3px 0 0 !important;
}

.radius_top_5 {
    border-radius: 5px 5px 0 0 !important;
}

.radius_top_7 {
    border-radius: 7px 7px 0 0 !important;
}

.radius_top_10 {
    border-radius: 10px 10px 0 0 !important;
}

.radius_top_15 {
    border-radius: 15px 15px 0 0 !important;
}

.radius_top_20 {
    border-radius: 20px 20px 0 0 !important;
}

.radius_top_25 {
    border-radius: 25px 25px 0 0 !important;
}

.radius_top_30 {
    border-radius: 30px 30px 0 0 !important;
}



/* Borda Arredondada Abaixo */
.radius_bottom_3 {
    border-radius: 0 0 3px 3px !important;
}

.radius_bottom_5 {
    border-radius: 0 0 5px 5px !important;
}

.radius_bottom_7 {
    border-radius: 0 0 7px 7px !important;
}

.radius_bottom_10 {
    border-radius: 0 0 10px 10px !important;
}

.radius_bottom_15 {
    border-radius: 0 0 15px 15px !important;
}

.radius_bottom_20 {
    border-radius: 0 0 20px 20px !important;
}

.radius_bottom_25 {
    border-radius: 0 0 25px 25px !important;
}

.radius_bottom_30 {
    border-radius: 0 0 30px 30px !important;
}



/* Borda Arredondada Esquerda */
.radius_left_3 {
    border-radius: 3px 0 0 3px !important;
}

.radius_left_5 {
    border-radius: 5px 0 0 5px !important;
}

.radius_left_7 {
    border-radius: 7px 0 0 7px !important;
}

.radius_left_10 {
    border-radius: 10px 0 0 10px !important;
}

.radius_left_15 {
    border-radius: 15px 0 0 15px !important;
}

.radius_left_20 {
    border-radius: 20px 0 0 20px !important;
}

.radius_left_25 {
    border-radius: 25px 0 0 25px !important;
}

.radius_left_30 {
    border-radius: 30px 0 0 30px !important;
}



/* Borda Arredondada Direita */
.radius_right_3 {
    border-radius: 0 3px 3px 0 !important;
}

.radius_right_5 {
    border-radius: 0 5px 5px 0 !important;
}

.radius_right_7 {
    border-radius: 0 7px 7px 0 !important;
}

.radius_right_10 {
    border-radius: 0 10px 10px 0 !important;
}

.radius_right_15 {
    border-radius: 0 15px 15px 0 !important;
}

.radius_right_20 {
    border-radius: 0 20px 20px 0 !important;
}

.radius_right_25 {
    border-radius: 0 25px 25px 0 !important;
}

.radius_right_30 {
    border-radius: 0 30px 30px 0 !important;
}



/* Borda Arredondada Individual Acima Esquerda */
.radius_top_left_3 {
    border-radius: 3px 0 0 0 !important;
}

.radius_top_left_5 {
    border-radius: 5px 0 0 0 !important;
}

.radius_top_left_7 {
    border-radius: 7px 0 0 0 !important;
}

.radius_top_left_10 {
    border-radius: 10px 0 0 0 !important;
}

.radius_top_left_15 {
    border-radius: 15px 0 0 0 !important;
}

.radius_top_left_20 {
    border-radius: 20px 0 0 0 !important;
}

.radius_top_left_25 {
    border-radius: 25px 0 0 0 !important;
}

.radius_top_left_30 {
    border-radius: 30px 0 0 0 !important;
}



/* Borda Arredondada Individual Acima Direita */
.radius_top_right_3 {
    border-radius: 0 3px 0 0 !important;
}

.radius_top_right_5 {
    border-radius: 0 5px 0 0 !important;
}

.radius_top_right_7 {
    border-radius: 0 7px 0 0 !important;
}

.radius_top_right_10 {
    border-radius: 0 10px 0 0 !important;
}

.radius_top_right_15 {
    border-radius: 0 15px 0 0 !important;
}

.radius_top_right_20 {
    border-radius: 0 20px 0 0 !important;
}

.radius_top_right_25 {
    border-radius: 0 25px 0 0 !important;
}

.radius_top_right_30 {
    border-radius: 0 30px 0 0 !important;
}



/* Borda Arredondada Individual Abaixo Esquerda */
.radius_bottom_left_3 {
    border-radius: 0 0 0 3px !important;
}

.radius_bottom_left_5 {
    border-radius: 0 0 0 5px !important;
}

.radius_bottom_left_7 {
    border-radius: 0 0 0 7px !important;
}

.radius_bottom_left_10 {
    border-radius: 0 0 0 10px !important;
}

.radius_bottom_left_15 {
    border-radius: 0 0 0 15px !important;
}

.radius_bottom_left_20 {
    border-radius: 0 0 0 20px !important;
}

.radius_bottom_left_25 {
    border-radius: 0 0 0 25px !important;
}

.radius_bottom_left_30 {
    border-radius: 0 0 0 30px !important;
}



/* Borda Arredondada Individual Abaixo Direita */
.radius_bottom_right_3 {
    border-radius: 0 0 3px 0 !important;
}

.radius_bottom_right_5 {
    border-radius: 0 0 5px 0 !important;
}

.radius_bottom_right_7 {
    border-radius: 0 0 7px 0 !important;
}

.radius_bottom_right_10 {
    border-radius: 0 0 10px 0 !important;
}

.radius_bottom_right_15 {
    border-radius: 0 0 15px 0 !important;
}

.radius_bottom_right_20 {
    border-radius: 0 0 20px 0 !important;
}

.radius_bottom_right_25 {
    border-radius: 0 0 25px 0 !important;
}

.radius_bottom_right_30 {
    border-radius: 0 0 30px 0 !important;
}



/* Borda Arredondada Bandeira Esquerda */
.radius_flag_left_3 {
    border-radius: 3px 0 !important;
}

.radius_flag_left_5 {
    border-radius: 5px 0 !important;
}

.radius_flag_left_7 {
    border-radius: 7px 0 !important;
}

.radius_flag_left_10 {
    border-radius: 10px 0 !important;
}

.radius_flag_left_15 {
    border-radius: 15px 0 !important;
}

.radius_flag_left_20 {
    border-radius: 20px 0 !important;
}

.radius_flag_left_25 {
    border-radius: 25px 0 !important;
}

.radius_flag_left_30 {
    border-radius: 30px 0 !important;
}



/* Borda Arredondada Bandeira Direita */
.radius_flag_right_3 {
    border-radius: 0 3px !important;
}

.radius_flag_right_5 {
    border-radius: 0 5px !important;
}

.radius_flag_right_7 {
    border-radius: 0 7px !important;
}

.radius_flag_right_10 {
    border-radius: 0 10px !important;
}

.radius_flag_right_15 {
    border-radius: 0 15px !important;
}

.radius_flag_right_20 {
    border-radius: 0 20px !important;
}

.radius_flag_right_25 {
    border-radius: 0 25px !important;
}

.radius_flag_right_30 {
    border-radius: 0 30px !important;
}


