/*  -------------------------------------------------------------
    * Filename:         core.css
    * Description:      Commonly used classes
    * Version:          1.0
-------------------------------------------------------------- */

/*  -------------------------------------------------------------
    1. Display & Visibility
-------------------------------------------------------------- */
.block              {display: block;}
.hidden             {visibility: hidden; position: absolute; left: -9999px;}
.inline             {display: inline;}
.none               {display: none;}
/*  -------------------------------------------------------------
    2. Alignment & Typography
-------------------------------------------------------------- */
.center             {margin: 0 auto !important; text-align: center !important;}
.left               {float: left;}
.right              {float: right;}
.text-left          {text-align: left;}
.text-right         {text-align: right;}
.text-center        {text-align: center;}
.justify            {text-align: justify;}
.bold               {font-weight: bold;}
.italic             {font-style: italic;}
.del                {text-decoration: line-through;}
.capitalize         {text-transform: capitalize;}
.lowercase          {text-transform: lowercase;}
.uppercase          {text-transform: uppercase;}
.nowrap             {white-space: nowrap;}
/*  -------------------------------------------------------------
    3. Clearing
-------------------------------------------------------------- */
.clear              {clear: both;}
.clear-left         {clear: left;}
.clear-right        {clear: right;}
br.clear, br.clear-left, br.clear-right, div.clear, div.clear-left, div.clear-right
                    {display: block; height: 0; line-height: 0; font-size: 0; overflow: hidden;}
.clearfix:after     {visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0;}
.clearfix           {display: block;}
/* start commented backslash hack \*/
* html .clearfix    {height: 1%;}
.clearfix           {display: block;}
/* stop commented backslash hack */
/*  -------------------------------------------------------------
    4. Debugging
-------------------------------------------------------------- */
.debug              {background: #FF9900 !important;}
#frmRemote          {clear: both; display: block; overflow: scroll; width: 100%; height: 500px; background: #FFFFFF; color: #000000;}
