/* TOC 
 * NORMALIZE
 * GRID
 * FONT FACE (IF USED)
 * HELPERS
 * HTML
 * BODY
 * HEADER
 * NAVIGATION
 * MAIN
 * FOOTER
 * FORMS
 * PLUGINS
 * MEDIA QUERIES
 * PRINT STYLES
---------------------------------------------------------------------------*/
/* NORMALIZE 
---------------------------------------------------------------------------*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
	display: block;
}
audio,
canvas,
video {
	display: inline-block;
	*display: inline;
	*zoom: 1;
}
audio:not([controls]) {
	display: none;
	height: 0;
}
[hidden] {
	display: none;
}
html {
	font-size: 100%; /* 1 */
	-ms-text-size-adjust: 100%; /* 2 */
	-webkit-text-size-adjust: 100%; /* 2 */
}
html,
button,
input,
select,
textarea {
	font-family: sans-serif;
}
body {
	margin: 0;
  line-height:1.42857143;
}
a:focus {
	outline: thin dotted;
}
a:active,
a:hover {
	outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
  font-weight: normal;
  line-height: 1;
  color: #777777;
}
h1,
h2,
h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
h1 small,
h2 small,
h3 small {
  font-size: 65%;
}
h4,
h5,
h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
h4 small,
h5 small,
h6 small {
  font-size: 75%;
}
h1 {
  font-size: 36px;
}
h2{
  font-size: 30px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 18px;
}
h5 {
  font-size: 14px;
}
h6 {
  font-size: 12px;
}

abbr[title] {
	border-bottom: 1px dotted;
}
b,
strong {
	font-weight: bold;
}
blockquote {
	margin: 1em 40px;
}
dfn {
	font-style: italic;
}
hr {
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	height: 0;
}
mark {
	background: #ff0;
	color: #000;
}
p,
pre {
	margin: 1em 0;
}
code,
kbd,
pre,
samp {
	font-family: monospace, serif;
	font-size: 1em;
}
pre {
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}
q {
	quotes: none;
}
q:before,
q:after {
	content: '';
	content: none;
}
small {
	font-size: 80%;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
dl,
menu,
ol,
ul {
	margin: 1em 0;
}
dd {
	margin: 0 0 0 40px;
}
menu,
ol,
ul {
	padding: 0 0 0 40px;
}
nav ul,
nav ol {
	list-style: none;
	list-style-image: none;
}
img {
	border: 0;
	-ms-interpolation-mode: bicubic;
}
svg:not(:root) {
	overflow: hidden;
}
figure {
	margin: 0;
}
::-moz-selection {
	background: #b3d4fc;
	text-shadow: none;
}
::selection {
	background: #b3d4fc;
	text-shadow: none;
}
hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #ccc;
	margin: 1em 0;
	padding: 0;
}
nav ul, 
nav ol {
	margin: 0;
	padding: 0;
}
ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin-bottom: 0;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}
.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}


audio,
canvas,
img,
video {
	vertical-align: middle;
}
label {
	cursor: pointer;
}

/* --- Forms --- */
input[type="search"],
.form-control {
  display: block;
  width: 100%;
  height: 23px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  border: 0;
  transition: all .2s ease;
}
/* Removes awkward default styles on some inputs for iOS */
.form-control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; 
}
textarea.form-control{
  min-height: 115px;
  resize: vertical;
}
.form-control:focus {
  border-color: #999;
  background-color: #fafafa;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
input[type="radio"] {
  margin-top: 0;
}
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
label {
  font-size: 14px !important;
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  cursor: pointer;
}
input[type="checkbox"],
input[type="radio"] {
  display: inline; 
}
button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}
textarea {
	overflow: auto;
	vertical-align: top;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

small {
  font-size: 85%;
}
mark {
  background-color: #fcf8e3;
  padding: .2em;
}
.align-left {
  text-align: left;
}
.align-right {
  text-align: right;
}
.align-center {
  text-align: center;
}
/* GRID
--------------------------------------------------------------------------*/
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px;
  max-width: 1007px; /*Change with Design */
  width: 100%;
  position: relative;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
}
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
  float: left;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
.col-12 {
  width: 100%;
}
.col-11 {
  width: 91.66666667%;
}
.col-10 {
  width: 83.33333333%;
}
.col-9 {
  width: 75%;
}
.col-8 {
  width: 66.66666667%;
}
.col-7 {
  width: 58.33333333%;
}
.col-6 {
  width: 50%;
}
.col-5 {
  width: 41.66666667%;
}
.col-4 {
  width: 33.33333333%;
}
.col-3 {
  width: 25%;
}
.col-2 {
  width: 16.66666667%;
}
.col-1 {
  width: 8.33333333%;
}
.col-pull-12 {
  right: 100%;
}
.col-pull-11 {
  right: 91.66666667%;
}
.col-pull-10 {
  right: 83.33333333%;
}
.col-pull-9 {
  right: 75%;
}
.col-pull-8 {
  right: 66.66666667%;
}
.col-pull-7 {
  right: 58.33333333%;
}
.col-pull-6 {
  right: 50%;
}
.col-pull-5 {
  right: 41.66666667%;
}
.col-pull-4 {
  right: 33.33333333%;
}
.col-pull-3 {
  right: 25%;
}
.col-pull-2 {
  right: 16.66666667%;
}
.col-pull-1 {
  right: 8.33333333%;
}
.col-pull-0 {
  right: auto;
}
.col-push-12 {
  left: 100%;
}
.col-push-11 {
  left: 91.66666667%;
}
.col-push-10 {
  left: 83.33333333%;
}
.col-push-9 {
  left: 75%;
}
.col-push-8 {
  left: 66.66666667%;
}
.col-push-7 {
  left: 58.33333333%;
}
.col-push-6 {
  left: 50%;
}
.col-push-5 {
  left: 41.66666667%;
}
.col-push-4 {
  left: 33.33333333%;
}
.col-push-3 {
  left: 25%;
}
.col-push-2 {
  left: 16.66666667%;
}
.col-push-1 {
  left: 8.33333333%;
}
.col-push-0 {
  left: auto;
}
.col-offset-12 {
  margin-left: 100%;
}
.col-offset-11 {
  margin-left: 91.66666667%;
}
.col-offset-10 {
  margin-left: 83.33333333%;
}
.col-offset-9 {
  margin-left: 75%;
}
.col-offset-8 {
  margin-left: 66.66666667%;
}
.col-offset-7 {
  margin-left: 58.33333333%;
}
.col-offset-6 {
  margin-left: 50%;
}
.col-offset-5 {
  margin-left: 41.66666667%;
}
.col-offset-4 {
  margin-left: 33.33333333%;
}
.col-offset-3 {
  margin-left: 25%;
}
.col-offset-2 {
  margin-left: 16.66666667%;
}
.col-offset-1 {
  margin-left: 8.33333333%;
}
.col-offset-0 {
  margin-left: 0%;
}


/* FONT FACE
--------------------------------------------------------------------------*/
table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
table thead th,
table tbody th,
table tfoot th,
table thead td,
table tbody td,
table tfoot td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  /*border-top: 1px solid #ddd;*/
  text-align: left;
}
table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}

