/**
 * Copyright (c) 2006, Bill W. Scott
 * All rights reserved.
 *
 * This work is licensed under the Creative Commons Attribution 2.5 License. To view a copy 
 * of this license, visit http://creativecommons.org/licenses/by/2.5/ or send a letter to 
 * Creative Commons, 543 Howard Street, 5th Floor, San Francisco, California, 94105, USA.
 *
 * This work was created by Bill Scott (billwscott.com, looksgoodworkswell.com).
 * 
 * The only attribution I require is to keep this notice of copyright & license 
 * in this original source file.
 */

/**
 * Standard Configuration. It is advised that this section NOT be modified as the
 * carousel.js expects the behavior outlined below.
 **/
 .wrapper {
  margin-left: auto;
  margin-right: auto;
  width: 625px;
  border:#CCCCCC thin solid;
}


#overlay {
  width: 200px;
  height: 80px;
  background-color:  #FFF;
  position: absolute;
  top: 25px;
  left: 0px;
  padding-top: 10px;
  z-index: 100;
  color: #000;
  border:1px dotted #c33;	
	font-size: 24px;
  filter:alpha(opacity=80);
	-moz-opacity: 0.8;
	opacity: 0.8;
}

div#wrapper2{
  float:left;
  width:100%;    
}

#nm {
  float:left;
  background:#FFF;
  width: 200px;
  height:250px;
  text-align:left;
}

#g {
  float:left;
  padding-top:10px;
  padding-left:40px;
}

/* BUTTONS */
#prev-arrow-container{ 
    float:left;
    margin: 0px;
    padding: 5px;
}

#next-arrow-container { 
    float:right;
    margin: 0px;
    padding: 5px;
}

#next-arrow { 
    cursor:pointer; 
}

#prev-arrow { 
    cursor:pointer; 
}

 .carousel-component { 
	position:relative;
	overflow:hidden;
	visibility:visible;
	margin-left:0px;
	padding-left:0px;
}
				
.carousel-component ul.carousel-list { 
	width:10000000px;
	position:relative;
	z-index:1;
	margin-left:0px;
	padding-left:0px;
	margin-top:0px;
	padding-top:0px;
}

.carousel-component .carousel-list li { 
	float:left;
	list-style:none;
	overflow:hidden;
	margin-left:5px;
	border:1px solid #ccc;
	background:#f8f9fb;
	font:10px verdana,arial,sans-serif;
	}

.carousel-component .carousel-list li a{
	display:block;
	height:55px;
	width:200px;
	text-decoration:none;
	color:#000;
}

.carousel-component .carousel-list li a:hover{
	background-color:#e5eaed;
}

.carousel-component .carousel-list li img{
	float:left;
	margin:2px;
	margin-right:5px;
}

.carousel-component .carousel-list li h2{
	margin:0px;
	font-size:16px;
	font-family:Georgia, Times New Roman, Times, serif;
	text-align:left;
}

.carousel-component .carousel-clip-region { 
	overflow:hidden;
	margin:0px auto;
	position:relative;
}






