﻿/* ###################################
   # Martin Sennett Limited web-site #
   ###################################
   # msl_lpNav.css #
   #################
   Purpose: Style-sheet for the Martin Sennett Limited web-site ~ Landing page navigtion block
   File location: [host-redirect]/public_html/aldebaran/msl/css/msl_lpNav.css 

   Context: Landing page.
   Content: Only page-specific styles that relate to in-page navigation. */

/* Navigation block */
div#lp_Nav { /* Container # Landing page navigation (menu, service images, service titles) */
	width: 960px;
	height: 40px;
  margin-bottom: 10px;
}

/* Menu block */
div.lp_NavMenu { /* Container # Landing page menu ("What we do", etc) */
  position: relative;
  float: left;
  width: 313px;
  height: 40px;
  overflow: visible; /* required to allow the subordinate list to show */

  border-radius: 5px;
  background-color: #005a64;
  border-right: solid #82c8c8 1px;
  border-bottom: solid #82c8c8 1px;

  /* Button-like appearance # Browser variants */
  /* W3C */ background-image: linear-gradient(to bottom, #82c8c8 0%, #005a64 100%);
  /* Mozilla Firefox */ background-image: -moz-linear-gradient(top, #82c8c8 0%, #005a64 100%);
  /* Chrome 10 and Safari */ background-image: -webkit-gradient(linear left-top, left-bottom, color-stop(0, #82c8c8), color-stop(1, #005a64));
  /* Chrome 11+ */ background-image: -webkit-linear-gradient(top, #82c8c8 0%, #005a64 100%);
  /* Internet Explorer 10 CP */ background-image: -ms-linear-gradient(top, #82c8c8 0%, #005a64 100%);
  /* Internet Explorer 10 RP */ background-image: linear-gradient(to bottom, #82c8c8 0%, #005a64 100%);
  /* Opera */ background-image: -o-linear-gradient(top, #82c8c8 0%, #005a64 100%);
}

div.lp_NavMenu:hover { /* Container # Mouse-over a menu block causes mouse-pointer to change */
  cursor: pointer;
}

div.lp_NavMenu:hover p { /* Container # Mouse-over a menu block causes change in title text colour */
  color: orange;
}

div#lp_NavMenu_WWDo { /* Container # "What we do" menu block */
}

div#lp_NavMenu_WWDn { /* Container # "What we've done" menu block */
  margin-left: 9px;
  margin-right: 9px;
}

div#lp_NavMenu_WWA { /* Container # "Who we are" menu block */
}

/* Lists */
div.lp_NavMenu ul { /* List # Styles for all menu options lists */
	display: none;
  width: 273px;
  list-style-type: none;
  border-radius: 5px;
}

div.lp_NavMenu:hover ul { /* List # Mouse-over a menu title causes the menu items list to pop-up */
  display: block;
}

div.lp_NavMenu ul li { /* List item # All menu option items (e.g. Technical publications; About MSL) */
  display: block;
  position: relative;
  top:34px;
  left: -40px;
  width: 314px;
  height: 21px;
  cursor: pointer;
}

/* Links */
div.lp_NavMenu ul li a, 
div.lp_NavMenu ul li a:link, 
div.lp_NavMenu ul li a:visited, 
div.lp_NavMenu ul li a:active {
  /* Styles for menu option links ~ except hover (includes styles for text) */
  display: block;
  border-radius: 5px;
  background-color: #005a64;
  border-right: solid #000020 1px;
  border-bottom: solid #000020 2px;

  /* Button-like appearance # Browser variants */
  /* W3C */ background-image: linear-gradient(to bottom, #82c8c8 0%, #005a64 100%);
  /* Mozilla Firefox */ background-image: -moz-linear-gradient(top, #82c8c8 0%, #005a64 100%);
  /* Chrome 10 and Safari */ background-image: -webkit-gradient(linear left-top, left-bottom, color-stop(0, #82c8c8), color-stop(1, #005a64));
  /* Chrome 11+ */ background-image: -webkit-linear-gradient(top, #82c8c8 0%, #005a64 100%);
  /* Internet Explorer 10 CP */ background-image: -ms-linear-gradient(top, #82c8c8 0%, #005a64 100%);
  /* Internet Explorer 10 RP */ background-image: linear-gradient(to bottom, #82c8c8 0%, #005a64 100%);
  /* Opera */ background-image: -o-linear-gradient(top, #82c8c8 0%, #005a64 100%);

  color: #ffffff;
  text-decoration: none;

  padding-top: 5px;
  padding-bottom: 5px;
}

div.lp_NavMenu ul li:hover a { /* Styles for menu option links ~ hover only */
  color: orange;
}

a.lp_SD_SIi_img {
  text-decoration: none;
}

a.lp_SD_SIt_title:link {
  text-decoration: none;
}

/* Paragraphs */
p.lp_NavMenu { /* Paragraph # Menu titles (e.g. "What we do") */
	position: relative;
	top: 2px;
	font-style: normal;
	font-weight: bold;
	font-size: 18px;
	line-height: 0;
  text-align: center;
  color: #ffffff;
}

p.lp_NavMenu_Option { /* Paragraph # Menu options (e.g. "Technical publications") */
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 28px;
  color: #ffffff;
  text-indent: 10px;
  position: relative;
  top: -20px;
}
