<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */
*{margin:0; padding:0;}
body{ text-align:left}
.caja-menu{ width:760px; float:left;}
ul,li {list-style-type:none;}
.menuholder li {float:right;}
.menuholder a {display:block; height:35px; background-color:#EDD39E; padding-top:5px; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:11px; color:#C37C0D; text-decoration:none; box-sizing: border-box; }
/*ESTADO NORMAL*/
.menu_intro a {width:95px; text-align:center }
.menu_llamado a {width:147px; text-align:center; border-left-color:#FFFFFF; border-left-style:dotted; border-left-width:2px; }
.menu_speakers a {width:175px; text-align:center; border-left-color:#FFFFFF; border-left-style:dotted; border-left-width:2px}
.menu_programa a {width:115px; text-align:center; border-left-color:#FFFFFF; border-left-style:dotted; border-left-width:2px}
.menu_individual a {width:128px; text-align:center; border-left-color:#FFFFFF; border-left-style:dotted; border-left-width:2px }


/*ESTADO ROLLOVER*/
.menu_intro a:hover {background-color:#E3A53D; color:#FFFFFF}
.menu_llamado a:hover {background-color:#E3A53D; color:#FFFFFF}
.menu_speakers a:hover { background-color:#E3A53D; color:#FFFFFF}
.menu_programa a:hover{background-color:#E3A53D; color:#FFFFFF}
.menu_individual a:hover {background-color:#E3A53D; color:#FFFFFF}

/*ESTADO ACTIVO*/
.menu_intro a.active {background-color:#E3A53D; color:#FFFFFF}
.menu_llamado a.active {background-color:#E3A53D; color:#FFFFFF}
.menu_speakers a.active {background-color:#E3A53D; color:#FFFFFF}
.menu_programa a.active {background-color:#E3A53D; color:#FFFFFF}
.menu_individual a.active {background-color:#E3A53D; color:#FFFFFF}

button {
 border: none;
background: rgba(220,209,128,0.3);
 color: #d81009;
 padding: 10px; 
 font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
 font-size: 16px;
 font-weight:bold;
 border-radius: 5px;
 position: relative;
 box-sizing: border-box;
 transition: all 500ms ease;
 cursor:pointer;
 box-shadow: inset 0 0 0 3px #DCD180;
}

button:before {
 content:'';
 position: absolute;
 top: 0px;
 left: 0px;
 width: 100%;
 height: 0px;
 background: rgba(255,255,255,0.3);
 border-radius: 5px;
 transition: all 2s ease;
}

button:hover {
 background: rgba(216,16,9,0.8);
 color: #fff;
 box-shadow: inset 0 0 0 3px #DCD180;
}</pre></body></html>