/* Scroll Bar Master Styling Starts Here */
/* All comments can be freely removed from the css */

.scrollgeneric 
	{
	line-height: 1px;
	font-size: 1px;
	position: absolute;
	top: 0; left: 0;
	}

.vscrollerbase 
	{
	width: 10px;
	background-color: #f6ecc8;
	}

.vscrollerbar 
	{
	width: 10px;
	background-color: #936b38;
	}
	
.hscrollerbase 
	{
	height: 10px;
	background-color: #f6ecc8;
	}
	
.hscrollerbar 
	{
	height: 10px;
	background-color: #936b38;
	}

.scrollerjogbox 
	{
	width: 10px;
	height: 10px;
	top: auto; left: auto;
	bottom: 0px; right: 0px;
	background-color: #f7edc9;
	}


#mycustomscroll 
	{
	/* Typical fixed height and fixed width example */
	width: 837px;
	height: 260px;
	overflow: auto;
	/* IE overflow fix, position must be relative or absolute*/
	position: relative;
	margin: 0.3em auto;
	padding: 0;
	}

#mycustomscroll .fixedwidth 
	{
	/* a wide div is used for creating horizontal scrollbars for demonstration purposes */
	width: 3670px;
	height: auto;
	position: relative;
	float: none;
	padding: 0;
	}

#mycustomscroll .prodfixedwidth 
	{
	/* a wide div is used for creating horizontal scrollbars for demonstration purposes */
	width: 1200px;
	height: auto;
	position: relative;
	float: none;
	padding: 0;
	text-align: right;
	}

#mycustomscroll img
	{
	float: right;
	margin-left: 10px;
	}
	
#aboutscroll 
	{
	/* Typical fixed height and fixed width example */
	width: 837px;
	height: 112px;
	overflow: auto;
	/* IE overflow fix, position must be relative or absolute*/
	position: relative;
	/*margin: 0.3em auto;*/
	padding: 0;
	}
	
#babyscroll	
	{
	/* Typical fixed height and fixed width example */
	width: 837px;
	height: 268px;
	overflow: auto;
	margin:0 auto;
	/* IE overflow fix, position must be relative or absolute*/
	position: relative;
	/*margin: 0.3em auto;*/
	padding: 0;
	}
	
#mycustomscroll3
	{
	/* Typical fixed height and fixed width example */
	width: 450px; 
	height: 210px; 
	float:right;
	
	overflow: auto;
	/* IE overflow fix, position must be relative or absolute*/
	position: relative;
	padding: 0 15px 0 15px;
	}
	
#mycustomscroll2 p
	{
	margin-bottom:10px;  
	} 	
	
