/**
 *  SignaturePad: A jQuery plugin for assisting in the creation of an HTML5 canvas
 *  based signature pad. Records the drawn signature in JSON for later regeneration.
 *
 *  Primary Screen Styles
 *  @media screen
 *
 *  @project ca.thomasjbradley.applications.signaturepad
 *  @author Thomas J Bradley <hey@thomasjbradley.ca>
 *  @link http://thomasjbradley.ca/lab/signature-pad
 *  @link http://github.com/thomasjbradley/signature-pad
 *  @copyright Copyright MMXI, Thomas J Bradley
 *  @license New BSD License
 */

@font-face {
  font-family: 'Journal';
  src: url('/fonts/journal.eot');
  src: local('Journal Regular'), local('Journal'), url('/fonts/journal.woff') format('woff'), url('/fonts/journal.ttf') format('truetype'), url('/fonts/journal.svg#Journal') format('svg');
  }

@media screen {

.sigPad {
  margin: 0;
  padding: 0;
  width: 600px;
  }

.sigPad label {
  display: block;
  margin: 0 0 0.515em;
  padding: 0;

  color: #000;
  font: normal 1.6em/1.875 Lucida, Arial, Verdana;
  }

.sigPad label.error {
  color: #f33;
  }

.sigPad input {
  margin: 0;
  padding: 0.2em 0.2em;
  width: 398px;
  height: 30px;
  border: 1px solid #BBB;

  font-size: 1.8em;
  border-radius: 5px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-top-left: 5px;
  -webkit-border-top-right: 5px;
  }

.sigPad input.error {
  border-color: #f33;
  }

.sig {
  display: none;
  }

.sigNav {
  display: none;
  height: 2.25em;
  margin: 5px 0 0;
  padding: 0;
  position: relative;

  list-style-type: none;
  }

  .sigNav li {
    display: inline;
    float: left;
    margin: 0;
    padding: 0;
    }

    .sigNav a,
    .sigNav a:link,
    .sigNav a:visited {
      display: block;
      margin: 0;
      padding: 0 0.6em;

      background-color: #fff;

      color: #666;
      font-weight: bold;
      line-height: 2.25em;
      text-decoration: underline;
	  font-size: 1.2em;
      }

    .sigNav a.current,
    .sigNav a.current:link,
    .sigNav a.current:visited {
      background-color: #EEE;
      border-top-left-radius: 5px;
      border-top-right-radius: 5px;
      -moz-border-radius-topleft: 5px;
      -moz-border-radius-topright: 5px;
      -webkit-border-top-left-radius: 5px;
      -webkit-border-top-right-radius: 5px;

      color: #666;
      text-decoration: none;
	  display:none;
      }

    .sigNav .typeIt a.current,
    .sigNav .typeIt a.current:link,
    .sigNav .typeIt a.current:visited {
      background-color: #eee;

      color: #555;
      }

    .sigNav .clearButton {
      bottom: 0;
      display: none;
      position: absolute;
      right: 0;

      font-size: 0.8em;
      line-height: 1.375;
      }

.sigWrapper {
  clear: both;
  height: 155px;

  border: 1px solid #999;
  }

.sigWrapper.current {
  border-color: #b0879f;
  }

.signed .sigWrapper {
  border: 0;
  }

.pad {
  position: relative;
  }

  .current .pad {
    cursor: url("../images/pen.png") 8 8, crosshair;
    }

.typed {
  height: 155px;
  margin: 20px;
  padding: 0 5px;
  position: absolute;
  z-index: 90;

  cursor: default;

  color: #145394;
  font: normal 6.875em/100px "Journal",Georgia,Times,serif;
  }

.typeItDesc,
.drawItDesc {
  display: none;
  margin: 0.75em 0 0.515em;
  padding: 0.515em 0 0;

  border-top: 3px solid #f0e2eb;

  color: #000;
  font: normal 1.6em/1.875 Lucida, Arial, Verdana;
  }

p.error {
  display: block;
  margin: 0.5em 0;
  padding: 0.4em;

  background-color: #f33;

  color: #fff;
  font-weight: bold;
  }


.esign-dialog-container{
  padding:0 !important;
  margin:0; 
}



/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers (opinionated).
 */

body {
  margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */

figcaption,
figure,
main { /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */

figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */

a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
}

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */

b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */

dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */

mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Add the correct display in IE 9-.
 */

audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */

audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */

img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */

svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */

button,
html [type="button"], /* 1 */
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */

details, /* 1 */
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Scripting
   ========================================================================== */

/**
 * Add the correct display in IE 9-.
 */

canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */

template {
  display: none;
}

/* Hidden
   ========================================================================== */

/**
 * Add the correct display in IE 10-.
 */

[hidden] {
  display: none;
}


/*======================================
  Selectric v1.12.0
======================================*/

.selectric-wrapper {
  position: relative;
  cursor: pointer;
}

.selectric-responsive {
  width: 100%;
}

.selectric {
  border: 1px solid #DDD;
  border-radius: 0px;
  background: #F8F8F8;
  position: relative;
  overflow: hidden;
}

.selectric .label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 38px 0 10px;
  font-size: 12px;
  line-height: 38px;
  color: #444;
  height: 38px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.selectric .button {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 38px;
  height: 38px;
  line-height: 38px;
  background-color: #F8f8f8;
  color: #BBB;
  text-align: center;
  font: 0/0 a;
  *font: 20px/38px Lucida Sans Unicode, Arial Unicode MS, Arial;
}

.selectric .button:after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-top-color: #BBB;
  border-bottom: none;
}

.selectric-focus .selectric {
  border-color: #aaaaaa;
}

.selectric-hover .selectric {
  border-color: #c4c4c4;
}

.selectric-hover .selectric .button {
  color: #a2a2a2;
}

.selectric-hover .selectric .button:after {
  border-top-color: #a2a2a2;
}

.selectric-open {
  z-index: 9999;
}

.selectric-open .selectric {
  border-color: #c4c4c4;
}

.selectric-open .selectric-items {
  display: block;
}

.selectric-disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.selectric-hide-select {
  position: relative;
  overflow: hidden;
  width: 0;
  height: 0;
}

.selectric-hide-select select {
  position: absolute;
  left: -100%;
}

.selectric-hide-select.selectric-is-native {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.selectric-hide-select.selectric-is-native select {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  border: none;
  z-index: 1;
  box-sizing: border-box;
  opacity: 0;
}

.selectric-input {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  outline: none !important;
  border: none !important;
  *font: 0/0 a !important;
  background: none !important;
}

.selectric-temp-show {
  position: absolute !important;
  visibility: hidden !important;
  display: block !important;
}

/* Items box */
.selectric-items {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #F8F8F8;
  border: 1px solid #c4c4c4;
  z-index: -1;
  box-shadow: 0 0 10px -6px;
}

.selectric-items .selectric-scroll {
  height: 100%;
  overflow: auto;
}

.selectric-above .selectric-items {
  top: auto;
  bottom: 100%;
}

.selectric-items ul, .selectric-items li {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  line-height: 20px;
  min-height: 20px;
}

.selectric-items li {
  display: block;
  padding: 10px;
  color: #666;
  cursor: pointer;
}

.selectric-items li.selected {
  background: #E0E0E0;
  color: #444;
}

.selectric-items li.highlighted {
  background: #D0D0D0;
  color: #444;
}

.selectric-items li:hover {
  background: #D5D5D5;
  color: #444;
}

.selectric-items .disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default !important;
  background: none !important;
  color: #666 !important;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.selectric-items .selectric-group .selectric-group-label {
  font-weight: bold;
  padding-left: 10px;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background: none;
  color: #444;
}

.selectric-items .selectric-group.disabled li {
  filter: alpha(opacity=100);
  opacity: 1;
}

.selectric-items .selectric-group li {
  padding-left: 25px;
}


html, body {
  width: 100%;
  height: 100%; }

body {
  font-size: 16px;
  min-width: 320px;
  position: relative;
  line-height: 1.42;
  font-family: "OpenSans", sans-serif;
  background-color: #f7f7f7; }

ul {
  padding: 0;
  margin: 0; }
  ul li {
    list-style: none;
    float: left; }

.fixed {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 101; }

.main-wrap {
  padding-bottom: 260px;
  min-width: 980px; }

.main-wrap-recipient {
  padding-bottom: 60px;
}

.top-nav {
  height: 50px;
  font-size: 13px;
  background-color: #fff;
  text-align: center;
  padding-top: 16px;
  border-bottom: 1px solid #f1f1f1;
  position: relative; }
  .top-nav .angle-left {
    left: 27px;
    position: absolute;
    font-size: 38px;
    cursor: pointer;
    top: 50%;
    -webkit-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    transform: translate(0%, -50%); }
  .top-nav .nav-list-progress {
    display: inline-block;
    margin-bottom: 8px; }
    .top-nav .nav-list-progress li {
      height: 40px;
      width: 80px;
      z-index: 1;
      position: relative; }
      .top-nav .nav-list-progress li:last-child {
        margin-right: 0; }
      .top-nav .nav-list-progress li.active a {
        color: #49a3af; }
      .top-nav .nav-list-progress li a {
        color: #b1b1b1;
        text-decoration: none;
        display: block;
        height: 40px; }
        .top-nav .nav-list-progress li a:hover {
          color: #265b63; }
  .top-nav .progress {
    width: 315px;
    height: 6px;
    -webkit-border-radius: 10px;
    border-radius: 10px; }
  .top-nav .progress-wrap {
    background: #2EB3D0;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    top: -28px;
    z-index: 0; }
    .top-nav .progress-wrap .progress-bar {
      -webkit-border-radius: 0 0 10px;
      border-radius: 0 0 10px;
      background: #B9C0C9;
      left: 0;
      position: absolute;
      top: 0; }

.top-line {
  min-width: 700px;
  border-bottom: 1px solid #DDD;
  text-align: center;
  position: relative;
  background-color: #fff;
  -webkit-box-shadow: -1px 3px 20px 0 rgba(0, 0, 0, 0.05);
  box-shadow: -1px 3px 20px 0 rgba(0, 0, 0, 0.05); }
  .top-line .btn-default {
    margin-right: 5px; }

.top-line-fees {
  background-color: #fff;
  text-align: center;
  height: 30px;
  line-height: 30px;
  font-size: 11px;
  color: #58b1bd;
  border-bottom: 1px solid #f1f1f1;
  display: none; }

.top-line-main {
  padding: 16px 0 16px 0;
  height: 36px; }

.top-line-fixed {
  min-width: 900px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100; }

.top-line__left {
  width: 31%;
  float: left;
  padding-left: 25px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: left; }
  .top-line__left .btn-transparent {
    vertical-align: top; }
  .top-line__left ul li {
    margin-top: 8px; }

.top-line__right {
  float: right;
  width: 20%;
  min-width: 150px;
  padding-right: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: right; }

.top-line__center {
  line-height: 36px;
  width: 38%;
  float: left;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  .top-line__center .customize-btn {
    margin-left: 20px;
    vertical-align: top; }

    .top-line__center .customize-btn:disabled,
     .top-line__center .customize-btn[disabled] {
        color: #CCC;
        cursor: not-allowed;
    }

.btn-accept:disabled,
.btn-accept[disabled],
.btn-decline:disabled,
.btn-decline[disabled] {
  width: 180px;
  background-color: #CCC;
  cursor: not-allowed;
}

.top-line__title {
  font-size: 14px;
  font-weight: 600;
  color: #737272;
  margin-right: 10px;
  vertical-align: top; }

.top-line__select {
  border: 0;
  color: #737272;
  font-size: 14px;
  padding-right: 5px; }

.comment {
  font-weight: bold;
  position: relative;
  display: inline-block;
  margin-right: 25px; }

.comment__count {
  font-size: 11px;
  display: inline-block;
  padding: 1px 6px;
  background: #49a3af;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  color: #fff;
  position: absolute;
  right: -8px;
  top: -4px;
  line-height: 15px; }

.collaborators {
  display: inline-block;
  margin-right: 15px; }

.btn {
  width: auto;
  height: 36px;
  border: 1px solid transparent;
  padding: 7px 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  vertical-align: middle;
  position: relative; }
  .btn img {
    float: left;
    color: #ccc; }
    
  .btn:hover {
      border: 1px solid #999;
    }

  a.btn-save-proposal {
    padding-top: 0;
    padding-bottom: 0;
    display: inline-block;
    line-height: 34px;
    height: 35px;
    text-decoration: none;
  }

.btn-transparent {
  background: none;
  border-color: #ccc;
  color: #7f7e7e; }
  .btn-transparent span {
    float: left; }
  .btn-transparent span {
    line-height: 14px;
    margin-left: 10px; }

.btn-default {
  color: #fff;
  background-color: #067b8a; }

.btn-decline {
  color: #f2736a;
  background-color: #f2f2f2; }

.btn-demo {
  width: auto;
  background-color: #49a3af;
  color: #fff;
  position: relative;
  top: -4px; }

.btn-close {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  display: block;
  outline: none;
  padding: 0;
  color: #b8b8b8;
  position: absolute;
  right: 25px;
  font-size: 30px; }

.btn-noborder, .btn-noborder:hover {
  border-color: transparent;
  width: 150px; }

.discard-btn, .discard-btn:hover {
  text-align: right;
  width: 140px;
  padding-left: 0;
}
  .discard-btn span {
    text-decoration: underline;
    margin-left: 0;
  }

main {
  max-width: 815px;
  width: 100%;
  min-height: 1600px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.15);
  margin: 0 auto;
  top: 170px;
  position: relative; }

  main:before {
    content: "";
    width: 121px;
    height: 121px;
    display: inline-block;
    position: absolute;
    right: -3px;
    top: -3px;
    z-index: 90; }

  main.container {
    top: 110px;
  }

  main.container-demo {
    top: 180px;
  }

main.ribbon-preview:before {
    background:url(/images/preview/preview.png);
    pointer-events: none;
}
main.ribbon-Postponed:before {
    background:url(/images/preview/postponed.png);
    pointer-events: none;
}
main.ribbon-Declined:before {
    background:url(/images/preview/declined.png);
    pointer-events: none;
}
main.ribbon-Accepted:before {
    background:url(/images/preview/accepted.png);
    pointer-events: none;
}

.main-marginTop {
  margin-top: 115px; }

.demo {
  background-color: #faf0c9;
  text-align: center;
  height: 58px;
  line-height: 58px;
  position: relative; }

.demo-title {
  margin: 0;
  color: #a08736;
  display: inline-block;
  font-weight: normal;
  font-size: 15px;
  line-height: 18px; }

.demo-box {
  background-color: #a08736;
  display: inline-block;
  width: 60px;
  height: 25px;
  vertical-align: bottom; }

.demo .btn-demo {
  margin-left: 10px; }

.nav-footer {
  border-top: 1px solid #DDD;
  height: 67px;
  background-color: #fff;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%; }

.nav-footer__btn {
  display: inline-block;
  vertical-align: middle;
  text-align: center; }
  .nav-footer__btn:first-child {
    margin-right: 5px; }
  .nav-footer__btn a {
    display: inline-block;
    -webkit-border-radius: 50%;
    border-radius: 50%; }
    .nav-footer__btn a:hover .arrow {
      background-color: #067b8a; }
    .nav-footer__btn a:hover .bottom:after {
      border-top: 2px solid #fff;
      border-right: 2px solid #fff; }
    .nav-footer__btn a:hover .top:after {
      border-top: 2px solid #fff;
      border-right: 2px solid #fff; }
  .nav-footer__btn .arrow {
    display: inline-block;
    width: 34px;
    height: 34px;
    border: 1px solid #ccc;
    -webkit-border-radius: 50%;
    border-radius: 50%; }
  .nav-footer__btn .top:after {
    content: '';
    display: inline-block;
    margin-top: 14px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #067b8a;
    border-right: 2px solid #067b8a;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg); }
  .nav-footer__btn .bottom:after {
    content: '';
    display: inline-block;
    margin-top: 0.6em;
    width: 8px;
    height: 8px;
    border-top: 2px solid #49a3af;
    border-right: 2px solid #49a3af;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg); }

.nav-footer__right {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  transform: translate(0%, -50%); }

.nav-footer__center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }
  .nav-footer__center .btn {
    margin-left: 20px; }

.nav-footer__select {
  border: 0;
  padding-right: 10px;
  vertical-align: middle;
  margin-right: 15px;
  color: #7f7e7e; }

.nav-list-menu {
  display: inline-block;
  padding-top: 3px;
  
  font-size: 18px; }
  .nav-list-menu .active {
    border-bottom: 4px solid #49a3af; }
  .nav-list-menu li:hover a {
    color: #333; }
  .nav-list-menu a {
    color: #999;
    text-decoration: none;
    padding: 5px 22px 13px;
    display: inline-block; }
  .nav-list-menu .active a {
    color: #737272;
  }

.design-header__buttons {
  position: relative;
  margin: 15px 0 0;
  -webkit-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  transform: translate(0%, -50%); }

  .design-header__buttons > span {
    font-size: 14px;
    color: #737272; }

.section-design-main,
.section-design__left {
  border-left: 1px solid #f1f1f1;
  border-right: 1px solid #f1f1f1; }

.section-design__left {
  width: 260px;
  height: 130px;
  padding-left: 20px;
  float: left; }

.section-design-main {
  height: 130px;
  text-align: left;
  padding: 0; }
  .section-design-main h3 {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: normal;
    color: #737272;
    margin-bottom: 20px; }

.section-design__center {
  float: left;
  padding-left: 25px;
  max-width: 600px;
  width: 100%;
  height: 130px;
  border-left: 1px solid #f1f1f1; }
  .section-design__center .select-container, .section-design__center .select-container-main  {
    max-width: 580px;
    width: 100%; }

.section-design__select {
  border: 0;
  color: #737272;
  font-size: 14px;
  padding-right: 5px; }

.select-container li, .select-container-main li {
  margin-right: 15px; }
  .select-container li:last-child, .select-container-main li:last-child {
    margin-right: 0; }
  .select-container li > span, .select-container-main li > span {
    display: block;
    font-size: 12px;
    font-weight: normal;
    color: #737272;
    margin-bottom: 10px; }

.sp-replacer:after {
  border-top: 5px solid #5f5e5e; }

.font-select {
  width: 385px;
  border: 1px solid #e1e1e1;
  padding: 0 5px 0 10px; }
  .font-select .current {
    text-transform: none; }
  .font-select .list {
    width: 385px; }

.size-select {
  border: 1px solid #e1e1e1;
  padding: 0 5px 0 10px;
  width: 80px; }

.layout-select {
  border: 1px solid #e1e1e1;
  padding: 0 5px 0 10px;
  width: 140px; }

.selectric-wrapper li {
  float: none; }

.selectric {
  border: solid 1px #e1e1e1;
  background-color: #fff;
  padding-right: 30px; }
  .selectric .button {
    width: 20px;
    height: 32px;
    background-color: #fff; }
    .selectric .button:after {
      border-top-color: #5f5e5e; }
  .selectric .label {
    margin: 0 0 0 10px;
    color: #737272;
    line-height: 34px;
    height: 32px;
    text-align: right; }

.selectric-items {
  border: 0;
  background-color: #fff; }
  .selectric-items ul li {
    margin-right: 0;
    padding-left: 20px; }
    .selectric-items ul li.highlighted {
      background-color: #49a3af;
      color: #fff; }

.selectric-font-select {
  width: 385px; }
  .selectric-font-select .label {
    text-align: left; }

.selectric-size-select {
  width: 80px; }
  .selectric-size-select .label {
    text-align: left; }

.selectric-heading-select {
  width: 115px;
  margin-bottom: 14px;
  margin-top: 3px; }
  .selectric-heading-select .label {
    margin-left: 0;
    text-transform: uppercase;
    text-align: left; }
  .selectric-heading-select .selectric {
    border: 0; }

.selectric-nav-footer__select {
  float: left;
  width: 230px; }
  .selectric-nav-footer__select .label {
    text-align: center;
    font-size: 14px; }
  .selectric-nav-footer__select .selectric {
    border: 0; }

.selectric-top-line__select {
  display: inline-block;
  width: 130px;
  text-align: left; }
  .selectric-top-line__select .label {
    font-size: 14px; }
  .selectric-top-line__select .selectric {
    border: 0; }

.design-header,
.theme-header {
  display: none; }

.design-header {
  min-width: 920px;
  position: fixed;
  width: 100%;
  z-index: 100;
  top: 0; }

.btn-accept {
  width: 120px;
  background-color: #49a3af;
}

.btn-arrow:hover:after {
  border-top-color: #a2a2a2; }

.btn-arrow:after {
  content: " ";
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-top-color: #5f5e5e;
  border-bottom: none; }

.theme-header {
  overflow-x: scroll;
  height: 70%;
  padding-top: 30px;
  width: 100%;
  position: fixed;
  z-index: 100;
  background-color: #fff;
  border-top: 1px solid #f1f1f1;
  text-align: center;
  -webkit-box-shadow: -1px 3px 20px 0 rgba(0, 0, 0, 0.05);
  box-shadow: -1px 3px 20px 0 rgba(0, 0, 0, 0.05); }

.theme-header-marginTop {
  margin-top: 135px; }

.theme-item {
  vertical-align: top;
  max-width: 240px;
  width: 100%;
  display: inline-block;
  margin: 0 20px; }

    .theme-item:hover .btn-theme {
      display: inline-block;
    }

.theme-item__panel {
  background-repeat: no-repeat;
  height: 313px;
  margin-top: 15px;
  -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1); }

    .theme-custom__panel {
      height: 180px;
    }
    .theme-custom__panel .btn-theme {
      margin-top: 5px;
    }
    .active-theme {
      border: 3px solid #49a3af;
    }

.theme-heading-text {
  font-size: 16px;
  color: #49a3af;
  font-weight: bold;
  margin-bottom: 5px; }

.theme-paragraph-text {
  font-size: 12px;
  color: #7f7e7e;
  margin-bottom: 15px; }

.btn-theme {
  margin-bottom: 25px;
  margin-top: 55px;
  display: none;
  width: 90px; }

.btn-chose-theme,.btn-chose-theme:hover {
  padding-left: 0;
  width: 185px;
}
  .btn-chose-theme span,.btn-chose-theme:hover span {
    float: right;
  }

  .btn-chose-theme:after {
    right: 0px;
  }

.theme-name {
  margin-top: 15px;
  color: #7f7e7e;
  font-size: 14px;
  font-weight: bold; }

  .theme-item a, .theme-item a .theme-name {
    text-decoration: none;
  }

.sp-input {
  background-color: #fff; }

@media (max-width: 1299px) {
  .theme-item {
    margin-bottom: 20px; }
  .theme-header {
    height: 75%; } }

@media (max-width: 1000px) {
  .top-line__left {
    width: 35%;
  }
}

.tabs-stage .tab {
  display: none; }

.tabs-stage .tab:first-child {
  display: block; }

.page-break {
  margin-top: 1px;
  margin-right: 20px;
  margin-left: 10px; }
  .page-break:before {
    content: "";
    display: inline-block;
    position: relative;
    left: -10px;
    top: -2px;
    width: 2px;
    height: 14px;
    background-color: #dbdbdb; }

.tooltipster-sidetip.tooltipster-noir.tooltipster-noir-customized .tooltipster-box {
  background-color: #000;
  border: 0;
  -webkit-border-radius: 6px;
  border-radius: 6px; }

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
  height: 6px;
  margin-left: -10px;
  top: 2px;
  width: 16px; }

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
  border-bottom-color: #000; }

.tooltipster-sidetip .tooltipster-content {
  font-size: 12px; }

#bottom-container {
    width:100%;
    margin-top: 140px;
    font-size: 13px;
}
  #bottom-container.bottom-container-demo {
    margin-top: 210px;
  }

  #bottom-container button {
    width: 120px;
  }

  #bottom-container a {
    color: #067b8a;
  }

#proposal-comment-container {
    margin:10px auto 30px;
    width: 815px;
    padding-bottom:20px;
}
  
  #proposal-comments h3 {
    font-size: 13px;
    color: #666;
    font-weight: 500;
  }

  #proposal-comments p {
    font-size: 13px;
  }



.ui-dialog {
	position: fixed;
	display: block;
	z-index: 1002;
	outline: 0px none;
	width: 600px;
	top: 10px;
	left: 333px;
}
.ui-dialog-content {
	background: none;
}
.modal-inside {
	background: #fff;
	border: 1px solid #bbb;
	border-width: 0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	padding: 15px;
}
.modal-inside.page-break-modal {
  overflow-y: scroll;
  max-height: 650px;
}
#dialog-loading {
	width: 90%;
	height: 80%;
	position:absolute;
	z-index:10;
	text-align: center;
	background: url(/images/ajax-loader-large.gif) center center no-repeat;
}
.ui-widget-shadow {
	background: url(/images/layout/app/modal-border.png) repeat 0 0;
	border: 1px solid #7f7f7f;
	border-width: 0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}
.ui-widget-overlay {
	position: fixed; top: 0; left: 0; width: 100%; height: 100%;
	width: 100%;
	height: 100%;
	z-index: 1002;
}
/*.ui-widget-overlay { background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .30;filter:Alpha(Opacity=30); } */
.ui-widget-overlay{
	opacity:0.9;
    background:#000;
}
/*
* For IE opacity... bleh.
***/
.ui-widget-overlay {
        filter: alpha(opacity = 90);
        zoom:1;
}
#mask {
	opacity:0;
	filter: alpha(opacity = 0);
    zoom:1;
}

.ui-resizable-handle {
	position: absolute;
	font-size: 0.1px;
	z-index: 99999;
}
.ui-resizable .ui-resizable-handle {
	display: block;
}
body .ui-resizable-disabled .ui-resizable-handle { display: none; } /* use 'body' to make it more specific (css order) */
body .ui-resizable-autohide .ui-resizable-handle { display: none; } /* use 'body' to make it more specific (css order) */

.ui-dialog-titlebar {
	display:none;
}

.ui-dialog-titlebar-close {
	/*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
	/* background: url(/images/layout/modal/888888_11x11_icon_close.gif) 0 0 no-repeat; */
	position: absolute;
	right: 8px;
	top: .7em;
	width: 11px;
	height: 11px;
	z-index: 100;
}

.ui-dialog-titlebar-close span {
	display: none;
}


/* This file skins dialog */
.ui-dialog.ui-draggable .ui-dialog-titlebar,
.ui-dialog.ui-draggable .ui-dialog-titlebar {
	cursor: move;
}

.gmail_extra{
    display: none;
}


#mask {
    position:absolute;
    z-index:9000;
    display:none;
    top:0;
    left:0;
    opacity:0;
}
#ajax-loader {
    position:fixed; top:0; width: 100%; text-align:center;
    z-index: 9999;
    background-color:#000;
}
#ajax-loader div {
    color: #999;
    font-size: 16px; font-weight:bold;
    background-color:#000;
    width: 100%;
    margin:0 auto; line-height:30px
}
#ajax-loader div img {
    vertical-align:middle;
    margin-left: 5px
}
#mask {
    filter: alpha(opacity = 0);
    zoom:1;
}

.yellow-box {
    background: #fffeee;
    border: 5px solid #fffeee;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    clear: both;
}

.yellow-box .inside {
    background: #FFFFEE;
    border: 1px solid #EBE9C5;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    padding: 10px;
    color: #555;
}

.yellow-box .white {
    background: #fff;
}

#error {
    clear: both;
    margin-bottom: 15px;
}

#error .inside, .error-modal .inside {
    background: #FF857F url(/images/layout/app/error.png) no-repeat 14px 12px;
    padding: 10px;
    padding-left: 40px;
}

.red-border {
    background: #cc3b35;
    border: 5px solid #cc3b35;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    clear: both;
}

.red-border .inside {
    background: #FF857F;
    border: 1px solid #8F0700;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    color: #5F0400;
}

.red-border .inside a { color: #5F0400; }
#success, #form-msg {
    margin-bottom: 15px;
}
.green-border {
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    clear: both;
}

.green-border .inside {
    background: #C8FF9F;
    border: 1px solid #66BF23;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    color: #142F00;
    padding: 10px;
}

.green-border-small {
    background: #85CF4D;
    border: 1px solid #85CF4D;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    clear: both;
}
    .green-border-small .inside {
        background: #C8FF9F;
        color: #142F00;
        border: none;
        padding: 5px 10px;
    }

#success .inside,
#form-msg .inside {
    background: #C8FF9F url(/images/layout/app/okay-green.gif) no-repeat 10px center;
    padding-left: 36px;
}

.green-border .inside a { color: #142F00; }
.green-border .inside a.button { color: #555; }


.orange-border {
    background: #ebe9b0;
    border: 5px solid #ebe9b0;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    clear: both;
}

.orange-border .inside {
    background: #f8f7d2;
    border: 1px solid #f8f7d2;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    color: #666;
    padding: 4px;
}

.padtop15 { padding-top: 15px; }
.margleft15 { margin-left: 15px; }
.margtop15 { margin-top: 15px; }
.margbot15 { margin-bottom: 15px; }
.margbot5 { margin-bottom: 5px; }
.pad15 { padding: 15px; }
.bordbottom {
    border-bottom: 1px solid #bbb;
    padding-bottom:15px;
    margin-bottom: 15px;
}

#loader-mask.preview-loader {
    background-color:#FFF;
    background-image: url(/images/ajax-loader-preview.gif);
    background-repeat:no-repeat;
    background-position: center 200px;
    padding:0; margin:0;
    z-index:10;
    position:absolute; top:0; left:0;
    display:block;
}

.alignright { text-align:right;}

.spinner {
    vertical-align: middle;
    margin-right: 5px;
}

.ui-dialog {
	font: normal 12px/18px 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #333;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.redactor-editor ul li {
	list-style: disc;
	float: none;

}
	.redactor-editor ul ul li {
		list-style: circle;
	}
		.redactor-editor ul ul ul li{
			list-style: square;
		}

dl,dd,dt,hr,table,thead,tbody,tfoot,tr,th,td
{ margin:0; padding:0 }

.redactor-editor caption, th {
    text-align: left;
}

.form dl {
    display: block;
    width: 100%;
}

.form dt {
    clear: left;
    float: left;
}

.form dt label {
    display: block;
    color: #444;
}

.form dt,
.form dt label {
    display: block;
    width: 120px;
}

.form dt label {
    padding-top: 12px;
}

.form dd label {
    width: 100%;
}

.form dd em {
    font-size: 10px;
    color: #777;
}

.form dd {
    padding-bottom: 5px;
    float: left;
}
.form .fixed-width dd {
    width:220px;
}
.form .fixed-width dd.wider {
    width:230px;
}
.form .fixed-width-large dd {
    width:500px;
}

.form dd label input {
    vertical-align: top;
}

.form dd label.clearboth {
    clear: both;
    float: none;
    display: block;
    padding-top: 5px;
}

.form dd label.clearboth input {
    width: 30px;
}

.form dd.field_errors ul {
    list-style: none;
    margin: 0;
    padding-left: 120px;
    color: red;
}

span.input-wrap,
.blue-border-wrap {
    padding: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    display: block;
}

.input-wrap.tiny-input input{  width: 40px; margin-right: 5px; }
.input-wrap.wide{  width: 250px !important; }

.form div.error,
.form dd.error span.input-wrap {
    background: #ffc;
}

.form div.okay,
.form dd.okay span.input-wrap {
    background: #D5EFC2;
}

.form dd.okay span.input-wrap input {
    border-color: #85CF4D;
}

.form div span.validation_error input,
.form div span.validation_error select,
.form div span.validation_error textarea {
    background: #fff url(/images/layout/app/error.gif) no-repeat 600px 5px;
}

.form dd span.input-wrap span.validation_error input,
.form dd span.input-wrap span.validation_error textarea {
    background: #fff url(/images/layout/app/error.gif) no-repeat 97% 5px;
}

.form div.okay input,
.form div.okay select,
.form div.okay textarea {
    background: #fff url(/images/layout/app/okay.gif) no-repeat 600px 5px;
}

.form dd.okay span.input-wrap input,
.form dd.okay span.input-wrap textarea {
    background: #fff url(/images/layout/app/okay.gif) no-repeat 97% 5px;
}

.form dd span.input-wrap input#id_url {
    background-position: 90px 5px;
}

ul.errorlist {
    margin: 0;
    padding: 0 0 0 2px;
    list-style: none;
    display: block;
    color: #5F5F2F;
}

span.fixpad {
    display: block;
    padding: 10px 0 10px 0;
    font-size: 14px;
}

div.radio-list div {

    padding:7px 0 7px 10px;
}

.form dd.text-wrap, .text-wrap{ padding: 10px 0 10px 5px }

.blue-border-wrap { margin-bottom: 5px; }

.form input,
.form textarea,
.form select {
    width: 100%;
    border: 1px solid #CFCFCF;
    border-radius: 3px;
    padding: 7px 10px;
    font-size: 14px;
    font-weight: 400;
    color: #5F5E5E;
    background: #FFF;
    line-height: 140%;
    box-shadow: none;
    display: block;
    resize: none;
    font-style: normal;
    width: 240px;
    margin: 0 auto;
}

.form input[type=radio]{
    width:auto;
    margin-right:4px;
}
.form input.helper, .form input.input-hint {
    font-style: italic;
    color:#666;
}
.form select {
    width: 252px;
}

.form select.sel350 {
    width: 350px;
}

.form input[type=checkbox] {
    border:none;
    width:17px;
    vertical-align:middle;
    margin:0;
    padding:0;
}

.form input.field-on,
.form select.field-on,
.form textarea.field-on {
    border-color: #336a70;
}

.form dd.error span.input-wrap input.field-on {
    background: #fff;
}

label.plain {
    width: 100px;
    font-weight: bold;
    padding-right: 10px;
    padding-left: 30px;
}

.buttons {
    padding-top: 20px;
    clear: both;
    color: #777;
    padding-left: 120px;
}

.buttons a {
    color: #15676E;
}

button.button,
a.button {
  background: #067b8a;
  border-radius: 30px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.7px;
  padding: 9px 15px;
  border: 0;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  width: 120px;
}

button.button-signature,
a.button-signature {
    padding: 15px 15px;
}

.inplaceEdit input,
.inplaceEdit textarea,
.inplaceEdit select {
    font: normal 12px/14px "Lucida Grande", "Lucida Sans Unicode", "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding: 5px;
    border: 2px solid #336a70;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    width: 240px;
}
.notify-collaborators {
    float: left;
}
    .notify-collaborators input {
        display: inline-block;
    }

.redactor-box {
    margin-bottom: 10px !important;
}
.redactor-editor .page-break:before {
    background-color: transparent;
}
.form textarea {
    height: 200px;
}

.bordered table {
    width: 100%;
    color: #444;
    border-collapse: collapse;
}

.bordered table a {
    text-decoration: underline;
    color: #1b8a95;
}

.bordered table a:hover {
    color: #dd3128;
}

.bordered table h4 a {
    color: #0d4f55;
    font-size: 14px;
}
.bordered table h5 a {
    color: #0d4f55;
}

.bordered table.nohover tr:hover td {
    background: none;
}

.bordered table tr.even td,
.bordered table tr.even:hover td {
    background: #fafafa;
}

.bordered table tr.odd td,
.bordered table tr.odd:hover td {
    background: #fff;
}

.bordered table tr:hover td {
    background: #fffeee;
}


.bordered table th {
    padding: 5px 5px 11px 5px;
    color: #888;
    font-size: 11px;
    font-style: italic;
    font-weight: normal;
    background: url(/images/layout/app/th.gif) repeat-x left bottom;
}

.bordered table td {
    padding: 5px;
    vertical-align: top;
    /* border-bottom: 1px solid #bbb; */
    border-bottom: 1px solid #ccc;
}

.bordered table tr.noborder td.note-info {
    width: 90px;
    font-weight: bold;
    border-right: 2px solid #eee;
}

.note-info a {
    font-weight: normal;
}

#notes .note-info p {
    padding: 0;
    margin: 0;
}
#comments_container p {
    margin: 0;
}

.comment-person {
    font-size: 11px;
    padding-top:15px;
    font-style: italic;
}
.inside.margbot5.private{
    background: #FFFFEE;
}

.bordered .inside,
.blue-border-wrap .inside {
  background: #FFF;
  border: 1px solid #E1E1E1;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 5px;
  margin-top: 20px;
  margin-top: 20px;
}

.bordered table {
    width: 100%;
    color: #444;
    border-collapse: collapse;
}

.bordered table tr.noborder td.reply-info {
    width: 85px;
    font-weight: normal;
    font-size: 11px;
    border-right: 0;
}
.reply-info p {
    text-align: left;
}

.reply-info p.reply-date {
    font-size: 11px;
    color: #777;
    font-style: italic;
}

.reply-info p.reply-poster {
    font-weight: bold;
    font-size: 12px;
}

.bordered table.responses tr td {
    border-top: 1px solid #eee;
}
.all-replies {
    margin-left: -6px;
    border-top: 2px solid #eee;
}

.collapse-replies {
    font-style: normal;
}

#add-note {
    padding: 15px;
    background: #fffeee;
}

#add-note textarea {
    height: 80px;
    width: 351px;
    font-size: 14px;
}

.bordered table tr.noborder td { border: 0 }

.bordered table tr td.note-detail {
    padding-left: 15px;
}
div.color-swatch, div.image-swatch  { 
    border:1px solid #DDD; 
    width:50px; height:18px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}
 
    div.color-swatch:hover { cursor:hand; }
 
    div.image-swatch { 
        width:40px; 
        height: 34px;
        background: #FFF url(/images/layout/app/preview/imageThumb.png) no-repeat center center;
        background-size: 45px 24px;
    }
 
    div.color-swatch:hover, div.image-swatch:hover { cursor:hand; }
 
    div.color-swatch a, div.image-swatch a { height:34px; display:block; }
 
    div.image-swatch a { width:50px; }

#new_fee_div #fee_fields .fields{
    display: block;
    overflow: hidden;
}

#new_fee_div #fee_fields .fields .fee_name, #new_fee_div #fee_fields .fields .type, #new_fee_div #fee_fields .fields .hours, #new_fee_div #fee_fields .fields .amount, #new_fee_div #fee_fields .fields .add-duration,  #new_fee_div #fee_fields .fields .number-of-duration{
    float: left;
}

#new_fee_div #fee_fields .fields .fee_name{
    width: 43%;
    margin-right: 1%;
}

#new_fee_div #fee_fields .fields .type{
    width: 15%;
    margin-right: 1%;
}

