/****
Styles for DHTML country/city pulldown
Used in conjucntion with js/country_select.js
****/

#country, #country ul { /* all lists */
  clear:both;
  padding: 5px 0;
  margin: 0;
  list-style: none;
  font-size: 9px;
}

#country a {
  display: block;
  width: 120px;
}

#country li { /* all list items */
  float: left;
  width: 120px;
}


#country li ul { /* second-level lists */
  position: absolute;
  margin-top: 3px;
  margin-left:-5px;
  background: white;
  border:1px solid #7f9db9;
  width: 130px;
  height: 150px;  
  padding: 5px 0 5px 3px;  
  overflow-y: auto; /* scroll vertically */
  overflow-x: hidden; /* do not scroll horiz'ly */    
  left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
  z-index:999;
}

#country li:hover ul, 
#country li.sfhover ul { /* lists nested under hovered list items */
  left: auto;
}

#country li:hover, #country li.sfhover {
  background: #fff;
}


/* Select City/Country link */
#country li.top {
  background-color: #fff;
  padding: 2px 4px 2px 4px;
  border:1px solid #7f9db9; 
}

#country li.top a.link-it {
  padding: 1px 0px;
  color: #666666; 
  background:url(../img/common/icons/icon_down.gif)  no-repeat center right;
}

#country li ul li {
  padding-top: 0px;
  padding-bottom:2px; 
}

#country li ul li {
  color: #000;
  font-weight:bold;
  font-style: italic;
}

#country li ul li a {
  color: #666666;
  font-weight: normal;  
  font-style: normal;
}

#country li ul li a:hover {
  background: #316AC5;
  color: #fff;
  font-weight: normal;  
  font-style: normal;
}

/* overwrite ul li styles in global.css */
ul {margin:0;padding:0;}
li {padding:0;text-indent:0px;}