/**
*   Классы - константы.
**/
.left { float: left !important; }
.right { float: right !important; }
.overflow { overflow: hidden !important; }

.text-left { text-align: left !important; }
.text-right { text-align: right !important; }
.text-center { text-align: center !important; }
.text-justify { text-align: justify !important; }

.text-strong { font-weight: bold !important; }

    /* полностью скрытый элемент */
.hidden { display: none !important; visibility: hidden; }

    /* скрытый элемент, но занимающий место в разметке */
.invisible { visibility: hidden; }

    /* без полей, без отступов */
.collapsed { margin: 0; padding: 0; }

    /* различная ширина элемента */
.w50 { width: 50px !important; }
.w60 { width: 60px !important; }
.w100 { width: 100px !important; }
.w150 { width: 150px !important; }
.w200 { width: 200px !important; }
.w250 { width: 250px !important; }
.w300 { width: 300px !important; }
.w350 { width: 350px !important; }
.w400 { width: 400px !important; }
.w450 { width: 450px !important; }
.w500 { width: 500px !important; }
.w550 { width: 550px !important; }
.w600 { width: 600px !important; }
.w650 { width: 650px !important; }
.w700 { width: 700px !important; }
.w750 { width: 750px !important; }
.w800 { width: 800px !important; }
.w850 { width: 850px !important; }
.w900 { width: 900px !important; }
.w950 { width: 950px !important; }
.w1000 { width: 1000px !important; }

.margin-auto { margin: 0 auto; }