/* BUTTONS
--------------------------------------------------------------------------*/
.btn-default {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  padding: 6px 22px;
  font-size: 17px;
  font-family: 'OpenSans Bold';
  line-height: 1.42857143;
  user-select: none;
  color: #fff;
  text-transform: uppercase;
  background-color: #00456a;
  border: 0 none;
  text-decoration: none; 
}
.btn-default:link {
  color: #fff;
}
.btn[disabled] {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  box-shadow: none;
}
.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
.btn-primary[disabled] {
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-success {
  background-color: #51b949;
}
.btn-block {
  display: block;
  width: 100%;
}

/* IMAGE SHAPES
--------------------------------------------------------------------------*/
.img-responsive{
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 6px;
}
.img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.img-circle {
  border-radius: 50%;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}

/* HELPERS
--------------------------------------------------------------------------*/
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.form-row:before,
.form-row:after,
.row:before,
.row:after {
	content: " ";
	display: table;
}
.clearfix:after,
.container:after,
.form-row:after,
.row:after {
	clear: both;
}
.clearfix,
.container,
.row {
	*zoom: 1;
}

/* ALERT
--------------------------------------------------------------------------*/
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}
.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}
.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}
.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}
/* FONTS
--------------------------------------------------------------------------*/
@font-face {
    font-family: 'OpenSans Regular';
    src: url('webfonts/opensans-regular-webfont.woff2') format('woff2'),
         url('webfonts/opensans-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'OpenSans Bold';
    src: url('webfonts/opensans-bold-webfont.woff2') format('woff2'),
         url('webfonts/opensans-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'OpenSans SemiBold';
    src: url('webfonts/opensans-semibold-webfont.woff2') format('woff2'),
         url('webfonts/opensans-semibold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
[class^="icon-"] {
  margin-right: 2px;
  text-align: center;
  display: inline-block;
  vertical-align: top;
  background: url('images/sprite.png') no-repeat;
}
.icon-facebook {
  width: 32px;
  height: 35px;
  background-position: 0 0;
}
.icon-twitter {
  width: 32px;
  height: 35px;
  background-position: -47px 0;
}
.icon-youtube {
  width: 32px;
  height: 35px;
  background-position: -92px 0;
}
.icon-pinterest {
  width: 32px;
  height: 35px;
  background-position: -135px 0;
}
.icon-instagram {
  width: 32px;
  height: 35px;
  background-position: -181px 0;
}
.icon-linkedin {
  width: 32px;
  height: 35px;
  background-position: -224px 0;
}
.icon-donate {
  width: 31px;
  height: 39px;
  background-position: -25px -45px;
}
/* HTML
--------------------------------------------------------------------------*/
html {
	line-height:1;
	overflow-y: scroll;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
P, LI, OL, UL, TABLE, TR, TH, TD, span, a {
  font-family: inherit;
  font-size: inherit;
}
/* BODY
--------------------------------------------------------------------------*/
body {
  color: #060c17;
  font-size: 17px;
  background-color: #fff;
  font-family: 'OpenSans Regular';
  position: relative;
}
a,
a:link {
  color: #00456a;
  outline: 0;
}
a:hover {
	text-decoration: none;
}
a[href^="tel"],
a[href^="mailto"]{
  color:inherit;
  text-decoration:none;
}
/*17-11-2016 start*/
.image-box img {
  display: inline-block;
  height: auto;
  max-height: 240px;
  max-width: 100%;
  width: auto;
}
/*17-11-2016 end*/
.hlw-body h2 {
  border-top: none;
  color: #00456a;
  font: 24px/1 "OpenSans Bold" !important;
  margin-bottom: 20px;
  margin-top: 0;
  padding: 0;
  text-transform: uppercase;
}
body.hlw-body {
  max-width: 100%;
}
/* HEADER
--------------------------------------------------------------------------*/
.header .container {
  padding-bottom: 30px;  /*  for height of header container class 04-10-2016  */
}
.header .logo {
  float: left;
  width: 100%;
  max-width: 303px;
  margin-top: 9px;
}
.header .logo a, 
.header .logo img {
  width: 100%;
  display: block;
  text-decoration: none;
}
.header .right {
  float: right;
  width: 65%;
  min-width: 475px;
}
/*04-10-2016 start*/
/*26-10-2016 start*/
.header .social-icons {
  margin-bottom: 67px;
  text-align: right;
}
/*26-10-2016 end*/
/*04-10-2016 end*/
.social-icons a {
  width: 36px;
  height: 35px;
  display: inline-block;
  margin-left: 0;
}
.social-icons a:first-child {
  margin-left: 0;
}
.services-btn,
.services-btn:link {
  color: #fff;
  width: 136px;
  height: 37px;
  line-height: 37px;
  float: right;
  text-decoration: none;
  font-family: 'OpenSans Bold';
  text-transform: uppercase;
  text-align: center;
  display: block;
  background-color: #bc37b7;
}
.search-box {
  width: 100%;
  max-width: 475px;
  float: right;
  text-align: right;
}
.search-box form {
  background-color: #eae5e1;
  float: right;
  height: 37px;
  margin-left: 3%;
  margin-top: 0;
  position: relative;
  vertical-align: top;
  width: 183px;
}
.search-box input[type="search"] {
  width: 100%;
  height: 100%;
  background: #eae5e1;
  -webkit-appearance: none !important;
}
.search-box input[type="search"]:focus {
  outline: none;
}
/*10-11-2016 start*/
.search-box .search-btn {
  background:url(images/sprite.png) no-repeat 0 -49px;
  border: 0 none;
  cursor: pointer;
  height: 23px;
  position: absolute;
  right: 10px;
  top: 11px;
  width: 23px;
  text-indent: 46px;
}
/*10-11-2016 end*/
/*27-09-2016 start*/
.NetscapeFix {
  display: block;
}
/*27-09-2016 end*/
/*21-9-2016 start*/
#Contact_form_1 {
  float: left;
  width: 50%;
}
#Contact_form_2 {
  float: left;
  padding: 48px 0 0;
  width: 50%;
}
#Contact_form_2 .wrapable {
	padding:0 !important;
  width: 94%;
}
#cons_state_outer {
  float: left;
  width:37%;
  margin:0 15px 0 0;
}
#cons_zip_code_outer
{
	width:45%;
	float:left;
}

#Contact_form_1 td {
	padding:0 27px 0 0;
}
#cons_state
{
	margin:0 !important;
	height:36px !important;
}
#Contact_form_1 label
{
	padding:12px 0 5px;
}
#Contact_form_1 input
{
	height:36px !important;
}
#Contact_form_2 label {
	padding:12px 0 5px;
}
#Contact_form_2 > td
{
	padding:0;
}#Contact_form_2 input {
  height: 36px !important;
}
#cons_email_opt_in {
	margin:-6px 10px 0 0;
}
#s_rememberMe {
	margin:-6px 10px 0 0;
}
#whats_this_link
{
	display:inline-block;
	margin:0 0 20px;
}
#Contact_form_2 textarea
{
	margin:25px 0 0;
}
/*04-10-2016 start*/
/*14-10-2016 start*/
.FormLabelText, #level_flexiblegift_type_Row fieldset legend, .donation-level-total-label, #level_flexibleduration_row .form-content label[for="level_flexibleduration"], #level_flexible_row_2 .form-input-label-block label {
  border: medium none;
  font-weight: bold;
  margin: 0 0 10px;
}
/*14-10-2016 end*/
#ProcessForm .level-row.don-level-total-row {
  border: none;
  float: left;
  padding: 0;
  width: 50%;
}
#ProcessForm .donation-level-total-amount {
  font-size: 16px;
  font-weight: normal;
}
#ProcessForm h2, .payment-type-element-container, .custom-field-container.form-row .form-content, #billing_addr_country_row .form-content, #payment_typecc_exp_date_row, #payment_typecc_exp_date_row .form-content, .donation-form-content .button-container {
  float: left;
  width: 100%;
}
#payment_cc_container h3 {
  font-size: 16px;
  font-weight: bold;
}
#ProcessForm .form-progress-bar {
  display: none;
}
/*14-10-2016 start*/
#ProcessForm {
  font-family: opensans regular;
  line-height: 14px;
}
/*14-10-2016 end*/
#payment_typecc_number_row .field-required, #payment_typecc_number_row input, #payment_typecc_exp_date_row, #payment_typecc_cvv_row input {
  display: inline-block;
  vertical-align: middle;
}
#payment_typecc_exp_date_row .date-input-container {
  display: inline-block;
  vertical-align: middle;
}
#ProcessForm .form-row .html-caption-container p {
  line-height: 24px;
}
/*04-10-2016 end*/
/*05-10-2016 start*/
#Contact_form_3 {
  float: right;
  margin-bottom: 20px;
  margin-top: 0;
  width: 50% !important;
}
/*05-10-2016 end*/
/*21-9-2016 END*/
/*05-10-2016 start*/
#social-panel > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  float: left;
  width: 100%;
}
#social-panel ul li {
	float: left;
	width: auto;	
}
#social-panel ul li a {
  background: #ddd;
  border-right: 1px solid #ccc;
  color: #333333;
  display: block;
  padding: 8px;
  text-decoration: none;
  outline: 0;
}
/*.fb_iframe_widget {
  border: 3px solid #365899;
}*/
#level_flexible_row .donation-levels {
  margin: 12px 0 0;
}
#level_flexible_row .donation-level-container, #level_flexible_row .donation-levels .form-content {
  margin: 0;
}
#ProcessForm #level_flexible_row .donation-level-input-container {
  float: left;
  padding: 2px 0;
  width: 100%;
}
#ProcessForm label + div.donation-level-user-entered {
  margin-left: 0;
  margin-top: 0;
}
#level_flexibleexpanded4107 {
  display: none;
}
#level_flexible_row .donation-level-container {
  float: left;
  margin: 0;
  width: 100%;
}
/*14-10-2016 start*/
#level_flexible_row .donation-level-container .form-content, #level_flexible_row .donation-level-user-entered input, #level_flexible_row .form-content, #billing_title_row, #billing_first_name_row, #billing_title_row .form-content, #billing_middle_name_row, #billing_last_name_row, #billing_addr_street1_row, #billing_addr_street2_row, #donor_email_address_row, #donor_email_opt_in_Row, .custom-field-container.form-row, #level_flexible_row > fieldset {
  float: left;
  width: 100%;
}
/*14-10-2016 end*/
#Contact_form_2 br {
  display: none;
}
/*27-10-2016 start*/
#social-panel ul li a.active {
  background: #00456a;
  color: #fff;
}
/*27-10-2016 end*/
#social-panel ul li a#panel_facebook.active {
  background: #365899;
}
#social-panel ul li a#panel_twitter.active {
  background: #55acee;
}
#level_flexiblegift_type_Row {
  margin: 14px 0;
}
#level_flexibleduration_row {
  margin: 0 0 42px;
}
#level_flexibletotal_row {
  width: 80% !important;
  margin-bottom: 5px;
}
#donor_employer_row .form-content input {
  display: inline-block;
  float: none !important;
  vertical-align: middle;
  width: 48% !important;
}
#donor_employer_row {
  margin: 0 0 18px;
  width: 100% !important;
}
#ProcessForm #level_flexible_row_2 h2 {
  border: none;
  color: rgb(60, 60, 60);
  font-size: 14px !important;
  font-weight: bold;
  margin: 12px 0 0;
  padding-bottom: 0;
  text-transform: none;
}
#level_flexible_row_2 #billing_title_row .form-content label, #billing_first_name_row .form-content label, #billing_middle_name_row .form-content label, #billing_last_name_row .form-content label, #billing_addr_street1_row .form-content label , #billing_addr_street2_row .form-content label, #donor_email_address_row .form-content label, .custom-field-container.form-row .form-content .form-input-label-block {
  float: left;
  min-width: 1px;
  text-align: right;
  width: 21% !important;
}
.custom-field-container.form-row .form-content .form-input-label-block label {
	width: 100%;
}
#billing_title_row .form-content select, #billing_first_name_row .form-content input, #billing_middle_name_row .form-content input, #billing_last_name_row .form-content input, #billing_addr_street1_row .form-content input , #billing_addr_street2_row .form-content input, #billing_addr_city_row .form-content input, #donor_email_address_row .form-content input, .custom-field-container.form-row .form-content input {
  float: right !important;
  margin: 0;
  width: 75% !important;
}
.twitter_outer iframe {
  width: 340px !important;
}
.twitter_outer {
  height: 500px !important;
  overflow-y: scroll;
  width: 340px;
}
#billing_title_row .form-content label {
  font-weight: normal;
}
#billing_addr_city_row .form-content label, #billing_addr_zip_row .form-content label {
  text-align: right;
  width: 33% !important;
  float: left;
}
#billing_addr_city_row .form-content input, #billing_addr_zip_row .form-content input {
  float: right !important;
  width: 54% !important;
}
#billing_addr_city_row, #billing_addr_zip_row {
  float: left;
  width: 55%;
}
#billing_addr_state_row, #billing_addr_country_row {
  float: right;
  width: 40%;
}
#billing_addr_state_row .form-content label, #billing_addr_country_row .form-content label {
  float: left;
  min-width: 1px;
  width: 57%;
  text-align: right;
}
#billing_addr_state_row .form-content select, #billing_addr_country_row .form-content select {
  float: right;
  width: 37%;
}
#undefined .form-content input#comments_input {
  height: 66px;
}
#ProcessForm h2:nth-of-type(2) {
  display: none;
}
#ProcessForm h2:nth-of-type(3) {
  margin-bottom: 0;
}
#payment_typecc_type_row .form-content legend {
  border: none;
  margin: 0 0 12px;
}
#payment_typecc_number_row label, #payment_typecc_exp_date_row label, #payment_typecc_cvv_row label {
  float: left;
  text-align: right;
  width: 30%;
}
#payment_typecc_exp_date_row .form-content label:nth-of-type(2) {
  display: none;
}
/*#payment_typecc_exp_date_row .form-content label:nth-of-type(2), #level_flexibleduration {
  display: none;
}*/
select#level_flexibleduration {
    width: 96%;
}
#payment_typecc_number_row .form-content, #payment_typecc_exp_date_row .form-content, #payment_typecc_cvv_row .form-content {
  width: 50%;
}
#payment_typecc_exp_date_row .date-input-container {
  margin-left: 14px;
}
#payment_typecc_cvv_row {
	float: left;
	width: 100%;
}
#ProcessForm .form-content select {
  border: 1px solid #cccccc;
  font-size: 12px;
  padding: 2px 0;
}
#payment_typecc_cvv_row .form-content label > a.HelpLink {
  color: #3c3c3c;
  display: block;
  margin: 2px 0 0;
  text-decoration: none;
}
#payment_typecc_cvv_row .form-content label > a.HelpLink:hover {
    text-decoration: underline;
}
#payment_typecc_cvv_row .FormLabelText, #undefined .form-content .form-input-label-block label {
  font-weight: normal;
}
.social_widgets {
  padding-right: 0 !important;
}
/*12-10-2016 start*/
/*27-10-2016 start*/
.social_widgets_inner {
  float: right;
  width: 82%;
}
/*27-10-2016 end*/
/*12-10-2016 end*/
.banner.donation_banner_3701 {
  background-image: url("../images/donation-banner.jpg");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}
