/* The main calendar widget.  DIV containing a table. */

div.calendar { position: relative; }

.calendar, .calendar table {
  border: 1px solid #206A9B;
  font-size: 11px;
  color: #000;
  cursor: default;
  background: #F1F8FC;
  font-family: tahoma,verdana,sans-serif;
}

/* Header part -- contains navigation buttons and day names. */

.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
  text-align: center;    /* They are the navigation buttons */
  padding: 2px;          /* Make the buttons seem like they're pressing */
}

.calendar .nav {
  background: #007ED1; /* url(menuarrow2.gif) no-repeat 100% 100%; */
}

.calendar thead .title { /* This holds the current "month, year" */
  font-weight: bold;      /* Pressing it will take you to the current date */
  text-align: center;
  background: #202070;
  color: #fff;
  padding: 2px;
}

.calendar thead tr { /* Row <TR> containing navigation buttons */
  background: #007ED1;
  color: #fff;
}

.calendar thead .daynames { /* Row <TR> containing the day names */
  background: #C7E1F3;
}

.calendar thead .name { /* Cells <TD> containing the day names */
  border-bottom: 1px solid #206A9B;
  padding: 2px;
  text-align: center;
  color: #000;
}

.calendar thead .weekend { /* How a weekend day name shows in header */
  color: #a66;
}

.calendar thead .hilite { /* How do the buttons in header appear when hover */
  background-color: #34ABFA;
  color: #000;
  border: 1px solid #016DC5;
  padding: 1px;
}

.calendar thead .active { /* Active (pressed) buttons in header */
  background-color: #006AA9;
  border: 1px solid #008AFF;
  padding: 2px 0px 0px 2px;
}

/* The body part -- contains all the days in month. */

.calendar tbody .day { /* Cells <TD> containing month days dates */
  width: 2em;
  color: #456;
  text-align: right;
  padding: 2px 4px 2px 2px;
}
.calendar tbody .day.othermonth {
  font-size: 80%;
  color: #bbb;
}
.calendar tbody .day.othermonth.oweekend {
  color: #fbb;
}

.calendar table .wn {
  padding: 2px 3px 2px 2px;
  border-right: 1px solid #000;
  background: #C7E1F3;
}

.calendar tbody .rowhilite td {
  background: #def;
}

.calendar tbody .rowhilite td.wn {
  background: #F1F8FC;
}

.calendar tbody td.hilite { /* Hovered cells <TD> */
  background: #def;
  padding: 1px 3px 1px 1px;
  border: 1px solid #8FC4E8;
}

.calendar tbody td.active { /* Active (pressed) cells <TD> */
  background: #cde;
  padding: 2px 2px 0px 2px;
}

.calendar tbody td.selected { /* Cell showing today date */
  font-weight: bold;
  border: 1px solid #000;
  padding: 1px 3px 1px 1px;
  background: #fff;
  color: #000;
}

.calendar tbody td.weekend { /* Cells showing weekend days */
  color: #a66;
}

.calendar tbody td.today { /* Cell showing selected date */
  font-weight: bold;
  color: #D50000;
}

.calendar tbody .disabled { color: #999; }

.calendar tbody .emptycell { /* Empty cells (the best is to hide them) */
  visibility: hidden;
}

.calendar tbody .emptyrow { /* Empty row (some months need less than 6 rows) */
  display: none;
}

/* The footer part -- status bar and "Close" button */

.calendar tfoot .footrow { /* The <TR> in footer (only one right now) */
  text-align: center;
  background: #206A9B;
  color: #fff;
}

.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
  background: #202070;
  color: #fff;
  border-top: 1px solid #206A9B;
  padding: 1px;
}

.calendar tfoot .hilite { /* Hover style for buttons in footer */
  background: #B8DAF0;
  border: 1px solid #178AEB;
  color: #000;
  padding: 1px;
}

.calendar tfoot .active { /* Active (pressed) style for buttons in footer */
  background: #006AA9;
  padding: 2px 0px 0px 2px;
}

/* Combo boxes (menus that display months/years for direct selection) */

.calendar .combo {
  position: absolute;
  display: none;
  top: 0px;
  left: 0px;
  width: 4em;
  cursor: default;
  border: 1px solid #655;
  background: #def;
  color: #000;
  font-size: 90%;
  z-index: 100;
}

.calendar .combo .label,
.calendar .combo .label-IEfix {
  text-align: center;
  padding: 1px;
}

