/**
*
* @note             css file for common classes
* 
* @appdef           front end starter kit
* @app-myapp-theme  
* @app-myapp-used   True
* @media            screen
* @valid            true
* 
* @author           Alp Uçkan
* @version          1.0
* @link             http://alp-uckan.net/free/frontend-starterkit/
* @copyright        Copyright(c) by Alp Uçkan
* @license          http://creativecommons.org/licenses/GPL/2.0/
* 
* @date             2008-09-22
* @lastmodified     2008-11-29 21:21
* 
* @colordef         rgb(0,0,0); Black; Text
* @colordef         rgb(255,255,255); White; Background
*/

/**
* @section            clearing floats
*                     http://www.positioniseverything.net/easyclearing.html  
*/

.cf:after             {
                      content: ".";
                      display: block;
                      height: 0;
                      clear: both;
                      visibility: hidden;
                      }
.cf                   {
                      display: inline-block;
                      }
                      /* Hides from IE-mac \*/
* html .cf            {
                      height: 1%;
                      }
.cf                   {
                      display: block;
                      }
                      /* End hide from IE-mac */

/**
* @section            clearing floats
*                     http://sonspring.com/journal/clearing-floats  
*/

html body div.clear,
html body span.clear  {
                      background: none;
                      border: 0;
                      clear: both;
                      display: block;
                      float: none;
                      font-size: 0;
                      margin: 0;
                      padding: 0;
                      overflow: hidden;
                      visibility: hidden;
                      width: 0;
                      height: 0;
                      }

/**
* @section            hiding elements
* @todo    
*/

.hide                 {
                      visibility: hidden;
                      }
 