#ProcessForm input {
  border: 1px solid #cccccc;
  border-radius: 0;
  box-shadow: none;
  font-size: 12px;
  margin-left: 0;
  padding: 4px;
}
#ProcessForm .form-text .form-content input, .form-text .form-content, .custom-field-container.form-row .form-content input#comments_input, #billing_addr_country {
  float: left;
  width: 100%;
}
#payment_typecc_number_row input, #payment_typecc_cvv_row input {
  background: #fff !important;
  float: right !important;
  margin-left: 15px;
  width: 64% !important;
}
#ProcessForm h2.section-header-container {
  border-bottom: 1px solid #999999;
  font-size: 22px !important;
  padding-bottom: 10px;
}
#level_flexible_row, #anonymous_donation_row , #donor_employer_row, #ProcessForm .section-header-container:nth-of-type(2), #billing_addr_zip_row, #billing_addr_country_row {
  float: left;
  width: 50%;
}
.banner_image_footer_3701 {
  background: url("../images/donation-footer-img.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.banner_image_footer_default {
  background: url("../images/donation-footer-img.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
#level_flexible_row #level_flexible_row {
  width: 80%;
}
/*05-10-2016 end*/
/*26-10-2016 start*/
#search-box-button {
  background: url(http://www.thehome.org/custom/hlw-2016/css/images/sprite.png) no-repeat;
  background-position: 8px -42px;
  border: 1px solid #ddd;
  box-shadow: 0 0 4px 1px #ddd;
  display: none;
  height: 33px;
  margin: -61px 0 0;
  padding: 6px !important;
  position: absolute;
  right: 10px;
  width: 35px;
}
/*26-10-2016 end*/
/*27-10-2016 start*/
.programs_special_ed .inner-content table tr td a img {
  width: 100% !important;
  height: auto !important;
}
.programs_independent_living table:nth-of-type(1) tr td img {
  border: 1px solid #e0e0e0;
  float: left;
  margin: 16px auto !important;
  padding: 2px;
}
.programs_independent_living table:nth-of-type(1) tr td img:last-child {
  margin-left: 16px !important;
}
.programs_independent_living table tr td br {
	display: none;
}
.programs_independent_living .inner-content p > img {
  height: auto;
  max-width: 100%;
  width: auto;
}
.news_events .inner-content .container > table td {
  border: none;
  padding: 14px 0 7px;
}
.news_events .inner-content .container > table td table td {
  padding: 0;
}
.news_events table {
  float: left;
  width: 100%;
}
.news_events .inner-content h1 {
  margin-top: 0;
  padding-bottom: 8px;
}
.news_events table table td img {
  border: 1px solid #e0e0e0;
  padding: 6px;
}
.news_events table table {
  margin-right: 14px;
  width: auto;
}
.stay_in_touch_outer {
  background: #fff;
  border: 1px solid #00456a;
  float: left;
  padding: 27px 14px 17px;
  width: 100%;
}
.stay_in_touch_outer .form-row .inline-form {
  width: 100%;
}
.stay_in_touch_outer .form-row .inline-form:first-child {
  margin-right: 6px;
}
.stay_in_touch_outer .form-row .inline-form input {
  background: #eae5e1;
  border: none;
  box-shadow: 3px 5px 7px -3px rgba(0, 0, 0, 0.3) inset;
  color: #555;
  height: auto;
  padding: 16px 11px;
  text-transform: none;
}
.stay_in_touch_outer .form-row input#ACTION_SUBMIT_SURVEY_RESPONSE {
  font-size: 16px;
  margin: 0;
  padding: 8px 20px;
}
.main .stay_in_touch_outer .email-form > p {
  margin-bottom: 14px;
}
/*27-10-2016 end*/
/*1-11-2016 start*/
.read-more > a {
  color: #fff;
  text-decoration: none;
}
.read-more > a:hover {
	text-decoration: underline;
}
.latest_proper_outer {
  padding: 25px 37px;
}
.news-events .content a {
	text-decoration: underline;
}
.news-events .content a:hover {
  color: #00456a;
  text-decoration: none;
}
.services-list li a {
  color: #fff;
  text-decoration: none;
}
.services-list li a:hover {
  color: #f5f5f5;
}
/*1-11-2016 end*/
/*3-11-2016 start*/
.programs_independent_living td a {
  font-size: 14px;
  text-decoration: underline;
}
p:empty {
  display: none;
}
.survey_form_table table {
  margin-top: 22px;
}
table.survey_form_table label {
  padding: 8px 0 0;
}
table.survey_form_table input[type="text"], table.survey_form_table SELECT {
	border-radius: 0;
	height: auto;
	padding: 6px 12px;
}
.Explicit {
  color: #999999;
  font: 18px/22.4px "OpenSans regular";
}
.volunteer_corporate .image-header-list {
  float: left;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.main .image-header-list > li {
  float: left;
  margin: 0 4px 8px;
  width: 19%;
}
.image-header-list li img {
  display: block;
  height: auto;
  width: 100%;
}
/*3-11-2016 end*/
/*10-11-2016 start*/
.RSVPForm_class .appArea table tr td table tr {
  float: left;
  width: 100%;
}
.RSVPForm_class .appArea table tr td table tr td {
	float: left;
	width: 50%;
}
.appArea > input#rsvp_num_guests, .NetscapeFix select#days {
  margin-bottom: 32px;
}
.NoteText a > img {
  margin: 0 4px;
  padding: 0 !important;
}
.RSVPForm_class table tr:nth-of-type(2) td {
  vertical-align: middle !important;
}
.RSVPForm_class table tr:nth-of-type(2) td p {
  font-size: 18px;
}
/*10-11-2016 end*/
/* HEADER MEDIA QUERIES
--------------------------------------------------------------------------*/
@media (max-width: 1200px) {
header .right {
  width: 45%;
}
/*12-10-2016 start*/
.info {
  bottom: inherit !important;
}
.home-banner {
	min-height: 1px !important;
}
/*12-10-2016 end*/
}		

@media (max-width: 930px) {
  .header .logo {
    width: 270px;
  }
  .social-icons {
    display: none;
  }
  /*12-10-2016 start*/
.header .right {
  display: block;
  float: left;
  min-width: 235px;
  padding-top: 43px;
  width: 60.5%;
}
  .search-box .services-btn {
  margin-left: 14px;
}
  /*12-10-2016 end*/
  .search-box {
	  margin-right: 8px;
	  max-width: 310px;
	  text-align: right;
   }
  .services-btn,
  .search-box form {
    float: none;
    display: inline-block;
  }
  .search-box form {
    margin-left: 0;
    margin-bottom: 15px;
  }
/*27-09-2016 start*/
  table.survey_form_for_contactpage {
	width: 100%;
  }
  #Contact_form_2 {
	padding: 24px 0 0;
  }
  #cons_state_outer {
	margin: 0;
	width: 47%;
  }
  #cons_zip_code_outer {
    width: 48%;
  }
  #Contact_form_3 {
    margin: 90px 10px 20px -10px;
  }
/*27-09-2016 end*/
/*05-10-2016 start*/
.search-box form {
  margin-bottom: 0;
  width: 50%;
}
#level_flexible_row_2 #billing_title_row .form-content label, #billing_first_name_row .form-content label, #billing_middle_name_row .form-content label, #billing_last_name_row .form-content label, #billing_addr_street1_row .form-content label, #billing_addr_street2_row .form-content label, #donor_email_address_row .form-content label, .custom-field-container.form-row .form-content .form-input-label-block, #billing_addr_city_row .form-content label, #billing_addr_zip_row .form-content label {
  width: 28% !important;
}
#billing_title_row .form-content select, #billing_first_name_row .form-content input, #billing_middle_name_row .form-content input, #billing_last_name_row .form-content input, #billing_addr_street1_row .form-content input, #billing_addr_street2_row .form-content input, #billing_addr_city_row .form-content input, #donor_email_address_row .form-content input, .custom-field-container.form-row .form-content input {
  width: 66% !important;
}
#ProcessForm {
  font-size: 14px;
}
#billing_addr_city_row, #billing_addr_zip_row, #billing_addr_state_row, #billing_addr_country_row, #billing_addr_state_row .form-content {
	width: 100%;
}
#billing_addr_state_row .form-content label, #billing_addr_country_row .form-content label {
	width: 31%;
}
#billing_addr_state_row .form-content select, #billing_addr_country_row .form-content select, #billing_addr_city_row .form-content input, #billing_addr_zip_row .form-content input {
	width: 66% !important;
}
div.responsive span.field-required {
  background-size: 100% auto;
  width: 6px;
  height: 6px;
}
#level_flexible_row .form-content label, #level_flexible_row fieldset label, #donor_email_opt_in_Row .form-content label {
  width: 90% !important;
}
#payment_typecc_number_row .form-content, #payment_typecc_exp_date_row .form-content, #payment_typecc_cvv_row .form-content {
  width: 70%;
}
#payment_typecc_exp_date_row .date-input-container {
  width: 64%;
}
#payment_typecc_exp_date_row select {
  width: 47%;
}
/*05-10-2016 end*/
/*12-10-2016 start*/
.promo-text {
  top: 115px !important;
}
.flex-direction-nav a {
	width: 28px;
	height: 28px;
}
/*12-10-2016 end*/
}
@media (max-width: 560px) {
  .header .logo {
    width: 180px;
    margin-bottom: 15px;
  }
  .header .right {
    width: 100%;
    float: none;
    min-width: 100%;
  }
  .search-box {
    max-width: 100%;
    text-align: center;
  }
}
/* NAVIGATION
--------------------------------------------------------------------------*/
.main-navigation {
  background-color: rgba(0,61,100,0.78);
  box-shadow: 0px 0px 12px 5px rgba(0,0,0,0.2);
  position: relative;
  z-index: 10;
}
.main-navigation .container {
  padding-bottom: 0;
}
.main-navigation li {
  margin-left: 2.8%;
  display: inline-block;
  vertical-align: top;
  font: 17px/1 'OpenSans Bold';
  position: relative;
}
.main-navigation li.active a,
.main-navigation li:hover a {
  color: #66ff66;
}
.main-navigation >ul>li:first-child {
  margin-left: 0;
}
.main-navigation >ul>li:last-child {
  border-left: 4px solid #fff;
  border-right: 4px solid #fff;
}
.main-navigation >ul>li:last-child a {
  padding-left: 40px;
  padding-right: 10px;
  background: #51b94a url('images/donate-icon.png') no-repeat 7px 9px;
}
.main-navigation li a {
  color: #fff;
  padding: 18px 0;
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  text-align: left;
}
.main-navigation >ul> li a:last-child:hover {
  color: #fff;
}
.main-navigation .sub-menu {
  padding: 15px 0;
  display: none;
  position: absolute;
  top: 100%;
  left:-20px;
  width: 300px;
  background-color: rgba(0,61,100,0.78);
}
.main-navigation .sub-menu li {
  display: block;
  margin-left: 0;
}
.main-navigation .sub-menu li a {
    padding: 10px 18px;
}
.main-navigation li:hover .sub-menu {
  display: block;
}
/* NAVIGATION MEDIA QUERIES
--------------------------------------------------------------------------*/
@media (max-width: 1358px) {
  .main-navigation {
    text-align: center;
  }
  .main-navigation li {
    font-size: 18px;
    margin-left: 2.25%;
  }
}
@media (max-width: 1015px) {
  .main-navigation li {
    font-size: 16px;
    margin-left: 1.3%;
  }
}
@media (min-width: 870px) {
  .main-navigation {
    display: block !important;
  }
 .header .right {
  width: auto;
 }
 .header .right .search-box {
	 display: block !important;
 }
}
@media (max-width: 870px) {
/*12-10-2016 start*/
/*10-11-2016 start*/
.main-navigation {
  background-color: rgba(0, 61, 100, 1);
  display: none;
  position: absolute;
  right: 0;
  text-align: left;
  top: 66px;
  width: 250px;
  z-index: 20;
}
/*10-11-2016 end*/
/*12-10-2016 end*/
  .main-navigation .container {
    margin: 0;
    padding: 0;
  }
  .main-navigation li {
    margin: 0;
    display: block;
  }
  .main-navigation li.active a,
  .main-navigation li:hover a {
    color: #fff;
    background-color: #51b949;
  }
  .main-navigation li a {
    padding: 15px 10px;
  }
  .main-navigation .sub-menu {
    position: static;
  }
  .main-navigation li.active .sub-menu li a, 
  .main-navigation li:hover .sub-menu li a {
    background: none;
    padding-left: 10px;
    padding-right: 10px;
  }
  /*12-10-2016 start*/
.burger-menu {
  background: url(http://hlw.convio.net/custom/hlw-2016/css/images/menu-icon.png) no-repeat;
  background-size: 100% auto;
  display: block;
  height: 28px;
  position: absolute;
  right: 10px;
  top: 51px;
  width: 28px;
}
  /*12-10-2016 end*/
  .menu-bar {
    width: 100%;
    height: 4px;
    margin-bottom: 5px;
    display: block;
    background-color: #00456a; 
  }
  /*26-10-2016 start*/
#search-box-button {
	display: block;
}
/*10-11-2016 start*/
.header .right .search-box {
  display: none;
  margin: 24px 0 auto;
}
/*10-11-2016 end*/
.header .right {
  padding: 0;
}
/*26-10-2016 end*/
}

