﻿/*
Nombre: Americano.css
Autor: Julio Salguera Lovo
Fecha: 2013-10-24
Copyright © 2013 Seguros America
*/

/* Elementos Primarios 
----------------------------------------------------------*/


body {
    background: lightgrey;
    font-size: .80em;
    font-family: "Helvetica Neue", "Lucida Grande", "Segoe UI", Arial, Helvetica, Verdana, sans-serif;
    margin: 0px;
    padding: 0px;
    color: #696969;
}

.pagina {
    width: 90%; /* 1200px */
    background-color: #fff;
    margin: 10px auto 0px auto;
    border: 1px solid #496077;
    height: auto;
}

.cabeceraPagina {
    position: relative;
    margin: 0px;
    padding: 0px;
    background: white;
    width: 100%;
}

    .cabeceraPagina h1 {
        font-weight: 700;
        margin: 0px;
        padding: 0px 0px 0px 20px;
        color: #CB333B;
        border: none;
        line-height: 1.3em;
        font-size: 2em;
    }

.tituloPagina {
    display: block; /*float: left;*/
    text-align: left;
    width: auto;
}

.contenidoPagina {
    padding: 10px 10px 10px 10px;
    margin: 8px 8px 8px 8px;
    min-height: 340px;
    /*min-height: 1000px;*/
    height: auto;
}

.piePagina {
    color: #4e5766; /* gris*/
    padding: 8px 0px 0px 0px;
    margin: 0px auto;
    text-align: center;
    line-height: normal;
}

/* Menu Horizontal
----------------------------------------------------------*/

div.menuHorizontal {
    background-color: #E6E6E6;
    border: 1px solid #ccc;
    border-left: none;
    border-right: none;
    text-align: left;
    width: 100%;
}

div.menuItem {
    padding: 0px;
    vertical-align: central;
    text-align: left;
    width: auto;
}

    div.menuItem ul {
        list-style: none;
        margin: 0;
        padding: 0;
        width: auto;
        text-align: left;
    }

        div.menuItem ul li a, div.menuItem ul li a:visited {
            display: block;
            color: gray;
            background-color: #E6E6E6;
            border-right: 1px solid #ccc;
            /*line-height: 1.35em;*/
            padding: 4px 10px;
            margin-right: 0px;
            text-decoration: none;
            position: relative;
            z-index: 9999;
            text-align: left;
            vertical-align: middle;
            width: auto;
        }

        div.menuItem ul li ul li {
            border-top: 1px solid #ccc;
        }

        div.menuItem ul li ul li:last-child {
            border-bottom: 1px solid #ccc;
        }

        div.menuItem ul li a img {
            border: none;
            vertical-align: middle;
            margin-right: 4px;
        }


        div.menuItem ul li a:hover, div.menuItem ul li a:active {
            display: block;
            color: white;
            background-color: #CB333B;
            border-right: 1px solid #ccc;
            font-weight: bold;
            position: relative;
            z-index: 9999;
            background-image: url('/textures/highlight.png');
            background-image: none, -webkit-linear-gradient(top, #0088cc 0%, #CB333B, /*#0044cc;*/ 100%);
            background-image: none, -moz-linear-gradient(top, #0088cc 0%, #CB333B, /*#0044cc;*/ 100%);
            background-image: none, -o-linear-gradient(top, #0088cc 0%, #CB333B, /*#0044cc;*/ 100%);
            background-image: none, linear-gradient(to bottom, #0088cc 0%, #CB333B, /*#0044cc;*/ 100%);
        }

/* Corrije espacio extra bajo el menu en Chrome y Safari */
img[alt='Menu Horizontal'] {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Titulos y Parrafos
----------------------------------------------------------*/

h1, h2, h3, h4, h5, h6 {
    font-size: 1.5em;
    color: #666666;
    font-variant: small-caps;
    text-transform: none;
    font-weight: 200;
    margin-bottom: 0px;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
}

h1 {
    font-size: 2em;
    font-weight: 400;
}

h2 {
    font-size: 1.5em;
    font-weight: 600;
}

h3 {
    font-size: 1.2em;
    font-weight: 700;
}

h4 {
    font-size: 1.1em;
}

h5, h6 {
    font-size: 1em;
}

p {
    line-height: 1.6em;
}

/* Hipervinculos
----------------------------------------------------------*/

a:link, a:visited {
    color: #CB333B;
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    color: CB333B;
    text-decoration: underline;
}

a:active {
    color: #034af3;
}

/* Miscelaneos  
----------------------------------------------------------*/

.clear {
    clear: both;
}

/************** NOTIFICATION MESSAGES ****************/
.notification {
    height: 38px;
    overflow: hidden;
    position: relative;
    margin-bottom: 0;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -moz-box-shadow: 1px 1px 2px #ddd;
}

    .notification p {
        margin: 8px 10px 0 75px;
        font-size: 13px;
        color: inherit;
    }

    .notification a.close {
        position: absolute;
        width: 14px;
        height: 14px;
        top: 5px;
        right: 5px;
        background-image: url(../../images/close.png);
        background-repeat: no-repeat;
    }

        .notification a.close:hover {
            cursor: pointer;
        }

.msgalert a.close {
    background-position: -14px 0;
}

    .msgalert a.close:hover {
        background-position: -14px -14px;
    }

.msginfo a.close {
    background-position: -42px 0;
}

    .msginfo a.close:hover {
        background-position: -42px -14px;
    }

.msgsuccess a.close {
    background-position: -28px 0;
}

    .msgsuccess a.close:hover {
        background-position: -28px -14px;
    }

.msgerror a.close {
    background-position: 0 0;
}

    .msgerror a.close:hover {
        background-position: 0 -14px;
    }

.msgalert {
    border: 1px solid #eac572;
    background: #ffe9ad url(../../Imagenes/notifications.png) no-repeat 0 -48px;
}

.msginfo {
    border: 1px solid #99c4ea;
    background: #d1e4f3 url(../../Imagenes/notifications.png) no-repeat 0 -140px;
}

.msgsuccess {
    border: 1px solid #c1d779;
    background: #effeb9 url(../../Imagenes/notifications.png) no-repeat 0 -93px;
}

.msgerror {
    border: 1px solid #e18b7c;
    background: #fad5cf url(../../Imagenes/notifications.png) no-repeat 0 -3px;
}


/*Agregado por Isaias Robleto S*/
table { 
  width: 100%; 
  border-collapse: collapse; 
}


/* inicio de estilo para texto intermitente*/
.text {
  font-size:28px;
  font-family:helvetica;
  font-weight:bold;
  color:red;
  text-transform:uppercase;
}
.parpadea {
  
  animation-name: parpadeo;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;

  -webkit-animation-name:parpadeo;
  -webkit-animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
}

@-moz-keyframes parpadeo{  
  0% { opacity: 1.0; }
  50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}

@-webkit-keyframes parpadeo {  
  0% { opacity: 1.0; }
  50% { opacity: 0.0; }
   100% { opacity: 1.0; }
}

@keyframes parpadeo {  
  0% { opacity: 1.0; }
   50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}
/* fin de estilo para texto intermitente*/