/*---------------------------------*/
/* Main defaults for html document */
/*---------------------------------*/

body {
	background-color: #00424F; /* leave this colour always*/
	color: #c5a6a1;
	/*#7e5769;  Dark Purple*/ 
	
	font-family:Verdana, Arial, Helvetica, Sans-Serif;
	font-size:11px;	
	
	/*IE hack to centre horizontally - must reset to left later for text in next div*/
	text-align: center;
}

div#outer {
	background-color:#1b040d;    /*#201519*/
	
	/*The next four lines set up official horizontal centering*/
	width: 751px;
	margin-left: auto;
	margin-right: auto;	
	margin-top: 10px;

/*	padding: 0px none;
	border: 0px none;
	margin: 0px none;*/
	
	/*Here we reset the text align after the IE hack above*/
	text-align: left;
}

/*---------------------------------*/
/* Banner logo area*/
/*---------------------------------*/
div#header {
/*	background-color:#555749;
	background-color:#454739;*/
	background-color:#6d515d;

	width: 100%;
	
	/*Explicitly set margins and padding to maintain browser
	compatibility*/
	/*margin: 0px none;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	margin-right: 0px;
	
	padding: 0px none;
	padding-top: 0px;
	padding-left: 0px;
	padding-bottom: 0px;
	padding-right: 0px; 
    
    	border: 0px none #000000;
	border-top: 0px;    
	border-bottom: 0px solid #09343D;
	border-left: 0px;
	border-right: 0px;	   */
}

.headermenu {
	/*Right aligned  text for main menu*/
	/*background-color:#555749;
	background-color:#454739;*/
	background-color:#490023;
	
	/*padding-right: 10 px;    */
	text-align: right;
}
	
/*---------------------------------*/
/* Left hand panel*/
/*---------------------------------*/

div#nav {
	/*The left-hand navigation/shortcut panel*/
	width: 170px;
	border: 0px;
    /*border-right: thin solid #ff9d00;*  - for debugging*/
	padding-left: 10px;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;

    float: left; /*this actually allows the nav to be alongside content*/
	text-align: centre;

}

/*---------------------------------*/
/* Main content*/
/*---------------------------------*/

div#main {
	/*Main content panel*/
	margin-left: 190px;
	margin-top: 0px;
	padding: 10px;
	padding-top: 10px;
    border-left: thin solid #dbbac4;

    
}

/*---------------------------------*/
/* Bottom of page*/
/*---------------------------------*/

div#footer {
	margin: 0px;	
	padding: 15px;
	border-top: thin solid #dbbac4;
}

/*---------------------------------*/
/* Image styles*/
/*---------------------------------*/
img {
	background-color: #022F26;
	/*margin: 5px none #00000;*/
	padding: 0px none;	
	border: 3px solid #0c0209;
    border-top: 3px solid #490023;
    border-left: 3px solid #490023;
    border-right: 3px solid #0c0209;
    border-bottom: 3px solid #0c0209;
}

#header img
{
    border: 3px none #09343D;
}

#nav img
{
	border: 3px solid #0c0209;
    border-top: 3px solid #490023;
    border-left: 3px solid #490023;
    border-right: 3px solid #0c0209;
    border-bottom: 3px solid #0c0209;
}

img.footer
{
    border: 3px none #09343D;
}

img.floatleft
{

	border: 3px solid #0c0209;
    border-top: 3px solid #490023;
    border-left: 3px solid #490023;
    border-right: 3px solid #0c0209;
    border-bottom: 3px solid #0c0209;
}

img.floatright
{
	margin-top: 30px solid #000000;
	border: 3px solid #0c0209;
    border-top: 3px solid #590f30;
    border-left: 3px solid #590f30;
    border-right: 3px solid #0c0209;
    border-bottom: 3px solid #0c0209;
}

/*---------------------------------*/
/* Headers */
/*---------------------------------*/

h1 {
	font-weight: bold; 
	font-size: 12px; 
	color: #d47474; 
	font-family: Verdana, Arial, Helvetica, Sans-Serif;
	text-decoration: none	
}

p {

	margin: 0px solid #000000;
	padding: 0px solid;	
	border: 0px none #000000;

}
/*---------------------------------*/
/* Links */
/*---------------------------------*/

a {
	color: #c47765; 
	font-family: Verdana, Arial, Helvetica, Sans-Serif; 
	text-decoration: none
}

a:hover {
	color: #e0b153;  /*#ff9d00;*/
	font-family: Verdana, Arial, Helvetica, Sans-Serif; 
	text-decoration: none
}

/*---------------------------------*/
/* Formatting */
/*---------------------------------*/

.centred {
	text-align: centre;
}

.right {
	text-align: right;
}

.left {
	text-align: left;
}

.floatleft {
	float: left;
}

.floatright {
	float: right;

}

.strong {
	font-weight: bold
}

.hilite {
	color: #a8585e;
	font-weight: normal;
}

.stronghilite {

	color: #c29da6;
	font-weight: bold;
}


