/* This is the default Tooltipster theme (feel free to modify or duplicate and create multiple themes!): */
.tooltipster-default {
	border-radius: 5px;
	border: 2px solid #000;
	background: #4c4c4c;
	color: #fff;
}
/* Use this next selector to style things like font-size and line-height: */
.tooltipster-default .tooltipster-content {
	font-family: Arial, sans-serif;
	font-size: 14px;
	line-height: 16px;
	padding: 8px 10px;
	overflow: hidden;
}
/* This next selector defines the color of the border on the outside of the arrow. This will automatically match the color and size of the border set on the main tooltip styles. Set display: none; if you would like a border around the tooltip but no border around the arrow */
.tooltipster-default .tooltipster-arrow .tooltipster-arrow-border {
/* border-color: ... !important; */
}
/* If you're using the icon option, use this next selector to style them */
.tooltipster-icon {
	cursor: help;
	margin-left: 4px;
}
/* This is the base styling required to make all Tooltipsters work */
.tooltipster-base {
	padding: 0;
	font-size: 0;
	line-height: 0;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 9999999;
	pointer-events: none;
	width: auto;
	overflow: visible;
}
.tooltipster-base .tooltipster-content {
	overflow: hidden;
}
/* These next classes handle the styles for the little arrow attached to the tooltip. By default, the arrow will inherit the same colors and border as what is set on the main tooltip itself. */
.tooltipster-arrow {
	display: block;
	text-align: center;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.tooltipster-arrow span, .tooltipster-arrow-border {
	display: block;
	width: 0;
	height: 0;
	position: absolute;
}
.tooltipster-arrow-top span, .tooltipster-arrow-top-right span, .tooltipster-arrow-top-left span {
	border-left: 8px solid transparent !important;
	border-right: 8px solid transparent !important;
	border-top: 8px solid;
	bottom: -7px;
}
.tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-top-left .tooltipster-arrow-border {
	border-left: 9px solid transparent !important;
	border-right: 9px solid transparent !important;
	border-top: 9px solid;
	bottom: -7px;
}
.tooltipster-arrow-bottom span, .tooltipster-arrow-bottom-right span, .tooltipster-arrow-bottom-left span {
	border-left: 8px solid transparent !important;
	border-right: 8px solid transparent !important;
	border-bottom: 8px solid;
	top: -7px;
}
.tooltipster-arrow-bottom .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
	border-left: 9px solid transparent !important;
	border-right: 9px solid transparent !important;
	border-bottom: 9px solid;
	top: -7px;
}
.tooltipster-arrow-top span, .tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-bottom span, .tooltipster-arrow-bottom .tooltipster-arrow-border {
	left: 0;
	right: 0;
	margin: 0 auto;
}
.tooltipster-arrow-top-left span, .tooltipster-arrow-bottom-left span {
	left: 6px;
}
.tooltipster-arrow-top-left .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
	left: 5px;
}
.tooltipster-arrow-top-right span, .tooltipster-arrow-bottom-right span {
	right: 6px;
}
.tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border {
	right: 5px;
}
.tooltipster-arrow-left span, .tooltipster-arrow-left .tooltipster-arrow-border {
	border-top: 8px solid transparent !important;
	border-bottom: 8px solid transparent !important;
	border-left: 8px solid;
	top: 50%;
	margin-top: -7px;
	right: -7px;
}
.tooltipster-arrow-left .tooltipster-arrow-border {
	border-top: 9px solid transparent !important;
	border-bottom: 9px solid transparent !important;
	border-left: 9px solid;
	margin-top: -8px;
}
.tooltipster-arrow-right span, .tooltipster-arrow-right .tooltipster-arrow-border {
	border-top: 8px solid transparent !important;
	border-bottom: 8px solid transparent !important;
	border-right: 8px solid;
	top: 50%;
	margin-top: -7px;
	left: -7px;
}
.tooltipster-arrow-right .tooltipster-arrow-border {
	border-top: 9px solid transparent !important;
	border-bottom: 9px solid transparent !important;
	border-right: 9px solid;
	margin-top: -8px;
}
/* Some CSS magic for the awesome animations - feel free to make your own custom animations and reference it in your Tooltipster settings! */

