﻿div#left {
position:relative;
margin-top:30px;
width:190px;
float:left;
}

div#conteudo {
width:830px;
margin:30px auto;
min-height:400px;	
}

div#logomarcas {
position:relative;
float:left;
width:880px;
margin:20px auto;
}

/******************************************* UL Interna - Trabalhos *********************************/
div.scrollable {
	/* required settings */ 
    position: relative;
	overflow: hidden;
	height: 350px;
	width: 880px;
}
/* 
    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: 2000em;
	position: absolute;
}

div.scrollable div.items ul.logos {
	list-style:none;
	float: left;
	width:900px;
	height: 350px;
	display: block;
	margin-left:6px;
}

div.scrollable div.items ul.logos li {
	width:245px;
	height:95px;
	float: left;
	display: inline-block;
	margin-left:15px;
	margin-right:15px;
	margin-bottom:30px;
}


/********************* Slides Internos **************************************************/

/* single slide */
div#logomarcas div {
	position:absolute;
	top:0;
	left:0;		
	height:350px;
	font-size:12px;
}

/* tabs (those little circles below slides) */
.navi {
	clear: both;
	margin-left: 430px;
}
/* single tab */
.navi a {
	width: 8px;
	height: 8px;
	float: left;
	margin: 3px;
	background-image: url('../img/navigator2.png');
	top: 0;
	left: 0;
	background-repeat: no-repeat;
	display: block;
	font-size: 1px;
}
/* mouseover state */
.navi a:hover {
	background-position: 0 -16px;
}
/* active state (current page state) */
.navi a.active {
	background-position: 0 -32px;
}



