
/*TAMANHO DA CAIXA */
#mygalone{ 
width: 500px; 
height: 376px;
}

/*BORDER DA CAIXA */
.stripViewer { 
position: relative;
overflow: hidden; 

}
.stripViewer ul { 
position: relative;
left: 0;
top: 0;
list-style-type: none;
}
.stripViewer ul li { /* each image is arranged horizontally */
float:left;
}
.stripTransmitter ul { /* the auto-generated set of links */
	position: relative;
	list-style-type: none;
}

/*LARGURA DAS CAIXAS DE MENU */
.stripTransmitter ul li{
	width: 16px;
	float:left;
	margin-left: 2px;
	margin-top: 20px;
	height: 15px;
	line-height:15px;
}

/*COR DOS NÚMEROS NA CAIXA DE MENU ACTIVO */

.stripTransmitter a{
font-family:Arial, Helvetica, sans-serif;;
text-align: center;
background-color:#FFFFFF;
color:#000033;
text-decoration: none;
display: block;
outline:none;
}

/*COR DOS NÚMEROS NA CAIXA DE MENU QUANDO PASSA EM CIMA */
.stripTransmitter a:hover { /* hover */
	background-color: #FFFF00;
	color: #000033;
	outline:none;
	text-decoration: none;
}

/*COR DOS NÚMEROS NA CAIXA DE MENU SEM CAIXA */
.stripTransmitter a.current, .stripTransmitter a.current:hover { /* current */
background-color: #000033;
color: #FFFF00;
outline:none;
}

