@charset "utf-8";

/* Styling of carousel Module on Home Page Section */
/* ------------------------------------------------ */

/*
  Container for the carousel:
 
  Absolutely positioned
  Stretch to fill the whole window width
  Fixed height
  Hide the overflow to prevent horizontal scrollbars
 
  Vertically centred in the viewport: http://css-discuss.incutio.com/wiki/Centering_Block_Element#Centering_an_absolutely_positioned_element
*/
 
#carouselContainer {
  width: 100%;
  height: 660px;        /* Image height + 200px */
  overflow: hidden;
  position: absolute;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  z-index: 1;
  margin-left:3000px;
}
 
 
/*
  The carousel div that contains all the images
 
  We'll set the width dynamically in the JavaScript as the images load
*/
 
#carousel {
	margin-top:160px;
  width: 100px;
  height: 290px;        /* Image height + 100px */
  padding: 20px 0 50px 0;
  position: absolute;
  z-index: 1;
}
 
 
/*
  Individual slides within the carousel:
 
  Float them left so that they're all side by side
  Fixed height (the width will vary as required)
  Add some horizontal margin between the slides
  Add a bottom fading reflection for WebKit browsers
*/
 
#carousel img {
  width:362px;
  height:325px;
  float: left;
  margin: 0 10px;      /* Adjust the left/right margin to show greater or fewer slides at once */
  border:none;
  /*-webkit-box-reflect:
    below
    0
    -webkit-gradient(
      linear,
      left top,
      left bottom,
      color-stop(1, rgba(255, 255, 255, .5)),
      color-stop(.8, rgba(255, 255, 255, 0))
    );*/
	
box-shadow:0 0 8px rgba(0, 0, 0, 0.9);
border:solid 10px #fff;
/*border-radius:222px;*/
}
 
#carousel img:hover {
  float: left;
  margin: 0 10px;      /* Adjust the left/right margin to show greater or fewer slides at once */
  
  /*-webkit-box-reflect:
    below
    0
    -webkit-gradient(
      linear,
      left top,
      left bottom,
      color-stop(1, rgba(255, 255, 255, .5)),
      color-stop(.8, rgba(255, 255, 255, 0))
    );*/
	
box-shadow:0 0 18px rgba(0, 0, 0, 0.9);
border:solid 10px #fff;
/*border-radius:222px;*/
} 
 
 
/*
  Left and right buttons:
 
  Position them on the left and right sides of the carousel
  Stretch them to the height of the carousel
  Hide them by default
*/
 
#leftButton, #rightButton {
  position: absolute;
  z-index: 2;
  top: 30px;
  bottom: 0;
  padding: 0;
  margin: auto 0;
  width: 15%;
  height: 600px;        /* Image height */
  border: none;
  outline: none;
  color: #fff;
  background: transparent url(images/blank.gif);
  font-size: 100px;
  font-family: "Courier New", courier, fixed;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity .5s;
  -moz-transition: opacity .5s;
  -o-transition: opacity .5s;
  transition: opacity .5s;
}
 
#leftButton {
  left: 0;
}
 
#rightButton {
  right: 0;
}
 
/* (Turn off dotted black outline on FF3) */
 
#leftButton::-moz-focus-inner, #rightButton::-moz-focus-inner {
  border: none;
}
 
/*
  Left and right button hover states:
  Fade them in to 50% opacity
*/
 
#leftButton:hover, #rightButton:hover {
  opacity: .5;
  filter: alpha(opacity=50);
  outline: none;
}
 
 
/*
  Image caption:
 
  Position just under the centre image
  Hide by default
*/
 
#caption {
  position: absolute;
  z-index: 9999;
  top: 500px;
  width: 100%;
  height:30px;
  padding-top:10px;
  color: #000;
  text-align: left;
  font-family: 'Satellite'; 
  font-size: 36px;
  letter-spacing: .1em;
  display: none;
  background:#f4f4f4;
  padding-left:10px;
/*  border-bottom:solid 3px #DC4F1B;*/
  /* text-transform:uppercase;*/
}
 
 
/*
  Loading text:
 
  Position in the centre of the carousel container
  Hide by default
*/
 
#loading {
  position: absolute;
  z-index: 1;
  bottom: 50%;
  width: 100%;
  color: #ffc;
  text-align: center;
  font-family: "Georgia", serif;
  font-size: 36px;
  letter-spacing: .1em;
  opacity: 0;
  filter: alpha(opacity=0);
}
 
</style>
 
 
<!-- IE7 positions the buttons incorrectly; compensate -->
 
<!--[if lt IE 8]>
<style>
#leftButton, #rightButton {
  top: 50px;
}
</style>
<![endif]-->