#new_fee_div #fee_fields .fields .hours{
    width: 13%;
    margin-left: 2%;
}

#new_fee_div #fee_fields .fields .custom{
    width: 40%;
    float: left;
    overflow: hidden;
}

#new_fee_div #fee_fields .fields .custom .qty{
    float: left;
    margin-right: 3%;
}

#new_fee_div #fee_fields .fields .custom .unit-price{
    float: left;
    margin-right: 3%;
}

#new_fee_div #fee_fields .fields .custom .per{
    width: 38%;
    float: left;
}

#new_fee_div #fee_fields .fields .custom .per select{
    width: 90%;
}

#new_fee_div #fee_fields .fields .number-of-duration{
    width: 15%;
}

#new_fee_div #fee_fields .fields .number-of-duration .duration-lbl{
    margin-left: 16%;
}

#new_fee_div #fee_fields .fields .number-of-duration .hide-link{
    margin-left: 38%;
}

#new_fee_div #fee_fields .fields .amount{
    width: 15%;
    margin-left: 2%;
}

#new_fee_div #fee_fields .fields .amount #lbl{
    margin-left: 13%;
}

#new_fee_div #fee_fields .fields .type select{
    width: 100%;
}

#new_fee_div #fee_fields .fields .add-duration{
    margin-top: 4%;
}

