.text_small {
    font-size: 10px;
}

.text_big {
    font-size: 13px;
}


.normal {
    font-weight: normal;
}

.bold {
    font-weight: bold;
}

.italic {
    font-style: italic;
}

.no_underline {
    text-decoration: none;
}

.underline {
    text-decoration: underline;
}

.uppercase {
    text-transform: uppercase;
}

.disabled {
    
}

.no_decoration {
    text-decoration: none;
}

.border {
    border: 1px solid gray;
}

.width100 {
    width: 100%;
}


.hidden {
    display : none;
}


.nobr {
    white-space : nowrap;
}

.align-center {
    margin: 0px auto 0px auto;
}

.center {
    text-align: center;
}


.left {
    text-align: left;
}


.right {
    text-align: right;
}

.top {
    vertical-align: top;
}

.middle {
    vertical-align: middle;
}

.bottom {
    vertical-align: bottom;
}

.float_left {
    float: left;
}

.float_center {
    float: left;
    margin-left: auto;
    margin-right: auto;
}


.float_right {
    float: right;
}

.clear {
    clear: both;
}

.clear-l {
	clear: left;
}

.clear-r {
	clear: right;
}

.clear_float:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.clear_float {display: inline-block;}
* html .clear_float {height: 1%;}
.clear_float {display: block;}

/*
.clear_float:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}


* html .clear_float {
    height: 1%;
}
*/

.normal {
    text-decoration: none;
    font-weight: normal;
}

.block {
    display: block;
}

.scroll {
    overflow: auto;
}

.width100 {
    width: 100%;
}

.no_display {
    position: absolute;
    left: -9999px;
    width: 1em;
    overflow: hidden;
}

.strong {
    font-weight: bold;
}

strong {
    font-weight: bold;
}

.pointer {
    cursor:pointer;
}