﻿<!--
/*-----------------------------------------------------------------------
  Cascading Style Sheet for Survey map options. 
  (C) Ian McInnes, 2015                                                 
------------------------------------------------------------------------*/

table.options
{
  border:0px;
  border-collapse:collapse;
  left:0px;
  position:relative;
}

table.options tr { border-bottom:0px; }
table.options td.image { width:120px; left:10px; }
table.options td.text { }

ul.circle {list-style-type:circle}
ul.square {list-style-type:square}

.popup { background-image:url('Thumbs/ElRefugio.png'); }
.pdf { background-image:url('Icons/PDF.png'); }
.dwg { background-image:url('Icons/autoCAD.png'); }
.popup:active { background-image:url('Images/ElRefugioEN.png'); }
.popup:hover { outline:5px solid Red; }
.pdf:hover, .dwg:hover { filter:brightness(135%); }

/* specifications for map options */
.popup, .pdf, .dwg
{
  left:5px;
  position:relative;
  float:left;
}
.popup { width: 96px; height:61px; }
.pdf, .dwg { width:96px; height:96px; }
/* option 1 supports mouse-over image enlargement */
.popup:active
{
  width:100%;
  height:100%;
  left:7px;
  top:0px;
  background-size:contain;
  background-repeat:no-repeat;
  position:fixed;
  outline:0px;
  z-index:1000;
}

-->