@charset "utf-8";
/*------RESET -----*/

* {
	margin: 0;
	padding: 0;
	border: none;
	font-size: 100%;
	font-family: Verdana, Geneva, sans-serif;
	line-height: 1.5;	
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
	text-align: center;
}
ol, ul {
	list-style: none;
	text-align: center;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*-----End RESET-----*/




/* -- Menu -- */

.toggle,
[id^=drop] {
	display: none;
}

/* Giving a background-color to the nav container. */
nav { 
	margin:0;
	padding: 0;
	background-color: #eff3f1;
	border-radius: 4px;
	-webkit-box-shadow: 1px 1px 1px #abadac;
}


/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */

nav:after {
	content:"";
	display:table;
	clear:both;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
nav ul {
	float: right;
	padding:0;
	margin:0;
	list-style: none;
	position: relative;
	}
	
/* Positioning the navigation items inline */
nav ul li {
	margin: 0px;
	display: inline-block;
	float: left;
	background-color: #eff3f1;
	border-right-width: thin;
	border-right-style: solid;
	border-right-color: #FFF;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #d8ded4; 
}

nav ul li:hover {
    text-shadow: none;
}

/* Styling the links */
nav a {
	display: block;
	padding: 18px 10px;	/* largura botao*/
	color: #333;
	font-size: 12px;
	text-decoration: none;
	border-left-width: 2px;
	border-left-style: solid;
	border-left-color: #eff3f1;
	border-radius: 2px;
	
}

nav ul li ul li{ /*--submenu color--*/
	background-color: #fff;
	border-top-style: solid;
	border-top: 1px;
	border-color: #c8ccca;
	border-top-width: thin;
	border-right-wicth: thin;
}

nav ul li ul li:hover { 
	text-shadow: none;
}

/* Background color change on Hover */
nav a:hover { 
	background-color: #a7adad;
	color: #fff;
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
	display: none;
	position: absolute; 
	top: 50px; /*distancia do submenu em relação ao menu*/
}
	
/* Display Dropdowns on Hover */
nav ul li:hover > ul {
	display:inherit;
}
	
/* Fisrt Tier Dropdown */
nav ul ul li {
	width:150px;
	float:none;
	display:list-item;
	position: relative;
}

/* Second, Third and more Tiers	
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
nav ul ul ul li {
	position: relative;
	top:-60px;
	/* has to be the same number as the "width" of "nav ul ul li" */ 
	left:170px; 
}

/* Change ' +' in order to change the Dropdown symbol */
li > a:after { 
    content:  ' +'; 
}

li > a:only-child:after { 
    content: ''; 
}

/* Media Queries
--------------------------------------------- */

@media all and (max-width : 800px) {

	#logo {
		display: block;
		padding: 0;
		width: 100%;
		text-align: center;
		float: none;
	}

	nav {
		margin: 0;
	}
	
	/* Hide the navigation menu by default */
	/* Also hide the  */
	.toggle + a,
	.menu {
		display: none;
	}

	/* Stylinf the toggle lable */
	.toggle {
		display: block;
	    background-color: #80ad97;
	    color: #FFF;
	    font-size: 16px;
	    text-decoration: none;
	    border: none;
	    border-bottom-width: thin;
	    border-bottom-style: solid;
	    border-bottom-color: #FFF;
	    padding-top: 20px;
	    padding-right: 20px;
	    padding-bottom: 14px;
	    padding-left: 14px;
	}

	.toggle:hover {
		background-color: #bfcfcf;
		color: #000;
	}

	/* Display Dropdown when clicked on Parent Lable */
	[id^=drop]:checked + ul {
		display: block;
	}

	/* Change menu item's width to 100% */
	nav ul li {
		display: block;
		width: 100%;
		}
/* Change menu item's width to 100% */
	nav ul li {
	    display: block;
	    width: 100%;
	}

	nav ul ul .toggle,
	nav ul ul a {
		padding: 0 40px;
	}

	nav ul ul ul a {
		padding: 0 80px;
	}

	nav a:hover,
 	nav ul ul ul a {
		background-color: #a8b6b6;
	}

	nav ul li ul li .toggle,
	nav ul ul a,
    nav ul ul ul a{
		padding:14px 20px;	
		color:#3d3f3e;
		font-size:14px; 
	}
 
	nav ul li ul li .toggle,
	nav ul ul a {
		background-color: #d3dede; 
	}

	/* Hide Dropdowns by Default */
	nav ul ul {
		float: none;
		position:static;
		/* has to be the same number as the "line-height" of "nav a" */
	}
		
	/* Hide menus on hover */
	nav ul ul li:hover > ul,
	nav ul li:hover > ul {
		display: none;
	}

	/* Fisrt Tier Dropdown */
	nav ul ul li {
		display: block;
		width: 100%;
	}

	nav ul ul ul li {
		position: static;
		/* has to be the same number as the "width" of "nav ul ul li" */ 
	}

}

#nav nav .menu li a {
	padding-top: 30px;
	padding-bottom: 5px;
}

/* -- End Menu -- */




/* -- menu aside -- */
gin-top: 1em;
}

.Accordion input[type="radio"],
.Accordion input[type="checkbox"] {
  display: none;
}