/* HOME BANNER
--------------------------------------------------------------------------*/
/*26-10-2016 start*/
.banner-wrapper {
  margin: auto;
  position: relative;
  width: 1349px;
  z-index: 1;
}
/*26-10-2016 end*/
/*13-10-2016 start*/
/*26-10-2016 start*/
.home-banner {
  border-bottom: 7px solid #fff;
  color: #fff;
  min-height: 1px;
}
/*26-10-2016 end*/
/*13-10-2016 end*/
/*14-10-2016 start*/
/*26-10-2016 start*/
/*27-10-2016 start*/
.home-banner h1 {
  font: 23px/1 "OpenSans Bold" !important;
  margin: 0 0 4px;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.7);
}
.home-banner p {
  font: 15px/20px "OpenSans regular";
  margin: 6px 0 0;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.7);
}
/*27-10-2016 end*/
/*26-10-2016 end*/
/*14-10-2016 end*/
/*12-10-2016 start*/
.home-banner ul {
  list-style: none;
  padding: 0;
}
.home-banner > li {
	  float: left;
	  position: relative;
}
/*12-10-2016 end*/
/*04-10-2016 start*/
/*12-10-2016 start*/
/*13-10-2016 start*/
/*14-10-2016 start*/
/*27-10-2016 start*/
.promo-text {
  background: rgba(0, 61, 100, 0.4);
  left: -28%;
  margin: auto;
  padding: 18px;
  position: absolute;
  right: 0;
  top: 200px;
  width: 55%;
}
/*26-10-2016 start*/
.promo-text > a {
  color: #fff;
  display: inline-block;
  font: 16px/1 "OpenSans semibold";
  margin-top: 14px;
  text-decoration: none;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.7);
  text-transform: uppercase;
}
/*27-10-2016 end*/
/*26-10-2016 end*/
/*14-10-2016 end*/
.promo-text > a span {
  font-style: normal;
}
/*13-10-2016 end*/
/*12-10-2016 end*/
/*04-10-2016 end*/
/*13-10-2016 start*/
.info {
  bottom: -75px;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 99;
}
/*13-10-2016 end*/
/*04-10-2016 start*/
.info .container {
  padding-left:0;
  padding-right: 40px;
  background-color: #fff;
  box-shadow: 0 0 22px 30px rgba(0,0,0,0.2);
}
/*04-10-2016 end*/
.info .info-content {
  float: left;
  width: 60%;
  padding: 20px 0 0 55px;
}
.info .image-box {
  float: left;
  width: 40%;
}
.info p {
  color: #000;
  margin-top: 0;
  margin-bottom: 10px;
  font: 12px/1.3 'OpenSans SemiBold';
}
.post-441 .entry-content .vc_column_container .vc_column-inner:first-child {
  padding: 0;
}
/* HOME BANNER MEDIA QUERIES
--------------------------------------------------------------------------*/
@media (max-width: 1358px) {
/*13-10-2016 start*/
.banner, .banner-wrapper {
  margin-top: -54px;
}
/*13-10-2016 end*/
}
@media (max-width: 1015px) {
.home-banner {
  padding-top: 2px;
}
.banner, .banner-wrapper {
  margin-top: -106px;
  width: 100%;
}
.header .right {
  float: right;
  width: auto;
}
}
/*26-10-2016 start*/
@media only screen and (min-width: 801px) and (max-width: 1015px) {
	.banner, .banner-wrapper {
		margin-top: 0;
	}
	.flex-direction-nav {
	  bottom: 58% !important;
	}
}
@media only screen and (min-width: 767px) and (max-width: 1015px) {
	/* .our-services {
	  padding-top: 260px !important;
	} */
}
/*26-10-2016 end*/
@media (max-width: 870px) {
/*26-10-2016 start*/
.banner, .banner-wrapper {
  margin-top: 0;
  width: 100%;
}
/*26-10-2016 end*/
/*12-10-2016 start*/
.home-banner {
  background-position: right top;
  height: auto;
  padding: 0;
}
/*26-10-2016 start*/
.home-banner h1 {
  font-size: 16px !important;
  margin-bottom: 7px;
}
.home-banner p {
  font-size: 12px;
  line-height: 16px;
}
/*26-10-2016 end*/
.promo-text > a {
  font-size: 14px;
  margin-top: 6px;
}
  /*12-10-2016 end*/
  .info {
    position: static;
  }
  .info .container {
    padding: 20px 10px 0;
  }
  .info .image-box {
    float: none;
    width: 65%;
    margin: 0 auto;
  }
  .info .info-content {
    float: none;
    width: 100%;
    padding-left: 0;
    padding-bottom: 15px;
  }
}
@media (max-width: 1019px) {
  
}
@media (max-width: 560px) {
  .info .image-box {
    width: 100%;
  }
}
/* MAIN
--------------------------------------------------------------------------*/
.wrapper {
  background: url('images/top-shadow.png') repeat-x left top;
}
/*14-10-2016 start*/
.our-services {
  margin-top: 0;
  padding-top: 120px;
}
/*14-10-2016 end*/
.list-wrap  h2 {
  position: relative;
}
.list-wrap  h2:before {
  width: 38%;
  height: 1px;
  content: '';
  background: #999999;
  position: absolute;
  left: 0;
  top: 16px;
}
.list-wrap  h2:after {
  width: 38%;
  height: 1px;
  content: '';
  background: #999999;
  position: absolute;
  right: 0;
  top: 16px;
}
/*14-10-2016 start*/
.main .list-wrap p {
  color: #2e2624;
  padding-left: 10%;
  padding-right: 10%;
  margin-bottom: 26px;
  font: 14px 'OpenSans Regular';
}
/*14-10-2016 end*/
.services-list {
  padding: 0;
  margin-top: 85px;
  list-style: none;
  text-align: center;
}
/*14-10-2016 start*/
.homepage .main ul.services-list li {
  width: 100%;
  max-width: 207px;
  height: 153px;
  color: #fff;
  margin: 0 18px 60px;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  border: 5px solid #fff;
  box-shadow: 0 0 20px 10px rgba(0,0,0,0.3);
}
/*14-10-2016 end*/
.services-list img {
  display: inline-block;
  margin: -89px auto 0;
}
/*14-10-2016 start*/
.main .services-list h3 {
  font: 18px/1.2 "OpenSans Bold";
  margin: 0;
  padding-top: 10px;
  position: relative;
}
/*14-10-2016 end*/
.services-list h3 span {
  display: block;
}
.services-list h3:before {
  content:  '';
  width: 106px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 50%;
  top: -7px;
  margin-left: -53px;
}
/*1-11-2016 start*/
.services-list h3:hover::before {
  background: #f5f5f5;
}
/*1-11-2016 end*/
.support {
  background-color: #97d592;
}
.residental {
  background-color: #d687d4;
}
.education {
  background-color: #ffc266;
}
.education img {
  margin-left: 35px;
}
.transition {
  background-color: #66cae2;
}
@media (max-width: 1024px) {
  .list-wrap  h2:before,
  .list-wrap  h2:after {
    width: 30%;
  }
}
@media (max-width: 870px) {
  .our-services  {
    padding-top: 30px;
  }
}
@media (max-width: 620px) {
  .services-list li {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 620px) {
  .list-wrap  h2:before,
  .list-wrap  h2:after {
    display: none;
  }
}
/* BLOCKS
--------------------------------------------------------------------------*/
.block {
  position: relative;
  border-bottom: 7px solid #fff;
}
.block ul {
  margin: 0;
  padding: 0;
  color: #fff;
  list-style: none;
  position: relative;
  z-index: 5;
}
.block ul li {
  width: 50%;
  float: left;
  padding-bottom: 80px;
  padding-top: 50px;
  position: relative;
  text-shadow: 0px 0px 4px #000;
}
.block ul li:first-child {
  padding-left: 155px;
  padding-right: 85px;
}
.block ul li .image-box,
.block ul li .image-box {
  width: auto;
  position: absolute;
  left: 0;
  top: 50px;
}
.block ul li:nth-child(2) .image-box {
  left: 45px;
}
.block ul li:nth-child(2) {
  padding-left: 180px;
}
.block h3 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 15px;
  font: 24px/1 'OpenSans Bold';
  text-transform: uppercase;
}
.block p {
  margin: 0;
  font: 14px/1.3 'OpenSans SemiBold';
}
.block p .read-more {
  color: #fff;
  text-decoration: none;
  font-family:'OpenSans Bold';
  text-transform: uppercase;
}
.block-work,
.block-stories {
  top:0;
  width: 50%;
  height: 100%;
  position: absolute;
}
.block-work {
  left: 0;
  background: url('images/block1-bg.jpg') no-repeat right 0;
  background-size: cover;
}
.block-stories {
  right: 0;
  background: url('images/block2-bg.jpg') no-repeat right top;
  background-size: cover;
}
@media (max-width: 870px) {
  .block .container {
    padding: 0;
  }
  .block ul li {
    float: none;
    width: 100%;
  }
  .block-work,
  .block-stories {
    display: none;
  }
  .block ul li:first-child {
    padding-right: 20px;
    background: url('images/block1-bg.jpg') no-repeat right 0;
    background-size: cover;
  }
  .block ul li:nth-child(2) {
    padding-left: 155px;
    padding-right: 20px;
    background: url('images/block2-bg.jpg') no-repeat right top;
    background-size: cover;
  }
  .block ul li:nth-child(2) .image-box {
    left: 0;
  }
}
@media (max-width: 530px) {
  .block ul li:first-child,
  .block ul li:nth-child(2) {
    padding-left: 10px;
  }
  .block ul li .image-box {
    width: 100%;
    display: inline-block;
    position: static;
    text-align: center;
  }
  .block ul li .image-box img {
    width: auto;
    display: inline-block;
  }
}
/* NEWS AND EVENTS
--------------------------------------------------------------------------*/
.news-event-wrap .wrapper {
  padding-top: 45px;
}
.news-event-wrap .container {
  padding-bottom: 25px;
}
.news-events {
  margin: 0;
  padding: 0;
  list-style: none;
}
/*14-10-2016 start*/
.homepage .main ul.news-events li {
  margin-bottom: 15px;
  padding-bottom: 75px;
  position: relative;
  border-bottom: 1px solid #bebebe;
}
/*14-10-2016 end*/
.homepage .main ul.news-events li:last-child {
  border-bottom: 0;
}
/*17-11-2016 start*/
.news-events .image-box {
  height: 115px;
  left: 0;
  overflow: hidden;
  position: absolute;
  text-align: center;
  top: 0;
  width: 115px;
}
/*17-11-2016 end*/
.news-events .content {
  margin-left: 125px;
}
.news-events p {
  margin-top: 0;
  color: #333333;
  line-height: 1.2;
  margin-bottom: 3px;
  font-size: 14px;
  font-family: 'OpenSans Bold';
}
.read-more {
  color: #5bbd53;
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
}
.read-more:link {
  color: #5bbd53;
}
.email-form p {
  font-size: 13px;
}
.email-form .inline-form {
  margin-bottom: 10px;
}
.email-form .form-control {
  color: #333333;
  text-transform: uppercase;
  font: 12px/1 'OpenSans SemiBold';
  border: 1px solid #acacac;
}
@media (max-width: 1024px){
  #contact-form .inline-form,
  .email-form .inline-form {
    width: 100%;
    margin-right: 0;
  }
/*26-10-2016 start*/
  .flexslider {
	min-height: 1px !important;
  }
  .info .container {
	  box-shadow: none;
  }
/*26-10-2016 end*/
}
@media (max-width: 915px){
  .news-event-wrap .col-4,
  .news-event-wrap .col-6 {
    width: 100%;
    float: none;
  }
  .news-event-wrap .col-4 {
    margin-bottom: 25px;
  }
  .news-event-wrap .col-6.col-push-2 {
    left: 0;
  }
  /*26-10-2016 start*/
  .info .info-content {
	  padding: 37px 0;
	  text-align: center;
	}
/*26-10-2016 end*/
}
@media min-width: 871px){
.banner {
  border-bottom: 7px solid #fff;
  height: 294px;
  margin-top: -52px;
}
}

