﻿article, aside, figcaption, figure, footer, header, hgroup, nav, section {
    display: block;
}
html, body {
    height: 100%;
    width: 100%;
}
body {
    font-family: Verdana, sans-serif;
    font-size: 12px;
    background-color: #666;
    color: #333;
    margin: 0px;
}
h1, h2, h3, h4, h5 {
    color: white;
}
p {
    color: silver;
}

input, select, textarea {
    border: 1px solid;
    border-color: #aaa;
}

.wordwrap { 
   white-space: pre-wrap;      /* CSS3 */   
   white-space: -moz-pre-wrap; /* Firefox */    
   white-space: -pre-wrap;     /* Opera <7 */   
   white-space: -o-pre-wrap;   /* Opera 7 */    
   word-wrap: break-word;      /* IE */
}

/* Header */
.headerContainer {
    position: fixed;
    left: 0px;
    top: 0px;
    background-color: #333;
    color: #777;
    border-bottom: 1px solid #ccc;
    width: 100%;
    z-index: 101;
}
.headerLogo {
    margin-top: 10px;
}

/* Contenido */
.fixedWidthContainer {
	width: 958px;
	margin: 0 auto; /* el valor automático de los lados, unido a la anchura, centra el diseño */
    display: block;
    overflow: visible;
    height: 100%;
    min-width: 858px;
}
.fixedWidthContentContainer {
    position: relative;
    top: 81px;
    padding-bottom: 21px;
    /*border-left: 1px solid silver; 
    border-right: 1px solid silver;*/
}

/* Footer */
.footerContainer {
    position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	clear: both; /* esta propiedad de borrado fuerza a .container a conocer dónde terminan las columnas y a contenerlas */
	background-color: #555;
	color: #676767;
	border-top: 1px solid #d4d4d4;
	height: 20px;
    z-index: 100;
}
.footerText {
	font-size: 10px;
    color: #ccc;
    padding-top: 4px;
    padding-left: 10px; 
}
.footerLines {
    float:right;
    background-image: url(/images/footer_lines.png);
    background-repeat: no-repeat; 
    height: 3px;
    width: 205px; 
}

/* Menu */
#menu {
    font-size: 12px;
    margin-right: 1px;
    margin-bottom: 1px;
}
#menu, #menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
#menu:before, #menu:after {
	content: "";
	display: table;
}
#menu:after {
	clear: both;
}
#menu li {
	float: left;
	border-right: 1px solid #222;
	box-shadow: 1px 0 0 #444;
	position: relative;
}
#menu a {
	float: left;
	padding: 12px 30px;
	color: #999;
	font: bold 12px;
	text-decoration: none;
	text-shadow: 1px 1px 0 #000;
}
#menu li:hover > a {
	color: #fafafa;
}
#menu li a:hover { /* IE6 only */
	color: #fafafa;
}
#menu ul {
	margin: 20px 0 0 0;
	_margin: 0; /*IE6 only*/
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 38px;
	right: 0;
	z-index: 1;    
	background: #444;	
	background: linear-gradient(#444, #111);
	box-shadow: 0 -1px 0 rgba(255,255,255,.3);	
	border-radius: 3px;
	transition: all .2s ease-in-out;  
}
#menu li:hover > ul {
	opacity: 1;
	visibility: visible;
	margin: 0;
}
#menu ul ul {
	top: 0;
	left: 150px;
	margin: 0 0 0 20px;
	_margin: 0; /*IE6 only*/
	box-shadow: -1px 0 0 rgba(255,255,255,.3);		
}
#menu ul li {
	float: none;
	display: block;
	border: 0;
	_line-height: 0; /*IE6 only*/
	box-shadow: 0 1px 0 #111, 0 2px 0 #666;
    overflow: hidden;
}
#menu ul li:last-child {   
	box-shadow: none;    
}
#menu ul a {    
	padding: 10px;
	width: 180px;
	_height: 10px; /*IE6 only*/
	display: block;
	white-space: nowrap;
	float: none;
	text-transform: none;
}
#menu ul a:hover {
	background-color: #0186ba;
	background-image: linear-gradient(#04acec, #0186ba);
    border-radius: 3px;
}

