﻿/*************************************************************
 * StyleSheet:	CssModules.css
 *
 * Description:	The stylesheet that is used for all modules
 *				that derive from AbsModuleBase.
 *				Derived modules can either overrule these 
 *				in their own stylesheet or add extra styles.
 *
 * Comments:	Note that to completely overrule a style, all
 *				style properties need to be redefined, since
 *				styles are cascaded (added, not replaced)
 *************************************************************
 *
 * Current implentation:
 *
 *  THEME ARCHITECTENBUREAUS
 *  
 *************************************************************/

/* 
   IMPORTANT NOTE:
   ---------------
   The style classes defined are the same classes as defined
   in the regular module-css dir. Both stylesheet are attached, the
   themed stylesheet as last. But keep in mind that 
   the STYLE PROPERTIES ARE CASCADED!!! 
*/


/******************************************************
 * Class(es):	MAIN TABLE 
 * Description: The main layout-table for all modules 
 * Comments:
 ******************************************************/

.MdlMainTable {
   width: 100%;
}
.MdlMainTablePageTitle {
   font-size: 14px;
   font-weight: bold;
   color: #57196a;
}
.MdlMainTableHeader {
}
.MdlMainTableFooter {
}
.MdlMainTableContent {
}
.MdlMainTableSpacer {
}
.MdlMainTablePageAuthor {
}

