

#main{
	/* The main container div */
	position:relative;
	margin:10px auto;
	width:710px;
	background: #B0C4DE;
	border:1px solid #B0C4DE;
	padding:0px 0px 70px;
	
	/* CSS3 rounded cornenrs */
	
	-moz-border-radius:12px;
	-webkit-border-radius:12px;
	border-radius:12px;
}

#holder{
	/* The unordered list that is to be split into pages */

	width:700px;
	overflow:hidden;
	position:relative;
	/*background:url('img/dark_bg.jpg') repeat #4e5355;*/
	padding-bottom:10px;

	/*	CSS3 inner shadow (the webkit one is commeted, because Google Chrome
		does not like rounded corners combined with inset shadows): */

	-moz-box-shadow:0 0 10px #B0C4DE inset;
	/*-webkit-box-shadow:0 0 10px #222 inset;*/
	box-shadow:0 0 10px #B0C4DE inset;
}

.swControls{
	position:absolute;
	margin-top:10px;
}

a.swShowPage{

	/* The links that initiate the page slide */

	background-color:#444444;
	float:left;
	height:18px;
	margin:3px 3px;
	text-indent:0px;
	width:20px;
	/*border:1px solid #ccc;*/
	text-decoration: none;
	color:#B0C4DE;
	
	text-align: center;
	vertical-align: middle;
	padding: 3px 0px 0px 0px;
		
	
	/* CSS3 rounded corners */
	
	-moz-border-radius:16px;
	-webkit-border-radius:16px;
	border-radius:16px;
}

a.swShowPage:hover,
a.swShowPage.active{
	background-color:#2993dd;
	color:#FFFFFF;
	/*	CSS3 inner shadow */
	
	-moz-box-shadow:0 0 7px #1e435d inset;
	/*-webkit-box-shadow:0 0 7px #1e435d inset;*/
	box-shadow:0 0 7px #1e435d inset;
}
a.swShowPage:visited {
	color:#FFFFFF;
	text-decoration:none;
	outline:none;
}


#holder li{
	background-color:#F0F8FF;
	list-style:none outside none;
	margin:8px 8px 0;
	padding:5px;
	float:left;

	/* Regular CSS3 box shadows (not inset): */

	-moz-box-shadow:0 0 6px #111111;
	-webkit-box-shadow:0 0 6px #111111;
	box-shadow:0 0 6px #111111;
}

#holder,
#holder li{
	/* Applying rouded corners to both the holder and the holder lis */
	-moz-border-radius:8px;
	-webkit-border-radius:8px;
	border-radius:8px;
}

.clear{
	/* This class clears the floated elements */
	clear:both;
}


/* The styles below are only necessary for the styling of the demo page */



a, a:visited {
	color:#000080;
	text-decoration:none;
	outline:none;
}

a:hover{
	text-decoration:none;
}

a img{
	border:none;
}