@charset "iso-8859-1";
					
/*******************************************************************************
*  skidoo_too.css : 2005.08.29
* -----------------------------------------------------------------------------
*  A remake of the skidoo layout with the middle column appearing first in
*  source ordering.
*******************************************************************************/

/* begin with generic selectors so that they can be overridden if needed
 * by classes deeper in the stylesheet
 */

.clear
{
	clear: both;
	padding-bottom: 1px;	/* for Gecko-based browsers */
	margin-bottom: -1px;	/* for Gecko-based browsers */
}
.clearleft
{
	clear: left;
}
.clearright
{
	clear: right;
}

.hide
{
	display: none !important;
}
.inside
{
	/* glitch in IE caused by vertical padding in this class, so 0 padding is
	 * set here and those blocks that need the vertical padding must be 
	 * applied to the parent element. the purpose of this class is to provide
	 * horizontal padding without using hacks to get around IE's broken box 
	 * model. so it's okay to apply vertical padding to the parent element, 
	 * just not horizontal padding.
	 */
	padding: 0 1em;
}

/* margin values and font sizes for headings, and margins on paragraphs
 * and lists are not consistent across browser platforms. to achieve a
 * consistent look we need to explicity set these values here. it may
 * seem an odd way to declare the margins like this but you never
 * know what kind of horizontal padding a browser may be using on an
 * element, and I only want to change the vertical padding.
 *
 * pixels are used here, rather than ems, because I want a consistent
 * margin on the different headings. if I use ems, 1em for an h1 element
 * is much larger than 1em on an h6 element. I don't wnat this.
 *
 * salt to taste
 */
ul, ol, dl, p, h1, h2, h3, h4, h5, h6
{
	margin-top: 14px;
	margin-bottom: 14px;
	padding-top: 0;
	padding-bottom: 0;
}
h1
{
	font-size: 220%;
}
h2
{
	font-size: 190%;
}
h3
{
	font-size: 160%;
}
h4
{
	font-size: 130%;
}
h5
{
	font-size: 100%;
}
h6
{
	font-size: 70%;
}

/* alter some HTML elements' default style
 */
a, a:link, a:visited, a:active
{
	text-decoration: none;
	color: Blue;
}
a:hover
{
	color: Green;
}
code
{
	font-family: "Courier New", Courier, monospace;
}
label
{
	cursor: pointer;
}
table
{
	font-size: 100%;
}
td, th
{
	vertical-align: top;
}

/* now we craft the core layout of the page. this includes positioning and
 * gutter space. colors and fonts should not come into play at this point.
 * when defining a border, default its color to white which is probably
 * the safest thing to do.
 */
body
{
	margin: 10px auto;
	width: 875px;
	font-size: 100.1%;	/* resolve some font size issues in some layouts for
				   some browsers. (in other words, i got no clue.) */
}
#pageWrapper
{
	border: solid 1px #fff;
	border-width: 0 1px;
	min-width: 40em;	/* IE doens't understand this property. EMs are used
				   so that as the font size increases, the proportional
				   limitations (min-width) increase with it, rather
				   than creating a middle column that can only fit
				   3 or 4 characters in it. */
	width: auto;
}
* html #pageWrapper
{
	/* \*/
		word-wrap: break-word;
	/* invalid CSS but keeps IE from breaking horribly under narrow viewports */
}
#masthead
{
	border: solid 1px #fff;
	border-width: 1px 0;
	padding: 0.5em;
}
#masthead h1
{
	padding: 0;
	margin: 0;
}
#outerColumnContainer
{
	/* reserves space for the left and right columns. you can use either
	 * padding, margins, or borders, depending on your needs. however you
	 * can use the border method to create a background color for both left
	 * and right columns
	 */
	border-left: solid 14em #fff;
	border-right: solid 14em #fff;
}
#innerColumnContainer
{
	border: solid 1px #fff;
	border-width: 0 1px;
	margin: 0 -1px;		/* compensate for the borders because of
				   100% width declaration */
	width: 100%;
	z-index: 1;
}
#leftColumn, #middleColumn, #rightColumn, * html #SOWrap
{
	overflow: visible;	/* fix for IE italics bug */
	position: relative;	/* fix some rendering issues */
}
#SOWrap
{
	float: left;
	margin: 0 -1px 0 0;
	width: 100%;
	z-index: 3;
}
#middleColumn
{
	float: right;
	margin: 0 0 0 -1px;
	width: 100%;
	z-index: 5;
}
#leftColumn
{
	float: left;
	margin: 0 1px 0 -14em;
	width: 14em;
	z-index: 4;
}
#rightColumn
{
	float: right;
	width: 14em;
	margin: 0 -14em 0 1px;
	z-index: 2;
}
#footer
{
	border: solid 1px #fff;
	border-width: 1px 0;
	padding: 0.5em;
}

