/**
 * Nome do arquivo
 * 
 * Framework written by Adinan Cenci
 * 
 * @author    Adinan Cenci
 */


/**
 * Reset
 *
 * Let's reset the html with some basic propreties and its values
 *
 * @section reset
 * @subsection global
 */
* {
	position: relative;
	vertical-align: top;
	direction: inherit;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	padding: 0px;
	border: none;
	margin: 0px auto 0px auto;
	outline: none;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	font-weight: inherit;
	font-style: inherit;
	background-repeat: no-repeat;
	background-position: top center;
}
*::selection {
	background: #ffb7b7;
}
*::-moz-selection {
	background: #ffb7b7;
}
/**
 * Reset
 *
 * Let's reset the html and body tags
 *
 * @section reset
 * @subsection html
 */
html {
	height: 100%;
	font-size: 12px;
}
body {
	direction: ltr;
	height: 100%;
	overflow-x: hidden;
	font-weight: normal;
	font-style: normal;	
	color: #000;
	font-family: 'Century Gothic';
	line-height: 1.5em;
	text-align: center;
}
.left-oriented {
	text-align: left;
	direction: ltr;
}
.right-oriented {
	text-align: right;
	direction: rtl;
}
/**
 * Text elements
 *
 * Let's review the text formating tags
 *
 * @section text-elements
 * 
 */
p, pre, blockquote {
	display: block;
	margin-top: 20px;
	margin-bottom: 20px;
}
pre {

}
.preformated {
	white-space: pre;
}
blockquote {
	padding: 10px;
	background-color: #f1f1f1;
}
blockquote[cite]:after {
	display: block;
	content: "~ " attr(cite) " ~";
	font-size: 10px;
	font-weight: bold;
}
code, .code-like {
	font-family: Consolas, Courier;
}
q {
	display: inline;
	quotes: '"' '"';
	font-weight: bold;
}
sub, sup {
	display: inline-block;
	font-size: 0.8em;
}
sub {
	margin-top: 0.3em;
}
sup {
	margin-top: -0.3em;
}
img {
	display: inline-block;
}
a {
	cursor: pointer;
	text-decoration: none;
}
body a {
	color: #093;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
	display: block;
	line-height: 1.2em;
}

h1, .h1, h2, .h2, h3, .h3 {
	margin-top: 20px;
	margin-bottom: 20px;
}

h1, .h1 {
	font-size: 2em;
}
h2, .h2 {
	font-size: 1.5em;
}
h3, .h3 {
	font-size: 1.3em;
}
h4, .h4 {
	margin-bottom: 10px;
	font-size: 1em;
}
h5, .h5 {
	margin-bottom: 5px;
	font-size: 0.8em;
}
h6, .h6 {
	margin-bottom: 5px;
	font-size: 0.7em;
}
strong, b, .bold {
	font-weight: bold;
}
s, strike, del {
	text-decoration: line-through;
}
ins {
	text-decoration: underline;
}
i, em, .italic {
	font-style: italic;
}
/**
 * Layout elements
 *
 * Let's deal with block display elements, layout importants and
 * text containers
 *
 * @section block-elements
 * 
 */
article {
	display: inline-block;
	vertical-align: top;
	width: 100%;
}
header, footer {
	display: block;
	width: 100%;
}
div, header, footer, table, fieldset, nav, hr {
	width: 100%;
}
div, article, header, footer, td, th, p {
	word-wrap: break-word;
}
object, embed, iframe {
	display: block;
}
object embed {
	width: inherit;
	height: inherit;
}
hr {
	display: block;
	margin-top: 20px;
	margin-bottom: 20px;
	border-top: solid 1px #9a9999;
}
address {
	display: inline-block;
	vertical-align: top;
	margin-bottom: 10px;
}
/**
 * Table tags
 *
 * Let's deal with table tags
 *
 * @section block-elements
 * @subsection table-elements
 * 
 */
table {
	border-collapse: collapse;
	margin-top: 20px;
	margin-bottom: 20px;
	caption-side: top;
}

table.zebra-striped tr {
	background-color: #fff;
}

table.zebra-striped tbody tr:nth-child(2n+1) {
	background-color: #f2f2f2;
}

