/* 

	Tema do Efetividade 
	Refeito a partir de 10.5.2026, a partir do último tema que o site usava quando
	suspendeu suas atividades em 2016, e incorporando algumas evoluções a partir
	do tema do Trilux (que também era baseado originalmente no Rocket)
	
	Augusto Campos, 2004-2026

*/

body {
	font-family: 
		  "Charter",           	/* macOS / iOS */
		  "Bitstream Charter", 	/* Linux (GNOME/KDE) */
		  "Sitka Text",        	/* Windows (Moderno) */
		  "Georgia",           	/* Windows/Mac (Clássicos) */
		  "Cambria", 			/* Genéricos e fallback, daqui pra baixo */
		  "Garamond", 
		  "Baskerville", 
		  "Times New Roman", 
		  "serif";             
	font-size:14pt;
	color: #444;
}

h1 a,h2 a,h3 a {
	color: #333332;
}

h1, h2, h3 {
	font-family: 
		  -apple-system,              /* macOS/iOS (San Francisco) */
		  BlinkMacSystemFont,         /* macOS clássico com Chrome/Safari */
		  "Segoe UI Variable Display",/* Windows 11 (Optimized for headers) */
		  "Segoe UI",                 /* Windows 10 & 7 */
		  "Inter",                    /* Linux (KDE/GNOME) */
		  "Roboto",                   /* Android */
		  "Helvetica Neue",           /* Clássica (Linux e Mac) */
		  "Arial",                    /* Fallback */
		  sans-serif;                 /* Fallback */	

	color: #222;
	line-height:120%;
}

h1 a,h2 a,h3 a {
	color: #222;
}

#content h2 a,#content h3 a {
	color: #222;
	text-decoration: underline;
}

mark, .marker {
	background-color: #ffc;
	color:black;
	text-decoration: none;
} 

	
hr {
    border: none;
    height: 1px;
    background: #e0e0e0; /* The line color */
    margin: 40px 0;
    position: relative;
    overflow: visible;
}


