/* --------- 1. defaults  --------- */

* { /* Remove any browser default settings for margin and padding */
  margin: 0;
  padding: 0;
}
body { /* Anything that applies to the whole page */
}
    
/*  --------- 2. structure  --------- */

#wrapper { /* Settings for fixed width centred design */
  background-image: url(../images/background.png);
  margin: 30px auto 15px auto; /* Centres the wrapper */
  width: 891px;   /* Set width for main wrapper */
}
#header { /* This is the main vertical header at the top of the page */
  background-color: #F5DB02;
  background-image: url(../images/banner.jpg);
  background-repeat: no-repeat;
  clear: both;
  height: 195px;
}
#header h1 {
  text-indent: -9999px;
}

#navigation { /* Container for main navigation - usually horizontal */
  float: left;
  width: 155px;
  margin-right: 5px;
}

#content { /* Main page content */
  float: left;
  width: 450px;
  margin-left: 10px;
  margin-right: 20px;
}

#latestNews {
  float: left;
  margin-left: 10px;
  margin-top: 15px;
  padding-right: 10px;
  width: 220px;
}

#footer { /* Appears at the bottom of every page */
  background-image: url(../images/footer.png);
  background-repeat: no-repeat;
  background-position: 0 100%;
  clear: both;
  height: 50px;
  padding-right: 15px;
}

#copyright {
  background-color: #09164B;
  color: #FFF;
  text-align: right;
  padding-top: 10px;
  width: 891px;
}
#copyright a {
  color: #FFF;
}

.separator {
  clear: both;
}

.separatorInvisible {
  clear: both;
  height: 1px;
}

.clearFix:after {
  content: "."; 
  display: block; 
  height: 0; 
  clear: both; 
  visibility: hidden;
}

#right {
  float: right;
  margin: 0;
  position: relative;
  right: -16px;
  padding: 0;
}

/* ---------- 3. links and navigation ---------- */

a {
  color: #17327F;
  text-decoration: none;
  font-weight: bold;
}
    
a:hover {
  text-decoration: underline;
}

#navigation ul {
  list-style: none;
  margin-left: 10px;
  margin-top: 5px;
  padding-right: 15px;
}
#navigation ul ul {
  margin-left: -5px;
}

#navigation li {
  background-image: url(../images/bullet.png);
  background-repeat: no-repeat;
  background-position: 0 1em;
  border-bottom: 1px dashed #31268E;
  padding: 10px 0 10px 20px;
}
#navigation li li {
  background-image: url(../images/bullet.png);
  background-repeat: no-repeat;
  background-position: 0 1em;
  border: none;
  padding: 10px 0 10px 20px;
}
#navigation a {
  color: #17327F;
  text-decoration: none;
  font-weight: normal;
}
#navigation a:hover {
  text-decoration: underline;
}

/* ---------- 4. fonts ---------- */

html {
  font-size: 100%;
}

body {
  background-color: #09164B;
  color: #061848;
  font-size: 72%;
  font-family: arial, lucinda, sans-serif;        /*  Remove unwanted font family */
  line-height: 1.5em;
}

h2, h3, h4, h5, p {
  padding: 0.3em 0;
}
ol {
   list-style-type: lower-alpha;
   margin-left: 20px;
}
li {
  padding: 0.3em;
  padding-left: 0;
}

h1 {
  font-size: 2em;
}

h2 {
  padding-top: 15px;
  font-size: 1.8em;
}

h3 {
  font-size: 1.6em;
  line-height: 1.2em;
}
    
h4 {
  font-size: 1.4em;
}
h5 {
  font-size: 1.2em;
}

p {
}

#content ul {
  clear: left;
  list-style-type: disc;
  margin-left: 20px;
}

p.break {
  border-bottom: 1px dashed #31268E;
  text-align: center;
}
p.break img {
  border: 1px solid #263560;
}

img.wrap {
  float: left;
  padding: 5px 10px 0 0;
}

a#donateButton {
  background-color: #17327F;
  color: #F5DB02;
  float: left;
  margin-right: 8px;
  padding: 6px 15px;
}
div#locations {
  clear: left;
  padding-top: 20px;
  margin: 0 auto;
}
div#locations p {
  float: left;
  width: 200px;
  padding: 0.6em 0 0.6em 25px;
}

/* ---------- 5. images ---------- */

a img {
  border: 0;
}

/* ---------- 6. forms ---------- */  
    
form {overflow: hidden;
}

form fieldset {
  border: 0;
}

form label {
  clear: left;
  display: block;
  float: left;
  margin: 0.3em;
  width: 120px;
}
form input, form textarea {
  float: left;
  margin: 0.3em;
}
form input {
  width: 150px;
  margin-right: 50px;
}
form textarea {
  height: 150px;
  width: 300px;
}
form input.submit {
  margin-left: 129px;
  margin-right: 5px;
  width: auto;
}
form input.reset {
  width: auto;
}

/* I hate buttons and the designers who make 'em */
div.badbutton {
  background-image: url(../images/button-foot.png);
  background-repeat: no-repeat;
  background-position: left bottom;
  padding: 0;
  width: 140px;
}
div.badbutton div {
  background-image: url(../images/button-head.png);
  background-repeat: no-repeat;
  padding-top: 5px;
  padding-bottom: 8px;
  text-align: center;
}