th, td {
	padding: 5px;
}
th {
	font-weight: normal;
	color: #ffffff;
	background-color: #005bcc;
}
td[rowspan], .middle-aligned td, .middle-aligned th {
	vertical-align: middle;
}
caption {
	padding: 5px;
	text-align: center;
	background-color: #e1e1e1;
}
/**
 * Lists
 *
 * Here we set the common properties for lists
 *
 * @section lists
 * 
 */
ul, ol {
	list-style-position: inside;
}
ul, ol, dl {
	margin-top: 20px;
	margin-bottom: 20px;
}
ul ul, ol ol, ul ol, ol ul {
	margin-bottom: 0px;
}
li ul, li ol, dl dd {
	margin-left: 20px;
}
li, dd, dt {
	margin-top: 10px;
	margin-bottom: 10px;
}

li ol:first-child, li ul:first-child, li dl:first-child {
	margin-top: 20px;
}
/**
 * Form
 *
 * Aqui setamos as propriedades para uma série de elementos html usados em formulários
 *
 * @section forms
 * 
 */
fieldset {
	padding: 10px;
	border: solid 1px #bababa;
	border-radius: 2px;
	margin-top: 20px;
	margin-bottom: 20px;
	text-align: left;
	background-color: #fbfbfb;
}
legend {
	min-width: 100px;
	padding: 5px;
	margin: 0px;
	margin-bottom: 10px;
	border: solid 1px #9a9999;
	border-radius: 2px;
	background-color: #ffffff;
	color: #000;
}

form {
	display: block;
}

label,
input, 
button, 
label + .button-like, 
textarea, 
select, 
fieldset fieldset, 
label + fieldset, 
label + a, 
fieldset > a, 
label + p, 
fieldset p {
	display: inline-block;
	min-width: 200px;
	min-height: 30px;
	padding: 5px;
	border: 1px solid #b6b6b6;
	border-radius: 2px;
	margin: 0px;
	margin-bottom: 10px;
	margin-right: 5px;
}
label {
	min-width: 150px;
	padding-left: 0px;
}
label[for] {
	cursor: pointer;
	-moz-user-select: none;
	-webkit-user-select: none;
}

input[type='color'] {
	padding: 0px;
}

input[type='range'][min]:before, input[type='range'][max]:after {
	display: block;
	position: absolute;
	top: -2px;
}
input[type='range'][min]:before {
	left: 0px;
	content: attr(min);
}
input[type='range'][max]:after {
	right: 0px;
	content: attr(max);
}

input[disabled], textarea[disabled], select[disabled] {
	background-color: #ebebe4;
}

input[readonly], textarea[readonly] {
	background-color: #f2f2f2;
}

input[type="submit"], input[type="button"], input[type="reset"], button, .button-like, label + .button-like {
	border: solid 1px #b7b7b7;
	border-bottom: solid 1px #9f9f9f;
	color: #000;
	text-align: center;
	background-color: #f9f9f9;
	box-shadow: 1px 1px #e5e5e5;
	cursor: pointer;
}
.button-like {
	display: inline-block;
	min-width: 10px;
	width: auto;
	padding: 5px;
	margin-bottom: 5px;
	text-decoration: none;
}

input[type="submit"]:active, input[type="button"]:active, input[type="reset"]:active, button:active, .button-like:active {
	box-shadow: 0px -5px 0px rgba(255, 255, 255, 0.5) inset;
}

fieldset .button-like {
	min-width: 100px;
}
label, fieldset p, label ~ p, label ~ a, fieldset a {
	border: solid 1px transparent;
}
/**/
fieldset a {
	text-decoration: underline;
}
textarea {
	min-height: 100px;
}
select[multiple="multiple"] {
	min-height: 60px;
}
optgroup {
	margin-left: 5px;
	font-weight: bold;
}
option {
	padding: 3px;
	min-height: 20px;
}
input[type="radio"], input[type="checkbox"] {
	display: inline-block;
	height: 20px !important;
}

label + fieldset {
	width: auto;
}






h1:first-child, 
.h2:first-child, 
h2:first-child, 
.h2:first-child, 
h3:first-child, 
.h3:first-child, 
h4:first-child, 
.h4:first-child, 
h5:first-child, 
.h5:first-child,
table:first-child, 
p:first-child, 
p.column, 
blockquote:first-child, 
blockquote.column, 
ol:first-child, 
ol.column, 
ul:first-child, 
ul.column, 
dl:first-child, 
dl.column, 
li:first-child, 
fieldset:first-child {
	margin-top: 0px;
}

