.hs-button-reset,.hs-form .hs-button {
    border: 0;
    font-family: Helvetica,Arial,sans-serif;
    line-height: 1;
    margin: 0;
    outline: 0;
    padding: 0;
}

.base-hs-button-styles,.hs-form .hs-button {
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    line-height: 12px;
    padding: 7px 18px;
    position: relative;
    text-align: center;
}

.base-hs-button-styles:hover,.hs-form .hs-button:hover {
    text-decoration: none;
}

input.hs-input[type=checkbox],input.hs-input[type=radio] {
    cursor: pointer;
}

input.hs-input,textarea.hs-input,select.hs-input,.hs-input.uneditable-input {
    display: inline-block;
    width: 210px;
    height: 18px;
    padding: 4px;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    color: #666;
    border: 1px solid #ccc;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

textarea.hs-input {
    padding-top: 5px;
}

html.webkit textarea.hs-input {
    padding-top: 6px;
    padding-left: 5px;
}

input.hs-input[type=checkbox],input.hs-input[type=radio] {
    width: auto;
    height: auto;
    padding: 0;
    margin: 3px 0;
    line-height: normal;
    border: 0;
}

input.hs-input[type=file] {
    background-color: #fff;
    padding: initial;
    border: initial;
    line-height: initial;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

input.hs-input[type=button],input.hs-input[type=reset],input.hs-input[type=submit] {
    width: auto;
    height: auto;
}

input.hs-input[type=search] {
    -moz-border-radius: 16px;
    -webkit-border-radius: 16px;
    border-radius: 16px;
    background-image: url(/style_guide/static/img/search.png);
    background-repeat: no-repeat;
    padding-left: 26px;
    padding-right: 6px;
    padding-top: 5px;
    padding-bottom: 3px;
    background-position: 8px 8px;
}

html.firefox input.hs-input[type=search] {
    position: relative;
    top: 1px;
}

input.hs-input[type=search].transparent-image {
    background-image: url(/style_guide/static/img/search-transparent.png);
}

input.hs-input[type=search]::-webkit-search-decoration,input.hs-input[type=search]::-webkit-search-cancel-button,input.hs-input[type=search]::-webkit-search-results-button,input.hs-input[type=search]::-webkit-search-results-decoration {
    display: none;
}

select.hs-input,input.hs-input[type=file] {
    height: 27px;
}

select[multiple].hs-input {
    height: inherit;
}

textarea.hs-input {
    height: auto;
}

.hs-input.uneditable-input {
    background-color: #fff;
    display: block;
    border-color: #eee;
    -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,.075);
    -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 2px rgba(0,0,0,.075);
    cursor: not-allowed;
}

.hs-input:-moz-placeholder {
    color: #bfbfbf;
}

.hs-input::-webkit-input-placeholder {
    color: #bfbfbf;
}

input.hs-input,textarea.hs-input {
    -moz-transition: border .2s linear,box-shadow .2s linear;
    -o-transition: border .2s linear,box-shadow .2s linear;
    -webkit-transition: border .2s linear,box-shadow .2s linear;
    transition: border .2s linear,box-shadow .2s linear;
    -moz-box-shadow: inset 0 1px 3px rgba(0,0,0,.1);
    -webkit-box-shadow: inset 0 1px 3px rgba(0,0,0,.1);
    box-shadow: inset 0 1px 3px rgba(0,0,0,.1);
}

input.hs-input:focus,textarea.hs-input:focus {
    outline: 0;
    border-color: rgba(82,168,236,.8);
    -moz-box-shadow: inset 0 1px 3px rgba(0,0,0,.1),0 0 8px rgba(82,168,236,.6);
    -webkit-box-shadow: inset 0 1px 3px rgba(0,0,0,.1),0 0 8px rgba(82,168,236,.6);
    box-shadow: inset 0 1px 3px rgba(0,0,0,.1),0 0 8px rgba(82,168,236,.6);
}

input.hs-input.error,.hs-form div.field.error input,.hs-form div.field.error textarea,.hs-form div.field.error .chzn-choices,textarea.hs-input.error {
    border-color: #c87872;
    -moz-box-shadow: 0 0 3px rgba(171,41,32,.25);
    -webkit-box-shadow: 0 0 3px rgba(171,41,32,.25);
    box-shadow: 0 0 3px rgba(171,41,32,.25);
}

input.hs-input.error:focus,.hs-form div.field.error input:focus,.hs-form div.field.error textarea:focus,.hs-form div.field.error .chzn-choices:focus,textarea.hs-input.error:focus {
    border-color: #b9554d;
    -moz-box-shadow: 0 0 6px rgba(171,41,32,.5);
    -webkit-box-shadow: 0 0 6px rgba(171,41,32,.5);
    box-shadow: 0 0 6px rgba(171,41,32,.5);
}

.input-mini.hs-input,input.mini.hs-input,textarea.mini.hs-input,select.mini.hs-input {
    width: 60px;
}

.input-small.hs-input,input.small.hs-input,textarea.small.hs-input,select.small.hs-input {
    width: 90px;
}

.input-medium.hs-input,input.medium.hs-input,textarea.medium.hs-input,select.medium.hs-input {
    width: 150px;
}

.input-large.hs-input,input.large.hs-input,textarea.large.hs-input,select.large.hs-input {
    width: 210px;
}

.input-xlarge.hs-input,input.xlarge.hs-input,textarea.xlarge.hs-input,select.xlarge.hs-input {
    width: 270px;
}

.input-xxlarge.hs-input,input.xxlarge.hs-input,textarea.xxlarge.hs-input,select.xxlarge.hs-input {
    width: 530px;
}

textarea.hs-input.xxlarge {
    overflow-y: auto;
}

input.hs-input.span1,textarea.hs-input.span1,select.hs-input.span1 {
    display: inline-block;
    float: none;
    width: 30px;
    margin-left: 0;
}

input.hs-input.span2,textarea.hs-input.span2,select.hs-input.span2 {
    display: inline-block;
    float: none;
    width: 90px;
    margin-left: 0;
}

input.hs-input.span3,textarea.hs-input.span3,select.hs-input.span3 {
    display: inline-block;
    float: none;
    width: 150px;
    margin-left: 0;
}

input.hs-input.span4,textarea.hs-input.span4,select.hs-input.span4 {
    display: inline-block;
    float: none;
    width: 210px;
    margin-left: 0;
}

input.hs-input.span5,textarea.hs-input.span5,select.hs-input.span5 {
    display: inline-block;
    float: none;
    width: 270px;
    margin-left: 0;
}

input.hs-input.span6,textarea.hs-input.span6,select.hs-input.span6 {
    display: inline-block;
    float: none;
    width: 330px;
    margin-left: 0;
}

input.hs-input.span7,textarea.hs-input.span7,select.hs-input.span7 {
    display: inline-block;
    float: none;
    width: 390px;
    margin-left: 0;
}

input.hs-input.span8,textarea.hs-input.span8,select.hs-input.span8 {
    display: inline-block;
    float: none;
    width: 450px;
    margin-left: 0;
}

input.hs-input.span9,textarea.hs-input.span9,select.hs-input.span9 {
    display: inline-block;
    float: none;
    width: 510px;
    margin-left: 0;
}

input.hs-input.span10,textarea.hs-input.span10,select.hs-input.span10 {
    display: inline-block;
    float: none;
    width: 570px;
    margin-left: 0;
}

input.hs-input.span11,textarea.hs-input.span11,select.hs-input.span11 {
    display: inline-block;
    float: none;
    width: 630px;
    margin-left: 0;
}

input.hs-input.span12,textarea.hs-input.span12,select.hs-input.span12 {
    display: inline-block;
    float: none;
    width: 690px;
    margin-left: 0;
}

input.hs-input.span13,textarea.hs-input.span13,select.hs-input.span13 {
    display: inline-block;
    float: none;
    width: 750px;
    margin-left: 0;
}

input.hs-input.span14,textarea.hs-input.span14,select.hs-input.span14 {
    display: inline-block;
    float: none;
    width: 810px;
    margin-left: 0;
}

input.hs-input.span15,textarea.hs-input.span15,select.hs-input.span15 {
    display: inline-block;
    float: none;
    width: 870px;
    margin-left: 0;
}

input.hs-input.span16,textarea.hs-input.span16,select.hs-input.span16 {
    display: inline-block;
    float: none;
    width: 930px;
    margin-left: 0;
}

input.hs-input[disabled],select.hs-input[disabled],textarea.hs-input[disabled] {
    background-color: #f5f5f5;
    border-color: #ddd;
    cursor: not-allowed;
}

.help-inline,.help-block {
    font-size: 11px;
    line-height: 18px;
    color: gray;
}

.help-inline {
    padding-left: 5px;
}

.help-block {
    display: block;
    max-width: 600px;
}

.inline-inputs {
    color: gray;
}

.inline-inputs span,.inline-inputs input {
    display: inline-block;
}

.inline-inputs input.mini {
    width: 60px;
}

.inline-inputs input.small {
    width: 90px;
}

.inline-inputs span {
    padding: 0 2px 0 1px;
}

.input-prepend input,.input-append input {
    -moz-border-radius: 0 3px 3px 0;
    -webkit-border-radius: 0;
    border-radius: 0 3px 3px 0;
}

.input-prepend .add-on,.input-append .add-on {
    position: relative;
    background: #f5f5f5;
    border: 1px solid #ccc;
    z-index: 2;
    float: left;
    display: block;
    width: auto;
    min-width: 16px;
    height: 18px;
    padding: 4px 4px 4px 5px;
    margin-right: -1px;
    font-weight: 400;
    line-height: 18px;
    color: #bfbfbf;
    text-align: center;
    text-shadow: 0 1px 0 #fff;
    -moz-border-radius: 3px 0 0 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px 0 0 3px;
}

.input-prepend .active,.input-append .active {
    background: #a9dba9;
    border-color: #46a546;
}

.input-append input {
    float: left;
    -moz-border-radius: 3px 0 0 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px 0 0 3px;
}

.input-append .add-on {
    -moz-border-radius: 0 3px 3px 0;
    -webkit-border-radius: 0;
    border-radius: 0 3px 3px 0;
    margin-right: 0;
    margin-left: -1px;
}

.hs-form {
    margin-bottom: 18px;
}

.hs-form fieldset {
    margin-bottom: 18px;
    padding-top: 18px;
}

.hs-form fieldset legend {
    display: block;
    margin-left: 150px;
    font-size: 19.5px;
    line-height: 1;
    color: #404040;
}

.hs-form .clearfix,.hs-form .field,.hs-form .hs-form-field {
    *zoom: 1;
    margin-bottom: 18px;
}

.hs-form .clearfix:after,.hs-form .field:after,.hs-form .hs-form-field:after {
    content: "";
    display: table;
    clear: both;
}

.hs-form label {
    padding-top: 5px;
    font-size: 13px;
    line-height: 18px;
    font-weight: 700;
    float: left;
    width: 130px;
    text-align: right;
    color: #404040;
}

.hs-form .input {
    margin-left: 150px;
}

.hs-form div.field.error {
    background: #fae5e3;
    padding: 6px 0;
    margin-bottom: 18px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

.hs-form div.field.error>label,.hs-form div.field.error span.help-inline,.hs-form div.field.error span.help-block {
    color: #9d261d;
}

.hs-form div.field.error .input-prepend span.add-on,.hs-form div.field.error .input-append span.add-on {
    background: #f4c8c5;
    border-color: #c87872;
    color: #b9554d;
}

.hs-form .hsErrMsgContainer ul {
    margin-top: 6px;
    margin-bottom: 0;
    margin-left: 7px;
    list-style: none;
}

.hs-form .hsErrMsgContainer ul li {
    font-size: 12px;
    color: #a44e47;
}

.hs-form .hsErrMsgContainer .hs-block-message {
    min-width: 200px;
    width: 200px;
}

.hs-form .hsErrMsgContainer .hs-block-message ul {
    margin-top: 0;
}

.hs-form .actions {
    background: #f5f5f5;
    margin-top: 18px;
    margin-bottom: 18px;
    padding: 17px 20px 18px 150px;
    border-top: 1px solid #ddd;
    -moz-border-radius: 0 0 3px 3px;
    -webkit-border-radius: 0;
    border-radius: 0 0 3px 3px;
}

.hs-form .actions .secondary-action {
    float: right;
}

.hs-form .actions .secondary-action a {
    line-height: 30px;
}

.hs-form .actions .secondary-action a:hover {
    text-decoration: underline;
}

.hs-form .inputs-list {
    margin: 0 0 5px;
    width: 100%;
}

.hs-form .inputs-list>li {
    display: block;
    padding: 0;
    width: 100%;
}

.hs-form .inputs-list label {
    display: block;
    float: none;
    width: auto;
    padding: 0;
    line-height: 18px;
    text-align: left;
    white-space: normal;
    font-weight: 400;
}

.hs-form .inputs-list label strong {
    color: gray;
}

.hs-form .inputs-list label small {
    font-size: 11px;
    font-weight: 400;
}

.hs-form .inputs-list .inputs-list {
    margin-left: 25px;
    margin-bottom: 10px;
    padding-top: 0;
}

.hs-form .inputs-list:first-child {
    padding-top: 6px;
}

.hs-form .inputs-list>li+li {
    padding-top: 2px;
}

.hs-form .inputs-list input[type=radio],.hs-form .inputs-list input[type=checkbox] {
    margin-bottom: 0;
}

.hs-form.stacked {
    padding-left: 20px;
}

.hs-form.stacked fieldset {
    padding-top: 9px;
}

.hs-form.stacked legend {
    margin-left: 0;
}

.hs-form.stacked label {
    display: block;
    float: none;
    width: auto;
    font-weight: 700;
    text-align: left;
    line-height: 20px;
    padding-top: 0;
    margin-bottom: 4px;
}

.hs-form.stacked .field {
    margin-bottom: 18px;
}

.hs-form.stacked .field div.input {
    margin-left: 0;
}

.hs-form.stacked .field div.input>input+a,.hs-form.stacked .field div.input select+a,.hs-form.stacked .field div.input textarea+a {
    margin-top: 4px;
    display: block;
}

.hs-form.stacked .inputs-list {
    margin-bottom: 0;
}

.hs-form.stacked .inputs-list>li {
    padding-top: 0;
}

.hs-form.stacked .inputs-list>li label {
    font-weight: 400;
    padding-top: 0;
}

.hs-form.stacked div.error {
    padding: 3px 10px 6px;
    margin-top: 0;
    margin-left: -10px;
    margin-bottom: 9px;
}

.hs-form.stacked .actions {
    margin-left: -26px;
    padding-left: 20px;
}

.hs-form {
    padding-left: 0;
}

.hs-form.stacked {
    padding-left: 0;
}

.hs-form.stacked fieldset {
    padding: 0;
}

.hs-form .hs-button {
    color: #fff;
    text-shadow: 0 -1px 0 #3574E3;
    background-color: #3574E3;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzdlYzhmNCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzM1NzRlMyIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==);
    background-size: 100%;
    background-image: -webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#7ec8f4),color-stop(100%,#3574e3));
    background-image: -moz-linear-gradient(top,#7ec8f4,#3574e3);
    background-image: -webkit-linear-gradient(top,#7ec8f4,#3574e3);
    background-image: linear-gradient(to bottom,#7ec8f4,#3574e3);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.5);
    border-top: 1px solid #64BAF0;
    border-bottom: 1px solid #1C4ED5;
    border-right: 1px solid #468EE6;
    border-left: 1px solid #468EE6;
    border-radius: 4px;
    -moz-transition: opacity .15s linear;
    -o-transition: opacity .15s linear;
    -webkit-transition: opacity .15s linear;
    transition: opacity .15s linear;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

.hs-form .hs-button:visited,.hs-form .hs-button:hover {
    color: #fff;
}

.hs-form .hs-button:hover:not(.inactive),.hs-form .hs-button:focus:not(.inactive),.hs-form .hs-button.hovered:not(.inactive) {
    box-shadow: inset 0 1px 0 rgba(255,255,255,.5),0 0 5px #3574E3;
    border-top: 1px solid #4db0ee;
    border-bottom: 1px solid #1946be;
    border-right: 1px solid #3080e3;
    border-left: 1px solid #3080e3;
}

.hs-form .hs-button:active:not(.inactive):not(.link),.hs-form .hs-button.depressed:not(.inactive):not(.link),.dropdown-open>.hs-form .hs-button:not(.inactive):not(.link) {
    background-color: #599eeb;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzM1NzRlMyIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzU5OWVlYiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==);
    background-size: 100%;
    background-image: -webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#3574e3),color-stop(100%,#599eeb));
    background-image: -moz-linear-gradient(top,#3574e3,#599eeb);
    background-image: -webkit-linear-gradient(top,#3574e3,#599eeb);
    background-image: linear-gradient(to bottom,#3574e3,#599eeb);
    box-shadow: inset 0 1px 2px rgba(0,0,0,.3),inset 0 -1px 0 rgba(255,255,255,.3);
    border-top: 1px solid #1C4ED5;
    border-bottom: 1px solid #4084e2;
    border-right: 1px solid #468EE6;
    border-left: 1px solid #468EE6;
}

.dropdown-open>.hs-form .hs-button:not(.inactive):not(.link) {
    box-shadow: inset 0 1px 2px rgba(0,0,0,.3);
}

.hs-form .hs-button.disabled.disabled.disabled.disabled,.hs-form .hs-button[disabled][disabled][disabled] {
    background-color: #6387c5;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzg4YjFjZSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzYzODdjNSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==);
    background-size: 100%;
    background-image: -webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#88b1ce),color-stop(100%,#6387c5));
    background-image: -moz-linear-gradient(top,#88b1ce,#6387c5);
    background-image: -webkit-linear-gradient(top,#88b1ce,#6387c5);
    background-image: linear-gradient(to bottom,#88b1ce,#6387c5);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0);
    border-top: 1px solid #7baacc;
    border-bottom: 1px solid #5774be;
    border-right: 1px solid #6c94c7;
    border-left: 1px solid #6c94c7;
    cursor: default;
    color: #ededed;
    text-shadow: none;
    opacity: .6;
}

.hs-form .hs-button.disabled.disabled.disabled.disabled.next:before,.hs-form .hs-button[disabled][disabled][disabled].next:before {
    opacity: .5;
}

.hs-form .hs-button.disabled.disabled.disabled.disabled.previous:before,.hs-form .hs-button[disabled][disabled][disabled].previous:before {
    opacity: .5;
}

.hs-form .hs-button.next:before,.hs-form .hs-button.previous:before {
    background: url(/style_guide/static/img/hs-button-arrows.png) center 0 no-repeat;
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 5px;
    content: " ";
    z-index: 99;
}

.hs-form .hs-button.next {
    padding-right: 32px;
}

.hs-form .hs-button.next:before {
    right: 9px;
}

.hs-form .hs-button.previous {
    padding-left: 32px;
}

.hs-form .hs-button.previous:before {
    background-position: center -16px;
    left: 9px;
}

.hs-form .hs-button.inactive {
    cursor: default;
}

.hs-form ul {
    list-style: none;
}

.hs-form label {
    display: block;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}

.hs-form .hs-field-desc {
    color: #aaa;
    margin: 0 0 5px 150px;
    font-size: 11px;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}

.hs-form .hs-form-required {
    color: red;
}

.hs-form .field {
    margin-bottom: 9px;
}

.hs-form .hs-richtext {
    margin-bottom: 3px;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    line-height: 18px;
    font-size: 14px;
    color: #414141;
}

.hs-form .hs-richtext hr {
    text-align: left;
    margin-left: 0;
    width: 91%;
}

.hs-form .email-correction,.hs-form .email-validation {
    padding-top: 3px;
    font-size: 12px;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}

.hs-form .email-correction a,.hs-form .email-validation a {
    cursor: pointer;
}

.hs-form .inputs-list {
    padding-left: 5px;
    list-style: none;
}

.hs-form .inputs-list li input {
    margin: 3px 5px 3px 0;
}

.hs-form input[type=checkbox],.hs-form input[type=radio] {
    margin-right: 5px;
}

.hs-form input:not([type=image]),.hs-form textarea {
    box-sizing: content-box;
}

.hs-form.stacked .hs-field-desc {
    margin: 0 0 2px;
}

.hs-form .hs-input,.hs-form textarea.hs-input {
    box-sizing: border-box;
    max-width: 500px;
    width: 90%;
}

.hs-form .hs-input:not[type=checkbox],.hs-form .hs-input:not[type=radio],.hs-form textarea.hs-input:not[type=checkbox],.hs-form textarea.hs-input:not[type=radio] {
    min-height: 18px;
    min-width: 100px;
}

.hs-form .actions {
    background: transparent;
    margin-top: 18px;
    margin-bottom: 18px;
    padding: 17px 20px 18px 0;
    border-top: 0;
    -moz-border-radius: 0 0 3px 3px;
    -webkit-border-radius: 0;
    border-radius: 0 0 3px 3px;
}

.hs-form .actions .secondary-action {
    float: right;
}

.hs-form .actions .secondary-action a {
    line-height: 30px;
}

.hs-form .actions .secondary-action a:hover {
    text-decoration: underline;
}

.hs-form fieldset {
    border: 0;
    padding: 0;
    margin: 0;
    max-width: 500px;
}

.hs-form fieldset.form-columns-1 .hs-input {
    width: 95%;
}

.hs-form fieldset.form-columns-1 .input {
    margin-right: 8px;
}

.hs-form fieldset.form-columns-1 input[type=checkbox],.hs-form fieldset.form-columns-1 input[type=radio] {
    width: auto;
}

.hs-form fieldset.form-columns-2 .hs-form-field {
    width: 50%;
    float: left;
}

.hs-form fieldset.form-columns-2 .input {
    margin-right: 8px;
}

.hs-form fieldset.form-columns-3 .hs-form-field {
    width: 32.7%;
    float: left;
}

.hs-form fieldset.form-columns-3 .input {
    margin-right: 8px;
}

.hsformerror {
    margin: 0 0 2px;
    padding: 2px 6px;
    height: auto;
    background-color: #fdd2d0;
    font-size: 11px;
    border: 1px solid #fcb3af;
    padding: 4px 16px 4px 10px;
    color: #000;
    display: none;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZlZmVmZSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZkZDJkMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==);
    background-size: 100%;
    background-image: -webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fefefe),color-stop(100%,#fdd2d0));
    background-image: -moz-linear-gradient(#fefefe,#fdd2d0);
    background-image: -webkit-linear-gradient(#fefefe,#fdd2d0);
    background-image: linear-gradient(#fefefe,#fdd2d0);
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -moz-box-shadow: 0 0 6px #ddd;
    -webkit-box-shadow: 0 0 6px #ddd;
    box-shadow: 0 0 6px #ddd;
    z-index: 99999;
}

.hsformerror em {
    border: 10px solid;
    border-color: #fdd2d0 transparent transparent;
    bottom: -17px;
    display: block;
    height: 0;
    left: 60px;
    position: absolute;
    width: 0;
}

.hsformerror p {
    font-family: Lucida Grande,Lucida Sans Unicode,bitstream vera sans,trebuchet ms,verdana,sans-serif;
    margin: 0;
    float: left;
    margin-right: 8px;
}

.hsformerror:hover {
    cursor: default;
}

.hsformerror .close-form-error {
    float: right;
    display: inline;
    top: 3px;
    position: absolute;
    font-family: Verdana!important;
    color: #b17c79!important;
    cursor: pointer!important;
    font-size: 11px!important;
    font-weight: 400!important;
}

.hsformerror .close-form-error:hover {
    color: #cc8884;
}

#calroot {
    z-index: 10000;
    margin-top: -1px;
    width: 198px;
    padding: 2px;
    background-color: #fff;
    font-size: 11px;
    border: 1px solid #ccc;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-box-shadow: 0 0 15px #666;
    -webkit-box-shadow: 0 0 15px #666;
}

#calroot p,#calroot div,#calroot a {
    font-family: Lucida Grande,Lucida Sans Unicode,bitstream vera sans,trebuchet ms,verdana,sans-serif;
}

#calroot #calhead {
    padding: 2px 0;
    height: 22px;
}

#calroot #caltitle {
    font-size: 14px;
    color: #0150D1;
    float: left;
    text-align: center;
    width: 155px;
    line-height: 20px;
    text-shadow: 0 1px 0 #ddd;
}

#calroot #calnext,#calroot #calprev {
    display: block;
    margin: 5px 7px;
    width: 0;
    height: 0;
    float: left;
    cursor: pointer;
}

#calroot #calnext {
    float: right;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #666;
}

#calroot #calprev {
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 5px solid #666;
}

#calroot #calprev.caldisabled,#calroot #calnext.caldisabled {
    visibility: hidden;
}

#calroot #caltitle select {
    font-size: 10px;
}

#calroot #caldays {
    height: 14px;
    border-bottom: 1px solid #ddd;
}

#calroot #caldays span {
    display: block;
    float: left;
    width: 28px;
    text-align: center;
}

#calroot #calweeks {
    background-color: #fff;
    margin-top: 4px;
}

#calroot .calweek {
    clear: left;
    height: 22px;
}

#calroot .calweek a {
    display: block;
    float: left;
    width: 27px;
    height: 20px;
    text-decoration: none;
    font-size: 11px;
    margin-left: 1px;
    text-align: center;
    line-height: 20px;
    color: #666;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

#calroot .calweek a:hover {
    background-color: #ddd;
}

#calroot .calfocus {
    background-color: #ddd;
}

#calroot a.calsun {
    color: red;
}

#calroot a.caloff {
    color: #ccc;
}

#calroot a.caloff:hover {
    background-color: #f5f5fa;
}

#calroot a.caldisabled {
    background-color: #efefef!important;
    color: #ccc!important;
    cursor: default;
}

#calroot #calcurrent {
    background-color: #498CE2;
    color: #fff;
}

#calroot #caltoday {
    background-color: #333;
    color: #fff;
}

@media (max-width:400px),(min-device-width:320px) and (max-device-width:480px) {
    form.hs-form .form-columns-2 .hs-form-field,form.hs-form .form-columns-3 .hs-form-field {
        float: none;
        width: 100%;
    }

    form.hs-form .form-columns-2 .hs-form-field .hs-input,form.hs-form .form-columns-3 .hs-form-field .hs-input {
        width: 95%;
    };
}