#new_fee_div #fee_fields .fields input.duration{
    margin-left: 15%;
    text-align: right;
}

#edit_fee .fields{
    display: block;
    overflow: hidden;
}

#edit_fee .fields .fee_name, #edit_fee .fields .hours, #edit_fee .fields .amount, #edit_fee .fields .add-duration,  #edit_fee .fields .number-of-duration{
    float: left;
}

#edit_fee .fields .fee_name{
    width: 43%;
    margin-right: 1%;
}

#edit_fee .fields .hours{
    width: 13%;
    margin-left: 2%;
}

#edit_fee .fields .custom{
    width: 40%;
    float: left;
    overflow: hidden;
}

#edit_fee .fields .custom .qty{
    float: left;
    margin-right: 3%;
}

#edit_fee .fields .custom .unit-price{
    float: left;
    margin-right: 3%;
}

#edit_fee .fields .custom .per{
    width: 38%;
    float: left;
}

#edit_fee .fields .custom .per select{
    width: 90%;
}

#edit_fee .amount{
    width: 15%;
    margin-left: 2%;
}

#edit_fee .fields .amount #lbl{
    margin-left: 13%;
}

#edit_fee .fields .number-of-duration{
    width: 15%;
}

#edit_fee .fields .number-of-duration .duration-lbl{
    margin-left: 16%;
}

