/**************** ESTILOS GERAIS **************/
.linkMenu
{
    font-family: Open Sans, sans-serif;
    font-size: 12px;
    font-weight: 300;
    color:black;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration:none;
    font-weight:normal;
    transition: opacity 400ms;
}

.linkMenu:hover{
    opacity:0.5;
    /*text-decoration: none;*/
}

.linkMenu:visited{
    color:black;
}

a:hover{
	opacity:0.5;
}

.roundBT {	
	height:30px;
	border-radius:5px;
}

/**************** CONFIGURAÇÃO DA PÁGINA **************/
#fixedDiv {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	width: 100%;
	height: 120px;
	background-color: White;
}

#contentDiv {
	position: relative;
	top: 120px;
	width: 100%;
	text-align:center;
	/*
	border-style: solid;
	border-width: 1px;
	*/
}

#footerDiv {
	padding: 5px;
	text-align: center;
	width: 100%;
    color: White;
	background-color: #909090;
    font-family: Open Sans, sans-serif;
    font-size: 12px;
	font-weight: 300;
}

#contentTable {
 /*cellpadding="0" cellspacing="0" border="0" width="980"*/
	width: 980px;
	border: 0px;
	margin: 0 auto; /* or margin: 0 auto 0 auto */
}

/**************** CONFIGURAÇÕES DO MENU **************/
.divColumn
{
	float: left;
	display:inline-block; /* Mantém a div na mesma linha */
	width: 50%;
    color: #909090;
    font-family: Open Sans, sans-serif;
    font-size: 14px;
	font-weight: 300;
	text-align:left;
}

.divSeparator
{
	background-image:url('https://www.trackmaker.com/store/pictures/separador.png');
	background-repeat:no-repeat;
	background-position:center center;
	width: 100%;
	height:20px;
	clear: left;
}

.topDivGray0
{
	padding:10px;
	float: left;
	display:inline-block; /* Mantém a div na mesma linha */
	width: 100%;
	height: 20px;
	background-color: #F5F5F5;
	text-align: right;
}

.topDivFlags
{
	width: 75%;
	background-color: #F5F5F5;
}

.topDivWhite
{
	float: left;/* Força alinhamento da div à esquerda */
	width: 100%;
	height: 90px;
	min-width: 1366px;
}

.topDivWhiteInner1
{
	float: left;/* Força alinhamento da div à esquerda */
	display:inline-block; /* Mantém a div na mesma linha */
    width: 15%;
	text-align: left;
	margin-top: 25px;
    margin-left: 5%; /* Default margin-left */
}

/* For windows greater than 1920 pixels */
@media (min-width: 1921px) {
    .topDivWhiteInner1 {
        margin-left: 25%;
        width: 8%;
    }
}

/* For windows between 960 pixels and 1920 pixels */
@media (max-width: 1920px) and (min-width: 100px) {
    .topDivWhiteInner1 {
        margin-left: 15%;
    }
}

/* For windows less than 960 pixels */
@media (max-width: 999px) {
    .topDivWhiteInner1 {
        margin-left: 5%;
    }
}

.topDivWhiteInner2
{
	float: left;/* Força alinhamento da div à esquerda */
	display:inline-block; /* Mantém a div na mesma linha */
	width: 7%;
	text-align: right;
	margin-top: 40px;
	/*
	border-style: solid;
    border-width: 1px;
	*/
}

.topDivWhiteInner3
{
	float: left;/* Força alinhamento da div à esquerda */
	display:inline-block; /* Mantém a div na mesma linha */
	text-align: right;
	margin-top: 40px;
	margin-left:35px;
	/*
	border-style: solid;
    border-width: 1px;
	*/
}

.topMenuImg
{
    vertical-align: middle;
    border-style: none;
    margin-right: 3px;
}

.fade-img {
    position: absolute;
    width: 175px;
    height: 40px;
    opacity: 0; /* Começa invisível */
    transition: opacity 2s ease-in-out; /* Suaviza a transição */
}

.fade-img.visible {
    opacity: 1; /* Torna visível */
}