/* CSS Document */
/*RJ COLOURS
Light blue #9fb9e4 or #BCCEE7
Purple #57425a
Yellow #DCDE25
Brown  #75433C */


/* General styles */
body {
	margin:  0;
	padding:  0;
	border:0;			/* This removes the border around the viewport in old versions of IE */
	width:100%;
	min-width:900px;	/* The min-width property does not work in old versions of Internet Explorer */
	font-family: Arial, Helvetica, sans-serif;
    }
	
p{
	text-align: justify;
}

/* all links styles */
a:link {
	color: #57425a;
	text-decoration: none;
}

a:hover {
	color: #999999;
} 

a:visited {
	color: #57425a;
	text-decoration: none;
}
	

/* SPACE OCCUPIED */		
#inner_box {
	/* width of whole page */
	width: 900px;
	margin-top: 5%;
	margin-left: 7em;
	height: 100%;
	
}



/* HORIZONTAL NAV UL STYLES */	
#main_menu {
	margin-bottom: 5px;
	font-size: 0.9em;
}

#main_menu ul{
	padding-left: 0px;
	background-color: 57425a;
	color: White;
	float: left;
	margin-left: 1em;
	margin-top: 2em;
	}

#main_menu ul li{
	display: inline;
	font-size: 0.9em;
	}
	
	
#main_menu ul li a{
	padding: 0.2em 1em;
	background-color: #57425a;
	color: White;
	text-decoration: none;
	float: left;
	border-right: 1px solid #fff;}

	
#main_menu ul li a:hover{
	background-color: #BCCEE7;
	color: #57425a;
}

/* INDEX PAGE STYLES */	
#index_logo {
	float: left;
	width: 500px;
	margin-top: 1em;
	margin-right: 1px;
	margin-left: 1em;
}

#index_image {
	float: right;
	width: 290px;

}


.index_text {
	width: 480px;
	font-weight: normal;
	font-size: 0.9em;
}

.index_text h1{
	color: #57425a;
	font-size: 1.5em;
	font-style: normal;
	font-weight: normal;
}

/*
.index_address {
	font-size: 0.8em;
	margin-top: 1em;
}*/

/* 2 COLUMN PAGE STYLES */	
#col2_logo {
	float: left;
	width: 350px;
	margin-left: 1em;
}

#col2_image {
	float: right;
	width: 470px;
	font-size: 0.7em;
}


.col2_text {
	width: 320px;
	font-weight: normal;
	font-size: 0.9em;
	margin-top: 1em;
}

.col2_text h1{
	color: #57425a;
	font-size: 1.5em;
	font-style: normal;
	font-weight: normal;
}

.col2_text h2{
	color: #57425a;
	font-size: 1em;
	font-style: normal;
	font-weight:bold;
}



/* TEXT PAGE STYLES */	

.quote {
	font-weight: bold;
	color: #57425a;
	margin-left: 3em;
	margin-top: 1em;
	font-style: italic;
	font-family: Times New Roman;
	margin-right: 7em;
}

.text_body {
	text-align: justify;
	margin-top: 1em;
	padding-right: 2em;
	font-size: 0.8em;
	width: 456px;
}

.text_body ul{
	list-style-image: url(Images/use/bullet_r.gif);
	font-size: 1em;
}

.text_body ul li{
}


.text_body h1{
	color: #57425a;
	font-size: 2.3em;
	font-style: normal;
	font-weight: normal;
}

.address_etc {
	font-size: 0.8em;
	background-image: url(Images/use/bg.jpg);
	width: 270px;
	padding-top: 0.7em;
	padding-bottom: 0.7em;
}

.address_etc h1{
	color: #57425a;
	font-size: 0.8em;
	font-weight: bold;
}


.address_etc p{
	margin-left: 2em;
	text-align: left;
}

.examples_in_text {
	font-style: italic;
	font-weight: bold;
	font-variant: normal;
	color: #FF3366;
	font-family: Times New Roman;
	margin: 1em;
}



/* HEADER STYLES */
#header {
	clear:both;
	float:left;
	width:100%;
	padding-bottom: 5px;
	background-color: ffffff;
    }

	
	/* 'widths' sub menu */


/* TWO COLUMN LAYOUT - PAGES WITH TWO COLUMNS*/

.colmask {
	position:relative;		/* This fixes the IE7 overflow hidden bug and stops the layout jumping out of place */
	clear:both;
	float:left;
	width:100%;			/* width of whole page */
	overflow:hidden;
	
	}
	/* 	2 column left menu settings */

.leftmenu {
	
	}
	
.leftmenu .colright {
        float:left;
        width:180%; /* ORINAL 200% IF LESS THEN TEXT OVERLAPS AND IS TOO NARROW IF MORE THEN TEXT IS TOO WIDE ADJUST THIS TIF LEFT COL WIDTH CHANGES*/
		position:relative;
		left:300px;
    }
 .leftmenu .col1wrap {
	    float:right;
	    width:50%;      /* ORINAL 50% IF LESS THEN TEXT OVERLAPS AND IS TOO NARROW IF MORE THEN TEXT IS TOO WIDE*/
	    position:relative;
	    right:200px;     /* ORINAL 200PX IF LESS LEFT MARG LEFT COLUMN GOES TO LEFT*/ 
	    padding-bottom:1em;
	}