#edit_fee .fields .number-of-duration .hide-link{
    margin-left: 38%;
}

#edit_fee .fields .add-duration{
    margin-top: 4%;
}

#edit_fee .fields input.duration{
    margin-left: 15%;
    text-align: right;
}
.colorpicker {
	position: fixed; 
}

.ui-widget-overlay {
	top:0px;
}
.modal-nav {
	padding:5px 18px 18px; vertical-align:top; border-right:1px solid #CCC; text-align:right; width:100px;
}
select {
	border:1px solid;
	font: normal 12px/12px "Lucida Grande", "Lucida Sans Unicode", "Helvetica Neue", Helvetica, Arial, sans-serif;
	padding: 2px;
	border: 1px solid #999;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	width: 240px;
}
#page-settings-tab {
	width:50px; height:171px; 
	position:fixed; 
	top:340px; left:35px; 
	background: url(/images/layout/app/tab-page-settings.png); z-index:1; 
	display:block;
}

#page_settings_container select {
	font-size:10px; width:70px;
}

table.page-breaks {
	width: 400px;
}
	table.page-breaks td, table.page-breaks th {
		text-align:left;
	}



.edit-preview-section-container .modal-inside{
	width: 720px;
}
.edit-preview-section-container .modal-inside .buttons{
	padding-left: 0px;
}
.comment-preview-container .comment-on{
	margin-bottom: 2%;
}