.banner {
border-bottom: 7px solid #fff;
  height: 294px;
  margin-top: 0px;
}


@media (max-width: 1333px){
  .news-event-wrap .col-push-2 {
    left: 0%;
  }
}
/* ABOUT PAGE
--------------------------------------------------------------------------*/
.inner-content {
  background: url('images/bottom-shadow.png') repeat-x left bottom;
}
.inner-content .container {
  padding-top: 60px;
}
.about-page .banner {
  background: url('images/about-banner-bg.jpg') no-repeat left top;
  background-size: cover;
}
.wrap {
  padding-bottom: 70px;
}
.video-images {
  float: left;
  width: 45%;
  margin-right: 5%;
  max-width: 522px;
  position: relative;
}
 .video {
  width: 100%;
  padding-bottom: 56%;
  position: relative;
}
.video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  position: absolute;
  left: 0;
  top: 0;
}
.inner-content {
  border-bottom: 7px solid #fff;
}

.inner-content .description {
  float: left;
  width: 50%;
}
.description p {
  color: #2e2624;
  margin-bottom: 30px;
  line-height: 1.6;
  font-size: 14px;
  font-family: 'OpenSans SemiBold';
}
.item-list {
  padding:0;
  text-align: center;
}
.about-page .item-list li {
  margin: 0 10px 45px;
}
.item-list li {
  margin: 0 25px 45px !important;
  display: inline-block;
  vertical-align: top;
}
.item-list h3 {
  margin: 0;
  color: #333333;
  font: 22px/1 'OpenSans Bold' !important;
}
.item-list h3 span {
  display: block;
}
.item-list img {
  display: inline-block;
}
.right-side {
  color: #fff;
  width: 50%;
  float: right;
  padding: 73px 10px 80px 58px;
}
.right-side p {
  margin: 0;
    text-shadow: 0px 0px 5px rgba(0,0,0,0.6);
    font: 16px/30px 'OpenSans SemiBold';
    color: #ffffff;
}
.about-page .block {
  background: url('images/about-block-bg.jpg') no-repeat 0 0;
  background-size: cover;
}
.block .block-bg-color {
  width: 50%;
  height: 100%;
  position:absolute;
  right: 0;
  top: 0;
  background-color: rgba(81,185,73,0.83);
}
@media (max-width: 1345px) {
  .inner-content .description {
    width: 50%;
  }
  .banner, .banner-wrapper {
	  width: 100%;
  }
}
@media (max-width: 915px) {
  .video-images,
  .inner-content .description {
    float: none;
  }
  .video-images {
    width: 100%;
    margin: 0 auto 20px;
  }
  .video-images .video {
    height: 330px;
  }
  .inner-content .description {
    width: 100%;
  }
}
@media (max-width: 870px) {
  .block .block-bg-color {
    width: 100%;
  }
  .right-side {
    width: 100%;
    float: none;
    padding-left: 10px;
  }
}
@media (max-width: 660px){
  .right-side {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .right-side p {
    line-height: 30px;
    font-size: 18px;
  }
}
@media (max-width: 580px){
  .item-list li {
    display: block;
    margin-left: 0;
    margin-right: 0;
  }
}
/* GET INVOLVED PAGE
--------------------------------------------------------------------------*/
.get-involved-page .banner {
  background: url('images/about-banner-bg.jpg') no-repeat left top;
  background-size: cover;
}
.get-involved-page .block {
  background: url('images/get-involved-block-bg.jpg') no-repeat 0 0;
  background-size: cover;
}
/* WAY TO GIVE PAGE
--------------------------------------------------------------------------*/
.way-to-give-page .banner {
  background: url('images/way-to-give-banner-bg.jpg') no-repeat left top;
  background-size: cover;
}
.way-to-give-page .block {
  background: url('images/way-to-give-block-bg.jpg') no-repeat 0 0;
  background-size: cover;
}
/* SERVICES PAGE
--------------------------------------------------------------------------*/
.services-page  .banner {
  background: url('images/services-banner-bg.jpg') no-repeat left top;
  background-size: cover;
}
.services-page .item-list li {
  min-width: 203px;
  margin-left: 40px;
  margin-right: 40px;
}
.services-page .block {
  background: url('images/services-block-bg.jpg') no-repeat left top;
  background-size: cover;
}
@media (max-width: 580px){
  .services-page .item-list li {
    min-width: auto;
    display: block;
    margin-left: 0;
    margin-right: 0;
  }
}

/* NEWS AND EVENTS PAGE
--------------------------------------------------------------------------
.news-events-page .banner {
  background: url('images/news-events-banner-bg.jpg') no-repeat left top;
  background-size: cover;
}
.news-events-page .block {
  background:url('images/news-events-block-bg.jpg') no-repeat left top;
  background-size: cover;
}*/
/* CONTACT PAGE
--------------------------------------------------------------------------
.contact-page .banner {
  background: url('images/contact-banner-bg.jpg') no-repeat left top;
  background-size: cover;
}
.contact-page .block {
  background:url('images/contact-block-bg.jpg') no-repeat left top;
  background-size: cover;
}*/
.description .address {
  font-size: 18px;
  font-family: 'OpenSans Regular';
}
.description .address span {
  display: block;
}
.description .address strong {
  font-weight: normal;
  font-family: 'OpenSans SemiBold';
}
#survey_1162 tbody {
  background: none;
}
#survey_1162 textarea, #survey_1162 select, #survey_1162 input[type="text"], #contact-form .form-control {
  background-color: #eae5e1;
  border: none;
  box-shadow: 3px 5px 7px -3px rgba(0, 0, 0, 0.3) inset;
  color: #555;
  font: 17px/42px "OpenSans Regular";
  height: 37px;
  margin-bottom: 22px;
  padding: 0 9px;
  width: 100%;
}
#survey_1162 select {
  width: 100%;
}
/*05-10-2016 start*/
#survey_1162 textarea {
  margin: 4px 0 0;
  min-height: 111px;
  resize: vertical;
  width: 100%;
}
/*05-10-2016 end*/
#survey_1162 .Explicit,
#survey_1162 td p,
#survey_1162 td label {
  margin: 0;
  color: #555;
}
#survey_1162 .Explicit {
  display: block;
}
#survey_1162 .req {
  display: none;
}
#survey_1162 td label,
#survey_1162 td p label {
  font-size: 17px;
  font-family: 'OpenSans Regular';
}
#survey_1162 .Button {
  background-color: #00456a;
  border: 0 none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: "OpenSans Bold";
  font-size: 23px;
  font-weight: normal;
  line-height: 1.42857;
  margin-bottom: 0;
  padding: 6px 22px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  vertical-align: middle;
}#contact-form .form-control:-webkit-input-placeholder {
  color: #2e2624;
}
#contact-form .form-control:-moz-placeholder{
  color: #2e2624;
}
#contact-form .form-control:-moz-placeholder{
  color: #2e2624;
}
#contact-form .form-control:-ms-input-placeholder {
  color: #2e2624;
}

/* FOOTER
--------------------------------------------------------------------------*/
.footer .container {
  padding-top: 25px;
  padding-bottom: 30px;
  text-align: center;
}
.footer .col-3.image-box {
  min-width: 260px;
  padding-top: 14px;
  padding-left: 0;
}
.footer .footer-logo,
.footer .address {
  display: inline-block;
  vertical-align: top;
}
.footer .col-6 {
  float: right;
  padding-right: 0;
}
.footer .address {
  color: #8c8c8c;
  font-style: normal;
  padding-top: 22px;
  text-align: left;
  font: 12px/1.3 'OpenSans Bold';
}
.footer .address span {
  display: block;
}
.footer-logo {
  width: 100%;
  max-width: 220px;
  margin-right: 5px;
}
.footer-logo a,
.footer-logo img {
  width: 100%;
  display: block;
}
.footer p {
  color: #333333;
  margin-top: 25px;
  font: 13px/1 'OpenSans SemiBold';
  float:left;
}
@media (max-width: 1028px){
  .footer .col-6 {
    width: 458px;
  }
  .footer-logo {
    margin-right: 10px;
  }
}
@media (max-width: 760px){
  .footer .col-3.image-box,
  .footer .col-6 {
    float: none;
  }
  .footer .address {
    font-size: 13px;
    text-align: center;
  }
  .footer .col-3.image-box {
    margin: 0 auto 20px;
  }
  .footer .col-6 {
    width: 100%;
  }
}
/* FORMS
--------------------------------------------------------------------------*/
.inline-form {
  width: 48%;
  display: inline-block;
  vertical-align: top;
}
.inline-form:first-child {
  margin-right: 14px;
}


/* E-CARDS changes
--------------------------------------------------------------------------*/
.appArea .ecard_form_table p.headline, span.headline {
  font-size: 22px !important;
  font-family: 'OpenSans Bold';
  line-height: 1.5;
}
.appArea .ecard_form_table p.subheading {
  font-size: 18px !important;
  font-family: 'OpenSans Semibold';
  line-height: 1.5;
}
.appArea .ecard_form_table p {
  font-size: 16px;
  line-height: 1.5;
  font-family: 'OpenSans Regular';
}
.appArea .ecard_form_table p.hint {
  font-size: 16px;
  line-height: 1.5;
  font-family: 'OpenSans Regular';
}
.ecard_form_table {
  font-family: 'OpenSans Regular';
}
.appArea .ecard_form_table .Explicit {
  font-family: 'OpenSans Semibold';
  font-size: 16px !important;
}
.appArea .ecard_form_table input {
  font-family: 'OpenSans Regular';
}
.appArea .ecard_form_table .Button {
  font-family: 'OpenSans Bold';
}
/* E-CARDS changes ends
--------------------------------------------------------------------------*/