.calendar .combo .label-IEfix {
  width: 4em;
}

.calendar .combo .hilite {
  background: #34ABFA;
  border-top: 1px solid #46a;
  border-bottom: 1px solid #46a;
  font-weight: bold;
}

.calendar .combo .active {
  border-top: 1px solid #46a;
  border-bottom: 1px solid #46a;
  background: #F1F8FC;
  font-weight: bold;
}

.calendar td.time {
  border-top: 1px solid #000;
  padding: 1px 0px;
  text-align: center;
  background-color: #E3F0F9;
}

.calendar td.time .hour,
.calendar td.time .minute,
.calendar td.time .ampm {
  padding: 0px 3px 0px 4px;
  border: 1px solid #889;
  font-weight: bold;
  background-color: #F1F8FC;
}

.calendar td.time .ampm {
  text-align: center;
}

.calendar td.time .colon {
  padding: 0px 2px 0px 3px;
  font-weight: bold;
}

.calendar td.time span.hilite {
  border-color: #000;
  background-color: #267DB7;
  color: #fff;
}

.calendar td.time span.active {
  border-color: red;
  background-color: #000;
  color: #A5FF00;
}

html { font-size: 76%; }
body {
	font: 110%/1.5 Verdana, Geneva, sans-serif;
	margin: 0;
	padding: 0 0 20px;
	background: #fefefe url(../images/main.png) repeat-x;
}
body.mini { background-position: 0 -9px; }
img { border: none; }
img, select, input, textarea, object, embed { vertical-align: bottom; }
.clear { clear: both; }

#header {
	width: 960px;
	margin: auto;
	position: relative;
	padding-top: 9px;
}

#logo { position: absolute; right: 12px; top: 29px; }
#visit {
	position: absolute;
	width: 320px;
	height: 24px;
	background: #dadada;
	color: #949393;
	font: 11px/14px Arial, Helvetica, sans-serif;
	line-height: 24px;
	padding: 10px 0;
	text-align: center;
	border-bottom-left-radius: 3px;
	border-bootom-right-radius: 3px;
	-webkit-border-bottom-left-radius: 3px;
	-webkit-border-bottom-right-radius: 3px;
	-moz-border-radius-bottomleft: 3px;
	-moz-border-radius-bottomright: 3px;
}
#visit a { color: #5086c2; text-decoration: none; }
#visit a:hover { text-decoration: underline; }

#search {
	position: absolute;
	left: 321px;
	margin: 0;
	padding: 0;
	background: #ebebeb;
	padding: 10px;
	line-height: 24px;
	border-radius: 0 0 3px 3px;
	-webkit-border-bottom-left-radius: 3px;
	-webkit-border-bottom-right-radius: 3px;
	-moz-border-radius-bottomleft: 3px;
	-moz-border-radius-bottomright: 3px;
}
.ahs #search { left: 0; }

#quicklinks { margin-top: 66px; line-height: 22px; color: #adadad; font-size: 12px; }
#quicklinks a { color: #adadad; text-decoration: none; }
#quicklinks a:hover { text-decoration: underline; }

#nav {
	margin: 22px 0 0 0;
	padding: 0 11px 4px 1px;
	background: #2c5898 url(../images/nav.png) no-repeat;
}
#nav ul {
	margin: 0;
	padding: 0;
	display: table;
	width: 948px;
}
#nav li {
	display: table-cell;
	padding-left: 10px;
}
#nav a {
	color: white;
	display: block;
	width: 100%;
	line-height: 19px;
	text-align: center;
	text-decoration: none;
}
#nav a:hover { text-decoration: underline; }
#nav span {
	display: block;
	padding: 13px 5px 9px;
}

#nav .selected a { background: #fefefe url(../images/nav-tab-left.png) left bottom no-repeat; color: #2c5898; }
#nav .selected span { background: url(../images/nav-tab-right.png) right bottom no-repeat; }

.subpage #nav { 
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	-webkit-border-bottom-left-radius: 3px;
	-webkit-border-bottom-right-radius: 3px;
	-moz-border-radius-bottomleft: 3px;
	-moz-border-radius-bottomright: 3px;
}

