/* This file contains only the default background colours for the whole CMS.*/

/* Background colour for columns left and right of content window, and 
   default colour of text.*/
body {
	background-color: #edefe2;
	color: black;
}

/* Link colours */
a, a:visited, a:link, a:active {
	color: #094E7C;
}

/* CONTENT WINDOW */
/* Change the colour of this image to change the colour of the left hand menu*/
#content_window {
	background-image: url(../images/strip1.jpg);
	background-repeat: repeat-y;
}


/* FIRST ROW IN CONTENT WINDOW */

/* Background-colour for the FIRST ROW IN CONTENT WINDOW.*/
div#top_row{
	background-color:#094e7c;
}

/* Text colour for the FIRST ROW IN CONTENT WINDOW.*/
div#top_row .top_row_children{
	color:#FFFFFF;
	background-color:#094e7c;
}

/* Textual link colour for the FIRST ROW IN CONTENT WINDOW.*/
div#top_row .top_row_children a{
	color:#FFFFFF;
	background-color:#094e7c;
}





/* LEFT NAVIGATION MENU */

/* Background-colour for the LEFT NAVIGATION MENU.*/
#navigation {
	background-color: #DEDED5;
}

/* Textual link colour for the LEFT NAVIGATION MENU.*/
#navigation a {
	color: #3F3F3C;
}

/* Borders below and above each top level item in the LEFT NAVIGATION MENU.*/
#navigation ul {
	border-bottom-color: #ffffff; 
	border-top-color: #a8a89c;
}

/* Borders below and above each top level item in the LEFT NAVIGATION MENU.*/
#navigation ul li {
	border-bottom-color: #a8a89c; 
	border-top-color: #ffffff;
	
}

/* Borders below and above each second level item in the LEFT NAVIGATION MENU.*/
/* These should be the same colour as the background of the navigation bar. */
#navigation li.subsection {
	border-bottom-color: #DEDED5;
	border-top-color: #DEDED5;
}

#navigation li.lastsubsection {
	border-bottom-color: #A8A89C;
}


/* Column line colour for TABS (optional on edit page).*/
h2 table#tabmenu tr td {
	border-right-color: #CBCBC6;
}




/* Last Action Text (list feature).*/

#LastActionText { 
	background-color:#EEEEE8;
}

/* link to a page for creating a new something. for example a new administrator */
a#add_link {
	color:#000000;
}




/* DEFAULT FORM */

/* Default button */
input.button {
	border-left-color: #babaaf;
	border-right-color: #696961;
	border-top-color: #d1d1cb;
	border-bottom-color: #3a3a35;
}

/* Default text field */
form input.textbox, input.logintextbox, textarea, fieldset, legend{
	border-color: #d4d0c8;
}


/* DEFAULT TABLE */

/* Default borders are white.  They should be the same as page background colour
so they aren't visible.*/
table, table th, table tr, table td {
	border-color: #FFFFFF;
}


/* TABLE LIST */

/* The colour of the border around the table */
table.listTable {
	border-color: #c5c8b7;
}

/* The colour of the bottom border around the table header rows. 
   The colour of the text in the table header(, both if or if not
   encapsulated in <a> elements).
*/

table.listTable th, table.listTable th a{
	border-color: #c5c8b7; 
	color: #094e7c;
}

/* The colour of the bottom and border around the table data rows.
   The colour of the text in a table data row. */
table.listTable td {
	border-color: #c5c8b7;
	color: #575757; 
}

/* Colour of the odd numbered table rows. */
table.listTable tr.dark {
	background-color: #f4f4f4;
}

/* Drag and Drop table row.  During drag event! */
table.listTable tr.active_drag {
	background-color:#eee;
}




/* PAGINATION */

/* Non-Current Page Numeric Links */
div.pagination div.numberedPageLinks span a {color:#575757; vertical-align:middle;}

/* Current Page Numeric Link*/
div.pagination div.numberedPageLinks span#currentPagePaginationLink {color:#575757; vertical-align:middle;}





