﻿/* inetapps.css  
 * ------------
 * 
 * 8th September 2009
 *
 * Extra .net application css markup
 *
*/

/* Horizonal ol for a nav list. Used in school status app */
ol {
text-align: left;
margin-left: 0px
}      

li.inline {
display: inline;
padding-right: 20px;
padding-left:0px;

}

/* for a 2 column table marked up with divs instead of tables */
.tTable {
	display:table;
}
.tRow {
	width:400px;
}
.tCol1 {
	width:110px;
	display:table-cell;
	float:left;
}
.tCol2 {
	width:290px;
	display:table-cell;
	float:left;
}
/* a different size table*/
.tRowA {
	width:500px;
	clear:left ;
}
.tColA1 {
	width:200px;
	display:table-cell;
	float:left;
}
.tColA2 {
	width:290px;
	display:table-cell;
	float:left;
}
.tRowA1 {
	width:97%;
	clear:left ;
}

/* in firefox tables displaying with lhs border missing. to fix */
table {
	margin-left: 1px;
}

/* not to show td borders like in schools_directory listing added 20091222 */
.tdNoBorder {
	BORDER-TOP-STYLE: none! important;
	BORDER-RIGHT-STYLE: none! important;
	BORDER-LEFT-STYLE: none! important;
	BORDER-BOTTOM-STYLE: none! important;
}

/* and to fix the datagrid pager on the bottom of that page */
.tdNoBorder td {
       	BORDER-TOP-STYLE: none !important;	
       	BORDER-RIGHT-STYLE: none !important;
       	BORDER-LEFT-STYLE: none !important;	
       	BORDER-BOTTOM-STYLE: none !important;   
}