p.fontsize-set
{
	text-align: center;
}
p.fontsize-set img
{
	border-width: 0;
}

/* vertical navigation stuff. mostly exactly as seen in the vnav.css styleheet
 * in the original skidoo layout.
 */
.vnav
{
	margin: 1em 0;
}
.vnav ul, .vnav ul li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: block;
}
.vnav ul
{
	border: solid 1px #fff;
	border-bottom-width: 0;
}
.vnav ul li
{
	border-bottom: solid 1px #fff;
}
.vnav ul li, .vnav ul li a
{
	margin: 0;
	display: block;
	padding: 0;
	line-height: normal;
}
.vnav ul li a
{
	display: block;
	padding: 2px 5px 3px 5px;
}
.vnav ul li a, .vnav ul li a:link, .vnav ul li a:visited, .vnav ul li a:active, .vnav ul li a:hover
{
	text-decoration: none;
	cursor: pointer;
}
.vnav h3
{
	margin-bottom: 0;
	padding-bottom: 0;
	font-size: 126%;
}
* html .vnav ul li a/* hide from IE5.0/Win & IE5/Mac */
{
	height: 0.01%;
}
* html .vnav ul
{
	position: relative;	/* IE needs this to fix a rendering problem */
}

/* horizontal navigation elements. create a DIV element with the class hnav
 * and stick one unordered list inside it to generate a horizontal menu.
 */