/* Donation Form Changes
--------------------------------------------------------------------------*/
#ProcessForm div.html-caption-container p {
  line-height: inherit;
}
#ProcessForm h2.section-header-container {
  font-size: 20px;
}
#ProcessForm .donation-level-container .donation-level-input-container form-input {
  padding: 5px 0;
}
#ProcessForm div.donation-level-input-container, div.generic-repeat-label-checkbox-container {
  padding: 5px 0;
}
#ProcessForm .donation-level-container .form-content {
  margin-bottom: 0;
  margin-right: 0;
  margin-top: 5px;
}
#ProcessForm #level_flexiblegift_type_Row .designated-giving-recurring-row {
  margin-bottom: 10px;
}
#ProcessForm #level_flexible_row div.donation-level-amount-container + div.donation-level-label-container {
  display: inline-block;
  margin-top: 0;
  margin-left: 0;
}
#ProcessForm #level_flexiblegift_type_Row .designated-giving-recurring-row > input {
  vertical-align: middle;
}
/* Donation Form Changes ends
--------------------------------------------------------------------------*/


/*--jund customWysiwygstyle.css----*/

/*--http://hlw.convio.net/site/Ecard---*/
tbody td, table tfoot td {
  vertical-align: top !important;
}
table.ecard_form_table label,
table.ecard_form_table p.Hint,
table.ecard_form_table td p{
  font-size: 18px;
}
table.ecard_form_table input[type='text'],
table.survey_form_table input[type='text'],
table.survey_form_table SELECT,
form.RSVPForm_class table input[type='text'],
form.RSVPForm_class SELECT,
form.RSVPForm_class input[type='text'] {
  display: block;
  width: 100%;
  height: 32px;
  padding: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: #666e70;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #cccccc;
  border-radius: 2px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
table.ecard_form_table input[type='submit'],
table.ecard_form_table input[type='reset'],
table.survey_form_table input[type='submit'],
table.survey_form_table input[type='reset'],
form.RSVPForm_class input[type='submit'],
form.RSVPForm_class input[type='reset'] {
  background-color: #00456a;
  border: 0 none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 18px;
  font-weight: normal;
  padding: 6px 20px 8px 29px;
  text-decoration: none;
  vertical-align: middle;
  text-align: center;
  margin: 0 auto;
	margin-bottom: 10px;
}
table.ecard_form_table p,
form.RSVPForm_class table p {
  margin: 0;
}
table.ecard_form_table input[type='reset']
{
  padding: 6px 20px !important;
}
table.ecard_form_table td,
table.survey_form_table td,
form.RSVPForm_class table td {
  border: none !important;
}
table.ecard_form_table {
  width: 100%;
  max-width: 1300px;
}
table.ecard_form_table td.NetscapeFix textarea {
  width: 50%;
  padding: 10px 12px;
  margin-bottom: 10px;
}
table.ecard_form_table tr:nth-child(n+3)p {
	margin:0;
}
/*26-10-2016 start*/
@media only screen and (min-width: 1201px) and (max-width: 1300px) {
	.info {
	  bottom: -94px;
	}
	.promo-text {
	  left: -28.5%;
	  top: 160px;
	}
}
@media only screen and (min-width: 993px) and (max-width: 1200px) {
	.promo-text {
	  top: 130px;
	}
	/*27-10-2016 start*/
	.our-services {
	  padding-top: 160px;
	}
	/*27-10-2016 end*/
	.home-banner {
	  border-bottom: 0;
	}
	.list-wrap.container {
	  margin: 100px 0 0;
	}
	/*27-10-2016 start*/
	.news_events .inner-content h1 {
	  font-size: 19px !important;
	  padding-bottom: 4px;
	}
	.news_events .inner-content p {
	  margin-bottom: 8px;
	}
	/*27-10-2016 end*/
}
@media only screen and (min-width: 767px) and (max-width: 992px) {
/*27-10-2016 start*/
.flex-direction-nav {
  bottom: 83% !important;
}
/*27-10-2016 end*/
.homepage .main ul.services-list li {
  box-shadow: 0 0 14px 7px rgba(0, 0, 0, 0.3);
  height: 128px;
  margin: 0 13px 60px;
  max-width: 157px;
}
.services-list img {
  margin: -52px auto 0;
  width: 100px;
}
.main .services-list h3 {
  font: 14px/1.2 "OpenSans Bold";
  padding: 8px;
}
.burger-menu {
  top: 34px;
}
/*10-11-2016 start*/
#search-box-button {
  right: 48px;
}
/*10-11-2016 end*/
/*27-10-2016 start*/
.news_events .inner-content h1 {
  font-size: 19px !important;
  padding-bottom: 4px;
}
.news_events .inner-content p {
  margin-bottom: 8px;
}
.info .container {
  padding: 0 10px;
}
/*27-10-2016 end*/
/*1-11-2016 start*/
.social_widgets_inner {
  float: left;
  width: 98.2%;
}
/*1-11-2016 end*/
}
/*26-10-2016 end*/
@media screen and (max-width: 768px){
  table.ecard_form_table tr table tr td,
  form.RSVPForm_class table tr table tr td {
    width: 50%;
    display: inline-block;
  }
  table.ecard_form_table tr table tr td:nth-child(1),
  form.RSVPForm_class table tr table tr td:nth-child(1) {
    display:inline-block !important;
  }
  table.ecard_form_table tr td, form.RSVPForm_class table tr td {
    width: 100%;
    display: block;
  }
  table.ecard_form_table td.NetscapeFix textarea {
    width: 100%;
  }
  table.ecard_form_table label.wrapable {
    display: inline;
  }
  table.ecard_form_table tr:nth-child(-n+7) td:nth-child(2) p:before, form.RSVPForm_class tr:nth-child(-n+3) td:nth-child(2) p:before{
    content: "*";
    color:#a80d16;
  }
  table.ecard_form_table tr:nth-last-child(2) td:nth-child(2) p:before {
    content: "*";
    color:#a80d16;
  }
  table.ecard_form_table p.Smaller:before,
  form.RSVPForm_class table p.Smaller:before {
    display: none;
  }
  table.ecard_form_table tr:nth-child(n+3) td:nth-child(1),
  form.RSVPForm_class tr:nth-child(n+2) td:nth-child(1) {
    display: none;
  }
  
  /*21-9-2016*/
  .header .right
  {
	  width:100%;
  }
  .search-box {
  max-width: inherit;
  text-align:center !important;
}.services-btn, .services-btn:link
{
	float:left;
}
.image-box.footer-left
{
	text-align:center;
	width:100% !important;
}
.footer-left img
{
	width:initial;
	display:inline-block;
}

.footer-middle {
  width: 100% !important;
	padding:20px 0 !important;
}
.footer-right {
  width: 100% !important;
}

.main-navigation li a
{
	background:url(images/dropdownarrow.png) no-repeat 220px center;
}
.main-navigation li a:last-child
{
	background:none;
}
/*14-10-2016 start*/
.promo-text {
  padding: 10px;
}
/*14-10-2016 end*/
  /*21-9-2016*/
  
}
table.ecard_form_table tr:nth-child(n+3) td:nth-child(1),
form.RSVPForm_class table tr:nth-child(n+2) td:nth-child(1) {
  color:#a80d16;
}
table.ecard_form_table p.Smaller {
  color: #000 !important;
}
/*--http://hlw.convio.net/site/Survey---*/
table.survey_form_for_contactpage, table.survey_form_table {
	width:100%;
}

