﻿@charset "utf-8";
/* CSS Document */


.calculator-container {
  color: #333;
  float: left;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  width: 615px;
}

.calculator-box {
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  background: -moz-radial-gradient(circle, #8b8b8b, #676767);
  background: -ms-radial-gradient(circle, #8b8b8b, #676767);
  background: -webkit-gradient(radial, center center, 0, center center, 260, from(#8b8b8b), to(#676767));
  background: -webkit-radial-gradient(circle, #8b8b8b, #676767);
  /* Can't specify a percentage size? Laaaaaame. */
  background: -webkit-gradient(radial, center center, 0, center center, 260, from(#8b8b8b), to(#676767));
  /* Safari 5.1+, Chrome 10+ */
  background: -webkit-radial-gradient(circle, #8b8b8b, #676767);
  /* Firefox 3.6+ */
  background: -moz-radial-gradient(circle, #8b8b8b, #676767);
  /* IE 10 */
  background: -ms-radial-gradient(circle, #8b8b8b, #676767);
  background-color: #999;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 8px;
  color: white;

  float: left;

  max-width: 220px;

  padding: 20px;

  /* Opera couldn't do radial gradients, then at some point they started supporting the -webkit- syntax, how it kinda does but it's kinda broken (doesn't do sizing) */
}

.calculator-container .box2 {
  margin-bottom: 10px;
  max-width: inherit;
  width: auto;
}

.calculator-headings { margin-left: 175px; }

.maincontent .calculator-container .calculator-headings h3 {
  color: #FFF;
  display: block;
  float: left;
  font-weight: bold;
  margin: 0;
  text-align: center;
  width: 200px;
}

.calculator-box label {
  display: block;
  font-size: 12px;
  font-size: 12px;
  margin-bottom: 5px;
  margin-bottom: 5px;
  margin-top: 8px;
}

.calculator-container .box2 label {
  float: left;
  margin-top: 20px;
  padding-right: 5px;
  text-align: right;
  width: 170px;
}

.calculator-box input {
  -moz-border-radius: 5px;
  -moz-box-sizing: border-box;
  /*
	-ms-box-sizing:content-box;
    -moz-box-sizing:content-box;
    box-sizing:content-box;
    -webkit-box-sizing:content-box; 
	*/
	
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-border-radius: 5px;
  -webkit-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  background: transparent;
  border: 1px solid white;
  border-radius: 5px;
  box-sizing: border-box;
  box-sizing: border-box;
  color: #FFF;
  font-family: 'Open Sans', sans-serif;
  font-size: 26px;
  font-weight: bold;
  margin: 0;
  padding: 0;
  text-indent: 22px;
  text-transform: uppercase;
  width: 100%;
  cursor: pointer;
}

.calculator-container .box2 input {
  float: left;
  margin-top: 10px;
  width: 200px;
}

.calculator-box input.left {
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-topright: 0;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.calculator-box input.right {
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-topleft: 0;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 0;
  border-top-left-radius: 0;
}


.calculator-container .calculator-box input[type="radio"] {
  display: block;
  float: left;
  margin: 3px 8px;
  width: auto;
}

textarea:focus, input:focus, select:focus, button:focus {
  border-color: #70b7db;
  border-color: #70b7db;
  outline: 0;
}

table.radio-boxes {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border: 1px solid #fff;
  border-radius: 5px;
  height: 30px;
  padding: 10px;
}

.calculator-box button {
  -moz-border-radius: 5px;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-border-radius: 5px;
  -webkit-box-sizing: border-box;
  background: transparent;
  border: 1px solid white;
  border-radius: 5px;
  box-sizing: border-box;
  color: #FFF;
  font-family: 'Open Sans', sans-serif;
  font-size: 26px;
  font-weight: 300;
  margin: 20px 0 0 0;
  padding: 10px 0 10px 0;
  width: 100%;
}

.calculator-container .box2 input.button {
  float: right;
  width: 400px;
  font-weight:300;
  padding: 10px 0 10px 0;
  text-transform:initial;'
}

.calculator-container .box2 input.button:hover {
    border:1px solid #70b7db;
    color: #70b7db;
}

.calculator-box select {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  background: transparent;
  border: 1px solid white;
  border-radius: 5px;
  color: #FFF;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  padding: 6px;
  text-indent: 4px;
  width: 100%;
}

.calculator-box select option { color: #333; }

.calculator-container button:hover {
  border-color: #70b7db;
  color: #70b7db;
  cursor: pointer;
}

.calculator-container .pound {
  display: block;
  float: left;
  font-size: 20px;
  font-weight: 600;
  line-height: 40px;
  margin-right: -38px;
  padding-left: 8px;
  width: 30px;
}

.box2 .pound {
  line-height: 30px;
  line-height: 30px;
  margin-top: 15px;
}

.calculator-container .percent {
  display: block;
  float: right;
  font-size: 20px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: -40px;
  margin-right: 5px;
}

.box2 .percent {
  line-height: 30px;
  line-height: 30px;
  margin-top: 15px;
}


input:focus::-webkit-input-placeholder {
  -moz-transition: text-indent 800ms ease-out 0.5s;
  -o-transition: text-indent 800ms ease-out 0.5s;
  -webkit-transition: text-indent 800ms ease-out 0.5s;
  text-indent: -100%;
  text-indent: -100%;
  transition: text-indent 800ms ease-out 0.5s;
}

.left {
  -moz-border-radius-bottomleft: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-box-sizing: border-box;
  -webkit-border-bottom-left-radius: 5px;
  -webkit-border-top-left-radius: 5px;
  -webkit-box-sizing: border-box;
  border: 1px solid white;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
  box-sizing: border-box;
  display: block;
  float: left;
  padding: 7px 7px 8px;
  width: 50%;
}

.right {
  -moz-border-radius-bottomright: 5px;
  -moz-border-radius-topright: 5px;
  -moz-box-sizing: border-box;
  -webkit-border-bottom-right-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -webkit-box-sizing: border-box;
  border: 1px solid white;
  border-bottom-right-radius: 5px;
  border-left: none;
  border-top-right-radius: 5px;
  box-sizing: border-box;
  display: block;
  float: left;
  padding: 7px 7px 8px;
  width: 50%;
}

.calculator-box label.left {
  margin-bottom: 10px;
  margin-top: 0;
}

.calculator-box label.right {
  margin-bottom: 10px;
  margin-top: 0;
}

/*================ VALIDATION - ERROR MESSAGES*/

.error-message {
    color:crimson;
}

.calculator-container .twin-wrap {
    float: left;
    width: 100%;
}

.calculator-container .single-wrap {
    float: left;
    width: 200px;
}

/*================ RESULT ==================*/

.calculator-container .result {

  float: left;
  padding-left: 20px;
  width: 335px;
}

.calculator-container .result2 {
  clear: both;
  float: none;
  margin-bottom: 10px;
  text-align: right;
  width: auto;
}

.maincontent .calculator-container .result h1 {
  background-color: transparent;
  background-image: none;
  color: #333333;
  font-size: 26px;
  font-weight: 800;
  margin: 0;
  padding: 0;
  text-transform: UPPERCASE;
}

.result h2 {
  color: #6699cc;
  font-size: 22px;
  font-weight: 300;
  margin: 0;
}

.result2 h1, .result2 h2 { text-align: center; }

#page .calculator-container .result2 p {
  margin-left: 175px;
  text-align: left;
}


.calculator-container .result2 .headings {
  float: left;
  margin-bottom: 10px;
  padding-left: 175px;
}

.result2 h4 {
  -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 1px solid #6699cc;
    box-sizing: border-box;
    color: #6699cc;
    display: block;
    float: left;
    font-size: 16px;
    font-weight: 800;
    margin: 0;
    padding: 20px;
    padding-right: 0;
    text-align: left;
    width: 200px;
}

.option1 {
  -moz-border-radius-bottomleft: 5px;
  -moz-border-radius-topleft: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -webkit-border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

h4.option2 {
  -moz-border-radius-bottomright: 5px;
  -moz-border-radius-topright: 5px;
  -webkit-border-bottom-right-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-left: none;
  border-top-right-radius: 5px;
}

.total {
  color: #333333;
  display: block;
  font-size: 40px;
  margin-bottom: -20px;
}

.calculator-container .number-total {
  color: #6699cc;
  font-size: 40px;
  font-weight: 800;
}

.calculator-container .cents {
  color: #6699cc;
  font-size: 30px;
  font-weight: 800;
}

.incl-interest { font-size: 10px; }

.results-table tr td {
  border-bottom: 1px solid #6699cc;
  font-weight: bold;
  height: 30px;
}

.results-table tr.increase td { border-top: 2px solid #96c5f5; }

.results-table tfoot em {
    color: #6699cc;
}

.upper-range {
  border-bottom: 1px solid #6699cc;
  padding-left: 100px;
}

.calculator-container .lower-range {
  margin-top: 10px;
  padding-left: 100px;
}

.ampersand {
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  background: #999999;
  border-radius: 30px;
  color: white;
  display: block;
  font-size: 24px;
  height: 48px;
  margin-bottom: -30px;
  margin-left: 20px;
  margin-top: -30px;
  padding-top: 12px;
  position: absolute;
  text-align: center;
  width: 60px;
}

.range {
  color: #6699cc;
  font-size: 30px;
  line-height:30px;
  font-weight: 800;
  font-weight: 800;
  margin-bottom: -15px;
  margin-top: 0;
}

.range_pound {
  color: #333;
  font-size: 30px;
  font-weight: normal;
}

.range_cents { 
    font-size: 30px; 
}

#page p.range {
    margin: 0;
}

#page p.upper-lower {
    margin-top: 0;
}

.results-table {
  float: left;
  margin-bottom: 20px;
}

.result-label {
  float: left;
  line-height: 36px;
  line-height: 36px;
  padding-right: 10px;
  width: 165px;
}

.double-line { line-height: normal; }

.option1-result, .option2-result {
  border-bottom: 1px solid #6699cc;
  float: left;
  font-size: 20px;
  line-height: 30px;
  padding-left: 20px;
  padding-top: 5px;
  text-align: left;
  width: 180px;
}



#tab-box {
  float: left;
  /*-ms-behavior: url('PIE.htc');
        behavior: url('PIE.htc');*/
  position: relative;
  margin-bottom: 20px;
  /*min-height: 365px;
  width: 815px;
  border: 1px solid #CDCCCC;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background: #FFF;*/
  /* CSS3 Support for IE */
}

#tab-box:before,
#tab-box:after {
  content: "";
  position: absolute;
  z-index: -2;
}

  /*#tab-box:before {
    -ms-behavior: url('PIE.htc');
        behavior: url('PIE.htc');
    top: 50%;
    right: 30px;
    bottom: 0;
    left: 30px;
    -moz-border-radius: 100px/10px;
    border-radius: 100px/10px;
    -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);

    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);

    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}*/

/* NAVIGATION */

/*#nav {
  display: none;
  overflow: hidden;
  width: 100%;
  height: 50px;
}*/

#nav ul li { float: left;
  /*width: 260px;
      height: 50px;
      border-width: 1px;
      border-style: solid;
      border-top-color: #FFF;
      border-right-color: #CDCCCC;
      border-bottom-color: #CDCCCC;
      border-left-color: #FFF;
      line-height: 50px;*/ }

#nav ul li a {
  border: 1px solid #999;
  color: #555;
  /*-ms-behavior: url('PIE.htc');
        behavior: url('PIE.htc');*/
  display: block;
  font-size: 14px;
  line-height: 25px;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  /*background: #EAEAEA;
        background: -moz-linear-gradient(top, #F7F7F7 0%, #EAEAEA 100%);
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F7F7F7), color-stop(100%, #EAEAEA));
        color: #7c7c7c;
        text-align: center;
        text-decoration: none;
        text-shadow: 0px 1px 1px #ffffff;
        font-weight: bold;
         CSS3 Support for IE */
}

#nav ul li:first-child a {
  -moz-border-radius-bottomleft: 5px;
  -moz-border-radius-topleft: 5px;
  -webkit-border-bottom-left-radius: 5px;
  /*-ms-behavior: url('PIE.htc');
        -moz-border-radius-topleft: 4px;
        behavior: url('PIE.htc');
        border-top-left-radius: 4px;
         CSS3 Support for IE */
  -webkit-border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-right: none;
  border-top-left-radius: 5px;
}

#nav ul li:last-child a {
  -moz-border-radius-bottomright: 5px;
  -moz-border-radius-topright: 5px;
  -webkit-border-bottom-right-radius: 5px;
  /*-ms-behavior: url('PIE.htc');
        -moz-border-radius-topright: 4px;
        behavior: url('PIE.htc');
        border-right: none;
        border-top-right-radius: 4px;
         CSS3 Support for IE */
  -webkit-border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-left: none;
  border-top-right-radius: 5px;
}

#nav ul li a:hover {
  background: #aeaeae;
  color: #FFF
/* CSS3 Support for IE */
}

#nav ul li.active a {
  background: #999;
  color: #FFF
}



/* CONTENT */

#content {
  float: left;
  margin-top: 10px;
}

#main-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

  
  
  
  
  /*================ CALL-TO-ACTION ==================*/

.call-to-action {
  -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    background: -webkit-gradient(radial, center center, 0, center center, 260, from(#8b8b8b), to(#676767));
    background: -webkit-radial-gradient(circle, #8b8b8b, #676767);
    background: -moz-radial-gradient(circle, #8b8b8b, #676767);
    background: -ms-radial-gradient(circle, #8b8b8b, #676767);
    background-color: #999;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 8px;
    padding: 20px;
    clear: both;
    overflow: auto;
}

#page .call-to-action p.primary {
  color: white;
  font-size: 19px;
  font-weight: 300;
  margin: 0;
}

#page .call-to-action p.secondary {
  color: #333;
    font-size: 12px;
    font-weight: 700;
    margin: 5px 0 5px 0;
}

.call-to-action input {
  -moz-border-radius: 5px;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-border-radius: 5px;
  -webkit-box-sizing: border-box;
  border: 1px solid #333;
  border-radius: 5px;
  box-sizing: border-box;
  float: left;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: bold;
  height: 32px;
  margin: 0 2% 0 0;
  padding: 0;
  text-indent: 5px;
  width: 100%;
}

.call-to-action .single-wrap {
    float: left;
    width: 38%;
    margin-right:10px;
}

.call-to-action input[type="submit"] {
  -moz-border-radius: 5px;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-border-radius: 5px;
  -webkit-box-sizing: border-box;
  background: #333;
  border: 1px solid #333;
  border-radius: 5px;
  box-sizing: border-box;
  color: white;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  height: 32px;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 20%;
}

.call-to-action input[type="submit"]:hover {
  background: #444;
  border: 1px solid #444;
}