/*:not(:first-child) ? */
p:last-child, 
ol:last-child, 
ul:last-child, 
dl:last-child {
	margin-bottom: 0px;
}



/*desktops, tablets e smartphones*/
@media screen and (min-width : 500px) {
	fieldset fieldset, 
	fieldset input[type='submit'], 
	fieldset input[type='button'], 
	fieldset input[type='reset'], 
	fieldset label + .button-like, 
	fieldset button, 
	fieldset input[type="text"], 
	fieldset input[type="password"], 
	fieldset input[type="url"], 
	fieldset input[type="email"], 
	fieldset input[type="tel"], 
	fieldset input[type="color"], 
	fieldset input[type="date"], 
	fieldset input[type="datetime-local"], 
	fieldset input[type="month"], 
	fieldset input[type="time"],
	fieldset input[type="week"], 
	fieldset input[type="file"], 
	fieldset input[type="search"], 
	fieldset input[type="number"], 
	fieldset input[type="range"], 
	fieldset textarea, 
	fieldset select, 
	fieldset p, 
	fieldset div.column {
		width: 400px;
	}
}

/*telas muito pequenas*/
@media screen and (max-width : 499px) {
	fieldset > br {
		display: none;
	}

	label, 
	input, 
	button, 
	.button-like, 
	textarea, 
	select, 
	fieldset a, 
	fieldset p, 
	fieldset div.column, 
	label + a, 
	label + p {
		width: 100%;
	}

	label + a, 
	label + p {
		padding-left: 0px;
	}

	fieldset label + a, 
	fieldset label + p {
		padding-left: 5px;
	}

	fieldset label {
		padding-left: 5px;
	}
}

input[type="radio"], 
input[type="checkbox"] {
	width: 20px;
	min-width: 20px;
}

fieldset fieldset, 
label + fieldset {		
	border: solid 1px #b6b6b6;
	background-color: #fff;
}



/*----------------*/
.border-box {
	box-sizing: border-box !important;
	-moz-box-sizing: border-box !important;
	-webkit-box-sizing: border-box !important;
}
.padding-box {
	box-sizing: padding-box !important;
	-moz-box-sizing: padding-box !important;
	-webkit-box-sizing: padding-box !important;
}
.content-box {
	box-sizing: content-box !important;
	-moz-box-sizing: content-box !important;
	-webkit-box-sizing: content-box !important;
}
/*--------------------------------*/
.flex-container {
	display: flex;
	display: -moz-flex;
	display: -webkit-flex;

	flex-flow: row;
	-moz-flex-flow: row;
	-webkit-flex-flow: row;
}

.flex-container.vertical {
	-webkit-flex-flow: column;
	-moz-flex-flow: column;
	flex-flow: column;
}

	.flex-container > * {
		flex: 1;
		-webkit-flex: 1;
	}
/*-------------------------------*/
.column {
	display: inline-block;
	vertical-align: top;
}
.block {
	display: block;
}
/*-------------------------------*/
.table-like {
	display: table-cell;
}
/*-------------------------------*/
.bg-origin-border {
	background-origin: border-box;
}
.bg-origin-padding {
	background-origin: padding-box;
}
.bg-origin-content {
	background-origin: content-box;
}
/*-------------------------------*/
.bg-clip-border {
	background-clip: border-box;
	-webkit-background-clip: border-box;
}
.bg-clip-padding {
	background-clip: padding-box;
	-webkit-background-clip: padding-box;
}
.bg-clip-content {
	background-clip: content-box;
	-webkit-background-clip: content-box;
}
.bg-clip-text {
	background-clip: text;
	-moz-background-clip: text;
	-webkit-background-clip: text;
}
/*-------------------------------*/
/**
 * Menus
 *
 * Aqui setamos o basico de classes para a geração de menus
 *
 * @section classesEspecializadas
 * @subsection menus
 * 
 */
.topics-menu, 
.topics-menu ul, 
.topics-menu ol {
	list-style: none;
}

	.topics-menu li, 
	.drop-down-menu li, 
	.drop-side-menu li {
		padding: 0px;
		margin-top: 0px;
		margin-bottom: 0px;
		line-height: 2em;
	}	
		.topics-menu li a, 
		.drop-down-menu li a, 
		.drop-side-menu li a {
			display: block;
			width: 100%;
			min-height: 100%;
			padding-left: 10px;
			padding-right: 10px;
			color: inherit;
		}