/* --------------------------------------------
		NOVO CABEÇALHO 2026
----------------------------------------------- */




        /* Header Container */
        .site-header {
            --primary-bg: #ffffff;
            --text-main: #1a1a1a;
            --text-muted: #666666;
            --accent: firebrick;
            --border-color: #eeeeee;
            
            background-color: var(--primary-bg);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.02);
            margin-bottom: 0.9rem;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        }

        /* Scoped reset: applies only to the header and its descendants */
        .site-header, 
        .site-header * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .header-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0.75rem 1.5rem;
        }

        /* Top Row: Brand and Actions */
        .header-main {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        .header-brand {
            flex-shrink: 0;
        }

        .header-site-title {
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            text-transform: uppercase;
            text-decoration: none;
            color: var(--text-main);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .header-site-title span {
            color: var(--accent);
        }

        .header-site-motto {
            font-size: 0.75rem;
            color: var(--text-muted);
            font-weight: 500;
            display: block;
            margin-top: -2px;
        }

        /* Middle: Search */
        .header-search-container {
            flex-grow: 1;
            max-width: 400px;
        }

        .header-search-form {
            display: flex;
            background: #f3f4f6;
            border-radius: 8px;
            padding: 4px;
            border: 1px solid transparent;
            transition: all 0.2s ease;
        }

        .header-search-form:focus-within {
            background: #fff;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }

        .header-search-input {
            flex-grow: 1;
            border: none;
            background: transparent;
            padding: 6px 12px;
            font-size: 0.9rem;
            outline: none;
        }

        .header-search-button {
            background: transparent;
            border: none;
            padding: 0 10px;
            cursor: pointer;
            color: var(--text-muted);
        }

        /* Actions: RSS and Menu Toggle */
        .header-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .header-rss-link {
            color: #f26522; /* Classic RSS Orange */
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: transform 0.2s;
        }

        .header-rss-link:hover {
            transform: scale(1.1);
        }

        .menu-toggle {
            display: flex;
            flex-direction: column;
            gap: 4px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            border-radius: 4px;
        }

        .menu-toggle:hover { background: #f3f4f6; }

        .header-bar {
            width: 20px;
            height: 2px;
            background: var(--text-main);
            transition: 0.3s;
        }

        /* Collapsible Menu */
        .nav-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            background: #fff;
        }

        .nav-menu.active {
            max-height: 500px;
            border-top: 1px solid var(--border-color);
        }

        .nav-list {
            list-style: none;
            padding: 1rem 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 10px;
        }

        .nav-link {
            text-decoration: none;
            color: var(--text-main);
            font-weight: 500;
            font-size: 0.95rem;
            padding: 8px 12px;
            border-radius: 6px;
            display: block;
            transition: 0.2s;
        }

        .nav-link:hover {
            background: #f3f4f6;
            color: var(--accent);
        }

        /* Sub-Header: Topics */
        .topics-bar {
            background: #fafafa;
            border-bottom: 1px solid var(--border-color);
            padding: 6px 0;
            font-size: 0.75rem;
            color: var(--text-muted);
            text-align: center;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        @media (max-width: 768px) {
            .header-main {
                flex-wrap: wrap;
                gap: 1rem;
            }
            .search-container {
                order: 3;
                max-width: 100%;
            }
            .nav-list {
                grid-template-columns: 1fr;
            }
        }
    </style>


/* --------------------------------------------
		FIM DO NOVO CABEÇALHO 2026
----------------------------------------------- */



hr::after {
    /* The Unicode Fleuron (❦ is U+2766) */
    content: "⁂"; 
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 0 15px;
    background: #fff; /* Matches your page background to "cut" the line */
    color: firebrick; /* Your accent color */
    font-size: 36px;
}

#content h2.mylead {
    font-size: 1.5rem;            
    line-height: 1.7;              
    color: #333;                   
	/* a mesma fonte do corpo: */
	font-family: 
		  "Charter",           	/* macOS / iOS */
		  "Bitstream Charter", 	/* Linux (GNOME/KDE) */
		  "Sitka Text",        	/* Windows (Moderno) */
		  "Georgia",           	/* Windows/Mac (Clássicos) */
		  "Cambria", 			/* Genéricos e fallback, daqui pra baixo */
		  "Garamond", 
		  "Baskerville", 
		  "Times New Roman", 
		  "serif";             
    
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    
    border-left: 3px solid firebrick;
    
}

/* "Drop Cap"  */
#content h2.mylead::first-letter {
    font-size: 5rem;
    font-weight: 800;
    float: left;
    margin-right: 10px;
    line-height: 1;
    color: #000;
    font-family: -apple-system, sans-serif; /* High contrast with serif text */
}


sup {
	position: relative; 
	top: -0.5em; 
	font-size: 80%;
	vertical-align: inherit;
}

.rodape_link:before {
	content:"[";
}
.rodape_link:after {
	content:"]";
}

.rodape_link {
   	vertical-align: baseline;
   	position: relative;
   	top: -0.4em;
	font-size: 9pt;
}

.text_ad_top {
	display: none;
}

#rodapes_halfline {
	margin-top:2em;
	border-top:1px solid #e0e0e0;
	margin-bottom:0;
	padding-bottom:0.4em;
	width: 40%;
}

#rodapes {
	font-family: "Helvetica Neue", Helvetica, Verdana, sans-serif;
	font-size: 9pt;
	line-height:18pt;
}

a { 
	text-decoration: none;
	color: #0033FF;
}

a:hover { 
	text-decoration: underline;
}


#single-body {
	position: relative;
}


#content h1 {
	margin-bottom: 0.2em;
	font-size:2.5em;
}


#single h1 {
	font-size: 32px;
	margin-top:6px;
}