/* Paleta de colores */
.colorAmarillo {
    color: #fbb414;
}
.colorNaranja {
    color: #ff6900;
}
.colorVerde {
    color: #00a961;
}
.colorAzul {
    color: #0087eb;
}
.backcolorAmarillo {
    background-color: #fbb414;
}
.backcolorNaranja {
    background-color: #ff6900;
}
.backcolorVerde {
    background-color: #00a961;
}
.backcolorAzul {
    background-color: #0087eb;
}

/* Login */
#loginContainer {
    height: 300px;
    width: 500px; 
    overflow: visible;
}
.loginBox {
    border: 2px solid #fff; 
    background-color: #ddd;
}

.truncateEllipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#loginHeader {
    width: 100%; 
    height: 70px;
    background-color: rgb(53, 128, 184);
    position: relative;
}
#loginHeaderText {
    position: absolute;
    right: 0px;
    top: 0px;
    padding: 15px 20px;
    font-size: 28px;
    color: #fff;
    text-shadow: 2px 2px 3px #555;
}
.loginHeaderImage {
    margin-top: -65px; /* Es para lograr el efecto que salga del div */
}
.loginTextBox {
    font-size: 16px;
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
}
.userDataRow {
    margin-bottom: 15px;
    font-size: 18px;
}
.userData {
    margin: 20px 50px;
}
.buttonIngresar {
    font-size: 18px;
    padding: 8px 25px;
    position: absolute !important;
    right: 0px;
    background-color: rgb(137, 206, 134);
}
.checkRecordarme {
    font-size: 12px;
    float: left;
}
.labelError {
    color: #b60000;
    font-size: 15px;
    background-color: #eee;
    padding: 10px;
    margin-top: 10px;
    box-shadow: 0px 0px 10px #b60000;
    border-radius: 3px;
}
.labelErrorABM {
    color: #b60000;
    font-size: 15px;
    background-color: #eee;
    padding: 10px;
    margin-top: 10px;
    margin-left: 20px;
    margin-right: 30px;
    box-shadow: 0px 0px 10px #b60000;
    border-radius: 3px;
}
.labelErrorRegistro {
    color: #b60000;
    font-size: 13px;
    background-color: #eee;
    padding: 10px;
    margin-top: 10px;
}
.labelWarningRegistro {
    color: #333;
    font-size: 15px;
    background-color: #eee;
    padding: 10px;
    margin-top: 10px;
}
.loginButtonContainer {
    margin-top: 15px;
    overflow: hidden;
    position: relative;
    height: 50px;
}

/* User welcome */
.loginName {
    font-weight: bold; 
}
.labelUserWelcome {
    color: #ddd;
    font-size: 14px;
    float: right;
}
.panelUserWelcome {
    float: right;
    position: relative;
    top: 5px;
}

/* Generales */
.buttonStyle {
    border: 1px solid silver;
    border-radius: 3px;
    margin: 0px;
}
    .buttonStyle:disabled {
        background-color: silver;
    }
    .buttonStyle:hover {
        background-color: white;
        cursor:pointer;
    }
        .buttonStyle:hover:disabled {
            background-color: silver;
            cursor:default;
        }
    .buttonStyle:active {
        background-color: #333;
    }
.clear {
    clear: both;
}

/* Listas */
.headerList {
    font-weight: bold;
    background-color: rgb(53, 128, 184);
    color: #fff;
    padding: 10px 5px;
    text-shadow: 1px 1px 3px #444;
}
.headerListMini {
    font-weight: bold;
    background-color: rgb(53, 128, 184);
    color: #fff;
    padding: 5px 5px;
    text-shadow: 1px 1px 3px #444;
}
.itemLists {
    font-weight: normal;
    background-color: #bbb;
    color: #333;
    padding: 2px 5px;
    line-height: 2;
    white-space: nowrap;
}
.itemListsMini {
    font-weight: normal;
    background-color: #bbb;
    color: #333;
    padding: 2px 5px;
    line-height: 1.5;
    white-space: nowrap;
}
.itemListsAlternate {
    font-weight: normal;
    background-color: #aaa;
    color: #333;
    padding: 2px 5px;
    line-height: 2;
    white-space: nowrap;
}
.itemListsAlternateMini {
    font-weight: normal;
    background-color: #aaa;
    color: #333;
    padding: 2px 5px;
    line-height: 1.5;
    white-space: nowrap;
}
.footerList {
    background-color: #555;
    padding: 8px 0px;
}
.pageNavigator {
    float: left;
}
.footerListActions {
    float:left;
}