.banner {
	height: 200px;
	color: white;
	line-height: 1.3;
	text-shadow: #295192 1px 1px 1px;
}
.banner-1 { background: #335b9b url(../images/banner1.jpg); }
.banner-2 { background: #335b9b url(../images/banner2.jpg); }
.banner-3 { background: #335b9b url(../images/banner3.jpg); }
.banner-4 { background: #335b9b url(../images/banner4.jpg); }
.banner .what {
	font-size: 18px;
	padding: 25px 347px 0 35px;
}
.banner .where {
	font-size: 14px;
	color: #c6e6ff;
	padding: 0 347px 0 35px;
}
.banner-uk, .banner-ahs {
	background: #dadada;
	height: auto;
	padding-bottom: 5px;
	border-radius: 0 0 3px 3px;
	-webkit-border-bottom-left-radius: 3px;
	-webkit-border-bottom-right-radius: 3px;
	-moz-border-radius: 0 0 3px 3px;
}
.banner-uk .what,  .banner-ahs .what  { color: #777; padding-right: 35px; text-shadow: none; }
.banner-uk .where, .banner-ahs .where { color: #777; padding-right: 35px; text-shadow: none; }

#main { width: 960px; margin: auto; }
#main:after { content: ""; display: block; clear: both; padding-bottom: 1px; }
.front-page #main { padding-top: 1px; background: url(../images/banner-continuation.jpg) left 1px no-repeat; }

.front-page #content { float: left; width: 566px; padding: 24px 17px 0; }
.subpage #content { float: right; width: 680px; padding: 24px 0 0; }

.uk-front-page #content { padding: 20px 197px 0 197px; background: none; float: none; width: auto; }
.uk-front-page #main { background: none; }

.ahs-front-page #content { padding: 20px 0 0 0; width: auto; }
.ahs-front-page #main { background: none; }

.ahs-subpage #content { float: none; width: auto; }

.breadcrumbs { font-size: 80%; margin-bottom: 2em; }

#subnav { 
	float: left;
	width: 249px;
	padding: 15px 0 25px;
	margin-top: 9px;
	background: #e7e7e7 url(../images/subnav.png) left top no-repeat;
	border-bottom-left-radius: 3px;
	border-bootom-right-radius: 3px;
	-webkit-border-bottom-left-radius: 3px;
	-webkit-border-bottom-right-radius: 3px;
	-moz-border-radius-bottomleft: 3px;
	-moz-border-radius-bottomright: 3px;
}
#subnav h2 { padding: 0 8px 0 18px; }
#subnav ul { margin: 0; padding: 0; list-style: none; }
#subnav li {
	margin: 0;
}
#subnav a {
	display: block;
	width: 209px;
	padding: 6px 0 6px 40px;
	border-top: 1px white solid;
	border-bottom: 1px #cfcfcf solid;
	background: url(../images/blue-bullet.png) 30px 12px no-repeat;
	color: #497eba;
	text-decoration: none;
	line-height: 1.3;
}
#subnav .first a { border-top: none; }
#subnav .last a { border-bottom: none; }
#subnav a:hover { text-decoration: underline; }

#jobs {
	float: right;
	width: 297px;
	font-size: 11px;
	margin-top: 9px;
	background: #e7e7e7 url(../images/opportunities-bg.png) left top no-repeat;
	padding: 19px;
	height: 200px;
	border-bottom-left-radius: 3px;
	border-bootom-right-radius: 3px;
	-webkit-border-bottom-left-radius: 3px;
	-webkit-border-bottom-right-radius: 3px;
	-moz-border-radius-bottomleft: 3px;
	-moz-border-radius-bottomright: 3px;
}
/*
.job { padding-top: 1px; height: 108px; overflow: hidden; }
.job .job-item { padding-top: 2px; }
.box-wrapper { color: inherit; text-decoration: inherit; display: block; }
*/

#news {
	float: right;
	clear: right;
	font-size: 11px;
	width: 297px;
	margin-top: 8px;
	background: #d0d0d0 url(../images/news-bg.png) left top no-repeat;
	padding: 19px 19px 0;
	border-bottom-left-radius: 3px;
	border-bootom-right-radius: 3px;
	-webkit-border-bottom-left-radius: 3px;
	-webkit-border-bottom-right-radius: 3px;
	-moz-border-radius-bottomleft: 3px;
	-moz-border-radius-bottomright: 3px;
}

#jobs h2 a, #news h2 a { color: #264b8a; text-decoration: none; }
#jobs h2 a:hover, #news h2 a:hover { text-decoration: underline; }

#media {
	float: right;
	clear: right;
	width: 311px;
	margin-top: 8px;
	background: #d0d0d0 url(../images/media-bg.png) left top no-repeat;
	padding: 19px 12px 0;
	height: 291px;
	border-bottom-left-radius: 3px;
	border-bootom-right-radius: 3px;
	-webkit-border-bottom-left-radius: 3px;
	-webkit-border-bottom-right-radius: 3px;
	-moz-border-radius-bottomleft: 3px;
	-moz-border-radius-bottomright: 3px;
}
#media h2 { color: white; padding: 0 7px; }

