/* Welcome to my first Cascading Style Sheet ... */

/* This next line says that everything "*" shoudl have arial, sans-serif font */
* { font-family: arial, sans-serif }

/* This line removes underlines from all links... */
a {text-decoration:none }

/* This line puts the underline back on a link when you hover over it... */
a:hover {text-decoration:underline }

/* I have been messing a bit with the headers, I took off the bolding
   and for H1 I increased the letter spacing slightly... */
h1 { font-weight:normal ; letter-spacing:.1em; }
h2 { font-weight:normal }
h3 { font-weight:normal }
h4 { font-weight:normal }

/* How come my colours are still set in the body tag?
   Well, I want the colour scheme to work on browsers that don't have CSS support,
   I don't mind too much about the other stuff included here not working.
   It's a question of balance.... */

/* Regards, Mark Lenahan, 20/Jun/04, http://www.irlbrl.com/ */

/* ML - 5/Jul/04 - Added right DIV for image... */
/* # refers to id, any div with "id=imagebar" will float on the right */
#imagebar {
  width:200px;
  float:right;
  text-align:left;
  }

/* Remove borders from images which are links */
img {
  border:0px;
}