.Accordion input:checked + .Accordion-subElements > .Accordion-subElement {
  height: 2em;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.Accordion-item label {
	display: block;
	padding: 1em;
	background-color: #80ad97;
	color: #2d3330;
	cursor: pointer;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-color: #FFF;
	-webkit-box-shadow: 1px 1px 1px #abadac;
	font-weight: bold;
}

.Accordion-item label:hover {
  background-color: #98a6a1;
  color: #fff;
}

.Accordion-subElements {
  padding-left: 0;
  background-color: #ecf0f1;
 
}

.Accordion-subElement {
	height: 0;
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
	-webkit-transform: scale(0);
	transform: scale(0);
	font-size: 13px;
	line-height: 2;
	color: #555;
	transition-property: height, -webkit-transform;
	transition-property: transform, height;
	transition-property: transform, height, -webkit-transform;
	transition-duration: 0.3s;
	overflow: hidden;
	border-bottom-width: 0.5px;
	border-bottom-style: solid;
	border-bottom-color: #fff;
}

.Accordion-subElement:hover {
	background-color: #b2c4c3;
	color: #fff;
}

.Accordion-subElement a {
	display: block;
	padding-left: 2em;
	color: inherit;
	text-decoration: none;
	display: table; /*centraliza a div dentro da outra*/
	margin: 0 auto;	/*centraliza a div dentro da outra*/
	line-height: 28px;
}
/*end menu aside*/



/*Formulario Contato*/
.container {
  width: 50%;
  margin: 0 auto;
}

.form-contact {
  width: 100%;
  font-family: "Arial", Times, serif;
}

.form-contact-input {
  width: 100%;
  color: #292929;
  font-size: 18px;
  background-color: #E9E9E9;
  border: 1px solid #E9E9E9;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  height: 40px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  text-indent: 20px;
}

.form-contact-textarea {
  width: 100%;
  color: #292929;
  font-size: 18px;
  background-color: #E9E9E9;
  border: 1px solid #E9E9E9;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  height: 200px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  text-indent: 20px;
  padding-top: 16px;
  padding-left: 0;
  padding-right: 0;
  font-family: "Arial", Times, serif;
}

.form-contact-button {
  width: 100%;
  font-size: 18px;
  border-radius: 4px;
  color: #fff;
  height: 40px;
  opacity: .8;
  margin-bottom: 20px;
  cursor: pointer;
  background: #B22222;
  display: block;
  border: none;
  border-bottom: 1px solid #500707;
  border-right: 1px solid #500707;
  transition: 1s;
}

.form-contact-button:hover {
  opacity: 1;
}
/*Formulario Contato*/



/*galeria index*/

.hovergallery img{
	
-webkit-transform:scale(0.8); /*Webkit: Scale down image to 0.8x original size*/
-moz-transform:scale(0.8); /*Mozilla scale version*/
-o-transform:scale(0.8); /*Opera scale version*/
-webkit-transition-duration: 0.5s; /*Webkit: Animation duration*/
-moz-transition-duration: 0.5s; /*Mozilla duration version*/
-o-transition-duration: 0.5s; /*Opera duration version*/
opacity: 0.7; /*initial opacity of images*/
margin: 0 10px 5px 0; /*margin between images*/

}

.hovergallery img:hover{
-webkit-transform:scale(1.3); /*Webkit: Scale up image to 1.2x original size*/
-moz-transform:scale(1.3); /*Mozilla scale version*/
-o-transform:scale(1.3); /*Opera scale version*/
box-shadow:0px 0px 7px gray; /*CSS3 shadow: 30px blurred shadow all around image*/
-webkit-box-shadow:0px 0px 7px gray; /*Safari shadow version*/
-moz-box-shadow:0px 0px 7px gray; /*Mozilla shadow version*/
opacity: 1;
}
/*end galeria index*/



/*Galeria Artistas*/

.gallerycontainer{
    position: relative;

/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnail img{
    margin: 0 5px 5px 0;
}

.thumbnail:hover{
    background-color: transparent;
}

.thumbnail:hover img{
    border: 1px solid #98a39e;
}

.thumbnail span{ /*CSS for enlarged image*/
    position: absolute;
    background-color: #eff3f1;
    padding: 5px;
    left: -1000px;
    box-shadow: 1px 1px 1px  0px rgba(203,210,196,.82);
    visibility: hidden;
    color: black;
    text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
    border-width: 0;
    padding: px;
    max-width:100%;
	height:auto;
}

.thumbnail:hover span{ /*CSS for enlarged image*/
    visibility: visible;
    top: 0;
    left: 230px; /*position where enlarged image should offset horizontally */
    z-index: 50;
}

/*end Galeria Artistas*/




/*paginacao*/

.paginacao {
  
	width: 100%;
	height: 40px;
	text-align: left;
	line-height: 40px;
	font-size: 20px;
    display: inline-block;
	border-radius: 5px;
	transition: .3s;
}


.page-numbers{
	text-decoration: none;
	padding-right: 5px;
	padding-left: 5px;
	color:#555c59;
	background-color: #fff;
	border-radius: 6px;
	padding-top: 1px;
	padding-right: 8px;
	padding-bottom: 3px;
	padding-left: 8px;
	background-color: #fff;	
}


.page-numbers:hover{
	background-color: #a8b7b2;
	color: #fff;		
}


.bot{
	color: #4c524f; 
	background-color: #d3dad7;
	text-decoration: none;
	border-radius: 6px;
	-webkit-box-shadow: 1px 1px 1px #abadac;	
	padding-top: 1px;
	padding-right: 8px;
	padding-bottom: 3px;
	padding-left: 8px;
	text-shadow: 2px 1px 2px rgba(0,0,0,0.6);
}

.bot:hover{
	color: #fff;
	background-color: #707f78;
}
.current {
	background-color: #a8b7b2;
	color: #fff;	
	border-radius: 6px;
	padding-top: 1px;
	padding-right: 8px;
	padding-bottom: 3px;
	padding-left: 8px;
}

@media only screen and (min-width: 800px) {
	
.pagenavi  {
	
	font-size: 25px;
    display: inline-block;
}
/*---end paginacao---*/


}


.coluna1 button {
	text-align: center;
	display: table; /*centraliza a div dentro da outra*/
    margin: 0 auto;	/*centraliza a div dentro da outra*
}