.leftmenu .col1 {
	position:relative;
	right:100%;
	overflow:hidden;
	margin-top: 0;
	margin-right: 15px;
	margin-bottom: 15px;
	margin-left: 260px;
	background-attachment: scroll;
	background-repeat: repeat-x;
	background-position: bottom;
	}
.leftmenu .col2 {
	float:left;
	width:270px;
	position:relative;
	right:260px;
    }

/* FOOTER STYLES */
#footer {
	clear:both;
	width:100%;
	background-image: url(Images/curved_corners1/bl.png);
	background-position: left bottom;
	background-repeat: no-repeat;
    }
#footer p {
	padding:10px;
	margin:0;
	color: #000000;
	font-size: 0.6em;
	margin-left: 2em;
    }
   


/* COLUMN CONTAINER - PAGES WITH ONE COLUMN*/
.colmask_1 {
		position:relative;	/* This fixes the IE7 overflow hidden bug */
		clear:both;
		float:left;
		width:100%;			/* width of whole page */
		overflow:hidden;		/* This chops off any overhanging divs */
	}
	/* common column settings */
.colright_1,
.colmid_1,
.colleft_1 {
		float:left;
		width:100%;
		position:relative;
	}
.col1_1,
.col2_1,
.col3_1 {
	float:left;
	position:relative;
	padding:0.5;
	overflow:hidden;
	}
	
.col1_1_index,
.col2_1_index,
.col3_1_index {
	float:left;
	position:relative;
	padding:0.5;
	overflow:hidden;

	}
	/* Full page settings */
.fullpage {
		/* page background colour */
	}
.fullpage .col1_1 {
		width:96%;			/* page width minus left and right padding */
		left:2%;			/* page left padding */
	}
	
.fullpage .col1_1_index {
		width:96%;			/* page width minus left and right padding */
		left:2%;			/* page left padding */
	}
	
/*STYLES FOR MAILING LIST FORMS*/
#divID #thisform input {
    width: 300px;
    }
	
.textinput {
	margin-bottom: 1.5em;
	color: #333333;
	background-color: #F6FFF7;
	width: 320px;
	font-family: Courier New, Courier, monospace;
	height: 1.2em;
}

.textinput1 {
	margin-bottom: 1.5em;
	Height: 100px;
	color: #666;
	background-color: #F6FFF7;
	width: 320px;
}
	

/*CURVED CORNERS FOR INNER BOX*/
 
.curvt {
	background-repeat: repeat-x;
	background-position: top;
	background-image: url(Images/curved_corners1/t_900.png);
}

.curvb {
	background-image: url(Images/curved_corners1/b.png);
	background-repeat: repeat-x;
	background-position: bottom;
}	

.curvtl {
	background-repeat: no-repeat;
	background-position: left top;
}

.curvtr {
	background-image: url(Images/curved_corners1/tr.png);
	background-repeat: no-repeat;
	background-position: right top;
}

.curvbl {
	background-image: url(Images/curved_corners1/bl.png);
	background-repeat: no-repeat;
	background-position: left bottom;
}

.curvbr {
	background-image: url(Images/curved_corners1/br.png);
	background-repeat: no-repeat;
	background-position: right bottom;
}

.curvtl {
	background-image: url(Images/curved_corners1/tl.gif);
	background-repeat: no-repeat;
	background-position: left top;
}

.curvl {
	background-image: url(Images/curved_corners1/l.png);
	background-repeat: repeat-y;
	background-position: left;
}

.curvr {
	background-image: url(Images/curved_corners1/r.png);
	background-repeat: repeat-y;
	background-position: right;
}

/*CURVED CORNERS FOR ADRESS*/
 
.curv1t {
	background-image: url(Images/curved_corners2/t.png);
	background-repeat: repeat-x;
	background-position: top;
}

.curv1b {
	background-image: url(Images/curved_corners2/b.png);
	background-repeat: repeat-x;
	background-position: bottom;
}	

.curv1tl {
	background-image: url(Images/curved_corners2/tl.png);
	background-repeat: no-repeat;
	background-position: left top;
}

.curv1tr {
	background-image: url(Images/curved_corners2/tr.png);
	background-repeat: no-repeat;
	background-position: right top;
}

.curv1bl {
	background-image: url(Images/curved_corners2/bl.png);
	background-repeat: no-repeat;
	background-position: left bottom;
}

.curv1br {
	background-image: url(Images/curved_corners2/br.png);
	background-repeat: no-repeat;
	background-position: right bottom;
}

.curv1tl {
	background-image: url(Images/curved_corners2/tl.png);
	background-repeat: no-repeat;
	background-position: left top;
}

.curv1l {
	background-image: url(Images/curved_corners2/l.png);
	background-repeat: repeat-y;
	background-position: left;
}

.curv1r {
	background-image: url(Images/curved_corners2/r.png);
	background-repeat: repeat-y;
	background-position: right;
}
.rjtable {
	text-align: left;
	background-color: #E6E6E6;
}