/* ABMs */
.abmHeaderContainer {
    overflow: hidden;
    background-color: #555;
    /*border-bottom: 1px dotted silver;*/
    border-radius: 0px 0px 10px 10px;
    box-shadow: 0px 3px 5px #444;

}
.abmHeaderImage {
    height: 64px;
    width: 64px;
    float: left;
    padding: 10px;
}
.abmHeaderTitle  {
    color: white;
    font-size: 18px;
    font-weight: bold;
    margin-top: 15px;
}
.abmHeaderSubtitle {
    color: silver;
    margin-top: 10px;
    max-width: 850px;
}
.abmDescriptionHeader {
    float: left;
    padding: 0px 10px;
}
.abmButtonMini {
    width: 40px;
    height: 24px;
}
.abmButtonMeddium {
    width: 50px;
    height: 30px;
}
.abmButtonCalendar {
    background: url(/abm/personas/personas/images/calendar_16.png) no-repeat center;
    background-color: rgb(53, 128, 184);
    height: 30px;
    vertical-align: bottom;
    margin: 2px 0px;
}
.buttonSearch {
    background: url(/abm/images/search.png) no-repeat center;
    background-color: rgb(53, 128, 184);
    width: 30px;
    height: 30px;
    vertical-align: bottom;
    border-radius: 0px 3px 3px 0px;
    border-left: 0px;
    margin-left: -5px;
}
.buttonAddControlHeight {
    background: url(/abm/images/add.png) no-repeat center;
    background-color: rgb(115, 197, 111);
    width: 30px;
    height: 30px;
    vertical-align: bottom;
    border-radius: 0px 3px 3px 0px;
    border-left: 0px;
    margin-left: -5px;
}
.buttonAdd {
    background: url(/abm/images/add.png) no-repeat left center;
    background-position-x: 5px;
    background-color: rgb(115, 197, 111);
    height: 30px;
    padding-left: 25px;
    font-size: 16px;
    width: 100%;
}
.buttonAddNoWidth {
    background: url(/abm/images/add.png) no-repeat left center;
    background-position-x: 5px;
    background-color: rgb(115, 197, 111);
    height: 30px;
    padding-left: 25px;
}
.buttonAddMini {
    background: url(/abm/images/add.png) no-repeat center;
    background-color: rgb(115, 197, 111);
}
.buttonSave {
    background: url(/abm/images/ok.png) no-repeat left center;
    background-position-x: 5px;
    background-color: rgb(115, 197, 111);
    height: 30px;
    padding-left: 25px;
    width: 100px;
}
.buttonSaveMini {
    background: url(/abm/images/ok.png) no-repeat center;
    background-color: rgb(115, 197, 111);
    height: 30px;
    width: 40px;
    vertical-align: bottom;
    margin: 2px;
}
.buttonCancel {
    background: url(/abm/images/cancel.png) no-repeat left center;
    background-position-x: 5px;
    background-color: #d86e6e;
    height: 30px;
    padding-left: 25px;
    width: 100px;
}
.buttonCancelMini {
    background: url(/abm/images/cancel.png) no-repeat center;
    background-color: #d86e6e;
    height: 30px;
    width: 40px;
    vertical-align: bottom;
    margin: 2px;
}
.buttonRight {
    background: url(/abm/images/right_arrow.png) no-repeat center;
    background-color: rgb(115, 197, 111);
}
.buttonLeft {
    background: url(/abm/images/left_arrow.png) no-repeat center;
    background-color: #d86e6e;
}
.buttonPrint {
    background: url(/abm/images/print.png) no-repeat center;
    background-color: rgb(53, 128, 184);
    background-position-x: 5px;
    height: 30px;
    padding-left: 25px;
    width: 100px;
}
.buttonUpload {
    background: url(/abm/images/upload.png) no-repeat center;
    background-color: rgb(53, 128, 184);
    background-position-x: 5px;
    height: 30px;
    padding-left: 25px;
    width: 150px;
}
.buttonProcesar {
    background: url(/abm/images/process.png) no-repeat center;
    background-color: rgb(53, 128, 184);
    background-position-x: 5px;
    height: 30px;
    padding-left: 25px;
}
.buttonVerificar {
    background: url(/abm/images/ok.png) no-repeat center;
    background-color: rgb(53, 128, 184);
    background-position-x: 5px;
    height: 30px;
    padding-left: 25px;
}
.buttonAdjuntar {
    background: url(/abm/images/attach.png) no-repeat center;
    background-color: rgb(53, 128, 184);
    background-position-x: 5px;
    height: 30px;
    padding-left: 25px;
}
.buttonMail {
    background: url(/abm/images/mail.png) no-repeat center;
    background-color: rgb(53, 128, 184);
    background-position-x: 5px;
    height: 30px;
    padding-left: 25px;
    width: 150px;
}
.buttonSearchNoPicture {
    background-color: rgb(53, 128, 184);
    background-position-x: 5px;
    height: 30px;
}
.buttonEditPictureLeft {
    background: url(/abm/images/edit.png) no-repeat left center;
    background-color: #d4993c;
    background-position-x: 5px;
    height: 30px;
    padding-left: 25px;
}
.buttonEdit {
    background: url(/abm/images/edit.png) no-repeat center;
    background-color: #d4993c;
}
.buttonView {
    background: url(/abm/images/view.png) no-repeat center;
    background-color: rgb(53, 128, 184);
}
.buttonSelect {
    background: url(/abm/images/ok.png) no-repeat center;
    background-color: rgb(53, 128, 184);
}.buttonDelete {
    background: url(/abm/images/delete.png) no-repeat center;
    background-color: #d86e6e;
}
.buttonPrintRepeater {
    background: url(/abm/images/print.png) no-repeat center;
    background-color: rgb(115, 197, 111);
}
.buttonMoneyRepeater {
    background: url(/abm/images/money.png) no-repeat center;
    background-color: rgb(115, 197, 111);
}
.buttonNextPage {
    background: url(/abm/images/next.png) no-repeat center;
    background-color: #6bb9b6;
    border-radius: 0px 3px 3px 0px;
    margin-left: -1px;
    border-left: 0px;
    float: left;
}
.buttonPrevPage {
    background: url(/abm/images/prev.png) no-repeat center;
    background-color: #6bb9b6;
    border-radius: 3px 0px 0px 3px;
    border-right: 0px;
    float: left;
}
.abmGridButtons {
    float:left;
    line-height: 1;
}
.pageCursor {
    float: left;
    background-color: white;
    color: #222;
    height: 24px;
    box-sizing: border-box;
    padding: 0px 10px;
    line-height: 22px;
    border: 1px solid silver;
    margin-left: -1px;
    width: 69%;
    text-align: center;
}
.pageSelector {
    position: absolute;
    bottom: 20px;
    right: 7px;
    left: 10px;
}
.abmFieldsContainer {
    margin-top: 15px;
}
.abmPopupWindow {
    -moz-box-shadow: 5px 5px 5px rgba(125,125,125,0.5);
    -webkit-box-shadow: 5px 5px 5px rgba(125,125,125,0.5);
    box-shadow: 5px 5px 5px rgba(125,125,125,0.5);
    width: 700px;
}
.abmPopupErrorWindow {
    -moz-box-shadow: 5px 5px 5px rgba(125,125,125,0.5);
    -webkit-box-shadow: 5px 5px 5px rgba(125,125,125,0.5);
    box-shadow: 5px 5px 5px rgba(125,125,125,0.5);
}
.abmRecordTitle {
    background-color: #333;
    color: white;
    font-size: 23px;
    font-weight: bold;
    padding: 10px;
}
.abmErrorTitle {
    background-color: #700000;
    color: white;
    font-size: 23px;
    font-weight: bold;
    padding: 10px;
}
.abmSearchTitle {
    background-color: rgb(53, 128, 184);
    color: white;
    font-size: 23px;
    font-weight: bold;
    padding: 10px;
}
.abmRecordContainer {
    background-color: #ddd;
    color: #333;
    padding: 20px;
    padding-top: 10px;
}
.abmSearchTextbox {
    margin: 0px;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 3px 0px 0px 3px;
    border: 1px solid silver;
    width: 86%;
    height: 30px;
}
.abmSearchLabel {
    font-size: 1.17em;
    font-weight: bold; 
    margin-bottom: 5px;
    color: white;
}
.abmSearchDropDown {
    float: right;
    margin-right: 10px;
    width: 190px;
    box-sizing: border-box;
    padding: 4px;
}
.abmNewRecordButton {
    margin: 10px 10px 0px 10px;
}
.abmProgressImage {
    width: 55px;
    height: 55px;
    float: right;
    padding: 10px;
    background-color: #fff;
    border-radius: 10px;
    margin: 4px;
}
.abmTextBoxMultilineComentarios {
    height: 30px;
    width: 100%;
    resize: none;
    margin-top: 2px;
    padding: 6px;
    box-sizing:border-box;
}
.abmLeftColumn {
    width: 29%; 
    background-color: #555;
    float: left;
    margin: 20px;
    margin-right: 0;
    box-sizing: border-box;
    height: 538px;
}
    .abmLeftColumn > div {
        height: 100%;
    }