.tooltipster-fade {
	opacity: 0;
	transition-property: opacity;
}
.tooltipster-fade-show {
	opacity: 1;
}
.tooltipster-grow {
	-webkit-transform: scale(0, 0);
	-ms-transform: scale(0, 0);
	transform: scale(0, 0);
	transition-property: -webkit-transform;
	transition-property: transform;
	-webkit-backface-visibility: hidden;
}
.tooltipster-grow-show {
	-webkit-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	transform: scale(1, 1);
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}
.tooltipster-swing {
	opacity: 0;
	-webkit-transform: rotateZ(4deg);
	-ms-transform: rotateZ(4deg);
	transform: rotateZ(4deg);
	transition-property: -webkit-transform;
	transition-property: transform;
}
.tooltipster-swing-show {
	opacity: 1;
	-webkit-transform: rotateZ(0deg);
	-ms-transform: rotateZ(0deg);
	transform: rotateZ(0deg);
	transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
}
.tooltipster-fall {
	top: 0;
	transition-property: top;
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}
.tooltipster-fall-show {
}
.tooltipster-fall.tooltipster-dying {
	transition-property: all;
	top: 0px !important;
	opacity: 0;
}
.tooltipster-slide {
	left: -40px;
	transition-property: left;
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}
.tooltipster-slide.tooltipster-slide-show {
}
.tooltipster-slide.tooltipster-dying {
	transition-property: all;
	left: 0px !important;
	opacity: 0;
}
/* CSS transition for when contenting is changing in a tooltip that is still open. The only properties that will NOT transition are: width, height, top, and left */
.tooltipster-content-changing {
	opacity: 0.5;
	-webkit-transform: scale(1.1, 1.1);
	-ms-transform: scale(1.1, 1.1);
	transform: scale(1.1, 1.1);
}
.tooltipster-tlycs {
	background: #fff;
	color: #1abc9c;
	border-radius: 3px;
	box-shadow: 0 1px 2px rgba(17,17,17,0.25);
	text-align: center;
}
@media only screen and (max-width: 450px) {
.tooltipster-tlycs {
	max-width: 82vw !important
}
}
.tooltipster-tlycs .tooltipster-content {
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
	padding: 12px 18px
}
.tooltipster-tlycs .tooltipster-arrow {
	box-shadow: 0 1px 2px rgba(17,17,17,0.25);
}
/*p {
	font-size: 1rem;
	text-align: justify;
	line-height: 1.6;
	-ms-word-break: break-all;
	word-break: break-all;
	word-break: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
-ms(step, base, ratio)-hyphens:auto;
	-ms-hyphens: auto;
	hyphens: auto;
	-webkit-hyphenate-before: 2;
	-webkit-hyphenate-after: 3;
	hyphenate-lines: 3;
	margin: .75em 0
}
strong {
	font-weight: 700
}
a {
	color: inherit;
	text-decoration: none;
	_transition: all .3s ease;
	color: inherit
}
a:visited {
	opacity: .8
}
small {
font-size:.875rem;
	color: #a3aab0
}
form .error {
	color: #e74c3c;
	border-color: #e74c3c;
}
form .error:focus {
	box-shadow: 0 0 5px rgba(231,76,60,0.7);
	border: 1px solid #c9645a;
	outline: none
}
form .success {
	color: #1abc9c;
	border-color: #1abc9c;
}
form .success:focus {
	box-shadow: 0 0 5px rgba(26,188,156,0.7);
	border: 1px solid #36a08b;
	outline: none
}
form .warning {
	color: #cea70c;
	border-color: #f1c40f;
}
form .warning:focus {
	box-shadow: 0 0 5px rgba(241,196,15,0.7);
	border: 1px solid #c9ac37;
	outline: none
}
input[type='email'], input[type='number'], input[type='password'], input[type='search'], input[type='tel'], input[type='text'], input[type='url'], input[type='color'], input[type='date'], input[type='datetime'], input[type='datetime-local'], input[type='month'], input[type='time'], input[type='week'], textarea {
	outline: none;
	padding: 8px;
	border: 2px solid #ecf0f1;
	border-radius: 3px;
	color: inherit
}
input[disabled] {
	cursor: not-allowed;
	background: #f5f5f5;
}
input[disabled]:hover, input[disabled]:focus {
	border-color: #bbb;
	box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
}
input[type="submit"] {
	font-size: 13px;
	padding: 10px 22px;
	border-radius: 3px;
	background-color: #0074d9;
	color: #fff;
	cursor: pointer;
	font-weight: bold;
	font-family: "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif;
	line-height: 1em;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	border: none;
}
input[type="submit"]:hover, input[type="submit"]:focus {
	background-color: #006ece;
	color: #f7f7f7
}
input[type="submit"]:active {
	background-color: #0068c3
}
blockquote {
	border-left: 4px solid #ecf0f1;
	margin: 1em 0;
	padding-left: 1.5em;
}
blockquote:before, blockquote:after {
	content: "";
	display: table
}
blockquote > p {
	font-weight: 300;
	font-size: 127%;
	font-size: 1.27rem;
	line-height: 127%;
	line-height: 1.27rem;
	margin-top: 0
}
blockquote > cite, blockquote > footer, blockquote > figcaption {
	color: #888;
}
blockquote > cite:before, blockquote > footer:before, blockquote > figcaption:before {
	content: '\2014'
}
ul {
	margin: 5px 15px;
margin:.32rem .94rem;
	padding-left: 1rem;
}
ul li {
	list-style-type: circle;
	padding: 2px 0;
padding:.125rem
}
ol {
	margin: 5px 18px;
margin:.32rem 1.125rem;
	padding-left: 1rem;
}
ol li {
	list-style-type: decimal;
	padding: 2px 0;
padding:.125rem
}
code {
	padding: 3px 4px;
	color: #df5c33;
	background-color: #f5f5f5;
	border: 1px solid #e1e1e8;
	border-radius: 3px;
	font-family: Menlo, Monaco, 'Bitstream Vera Sans Mono', Consolas, Courier, monospace
}
pre {
	display: block;
	padding: 7px;
	background-color: #f5f5f5;
	border: 1px solid #e1e1e8;
	border-radius: 3px;
	white-space: pre-wrap;
	word-break: break-all;
	font-family: Menlo, Monaco, 'Bitstream Vera Sans Mono', Consolas, Courier, monospace;
	line-height: 160%
}
hr {
	display: block;
	height: 1px;
	border: 0;
	padding: 0;
	border-top: 1px solid #a3aab0;
	margin: 20px auto
}
table {
	max-width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
	margin-bottom: 18px;
	border: 1px solid #ddd;
	border-collapse: separate;
*border-collapse:collapsed;
	border-radius: 4px;
}
table th, table td {
	padding: 8px;
	line-height: 18px;
	text-align: left;
	vertical-align: top;
	border-top: 1px solid #ddd
}
table th {
	font-weight: bold
}
table thead th {
	vertical-align: bottom
}
table thead:first-child tr th, table thead:first-child tr td {
	border-top: 0
}
table tbody + tbody {
	border-top: 2px solid #ddd
}
table th + th, table td + td, table th + td, table td + th {
	border-left: 1px solid #ddd
}
table thead:first-child tr:first-child th, table tbody:first-child tr:first-child th, table tbody:first-child tr:first-child td {
	border-top: 0
}
table thead:first-child tr:first-child th:first-child, table tbody:first-child tr:first-child td:first-child {
	border-radius: 4px 0 0 0;
}
table thead:first-child tr:first-child th:last-child, table tbody:first-child tr:first-child td:last-child {
	border-radius: 0 4px 0 0;
}
table thead:last-child tr:last-child th:first-child, table tbody:last-child tr:last-child td:first-child {
	border-radius: 0 0 0 4px;
}
table thead:last-child tr:last-child th:last-child, table tbody:last-child tr:last-child td:last-child {
	border-radius: 0 0 4px 0;
}
button {
	outline: none;
	border: none;
	background: none;
	_transition: color 200ms ease
}
.header-banner {
	height: 450px;
	background: url("/img/banner-bg.png") center;
	background-size: cover;
	position: relative;
	overflow: auto;
}
.header-banner h1 {
	text-shadow: 0 1px 2px rgba(17,17,17,0.25);
	position: absolute;
	bottom: 30px;
	left: 45px;
	color: #fff;
	font-weight: 600;
	font-size: 34px;
	font-size: 2.123669625rem
}
.how-much {
	overflow: auto;
	margin: 60px 0;
	padding: 15px 0;
	display: inline-block;
	width: 100%;
	margin: 45px 0;
}
@media only screen and (max-width: 450px) {
.how-much {
	margin: 30px 0
}
}
.how-much h1 {
	font-size: 55px;
	font-size: 3.43616965801725rem;
	text-align: center;
	color: #a3aab0;
	font-weight: 400;
	margin: 21px 0;
}
@media only screen and (max-width: 780px) {
.how-much h1 {
	font-size: 42px;
	font-size: 2.618034025156rem
}
}
@media only screen and (max-width: 450px) {
.how-much h1 {
	font-size: 34px;
	font-size: 2.123669625rem
}
}
.how-much h1 {
	margin-bottom: 50px
}
.how-much .how-much-pledge {
*zoom:1;
	float: left;
	text-align: inherit;
	width: 60.653999999999996%;
	margin-left: 0%;
	margin-right: 3%;
}
.how-much .how-much-pledge:before, .how-much .how-much-pledge:after {
	content: '';
	display: table
}
.how-much .how-much-pledge:last-child {
	margin-right: 0%
}
@media only screen and (max-width: 960px) {
.how-much .how-much-pledge {
	display: block;
	float: none;
	width: 100%;
	margin-left: auto;
	margin-right: auto
}
.how-much .how-much-pledge:first-child {
	margin-left: auto
}
.how-much .how-much-pledge:last-child {
	margin-right: auto
}
}
.how-much .why-pledge {
*zoom:1;
	float: left;
	text-align: inherit;
	width: 36.346000000000004%;
	margin-left: 0%;
	margin-right: 3%;
	margin-top: 16px;
}
.how-much .why-pledge:before, .how-much .why-pledge:after {
	content: '';
	display: table
}
.how-much .why-pledge:last-child {
	margin-right: 0%
}
@media only screen and (max-width: 960px) {
.how-much .why-pledge {
	display: block;
	float: none;
	width: 100%;
	margin-left: auto;
	margin-right: auto
}
.how-much .why-pledge:first-child {
	margin-left: auto
}
.how-much .why-pledge:last-child {
	margin-right: auto
}
}
.how-much*/ .why-pledge p {
	font-size: 16px;
	font-size: 1rem;
	font-weight: 400;
	color: #a3aab0
}
.why-pledge .video {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	margin: 16px auto 0 auto;
}
.why-pledge .video iframe {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #ecf0f1;
}
.income-calc {
	overflow: auto;
	padding: 15px 0;
	position: relative;
	background: url("/portals/0/pledge/img/calc-bg.jpg") center center no-repeat;
	background-size: cover;
	color: #fff;
	text-align: center;
	margin: 75px 0 0 0;
}
.calc-wrapper {
  max-width: 1140px;
  /*width: 85%;*/
  margin: 0 auto;
}
@media only screen and (max-width: 450px) {
.income-calc {
	margin: 30px 0
}
}
.income-calc h2 {
	font-size: 55px;
	font-size: 3.43616965801725rem;
	text-align: center;
	color: #a3aab0;
	font-weight: 400;
	margin: 21px 0;
	line-height:1.3;
}
@media only screen and (max-width: 780px) {
.income-calc h2 {
	font-size: 42px;
	font-size: 2.618034025156rem
}
}
@media only screen and (max-width: 450px) {
.income-calc h2 {
	font-size: 34px;
	font-size: 2.123669625rem
}
}
.income-calc::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
	background: rgba(0,0,0,0.05)
}
.income-calc > * {
	position: relative;
	z-index: 5
}
@media only screen and (max-width: 450px) {
.income-calc {
	margin-bottom: 0
}
}
.income-calc h2 {
	text-shadow: 0 1px 2px rgba(17,17,17,0.25);
	color: #fff
}
.income-calc h3 {
	font-size: 21px;
	font-size: 1.3125rem;
	font-weight: 500;
	font-style: italic;
	color: #fff;
}
@media only screen and (max-width: 450px) {
.income-calc h3 {
	font-size: 16px;
	font-size: 1rem
}
}
.income-calc .form {
	/*max-width: 960px;*/
	margin: 80px auto 0 auto;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-o-box-align: center;
-ms(step, base, ratio)-flex-align:center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
@media only screen and (max-width: 450px) {
.income-calc .form {
	-webkit-box-orient: horizontal;
	-moz-box-orient: horizontal;
	-o-box-orient: horizontal;
	-webkit-box-lines: multiple;
	-moz-box-lines: multiple;
	-o-box-lines: multiple;
	-webkit-flex-flow: row wrap;
-ms(step, base, ratio)-flex-flow:row wrap;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap
}
}
.income-calc .form input[type="text"] {
	font-size: 34px;
	font-size: 2.123669625rem;
	width: 100%;
	padding: 18px 24px;
	border: none;
	color: #7f8c8d;
	outline:none;
	border-radius: 3px;
	height: 82px;
    line-height: 82px;
	/*max-width:600px;*/
}
@media only screen and (max-width: 780px) {
.income-calc .form input[type="text"] {
	font-size: 20px;
	font-size: 1.3rem
}
}
@media only screen and (max-width: 450px) {
.income-calc .form input[type="text"] {
	font-size: 21px;
	font-size: 1.3125rem
}
}
.income-calc .form .currency {
	position: relative;
	overflow: hidden;
	margin-left: 16px;
	font-weight: 600;
	width: 300px;
}
.income-calc .form .currency select {
	border-radius: 3px;
	margin-right: 15px;
	background: #fff;
	color: #a3aab0;
	border: none;
	outline: none;
	display: inline-block;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	padding:0 30px 0 15px;
	height:82px;
	line-height:82px;
	overflow:hidden;
	width:120%;
	max-width:350px;
}
.income-calc .form .currency::after {
	content: '< >';
	position: absolute;
	top: 47%;
	right: 0px;
	bottom: 0;
	-webkit-transform: translateY(-50%) rotate(90deg);
-ms(step, base, ratio)-transform:translateY(-50%) rotate(90deg);
	-ms-transform: translateY(-50%) rotate(90deg);
	transform: translateY(-50%) rotate(90deg);
	width: 15px;
	height: 15px;
	font-weight: 900;
	font-size: 10px;
	color: #a3aab0;
	padding: 0
}
@media only screen and (max-width: 450px) {
.income-calc .form .currency {
	width: 100%;
	margin: 21px 0 0 0
}
}
/*@media only screen and (max-width: 780px) {
.income-calc .form .currency select {
	font-size: 14px;
font-size:.875rem;
	padding: 26px 40px 26px 20px
}
}*/
@media only screen and (max-width: 450px) {
.income-calc .form .currency select {
	width: 100%;
}
}
.income-calc .suggestion {
	opacity: 0;
	margin: 90px 0 120px 0;
}
.income-calc .suggestion span {
	text-shadow: 0 1px 2px rgba(17,17,17,0.25);
	font-weight: 700;
	color: #fff;
	font-size: 68px;
    line-height: 1;
}
.take-pledge {
	overflow: hidden;
	margin: 60px 0;
	padding: 15px 0;
	background: #1abc9c;
	color: #fff;
	padding-bottom: 90px;
	margin: 0 !important;
}
@media only screen and (max-width: 450px) {
.take-pledge {
	margin: 30px 0
}
}
@media only screen and (max-width: 780px) {
.take-pledge h2 {
	font-size: 42px;
	font-size: 2.618034025156rem
}
}
@media only screen and (max-width: 450px) {
.take-pledge h2 {
	font-size: 34px;
	font-size: 2.123669625rem
}
}
@media only screen and (max-width: 450px) {
.take-pledge {
	padding-bottom: 60px
}
}
.take-pledge h2 {
	color: #fff !important;
	font-size: 68px;
	font-size: 4.236068065859262rem !important;
	text-align: center;
	font-weight: 400 !important;
	margin: 21px 0;
}
@media only screen and (max-width: 780px) {
.take-pledge h2 {
	font-size: 55px;
	font-size: 3.43616965801725rem
}
}
@media only screen and (max-width: 450px) {
.take-pledge h2 {
	font-size: 42px;
	font-size: 2.618034025156rem
}
}
.take-pledge .form {
	max-width: 1170px;
	margin: 40px auto;
	/*overflow: hidden;*/
}
.take-pledge .form .namerow input, .take-pledge .form .emailrow input {
	padding: 16px 21px !important;
	border: 0 !important;
	color: #7f8c8d !important;
	font-size: 16px !important;
	font-size: 1rem !important;
	-webkit-box-shadow: none !important;
    box-shadow: none !important;
}
.take-pledge .form .pledge {
	display: block;
	font-size: 21px;
	font-size: 1.3125rem;
	font-weight: 600;
	text-align:justify;
}
@media only screen and (max-width: 767px) {
.take-pledge .form .pledge, .take-pledge .namerow, .take-pledge .emailrow {
	margin:0 auto;
	width:80%;
}
}
@media only screen and (max-width: 450px) {
.take-pledge .form .pledge {
	font-size: 16px;
	font-size: 1rem;
}
}
.form-group-PledgePercentage {
    max-width: 85px;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
}
.take-pledge .form .pledge input[type="text"] {
	background: rgba(255,255,255,0.25);
    color: #fff !important;
    border: none !important;
    width: 70px;
    padding: 0px 10px !important;
    display: inline !important;
    border-radius: 3px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    font-size: 1.3125rem;
    line-height: 28px;
    position: relative;
    bottom: 3px;
}
.take-pledge .form .name {
	
}
.take-pledge .form input.name {
    *zoom:1;
	float: left;
	text-align: inherit;
	border-radius:3px;
	background:#fff;
	margin: 40px 0 12px 0;
	line-height: 22px;
    height: auto;
}
/*.take-pledge .form input.name input:before, .take-pledge .form .name input:after {
	content: '';
	display: table
}
.take-pledge .form .name input:last-child {
	margin-right: 0%
}*/
.take-pledge .form input.email {
	*zoom:1;
	float: left;
	text-align: inherit;
	border-radius:3px;
	background:#fff;
	width: 100%;
	margin: 0 0 12px;
	line-height: 22px;
    height: auto;
}
.take-pledge .form button.PledgeSubmit {
	background: rgba(255,255,255,0.85);
	color: #1abc9c !important;
	display: block;
	margin: 16px auto;
	width: 300px;
	padding: 21px;
	transition: background 200ms ease;
	cursor: pointer;
	text-transform:none;
	font-size:16px;
	font-size:1rem;
    font-weight: bold;
    font-family: "Helvetica Neue",HelveticaNeue,Helvetica,Arial,sans-serif;
	line-height: 1em;
	text-align: center;
	text-decoration: none;
	-webkit-box-shadow: none;
    box-shadow: none;
}
.take-pledge .form button.PledgeSubmit:hover {
	background: #fff
}
.take-pledge .form .notifications {
	display: block;
	font-weight: 700;
	text-align: center;
	margin: 16px auto;
}
.take-pledge .form .notifications input {
	margin-right: 12px
}
.thankyou {
	overflow: hidden;
	margin: 60px 0;
	padding: 15px 0;
	text-align: center;
}
@media only screen and (max-width: 450px) {
.thankyou {
	margin: 30px 0
}
}
.thankyou h1 {
  font-size: 7rem;
  text-align: center;
  color: #2980b9;
  font-weight: 700;
  margin: 21px 0;
}
@media only screen and (max-width: 780px) {
.thankyou h1 {
	font-size: 42px;
	font-size: 2.618034025156rem
}
}
@media only screen and (max-width: 450px) {
.thankyou h1 {
	font-size: 34px;
	font-size: 2.123669625rem
}
}
.thankyou h2 {
	font-size: 68px;
	font-size: 4.236068065859262rem;
}
@media only screen and (max-width: 450px) {
.thankyou h2 {
	font-size: 42px;
	font-size: 2.618034025156rem
}
}
.thankyou p {
	font-size: 21px;
	font-size: 1.3125rem;
	text-align: center;
	color: #7f8c8d;
}
.thankyou p .count {
	color: #e74c3c;
	font-weight: 700;
	font-size: 26px;
	font-size: 1.618034rem
}
.thankyou .donate-link {
	font-weight: 600 !important;
	cursor: pointer;
	border-radius: 3px;
	transition: background 200ms ease;
	display: inline-block;
	background: #1abc9c;
	color: #fff !important;
	font-size: 21px;
	font-size: 1.3125rem;
	padding: 18px 24px;
	margin-top: 50px;
	text-decoration:none !important;
	text-shadow:none !important;
}
.thankyou .donate-link:hover {
	background-color: #16a085;
	text-decoration:none;
}
.thankyou .social {
	margin-top: 120px;
}
.thankyou .social h2 {
	font-weight: 500;
	color: #a3aab0;
	font-size: 42px;
	font-size: 2.618034025156rem
}
.thankyou .social .social-link {
*zoom:1;
	float: left;
	text-align: inherit;
	width: 29.999999999999964%;
	margin-left: 0%;
	margin-right: 5%;
	margin-top: 2.5%;
	margin-bottom: 2.5%;
	text-align: center;
}
.thankyou .social .social-link:before, .thankyou .social .social-link:after {
	content: '';
	display: table
}
.thankyou .social .social-link:nth-child(3n) {
	margin-right: 0%;
	float: right
}
@media only screen and (max-width: 780px) {
.thankyou .social .social-link {
*zoom:1;
	float: left;
	text-align: inherit;
	width: 47.5%;
	margin-left: 0%;
	margin-right: 5%
}
.thankyou .social .social-link:before, .thankyou .social .social-link:after {
	content: '';
	display: table
}
.thankyou .social .social-link:nth-child(3n) {
	margin-right: 5%;
	float: left
}
.thankyou .social .social-link:nth-child(2n) {
	margin-right: 0%;
	float: right
}
}
@media only screen and (max-width: 450px) {
.thankyou .social .social-link {
	display: block;
	float: none;
	width: 100%;
	margin-left: auto;
	margin-right: auto
}
.thankyou .social .social-link:first-child {
	margin-left: auto
}
.thankyou .social .social-link:last-child {
	margin-right: auto
}
}
.thankyou .social .social-link a {
	display: block;
	overflow: hidden;
}
.thankyou .social .social-link .icon {
	display: block;
	width: 110px;
height:;
	border-radius: 999px;
	margin: 0 auto
}
.thankyou .social .social-link .social-name {
	font-size: 14px;
font-size:.875rem;
	font-weight: 600;
	color: #7f8c8d;
	width: 100%;
	max-width: 250px;
	text-align: center;
	margin: 18px auto 0 auto
}
.thankyou .social a:hover {
  text-decoration: none;
}
.take-pledge .label-right {
  display: none;
}
.pledge .field-container {
	width:55px;
	display:inline;
	float:none;
	margin:0;
	padding:0;
}
.pledge span {
	display:inline;
}
.namerow .field-container, .emailrow .field-container {
  width: 100%;
  padding:0;
}
.notificationrow .checkbox {
  padding-top: 0 !important;
}
.notificationrow label {
  font-size: 1rem;
  font-weight: 700 !important;
}
.income-calc .tooltip > .tooltip-inner {
	background: #fff;
	color: #1abc9c;
	border-radius: 3px;
	box-shadow: 0 1px 2px rgba(17,17,17,0.25);
	text-align: center;
	width:100%;
	max-width:450px;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
	padding: 12px 24px;
}
.income-calc .tooltip.top .tooltip-arrow {
    border-top-color: #fff;
}
.pledge-main .bstrap3-material .alert-info {
  background-color: #fff;
  border-color: transparent;
  color: #999;
}

/*@media only screen and (min-width: 1200px) {
.span4.why-pledge {
  width: 465px;
}
}*/
@media (max-width: 979px) {
.how-much [class*="span"] {
  display: block;
  float: none;
  width: 100%;
  margin-left: 0;
  margin-top: 5px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.how-much [class*="offset"] {
	margin:0;
}
}