#preview-comments-container .modal-inside{
	overflow: scroll;
}

#preview-comments-container .modal-inside .comment, #preview-comments-container .modal-inside .comment .header{
	margin-bottom: 2%;
	padding: 1%;
	padding-left: 0px;
}
#preview-comments-container .modal-inside .comment .private{
	text-decoration: underline;
}
#preview-comments-container .modal-inside .buttons{
	padding-left: 0;
	overflow: hidden;
	margin-bottom: 2%;
}
#preview-comments-container .modal-inside .separator{
	border-bottom: 1px solid #CCC;
	margin:2% 5%;
}

#preview-comments-container .comments-list {
	height: 250px;
	overflow: auto;
	overflow-y: auto;
	overflow-x: hidden;
	border:0; 
	padding:0;
	border:1px solid #CCC;
	background: #FFF;
}
	#preview-comments-container .comments-list .inside {
		margin:0;
		border:0;
		border-bottom:1px solid #CCC;
		-moz-border-radius: 0;
		-webkit-border-radius: 0;
	}

#invite-collaborators-container .modal-inside .invite-users{
	width: 85%;
	margin: auto;
	overflow: hidden;
}
#invite-collaborators-container .modal-inside .invite-users .email .input-wrap{
	display: none;
}
#invite-collaborators-container .modal-inside .invite-users .email span.input-wrap{
	display: block;
}
#invite-collaborators-container .modal-inside .invite-users .email .input-wrap .user-row dt{
	width: 14%;
}
#invite-collaborators-container .modal-inside .invite-users .email .input-wrap .user-row .checkbox{
	margin-top: 2%;
	margin-left: 3%;
}
#invite-collaborators-container .modal-inside .invite-users .email .select-user{
	overflow: hidden;
}