table.survey_form_for_contactpage td, table.survey_form_table td {
  border: none;
  display: block;
  width: 100%;
  padding: 10px 0 0;
}
table.survey_form_table p.Smaller:before,
table.survey_form_for_contactpage p.Smaller:before {
  display: none;
}
table.survey_form_table tr td:nth-child(1) {
  display: none;
}
table.survey_form_table p,
table.survey_form_for_contactpage p {
  margin: 0;
}
table.survey_form_table label, table.survey_form_for_contactpage label, form.RSVPForm_class label {
  color: #999999;
  font-size: 18px;
  line-height: 22.4px;
  margin: 0;
  padding: 0 0 8px;
  white-space: normal;
  font: 18px/22.4px "OpenSans regular";
}
table.survey_form_for_contactpage tr:nth-last-child(n+2) td:nth-child(1) {
  display: none !important;
}
/*10-11-2016 start*/
/*3-11-2016 start*/
table.survey_form_for_contactpage label[for="cons_first_name"]::before, table.survey_form_for_contactpage label[for="cons_last_name"]::before, table.survey_form_for_contactpage label[for="cons_email"]::before, table.survey_form_table label[for="cons_first_name"]::before, table.survey_form_table label[for="cons_last_name"]::before, table.survey_form_table label[for="cons_email"]::before, table.survey_form_table label[for="1979_5763_3_7981"]::before {
  content: "*";
  color:#a80d16;
  font-family: "OpenSans Regular";
}
/*3-11-2016 end*/
/*10-11-2016 end*/
table.survey_form_for_contactpage select#cons_state{
  background-image: url('images/select-bg.png') !important;	
}
table.survey_form_table select#cons_state, 
table.survey_form_for_contactpage select#cons_state, 
table.survey_form_table span.combo-field-wrap select,
table.survey_form_table select, 
form.RSVPForm_class select{
  padding: 0px 10px;
  background-image: url('images/select.png');
  -moz-background-image: none;
  background-repeat: no-repeat;
  background-position: right center;
  -webkit-appearance: none;
}
/*17-11-2016 start*/
input#ACTION_SUBMIT_SURVEY_RESPONSE, input#reset, input#ACTION_CANCEL_RESPONSE_SUBMIT, input#rsvp_signup {
  background-color: #00456a;
  border: 0 none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 18px;
  font-weight: normal;
  margin: 0 auto 10px;
  padding: 6px 22px;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
}
/*17-11-2016 end*/
table.survey_form_table textarea, 
table.survey_form_for_contactpage textarea{
  width: 50%;
  height: auto;
}
table.survey_form_table SELECT option, 
table.survey_form_for_contactpage SELECT option,  
form.RSVPForm_class SELECT option{
  font-size: 16px;
}
@media (max-width: 640px) {
	.header .right {
		text-align:center;
  min-width: inherit;
  width: 100%;
}
	
.services-btn, .services-btn:link {
  float: left;
}
	.search-box {
  display: inline-block;
  width: 90%;
  max-width: inherit;
  float:none;
}

.image-box.footer-left {
  width: 100%;
  text-align: center;
  padding:0 0 20px;
}
.image-box img {
  display: inline-block;
  width: 100%;
}

.footer-middle {
  float: left;
  width: 100%;
}.footer-right {
	padding:22px 0 0 0;
  width: 100%;
}

.main-navigation li a
{
	background:url(images/dropdownarrow.png) no-repeat 220px center;
}
.main-navigation li a:last-child
{
	background:none;
}
.main-navigation .sub-menu
{
	width:100%;
	padding:0 0 0 20px;
}
.footer-left img
{
	width:initial;
}

/*7-10-2016----STARTS---*/
.sidebar {
  margin: 0 0 20px !important;
  width: 100% !important;
}

/*7-10-2016----ENDS---*/
.header .right {
  text-align:center;
  min-width: inherit;
  width: 100%;
}
.services-btn, .services-btn:link {
  float: left;
}
	.search-box {
  display: inline-block;
  width: 90%;
  max-width: inherit;
  float:none;
  text-align:center !important;
}

.image-box.footer-left {
  width: 100%;
  text-align: center;
  padding:0 0 20px;
}
.image-box img {
  display: inline-block;
  width: 100%;
}

.footer-middle {
  float: left;
  width: 100%;
}.footer-right {
	padding:22px 0 0 0;
  width: 100%;
}

.main-navigation li a
{
	background:url(images/dropdownarrow.png) no-repeat 220px center;
}
.main-navigation li a:last-child
{
	background:none;
}
.main-navigation .sub-menu
{
	width:100%;
	padding:0 0 0 20px;
}
.footer-left img
{
	width:initial;
}
.flex-direction-nav {
  bottom: 83% !important;
}
}
@media screen and (max-width: 767px){
   
   .mobile div.responsive {
	  width: inherit;
   }
   .mobile div.html-caption-container {
	  width: inherit; 
   }
  table.survey_form_table textarea,
  table.survey_form_for_contactpage textarea {
    width: 100%;
  }
  input#ACTION_SUBMIT_SURVEY_RESPONSE,
  input#reset, input#ACTION_CANCEL_RESPONSE_SUBMIT {
    padding: 6px 10px;
  }
  input#ACTION_SUBMIT_SURVEY_RESPONSE {
    white-space: normal !important;
    word-wrap: break-word;
  }
  /*27-09-2016 start*/
	table.survey_form_for_contactpage {
		width: 70%;
	}
	#Contact_form_1 {
		width: 100%;
	}
	#Contact_form_1 td {
	  padding: 0;
	}
	#Contact_form_2 {
	  width: 100%;
	  padding: 0;
	}
	#Contact_form_2 .wrapable {
	  width: 93%;
	}
	.survey_form_for_contactpage br {
	  display: none;
	}
	#cons_state_outer, #cons_zip_code_outer {
	  width: 47%;
	}
	.survey_form_for_contactpage table {
	  margin-bottom: 10px;
	}
	#Contact_form_2 textarea {
	  margin: 15px 0 0;
	}
	#Contact_form_3 {
	  margin: 10px 0 0;
	  width: 100% !important;
	}
	#Contact_form_3 td {
	  padding: 0;
	}
	#survey_1162 .Button {
	  font-size: 18px;
	}
	#Contact_form_3 {
	  margin: 100px 10px 20px -10px;
	}
	#survey_1162 .Button {
	  font-size: 20px;
	}
	/*27-09-2016 end*/
	/*12-10-2016 start*/
	/*26-10-2016 start*/
	.promo-text {
	  left: 5px;
	  top: 95px !important;
	  width: 77%;
	}
	/*12-10-2016 end*/
	.flexslider {
		min-height: 1px !important;
	}
	.our-services {
	  padding-top: 95px !important;
	}

	.burger-menu {
	  top:70px;
	}
	.homepage .main .block li {
	  text-align: left;
	}
	/*26-10-2016 end*/
}
/*26-10-2016 start*/
@media only screen and (min-width: 480px) and (max-width: 767px) {
	.homepage .main ul.services-list li {
	  margin: 50px 38px;
	}
	.services-list img {
	  margin: -58px auto 0;
	  width: 115px;
	}
	.burger-menu {
	  top:34px;
	}
	.block ul li {
	  padding-bottom: 40px;
	  padding-top: 20px;
	}
	/*27-10-2016 start*/
	/*10-11-2016 start*/
	#search-box-button {
	  margin: -61px 35px 0 0;
	}
	/*10-11-2016 end*/
	.promo-text {
	  top: 56px !important;
	  width: 75%;
	}
	.flex-direction-nav {
	  bottom: 88% !important;
	}
	.news_events .inner-content h1 {
	  font-size: 19px !important;
	  padding-bottom: 2px;
	}
	.news_events table td p {
	  margin-bottom: 6px;
	}
	.news_events .inner-content .container {
	  padding-top: 40px;
	}
	/*27-10-2016 end*/
}
/*26-10-2016 end*/
@media screen and (max-width: 480px){
  input#reset {
    /* margin-left: -10px; */
  }
  /*26-10-2016 start*/
  .promo-text {
    left: -30px;
	top: 52px !important;
	width: 90%;
   }
	/*26-10-2016 end*/
   /*27-09-2016 start*/
	table.survey_form_for_contactpage {
		width: 100%;
	}
	/*27-09-2016 end*/
	/*04-10-2016 start*/
	.search-box form {
		margin: auto;
		width: 100%;
	}
	.header .container {
		padding-bottom: 20px;
	}
	/*04-10-2016 end*/
	/*05-10-2016 start*/
	#ProcessForm h2.section-header-container {
	  font-size: 17px !important;
	  margin-bottom: 10px;
	}
	#level_flexible_row, #level_flexible_row_2 {
		width: 100% !important;
	}
	#ProcessForm .form-row {
	  margin: 0;
	}
	#level_flexiblegift_type_Row .form-content {
	  margin: 10px 0 0;
	}
	#level_flexibletotal_row {
		width: 100% !important;
	}
	#level_flexible_row .form-content label {
	  width: 92%;
	}
	.mobile div.responsive div.form-checkbox label, label.custom-element-checkbox-label {
		max-width: 258px;
	}
	#level_flexible_row {
	  margin: 0 0 12px;
	}
	#level_flexible_row_2 #billing_title_row .form-content label, #billing_first_name_row .form-content label, #billing_middle_name_row .form-content label, #billing_last_name_row .form-content label, #billing_addr_street1_row .form-content label, #billing_addr_street2_row .form-content label, #donor_email_address_row .form-content label, .custom-field-container.form-row .form-content .form-input-label-block {
	  text-align: left;
	  width: auto !important;
	}
	#billing_title_row .form-content select, #billing_first_name_row .form-content input, #billing_middle_name_row .form-content input, #billing_last_name_row .form-content input, #billing_addr_street1_row .form-content input, #billing_addr_street2_row .form-content input, #billing_addr_city_row .form-content input, #donor_email_address_row .form-content input, .custom-field-container.form-row .form-content input {
	  width: 100% !important;
	}
	#ProcessForm .form-content {
	  margin: 8px 0;
	}
	#billing_addr_city_row, #billing_addr_zip_row, #billing_addr_state_row, #billing_addr_country_row, #donor_employer_row .form-content input, #billing_addr_city_row .form-content input, #billing_addr_zip_row .form-content input {
	  width: 100% !important;
	}
	#billing_addr_city_row .form-content label, #billing_addr_zip_row .form-content label, #billing_addr_state_row .form-content label, #billing_addr_country_row .form-content label, #payment_typecc_number_row label, #payment_typecc_exp_date_row label, #payment_typecc_cvv_row label {
	  width: auto !important;
	}
	#billing_addr_state_row .form-content select, #billing_addr_country_row .form-content select {
	  max-width: 100%;
	  width: 100%;
	}
	#ProcessForm h2:nth-of-type(3) {
	  margin-top: 12px;
	}
	#payment_typecc_exp_date_row .date-input-container {
	  margin: 3px 0 0;
	  width: 100%;
	}
	#payment_typecc_exp_date_row .date-input-container fieldset select {
	  width: 49%;
	}
	.donation-form-container button#pstep_next {
	  font-size: 16px;
	  padding: 6px 22px;
	  width: auto;
	}
	#payment_typecc_number_row input, #payment_typecc_cvv_row input {
		width: 100% !important;
		margin-left: 0;
	}
	#payment_typecc_number_row .form-content, #payment_typecc_exp_date_row .form-content, #payment_typecc_cvv_row .form-content {
		width: 100%;
	}
	/*05-10-2016 end*/
	
	/*10-10-2016 STARTS*/
	.donation-form-container button#pstep_cancel {
	  font-size: 16px !important;
	  padding: 6px 35px !important;
	  width: auto;
	}
	/*10-10-2016 end*/
	/*12-10-2016 start*/
	/*14-10-2016 start*/
	/*14-10-2016 end*/
	.flex-direction-nav {
	  bottom: 91% !important;
	  width: 100% !important;
	}
	.flex-direction-nav a {
		height: 22px !important;
		width: 22px !important;
	}
	/*12-10-2016 end*/
	/*14-10-2016 start*/
	.flex-direction-nav {
		display: none;
	}
	/*14-10-2016 end*/
	/*26-10-2016 start*/
	.social_widgets {
	  padding: 0 !important;
	}
	.social_widgets_inner {
	  width: 100%;
	}
	.fb_iframe_widget {
	  width: 100%;
	}
	.fb_iframe_widget span, .fb_iframe_widget iframe {
	  width: 100% !important;
	}
	.our-services {
	  padding-top: 60px !important;
	}
	.main .list-wrap p {
	  padding-left: 2%;
	  padding-right: 2%;
	}
	.homepage .main ul.services-list li:first-child {
	  margin-top: -20px;
	}
	.homepage .main ul.services-list li {
	  margin: 18px 18px 60px;
	}
	.services-list img {
	  margin: -56px auto 0;
	  width: 115px;
	}
	.footer-left img {
	  width: 90% !important;
	}
	.burger-menu {
	  top: 20px;
	}
	.homepage .main .block li {
	  text-align: center;
	}
	.block ul li {
	  padding-bottom: 40px;
	  padding-top: 20px;
	}
	/*26-10-2016 end*/
	/*27-10-2016 start*/
	.home-banner h1 {
	  font-size: 15px !important;
	  line-height: 10px !important;
	  margin-bottom: 4px;
	}
	/*10-11-2016 start*/
	#search-box-button {
	  margin: -62px 37px 0 0;
	  outline: 0 none;
	}
	/*10-11-2016 end*/
	.news_events table table {
	  margin-right: 0;
	  width: 100%;
	}
	.news_events .inner-content .container > table td table td {
	  float: left;
	}
	.news_events .inner-content h1 {
	  font-size: 17px !important;
	}
	.news_events table td p {
	  margin: 0;
	}
	/*27-10-2016 end*/
}
table.survey_form_table input#cons_email_opt_in,
table.survey_form_table input#s_rememberMe {
  float: left;
  margin-right: 10px;
}
table.survey_form_for_contactpage input#s_rememberMe, 
table.survey_form_for_contactpage input#cons_email_opt_in {
  float: left;
  margin-right: 8px;
}
/*---http://hlw.convio.net/site/Calendar/---*/
form.RSVPForm_class label {
  color: #000 !important;
}
form.RSVPForm_class table table, 
table.ecard_form_table {
	margin-bottom:0px;
}
table.survey_form_for_contactpage input {
  margin-bottom: 0px !important;
}
table table tbody td {
  padding-left: 0;
}
/*--jund custom Wysiwygstyle.css----*/


/*-----jund custom style.css------*/
table.Backed tr td {
  height: 120px;
}

table p a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}
/*select#cal_top_select_cat {
    border: solid 1px #c4c4c4;
    padding: 5px;
    margin-top: 19px;
    margin-right: 15px;
    font-size: 15px;
}*/
select#cal_top_select_cat option {
  font-size: 16px;
}
table td fieldset#_date {
  background-color: #fff;
}
/*fieldset#_date select#_MONTH, fieldset#_date select#_DAY, fieldset#_date select#_YEAR {
    border: solid 1px #c4c4c4;
    padding: 5px;
    margin-right: 10px;
    font-size: 15px;
}*/
fieldset#_date select#_MONTH option, 
fieldset#_date select#_DAY option, 
fieldset#_date select#_YEAR option{
  font-size: 16px;
}
form#cal_form_3 table td {
  background-color: #fff !important;
}
table.Backed td:nth-child(1) a img {
  display: none;
}
table.Backed td:nth-child(1) {
  border: none !important;
}
table.Backed td {
  border: 1px solid #c4c4c4;
  padding: .5em;
}
table.Backed th.TableHeadings:nth-child(1) {
  background-color: #fff !important;
}
table.Backed div {
  background: #f0f0f0;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  box-shadow: 1px 1px 1px #666;
  border-radius: 4px;
  box-shadow: 1px 1px 1px #666;
  text-decoration: none;
  display: block;
  margin-top: .5em;
  padding: 2px;
}
table.Backed div a {
  text-decoration: none !important;
}
table.Backed div:hover {
  background: #d8d8d8;
  box-shadow: 1px 1px 1px #000;
  text-decoration: none;
  color:#333;
}
table.Backed {
  margin-left: -15px;
}
.appArea {
  width: 100%;
  margin: 0 !important;
  padding-left: 15px;
  padding-right: 15px;
}
p.centered {
  display: none;
}
select#cal_top_select_cat, fieldset#_date select#_MONTH, 
fieldset#_date select#_DAY, fieldset#_date select#_YEAR  {
  width: 90%;
  height: 47px;
  padding: 10px 12px;
  font-size: 16px;
  line-height: 1.6;
  color: #666e70;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #999999;
  border-radius: 2px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
