body {
	margin: 0px;
	font-family: Arial, Helvetica, sans-serif;
}
.loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url('../images/logo.png') 50% 30% no-repeat rgb(249,249,249);
    opacity: .8;
}
a {
	text-decoration: none;
	color: #003366;
	outline: 0;
}
a:hover{
        text-decoration: underline;
        color: #000000;
}
.linkDesactivado a {
	color: #777777;
}

h1 {
	font-size: 18px;
	color: green;
}
h2 {
	font-size: 14px;
	color: #333333;
}

.titulo_chico {
	color: green;
}

img {
	border: 0px;
}
strong {
	font-size: 12px;
}
.grande {
	font-size: 14px;
}

#body {
	width: 980px;
	margin-right: auto;
	margin-left: auto;
	font-size: 11px;
}
/*header*/
#header {
	height: 140px;
	background-color: green;
	background-image: url(../images/fondo-header.jpg);
	color: white;
	font-weight: bold;
}
#header a {
	color: #222222;
}
#logo {
	float: left;
	width: 550px;
}
#headerBtns {
	padding-top: 50px;
	padding-right: 20px;
	text-align: right;
	font-weight: bold;
}
/*menu*/
#menu {
	/*background-color: #AEAEAE;*/
	height: 22px;
	clear: both;
}
#menu ul{
	margin: 0px;
	padding: 0px;
}
#menu li{
	float: left;
	width: 120px;
	text-align: center;
	font-weight: bold;
	list-style-image: none;
	list-style-type: none;
	/*background-image: url(../images/fondo_solapa_click.jpg);*/
	background-repeat: no-repeat;
	height: 22px;
	padding-right: 6px;
}
div.menu a{
	float: left;
	height: 16px;
	/*background-image: url(../images/fondo_solapa.jpg);
	background-repeat: no-repeat;
	*/
	background-color: green;
	width: 120px;
	color: #FFFFFF;
	padding-top: 6px;
}

div.menu a:hover{
	background-color: #E5E5E5;
	color: #000000;
	text-decoration: none;
}

li.menuclick a{
	float: left;
	height: 16px;
	/*background-image: url(../images/fondo_solapa_click.jpg);
	background-repeat: no-repeat;
	*/
	background-color: #E5E5E5;
	width: 120px;
	color: #000000;
	padding-top: 6px;
	height: 22px;
}

#menu p{
	padding-top: 6px;
	margin: 0px;
}
/*principal*/
#mainMain {
	padding-top: 5px;
	padding-bottom: 5px;
}
#main {
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
	background-color: #E5E5E5;
}
#submenu {
	float: left;
	width: 180px;
	padding-top: 20px;
	padding-left: 5px;
	font-variant: small-caps;
}
#submenu ul{
	margin: 0px;
	padding: 0px;
}
#submenu li{
	list-style-image: none;
	list-style-type: none;
	padding-top: 10px;
	padding-left: 5px;
}
#submenu a{
	font-size: 12px;
	font-weight: bold;
	color: #333333;
}
#submenu a:hover{
	text-decoration: underline;
	color: #000000;
}

#contenido {
	margin-left: 200px;
	padding-left: 40px;
	border-left-width: 2px;
	border-left-style: solid;
	border-left-color: #D6D6D6;
	padding-bottom: 10px;
}

.menuContenido li{
        padding-left: 20px;
        font-size: 13px;
        font-weight: bold;
        list-style-image: none;
        list-style-type: none;
        height: 22px;
}
.menuContenido li a{
	color: #333333;
}

.input1{
	width: 150px;
}
.input2{
	width: 350px;
}
.conectado {
	color: green;
}
.desconectado {
	color: red;
}
.clear {
	clear: both;
}
#footer {
	padding-top: 4px;
	padding-right: 10px;
	padding-left: 10px;
	text-align: right;
	background-color: green;
	background-image: url(../images/fondo-header.jpg);
	padding-bottom: 4px;
}
#footer a{
	color: #000000;
}
.floatRight {
	float: right;
}
table.busqueda2, table.busqueda td, table.busqueda th {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #A5A5A5;
}
table.listados, table.listados td, table.listados th {
	border-width: 1px;
	border-style: solid;
	border-color: #A5A5A5;
}
.blink {
	text-decoration: blink;
}

/* Popup container - can be anything you want */
.popup {
    position: relative;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* The actual popup */
.popup .popuptext {
    visibility: hidden;
    width: 617px;
    background-color: #AEAEAE;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -300px;
}

/* Popup arrow */
.popup .popuptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #AEAEAE transparent transparent transparent;
}

/* Toggle this class - hide and show the popup */
.popup .show {
    visibility: visible;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity:1 ;}
}


.floatLeft {
	float: left;
}
.ok{
        padding: 5px 10px;
        background-color: #B2D4D5;
        border: 1px solid #222222;
        margin-top: 2px;
        margin-bottom: 2px;
}
.error{
        padding: 5px 10px;
        color: #FFFFFF;
        font-weight: bold;
        background-color: #FF0000;
        border: 1px solid #000000;
        margin-top: 2px;
        margin-bottom: 2px;
}
.bloqueado{
        margin-left: 3px;
        padding-top: 1px;
        padding-bottom: 1px;
        padding-left: 2px;
        padding-right: 2px;
	font-size: 10px;
        color: #FFFFFF;
        font-weight: bold;
        background-color: #FF0000;
        border: 1px solid #000000;
}

.grisecito {
        color: #888888;
}
