/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/

#iconos {
	width: 880px;
	height: 120px;
	background-color: #FFF;
	padding-left: 40px;
	padding-right: 41px;
	margin: auto;
	padding-top: 60px;
}

.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 530px;
	height:120px;
}
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 795px;
	height:100px;
}


/*
	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 the width and height for the root element and
	not for this element.
*/
.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}
/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accommodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/
.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
}


.items .pane {
	float:left;
	width:925px;
}

/* single scrollable item */
.scrollable a {
	float:left;
	margin:20px 4px 20px 4px;
	padding:2px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
    display: block;
}

#seccionPrincipal .scrollable a
{    
	background: #fff url(../../../static2.arauca.gov.co/img/sprites/sprites-iconos.jpg) no-repeat;
    width: 118px;
    height: 68px;
}
#seccionInfantil .scrollable a
{    
	background: #fff url(../../../static2.arauca.gov.co/img/iSprites/sprites-iconos.jpg) no-repeat;
    width: 117px;
    height: 67px;
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}
/*
	a single item. must be floated in horizontal scrolling.
	typically, this element is the one that *you* will style
	the most.
*/
.items div { float:left; }
