/**
 * Stylesheet Framework for Contao Open Source CMS
 * Copyright © 2011-2012 Dominik Raubuch
 *
 * CSS-Layout for Contao Open Source CMS.
 *
 * @copyright	Copyright © 2011-2012 Dominik Raubuch
 * @author		Dominik Raubuch <http://www.raubuch.net>
 * @package		styles
 * @version		1.1
 */

@media all
{
	/**
	 * tables
	 */
	table { width:auto; border-collapse:collapse; margin-bottom:1em; }
	table caption { font-variant:small-caps; }
	table.full { width:100%; }
	table.fixed { table-layout:fixed; }

	tr {  }
	tr.row_first {  }
	tr.row_last {  }
	tr.even {  }
	tr.odd {  }

	th { padding: 0.3em; vertical-align: top; border-bottom: 2px solid; border-right: 2px solid; }
	th.col_first {  }
	th.col_last { border-right: none; }

	td { padding: 0.3em; vertical-align: top; border-right: 2px solid; }
	td.col_first {  }
	td.col_last { border-right: none; }

	thead tr {  }
	thead th {  }
	thead td {  }

	tbody tr {  }
	tbody th { text-align:left; }
	tbody td {  }

	tfoot tr {  }
	tfoot th { text-align:left; font-style:italic; }
	tfoot td { font-style:italic; }
	
	/**
	 * none bordered tables
	 */
	table.noborder { border:none; }
	table.noborder tr { border:none; }
	table.noborder th { border:none; }
	table.noborder td { border:none; }
}