#invite-collaborators-container .modal-inside .buttons{
	padding-left: 0;
	padding-bottom: 5%;
}

#invite-collaborators-container .modal-inside .buttons .cancel-manual-invitation{
	display: none;
}

#invite-collaborators-container .modal-inside .invite-users .email, #invite-collaborators-container .modal-inside .invite-users .message{
	overflow: hidden;
	margin-bottom: 4%;
}
#invite-collaborators-container .modal-inside .invite-users .left{
	float: left;
	width: 15%;
}
#invite-collaborators-container .modal-inside .invite-users .right{
	float: left;
}
#invite-collaborators-container .modal-inside .invite-users .right textarea{
	height: 50px;
}
#invite-collaborators-container .modal-inside .separator{
	border-bottom: 1px solid #CCC;
	width: 500px;
	margin: 0 auto;
}

#invite-collaborators-container .modal-inside .collaborators{
	margin: auto;
	width: 85%;
	margin-top: 3%;
	overflow: hidden;
    display: block;
}
#invite-collaborators-container .modal-inside .collaborators .collaborators-list, #invite-collaborators-container .modal-inside .collaborators .collaborators-list .one-collaborator{
	overflow: hidden;
	margin: 5px 0;
}
#invite-collaborators-container .modal-inside .collaborators .collaborators-list .one-collaborator .name, #invite-collaborators-container .modal-inside .collaborators .collaborators-list .one-collaborator .email{
	
	float: left;
}
	#invite-collaborators-container .one-collaborator .name {
		width: 150px;
	}
	#invite-collaborators-container .one-collaborator .email {
		width: 255px;
	}