.more {
	background: #29518f url(../images/more-bg.png) no-repeat;
	text-align: center;
	line-height: 29px;
	display: inline-block;
	width: 126px;
	color: white;
	text-decoration: none;
}
.more:visited { color: white; }
.more:hover { text-decoration: underline; }
.more-other {
	background: #29518f url(../images/other-bg.png) no-repeat;
	text-align: center;
	line-height: 29px;
	display: inline-block;
	width: 140px;
	color: white;
	text-decoration: none;
	margin-left: 10px;
}
.more-other:visited { color: white; }
.more-other:hover { text-decoration: underline; }


#footer { 
	width: 665px;
	margin: 35px auto;
	background: #f0f0f0 url(../images/footer-bottom.png) left bottom no-repeat;
	padding: 86px 95px 18px 200px;
	font: 11px/16px Arial, Helvetica, sans-serif;
	color: #a8a8a8;
	text-align: right;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	-webkit-border-top-left-radius: 3px;
	-webkit-border-top-right-radius: 3px;
	-moz-border-radius-topleft: 3px;
	-moz-border-radius-topright: 3px;
}
#footer a { color: #a8a8a8; text-decoration: none; }
#footer a:hover { text-decoration: underline; }
#aspenfoundation {
	float: left;
	margin: -48px 0 0 -173px;
}
#rahc {
	float: left;
	margin: -28px 0 0 30px;
}
#bsi {
	float: right;
	margin: -57px -66px 0 0;
}

