
/***********************************************/
/* HTML tag styles                             */
/***********************************************/ 

body {
	font-family: sans-serif; color: black;
	text-align: justify;
	font-size: large;
background-color:antiquewhite;}

a:link, a:visited {text-decoration: none; color:darkred;}
a:hover{text-decoration: underline;}

/*div { display:flex; flex-wrap:nowrap; justify-content:center; align-items: center; align-content: flex-start; padding:0px 10px; } 
div > div {flex-grow:0; }*/
.flex-container {
    display: -webkit-flex;
    display: flex;
	align-items: center; /**/
    width: 650px; /**/
   /* background-color: lightgrey;*/

}

.flex-item {
  /*  background-color: cornflowerblue;*/
	padding: 0px 5px;
	/*align-content: center;*/
    /*width: 100px;*/
    /*height: 100px;*/
    /*margin: 10px;*/
}
.item1 {
    -webkit-flex: 6;
    flex: 6;
	text-align: right;
}

.item2 {
    -webkit-flex: 1;
    flex: 1;
	text-align: center;
}

.item3 {
    -webkit-flex: 5;
    flex: 5;
	text-align: left;
}

.titulo {font-family: sans-serif; text-align: center; font-size: 200%; font-weight:bold; color: black; margin: 0px; padding: 0px; text-shadow: 2px 2px 3px grey;}
.text_60 {font-size: 60%;}
.text_80 {font-size: 80%;}
.text_80C {font-size: 80%; text-align: center;}
.text_80j {font-size: 80%; text-align: justify;}
.text_80D {font-size: 80%; text-align: right;}
.text_c {text-align: center;}
.text_i {text-align: left;}
.text_j {text-align: justify;}
.text_d {text-align: right;}
.text_120 {font-size: 120%;}
.text_120C {font-size: 120%; text-align: center;}
.text_120j {font-size: 120%; text-align: justify;}
.text_120D {font-size: 120%; text-align: right;}