﻿/* @import url(http://fonts.googleapis.com/css?family=Source+Sans+Pro:500); */

ul {
  list-style: none;
  padding: 0;
  margin: 0;
/* original dark blue = background: #3a4296; */
/* colour of drop down list */
  background: #3a4296; 
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
}

ul li {
  display: block;
  position: relative;
  float: left;
  background: #3a4296;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
}

/* This hides the dropdowns */

li ul { display: none; }

ul li a {
  display: block;
/*  padding: 1em; */
  padding: 10px 24px;
  text-decoration: none;
  white-space: nowrap;
  color: #fff;
/*  font-family:Arial, Helvetica, sans-serif; */
}

ul li a:hover { background: #2c3e50; }

/* Display the dropdown */

li:hover > ul {
  display: block;
  position: absolute;
  z-index: 9999;
}

li:hover li { float: none; }

li:hover a { background: #3a4296;}

li:hover li a:hover { background: #2c3e50; }

.main-navigation li ul li { border-top: 0; }

/* Displays second level dropdowns to the right of the first level dropdown */

ul ul ul {
  left: 100%;
  top: 0;
}

/* Simple clearfix */

ul:before,
ul:after {
  content: " "; /* 1 */
  display: table; /* 2 */
}

ul:after { clear: both; }