tt, code {
	font-family: Menlo, Monaco,"Andale Mono","Lucida console", "Courier New", monospace;
	font-size: 11pt;
	background-color: #fdf6e3;
	border-radius: 0.4em;
	padding: 2pt 4pt;
}
pre {
	font-family: Menlo, Monaco,"Andale Mono","Lucida console", "Courier New", monospace;
	font-size: 10pt;
	background-color: #fdf6e3;
	border-radius: 0.4em;
	border: 1px solid #e7dec3;
	line-height: 1.45em;
	margin-bottom: 2.1em;
	padding: 0.8em 1em;
	color: #586e75;
	overflow: auto;
}
kbd {
	display: inline;
	display: inline-block;
	min-width: 1em;
	padding: .2em .3em;
	font: normal .85em/1 Monaco, "Lucida Grande", Lucida, Arial, sans-serif;
	text-align: center;
	text-decoration: none;
	border-radius: .3em;
	user-select: none;
	background: rgb(250, 250, 250);
	color:  rgb(50, 50, 50);
	text-shadow: 0 0 2px rgb(255, 255, 255);
	box-shadow: inset 0 0 1px rgb(255, 255, 255), inset 0 0 .4em rgb(200, 200, 200), 0 .1em 0 rgb(130, 130, 130), 0 .11em 0 rgba(0, 0, 0, .4), 0 .1em .11em rgba(0, 0, 0, .9);
}


blockquote {
	margin: 6pt 28pt;
	padding:0.8em 8pt 0.8em 16pt;
	line-height:1.6;
	border-left:8px solid #78C0A8 ;
	background:#EDEDED;
	border-radius: 0 .6em .6em 0;
}



/** citações - q e q class=leftq - pull-quote styles **/

q:before,
q:after {
	content:"";
}

q,
.myquote {
	display: block;
	color: firebrick;
	font-size:20pt;
	font-family: 				/* Serifadas e boas pra títulos e destaques */
	  "Iowan Old Style",      	/* macOS/iOS modernos */
	  "Apple Garamond",       	/* macOS (clássicos) */
	  "Sitka Heading",        	/* Windows (modernos) */
	  "Palatino",             	/* Windows/Mac (Clássicos) */
	  "Book Antiqua",         	/* Alt da Palatino no Windows) */
	  "URW Palladio L",       	/* Alt da Palatino no Linux/GNOME */
	  "serif";                	/* Fallback */
	line-height: 28pt;
	border-top: 1px solid #d0d0d0;
	border-bottom: 1px solid #d0d0d0;
	margin-bottom:1em;
	padding:8pt 0;
}

.leftq:before {
	content: attr(data-q); 
	display: block; 
	padding: 12px 15px; 
	margin-left: 0px; 
	width: 140px; 
	float: left; 
	margin-right: 10px; 
	background: #555; 
	color: #d5d5d5;
	border-radius: 5px;
	font-weight: normal; 
	line-height: 14pt; 
	font-size: 12pt; 
	font-style: italic; 
	/* a mesma fonte dos títulos: */
	font-family: 
		  -apple-system,              /* macOS/iOS (San Francisco) */
		  BlinkMacSystemFont,         /* macOS clássico com Chrome/Safari */
		  "Segoe UI Variable Display",/* Windows 11 (Optimized for headers) */
		  "Segoe UI",                 /* Windows 10 & 7 */
		  "Inter",                    /* Linux (KDE/GNOME) */
		  "Roboto",                   /* Android */
		  "Helvetica Neue",           /* Clássica (Linux e Mac) */
		  "Arial",                    /* Fallback */
		  sans-serif;                 /* Fallback */	
}


.follow
{
	clear: both;
	border-top: solid 1px #ddd;
	padding: .5em;
	border-bottom: solid 1px #ddd;
	background: rgba(240,220,220,0.25);
	box-shadow: 0 0 2px rgba(0,0,0,0.25) inset;
	color: #777;
	text-align: center;
}

#content p, #content li {
	line-height: 1.6em;
}


#content li, #content dt {
	margin-bottom: 0.6em;
}

#content dt {
	margin-top: 0.4em;
}

#content .usertext {
	margin-left: 2em;
}