.hnav
{
	border-bottom: solid 1px #fff;
	text-align: center;
}
.hnav, .hnav ul li a
{
	/* need to middor veritcal padding on .hnav and child anchor elements
	 * because the anchors are _not_ block elements. since they are not
	 * block elements web browsers will not expand .hnav to contain them
	 * even with the extra padding. by applying the same padding to both
	 * the parent .hnav _looks_ like its containing the child anchor
	 * elements. 
	 */
	padding-top: 3px;
	padding-bottom: 4px;
}
.hnav ul, .hnav ul li
{
	display: inline;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.hnav ul li a
{
	margin: 0 -1px 0 0;
	padding-left: 10px;
	padding-right: 10px;	/* short-hand padding attribute would overwrite
				   top/bottom padding set in a previous rule */
	border-left: solid 1px #000;
	border-right: solid 1px #000;
	white-space: nowrap;
}
.hnav ul li a:link, .hnav ul li a:visited, .hnav ul li a:active, .hnav ul li a:hover
{
	text-decoration: none;
}
.hnav ul li span.divider
{
	display: none;
}
* html .hnav ul li, * html .hnav ul li a
{
	width: 1%; /* IE/Mac needs this */
	display: inline-block;	/* IE/Mac needs this */
	/* \*/
		width: auto;
		display: inline;
	/* reset above hack */
}
* html .hnav, * html .hnav ul a
{
	/* \*/ height: 0.01%; /* hasLayout hack to fix render bugs in IE/Win. 
				 IE/Mac will ignore this rule. */
}
* html .HNAV
{
	padding: 0;	/* IE5/Win will resize #hnav to fit the heights of its
			   inline children that have vertical padding. So this
			   incorrect case selector hack will be applied only by
			   IE 5.x/Win */
}

/* sitemap navigation elements. create a DIV element with the class smap
 * 
 */
.smap
{
	border-bottom: solid 1px #fff;
	text-align: center;
	padding-top: 2px;
	padding-bottom: 2px;
	font-size: 80%;
}
* html .smap
{
	/* \*/ height: 0.01%; /* hasLayout hack to fix render bugs in IE/Win. 
				 IE/Mac will ignore this rule. */
}
* html .smap
{
	padding: 0;	/* IE5/Win will resize #smap to fit the heights of its
			   inline children that have vertical padding. So this
			   incorrect case selector hack will be applied only by
			   IE 5.x/Win */
}

/* everything below this point is related to the page's "theme" and could be
 * placed in a separate stylesheet to allow for multiple color/font scemes on
 * the layout. you should probably leave a default theme within this stylesheet
 * just to be on the safe side.	
 */
#pageWrapper, #masthead, #innerColumnContainer, #footer, .vnav ul, .vnav ul li, .hnav, .hnav ul li a, .smap
{
	border-color: #423937;
}
html, body
{
	/* note that both html and body elements are in the selector.
	 * this is because we have margins applied to the body element
	 * and the HTML's background property will show through if
	 * it is ever set. _DO_NOT_ apply a font-size value to the
	 * html or body elements, set it in #pageWrapper.
	 */
	background-color: #eee;
	color: #000;
	font-family: arial, helvetica, sans-serif;
}
#pageWrapper
{
	font-size: 80%;	/* set your default font size here. */
}
#masthead
{
	background-color: #6e6362;
	color: #fff;
}
.hnav
{
	background-color: #8f8482;
	color: #fff;
}
#outerColumnContainer
{
	border-left-color: #dbcecc;	/* left column background color */
	border-right-color: #c2b6b4;	/* right column background color */
	background-color: #f6f5f0;		/* set the background color for the
					   middle column here */
}
.smap
{
	background-color: #dbcecc;
}
.vnav ul li a:link, .vnav ul li a:visited, .vnav ul li a:active
{
	text-decoration: none;
	background-color: #c2b6b4;
	color: #000;
}
#rightColumn .vnav ul li a:link, #rightColumn .vnav ul li a:visited, #rightColumn .vnav ul li a:active
{
	background-color: #dbcecc;
}
.vnav ul li a:hover, #rightColumn .vnav ul li a:hover
{
	text-decoration: none;
	background-color: #6e6362;
	color: #fff;
}
.hnav ul li a:link, .hnav ul li a:visited
{
	background-color: #ccbfbc;
	color: #000;
}
.hnav ul li a:hover
{
	background-color: #5c5251;
	color: #fff;
}
#rightColumn .inside
{
	/* if you apply a font size to just #rightColumn, then its width,
	 * which is specified in EMs, will also be affected. you don't want
	 * that. so apply font size changes to the .inside element which exists
	 * inside underneath all three columns
	 */
	font-size: 90%;
}
#rightColumn .inside .vnav
{
	font-size: 110%;
}
#footer
{
	background-color: #6e6362;
	color: #fff;
	text-align: center;
}

/****  Definition Lists - Table Style ********/

/* Requires
		<div style="width: 100%; overflow: hidden;">
			<dl class="tablestyle">
	at top of list and
			</dl>
			<div style="clear: both;"></div>
		</div>
	at bottom						*********/

dl.tablestyle {
	width: 100%;
	margin: 0 0 0 25px;}
.tablestyle dt {
	font-weight: bold;
	float: left;
	clear: left;
	width: 25%;
	margin: 0 0 1em 0;}
.tablestyle dd {
	float: left;
	width: 72%;
	margin: 0 0 1em 2%;}
* html .tablestyle dd {
	float: none;
	margin-left: 15%;}
* html .tablestyle dt {
	margin: 0;}

.score {
	font-weight:bold;
	width: 20px;
	text-align: center;}
.indent {margin-left: 25px;}
.header {
    font-weight:bold;
    font-size: 1.1em;
}
.left {text-align:center;}

.floatright
{
float: right;
margin: 0 0 10px 10px;
border: 1px solid #666;
padding: 2px;
}
.floatrightlink
{
	float: right;
	margin: 0 0 10px 10px;
	border: 1px solid #666;
	padding: 2px;
	width: 250px;
	height: 300px;
}
.floatrt
{
	float: right;	
}

.floatleft
{
float: left;
margin: 0 10px 10px 0px;
border: 1px solid #666;
padding: 2px;
}

/* Photos layout */

div.pic, div.zenpic, div.menupic 
{
	float: left; 
	height: 180px; 
	width: 140px;
	margin: 5px 5px; 
	padding: 5px;
	background: white;
	border: 1px solid; 
	border-color: #AAA #444 #444 #AAA;
}
div.menupic { height: 155px; }
div.pic img, div.zenpic img, div.menupic img 
{
	border: 1px solid;
	border-color: #444 #AAA #AAA #444;
	margin: 4px 4px 0 4px;
}
div.pic ul, div.zenpic ul, div.menupic ul
{
	margin: 0.25em 0 0; 
	padding: 0;
	font: bold 10px Arial, Verdana, sans-serif;
}
li.vidtitle, li.vidlen {display: block; list-style: none; text-align: center;}
li.vidlen 
{
	font-weight:normal;
}
.viddesc
{
	font: normal 11px Arial, Verdana, sans-serif;
	padding: 5px;
	margin: 0px;
}

.middlecolumn ul
{
	margin-left: 0.5em;	
	padding-left: 1em;
}

/*  Video windows    */
.trudesc
{
	font: normal 11px Arial, Verdana, sans-serif;
	padding: 5px;
	margin: 0px;
	width: 220px;
}
.truviddesc
{
	height: 300px;	
}
.vtitle
{
	font-weight: bold;
}

.profileEmbedVideo
{
	width:425px;
}

.Day
{
	font-weight: bold;
	width: 50px;
}

.Time
{
	width: 100px;
}

dl.dltable
{
width: 34.1em;
margin: 0.5em 0;
padding: 0;
font-family: georgia, times, serif;
}

.dltable dt
{
width: 7em;
float: left;
margin: 0 0 0 0;
padding: 0 0 0 2em;
font-weight: bold;
}

.dltable dd
{
float: left;
width: 25em;
margin: 0 0 0 0;
padding: 0;
}

dl.dltable2
{
width: 38.1em;
margin: 0.5em 0;
padding: 0;
font-family: georgia, times, serif;
}

.dltable2 dt
{
width: 11em;
float: left;
margin: 0 0 0 0;
padding: 0 0 0 1em;

}

.dltable2 dd
{
float: left;
width: 25em;
margin: 0 0 0 0;
padding: 0;
}


/*  Delete the following statements to switch from two column to three column  */
#rightColumn { display: none; }
#SOWrap { margin: 0; }
#innerColumnContainer, #outerColumnContainer { border-right-width: 0; }

/*  Delete the following statements to switch from one column to two column  
#leftColumn { display: none; }
#SOWrap { margin: 0; }
#innerColumnContainer, #outerColumnContainer { border-left-width: 0; } */


.bold { font-weight: bold; }
.italics {font-style:italic; }
.red { font-weight: bold; color: Red; }
.green { font-weight: bold; color: Green; }
.living { font-weight: bold; color: Green; }
.born { font-weight: bold; color: Navy; }

.myButton {
	-moz-box-shadow: 0px 10px 14px -7px #276873;
	-webkit-box-shadow: 0px 10px 14px -7px #276873;
	box-shadow: 0px 10px 14px -7px #276873;
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #599bb3), color-stop(1, #408c99));
	background:-moz-linear-gradient(top, #599bb3 5%, #408c99 100%);
	background:-webkit-linear-gradient(top, #599bb3 5%, #408c99 100%);
	background:-o-linear-gradient(top, #599bb3 5%, #408c99 100%);
	background:-ms-linear-gradient(top, #599bb3 5%, #408c99 100%);
	background:linear-gradient(to bottom, #599bb3 5%, #408c99 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#599bb3', endColorstr='#408c99',GradientType=0);
	background-color:#599bb3;
	-moz-border-radius:8px;
	-webkit-border-radius:8px;
	border-radius:8px;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:20px;
	font-weight:bold;
	padding:13px 32px;
	text-decoration:none;
	text-shadow:0px 1px 0px #3d768a;
}
.myButton:hover {
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #408c99), color-stop(1, #599bb3));
	background:-moz-linear-gradient(top, #408c99 5%, #599bb3 100%);
	background:-webkit-linear-gradient(top, #408c99 5%, #599bb3 100%);
	background:-o-linear-gradient(top, #408c99 5%, #599bb3 100%);
	background:-ms-linear-gradient(top, #408c99 5%, #599bb3 100%);
	background:linear-gradient(to bottom, #408c99 5%, #599bb3 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#408c99', endColorstr='#599bb3',GradientType=0);
	background-color:#408c99;
}
.myButton:active {
	position:relative;
	top:1px;
}



.smallButton {
	-moz-box-shadow: 0px 8px 11px -5px #276873;
	-webkit-box-shadow: 0px 8px 11px -5px #276873;
	box-shadow: 0px 8px 11px -5px #276873;
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #599bb3), color-stop(1, #408c99));
	background:-moz-linear-gradient(top, #599bb3 5%, #408c99 100%);
	background:-webkit-linear-gradient(top, #599bb3 5%, #408c99 100%);
	background:-o-linear-gradient(top, #599bb3 5%, #408c99 100%);
	background:-ms-linear-gradient(top, #599bb3 5%, #408c99 100%);
	background:linear-gradient(to bottom, #599bb3 5%, #408c99 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#599bb3', endColorstr='#408c99',GradientType=0);
	background-color:#599bb3;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:14px;
	font-weight:bold;
	padding:10px 26px;
	text-decoration:none;
	text-shadow:0px 1px 0px #3d768a;
}
.smallButton:hover {
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #408c99), color-stop(1, #599bb3));
	background:-moz-linear-gradient(top, #408c99 5%, #599bb3 100%);
	background:-webkit-linear-gradient(top, #408c99 5%, #599bb3 100%);
	background:-o-linear-gradient(top, #408c99 5%, #599bb3 100%);
	background:-ms-linear-gradient(top, #408c99 5%, #599bb3 100%);
	background:linear-gradient(to bottom, #408c99 5%, #599bb3 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#408c99', endColorstr='#599bb3',GradientType=0);
	background-color:#408c99;
}
.smallButton:active {
	position:relative;
	top:1px;
}

table.tDirectLine {
     margin: 1em auto;
    border-collapse: collapse;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    }
.tDirectLine th, .tDirectLine td {
    padding: 8px 8px;
  }
.tDirectLine thead th {
    text-align: center;
    font-size: 15px;
  }    
.tDirectLine tbody tr, .tDirectLine thead tr {
    border-bottom: 1px solid; }

/* Obsolete - for compatibility */    
.linecol
{
    float:left;
    width: 27%;
    height: 90px;
    background-color:#e0dcdc;
    margin: 5px;
    padding: 0px 5px 5px 5px;
}

.linecoltall 
{
    float:left;
    width: 27%;
    height: 120px;
    background-color:#e0dcdc;
    margin: 5px;
    padding: 0px 5px 5px 5px;
}

/* Male */      
.linecolm
{
    float:left;
    width: 27%;
    height: 90px;
    background-color:#ccccff;
    margin: 5px;
    padding: 0px 5px 5px 5px;
}

.linecolmtall 
{
    float:left;
    width: 27%;
    height: 120px;
    background-color:#ccccff;
    margin: 5px;
    padding: 0px 5px 5px 5px;
}

/* Marriage */      
.linecolmar 
{
    float:left;
    width: 27%;
    height: 90px;
    background-color:#e0dcdc;
    margin: 5px;
    padding: 0px 5px 5px 5px;
}

.linecolmartall 
{
    float:left;
    width: 27%;
    height: 120px;
    background-color:#e0dcdc;
    margin: 5px;
    padding: 0px 5px 5px 5px;
}

/* Female */  
.linecolf 
{
    float:left;
    width: 27%;
    height: 90px;
    background-color:#ffccbb;
    margin: 5px;
    padding: 0px 5px 5px 5px;
}

.linecolftall 
{
    float:left;
    width: 27%;
    height: 120px;
    background-color:#ffccbb;
    margin: 5px;
    padding: 0px 5px 5px 5px;
}

/* Present Family Line of Descent
 * 
 */
 
.descent
{
    float:left;
    width: 70%;
    background-color: #F1F0F2;
    margin: 0 5px 0 0;
    padding: 2px;
} 

.couple
    {margin-bottom: 5px;}

.direct
{
   float: left;
   width: 38%; 
   border: 1px black;
   margin: 2px;
   padding: 1px;
   background-color: White;
}

.ancestor
{
    font-weight:bold;
}

.marriage
{
   float: left;
   width: 20%; 
   border: 1px black;
    margin: 2px;
   padding: 1px;
   background-color: White;
}

.spouse
{
   float: left;
   width: 38%; 
   border: 1px black;
    margin: 1px;
   padding: 1px;
   background-color: White;
}

.infobox
{ float:right;
  width:270px;
  margin:5px;
  padding:5px;
  background-color: #e1e1e1;
}
/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
    http://www.jacklmoore.com/colorbox/guide/
*/
#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden; -webkit-transform: translate3d(0,0,0);}
#cboxWrapper {max-width:none;}
#cboxOverlay{position:fixed; width:100%; height:100%;}
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
#cboxContent{position:relative;}
#cboxLoadedContent{overflow:auto; -webkit-overflow-scrolling: touch;}
#cboxTitle{margin:0;}
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
.cboxPhoto{float:left; margin:auto; border:0; display:block; max-width:none; -ms-interpolation-mode:bicubic;}
.cboxIframe{width:100%; height:100%; display:block; border:0; padding:0; margin:0;}
#colorbox, #cboxContent, #cboxLoadedContent{box-sizing:content-box; -moz-box-sizing:content-box; -webkit-box-sizing:content-box;}

/* 
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay{background:url(http://www.irelanddavis.com/images/cb/overlay.png) repeat 0 0;}
#colorbox{outline:0;}
    #cboxTopLeft{width:21px; height:21px; background:url(http://www.irelanddavis.com/images/cb/controls.png) no-repeat -101px 0;}
    #cboxTopRight{width:21px; height:21px; background:url(http://www.irelanddavis.com/images/cb/controls.png) no-repeat -130px 0;}
    #cboxBottomLeft{width:21px; height:21px; background:url(http://www.irelanddavis.com/images/cb/controls.png) no-repeat -101px -29px;}
    #cboxBottomRight{width:21px; height:21px; background:url(http://www.irelanddavis.com/images/cb/controls.png) no-repeat -130px -29px;}
    #cboxMiddleLeft{width:21px; background:url(http://www.irelanddavis.com/images/cb/controls.png) left top repeat-y;}
    #cboxMiddleRight{width:21px; background:url(http://www.irelanddavis.com/images/cb/controls.png) right top repeat-y;}
    #cboxTopCenter{height:21px; background:url(http://www.irelanddavis.com/images/cb/border.png) 0 0 repeat-x;}
    #cboxBottomCenter{height:21px; background:url(http://www.irelanddavis.com/images/cb/border.png) 0 -29px repeat-x;}
    #cboxContent{background:#fff; overflow:hidden;}
        .cboxIframe{background:#fff;}
        #cboxError{padding:50px; border:1px solid #ccc;}
        #cboxLoadedContent{margin-bottom:28px;}
        #cboxTitle{position:absolute; bottom:4px; left:0; text-align:center; width:100%; color:#949494;}
        #cboxCurrent{position:absolute; bottom:4px; left:58px; color:#949494;}
        #cboxLoadingOverlay{background:url(http://www.irelanddavis.com/images/cb/loading_background.png) no-repeat center center;}
        #cboxLoadingGraphic{background:url(http://www.irelanddavis.com/images/cb/loading.gif) no-repeat center center;}

        /* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
        #cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {border:0; padding:0; margin:0; overflow:visible; width:auto; background:none; }
        
        /* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
        #cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {outline:0;}

        #cboxSlideshow{position:absolute; bottom:4px; right:30px; color:#0092ef;}
        #cboxPrevious{position:absolute; bottom:0; left:0; background:url(http://www.irelanddavis.com/images/cb/controls.png) no-repeat -75px 0; width:25px; height:25px; text-indent:-9999px;}
        #cboxPrevious:hover{background-position:-75px -25px;}
        #cboxNext{position:absolute; bottom:0; left:27px; background:url(http://www.irelanddavis.com/images/cb/controls.png) no-repeat -50px 0; width:25px; height:25px; text-indent:-9999px;}
        #cboxNext:hover{background-position:-50px -25px;}
        #cboxClose{position:absolute; bottom:0; right:0; background:url(http://www.irelanddavis.com/images/cb/controls.png) no-repeat -25px 0; width:25px; height:25px; text-indent:-9999px;}
        #cboxClose:hover{background-position:-25px -25px;}

/*
  The following fixes a problem where IE7 and IE8 replace a PNG's alpha transparency with a black fill
  when an alpha filter (opacity change) is set on the element or ancestor element.  This style is not applied to or needed in IE9.
  See: http://jacklmoore.com/notes/ie-transparency-problems/
*/
.cboxIE #cboxTopLeft,
.cboxIE #cboxTopCenter,
.cboxIE #cboxTopRight,
.cboxIE #cboxBottomLeft,
.cboxIE #cboxBottomCenter,
.cboxIE #cboxBottomRight,
.cboxIE #cboxMiddleLeft,
.cboxIE #cboxMiddleRight {
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
}