/*************************************************************************************************************************
base.css docs contain vary basic colour and position info mainly for CMS HTML editor to reference.

*************************************************************************************************************************/

body {
	font-family: Tahoma, Arial, Helvetica, sans-serif;
	
	/*Only set core colours*/
	color: #000000; /* Text colour (mainly for CMS HTML editor) over-written in layout.css */
	background-color: #FFFFFF; /* BG colour (mainly for CMS HTML editor) over-written in layout.css*/
}

p { font-size: 11px; }
li { font-size: 11px; }
h1 { font-size: 14px; color: #6190BE; }
h2 { font-size: 12px; color: #6190BE; }
h3 { font-size: 11px; color: #514D4E; }
h4 { font-size: 11px; color: #514D4E; }

img { border: none; }

hr {
	height: 1px;
	border: none;	
	border-top: 1px dotted #8793A4;
	background: none;
	
	color: #8793A4;
}

table {
	border-collapse: collapse;
	
}
table td {
	padding: 2px; /* Mainly for CMS generated tables */
	
}

a:link, a:visited, a:active, a:hover {
	text-decoration: none;
	font-weight: normal;
	
	color: #00AFF3;
}
a:hover {
	text-decoration: underline;
	
	color: #B6B6B6;
}

form {
	margin-bottom: 10px;
}
form input, form select, form textarea {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.0em;
	
	color: #000000;
}

/*- DataGrid Class  --------------------------------------------------*/
table.datagrid {
	border-collapse: collapse;
}
table.datagrid th  {
	text-align: left;
	padding: 3px;
	font-weight: bold;
	border-width:1px;
	border-style:solid;
	background-color:#0000FF;
}
table.datagrid td {
	vertical-align: middle;
	padding: 3px;
	border-width:1px;
	border-style:solid;
}
table.datagrid tr.noborder td {
	border: none;
}