#content aside {
	margin-top: 1.2em;
	margin-bottom:0.4em;
	border-top:1px solid #e0d0d0;
	margin-bottom:8em;	
}

figure {
	max-width: 90%;	
	margin-left: auto;
	margin-right: auto;
}
figcaption {
	margin: 6pt auto 4pt auto;
	max-width: 80%;
	font-style: italic;
	text-align: center;
	font-size: 14pt;
	# mesma fonte dos títulos
	font-family: 
		  -apple-system,              /* macOS/iOS (San Francisco) */
		  BlinkMacSystemFont,         /* macOS clássico com Chrome/Safari */
		  "Segoe UI Variable Display",/* Windows 11 (Optimized for headers) */
		  "Segoe UI",                 /* Windows 10 & 7 */
		  "Inter",                    /* Linux (KDE/GNOME) */
		  "Roboto",                   /* Android */
		  "Helvetica Neue",           /* Clássica (Linux e Mac) */
		  "Arial",                    /* Fallback */
		  sans-serif;                 /* Fallback */	
}
img {
	border:0;
	max-width:99%;
	height: auto;
}



.clearfooter {
	clear: both;
	padding-top:2em;
}

#footer {
	clear: both;
	text-align: center;
	margin: 2em 4em;
	font-size:72%
}

/* Axe - monthly index */

#monthly_post {
	clear:both;	
	padding-top:12pt;
}


#monthly_post h2 {
	width:81%;
	float:right;
	margin-top:0;
	padding-top:0;
	font-size:12pt;
	font-weight: normal;
	line-height:16pt;
}

#monthly_post .date {
	width:15%;
	float:left;
	text-align: right;
	border: 0;
	margin:0;
	padding:0;
	font-size:12pt;
	color: #141718;
	font-weight: bold;
	line-height:16pt;
	font-family: Helvetica, Arial, sans-serif;	
}


#monthly_post h2 a {
	color: #444748;
}
/* fim -- (Axe - monthly index) */





#sidebar {
}

.quadrodestaque {
	width:100%;
	margin-top:10px;
	height:290px;
	border: 0;
	padding: 0;
}

.umdestaque {
	float:left;
	width:220px;
	max-width:30%;
	height: 280px;
	border: 0;
	padding: 0;
	margin-right:10px;
	text-align: center;
	font-size:85%;
	vertical-align: middle;
}

.legendadestaque {
	top: -30px;
}


#rightad {
	display: none
}

.social-plugs {
	display: none;
}

#quadropostsrecentes {
	display: none;
	font-family:"Optima","Arial","Sans-serif";
}	

#quadropostsrecentes > ul {
	color:red;
	margin-top:10px;
	margin-left:-20px;
	list-style-position:outside;
	list-style-type:square;
}

#quadropostsrecentes li {
	margin-top:20px;
}

#quadropostsrecentes p {
	padding-top: 2px;
	margin-top: 2px;
	padding-left: 5px;
}

.shadow {
  -moz-box-shadow:    3px 3px 5px 6px #ccc;
  -webkit-box-shadow: 3px 3px 5px 6px #ccc;
  box-shadow:         3px 3px 5px 6px #ccc;
}

.rounded {
/* 4 rounded corners */
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;	
	-moz-border-radius: 10px;
	border-radius: 10px;
}

.icon {
	float:right; 
	width:150px; 
	height: auto; 
	margin-left: 12px;
	border-radius: 10px;
}


.right {
	float:right;
	max-width: 30%;
	max-height:8em;
	height: auto; 
	margin-left: 0.5em;
	margin-top: 0.5em;
	border-radius: 10px;
}

/*******************************************************
		Media Query:  impressora 
*******************************************************/