/*BASE DE UM MENU DROPDOWN*/
.drop-fade li ul {
	-moz-transition-property: opacity;
	-moz-transition: 0.5s;
	
	-webkit-transition-property: opacity;
	-webkit-transition: 0.5s;
	opacity: 0;
}
.drop-fade li:hover ul {
	opacity: 1;
}
/*================================*/
.drop-down-menu {
	text-align: center;
}
	.drop-down-menu li {
		position: static;
		display: inline-block;
		list-style: none;
		min-height: 100%;
	}
		.drop-down-menu li ul {
			position: absolute;
			visibility: hidden;
			margin-left: 0px;
			margin-top: 0px;
		}
		.drop-down-menu li:hover > ul {
			visibility: visible;	
		}
		.drop-down-menu li li {
			display: block;
		}
/*///////BASE DE UM MENU DROPSIDE*/
.drop-side-menu li {
	position: relative;
	list-style: none;
}
	.drop-side-menu li ul {
		visibility: hidden;
	}
	.drop-side-menu li:hover > ul {
		visibility: visible;
	}
.drop-side-menu ul {
	position: absolute;
	top: 0px;
	margin-top: 0px;
}
/*---------------------------*/
.photo {
	display: block;
	width: 150px;
	height: 113px;
	overflow: hidden;
}
.photo.column {
	display: inline-block;
}
	.photo img {
		width: 100%;
	}

img[style*="float:left"],
.photo.float-left {
	margin-right: 20px;
}
img[style*="float:right"],
.photo.float-right {
	margin-left: 20px;
}

/*///////////as bases para uma galeria de imagens*/
.standart-galery {
	text-align: center;
}
	.standart-galery li {
		display: inline-block;
		vertical-align: top;
		margin-top: 0px;
		text-align: center;
	}
		.standart-galery li p {
			margin: 0px;
		}
/*////////////para paginação de resultados de busca*/
.basic-paginator {
	
}
	.basic-paginator ul li {
		display: inline-block;
		list-style: none;
		margin-top: 0px;
	}
		.basic-paginator ul li a {
			display: block;
			width: 100%;
			height: 100%;
			color: inherit;
		}
/*////////////////////////*/
.ellipsis {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.unselectable {
	-moz-user-select: none;
	-webkit-user-select: none;
}
.intangible {
	pointer-events: none;
}

.uppercase {
	text-transform: uppercase;
}
.lowercase {
	text-transform: lowercase;
}

.small-caps {
	font-variant: small-caps;
}

.justify {
	text-align: justify;
}

.center-text {
	text-align: center;
}

.right-text {
	text-align: right;
}

.left-text {
	text-align: left;
}

.text-in-columns {
	column-count: 3;
	-moz-column-count: 3;
	-webkit-column-count: 3;

	column-gap: 40px;
	-moz-column-gap: 40px;
	-webkit-column-gap: 40px;

	column-rule: solid 1px #9a9999;
	-moz-column-rule: solid 1px #9a9999;
	-webkit-column-rule: solid 1px #9a9999;

	text-align: justify;
}

.zoomable-sample {
	z-index: 900;
	display: inline-block;
}
	a.zoomable-sample img {
		display: block;
		position: absolute;
		right: 0px;
		top: 0px;
		width: 0px;
		transition: width, right, 1s;
		-moz-transition: width, right, 1s;
		-webkit-transition: width, right, 1s;
	}
	a.zoomable-sample:hover img {
		right: -150px;
		width: 150px;		
	}


.inline {
	display: inline;
}

ul.inline, 
ol.inline {
	display: block;
}
	ul.inline li, 
	ol.inline li {
		display: inline-block;
		width: auto;
		margin-top: 0px;
		margin-bottom: 0px;
	}



.absolute-center {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	height: 50%;
	width: 50%;
	margin: auto;
}

.float-right {
	float: left;
}
.float-right {
	float: right;
}

/*
resoluçoes de telas:
240 x 320
295 x 515
320 x 480
320 x 240
480 x 320
515 x 295
600 x 1024
768 x 1024
1024 x 768
1024 x 600
*/




/* 	all and... vai vai pegar a resolução do monitor
	screen and... vai pegar o tamanho do browser
*/


/*




clip




*/