#invite-collaborators-container .modal-inside .collaborators .collaborators-list .actions{
	width: 70px;
	float: left;
}

#invite-collaborators-container .modal-inside .header{
	width: 62%;
	margin: auto;
	margin-bottom: 7%;
}
#invite-collaborators-container .modal-inside .buttons{
	margin-bottom: 5%;
}


button.button.comment-from-preview-top{
    padding: 4px 15px 6px 0px;
}

#fee_fields .buttons{
    padding-left: 0px;
}
#fee_fields .left{
    width: 490px;
    float: left;
}

#fee_fields .left .label{
    width: 70px;
}

#fee_fields .left .input-wrap{
    float: left;
}

#fee_fields .left .label, #fee_fields .right .label{
    float: left;
    margin-top: 6px;
}

#fee_fields .right .input-wrap{
    float: left;
    margin-left: 10px;
    padding-top: 0px;
}

#fee_fields .right .input-wrap input{
		width: 93px;
}

#fee_fields .right{
    width: 135px;
    float: right;
}

#new_fee_div #fee_fields .fields .fee_name, 
#new_fee_div #fee_fields .fields .type, 
#new_fee_div #fee_fields .fields .hours, 
#new_fee_div #fee_fields .fields .amount, 
#new_fee_div #fee_fields .fields .add-duration, 
#new_fee_div #fee_fields .fields .number-of-duration {
    float: left;
}

#fee_list {
    list-style: none;
    margin-left: 0;
    width: 632px
}
#fee_list #one-time-fees .head, #fee_list #monthly-fees .head, #fee_list #yearly-fees .head, #custom-fees .head{
    font-weight: bold;
    background-color: #CCCCCC;
    padding-left: 10px;
    padding: 3px;
}
    #one-time-fees h3, #monthly-fees h3, #yearly-fees h3 {
        padding-top:25px
    }
    #one-time-fees hr, #monthly-fees hr, #yearly-fees hr {
        border-width:2px;
        padding:3px 0;
        margin:3px 0;
        width:100%
    }

#fee_list li {
    background-color: #FFF;
    padding:10px 0;
    cursor:move;
    border-bottom: 1px solid #ccc;
}
#fee_list li li {
    background:none;
    border-bottom:none;
}

#fee_list table td {
    padding:9px;
    line-height: 20px;
    border-bottom:none;
}

#fee_list td.description h4 {
    font-size: 14px;
}
#fee_list td.description p {
    color: #666
}

#fee_list select , #new_fee_div select {
    width: 506px;
}

#fee_list input , #new_fee_div input {
    width: 60px;
    margin: 0;
    display: inline-block;
}

#edit_fee {
    margin-top:10px;
}

p.fck-container {
    margin-top: 15px;
}

.fee-options { overflow:hidden; }

.fee-options label {
    display:block;
    margin-top:4px;
    width:140px;
    padding-left:4px;
    float:left;
}
.fee-options label input, .fee-options label input[type=checkbox], #new_fee_div input[type=checkbox], #fee_list input[type=checkbox] {
    width:13px; height:13px;
    position:relative; top:-1px;
    padding:0; margin:0;
    vertical-align:middle;
    *overflow: hidden;
}

.gmail_extra{
    display: none;
}

.sigPad label {
    color: #777;
}

.sigPad input {
    color: #666;
}


#start-content {
  font-size: 15px;
  color: #7f7e7e; 
  text-align: center; 
  line-height: 1.3em
}
i.arrow {
    border: solid #b8b8b8;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
}

i.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);

    -webkit-animation: jump 1.5s ease 0s infinite normal ;
    animation: jump 1.5s ease 0s infinite normal ;
}

@-webkit-keyframes jump {
  0%{
  -webkit-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
  }
  20%{
  -webkit-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
  }
  40%{
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
  }
  50%{
  -webkit-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
  }
  60%{
  -webkit-transform: translateY(-5px) rotate(45deg);
  transform: translateY(-5px) rotate(45deg);
  }
  80%{
  -webkit-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
  }
  100%{
  -webkit-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
  }
}

