/*
  @Nuno Costa [criacaoweb.net] Core CSS.
  @Licensed under GPL and MIT.
  @Status: experimental
  @Version: beta0.1-test-20090329
  
  @Contributors:
  
  --------------------------------------------------------------- 
*/


/* ----------- Utilities ----------- */
@import url("util.css");

/*----------- Global Containers ----------- */
/* 
.core-wrap-100   =  width - 100% of Browser Fluid
.core-wrap-960   =  width - 960px  - fixed
.core-wrap-780   =  width - 780px  - fixed
.custom-wrap-x   =  width -  custom   - declared in another css (your site css)
*/
.core-wrap-100
{
 width:100%;
}
.core-wrap-960
{
 width:960px;
}
.core-wrap-780
{
 width:780px;
}
.core-wrap-100,
.core-wrap-960,
.core-wrap-780,
.custom-wrap-x
{
 margin-left:auto;
 margin-right:auto;
}

/*----------- Global Float ----------- */

.core-wrap-100  .core-float-left,
.core-wrap-960  .core-float-left,
.core-wrap-780  .core-float-left,
.custom-wrap-x  .core-float-left
{
 float:left;
 display:inline;
}

.core-wrap-100  .core-float-right,
.core-wrap-960  .core-float-right,
.core-wrap-780  .core-float-right,
.custom-wrap-x  .core-float-right
{
 float:right;
 display:inline;
}

/*----------- Global Center ----------- */

.core-wrap-100   .core-center,
.core-wrap-960   .core-center,
.core-wrap-780   .core-center,
.custom-wrap-x   .core-center
{
 margin-left:auto;
 margin-right:auto;
}


/* ----------- TODO ----------- */