/*-----jund custom style.css------*/


/*-----jund custom style-ch.css------*/
#google-cse-results iframe {
  height:1860px; 
  width:100%;
  background-color: transparent; 
}
.cse .gsc-control-cse, .gsc-control-cse {
    background-color: transparent;
}
.inner-content .container {
  padding-bottom: 10px;
}
div.appArea {
  margin: 0px;
}
.appArea {
  padding-left: 0px; 
  padding-right: 0px; 
}
tbody {
    /*  background: inherit; */
}
table thead th, table tbody th, table tfoot th, table thead td, table tbody td, table tfoot td {
  vertical-align: inherit;
  border-top: inherit inherit transparent;
}
.eventtitle {
  font-size: 1.5em !important;
  font-weight: bold;
  line-height: 1.2em;
  text-transform: uppercase;
  color: #cc33cc;
  margin-bottom: .5em;
}
.locationtitle {
  font-size: 1.25em !important;
  font-weight: bold;
  color: #004250;
}
div.donation-form-container.responsive {
  background: inherit; 
  border-radius: inherit; 
  border: inherit; 
}
div.responsive {
  font-family: inherit; 
  width: 100%; 
}
/*3-11-2016 start*/
.main h3.ObjTitle {
  color: #00456a;
  font-size: 24px;
  margin: 0 0 20px;
  padding: 0;
  text-transform: uppercase;
}
/*3-11-2016 end*/
div.donation-level-general-ask, div.html-caption-container {
  max-width: inherit;
  overflow: visible;
    
}
/*-----jund custom style-ch.css------*/

/* PRINT STYLES
---------------------------------------------------------------------------*/
@media print {
	* {
		background: transparent !important;
		color: #000 !important; /* Black prints faster: h5bp.com/s */
		box-shadow: none !important;
		text-shadow: none !important;
	}
	a,
	a:visited {
		text-decoration: underline;
	}
	a[href]:after {
		content: " (" attr(href) ")";
	}
	abbr[title]:after {
		content: " (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content: "";
	}
	pre,
	blockquote {
		border: 1px solid #999;
		page-break-inside: avoid;
	}
	thead {
		display: table-header-group; /* h5bp.com/t */
	}
	tr,
	img {
		page-break-inside: avoid;
	}
	img {
		max-width: 100% !important;
	}
	@page {
		margin: 0.5cm;
	}
	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}
	h2,
	h3 {
		page-break-after: avoid;
	}
}

.clearfix {
  border-top: 1px solid #999999;
  padding: 40px 0;
}

.image-box.footer-left {
  width: 24%;
  padding:18px 0 0;
  float:left;
}.footer-right {
  float: right;
  width: 23%;
  padding:18px 0 0;
}.footer-middle {
  float: left;
  width: 53%;
}
/*21-9-2016 STARTS*/
#ACTION_CANCEL_RESPONSE_SUBMIT {
  display: none !important;
}
@media (max-width: 360px) {
	.header .right {
		text-align:center;
  min-width: inherit;
  width: 100%;
}
.services-btn, .services-btn:link {
  float: none !important;
  display:inline-block;
}
	.search-box {
  display: inline-block;
  width: 100%;
  max-width: inherit;
  float:none;
}

.image-box.footer-left {
  width: 100%;
  text-align: center;
  padding:0 0 20px;
}
.image-box img {
  display: inline-block;
  width: 100%;
}

.footer-middle {
  float: left;
  width: 100%;
}.footer-right {
	padding:22px 0 0 0;
  width: 100%;
}

.main-navigation li a
{
	background:url(images/dropdownarrow.png) no-repeat 220px center;
}
.main-navigation li a:last-child
{
	background:none;
}
.main-navigation .sub-menu
{
	padding:0 0 0 20px;
}
.footer-left img
{
	width:initial;
}
.donation-form-container button#pstep_cancel {
  font-size: 16px !important;
  padding: 6px 35px !important;
  width: auto;
}
}

@media (max-width: 320px) {
	.header .right {
		text-align:center;
  min-width: inherit;
  width: 100% ;
}
.services-btn, .services-btn:link
{
	display:inline-block;
	float:none !important;
}
	
.services-btn, .services-btn:link {
  float: left;
}
	.search-box {
  display: inline-block;
  width: 100%;
  max-width: inherit;
  text-align:center !important;
  float:none;
}

.image-box.footer-left {
  width: 100%;
  text-align: center;
  padding:0 0 20px;
}
.image-box img {
  display: inline-block;
  width: 100%;
}

.footer-middle {
  float: left;
  width: 100%;
}.footer-right {
	padding:22px 0 0 0;
  width: 100%;
}

.main-navigation li a
{
	background:url(images/dropdownarrow.png) no-repeat 220px center;
}
.main-navigation li a:last-child
{
	background:none;
}
.main-navigation .sub-menu
{
	padding:0 0 0 20px;
}
/*26-10-2016 start*/
.promo-text {
  left: -11px;
  padding: 6px;
  top: 4px !important;
  width: 90%;
}
/*26-10-2016 end*/
}

@media (max-width: 800px) {
 .header .right {
  float: right;
  text-align: center;
  width:100%;
}
/*04-10-2016 start*/
  .search-box {
  max-width: inherit;
  text-align: center;
  padding:0;
}
/*04-10-2016 end*/
.services-btn, .services-btn:link
{
	display:none !important;
}
.image-box.footer-left
{
	text-align:center;
	width:100% !important;
}


/*27-09-2016 start*/


.footer-left img {
  display: inline-block;
  width: initial;
}


/*27-09-2016 end*/


.footer-middle {
  width: 100% !important;
	padding:20px 0 !important;
}

.footer-right {
  width: 100% !important;
}

.main-navigation li a
{
	background:url(images/dropdownarrow.png) no-repeat 220px center;
}

.main-navigation li a:last-child
{
	background:none;
}

}
  
@media screen and (max-width: 491px){
	input#reset {
    /* margin-left: -10px; */
	}
	/*14-10-2016 start*/
	/*14-10-2016 end*/
}


/*7-10-2016---STARTS---*/

#Contact_form_2 td:nth-child(7) {
  display: none;
}

#billing_addr_zip_row .field-required {
  margin:16px 0 0 0px;
}

#donor_email_address_row .field-required {
  margin:16px 0 0 0px;
}

.NetscapeFix select {
  border: 1px solid #999999;
  border-radius: 2px;
  color: #666e70;
  font-size: 16px;
  height: 47px;
  line-height: 1.6;
  margin: 4px 0 0;
  padding: 0 10px;
  width: 100%;
}
.sidebar {
  background: #eee;
  border: 1px solid #ddd;
  float: right;
  margin-left: 25px;
  padding: 15px;
  width: 250px;
}
.sidebar h3 {
  color: #0c4864;
  font-family: Arial,Helvetica,sans-serif;
  font-size: 1.15em;
  font-weight: bold;
  margin-bottom: 0.5em;
  margin-top:0;
}

.sidebar p {
  color: #0c4864;
  font-family: Arial,Helvetica,sans-serif;
  font-size: 0.85em;
  margin: 0 0 10px;
}
.sidebar p strong
{
    color: #4b4b4b;
}
/*14-10-2016 start*/
.sidebar a {
  display: inline-block;
  font-family: Arial,Helvetica,sans-serif;
  font-size: 14px;
  font-weight: lighter;
  padding: 12px 0 0 !important;
  text-decoration: underline;
}
.inner-content hr {
  margin: 30px 0 0;
  width: 100%;
}
/*14-10-2016 end*/
#survey_3120 table tbody #Contact_form_1 {
  width: 100%;
}

#survey_3120 table tbody #Contact_form_2 {
  float: left;
  padding: 0;
  width: 100%;
  margin: -20px 0;
}



/*7-10-2016---ENDS---*/


/*10-10-2016---STARTS---*/
#level_flexible_row_2 #billing_addr_zip_row {
  width: 55%;
}

#level_flexible_row_2 #billing_addr_country_row {
  width: 45%;
}

	
.donation-form-container button#pstep_cancel
{
  background-color: #00456a;
  background-image: none;
  border: 0 none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: "OpenSans Bold";
  font-size: 23px;
  font-weight: normal;
  line-height: 1.42857;
  margin-bottom: 0;
  padding: 6px 22px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  vertical-align: middle;
}
/*10-10-2016---ENDS---*/
/*12-10-2016 start*/
.donation_banner_default {
  background: url('images/contact-banner-bg.jpg') no-repeat left top;
  background-size: cover;
  display:none;
}
.donation-level-expanded-label {
  display: none !important;
}
/*12-10-2016 end*/
/*13-10-2016 start*/
.main h1, .main .headline {
  color: #00456a;
  font: 24px/1 "OpenSans Bold" !important;
  padding: 0 0 20px;
}
.main p {
  font: 14px "OpenSans Regular";
  margin-bottom: 14px;
}
.videoWrapper {
  margin: 0 0 20px;
}
.videoWrapper iframe {
  height: 555px;
  width: 100%;
}
/*13-10-2016 end*/
/*14-10-2016 start*/
.main ul, .main ol {
  list-style: disc;
  padding-left: 14px;
}
.main ul li, .main ol li {
  font: 14px "OpenSans Regular";
  margin-bottom: 10px;
}
.main h4, .main h3 {
  font: 15px "OpenSans bold";
  margin: 40px 0 10px;
}
.main h3 {
	margin: 14px 0;
}
.homepage .main ul, .homepage .main ol {
  list-style: none;
  padding: 0;
}
.homepage .main ul li, .homepage .main ol li {
	margin: inherit;
}
.about_affiliations p > strong:first-child {
  display: block;
  margin-top: 14px;
}
/*14-10-2016 end*/
/*16-11-2016 start*/
form div label {
  color: rgb(60, 60, 60);
}
/*16-11-2016 end*/
/*17-11-2016 start*/
.appArea form td input.ShoppingButtons, input.ShipToOther, .appArea form td input.ShoppingButtonPrimary {
  background: #00456a !important;
  border: medium none !important;
  color: #fff;
  cursor: pointer;
  font-family: "OpenSans Bold" !important;
  font-size: 17px !important;
  height: auto !important;
  padding: 6px 22px !important;
  width: auto !important;
}
.appArea form .ShoppingRow td:last-child {
  text-align: right;
}
.appArea form .ShoppingRow td input.ShoppingButtonPrimary {
  font-size: 14px !important;
  margin-top: 10px;
}
.appArea form .ShoppingPrice {
  font-family: "OpenSans Regular";
}
.ShoppingAdditionalGift {
  padding: 24px 0;
}
.ShoppingAdditionalGift input {
  margin-top: 17px;
  padding: 6px;
  width: 138px;
}
.ShoppingAdditionalGift input[type="submit"] {
  background: #00456a;
  border: none;
  font-family: "OpenSans Bold";
  font-size: 12px;
  padding: 6px 22px;
  width: auto;
}
.Button {
	font-family: "OpenSans Bold";
}
/*17-11-2016 end*/

/*09-dec-16 starts*/

.get_started {
    padding: 0 25px;
}

.get_started h3 {
    font-size: 22px;
}

.get_started p span {
    font-size: 14px !important;
}

/*09-dec-16 ends*/