@keyframes jump {
  0%{
  transform: translateY(0) rotate(45deg);
  }
  20%{
  transform: translateY(0) rotate(45deg);
  }
  40%{
  transform: translateY(-5px) rotate(45deg);
  }
  50%{
  transform: translateY(0) rotate(45deg);
  }
  60%{
  transform: translateY(-5px) rotate(45deg);
  }
  80%{
  transform: translateY(0) rotate(45deg);
  }
  100%{
  transform: translateY(0) rotate(45deg);
  }
}  



.tooltipster-fall,.tooltipster-grow.tooltipster-show{-webkit-transition-timing-function:cubic-bezier(.175,.885,.32,1);-moz-transition-timing-function:cubic-bezier(.175,.885,.32,1.15);-ms-transition-timing-function:cubic-bezier(.175,.885,.32,1.15);-o-transition-timing-function:cubic-bezier(.175,.885,.32,1.15)}.tooltipster-base{display:flex;pointer-events:none;position:absolute}.tooltipster-box{flex:1 1 auto}.tooltipster-content{box-sizing:border-box;max-height:100%;max-width:100%;overflow:auto}.tooltipster-ruler{bottom:0;left:0;overflow:hidden;position:fixed;right:0;top:0;visibility:hidden}.tooltipster-fade{opacity:0;-webkit-transition-property:opacity;-moz-transition-property:opacity;-o-transition-property:opacity;-ms-transition-property:opacity;transition-property:opacity}.tooltipster-fade.tooltipster-show{opacity:1}.tooltipster-grow{-webkit-transform:scale(0,0);-moz-transform:scale(0,0);-o-transform:scale(0,0);-ms-transform:scale(0,0);transform:scale(0,0);-webkit-transition-property:-webkit-transform;-moz-transition-property:-moz-transform;-o-transition-property:-o-transform;-ms-transition-property:-ms-transform;transition-property:transform;-webkit-backface-visibility:hidden}.tooltipster-grow.tooltipster-show{-webkit-transform:scale(1,1);-moz-transform:scale(1,1);-o-transform:scale(1,1);-ms-transform:scale(1,1);transform:scale(1,1);-webkit-transition-timing-function:cubic-bezier(.175,.885,.32,1.15);transition-timing-function:cubic-bezier(.175,.885,.32,1.15)}.tooltipster-swing{opacity:0;-webkit-transform:rotateZ(4deg);-moz-transform:rotateZ(4deg);-o-transform:rotateZ(4deg);-ms-transform:rotateZ(4deg);transform:rotateZ(4deg);-webkit-transition-property:-webkit-transform,opacity;-moz-transition-property:-moz-transform;-o-transition-property:-o-transform;-ms-transition-property:-ms-transform;transition-property:transform}.tooltipster-swing.tooltipster-show{opacity:1;-webkit-transform:rotateZ(0);-moz-transform:rotateZ(0);-o-transform:rotateZ(0);-ms-transform:rotateZ(0);transform:rotateZ(0);-webkit-transition-timing-function:cubic-bezier(.23,.635,.495,1);-webkit-transition-timing-function:cubic-bezier(.23,.635,.495,2.4);-moz-transition-timing-function:cubic-bezier(.23,.635,.495,2.4);-ms-transition-timing-function:cubic-bezier(.23,.635,.495,2.4);-o-transition-timing-function:cubic-bezier(.23,.635,.495,2.4);transition-timing-function:cubic-bezier(.23,.635,.495,2.4)}.tooltipster-fall{-webkit-transition-property:top;-moz-transition-property:top;-o-transition-property:top;-ms-transition-property:top;transition-property:top;-webkit-transition-timing-function:cubic-bezier(.175,.885,.32,1.15);transition-timing-function:cubic-bezier(.175,.885,.32,1.15)}.tooltipster-fall.tooltipster-initial{top:0!important}.tooltipster-fall.tooltipster-dying{-webkit-transition-property:all;-moz-transition-property:all;-o-transition-property:all;-ms-transition-property:all;transition-property:all;top:0!important;opacity:0}.tooltipster-slide{-webkit-transition-property:left;-moz-transition-property:left;-o-transition-property:left;-ms-transition-property:left;transition-property:left;-webkit-transition-timing-function:cubic-bezier(.175,.885,.32,1);-webkit-transition-timing-function:cubic-bezier(.175,.885,.32,1.15);-moz-transition-timing-function:cubic-bezier(.175,.885,.32,1.15);-ms-transition-timing-function:cubic-bezier(.175,.885,.32,1.15);-o-transition-timing-function:cubic-bezier(.175,.885,.32,1.15);transition-timing-function:cubic-bezier(.175,.885,.32,1.15)}.tooltipster-slide.tooltipster-initial{left:-40px!important}.tooltipster-slide.tooltipster-dying{-webkit-transition-property:all;-moz-transition-property:all;-o-transition-property:all;-ms-transition-property:all;transition-property:all;left:0!important;opacity:0}@keyframes tooltipster-fading{0%{opacity:0}100%{opacity:1}}.tooltipster-update-fade{animation:tooltipster-fading .4s}@keyframes tooltipster-rotating{25%{transform:rotate(-2deg)}75%{transform:rotate(2deg)}100%{transform:rotate(0)}}.tooltipster-update-rotate{animation:tooltipster-rotating .6s}@keyframes tooltipster-scaling{50%{transform:scale(1.1)}100%{transform:scale(1)}}.tooltipster-update-scale{animation:tooltipster-scaling .6s}.tooltipster-sidetip .tooltipster-box{background:#565656;border:2px solid #000;border-radius:4px}.tooltipster-sidetip.tooltipster-bottom .tooltipster-box{margin-top:8px}.tooltipster-sidetip.tooltipster-left .tooltipster-box{margin-right:8px}.tooltipster-sidetip.tooltipster-right .tooltipster-box{margin-left:8px}.tooltipster-sidetip.tooltipster-top .tooltipster-box{margin-bottom:8px}.tooltipster-sidetip .tooltipster-content{color:#fff;line-height:18px;padding:6px 14px}.tooltipster-sidetip .tooltipster-arrow{overflow:hidden;position:absolute}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow{height:10px;margin-left:-10px;top:0;width:20px}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow{height:20px;margin-top:-10px;right:0;top:0;width:10px}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow{height:20px;margin-top:-10px;left:0;top:0;width:10px}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow{bottom:0;height:10px;margin-left:-10px;width:20px}.tooltipster-sidetip .tooltipster-arrow-background,.tooltipster-sidetip .tooltipster-arrow-border{height:0;position:absolute;width:0}.tooltipster-sidetip .tooltipster-arrow-background{border:10px solid transparent}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background{border-bottom-color:#565656;left:0;top:3px}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background{border-left-color:#565656;left:-3px;top:0}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background{border-right-color:#565656;left:3px;top:0}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background{border-top-color:#565656;left:0;top:-3px}.tooltipster-sidetip .tooltipster-arrow-border{border:10px solid transparent;left:0;top:0}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border{border-bottom-color:#000}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border{border-left-color:#000}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border{border-right-color:#000}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border{border-top-color:#000}.tooltipster-sidetip .tooltipster-arrow-uncropped{position:relative}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-uncropped{top:-10px}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-uncropped{left:-10px}