* {
    padding: 0;
    margin: 0;
}

body {
    background: #fff url(images/bg.jpg) repeat-x;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 18px;
    color: #333333;
}

img {
    border: none;
}

a {
    color: #0a6380;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: #000;
}

#wrap {
    margin: 0 auto;
    width: 800px;
}

#header {
    height: 150px;
}

#header h1 {
    font-size: 30px;
    font-weight: 100;
    letter-spacing: -3px;
    padding: 40px 0 5px 0;
}

#header h1 a {
    color: #109aef;
    text-decoration: none;
}

#header h1 a:hover {
    color: #222;
    text-decoration: none;
}

#header h2 {
    color: #3692af;
    font-size: 19px;
    font-weight: 100;
    padding: 0 0 0 0;
    letter-spacing: -1px;
    line-height: 12px;
}

#content {
    padding: 10px 0;
}

.left {
    width: 568px;
    float: left;
    text-align: justify;
}

.left h2 {
    color: #ff4800;
    font-size: 22px;
    letter-spacing: -1px;
    font-weight: 100;
    padding: 15px 0 15px 0;
}

.atencion {
    margin-left: -200px;
}

.right {
    width: 195px;
    float: right;
    padding: 10px;
    padding-top: 0px;
    border-left: 1px solid #bbb;
    font-size: 12px;
}

.right a {
    width: 200px;
}

.right ul {
    list-style-type: none;
    padding: 5px 10px 10px 10px;
}

.right h2 {
    height: 30px;
    font-size: 12px;
    color: #666;
    line-height: 30px;
}

#footer {
    border-top: 1px solid #bbb;
    text-align: center;
    color: #333;
    font-size: 11px;
    padding: 0 0 10px 0;
}

a[role=button] {
    cursor: pointer;
}

.modalDialog {
    position: fixed;
    font-family: Arial, Helvetica, sans-serif;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow-y: auto;
    background: rgba(0,0,0,0.8);
    z-index: 99999;
    opacity:0;
    -webkit-transition: opacity 300ms ease-in;
    -moz-transition: opacity 300ms ease-in;
    transition: opacity 300ms ease-in;
    pointer-events: none;
}

.modalDialog.fullscreen {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modalDialog.fullscreen > div {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    margin: 0;
    border-radius: 0;
}

.modalDialog.fullscreen .close {
    left: 25px;
    top: 25px;
}


.modalDialog.show {
    opacity:1;
    pointer-events: auto;
}

.modalDialog > div {
    max-width: 800px;
    position: relative;
    margin: 10% auto;
    border-radius: 10px;
    background: #fff;
    background: -moz-linear-gradient(#fff, #999);
    background: -webkit-linear-gradient(#fff, #999);
    background: -o-linear-gradient(#fff, #999);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.modalDialog .close {
    background: #606061;
    color: #FFFFFF;
    line-height: 50px;
    font-size: 30px;
    position: absolute;
    right: -25px;
    text-align: center;
    top: -25px;
    width: 50px;
    height: 50px;
    text-decoration: none;
    font-weight: bold;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -moz-box-shadow: 1px 1px 3px rgb(100, 81, 81);
    -webkit-box-shadow: 1px 1px 3px #000;
    box-shadow: 1px 1px 3px #000;
}

.close:hover { 
    background: #00d9ff;
    text-decoration: none;
}