@media only print {
	/*Reset Style*/
	body {
		margin:0; padding:0; line-height: 1.4em; 
		word-spacing:1px; letter-spacing:0.2px; 
		font: 14pt Helvetica, Arial, "Lucida Grande", sans-serif; color: #000;
	}
	img {
		max-height: 25%;
		width: auto;
	}
	#header h1 {
		font-size: 80px;
	}
	#header #destaques {
		display: none;
	}	
	#rightad, #destaques, .social-plugs, .socialplugs, #midad, .topad, #sidebar, .comments, .quadrodestaque {
		display: none;
	}	
	#content aside {
		margin-bottom:1em;
	}	

}

/*******************************************************
		Media Query:  		WIDE DESKTOP 
*******************************************************/

@media only screen and (min-width: 1100px) {

	#single.post h1.entry-title {
		width:900px;
		font-size:45px;
	}
	
	#rightad {
		display: block;
		position: absolute;
		left: 740px;
		top: -300px; /* era 20px, "below the fold" */
	}	
	
	
	.social-plugs {
		display: block;
		position: absolute;
		left: 650px;
		top:10px;
		width:250px;
	}

	#quadropostsrecentes {
		display: block;
		position: absolute;
		left: 0px;
		top:190px;
		width:160px;
		font-size:9pt;
		border-top:1px solid black;
	}	
	
}


/*******************************************************
		Media Query:  Desktop 1024~1099, inclui iPad paisagem 
*******************************************************/

@media only screen and (min-width: 1024px) and (max-width: 1099px) {

	#quadropostsrecentes {
		display: block;
		position: absolute;
		left: 0px;
		top:190px;
		width:120px;
		font-size:9pt;
		border-top:1px solid black;
	}		
}	

/*******************************************************
		Media Query:  desktop, mas só até 1099
*******************************************************/

@media only screen and (min-width: 901px) and (max-width: 1099px) {
	.social-plugs {
		display: block;
		position: absolute;
		left: 500px;
		top:10px;
		width:250px;
	}	
}

/*******************************************************
		Media Query:  desktop (geral, 901px pra cima)
*******************************************************/

@media only screen and (min-width: 901px) {

	#page {
		margin-left: auto ;
		margin-right: auto ;	
		padding-right: 1em;
		padding-left: 1em;
		width:700px;
	}

	#content {
		display: block;
		float: left;
		max-width:700px;
		padding-right: 10px;
	}

	#sidebar {
		display: block;
		float: right;
		width: 180px;
	}
	#content .socialplugs {
		width:50%;
		float:left;
	}
	#content .postmetadata {
		width:50%;
		float:right;
		padding-right:12px;
		text-align: right;
		min-height:50px;
	}	
	#content time {
		clear:both;
		float: right;
		width:50%;
		text-align: right;
	}	
	#header h1 {
		font-size:350%
	}	

}	



/*******************************************************
		Media Query:  tablets maiores 
*******************************************************/

@media only screen and (min-width: 820px) and (max-width: 900px) {
	#page {
		margin-left: auto ;
		margin-right: auto ;	
		padding-right: 1em;
		padding-left: 1em;
		max-width:766px;
	}

	#content {
		display: block;
		float: left;
		max-width:700px;
		padding-right: 10px;
	}

	#sidebar {
		display: block;
		float: right;
		width: 180px;
	}
	#content .socialplugs {
		width:50%;
		float:left;
	}
	#content .postmetadata {
		width:50%;
		float:right;
		padding-right:12px;
		text-align: right;
	}	
	#header h1 {
		font-size:350%
	}	
	.social-plugs {
		display: block;
		position: absolute;
		left: 500px;
		top:10px;
		width:250px;
	}	
}	


/*******************************************************
		Media Query:  tablets menores 
*******************************************************/

@media only screen and (min-width: 766px) and (max-width: 819px) {
	#page {
		margin-left: auto ;
		margin-right: auto ;	
		padding-right: 1em;
		padding-left: 1em;
		max-width:765px;
	}

	#content {
		display: block;
		float: left;
		max-width:700px;
		padding-right: 10px;
	}

	#sidebar {
		display: block;
		float: right;
		width: 180px;
	}
	#content .socialplugs {
		width:50%;
		float:left;
	}
	#content .postmetadata {
		width:50%;
		float:right;
		padding-right:12px;
		text-align: right;
	}	
	#header h1 {
		font-size:350%
	}	

}	


