/*
  CV CSS Style Sheet

  The W3C HTML Validator spent so much time complaining about my abuse of the FONT tag I decided
  to bite the bullet and create a proper style sheet for my CV.

  Alex 27/11/08
*/

/* Generic HTML Elements */

/* h2 - sub sections */
h2 {
    font-family: sans-serif;
    margin-bottom: 12px;
}

/* h3 - employers */
h3 {
    font-family: sans-serif;
    margin-bottom: 0px;
}


li.nobull {
    list-style-type: none
}

/* Special Div styles */

/*
  The config links are used to configure the CV. Make them:

  a) stand out with grey background
  b) not have different colours for visited/not-visited
*/

.configLinks {
    font-size: small;
    background: gray;
    }

.configLinks A:link, A:visited {
    color: blue;
    }
