/*--------------------------------------------------------------
  About: www.garmin.com content (not to be confused with the global Garmin CSS library)
  Scope: Corporate content living on Marketing/Communications CMS
  Area: GGDC jQuery Overlay
  Notes: Requires jquery.tools.js
  Table of Contents:
  1) Overlay Default Properties
-------------------------------------------------------------- */
/* ***********************************************************************
   *                                                                     *
   *    Section 1: Overlay Default Properties
   *                                                                     *
   *********************************************************************** */
.overlay {
	z-index: 10000;
	display: none;
    padding: 10px;
	width: auto;
    border: 1px solid #d1d1d1;
	background-color: #fff;
    -webkit-box-shadow: 0 0 8px rgba(0,0,0,.4);
       -moz-box-shadow: 0 0 8px rgba(0,0,0,.4);
            box-shadow: 0 0 8px rgba(0,0,0,.4);
}
.overlay .close {
    position: absolute;
    top: 0;
    right: 0;
    width: 26px;
    height: 26px;
    background: #fff url(../images/icons/icon-overlay-close.png) no-repeat 50% 50%;
    cursor: pointer;
}
/* ***********************************************************************
   *                                                                     *
   *    Section 1: End Overlay Default Properties
   *                                                                     *
   *********************************************************************** */