/* 
    root element for the scrollable. 
    when scrolling occurs this element stays still. 
*/ 
div.scrollable { 
    /* required settings */ 
    position:relative; 
    overflow:hidden; 
    width: 845px; 
    height:95px;
    background-color: #eee; 
} 
 
/* 
    root element for scrollable items. Must be absolutely positioned 
    and it should have a extremely large width to accomodate scrollable items. 
    it's enough that you set width and height for the root element and 
    not for this element. 
*/ 
div.scrollable div.items { 
    /* this cannot be too large */ 
    width:20000em; 
    position:absolute; 
	height:100px !important; /* GS UPDATE */
} 
 
/* 
    a single item. must be floated in horizontal scrolling. 
    typically, this element is the one that *you* will style 
    the most. 
*/ 
div.scrollable div.items div { 
    float:left; 
} 
 
/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(../img/_mixnmatch/pager_bg.png) no-repeat;
	display:block;
	width:34px;
	height:95px;
	float:left;
	cursor:pointer;
}

/* right */
a.right { 
	background-position:-34px 0; 
	clear:right; 
	margin-right: 0px;
	border-left:1px solid #ccc;
}
a.right:active {
	background-position:-34px -95px;
} 

/* left */
a.left {
	background-position: 0 0; 
	margin-left: 0; 
	border-right:1px solid #ccc;
} 
a.left:active:hover { 
	background-position:0 -95px; 
}

/* disabled navigational button */
a.right.disabled, a.right.disabled:active {
	background-position:-34px -190px;
	cursor:default; /* GS UPDATE */
}
a.left.disabled, a.left.disabled:active {
	background-position:0 -190px; 
	cursor:default; /* GS UPDATE */
}

.items img {
	cursor: pointer;
	float:left;
	border-right:1px solid #eee;
	padding:5px;
	background-color: #fff;
}
.items img.active {
	background:url(../img/_mixnmatch/thumb_bg_active.png) no-repeat; 
}

.thumb-container {
	clear:both;
}

/* position and dimensions of the navigator */
.navi {
	height:20px;
	text-align: center;
	padding:5px 0 10px;
	cursor:default;
}


/* items inside navigator */
.navi a {
	width:8px;
	height:8px;
	margin:3px;
	background:url(../img/_mixnmatch/navigator.png) 0 0 no-repeat;
	display:inline-block;
	font-size:1px;
	cursor:pointer;
}

/* mouseover state */
.navi a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
.navi a.active {
	background-position:0 -16px;     
}

.group-labels {
	clear:left;
}
.scrollable h3 {
	color:#777;
	font-size:11px;
	position:absolute; 
	margin:-1px 0 0 0; /* GS UPDATE */
	z-index:500;
	border-left:1px solid #fff;
	padding-left:10px;
	height:19px;
	font-weight:normal;
}

#intro {
	width:226px;
	height:257px;
	padding:20px 40px 20px 20px;
	background:#FF87CC url(../img/_mixnmatch/intro_bg.png) right top no-repeat;
	float:left;
	margin-top:20px;
}

#intro h2 {
	color:#000;
	font-family:Helvetica,Arial,sans-serif;
	font-size:18px;
	margin-bottom:8px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: normal;
}
#intro p {
	color:#663651;
}
#intro h3 {
	color:#341B29;
	margin: 12px 0 4px;
	font-weight: bold;
}
#combo-area {
	width:277px;
	float:left;
	margin:0 33px 30px;
	background-color:#fff;
}
#callouts {
	float:right;
}
.callout {
	width:226px;
	height:48px;
	padding:12px 20px 20px 40px;
	background:#38CCFF url(../img/_mixnmatch/callout_bg.png) top left no-repeat;
	margin:35px 0;
}
#bot-callout {
	margin-top:100px;
}

#callouts p span {
	display:inline-block;
	width:45px;
}
#callouts p strong {
	color:#fff;
}
#callouts p.group-name {
	border-bottom:1px solid #34C1F1;
	padding:4px 0;
	margin:0;
}
#callouts p.piece-name {
	border-top:1px solid #55D0FE;
	padding:4px 0;
	margin:0;
}


#permalink {
	font-size:10px;
}

.image_wrap img {
	display:block;
	margin:0 auto;
}
#image_wrap_top {
	margin-top:-338px;
}
body#mixnmatch #content {
	width:915px;
	margin:15px auto 0;
}
body#mixnmatch img.bot-thumb, body#mixnmatch img.top-thumb {
	border-top:1px solid #eee;
}

.addthis_toolbox .custom_images a {
	display:block;
	height:33px;
	cursor:pointer;
	border-top:1px solid #FFA1D6;
	border-bottom:1px solid #F280C1;
	overflow: auto;
}
.addthis_toolbox .custom_images {
	border-bottom:1px solid #FFA1D6;
	border-top:1px solid #F280C1;
	
}
.addthis_toolbox .custom_images a img {
	margin:4px 4px 0 0;
	float:left;
}
.addthis_toolbox .custom_images a span {
	float:left;
	margin-top:9px;
}
.addthis_toolbox .custom_images a {
	color:#000;
	padding-left:6px;
}
.addthis_toolbox .custom_images a:hover {
	background-color: #FF95D0;
}