.abmDataContent {
    width: 66%; 
    height: 538px;
    margin: 20px;
    margin-left: 0;
    float: left;
}
.abmGrid {
    margin-left: auto;
    margin-right: auto;
    height: 100%;
    background-color: #555;
}
.abmTextBox {
    box-sizing: border-box;
    padding: 6px;
    resize: none;
}
.abmDropDown {
    box-sizing: border-box;
    padding: 5px;
    margin-left: 0px;
}
    .abmDropDown:disabled {
        background-color: rgb(235, 235, 228);
        border-color: rgb(175, 175, 175);
    }
.abmFieldNameContainer {
    display: inline-table; 
    line-height: 34px;
}
.abmFieldDataContainer {
    display: inline-table; 
    padding-left: 10px;
    margin-bottom: 10px;
    box-sizing: border-box;
    line-height: 34px;
}
.abmTextBoxFixedMargin {
    background-color: white;
    border: 1px solid #888;
    box-sizing: border-box;
    padding: 5px;
    width: 350px;
    margin: 0px;
    margin-left: 10px;
}
    .abmTextBoxFixedMargin:disabled {
        background-color: silver;
    }
.abmListBoxPerfiles {
    width: 100%;
    height: 80%;
    border: 1px solid #888;
}
.abmListBoxAuxiliares {
    width: 100%;
    height: 100%;
    border: 1px solid #888;
    font-size: 16px;
}
.abmTreeView {
    width: 100%;
    height: 100%;
}
.abmTelefonoMail {
    float: left;
    font-weight: bold;
    margin-right: 5px;
    background-color: #888;
    color: #fbb414;
    padding: 0px 4px;
    line-height: 34px;
    height: 100px;
    width: 70px;
}


