.simple_overlay {
	
	/* must be initially hidden */
	display:none;
	/* place overlay on top of other elements */
	z-index:10000;
	/* styling */
	background-color:#333;
	width:675px;	
	min-height:200px;
	border:1px solid #666;
	position:fixed;
	/* CSS3 styling for latest browsers */
	-moz-box-shadow:0 0 90px 5px #000;
	-webkit-box-shadow: 0 0 90px #000;	
}

/* close button positioned on upper right corner */
.overlay .close, .simple_overlay .close {
	background: url(../img/closelabel.gif) no-repeat;
	position:absolute;
	right:-15px;
	top:-15px;
	cursor:pointer;
	height:35px;
	width:35px;
}


/* the large image. we use a gray border around it */
#img {
	border:1px solid #666;
}

/* "next image" and "prev image" links */
.forward, .back, .info {background:#D8C79C;}

.forward, .back {
	
	/* absolute positioning relative to the overlay */
	position:absolute;
	top:40%;	
	border:1px solid #666;	
	cursor:pointer;
	display:block;
	padding:10px 20px;
	color:#fff;
	height:20px;
	font-size:11px;
	text-indent:-9999px;
	width:20px;
	/* upcoming CSS3 features */
	-moz-border-radius:5px;
	-webkit-border-radius:5px;	
}

.back {
	background:#D8C79C url(../img/prevlabel.gif) no-repeat center center;
	left:0;
	border-left:0;
	-moz-border-radius-topleft:0;
	-moz-border-radius-bottomleft:0;
	-webkit-border-bottom-left-radius:0;
	-webkit-border-top-left-radius:0;
}

.forward {
	background:#D8C79C url(../img/nextlabel.gif) no-repeat center center;
	right:0;
	border-right:0;
	-moz-border-radius-topright:0;
	-moz-border-radius-bottomright:0;
	-webkit-border-bottom-right-radius:0;
	-webkit-border-top-right-radius:0;	
}

.forward:hover {background:#D8C79C url(../img/nextlabel-hover.gif) no-repeat center center;}
.back:hover {background:#D8C79C url(../img/prevlabel-hover.gif) no-repeat center center;}

/* when there is no next or previous link available this class is added */
.disabled {
	visibility:hidden;		
}

/* the "information box" */
.info {
	position:absolute;
	bottom:0;
	left:0;	
	padding:10px 15px;
	color:#160400;
	font-size:11px;
	border-top:1px solid #666;
}

.info strong {
	display:block;	
}

/* progress indicator (animated gif). should be initially hidden */
.progress {
	position:absolute;
	top:45%;
	left:50%;
	display:none;
}

#overlay {
	display:none;
	height:574px;
	width:553px;
	padding:0;
	margin:0;
}

.contentWrap {
	background:transparent url(../img/tb-tutorials-bg.jpg) no-repeat scroll 0 0;
	direction:ltr;
	height:574px;
	width:553px;
}

/* SCROLLABLE */

#tutorialScoller {
	height:574px;
	margin:0 auto;
	position:relative;
	width:553px;
}

.navi { 
    margin-left:328px; 
    width:200px; 
    height:20px; 
} 

 
/* items inside navigator */ 
.navi a { 
    width:8px; 
    height:8px; 
    float:left; 
    margin:3px; 
    background:url(../img/scrollable/arrow/navigator.png) 0 0 no-repeat; 
    display:block; 
    font-size:1px; 
} 
 
/* mouseover state */ 
.navi a:hover { 
    background-position:0 -8px;       
} 
 
/* active state (current page state) */ 
.navi a.active { 
    background-position:0 -16px;      
}

div.scrollable { 
 
    /* required settings */ 
    position:relative; 
    overflow:hidden; 
	width:553px;
    height:574px; 
} 
 
/* 
    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; 
	clear:both;	

} 
 
/* 
    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; 
	height:515px; 
	width:481px;
	padding:49px 36px 10px;
} 

div.scrollable div.items div p.pager {
	margin:9px 0 0;
	text-align:center;
	color:#7B1300;
	font-size:12px;
	font-weight:bold;
}


div.scrollable div.items div p.txt {
	margin-right:0;
	margin-top:10px;
	overflow-y:auto;
	direction:ltr;
	padding:5px;
	height:103px;
	font-family:Arial,Helvetica,sans-serif;
	font-size:11px;
}

a.browse {
	background:url(../img/prevlabel.gif) no-repeat center center;
	cursor:pointer;
	display:block;
	float:left;
	font-size:1px;
	height:20px;
	width:35px;
}

a.right {
	background:url(../img/nextlabel.gif) no-repeat center center;
	clear:right;
	margin-right:0;
	right:39px;
	position:absolute;
	top:416px;
}
a.right:hover {
	background:url(../img/nextlabel-hover.gif) no-repeat center center;
}

a.left {
	margin-left:0;
	position:absolute;
	left:39px;
	top:416px;
}
a.left:hover {
		background:url(../img/prevlabel-hover.gif) no-repeat center center;
}
