

/* Gallery styles */

.main_index #gallery{
	/* CSS3 Box Shadow */
	-moz-box-shadow:0 0 3px #AAAAAA;
	-webkit-box-shadow:0 0 3px #AAAAAA;
	box-shadow:0 0 3px #AAAAAA;
	
	/* CSS3 Rounded Corners */
	
	-moz-border-radius-bottomleft:4px;
	-webkit-border-bottom-left-radius:4px;
	border-bottom-left-radius:4px;
	
	-moz-border-radius-bottomright:4px;
	-webkit-border-bottom-right-radius:4px;
	border-bottom-right-radius:4px;
	
	border:1px solid white;
	
	background:url(http://buymicrosimadapter.com/img/panel.jpg) repeat-x bottom center #ffffff;
	
	/* The width of the gallery */
	width:920px;
	margin: 0px auto;
	overflow:hidden;
	position: relative;
}

.main_index #slides{
	/* This is the slide area */
	height:400px;
	
	/* jQuery changes the width later on to the sum of the widths of all the slides. */
	width:920px;
	overflow:hidden;
}

.main_index .slide{
	float:left;
}

.main_index #menu{
	/* This is the container for the thumbnails */
	height:38px;
	position: relative;
}
.main_index #menu ul{
	text-align: center;
	height:45px;
	padding: 0px;
	margin: 0px;
}

.main_index ul{
	margin: 0px;
	padding: 0px;
}

.main_index li{
	/* Every thumbnail is a li element */
	width:60px;
	display:inline-block;
	list-style:none;
	height:38px;
	overflow:hidden;
}

.main_index li.inact:hover{
	/* The inactive state, highlighted on mouse over */
	background:url(http://buymicrosimadapter.com/img/pic_bg.png) repeat;
}

.main_index li.act, .main_index li.act:hover{
	/* The active state of the thumb */
	background:url(http://buymicrosimadapter.com/img/active_bg.png) no-repeat;
}

.main_index li.act a{
	cursor:default;
}

.main_index .fbar{
	/* The left-most vertical bar, next to the first thumbnail */
	width:2px;
	background:url(http://buymicrosimadapter.com/img/divider.png) no-repeat right;
}

.main_index li a{
	display:block;
	background:url(http://buymicrosimadapter.com/img/divider.png) no-repeat right;
	height:32px;
	padding-top:13px;
}

.main_index a img{
	border:none;
}


/* The styles below are only necessary for the demo page */

.main_index h1{
	font-family:"Myriad Pro",Arial,Helvetica,sans-serif;
	font-size:26px;
	font-weight:normal;
	margin-bottom:15px;
}

.main_index h2{
	font-family:"Myriad Pro",Arial,Helvetica,sans-serif;
	font-size:12px;
	font-weight:normal;
	position:absolute;
	right:0;
	text-transform:uppercase;
	top:15px;
}

.main_index #main{
	/* The main container */
	margin:15px auto;
	width:920px;
	position:relative;
}

.main_index a, .main_index a:visited {
	color:#0196e3;
	text-decoration:none;
	outline:none;
}

.main_index a:hover{
	text-decoration:underline;
}

.main_index p{
	padding:10px;
}