/* Dialogo de confirmacion */
.confirmationDialog {
    width: 400px;
    border: 2px solid #fff;
    background-color: #ddd;
}
.confirmationDialogHeader {
    height: 20px;
    background-color: rgb(53, 128, 184);
    color: white;
    text-shadow: 2px 2px 3px #555;
    font-size: 16px;
    padding: 10px;
}
.confirmationContent {
    font-size: 14px;
    padding: 10px;
    text-align: center;
    margin: 20px;
}
.confirmationButton {
    padding: 5px 30px;
}
.confirmationButtons {
    margin: 0px auto 10px;
    width: 170px;
}
.confirmationBackground {
    background-color: #555;
    filter: alpha(opacity=50);
    opacity: 0.7;
}

/* TreeView */
.parentNode {
    color: #fbb414 !important;
    font-weight: bold !important;
}
.rootNode {
    color: white !important;
    font-weight: bold !important;
}
.node {
    font-weight: normal;
    color: #ccc;
}
.selectedNode {
    padding: 0px 10px;
    background-color: #333;
}

/* Accordion style */
.accordion {  
    margin: 20px;
    width: 96%;  
}  
          
.accordionHeader {  
    color: white;  
    background-color: rgb(53, 128, 184);  
    font-size: 15px;  
    font-weight: normal;  
    padding: 10px;  
    margin-top: 5px;  
    cursor: pointer;  
}  
          
.accordionHeaderSelected {  
    color: white;  
    background-color: rgb(1, 72, 119);  
    font-size: 15px;  
    font-weight: bold;  
    padding: 10px;  
    margin-top: 5px;  
    cursor: pointer;  
}  
          
.accordionContent {  
    background-color: #ccc;
}
.accordionLeftColumn {
    width: 30%;
    float: left;
    padding: 10px;
    box-sizing: border-box;
}
.accordionRightColumn {
    width: 70%;
    float: left;
    padding: 10px;
    box-sizing: border-box;
    background-color: #aaa;
}

