* {
    box-sizing: border-box;
}

/* Style the body */
body {
	font-family: Arial, Helvetica, sans-serif;
	margin: auto;
	max-width: 950px;
	background-color: #424242;
}

/* Header/logo Title */
.header {
	text-align: center;
	color: white;
	background-color: #424242;
	padding-bottom: 1px;
}

/* Increase the font size of the heading */
.header h1 {
    font-size: 40px;
}

/* Style the top navigation bar */
.navbar {
	overflow: hidden;
	background-color: #1D5792;
	border-top-width: 6px;
	border-top-style: solid;
	border-top-color: #008000;
	border-bottom-width: 8px;
	border-bottom-style: solid;
	border-bottom-color: #A29882;
}

/* Style the navigation bar links */
.navbar a {
	float: left;
	display: block;
	color: white;
	text-align: center;
	padding: 14px 20px;
	text-decoration: none;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #143D65;
}

/* Right-aligned link */
.navbar a.right {
	float: right;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #143D65;
	border-right-style: none;
}

/* Change color on hover */
.navbar a:hover {
	background-color: #143D65;
	color: white;
}

/* Column container */
.row {
	display: -ms-flexbox; /* IE10 */
	display: flex;
	-ms-flex-wrap: wrap; /* IE10 */
	flex-wrap: wrap;
	border: thin solid #A3A3A3;
}

.RenglonGaleria {
  display: flex;
}

.ColumnaGaleria {
  flex: 20%;
  padding: 3px;
}

.ImagenRedonda {
    border-radius: 5px;
	cursor: pointer;
    transition: 0.3s;
}
.ImagenRedonda:hover {opacity: 0.7;}

/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.side {
	-ms-flex: 30%; /* IE10 */
	flex: 30%;
	background-color: #ECE9D8;
	padding: 10px;
	border-left-width: thin;
	border-left-style: solid;
	border-left-color: #BDB7A7;
}

/* Main column */
.main {
	-ms-flex: 70%; /* IE10 */
	flex: 70%;
	background-color: #ECE9D8;
	padding: 20px;
}

/* Doble columna 50% */
.DobleColumna {   
    -ms-flex: 50%; /* IE10 */
    flex: 50%;
    background-color: white;
    padding: 10px;
}

.ulDoble {
    column-count: 2;
}

/* Fake image, just for this example */
.fakeimg {
    background-color: #aaa;
    width: 100%;
    padding: 20px;
}

img {
	width: 100%;
}

.Enlace {
	white-space:nowrap;
}
.Sangria {
	text-align: justify;
	text-indent: 15px;
}
.Negritas {
	font-weight: bold;
}
.vineta {
	list-style-image: url(../plecas/vineta_ul.gif);
	text-indent: 0px;
	text-align: justify;
	list-style-position: outside;
	page-break-after: always;
	line-height: 150%;
}
figure {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
}
figcaption {
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
	background-color: #424242;
	font-weight: normal;
	color: #FFF;
	padding-top: 10px;
	padding-bottom: 10px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	letter-spacing: 0.2em;
}
hr {
	border: 1px solid #BDB7A7;
}
/* Footer */
.footer {
	padding: 5px 20px;
	text-align: center;
	background-color: #BDB6A6;
	border: thin solid #BDB7A7;
}



/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
    .row {   
        flex-direction: column;
    }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
    .navbar a {
        float: none;
        width: 100%;
    }
	.ulDoble {
    column-count: 1;
    }
	figcaption {
	font-family: "Courier New", Courier, monospace;
	letter-spacing: 0em;
	}
}
