body {
    font-family: sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 16px;
    overflow-x: hidden;
}

p {
    text-align: justify;
    font-size: 90%;
}

p:first-letter {
    font-size: 200%;
}

/************************************ first-page ************************************/
.first-page {
    padding: 64px 0;
}

.first-page .document-title {
    font-size: 300%;
    font-weight: bold;
    text-align: center;
}

.first-page .document-meta {
    font-size: 60%;
    margin: 32px auto;
    max-width: 400px;
}

.first-page .document-meta .title {
    text-align: right;
    color: silver;
    text-transform: capitalize;
    vertical-align: top;
}

.first-page .document-meta .title:after {
    content: ':';
}

.first-page .document-meta .contents {
    color: gray;
}

/************************************ headers ************************************/
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: black;
    text-decoration: none;
}

h1 .identation,
h2 .identation,
h3 .identation,
h4 .identation,
h5 .identation,
h6 .identation {
    color: silver;
    padding-right: 0.5em;
}

h1:hover .identation,
h2:hover .identation,
h3:hover .identation,
h4:hover .identation,
h5:hover .identation,
h6:hover .identation {
    text-decoration: underline;
}

h1:target .identation,
h2:target .identation,
h3:target .identation,
h4:target .identation,
h5:target .identation,
h6:target .identation {
    color: dodgerblue;
}

/************************************ code ************************************/
.code-frame {
   padding: 16px 0;
}

.code-title {
    border: solid gray 1px;
    background-color: gray;
    color: white;
    font-size: 14px;
    padding: 2px;
}

.code-frame pre {
    display: block;
    margin: 0;
    border: dashed gray 1px;
    border-top: none;
    overflow: hidden;
}

.code-frame:hover pre {
    overflow: auto;
}

/************************************ index ************************************/
.index {
    border: solid silver 1px;
    background: #F5F5F5;
    padding: 16px;
}

.index a {
    color: dodgerblue;
    text-decoration: none;
}

.index a:hover {
    text-decoration: underline;
}

.index .identation {
    padding-right: 0.5em;
}

.index ol {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.index ol ol {
    padding-left: 32px;
}







blockquote {
    border: solid silver 1px;
    padding: 16px 16px 16px 48px;
    font-style: oblique;
    background-color: #F4F4F4;
    margin: 0;
}

.comentario {
    display: inline-block;
	margin-left: 4px;
	position: absolute;
	max-width: 600px;
	border-radius: 3px;
	overflow: hidden;

	transition: all 0.3s ease;
}

.comentario-ver {
	font-size: 10px;
	padding: 3px;
	cursor: pointer;
	background-color: silver;
	color: white;
	width: auto;
	min-width: 90px;
	text-align: center;

	transition: all 0.3s ease;
}

.comentario-texto {
	display: none;
	padding: 8px;
	border: solid orange 1px;
	max-height: 400px;
	overflow-y: auto;
}

.comentario:hover {
	z-index: 999;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.4);
}

.comentario:hover .comentario-ver {
	width: 100%;
	background-color: orange;
}

.comentario:hover .comentario-texto {
	display: block;
	background-color: rgba(255,255,255, 0.85);
	
}