h1, h2, h3, h4, h5, h6 { font-family: Arial, Helvetica, sans-serif; font-weight: normal; line-height: 1.3; margin: 0 0 0.5em; }
h1 { font-size: 1.8em; }
h2 { font-size: 1.7em; color: #264b8a; }
h3 { font-size: 1.4em; color: #487db9; }
h4 { font-size: 1.3em; }
h5 { font-size: 1.2em; }
h6 { font-size: 1.1em; }

p { margin: 0 0 15px; }

.hr { background: url(../images/hline.png) left 1px repeat-x; clear: both; }
.front-page .hr { margin-left: -8px; margin-right: -8px; }
.hr hr { visibility: hidden; height: 8px; margin: 1.5em 0; }

.aside-img { float: right; border: 3px #e5e5e5 solid; }

.aoo-hover {
	background: url(../images/aoo-pointer.png) 19px 24px no-repeat;
	padding: 1px 1px 4px;
	position: absolute;
	visibility: hidden;
}
.aoo-1 { background: #4696be; }
.aoo-2 { margin: -1px 2px -1px -1px; background: url(../images/aoo-left.png) left top no-repeat; }
.aoo-3 { background: url(../images/aoo-right.png) right top no-repeat; color: white; line-height: 18px; margin-right: -3px; padding: 3px 8px; }

.data { border-collapse: collapse; width: 100%; margin: 0 0 2em; font-size: 90%; }
.data th, .data td { text-align: left; vertical-align: top; padding: 3px 5px; font-weight: normal; }
.data th { background-color: #075b9b; color: white; }

.job-header { text-align: center; font-weight: bold; padding: 5px 0; background-color: #075b9b; color: white; font-size: 120%; }
.job-unavailable { background: url(/images/job-unavailable-bg.png) 50% 50% no-repeat; min-height: 348px; color: #888; }

.news-summary { white-space: normal; }

.aspen-form { border: 1px #bcc6de solid; padding: 4px; }
.aspen-form th { font-weight: normal; }
.aspen-form th, .aspen-form td { padding: 4px; vertical-align: top; text-align: left; }
.aspen-form h3 { border-bottom: 1px #e2e3e6 dashed; }

.error { color: red; }

a { color: #264b8a; }
a:visited { color: #487db9; }

.has-script .js_hidden { visibility: hidden; }


.links a { margin-right: 100px; }


/* Templates */

/* Common template parts*/
.container { padding: 10px 0; }
.container .img { text-align: center; }
div.odd { float: left; clear: left; margin: 10px 5px 10px 0; width: 335px; }
div.even { float: right; clear: right; margin: 10px 0 10px 5px; width: 335px; }
.smallflowimg { float: left; margin: 5px 0 5px 10px; text-align: center; }
.smallflowimg-first { margin-left: 0; }

#content .i4 a { border: none; margin: none; text-decoration: none; }
#content .i4 a:hover { border: none; margin: none; text-decoration: none; }

/*staggered template*/
.stagger div.odd, .stagger div.even { display: table; }
.stagger span.vam { display: table-cell; vertical-align: middle; }
.stagger div.odd  { float: right; clear: right; width: auto; height: 137px; margin: 20px 0 15px 20px; }
.stagger div.even { float: left;  clear: left;  width: auto; height: 137px; margin: 20px 15px 20px 0; }
.stagger .spacer1 { float: left;  clear: left;  height: 212px; padding-left: 1px; }
.stagger .spacer2 { float: right; clear: right; height: 235px; padding-left: 1px; }
.stagger .spacer3 { float: left;  clear: left;  height: 244px; padding-left: 1px; }

/*grid of eight*/
.eight-tail .odd, .eight-tail .even { text-align: center; }

/*image column templates*/
.img-col-left  { width: 450px; padding-left:  230px; }
.img-col-right { width: 450px; padding-right: 230px; }
.img-col-left  .img { float: left; clear: left;   width: 220px; margin: 5px 0 5px -230px; }
.img-col-right .img { float: right; clear: right; width: 220px; margin: 5px -230px 5px 0; }


/*"article" template*/
.maintext { float: left; }
.article .aside { float: right; clear: right; margin: 10px 0; text-align: center; }
.article .maintext, .article .aside { width: 335px; }
.wideimg { margin: 10px 0; text-align: center; }


/*various templates that include a row of images*/
.lr-gallery .spacer { float: right; padding-left: 1px; }
.rl-gallery .spacer { float: left;  padding-left: 1px; }
.lr-gallery .spacer, .rl-gallery .spacer { height: 168px; }
.lr-gallery div.odd,  .rl-gallery div.even, .gallery-rl div.even { float: left;  clear: left;  margin: 15px 10px 10px 0; width: auto; }
.lr-gallery div.even, .rl-gallery div.odd,  .gallery-rl div.odd  { float: right; clear: right; margin: 15px 0 10px 10px; width: auto; }

.gallery-rl .spacer1 { float: right; padding-left: 1px; height: 128px; }
.gallery-rl .spacer2 { float: left;  padding-left: 1px; height: 266px; }

/*sidebar template*/
.cols {
	border: 1px #a85c4a solid;
	padding: 9px 120px 9px 15px;
	line-height: 16px;
	background: url(/images/frontpage-bg-tr.png) right top no-repeat;
}
.cols h1 { color: #863d21; font: 22px/24px Arial, Helvetica, FreeSans, sans-serif; }
.cols p { margin: 1em 0; }
.leftcol  { float: left;  width: 490px; margin-left: -6px; }
.rightcol { float: right; width: 182px; margin-right: -111px; }

.caption { display: block; text-align: center; font-style: italic; }


/* Gallery */
.galcontainer {
	margin: 25px 4px 4px;
	border: 1px solid #ccc;
	padding: 12px;
}

.gal {
	width: 600px;
	height: 450px;
	z-index: 5;
	border: 1px solid #000;
}

.jdExtCarousel {
	width: 600px;
	margin-top: 10px;
}

.gal img.thumbnail { display: none; }

.gal h2 { font-size: 12px; line-height: 1.3; font-weight: bold; margin: 4px 4px 0; }
.gal p  { font-size: 12px; text-indent: 8px; margin: 0; }

.jdGallery
{
	overflow: hidden;
	position: relative;
}

.jdGallery img
{
	border: 0;
	margin: 0;
}

.jdGallery .slideElement
{
	width: 100%;
	height: 100%;
	background-color: #000;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url(../images/loading-bar-black.gif);
}

.jdGallery .loadingElement
{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-color: #000;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url(../images/loading-bar-black.gif);
}

.jdGallery .slideInfoZone
{
	position: absolute;
	z-index: 10;
	width: 100%;
	margin: 0px;
	left: 0;
	bottom: 0;
	height: 40px;
	background: #333;
	color: #fff;
	text-indent: 0;
	overflow: hidden;
}

* html .jdGallery .slideInfoZone
{
	bottom: -1px;
}

.jdGallery div.carouselContainer
{
	position: absolute;
	height: 135px;
	width: 100%;
	z-index: 10;
	margin: 0px;
	left: 0;
	top: 0;
}

.jdGallery a.carouselBtn
{
	position: absolute;
	bottom: 0;
	right: 30px;
	height: 20px;
	/*width: 100px; background: url('../img/carousel_btn.gif') no-repeat;*/
	text-align: center;
	padding: 0 10px;
	font-size: 13px;
	background: #333;
	color: #fff;
	cursor: pointer;
}

.jdGallery .carousel
{
	position: absolute;
	width: 100%;
	margin: 0px;
	left: 0;
	top: 0;
	height: 115px;
	background: #333;
	color: #fff;
	text-indent: 0;
	overflow: hidden;
}

.jdExtCarousel
{
	overflow: hidden;
	position: relative;
}

.jdGallery .carousel .carouselWrapper, .jdExtCarousel .carouselWrapper
{
	/*position: absolute;*/
	width: 100%;
	height: 78px;
	top: 10px;
	left: 0;
	overflow: hidden;
}

.jdGallery .carousel .carouselInner, .jdExtCarousel .carouselInner
{
	position: relative;
}

.jdGallery .carousel .carouselInner .thumbnail, .jdExtCarousel .carouselInner .thumbnail
{
	cursor: pointer;
	background: #000;
	background-position: center center;
	float: left;
	border: solid 1px #fff;
}

.jdGallery .wall .thumbnail, .jdExtCarousel .wall .thumbnail
{
	margin-bottom: 10px;
}

.jdGallery .carousel .label, .jdExtCarousel .label
{
	font-size: 13px;
	position: absolute;
	bottom: 5px;
	left: 10px;
	padding: 0;
	margin: 0;
}

.jdGallery .carousel .wallButton, .jdExtCarousel .wallButton
{
	font-size: 10px;
	position: absolute;
	bottom: 5px;
	right: 10px;
	padding: 1px 2px;
	margin: 0;
	background: #222;
	border: 1px solid #888;
	cursor: pointer;
}

.jdGallery .carousel .label .number, .jdExtCarousel .label .number
{
	color: #b5b5b5;
}

.jdGallery a
{
	font-size: 100%;
	text-decoration: none;
	color: inherit;
}

.jdGallery a.right, .jdGallery a.left
{
	position: absolute;
	height: 99%;
	width: 25%;
	cursor: pointer;
	z-index:10;
	filter:alpha(opacity=20);
	-moz-opacity:0.2;
	-khtml-opacity: 0.2;
	opacity: 0.2;
}

* html .jdGallery a.right, * html .jdGallery a.left
{
	filter:alpha(opacity=50);
}

.jdGallery a.right:hover, .jdGallery a.left:hover
{
	filter:alpha(opacity=80);
	-moz-opacity:0.8;
	-khtml-opacity: 0.8;
	opacity: 0.8;
}

.jdGallery a.left
{
	left: 0;
	top: 0;
	background: url(../images/fleche1.gif) no-repeat center left;
}

* html .jdGallery a.left { background: url(../images/fleche1.gif) no-repeat center left; }

.jdGallery a.right
{
	right: 0;
	top: 0;
	background: url(../images/fleche2.gif) no-repeat center right;
}

* html .jdGallery a.right { background: url(../images/fleche2.gif) no-repeat center right; }

.jdGallery a.open
{
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.withArrows a.open
{
	position: absolute;
	top: 0;
	left: 25%;
	height: 99%;
	width: 50%;
	cursor: pointer;
	z-index: 10;
	background: none;
	-moz-opacity:0.8;
	-khtml-opacity: 0.8;
	opacity: 0.8;
}

.withArrows a.open:hover { background: url('../img/open.png') no-repeat center center; }

* html .withArrows a.open:hover { background: url('../img/open.gif') no-repeat center center;
	filter:alpha(opacity=80); }

#lightbox { background-color:#eee; padding: 10px; border-bottom: 2px solid #666; border-right: 2px solid #666; }
#lightboxDetails { font-size: 0.8em; padding-top: 0.4em; }
#lightboxCaption { float: left; }
#keyboardMsg { float: right; }
#closeButton { top: 5px; right: 5px; }
#lightbox img { border: none; clear: both; }
#overlay img { border: none; }
#overlay{ background-image: url(../images/overlay.png); }
* html #overlay {
	background-color: #333;
	back\ground-color: transparent;
	background-image: url(blank.gif);
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="../images/overlay.png", sizingMethod="scale");
	}

