.red-letter{
	color: red;
	text-shadow: 0px 0px 5px RGB(255,150,150);
	padding: 2px;
	font-weight: bolder;
}


.puntaje-off{
	margin: 0px;
	padding: 0px;
	height: 20px;
	width: auto;
	transition-duration: .15s;
}

.puntaje{
	margin: 0px;
	padding: 0px;
	height: 20px;
	width: auto;
	transition-duration: .15s;
}

.puntaje:hover{
	height: 32px;
	width: auto;
}

.barra{
	align-items: center;
	justify-content:  space-between;
}

.small-title{
	color: black;
	font-size: smaller;
	font-weight: bold; 
}

.dato{
	font-size: smaller;
	color: white;
	background-color: #666;
	padding: 4px;
	margin-left: 6px;
	border-radius: 5px 5px 5px 5px;
}

.palabra{
	transition-duration: .4s;
	cursor: pointer; 
	padding-top: 4px;
	padding-bottom: 4px;
	padding-left: 0px;
	padding-right: 0px;
	
}

.palabra:hover{
	background-color: RGB(65,255,85);
	padding-left: 9px;
	padding-right: 9px;
	border-radius: 6px 6px 6px 6px;
	cursor: pointer; 
	transition-duration: .07s;
}

.pantalla{
	box-shadow: 1px 1px 1px 1px RGBA(0,0,0,.5);
	background: RGBA(250,255,245,.90);
	border-radius: 10px 10px 10px 10px;
	border-style: hidden;
	padding: 20px;
	margin: 2px;
	width: 100%;
}

.stand_alone_text{
	font-size: medium;
	color: white;
	text-shadow: 1px 1px 1px black;
}

.columna{
	box-shadow: -1px 2px 2px 2px RGBA(0,0,0,.5);
	background: RGBA(250,255,245,.90);
	border-style: none;
	position: fixed;
	padding: 20px;
	height: 100%;
	margin: 0px;
	width: 260px;
	right: 0px;
}

.titulo{
	color: #fff;
	text-shadow: 1px 1px 1px RGBA(0,0,0,.5);
}

body{
	background-image: url("../imagenes/fondo.png");
	background-size: cover;
}




.tag-btn{
    color: green;
    border-radius: 5px;
    background-color: white;
    border-width: 2px;
    margin: 4px;
}



.tagcloud06 ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.tagcloud06 ul li {
	display: inline-block;
	margin: 0 0 .3em 1em;
	padding: 0;
}
.tagcloud06 ul li a {
	position: relative;
	display: inline-block;
	height: 30px;
	line-height: 30px;
	padding: 0 1em 0 .75em;
	background-color: #3498db;
	border-radius: 0 3px 3px 0;
	color: #fff;
	font-size: 13px;
	text-decoration: none;
	-webkit-transition: .2s;
	transition: .2s;
	width: 100%;
}
.tagcloud06 ul li a::before {
	position: absolute;
	top: 0;
	left: -15px;
	z-index: -1;
	content: '';
	width: 30px;
	height: 30px;
	background-color: #3498db;
	border-radius: 50%;
	-webkit-transition: .2s;
	transition: .2s;
}
.tagcloud06 ul li a::after {
	position: absolute;
	top: 50%;
	left: -6px;
	z-index: 2;
	display: block;
	content: '';
	width: 6px;
	height: 6px;
	margin-top: -3px;
	background-color: #fff;
	border-radius: 100%;
}
.tagcloud06 ul li span {
	display: block;
	max-width: 100px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.tagcloud06 ul li a:hover {
	background-color: #555;
	color: #fff;
}
.tagcloud06 ul li a:hover::before {
	background-color: #555;
}

.modalDialog {
	position: fixed;
	font-family: Arial, Helvetica, sans-serif;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
	z-index: 99999;
	opacity:0;
	-webkit-transition: opacity 400ms ease-in;
	-moz-transition: opacity 400ms ease-in;
	transition: opacity 400ms ease-in;
	pointer-events: none;
}

.modalDialog:target {
	opacity:1;
	pointer-events: auto;
}

.modalDialog > div {
	width: 45%;
	height: auto;
	position: relative;
	margin: 4% auto;
	padding: 2px 20px 20px 20px;
	border-radius: 5px;
	background: #fff;
	background: -moz-linear-gradient(#fff, #999);
	background: -webkit-linear-gradient(#fff, #999);
	background: -o-linear-gradient(#fff, #999);
}

.close {
	background: #606061;
	color: #FFFFFF;
	line-height: 25px;
	position: absolute;
	right: 12px;
	text-align: center;
	top: 10px;
	width: 24px;
	text-decoration: none;
	font-weight: bold;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	-moz-box-shadow: 1px 1px 3px #000;
	-webkit-box-shadow: 1px 1px 3px #000;
	box-shadow: 1px 1px 3px #000;
}

.close:hover { background: #aaa; }