
/*Strip the ul of padding and list styling*/
ul {
	list-style-type:none;
	margin:0;
	padding:0;
	position: absolute;
	z-index: 9999;
	
}

/*Create a horizontal list with spacing*/
li {
	display:inline-block;
	float: left;
	margin-right: 1px;
        
}

/*Style for menu links*/
li a {
	display:block;
	min-width:137px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #fff;
	background: #2f3036;
	text-decoration: none;
	
}

/*Hover state for top level links*/
li:hover a {
	background: #102694;
	
}

/*Style for dropdown links*/
li:hover ul a {
	background: #f3f3f3;
	color: #2f3036;
	height: 40px;
	line-height: 40px;
}

/*Hover state for dropdown links*/
li:hover ul a:hover {
	background: #5ABDD1;
	color: #fff;
}

/*Hide dropdown links until they are needed*/
li ul {
	display: none;
}

/*Make dropdown links vertical*/
li ul li {
	display: block;
	float: none;
}

/*Prevent text wrapping*/
li ul li a {
	width: auto;
	min-width: 191px;
	
}

/*Display the dropdown on hover*/
ul li a:hover + .hidden, .hidden:hover {
	display: block;
}

/*Style 'show menu' label button and hide it by default*/
.show-menu {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-decoration: none;
	color: #fff;
	background: #00A94E;
	text-align: center;
	padding: 10px 0;
	display: none;
	
}

/*Hide checkbox*/
input[type=checkbox]{
    display: none;
    -webkit-appearance: none;
}

/*Show menu when invisible checkbox is checked*/
input[type=checkbox]:checked ~ #menu{
    display: block;
}



div#divmenu { margin:0px auto;max-width:960px;z-index:-1;padding-bottom: 70px; }



/*---------meu styles*/

div#divcentralpagina { margin:0px auto;max-width:960px; overflow:hidden;}
.divrodape { float: left; min-width:320px; height: 44px; display: table;text-align:center; }
.img_produto {max-width: 100%;border:1px solid #808080;}

.divspacer { float: left; display:block;width:4%; height: 75px; display: table; }
.div2blocostextos { float: left; max-width: 48%; margin: 0px; overflow:hidden; text-align:justify; }


.div_bloco_moldura {display:inline-block; margin: 0 auto;  width: 180px; height: 140px; }
.div_centralizar_interno { text-align: center; vertical-align:middle; display:table-cell;  width: 180px; height: 140px;}



h1 { 
    display: block;
    font-size: 1.6em;
    font-weight: bold;
    color: #102694;
}

h2 { 
    display: block;
    font-size: 1.2em;
    font-weight: bold;
}

/*------------------------------*/




/*Responsive Styles*/

@media screen and (max-width : 959px){
	/*Make dropdown links appear inline*/
	ul {
		position: static;
		display: none;
	}
	/*Create vertical spacing*/
	li {
		margin-bottom: 1px;
	}
	/*Make all menu links full width*/
	ul li, li a {
		width: 100%;
		
	}
	/*Display 'show menu' link*/
	.show-menu {
		display:block;
	}
}

@media screen and (min-width: 481px) and (max-width: 959px) {

	/*---------meu styles responsive */	
	div#divmenu { margin:0px auto;max-width:960px;z-index:-1;padding-bottom: 10px; }
	
	div#divcentralpagina { max-width:100%;padding: 20px; }
	
	img#logo1topo { width: 300px; }

	.divrodape { float: left; width:100%; height: 44px; display: table; text-align:center; }
	
	.div2blocostextos { max-width: 46%; }
	
	.divspacer { width:8%; }

}

@media screen and (max-width : 480px){

	/*---------meu styles responsive */	
	div#divmenu { margin:0px auto;max-width:960px;z-index:-1;padding-bottom: 10px; }
	
	div#divcentralpagina { max-width:100%;padding: 20px; }
	
	img#logo1topo { width: 300px; }

	.divrodape { float: left; width:100%; height: 44px; display: table; text-align:center; }
	
	.div2blocostextos { max-width: 100%; margin: 20px 0px 0px 0px; }
	
	.divspacer { display:none; }

}