/*******************************************************
		Media Query:  tudo que for de tablet pra cima (menores, maiores e desktop)
*******************************************************/

@media only screen and (min-width: 766px) {

	#single h1 {
	}
	
	.topad {
		margin-top: 16px;
		padding-left: 30px;
		width:750px;
	}

/* #midad: anuncio abaixo do titulo do artigo */	

	#midad {
		display: none;
	}
	#midad_both {
		display: none;
	}	
	#midad_main {
		display: none;
	}	
	#midad_side {
		display: none;
	}	
	
}


/*******************************************************
		Media Query:  smartphones 
*******************************************************/
@media only screen and (max-width: 765px) {
	#page {
		margin-left: auto ;
		margin-right: auto ;	
		width: 90%;
		padding-right: 1em;
		padding-left: 1em;
		max-width:546px;
	}
	#content .socialplugs {
		width:100%;
	}
	#content .postmetadata {
		width:100%;
		text-align: left;
	}
	#sidebar {
		display: none;
	}
	#header h1 {
		font-size:250%
	}			

	#content h1 {
		margin-bottom: 0.2em;
		font-size:2em;
	}

	#single h1 {
		font-size: 30px;
	}
	.topad {
		display:none;
	}
	
/* #midad: anuncio abaixo do titulo do artigo */	

	#midad {
		display: none;
	}
	#midad_both {
		display: none;
	}	
	#midad_main {
		display: none;
	}	
	#midad_side {
		display: none;
	}	
}	


/*******************************************************
		Media Query:  telas pequenas na altura 
*******************************************************/

/*
@media only screen and (max-height: 660px) {
	.topad {
		display:none;
	}
}
*/







/* botão */

