body {
background-color: #000000;
margin: 0px;
padding: 0px;
overflow: hidden;
}

#ventana-flotante {
width: 300px;  /* Ancho de la ventana */
height: 70px;  /* Alto de la ventana */
background: transparent;  /* Color de fondo */
position: fixed;
top: 60px;
left: 54%;
margin-left: -180px;
border: 0px;  /* Borde de la ventana */
box-shadow: 0 0px 0px rgba(0,0,0,0);  /* Sombra */
z-index:999;
}
#ventana-flotante #contenedor {
padding: 0px 0px 0px 0px;
}
#ventana-flotante .cerrar {
float: right;
border-bottom: 0px solid #bbb;
border-left: 0px solid #bbb;
color: #999;
background: white;
line-height: 17px;
text-decoration: none;
padding: 0px 14px;
font-family: Arial;
border-radius: 0 0 0 5px;
box-shadow: -1px 1px white;
font-size: 18px;
-webkit-transition: .3s;
-moz-transition: .3s;
-o-transition: .3s;
-ms-transition: .3s;
}
#ventana-flotante .cerrar:hover {
background: transparent;
color: white;
text-decoration: none;
text-shadow: -1px -1px red;
border-bottom: 0px solid red;
border-left: 0px solid red;
}
#ventana-flotante #contenedor .contenido {
padding: 0px;
box-shadow: inset 0px 0px transparent;
background: transparent;  /* Fondo del mensaje */
border: 0px ;  /* Borde del mensaje */
font-size: 0px;  /* Tama?o del texto del mensaje */
color: #555;  /* Color del texto del mensaje */
text-shadow: 0px 0px transparent;
margin: 0 auto;
border-radius: 0px;
}
.oculto {-webkit-transition:1s;-moz-transition:1s;-o-transition:1s;-ms-transition:1s;opacity:0;-ms-opacity:0;-moz-opacity:0;visibility:hidden;}

  /* CSS3 */

/* The whole thing */
.custom-menu {
	display: none;
    z-index: 1000;
    position: absolute;
    overflow: hidden;
    border: 1px solid #CCC;
    white-space: nowrap;
    font-family: sans-serif;
    background: #FFF;
    color: #333;
    border-radius: 5px;
    padding: 0;
}

/* Each of the items in the list */
.custom-menu li {
	font-family: Cambria;
	color: #35A5E5;
	font-size: 15;
	align: right;
    padding: 12px 15px 12px 10px;
	text-align: left;
    cursor: pointer;
    list-style-type: none;
    transition: all .3s ease;
}

.custom-menu a {
	text-decoration:none;
}

.custom-menu li:hover {
    background-color: #DEF;
	color: #2DE5E5;
}