@charset 'UTF-8';
/* Some stylesheet reset */

#screenshot-menu > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  line-height: 1;
}
/* The container */
#screenshot-menu > ul {
  display: block;
  position: relative;
  width: 150px;
}
/* The list elements which contain the links */
#screenshot-menu > ul li {
  display: block;
  position: relative;
  margin: 0; /* vertical spacing between buttons */
  padding: 0;
  width: 100%;
}
/* General link styling */
#screenshot-menu > ul li a {
  /* Layout */
  display: block;
  position: relative;
  margin: 0;
  border-top: 1px dotted #e4dfbe; /* border top dots color */
  border-bottom: 1px dotted #327c87; /* border bottom dots color */
  padding: 7px 10px; /* padding between text and edges */
  /* Typography */

  //font-family: Helvetica, Arial, sans-serif;
  color: #327c87; /* text color */
  text-decoration: none;
  //text-transform: uppercase;
  text-shadow: 0 1px 0 #e4dfbe;
  font-size: 13px;
  font-weight: 300;
  /* Background & effects */

  background: #dedbb9;  
  background: -webkit-linear-gradient(#e9e6c8, #dedbb9);
  background: -moz-linear-gradient(#e9e6c8, #dedbb9);
  background: linear-gradient(#e9e6c8, #dedbb9);  
}

/* Rounded corners for the first link of the menu/submenus */
#screenshot-menu > ul li > a {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  border-left:#f6f4e2 thin solid ;
  border-top:#f6f4e2 thin solid ;
  border-right:#aaa67a thin solid ;
  border-bottom:#aaa67a thin solid ;  
}
/* I changed the 2 sections below to the above 1 section to round all corners and remove dotted lines between buttons */
/*
#screenshot-menu > ul li:first-child > a {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-top: 0;
}
*/
/* Rounded corners for the last link of the menu/submenus */
/*
#screenshot-menu > ul li:last-child > a {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom: 0;
}
*/
/* The hover state of the menu/submenu links */
#screenshot-menu > ul li a:hover,
#screenshot-menu > ul li:hover > a {
  color: #ffffff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  background: #a7d1cf;
  background: -webkit-linear-gradient(#a7d1cf, #86bfbd);
  background: -moz-linear-gradient(#a7d1cf, #86bfbd);
  background: linear-gradient(#a7d1cf, #86bfbd);
  border-color: transparent;
  
  border-left:#cfeae9 thin solid ;
  border-top:#cfeae9 thin solid ;
  border-right:#6da3a1 thin solid ;
  border-bottom:#6da3a1 thin solid ;    
}
/* The arrow indicating a submenu */
#screenshot-menu > ul .has-sub > a::after {
  content: '';
  position: absolute;
  top: 10px;
  right: 8px;
  width: 0px;
  height: 0px;
  /* Creating the arrow using borders */

  border: 4px solid transparent;
  border-left: 4px solid #327c87; /* arrow color */
}
/* The same arrow, but with a darker color, to create the shadow effect */
#screenshot-menu > ul .has-sub > a::before {
  content: '';
  position: absolute;
  top: 11px;
  right: 8px;
  width: 0px;
  height: 0px;
  /* Creating the arrow using borders */

  border: 4px solid transparent;
  border-left: 4px solid #fff; /* arrow shadow color */
}
/* Changing the color of the arrow on hover */
#screenshot-menu > ul li > a:hover::after,
#screenshot-menu > ul li:hover > a::after {
  border-left: 4px solid #fff;
}
#screenshot-menu > ul li > a:hover::before,
#screenshot-menu > ul li:hover > a::before {
  border-left: 4px solid rgba(0, 0, 0, 0.25);
}
/* THE SUBMENUS */
#screenshot-menu > ul ul {
  position: absolute;
  left: 100%;
  top: -9999px;
  padding-left: 2px; /* distance from main menu to submenu */
  opacity: 0;
  width: 310px;
  /* The fade effect, created using an opacity transition */

  -webkit-transition: opacity 0.3s ease-in;
  -moz-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
}
#screenshot-menu > ul ul li a {
  font-size: 13px;
}
/* Showing the submenu when the user is hovering the parent link */
#screenshot-menu > ul li:hover > ul {
  top: 0px;
  opacity: 1;
  z-index: 1;
}
