@charset "utf-8";
/* *******************************
* Author: Jakkie Swart  		 *
* Copyright: 2011 SABC           *
* Date: 12 Jan 2011              * 
* File: Gallery Menu Style	     *
******************************** */


/* Scrolling Gallery Menu Slider
************************** */

#gallery {
	padding-left:0px;
	height:auto;

}

div.sc_menu {
  /* Set it so we could calculate the offsetLeft */
  position: relative;
  height: 80px;
  width: 280px;
  /* Add scroll-bars */
  overflow: auto;
}

ul.sc_menu {
  display: block;
  height: 90px;
  /* Max width here, for users without Javascript */
  width: 1500px;
  padding: 0px 0px 0px 0px;
  /* Remove default margin */
  margin: 0;
  background: url('images/navigation.png');
  list-style: none;
}

.sc_menu li {
  display: block;
  float: left;
  padding: 0 4px;
}
.sc_menu a {
  display: block;
  text-decoration: none;
}
.sc_menu span {
  /* We want a caption to display on the next line */
  display: block;
  margin-top: 3px;
  text-align: center;
  font-size: 12px;
  color: #fff;
}

/* Hover stuff */

.sc_menu span {
  display: none;
  margin-top: 3px;
  text-align: center;
  font-size: 12px;
  color: #fff;
}
.sc_menu a:hover span {
  display: block;
}
.sc_menu img {
  border: 3px #fff solid;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}
.sc_menu a:hover img {
  filter:alpha(opacity=50);
  opacity: 0.5;
}


/* No Scrolling Gallery Menu Slider
************************** */

div.sc_menu_noscroll {
  /* Set it so we could calculate the offsetLeft */
  position: relative;
  height: 250px;
  width: 621px;
  /* Add scroll-bars */
  overflow: none;
  height: auto;
}

ul.sc_menu_noscroll {
  display: block;
  height: 90px;
  /* Max width here, for users without Javascript */
  width: 1500px;
  padding: 0px 0px 0px 0px;
  /* Remove default margin */
  margin: 0;
  background: url('images/navigation.png');
  list-style: none;
}

.sc_menu_noscroll li {
  display: block;
  float: left;
  padding: 0 4px;
}
.sc_menu a {
  display: block;
  text-decoration: none;
}
.sc_menu_noscroll span {
  /* We want a caption to display on the next line */
  display: block;
  margin-top: 3px;
  text-align: center;
  font-size: 12px;
  color: #fff;
}

/* Hover stuff */

.sc_menu_noscroll span {
  display: none;
  margin-top: 3px;
  text-align: center;
  font-size: 12px;
  color: #fff;
}
.sc_menu_noscroll a:hover span {
  display: block;
}
.sc_menu_noscroll img {
  border: 3px #fff solid;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}
.sc_menu_noscroll a:hover img {
  filter:alpha(opacity=50);
  opacity: 0.5;
}