.button {
	-moz-box-shadow:inset 0px 1px 0px 0px #ffffff;
	-webkit-box-shadow:inset 0px 1px 0px 0px #ffffff;
	box-shadow:inset 0px 1px 0px 0px #ffffff;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ededed), color-stop(1, #dfdfdf) );
	background:-moz-linear-gradient( center top, #ededed 5%, #dfdfdf 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#dfdfdf');
	vertical-align: middle;
	background-color:#ededed;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;
	border:1px solid #dcdcdc;
	display:inline-block;
	color:#777777;
	font-family:arial;
	font-size:12px;
	font-weight:bold;
	padding:3px 12px;
	text-decoration:none;
	text-shadow:1px 1px 0px #ffffff;
}.button:hover {
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #dfdfdf), color-stop(1, #ededed) );
	background:-moz-linear-gradient( center top, #dfdfdf 5%, #ededed 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#dfdfdf', endColorstr='#ededed');
	background-color:#dfdfdf;
}.button:active {
	position:relative;
	top:1px;
}
/* This imageless css button was generated by CSSButtonGenerator.com */


/* teclas <key> */


/**
 * A simple stylesheet for rendering beautiful keyboard-style elements.
 * Author:  Michael Hüneburg
 * Website: http://michaelhue.com/keyscss
 * License: MIT License (see LICENSE.txt)
 */
/* Base style, essential for every key. */
kbd, .key {
	display: inline;
	display: inline-block;
	min-width: 1em;
	padding: .2em .3em;
	font: normal .85em/1 "Lucida Grande", Lucida, Arial, sans-serif;
	text-align: center;
	text-decoration: none;
	-moz-border-radius: .3em;
	-webkit-border-radius: .3em;
	border-radius: .3em;
	border: none;
	cursor: default;
	-moz-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}
kbd[title], .key[title] {
	cursor: help;
}
/* Dark style for display on light background. This was the default style. */
kbd.dark, .dark-keys kbd, .key, .key.dark, .dark-keys .key {
	background: rgb(80, 80, 80);
	background: -moz-linear-gradient(top, rgb(60, 60, 60), rgb(80, 80, 80));
	background: -webkit-gradient(linear, left top, left bottom, from(rgb(60, 60, 60)), to(rgb(80, 80, 80)));
	color: rgb(250, 250, 250);
	text-shadow: -1px -1px 0 rgb(70, 70, 70);
	-moz-box-shadow: inset 0 0 1px rgb(150, 150, 150), inset 0 -.05em .4em rgb(80, 80, 80), 0 .1em 0 rgb(30, 30, 30), 0 .1em .1em rgba(0, 0, 0, .3);
	-webkit-box-shadow: inset 0 0 1px rgb(150, 150, 150), inset 0 -.05em .4em rgb(80, 80, 80), 0 .1em 0 rgb(30, 30, 30), 0 .1em .1em rgba(0, 0, 0, .3);
	box-shadow: inset 0 0 1px rgb(150, 150, 150), inset 0 -.05em .4em rgb(80, 80, 80), 0 .1em 0 rgb(30, 30, 30), 0 .1em .1em rgba(0, 0, 0, .3);
}

/* Light style for display on dark background. */
kbd, kbd.light, .light-keys kbd, .key.light, .light-keys .key {
	background: rgb(250, 250, 250);
	background: -moz-linear-gradient(top, rgb(210, 210, 210), rgb(255, 255, 255));
	background: -webkit-gradient(linear, left top, left bottom, from(rgb(210, 210, 210)), to(rgb(255, 255, 255)));
	color:  rgb(50, 50, 50);
	text-shadow: 0 0 2px rgb(255, 255, 255);
	-moz-box-shadow: inset 0 0 1px rgb(255, 255, 255), inset 0 0 .4em rgb(200, 200, 200), 0 .1em 0 rgb(130, 130, 130), 0 .11em 0 rgba(0, 0, 0, .4), 0 .1em .11em rgba(0, 0, 0, .9);
	-webkit-box-shadow: inset 0 0 1px rgb(255, 255, 255), inset 0 0 .4em rgb(200, 200, 200), 0 .1em 0 rgb(130, 130, 130), 0 .11em 0 rgba(0, 0, 0, .4), 0 .1em .11em rgba(0, 0, 0, .9);
	box-shadow: inset 0 0 1px rgb(255, 255, 255), inset 0 0 .4em rgb(200, 200, 200), 0 .1em 0 rgb(130, 130, 130), 0 .11em 0 rgba(0, 0, 0, .4), 0 .1em .11em rgba(0, 0, 0, .9);
}


/* navegação */


nav#pagination
{
	padding: 20px 40px 100px 0;
	clear: both;
	max-width: 780px;
}

nav#pagination span { display: block; }
nav#pagination span.prev { float: right; }
nav#pagination span.next { float: left; }

nav#pagination span.next a,nav#pagination span.prev a
{
	padding: 10px;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	font-family: sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	border: 2px solid #666;
	color: #666;
}

nav#pagination span.next a:hover,nav#pagination span.prev a:hover { border-color: inherit; }


/* cabeçalhos */

#header {
	position: relative;
	margin-top: 0;
	padding-top: 0;
}

#header h1 {
	color: green;
	margin:0;
	padding:0;
	line-height: 100%;
}

.subtitulo-cabec {
	text-align: right;
	font-size: 9pt;
	font-weight: normal;
}

#header #destaques {
	color:yellow;
	font-weight: normal;
	display: inline;
	font-size:10pt;
	color: #333332;
}

#header #destaques li {
	display: inline;	
}

#header #destaques li:before {
	content:"• ";	
}

#header #destaques a {
	color: darkblue;
}

#footer #menu {
	display:inline;
	color:red;
	font-size:11pt;
}

#footer #menu li {
	display:inline;
	color:red;
}

#footer #menu li:before {
	content:"• ";	
}

/* definido nas media-queries
.social-plugs {
	position: absolute;
	left: 500px;
	top:10px;
	width:250px;
}
*/

.search {
	float: right;
}

.social-icon-new {
	float: right;
}	