.MyTabStyle {
    margin-top: 15px;
}
.MyTabStyle a {
    color: rgb(223, 223, 223);
}
.MyTabStyle a:focus {
    outline:none;
}
.MyTabStyle .ajax__tab_header {
    border-bottom: 3px solid rgb(53, 128, 184);
}
.MyTabStyle .ajax__tab_header .ajax__tab_outer{
    color: #222;
    padding-left: 10px;
    margin-right: 3px;
    border:solid 1px #999;
    border-bottom-color: #4E647C;
    background-color: #4E647C;
    margin-right: 0px;
    height: 35px;
    transition: background-color 150ms;
    -webkit-transition: background-color 150ms;
}
.MyTabStyle .ajax__tab_header .ajax__tab_inner{
    padding: 11px 10px 2px 0px;
}
.MyTabStyle .ajax__tab_header_verticalleft {
    border-right: 3px solid rgb(53, 128, 184);
    height: 100%;
}
.MyTabStyle .ajax__tab_disabled .ajax__tab_outer {
    border-right-color: #888 !important;
    background-color: #888 !important;
}
    .MyTabStyle .ajax__tab_disabled a {
        color: #aaa;
        cursor:default;
    }
.MyTabStyle .ajax__tab_header_verticalleft .ajax__tab_outer{
    color: #222;
    padding-left: 10px;
    margin-bottom: 3px;
    border:solid 1px #999;
    border-right-color: #4E647C;
    background-color: #4E647C;
    height: 35px;
    display: table-cell !important;
    width: 120px;
    vertical-align: middle;
    transition: background-color 150ms;
    -webkit-transition: background-color 150ms;
}

.MyTabStyle .ajax__tab_header_verticalleft .ajax__tab_inner{
    padding: 3px 10px 2px 0px;
}
.MyTabStyle .ajax__tab_hover .ajax__tab_outer{
    border-color: rgb(0, 84, 146); 
    border-bottom-color: rgb(0, 84, 146);
    background-color: rgb(0, 84, 146);
    transition: background-color 150ms;
    -webkit-transition: background-color 150ms;
}
.MyTabStyle .ajax__tab_hover .ajax__tab_inner{

}
.MyTabStyle .ajax__tab_hover a {
    color: white;
}
.MyTabStyle .ajax__tab_active .ajax__tab_outer{
    border-color: rgb(53, 128, 184);
    border-bottom-color: rgb(53, 128, 184);
    background-color: rgb(53, 128, 184);
    transition: background-color 150ms;
    -webkit-transition: background-color 150ms;
}
.MyTabStyle .ajax__tab_active .ajax__tab_inner{

}
.MyTabStyle .ajax__tab_active a {
    color: white;
    text-shadow: 1px 1px 3px #444;
}
.MyTabStyle .ajax__tab_body {
    background-color: silver;
    border:solid 1px #999;
    border-top: 0px;
    padding: 8px;
}
.MyTabStyle .ajax__tab_body_verticalleft {
    background-color: silver;
    border:solid 1px #999;
    border-left: 0px;
    padding: 8px;
}
.fichaInscripcionHeader {
    color: white;
    font-size: 16px;
    font-weight: bold;
    margin-top: 20px;
    background-color: rgb(53, 128, 184);
    padding: 10px;
    display: inline-block;
    border-radius: 7px 7px 0px 0px;
}
.fichaInscripcionContent {
    background-color: #888;
    color: #ddd;
    padding: 10px;
    box-sizing: border-box;
    width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.fichaInscripcionHeaderContainer {
    width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.fichaInscripcionAlerta {
    margin-top: 10px;
    background-color: #aaa;
    color: #b60000;
    padding: 5px;
    box-sizing: border-box;
}
.fichaInscripcionResultadoTitulo {
    color: white;
    font-size: 16px;
    font-weight: bold;
    margin-top: 20px;
    background-color: rgb(53, 128, 184);
    padding: 10px;
    width: 700px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}
.noMargin {
    margin: 0px;
}
.cfgTextBoxMultilineCarta {
    height: 150px;
    width: 98%;
    resize: none;
    margin-top: 2px;
    padding: 6px;
}
.fileUpload {
    box-sizing: border-box;
    padding: 6px;
    width: 100%;
    background-color: #aaa;
    color: #555;
    border-radius: 3px;
}

.tinymce {
    padding: 5px;
    resize: none;
}

.noDisplay {
    display:none;
}