.clear { clear: both; }

/* Contact Page */

#contact-content { padding: 15px; }

    #contact-content h1 { margin-bottom: 30px; }
    #contact-content table, #contact-content td {
        border: none;
        vertical-align: top;
        padding: 0;
    }

        #contact-content table > tbody > tr:first-child > td:first-child {
            width: 130px;
            padding: 0;
        }
            #contact-content table td p:first-child { margin-top: 10px; }
            #contact-content table td p { line-height:  0px; }
            #contact-content table tr td:first-child { font-weight: bold; }

#nandp-disclaimer {
    padding-top: 5px;
    border-style: solid;
    border-width: 1px;
    font-weight: bold;
    text-align: center;
    width: 480px;
}


/* Payment Page */

#left-container, #right-container {
    width: 50%;
    float: left;
}

#payment-content { padding: 15px; }
#left-container h1 { margin-bottom: 30px; }

    #right-container { padding-top: 22px; }
    #right-container table { 
        padding-top: 33px; 
        text-align: right;
    }
    #right-container table td:first-child { text-align: right; }
    #right-container table, #right-container table tr > td { border: 0; }

#disclaimer { color: gray; }
#nandp-disclaimer {
    padding-top: 5px;
    border-style: solid;
    border-width: 1px;
    font-weight: bold;
    text-align: center;
    margin-top: 30px;
}
input[type="submit"] { margin: 0!important; }



/* Application Page enquiryapp.asp */

#enquiry-content { padding: 15px; }
    #enquiry-content label { font-weight: normal; }

    #enquiry-content table, #enquiry-content table td { 
            border: none;
            vertical-align: top;
    }
        #enquiry-content table > tbody > tr:first-child > td:first-child { width: 230px; }

    #enquiry-content select { float: none; }

#nandp-disclaimer {
    padding-top: 10px;
    border-style: solid;
    border-width: 1px;
    font-weight: bold;
    text-align: center;
    width: 500px;
}

#enquiry-content form table td, #enquiry-content form table { padding-left: 0; }
    #enquiry-content form h4:first-of-type { margin-top: 30px; }
    #enquiry-content span:not(#selectBranch) { color: #cc0000; font-family: Trebuchet, sans-serif; }

#FindAddress, #confirmButton, #submitButton { margin-left: 0!important; }
#isa-content ul > li { list-style-type: square; }
#selectBranch { margin-left: 10px; }





/**********/

#jarvis { 
    margin: -12px 0 0 550px; 
    position: absolute; 
} /* in association with Jarvis logo */

#loginTo p {
     text-align: left;
     margin-top: 12px;
} /* Header telephone number and contact details */

input[type='text'] {
    float: left;
    height: 16px;
    padding: 4px 5px;
    border: 1px solid #d7d7d7;
    margin: 0;
    font-family: Aller,Trebuchet MS,sans-serif;
    color: #505050;
}
select {
    float: left;
    height: 28px;
    padding: 4px 5px;
    border: 1px solid #bbb;
    margin: 0 0;
    font-family: Aller,"Trebuchet MS",sans-serif;
    margin-top: -3px;
}
#nav, #breadcrumb {
    display: none;
}
body {
    color: #292929;
}
h1,h2,h3,h4,h5,h6 {
    color: #333;
}
h4 {
    font-weight: bold;
    font-size: 20px;
}

input[type="button"], input[type="submit"] {
    background-color:#E1E1E1!important;
    color:#111;
    background:#d1d1d1 !important;
    border: 1px solid #b1b1b1;
    height: 30px!important;
    min-width: 100px;
}
    input[type="button"]:hover, input[type="submit"]:hover {
        background-color:#D7D7D7!important;
    }
input[type="text"], select { 
    font-family: verdana, arial, helvetica, 'sans-serif'; 
    font-weight: 400;
    border-color: #969696;
    font-size: 12.5px;
}

.icon-pdf {
    background: url("../images/icon-pdf.gif") no-repeat left;
    width:20px;
    height:16px;
    display: inline-block;
}
.filesize {
    color:#292929!important;
    font-size: 10px;
}
td.subscript > span {color: #333; }

.help {
    margin-left: 10px;
}

hr {
    background-color: rgb(204, 204, 204);
}

a:link { color: #0000FF; }
a:visited { color: #551A8B; }
a:hover { background-color: #E8E8E8; text-decoration: underline;}

/* Add this attribute to the element that needs a tooltip */
[data-tooltip] {
  position: relative;
  z-index: 2;
  cursor: pointer;

}

/* Hide the tooltip content by default */
[data-tooltip]:before,
[data-tooltip]:after {
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  pointer-events: none;

}

/* Position tooltip above the element */
[data-tooltip]:before {
  position: absolute;
  bottom: 150%;
  left: 300%;
  margin-bottom: 5px;
  margin-left: -80px;
  padding: 12px;
  width: 200px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  background-color: #000;
  background-color: hsla(0, 0%, 20%, 0.9);
  color: #fff;
  content: attr(data-tooltip);
  text-align: center;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 400;
}

/* Triangle hack to make tooltip look like a speech bubble */
[data-tooltip]:after {
  position: absolute;
  bottom: 150%;
  left: 70%;
  margin-left: -5px;
  width: 0;
  border-top: 5px solid #000;
  border-top: 5px solid hsla(0, 0%, 20%, 0.9);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: " ";
  font-size: 0;
  line-height: 0;
}

/* Show tooltip content on hover */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}