
/* amend defaults for entire page */
body {
margin:0px 0px;           
padding:0px;
text-align:center;         /* this is a fudge to centre 'window' in ie5 - reset to left in window itself */
background-color: #CCCCCC; /* gray background */
font-family: Verdana, Arial,Geneva,Trebuchet,Helvetica,sans-serif;
font-size: 78%;
}

/* the central window - contains all page information */
#window {
width: 900px; 
height: auto;               /* adjust height to fit - but see centre below */
margin:20px auto 50px;   /* centre 'window' vertically just a bit down from top*/
text-align:justify;
background-color: #FFCCFF; /* web safe pale pink */
}

/* the top of screen banner */
#header {
position: relative;
width: 100%;
height: 120px;
background-image: url("../images/backbanner.jpg");
}

/* the left hand navigation column with dark pink border */
#left {
position: relative;
width: 160px;
height: 320px;
border: 1px solid #FF99CC; /*web safe darker pink*/
margin: 70px 15px 15px 15px;
float: left;
display: inline;           /* To avoid double margin bug in IE 6 */
}

/* menu entries go inside here */
#menu {
position: relative;
width: 120px;
height: 320px;
margin-top: 50px;
margin-left: 3px;
}

/* the central text column */
#centre { 
position: relative;
width: 420px; 
height: auto;       /* adjust height to fit contents... */
min-height: 450px;  /* ... but always make it at least 450px high */
float: left;
}

/* the right hand side image/copyright column */
#right {
position: relative;
width: 260px;
height: 300px;
padding-top: 100px;
padding-left: 20px;
float: left;
}

/* the image */
#rightimage {
width: 260px;
text-align: center;
float: left;
display: inline;    /* To avoid double margin bug in IE 6 */
}


/* Three footers - same widths as left, centre and right */
#leftfoot {
position: relative;
float: left;
width: 190px;
height: 5px;
}

/* for Relationship counselling... tag line */
#midfoot {
position: relative;
float: left;
width: 420px;
min-height: 5px;
height: auto;
padding: 10px 0px 5px;
text-align: center;
font-size: 70%;
color: #666666;
}

/* for copyright notice */
#rightfoot {
position: relative;
float: left;
width: 280px;
height: auto;
padding: 10px 0px 5px;
text-align: center;
font-size: 70%;
color: #666666;
}

#seofoot {
min-height: 150px;
font-size: 80%;
color:#666666;
font-weight: bold;
}

/* class to clear floats */
.clear {
clear: both;
}


/* Headings */
/* used on all pages */
h1 {
font-size: 120%;
color: black;
font-weight: bold;
}

/* large heading on index page */
h1.home {
font-size: 160%;
text-align: center;
font-weight: normal;
line-height: 1;
}

h2 {
font-size: 100%;
line-height: 1;
margin-bottom: 0px;
}

.testimonial {
font-family: Georgia, Verdana, Arial,Geneva,Trebuchet,Helvetica,sans-serif;
font-style: italic;
margin-bottom: 20px;
border-bottom: 1px solid #FF99CC;
}

p.smalltext {
font-size: 90%
}

p.smalltop {
margin-top: 4px;
}

/* amend defaults for unordered lists in class aboutmelist */
ul.aboutmelist {
margin-top:5px;   /* small top margin */
}

/* Menu stuff */
/* amend defaults for unordered lists in menu - turn most stuff off */
#menu ul {
margin: 0;
padding: 0;
list-style-type: none;
} 

/* create gap between menu entries */
#menu li {
margin: 5px 0 0;
} 

/* amend defaults for anchors in menu - this sets up how menu entries look */
#menu a {
display: block;
width:130px;
padding: 4px 2px 4px 10px;
border: 1px solid #FF99CC;  /* websafe even darker pink */
text-decoration: none;      /* no underline on anchors*/
font-size: 120%;
color: blue;                /* text is blue */
} 

#menu a:visited {
color: #990066;
}

/* finally set up the menu mouse over effect */
#menu a:hover {
border: 1px solid #CC6699;  /* websafe dark pink */
background: #FF99CC;        /* websafe darkest pink */
color: #ffffff;             /* text turns white */
} 