/* Corner Stack v.1.0.1 */


/* General styles for the modal */

.corner-modal {
	position: fixed;
	z-index: 9999;
  transform: translateZ(0px);
	right: 0px;
  bottom: 0px;
	max-width: 320px;
	/*max-height:100%;*/
	visibility: hidden;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
	margin:20px;
}

.corner-modal.corner-show{
	visibility: visible;
}

.corner-button {
	visibility: hidden;
	opacity: 0;
	z-index: 9998;
	transform: translateZ(0px);
	position: fixed;
	right:0px;
	bottom:0px;
	padding:10px 20px;
  margin: 20px;
	background: rgba(143,27,15,0.8);
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
  cursor:pointer;
}

.corner-button.corner-tl,
.corner-button.corner-tr {
	margin-top: -60px;
}

.corner-button.corner-bl,
.corner-button.corner-br {
	margin-bottom: -60px;
}

.corner-button.corner-show {
	visibility: visible;
	opacity: 1;
}

.corner-button.corner-tl.corner-show,
.corner-button.corner-tr.corner-show {
	margin-top: 20px;
}

.corner-button.corner-bl.corner-show,
.corner-button.corner-br.corner-show {
	margin-bottom: 20px;
}

.corner-close {
	position:absolute;
	top:10px;
	right:10px;
	cursor:pointer;
}

.corner-overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	visibility: hidden;
	top: 0;
	left: 0;
	z-index: 1000;
	opacity: 0;
	background: rgba(143,27,15,0.8);
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.corner-overlay.corner-show {
	opacity: 1;
	visibility: visible;
}

/* Content styles */
.corner-content {
	position: relative;
	margin: 0 auto;
  padding:30px 20px 20px 20px;
}

/*.corner-content > div {
	padding: 15px 40px 30px;
	margin: 0;
	font-weight: 300;
	font-size: 1.15em;
}*/

.corner-tl
{
	left: 0px;
  top: 0px;
  bottom: auto !important;
  right:auto !important;
}

.corner-tr
{
	left: auto !important;
  top: 0px;
  bottom: auto !important;
  right:0px;
}

.corner-br
{
	left: auto !important;
  top: auto !important;
  bottom: 0px;
  right:0px;
}

.corner-bl
{
	left: 0px;
  top: auto !important;
  bottom: 0px;
  right:auto !important;
}


/* Individual modal styles with animations/transitions */

/* Effect 1: Fade in and scale up */
.corner-effect-1 .corner-content {
	-webkit-transform: scale(0.7);
	-moz-transform: scale(0.7);
	-ms-transform: scale(0.7);
	transform: scale(0.7);
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.corner-show.corner-effect-1 .corner-content {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

/* Effect 2: Slide from the right */
.corner-effect-2 .corner-content {
	-webkit-transform: translateX(20%);
	-moz-transform: translateX(20%);
	-ms-transform: translateX(20%);
	transform: translateX(20%);
	opacity: 0;
	-webkit-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
	-moz-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
	transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}

.corner-show.corner-effect-2 .corner-content {
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
	opacity: 1;
}

/* Effect 3: Slide from the bottom */
.corner-effect-3 .corner-content {
	-webkit-transform: translateY(20%);
	-moz-transform: translateY(20%);
	-ms-transform: translateY(20%);
	transform: translateY(20%);
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.corner-show.corner-effect-3 .corner-content {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}

/* Effect 4: Newspaper */
.corner-effect-4 .corner-content {
	-webkit-transform: scale(0) rotate(720deg);
	-moz-transform: scale(0) rotate(720deg);
	-ms-transform: scale(0) rotate(720deg);
	transform: scale(0) rotate(720deg);
	opacity: 0;
}

.corner-show.corner-effect-4 ~ .corner-overlay,
.corner-effect-4 .corner-content {
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.corner-show.corner-effect-4 .corner-content {
	-webkit-transform: scale(1) rotate(0deg);
	-moz-transform: scale(1) rotate(0deg);
	-ms-transform: scale(1) rotate(0deg);
	transform: scale(1) rotate(0deg);
	opacity: 1;
}

/* Effect 5: fall */
.corner-effect-5.corner-modal {
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.corner-effect-5 .corner-content {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: translateZ(600px) rotateX(20deg); 
	-moz-transform: translateZ(600px) rotateX(20deg); 
	-ms-transform: translateZ(600px) rotateX(20deg); 
	transform: translateZ(600px) rotateX(20deg); 
	opacity: 0;
}

.corner-show.corner-effect-5 .corner-content {
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	-webkit-transform: translateZ(0px) rotateX(0deg);
	-moz-transform: translateZ(0px) rotateX(0deg);
	-ms-transform: translateZ(0px) rotateX(0deg);
	transform: translateZ(0px) rotateX(0deg); 
	opacity: 1;
}

/* Effect 6: side fall */
.corner-effect-6.corner-modal {
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.corner-effect-6 .corner-content {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: translate(30%) translateZ(600px) rotate(10deg); 
	-moz-transform: translate(30%) translateZ(600px) rotate(10deg);
	-ms-transform: translate(30%) translateZ(600px) rotate(10deg);
	transform: translate(30%) translateZ(600px) rotate(10deg); 
	opacity: 0;
}

.corner-show.corner-effect-6 .corner-content {
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	-webkit-transform: translate(0%) translateZ(0) rotate(0deg);
	-moz-transform: translate(0%) translateZ(0) rotate(0deg);
	-ms-transform: translate(0%) translateZ(0) rotate(0deg);
	transform: translate(0%) translateZ(0) rotate(0deg);
	opacity: 1;
}

/* Effect 7:  slide and stick to top */
.corner-effect-7{
	top: 0;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.corner-effect-7 .corner-content {
	-webkit-transform: translateY(-200%);
	-moz-transform: translateY(-200%);
	-ms-transform: translateY(-200%);
	transform: translateY(-200%);
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
	opacity: 0;
}

.corner-show.corner-effect-7 .corner-content {
	-webkit-transform: translateY(0%);
	-moz-transform: translateY(0%);
	-ms-transform: translateY(0%);
	transform: translateY(0%);
	border-radius: 0 0 3px 3px;
	opacity: 1;
}

/* Effect 8: 3D flip horizontal */
.corner-effect-8.corner-modal {
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.corner-effect-8 .corner-content {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: rotateY(-70deg);
	-moz-transform: rotateY(-70deg);
	-ms-transform: rotateY(-70deg);
	transform: rotateY(-70deg);
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	opacity: 0;
}

.corner-show.corner-effect-8 .corner-content {
	-webkit-transform: rotateY(0deg);
	-moz-transform: rotateY(0deg);
	-ms-transform: rotateY(0deg);
	transform: rotateY(0deg);
	opacity: 1;
}

/* Effect 9: 3D flip vertical */
.corner-effect-9.corner-modal {
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.corner-effect-9 .corner-content {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: rotateX(-70deg);
	-moz-transform: rotateX(-70deg);
	-ms-transform: rotateX(-70deg);
	transform: rotateX(-70deg);
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	opacity: 0;
}

.corner-show.corner-effect-9 .corner-content {
	-webkit-transform: rotateX(0deg);
	-moz-transform: rotateX(0deg);
	-ms-transform: rotateX(0deg);
	transform: rotateX(0deg);
	opacity: 1;
}

/* Effect 10: 3D sign */
.corner-effect-10.corner-modal {
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.corner-effect-10 .corner-content {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: rotateX(-60deg);
	-moz-transform: rotateX(-60deg);
	-ms-transform: rotateX(-60deg);
	transform: rotateX(-60deg);
	-webkit-transform-origin: 50% 0;
	-moz-transform-origin: 50% 0;
	transform-origin: 50% 0;
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.corner-show.corner-effect-10 .corner-content {
	-webkit-transform: rotateX(0deg);
	-moz-transform: rotateX(0deg);
	-ms-transform: rotateX(0deg);
	transform: rotateX(0deg);
	opacity: 1;
}

/* Effect 11: Super scaled */
.corner-effect-11 .corner-content {
	-webkit-transform: scale(2);
	-moz-transform: scale(2);
	-ms-transform: scale(2);
	transform: scale(2);
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.corner-show.corner-effect-11 .corner-content {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

/* Effect 12:  Just me */
.corner-effect-12 .corner-content {
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	transform: scale(0.8);
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.corner-show.corner-effect-12 ~ .corner-overlay {
	background: #e74c3c;
} 

.corner-effect-12 .corner-content h3,
.corner-effect-12 .corner-content {
	background: transparent;
}

.corner-show.corner-effect-12 .corner-content {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

/* Effect 13: 3D slit */
.corner-effect-13.corner-modal {
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.corner-effect-13 .corner-content {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: translateZ(-3000px) rotateY(90deg);
	-moz-transform: translateZ(-3000px) rotateY(90deg);
	-ms-transform: translateZ(-3000px) rotateY(90deg);
	transform: translateZ(-3000px) rotateY(90deg);
	opacity: 0;
}

.corner-show.corner-effect-13 .corner-content {
	-webkit-animation: slit .7s forwards ease-out;
	-moz-animation: slit .7s forwards ease-out;
	animation: slit .7s forwards ease-out;
}

@-webkit-keyframes slit {
	50% { -webkit-transform: translateZ(-250px) rotateY(89deg); opacity: .5; -webkit-animation-timing-function: ease-out;}
	100% { -webkit-transform: translateZ(0) rotateY(0deg); opacity: 1; }
}

@-moz-keyframes slit {
	50% { -moz-transform: translateZ(-250px) rotateY(89deg); opacity: .5; -moz-animation-timing-function: ease-out;}
	100% { -moz-transform: translateZ(0) rotateY(0deg); opacity: 1; }
}

@keyframes slit {
	50% { transform: translateZ(-250px) rotateY(89deg); opacity: 1; animation-timing-function: ease-in;}
	100% { transform: translateZ(0) rotateY(0deg); opacity: 1; }
}

/* Effect 14:  3D Rotate from bottom */
.corner-effect-14.corner-modal {
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.corner-effect-14 .corner-content {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: translateY(100%) rotateX(90deg);
	-moz-transform: translateY(100%) rotateX(90deg);
	-ms-transform: translateY(100%) rotateX(90deg);
	transform: translateY(100%) rotateX(90deg);
	-webkit-transform-origin: 0 100%;
	-moz-transform-origin: 0 100%;
	transform-origin: 0 100%;
	opacity: 0;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.corner-show.corner-effect-14 .corner-content {
	-webkit-transform: translateY(0%) rotateX(0deg);
	-moz-transform: translateY(0%) rotateX(0deg);
	-ms-transform: translateY(0%) rotateX(0deg);
	transform: translateY(0%) rotateX(0deg);
	opacity: 1;
}

/* Effect 15:  3D Rotate in from left */
.corner-effect-15.corner-modal {
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.corner-effect-15 .corner-content {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: translateZ(100px) translateX(-30%) rotateY(90deg);
	-moz-transform: translateZ(100px) translateX(-30%) rotateY(90deg);
	-ms-transform: translateZ(100px) translateX(-30%) rotateY(90deg);
	transform: translateZ(100px) translateX(-30%) rotateY(90deg);
	-webkit-transform-origin: 0 100%;
	-moz-transform-origin: 0 100%;
	transform-origin: 0 100%;
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.corner-show.corner-effect-15 .corner-content {
	-webkit-transform: translateZ(0px) translateX(0%) rotateY(0deg);
	-moz-transform: translateZ(0px) translateX(0%) rotateY(0deg);
	-ms-transform: translateZ(0px) translateX(0%) rotateY(0deg);
	transform: translateZ(0px) translateX(0%) rotateY(0deg);
	opacity: 1;
}

/* Effect 16:  Blur */
.corner-show.corner-effect-16 ~ .corner-overlay {
	background: rgba(180,46,32,0.5);
}

.corner-show.corner-effect-16 ~ .container {
	-webkit-filter: blur(3px);
	-moz-filter: blur(3px);
	filter: blur(3px);
}

.corner-effect-16 .corner-content {
	-webkit-transform: translateY(-5%);
	-moz-transform: translateY(-5%);
	-ms-transform: translateY(-5%);
	transform: translateY(-5%);
	opacity: 0;
}

.corner-show.corner-effect-16 ~ .container,
.corner-effect-16 .corner-content {
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.corner-show.corner-effect-16 .corner-content {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}

/* Effect 17:  Slide in from bottom with perspective on container */
.corner-show.corner-effect-17 ~ .container {
	height: 100%;
	overflow: hidden;
	-webkit-transition: -webkit-transform 0.3s;
	-moz-transition: -moz-transform 0.3s;
	transition: transform 0.3s;
}	

.corner-show.corner-effect-17 ~ .container,
.corner-show.corner-effect-17 ~ .corner-overlay  {
	-webkit-transform: rotateX(-2deg);
	-moz-transform: rotateX(-2deg);
	-ms-transform: rotateX(-2deg);
	transform: rotateX(-2deg);
	-webkit-transform-origin: 50% 0%;
	-moz-transform-origin: 50% 0%;
	transform-origin: 50% 0%;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.corner-effect-17 .corner-content {
	opacity: 0;
	-webkit-transform: translateY(200%);
	-moz-transform: translateY(200%);
	-ms-transform: translateY(200%);
	transform: translateY(200%);
}

.corner-show.corner-effect-17 .corner-content {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
	-webkit-transition: all 0.3s 0.2s;
	-moz-transition: all 0.3s 0.2s;
	transition: all 0.3s 0.2s;
}

/* Effect 18:  Slide from right with perspective on container */
.corner-show.corner-effect-18 ~ .container {
	height: 100%;
	overflow: hidden;
}

.corner-show.corner-effect-18 ~ .corner-overlay {
	background: rgba(143,27,15,0.8);
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.corner-show.corner-effect-18 ~ .container,
.corner-show.corner-effect-18 ~ .corner-overlay {
	-webkit-transform-style: preserve-3d;
	-webkit-transform-origin: 0% 50%;
	-webkit-animation: rotateRightSideFirst 0.5s forwards ease-in;
	-moz-transform-style: preserve-3d;
	-moz-transform-origin: 0% 50%;
	-moz-animation: rotateRightSideFirst 0.5s forwards ease-in;
	transform-style: preserve-3d;
	transform-origin: 0% 50%;
	animation: rotateRightSideFirst 0.5s forwards ease-in;
}

@-webkit-keyframes rotateRightSideFirst {
	50% { -webkit-transform: translateZ(-50px) rotateY(5deg); -webkit-animation-timing-function: ease-out; }
	100% { -webkit-transform: translateZ(-200px); }
}

@-moz-keyframes rotateRightSideFirst {
	50% { -moz-transform: translateZ(-50px) rotateY(5deg); -moz-animation-timing-function: ease-out; }
	100% { -moz-transform: translateZ(-200px); }
}

@keyframes rotateRightSideFirst {
	50% { transform: translateZ(-50px) rotateY(5deg); animation-timing-function: ease-out; }
	100% { transform: translateZ(-200px); }
}

.corner-effect-18 .corner-content {
	-webkit-transform: translateX(200%);
	-moz-transform: translateX(200%);
	-ms-transform: translateX(200%);
	transform: translateX(200%);
	opacity: 0;
}

.corner-show.corner-effect-18 .corner-content {
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
	opacity: 1;
	-webkit-transition: all 0.5s 0.1s;
	-moz-transition: all 0.5s 0.1s;
	transition: all 0.5s 0.1s;
}

/* Effect 19:  Slip in from the top with perspective on container */
.corner-show.corner-effect-19 ~ .container {
	height: 100%;
	overflow: hidden;
}

.corner-show.corner-effect-19 ~ .corner-overlay {
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.corner-show.corner-effect-19 ~ .container,
.corner-show.corner-effect-19 ~ .corner-overlay {
	-webkit-transform-style: preserve-3d;
	-webkit-transform-origin: 50% 100%;
	-webkit-animation: OpenTop 0.5s forwards ease-in;
	-moz-transform-style: preserve-3d;
	-moz-transform-origin: 50% 100%;
	-moz-animation: OpenTop 0.5s forwards ease-in;
	transform-style: preserve-3d;
	transform-origin: 50% 100%;
	animation: OpenTop 0.5s forwards ease-in;
}

@-webkit-keyframes OpenTop {
	50% { 
		-webkit-transform: rotateX(10deg); 
		-webkit-animation-timing-function: ease-out; 
	}
}

@-moz-keyframes OpenTop {
	50% { 
		-moz-transform: rotateX(10deg); 
		-moz-animation-timing-function: ease-out; 
	}
}

@keyframes OpenTop {
	50% { 
		transform: rotateX(10deg); 
		animation-timing-function: ease-out; 
	}
}

.corner-effect-19 .corner-content {
	-webkit-transform: translateY(-200%);
	-moz-transform: translateY(-200%);
	-ms-transform: translateY(-200%);
	transform: translateY(-200%);
	opacity: 0;
}

.corner-show.corner-effect-19 .corner-content {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
	-webkit-transition: all 0.5s 0.1s;
	-moz-transition: all 0.5s 0.1s;
	transition: all 0.5s 0.1s;
}



#edit-mode-icon {
	margin-top: 12px;
	margin-bottom: 12px;
}

#drawer-topper {
	text-align: center;	
}





html {
	position: relative;
}

/* Added to fix formatting issues is some themes and provide more consistent font sizes (v1.1) */
#stacks_in_777284 {
	font-size: 14px;
	line-height: 21px;
}

#drawer-opener {
	width: 40px;
	height: 40px;
	line-height: 40px;
	z-index: 99999;
	position: absolute;
	left: 50%;
	margin-left: -20px;
	cursor: pointer;
	text-align: center;
	font-size: 18px;
	font-style: normal;
	font-weight: normal;
	vertical-align: baseline;
	white-space: nowrap;
	color: #fff;
	text-decoration: none;
}


#drawer-opener {
	-webkit-border-bottom-right-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-bottomright: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-bottom-right-radius: 0px;
	border-bottom-left-radius: 0px;
	margin-top: 0px;
}












#stacks_in_777284 #drawer-opener {
	-webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.55), 0 1px 15px 0 rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.55), 0 1px 15px 0 rgba(0, 0, 0, 0.3);
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.55), 0 1px 15px 0 rgba(0, 0, 0, 0.3);
}







#stacks_in_777284 {
	z-index: 99998;
	overflow: visible;
	position: absolute;
}


#stacks_in_777284 {
	
	position: absolute;
	
	width: 100%;
}



#stacks_in_777284 .drawer-closer {
	width: 40px;
	height: 40px;
	position: absolute;
	display: block;
	cursor: pointer;
	background: url(../profits_files/drawer-images/close-x-trans-black.png) no-repeat;
	z-index: 99999;
}

#stacks_in_777284 .drawer-wrapper, #stacks_in_777284 .drawer-outer {
	display: block;
	width: 700px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

#stacks_in_777284 .drawer-padding {
	padding-top: 21px;
	padding-bottom: 21px;
}


#stacks_in_777284 .drawer-content {
	margin: 0 21px;
}


#stacks_in_777284 {
	top: 0;
	left: 0;
}

#stacks_in_777284 .drawer-wrapper {
	-webkit-border-bottom-right-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-bottomright: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-bottom-right-radius: 0px;
	border-bottom-left-radius: 0px;
}

#stacks_in_777284 .drawer-closer {
	bottom: 0;
	right: 0;
	margin-right: -15px;
	margin-bottom: -15px;
}







#stacks_in_777284 .drawer-wrapper, #stacks_in_777284 .drawer-outer {
	width: 100%;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;	
}
#stacks_in_777284 .drawer-closer {
	margin-right: 0px;
}




#stacks_in_777284 .drawer-wrapper {
	-webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.75), 0 1px 15px 0 rgba(0, 0, 0, 0.4);
	-moz-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.75), 0 1px 15px 0 rgba(0, 0, 0, 0.4);
	box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.75), 0 1px 15px 0 rgba(0, 0, 0, 0.4);
}



/* Styles Section */

















#stacks_in_777284 .drawer-wrapper {
	background-color: #FD940A;
}

#stacks_in_777284 .drawer-content * {
	color: #FFFFFF;
}

#drawer-opener {
	background-color: #FD940A;
	color: #FFFFFF;
}





/* Adds link color picker override to the Drawer stack (v1.1) */

#stacks_in_777284 .drawer-content a, #stacks_in_777284 .drawer-content a:visited {
	color: #FD940A;
}

#stacks_in_777284 .drawer-content a:hover, #stacks_in_777284 .drawer-content a:active {
	color: #BD6F07;
}





#stacks_in_777284 {
	background-color: rgba(253, 148, 10, 1.00);
}
/* Styled Stack v2.3.1 Copyright 2013 Joe Workman */
 #stacks_in_777285{behavior:url(/PIE/PIE.htc);       border-style:solid!important; }   
/* custom stuff */


#corner-stacks_in_777286 .corner-modal
{
  z-index: 100000000;
  max-width:320px;
  max-height:1000px;
}



#corner-stacks_in_777286 .corner-content {
	border:2px solid rgba(75, 75, 75, 1.00);
	border-radius:5px;
  background-color:rgba(55, 55, 55, 1.00);
  color: rgba(254, 252, 255, 1.00);
  overflow:auto;
}

#corner-stacks_in_777286 .corner-button
{
	font-family: Helvetica;
	font-size: 27px;
  font-weight: 400;
	border:1px solid rgba(254, 252, 255, 1.00);
	border-radius:8px;
  background-color:rgba(55, 55, 55, 1.00);
  color: rgba(255, 255, 255, 1.00);
  padding-top: 11px;
  padding-right: 15px;
  padding-bottom: 11px;
  padding-left: 15px;
  margin-top: 40px;
  margin-right: 10px;
  margin-bottom: 20px;
  margin-left: 20px;
  z-index: 999999808;
}


#corner-stacks_in_777286 .corner-button.corner-tl,
#corner-stacks_in_777286 .corner-button.corner-tr {
  margin-top: -60px;
}

#corner-stacks_in_777286 .corner-button.corner-bl,
#corner-stacks_in_777286 .corner-button.corner-br {
  margin-bottom: -60px;
}


#corner-stacks_in_777286 .corner-content {
	padding-top: 30px;
  padding-right: 3px;
  padding-bottom: 20px;
  padding-left: 3px;
  margin-top: 20px;
  margin-right: 2px;
  margin-bottom: 20px;
  margin-left: 2px;
}

#corner-stacks_in_777286 .corner-button.corner-tl.corner-show,
#corner-stacks_in_777286 .corner-button.corner-tr.corner-show {
  margin-top: 40px;
}

#corner-stacks_in_777286 .corner-button.corner-bl.corner-show,
#corner-stacks_in_777286 .corner-button.corner-br.corner-show {
  margin-bottom: 20px;
}


/* hide the text in button on smaller screens */
@media only screen and (max-width: 770px)  
{ 
  #corner-stacks_in_777286 .corner-modal
  {
    width:100%;
    max-width:100%;
    max-height:100%;
    margin:0;
  }

  #corner-stacks_in_777286 .corner-content
  {
    margin:4px;
  }

  #corner-stacks_in_777286 span.corner-label { 
    display:none; 
  }
}



/* Styled Stack v2.3.1 Copyright 2013 Joe Workman */
 #stacks_in_777287{behavior:url(/PIE/PIE.htc);       border-style:solid!important; }   
/* Styled Stack v2.3.1 Copyright 2013 Joe Workman */
 #stacks_in_777288{behavior:url(/PIE/PIE.htc);       border-style:solid!important; }   

#stacks_in_777288 {
	background-color: rgba(45, 45, 45, 1.00);
}
/* Styled Stack v2.3.1 Copyright 2013 Joe Workman */
 #stacks_in_777290{behavior:url(/PIE/PIE.htc);       border-style:solid!important; }   

#stacks_in_777290 {
	padding: 20px 15px 20px 15px;
}
/* 
 * Simple Text Pro
 * Author: Jeremy Hawes
 * Website: http://onelittledesigner.com/rapidweaver-stack/simple-text/
 * Support: http://forum.onelittledesigner.com
 * Verson: 2.0.3
 */

#simpleText_stacks_in_777291 {
	position: relative;
	color: #FEFCFF;
	text-shadow: ;
	-webkit-text-shadow: ;
	-moz-text-shadow: ;
	-o-text-shadow: ;
	-ms-text-shadow: ;
}
#simpleText_stacks_in_777291.fontSizeInheritOn {
	font-size: inherit;
}
#simpleText_stacks_in_777291.fontSizeInheritOff {
	font-size: 26px;
	line-height: 26px;
}
#simpleText_stacks_in_777291.letterSpacingOn {
	letter-spacing: 0px;
}
#simpleText_stacks_in_777291.lineHeightOn {
	line-height: 45px;
}
#simpleText_stacks_in_777291.rotateOn .insideText {
	-webkit-transform:rotate(270deg);
	-moz-transform:rotate(270deg);
	-o-transform:rotate(270deg);
	-ms-transform:rotate(270deg);
	display: inline-block;
}
#simpleText_stacks_in_777291.inheritOff a, #simpleText_stacks_in_777291.inheritOff a:link {
	color: #FEFCFF;
	text-decoration: inherit;
	font-style: inherit;
	font-weight: normal;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;	
}
#simpleText_stacks_in_777291.inheritOff a:visited {
	color: #FEFCFF;
}
#simpleText_stacks_in_777291.inheritOff a:hover {
	color: #FD940A;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;
}
#simpleText_stacks_in_777291.inheritOff a:active {
	color: #FEFCFF;
}
#simpleText_stacks_in_777291.inheritOff a:focus {
	color: #FEFCFF;
	outline: none !important; /*For browsers that add an outline by default*/
} 
#simpleText_stacks_in_777291.optJustify {
	text-align: justify;
}

/* iPad Landscape */
@media (max-width : 1024px) {
	#simpleText_stacks_in_777291.reFontSizeOn {
		font-size: px;
		line-height: px;
	}
}
/* iPad Portrait */
@media (max-width : 768px) {
	#simpleText_stacks_in_777291.reFontSizeOn {
		font-size: 18px;
		line-height: 18px;
	}
}
/* iPhone Landscape */
@media (max-width : 480px) {
	#simpleText_stacks_in_777291.reFontSizeOn {
		font-size: 18px;
		line-height: 18px;
	}
}
/* iPhone Portrait */
@media (max-width : 320px) {
	#simpleText_stacks_in_777291.reFontSizeOn {
		font-size: 18px;
		line-height: 18px;
	}
}

/* =====================
 * PRO FEATURES
 ======================= */
#simpleText_stacks_in_777291 .fontFamilyOff,
#simpleText_stacks_in_777291 .fontFamilyOff *,
#simpleText_stacks_in_777291 .fontFamilyOff a {
	font-family: Arial;
}

#stacks_in_777291 {
	padding: 10px 0px 0px 0px;
}

#stacks_in_777292 {
	display:inline-block; width:100%; line-height: 1.510000em;
}
/* Styled Stack v2.3.1 Copyright 2013 Joe Workman */
 #stacks_in_777294{behavior:url(/PIE/PIE.htc);       border-style:solid!important; }   

#stacks_in_777294 {
	background-color: rgba(45, 45, 45, 1.00);
}
/* 
 * Simple Text Pro
 * Author: Jeremy Hawes
 * Website: http://onelittledesigner.com/rapidweaver-stack/simple-text/
 * Support: http://forum.onelittledesigner.com
 * Verson: 2.0.3
 */

#simpleText_stacks_in_777295 {
	position: relative;
	color: #FEFCFF;
	text-shadow: ;
	-webkit-text-shadow: ;
	-moz-text-shadow: ;
	-o-text-shadow: ;
	-ms-text-shadow: ;
}
#simpleText_stacks_in_777295.fontSizeInheritOn {
	font-size: inherit;
}
#simpleText_stacks_in_777295.fontSizeInheritOff {
	font-size: 26px;
	line-height: 26px;
}
#simpleText_stacks_in_777295.letterSpacingOn {
	letter-spacing: 0px;
}
#simpleText_stacks_in_777295.lineHeightOn {
	line-height: 45px;
}
#simpleText_stacks_in_777295.rotateOn .insideText {
	-webkit-transform:rotate(270deg);
	-moz-transform:rotate(270deg);
	-o-transform:rotate(270deg);
	-ms-transform:rotate(270deg);
	display: inline-block;
}
#simpleText_stacks_in_777295.inheritOff a, #simpleText_stacks_in_777295.inheritOff a:link {
	color: #FEFCFF;
	text-decoration: inherit;
	font-style: inherit;
	font-weight: normal;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;	
}
#simpleText_stacks_in_777295.inheritOff a:visited {
	color: #FEFCFF;
}
#simpleText_stacks_in_777295.inheritOff a:hover {
	color: #FD940A;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;
}
#simpleText_stacks_in_777295.inheritOff a:active {
	color: #FEFCFF;
}
#simpleText_stacks_in_777295.inheritOff a:focus {
	color: #FEFCFF;
	outline: none !important; /*For browsers that add an outline by default*/
} 
#simpleText_stacks_in_777295.optJustify {
	text-align: justify;
}

/* iPad Landscape */
@media (max-width : 1024px) {
	#simpleText_stacks_in_777295.reFontSizeOn {
		font-size: px;
		line-height: px;
	}
}
/* iPad Portrait */
@media (max-width : 768px) {
	#simpleText_stacks_in_777295.reFontSizeOn {
		font-size: 18px;
		line-height: 18px;
	}
}
/* iPhone Landscape */
@media (max-width : 480px) {
	#simpleText_stacks_in_777295.reFontSizeOn {
		font-size: 18px;
		line-height: 18px;
	}
}
/* iPhone Portrait */
@media (max-width : 320px) {
	#simpleText_stacks_in_777295.reFontSizeOn {
		font-size: 18px;
		line-height: 18px;
	}
}

/* =====================
 * PRO FEATURES
 ======================= */
#simpleText_stacks_in_777295 .fontFamilyOff,
#simpleText_stacks_in_777295 .fontFamilyOff *,
#simpleText_stacks_in_777295 .fontFamilyOff a {
	font-family: Arial;
}

#stacks_in_777295 {
	padding: 10px 0px 0px 10px;
}

#stacks_in_777296 {
	display:inline-block; width:100%; line-height: 1.510000em;
}
#stacks_in_777298>.s3_row {
	margin: 0 -0px;
}

#stacks_in_777298>.s3_row>.s3_column {
	padding: 0 0px;
}








  


@media only screen and (max-width: 770px) {






}



@media only screen and (max-width: 400px) {






}




  

#stacks_in_777298 {
	padding: 15px 0px 30px 0px;
}
/* Styled Stack v2.3.1 Copyright 2013 Joe Workman */
 #stacks_in_777320{behavior:url(/PIE/PIE.htc);       border-style:solid!important; }   
/* Styled Stack v2.3.1 Copyright 2013 Joe Workman */
 #stacks_in_777315{behavior:url(/PIE/PIE.htc);       border-style:solid!important; }   
/* Styled Stack v2.3.1 Copyright 2013 Joe Workman */
 #stacks_in_777310{behavior:url(/PIE/PIE.htc);       border-style:solid!important; }   
/* Styled Stack v2.3.1 Copyright 2013 Joe Workman */
 #stacks_in_777305{behavior:url(/PIE/PIE.htc);       border-style:solid!important; }   
/* Styled Stack v2.3.1 Copyright 2013 Joe Workman */
 #stacks_in_777300{behavior:url(/PIE/PIE.htc);       border-style:solid!important; }   
#stacks_in_777327>.s3_row {
	margin: 0 -0px;
}

#stacks_in_777327>.s3_row>.s3_column_left {
	width: 52.45%;
}

#stacks_in_777327>.s3_row>.s3_column_right {
	width: 47.549999%;
}




#stacks_in_777327>.s3_row>.s3_column {
	padding: 0 0px;
}










@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {



}






#stacks_in_777327 {
	padding: 10px 50px 0px 0px;
}

#stacks_out_777327 {
	margin-left:0;
}

#stacks_out_777330 {
	margin-left:0;
}
#stacks_in_777335>.s3_row {
	margin: 0 -0px;
}

#stacks_in_777335>.s3_row>.s3_column_left {
	width: 80.00%;
}

#stacks_in_777335>.s3_row>.s3_column_right {
	width: 20.000000%;
}




#stacks_in_777335>.s3_row>.s3_column {
	padding: 0 0px;
}










@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {



}






#stacks_in_777335 {
	padding: 20px 2px 30px 2px;
}

#stacks_out_777335 {
	width: 98%;
}

#stacks_in_777337 {
	padding: 5px 0px 5px 0px;
}

#stacks_out_777337 {
	margin-left:0;
}
/* -- Start Eternity2 Each css Template -- */

.stacks_in_777261eternityContainer {
	overflow: hidden;
	position: relative;
}

.stacks_in_777261eternityContainer {
	background-image: url("../profits_files/background_image-777261.jpg") !important;
	background-position: 50% 50% !important;
	
	background-attachment: fixed;
	
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat;
}
 
 
.stacks_in_777261overlay{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background:url("../profits_files/eternity2Assets/01.png") !important;
}

.stacks_in_777261contentBox{
	text-align: center;
	opacity: 1;
	-webkit-transition: opacity 100ms linear;
    -moz-transition: opacity 100ms linear;
    -o-transition: opacity 100ms linear;
    transition: opacity 100ms linear;
}

.stacks_in_777261content{
	max-width: 2000px;
	margin: 0 auto 0 auto;
	
	text-align: center !important;
}

.stacks_in_777261content,.stacks_in_777261content h1,.stacks_in_777261content h2,.stacks_in_777261content h3,.stacks_in_777261content h4,.stacks_in_777261content h5,.stacks_in_777261content h6{
	color: rgba(255, 255, 255, 1.00) !important;
}
.stacks_in_777261content a,.stacks_in_777261content a:active,.stacks_in_777261content a:visited{
	color: rgba(59, 148, 217, 1.00) !important;
	text-decoration: none !important;
}
.stacks_in_777261content a:hover{
	color: rgba(221, 221, 221, 1.00) !important;
	text-decoration: none !important;
}

.stacks_in_777261eternityScrollButton i{
	color: rgba(255, 255, 255, 1.00) !important;
}


.stacks_in_777261eternityScrollButton{
	position: absolute;
	width: 100%;
	bottom: 0;
	color: #fff !important;
	font-size: 36px;
	text-align: center;
	padding-top: 30px;
	padding-bottom: 30px;
	display: none;
	cursor: pointer;
}


	.stacks_in_777261eternityScrollButton{
		display: block;
	}

/* -- End Unified -- */



	.stacks_in_777261eternityContainer {
		min-height: 500px;
	}
	
	.stacks_in_777261contentBox{
		position: absolute;
		width: 100%;
		top: 50%;
		-webkit-transform: translate(0,-50%);
		-moz-transform:    translate(0,-50%);
		-ms-transform:     translate(0,-50%);
		-o-transform:      translate(0,-50%);
		transform:         translate(0,-50%);
	}
/* -- End Preview/Published -- */

 
 



@keyframes eternityanimation {
	43% { transform: translate(0,0);} 
	0% { transform: translate(0,0);} 
	30% { transform: translate(0,11px);} 
	17% { transform: translate(0,-5px);} 
	11% { transform: translate(0,0);} 
}

@-webkit-keyframes eternityanimation {
	43% { transform: translate(0,0);} 
	0% { transform: translate(0,0);} 
	30% { transform: translate(0,11px);} 
	17% { transform: translate(0,-5px);} 
	11% { transform: translate(0,0);} 
}

/* apply the .animation class to the element you want to animate */
.eternityanimation {
	animation: eternityanimation 3s ease-in-out 0s infinite normal none;
	-webkit-animation: eternityanimation 3s ease-in-out 0s infinite normal none;
}



/* -- End Eternity2 Each css Template -- *//* Styled Stack v2.3.1 Copyright 2013 Joe Workman */
 #stacks_in_777262{behavior:url(/PIE/PIE.htc);       border-style:solid!important; }   

#stacks_in_777262 {
	padding: 60px 0px 10px 0px;
}
/* Styled Stack v2.3.1 Copyright 2013 Joe Workman */
 #stacks_in_777264{behavior:url(/PIE/PIE.htc);       border-style:solid!important; }   

#stacks_in_777264 {
	padding: 90px 0px 0px 0px;
}
/* Styled Stack v2.3.1 Copyright 2013 Joe Workman */
 #stacks_in_777266{behavior:url(/PIE/PIE.htc);       border-style:solid!important; }   
.stacks_in_777267 > *{display:inline-block;white-space:nowrap}

#stacks_in_777263 {
	margin: 25px 0px 25px 0px;
	padding: 40px 0px 40px 0px;
}

#stacks_in_777270 {
	text-transform: capitalize;
}
/* Styled Stack v2.3.1 Copyright 2013 Joe Workman */
 #stacks_in_777272{behavior:url(/PIE/PIE.htc);       border-style:solid!important; }   

#stacks_in_777272 {
	padding: 20px 0px 10px 0px;
}
/* Styled Stack v2.3.1 Copyright 2013 Joe Workman */
 #stacks_in_777273{behavior:url(/PIE/PIE.htc);       border-style:solid!important; }  #stacks_in_777273{behavior:url(/PIE/PIE.htc);-moz-box-shadow:inset 0px 0px 1px #999999;-webkit-box-shadow:inset 0px 0px 1px #999999;box-shadow:inset 0px 0px 1px #999999}  

#stacks_in_777273 {
	border: solid rgba(254, 252, 255, 1.00);
	border-width:  1px;
	padding:  15px;
}

#stacks_out_777273 {
	width: 80%;
}
/* 
 * Simple Text Pro
 * Author: Jeremy Hawes
 * Website: http://onelittledesigner.com/rapidweaver-stack/simple-text/
 * Support: http://forum.onelittledesigner.com
 * Verson: 2.0.3
 */

#simpleText_stacks_in_777274 {
	position: relative;
	color: #333333;
	text-shadow: ;
	-webkit-text-shadow: ;
	-moz-text-shadow: ;
	-o-text-shadow: ;
	-ms-text-shadow: ;
}
#simpleText_stacks_in_777274.fontSizeInheritOn {
	font-size: inherit;
}
#simpleText_stacks_in_777274.fontSizeInheritOff {
	font-size: 27px;
	line-height: 27px;
}
#simpleText_stacks_in_777274.letterSpacingOn {
	letter-spacing: 0px;
}
#simpleText_stacks_in_777274.lineHeightOn {
	line-height: 14px;
}
#simpleText_stacks_in_777274.rotateOn .insideText {
	-webkit-transform:rotate(270deg);
	-moz-transform:rotate(270deg);
	-o-transform:rotate(270deg);
	-ms-transform:rotate(270deg);
	display: inline-block;
}
#simpleText_stacks_in_777274.inheritOff a, #simpleText_stacks_in_777274.inheritOff a:link {
	color: #169EE6;
	text-decoration: inherit;
	font-style: inherit;
	font-weight: normal;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;	
}
#simpleText_stacks_in_777274.inheritOff a:visited {
	color: #169EE6;
}
#simpleText_stacks_in_777274.inheritOff a:hover {
	color: #FF6600;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;
}
#simpleText_stacks_in_777274.inheritOff a:active {
	color: #FF6600;
}
#simpleText_stacks_in_777274.inheritOff a:focus {
	color: #FF6600;
	outline: none !important; /*For browsers that add an outline by default*/
} 
#simpleText_stacks_in_777274.optJustify {
	text-align: justify;
}

/* iPad Landscape */
@media (max-width : 1024px) {
	#simpleText_stacks_in_777274.reFontSizeOn {
		font-size: px;
		line-height: px;
	}
}
/* iPad Portrait */
@media (max-width : 768px) {
	#simpleText_stacks_in_777274.reFontSizeOn {
		font-size: 22px;
		line-height: 22px;
	}
}
/* iPhone Landscape */
@media (max-width : 480px) {
	#simpleText_stacks_in_777274.reFontSizeOn {
		font-size: 22px;
		line-height: 22px;
	}
}
/* iPhone Portrait */
@media (max-width : 320px) {
	#simpleText_stacks_in_777274.reFontSizeOn {
		font-size: 22px;
		line-height: 22px;
	}
}

/* =====================
 * PRO FEATURES
 ======================= */
#simpleText_stacks_in_777274 .fontFamilyOff,
#simpleText_stacks_in_777274 .fontFamilyOff *,
#simpleText_stacks_in_777274 .fontFamilyOff a {
	font-family: Arial;
}
/* Styled Stack v2.3.1 Copyright 2013 Joe Workman */
 #stacks_in_777278{behavior:url(/PIE/PIE.htc);       border-style:solid!important; }   

#stacks_in_777278 {
	padding: 80px 0px 10px 0px;
}
/* Styled Stack v2.3.1 Copyright 2013 Joe Workman */
 #stacks_in_777279{behavior:url(/PIE/PIE.htc);       border-style:solid!important; }   
/* Styled Stack v2.3.1 Copyright 2013 Joe Workman */
 #stacks_in_777173{behavior:url(/PIE/PIE.htc);       border-style:solid!important; }   

#stacks_in_777173 {
	padding: 30px 0px 30px 0px;
}
#stacks_in_777176 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_777176 .jwresp_col{overflow:hidden;margin:0;width:49%; float:left;}#stacks_in_777176 #jwresp_col2_stacks_in_777176{ float:right; width:49%}@media screen and (max-width:500px){#stacks_in_777176 #jwresp_col1_stacks_in_777176,#stacks_in_777176 #jwresp_col2_stacks_in_777176{width:100%;float:none;display:block}#stacks_in_777176 #jwresp_col1_stacks_in_777176{margin-bottom:15px}}

#stacks_in_777176 {
	padding: 30px 0px 30px 0px;
}

#stacks_out_777176 {
	width: 89%;
}
/* 
 * Simple Text Pro
 * Author: Jeremy Hawes
 * Website: http://onelittledesigner.com/rapidweaver-stack/simple-text/
 * Support: http://forum.onelittledesigner.com
 * Verson: 2.0.3
 */

#simpleText_stacks_in_777177 {
	position: relative;
	color: #FD940A;
	text-shadow: ;
	-webkit-text-shadow: ;
	-moz-text-shadow: ;
	-o-text-shadow: ;
	-ms-text-shadow: ;
}
#simpleText_stacks_in_777177.fontSizeInheritOn {
	font-size: inherit;
}
#simpleText_stacks_in_777177.fontSizeInheritOff {
	font-size: 25px;
	line-height: 25px;
}
#simpleText_stacks_in_777177.letterSpacingOn {
	letter-spacing: 0px;
}
#simpleText_stacks_in_777177.lineHeightOn {
	line-height: 14px;
}
#simpleText_stacks_in_777177.rotateOn .insideText {
	-webkit-transform:rotate(270deg);
	-moz-transform:rotate(270deg);
	-o-transform:rotate(270deg);
	-ms-transform:rotate(270deg);
	display: inline-block;
}
#simpleText_stacks_in_777177.inheritOff a, #simpleText_stacks_in_777177.inheritOff a:link {
	color: #169EE6;
	text-decoration: inherit;
	font-style: inherit;
	font-weight: normal;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;	
}
#simpleText_stacks_in_777177.inheritOff a:visited {
	color: #169EE6;
}
#simpleText_stacks_in_777177.inheritOff a:hover {
	color: #FF6600;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;
}
#simpleText_stacks_in_777177.inheritOff a:active {
	color: #FF6600;
}
#simpleText_stacks_in_777177.inheritOff a:focus {
	color: #FF6600;
	outline: none !important; /*For browsers that add an outline by default*/
} 
#simpleText_stacks_in_777177.optJustify {
	text-align: justify;
}

/* iPad Landscape */
@media (max-width : 1024px) {
	#simpleText_stacks_in_777177.reFontSizeOn {
		font-size: px;
		line-height: px;
	}
}
/* iPad Portrait */
@media (max-width : 768px) {
	#simpleText_stacks_in_777177.reFontSizeOn {
		font-size: 25px;
		line-height: 25px;
	}
}
/* iPhone Landscape */
@media (max-width : 480px) {
	#simpleText_stacks_in_777177.reFontSizeOn {
		font-size: 25px;
		line-height: 25px;
	}
}
/* iPhone Portrait */
@media (max-width : 320px) {
	#simpleText_stacks_in_777177.reFontSizeOn {
		font-size: 25px;
		line-height: 25px;
	}
}

/* =====================
 * PRO FEATURES
 ======================= */
#simpleText_stacks_in_777177 .fontFamilyOff,
#simpleText_stacks_in_777177 .fontFamilyOff *,
#simpleText_stacks_in_777177 .fontFamilyOff a {
	font-family: Arial;
}

#stacks_in_777177 {
	padding: 10px 0px 10px 0px;
}
/* 
 * Simple Text Pro
 * Author: Jeremy Hawes
 * Website: http://onelittledesigner.com/rapidweaver-stack/simple-text/
 * Support: http://forum.onelittledesigner.com
 * Verson: 2.0.3
 */

#simpleText_stacks_in_777179 {
	position: relative;
	color: #313131;
	text-shadow: ;
	-webkit-text-shadow: ;
	-moz-text-shadow: ;
	-o-text-shadow: ;
	-ms-text-shadow: ;
}
#simpleText_stacks_in_777179.fontSizeInheritOn {
	font-size: inherit;
}
#simpleText_stacks_in_777179.fontSizeInheritOff {
	font-size: 14px;
	line-height: 14px;
}
#simpleText_stacks_in_777179.letterSpacingOn {
	letter-spacing: 0px;
}
#simpleText_stacks_in_777179.lineHeightOn {
	line-height: 14px;
}
#simpleText_stacks_in_777179.rotateOn .insideText {
	-webkit-transform:rotate(270deg);
	-moz-transform:rotate(270deg);
	-o-transform:rotate(270deg);
	-ms-transform:rotate(270deg);
	display: inline-block;
}
#simpleText_stacks_in_777179.inheritOff a, #simpleText_stacks_in_777179.inheritOff a:link {
	color: #169EE6;
	text-decoration: inherit;
	font-style: inherit;
	font-weight: normal;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;	
}
#simpleText_stacks_in_777179.inheritOff a:visited {
	color: #169EE6;
}
#simpleText_stacks_in_777179.inheritOff a:hover {
	color: #FF6600;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;
}
#simpleText_stacks_in_777179.inheritOff a:active {
	color: #FF6600;
}
#simpleText_stacks_in_777179.inheritOff a:focus {
	color: #FF6600;
	outline: none !important; /*For browsers that add an outline by default*/
} 
#simpleText_stacks_in_777179.optJustify {
	text-align: justify;
}

/* iPad Landscape */
@media (max-width : 1024px) {
	#simpleText_stacks_in_777179.reFontSizeOn {
		font-size: px;
		line-height: px;
	}
}
/* iPad Portrait */
@media (max-width : 768px) {
	#simpleText_stacks_in_777179.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
/* iPhone Landscape */
@media (max-width : 480px) {
	#simpleText_stacks_in_777179.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
/* iPhone Portrait */
@media (max-width : 320px) {
	#simpleText_stacks_in_777179.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}

/* =====================
 * PRO FEATURES
 ======================= */
#simpleText_stacks_in_777179 .fontFamilyOff,
#simpleText_stacks_in_777179 .fontFamilyOff *,
#simpleText_stacks_in_777179 .fontFamilyOff a {
	font-family: Arial;
}

#stacks_in_777179 {
	padding:  5px;
}
/* Styled Stack v2.3.1 Copyright 2013 Joe Workman */
 #stacks_in_777181{behavior:url(/PIE/PIE.htc);       border-style:solid!important; }   

#stacks_in_777181 {
	padding:  20px;
}
/* Styled Stack v2.3.1 Copyright 2013 Joe Workman */
 #stacks_in_777182{behavior:url(/PIE/PIE.htc);       border-style:solid!important; }   

#stacks_in_777182 {
	border: solid rgba(0, 0, 0, 1.00);
	border-width:  1px;
	padding: 0px 20px 0px 20px;
}

#stacks_out_777182 {
	width: 82%;
}
/* 
 * Simple Text Pro
 * Author: Jeremy Hawes
 * Website: http://onelittledesigner.com/rapidweaver-stack/simple-text/
 * Support: http://forum.onelittledesigner.com
 * Verson: 2.0.3
 */

#simpleText_stacks_in_777185 {
	position: relative;
	color: #FD940A;
	text-shadow: ;
	-webkit-text-shadow: ;
	-moz-text-shadow: ;
	-o-text-shadow: ;
	-ms-text-shadow: ;
}
#simpleText_stacks_in_777185.fontSizeInheritOn {
	font-size: inherit;
}
#simpleText_stacks_in_777185.fontSizeInheritOff {
	font-size: 20px;
	line-height: 20px;
}
#simpleText_stacks_in_777185.letterSpacingOn {
	letter-spacing: 0px;
}
#simpleText_stacks_in_777185.lineHeightOn {
	line-height: 14px;
}
#simpleText_stacks_in_777185.rotateOn .insideText {
	-webkit-transform:rotate(270deg);
	-moz-transform:rotate(270deg);
	-o-transform:rotate(270deg);
	-ms-transform:rotate(270deg);
	display: inline-block;
}
#simpleText_stacks_in_777185.inheritOff a, #simpleText_stacks_in_777185.inheritOff a:link {
	color: #169EE6;
	text-decoration: inherit;
	font-style: inherit;
	font-weight: normal;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;	
}
#simpleText_stacks_in_777185.inheritOff a:visited {
	color: #169EE6;
}
#simpleText_stacks_in_777185.inheritOff a:hover {
	color: #FF6600;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;
}
#simpleText_stacks_in_777185.inheritOff a:active {
	color: #FF6600;
}
#simpleText_stacks_in_777185.inheritOff a:focus {
	color: #FF6600;
	outline: none !important; /*For browsers that add an outline by default*/
} 
#simpleText_stacks_in_777185.optJustify {
	text-align: justify;
}

/* iPad Landscape */
@media (max-width : 1024px) {
	#simpleText_stacks_in_777185.reFontSizeOn {
		font-size: px;
		line-height: px;
	}
}
/* iPad Portrait */
@media (max-width : 768px) {
	#simpleText_stacks_in_777185.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
/* iPhone Landscape */
@media (max-width : 480px) {
	#simpleText_stacks_in_777185.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
/* iPhone Portrait */
@media (max-width : 320px) {
	#simpleText_stacks_in_777185.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}

/* =====================
 * PRO FEATURES
 ======================= */
#simpleText_stacks_in_777185 .fontFamilyOff,
#simpleText_stacks_in_777185 .fontFamilyOff *,
#simpleText_stacks_in_777185 .fontFamilyOff a {
	font-family: Arial;
}

#stacks_in_777185 {
	padding: 10px 0px 10px 0px;
}
/* 
 * Simple Text Pro
 * Author: Jeremy Hawes
 * Website: http://onelittledesigner.com/rapidweaver-stack/simple-text/
 * Support: http://forum.onelittledesigner.com
 * Verson: 2.0.3
 */

#simpleText_stacks_in_777187 {
	position: relative;
	color: #333333;
	text-shadow: ;
	-webkit-text-shadow: ;
	-moz-text-shadow: ;
	-o-text-shadow: ;
	-ms-text-shadow: ;
}
#simpleText_stacks_in_777187.fontSizeInheritOn {
	font-size: inherit;
}
#simpleText_stacks_in_777187.fontSizeInheritOff {
	font-size: 14px;
	line-height: 14px;
}
#simpleText_stacks_in_777187.letterSpacingOn {
	letter-spacing: 0px;
}
#simpleText_stacks_in_777187.lineHeightOn {
	line-height: 14px;
}
#simpleText_stacks_in_777187.rotateOn .insideText {
	-webkit-transform:rotate(270deg);
	-moz-transform:rotate(270deg);
	-o-transform:rotate(270deg);
	-ms-transform:rotate(270deg);
	display: inline-block;
}
#simpleText_stacks_in_777187.inheritOff a, #simpleText_stacks_in_777187.inheritOff a:link {
	color: #169EE6;
	text-decoration: inherit;
	font-style: inherit;
	font-weight: normal;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;	
}
#simpleText_stacks_in_777187.inheritOff a:visited {
	color: #169EE6;
}
#simpleText_stacks_in_777187.inheritOff a:hover {
	color: #FF6600;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;
}
#simpleText_stacks_in_777187.inheritOff a:active {
	color: #FF6600;
}
#simpleText_stacks_in_777187.inheritOff a:focus {
	color: #FF6600;
	outline: none !important; /*For browsers that add an outline by default*/
} 
#simpleText_stacks_in_777187.optJustify {
	text-align: justify;
}

/* iPad Landscape */
@media (max-width : 1024px) {
	#simpleText_stacks_in_777187.reFontSizeOn {
		font-size: px;
		line-height: px;
	}
}
/* iPad Portrait */
@media (max-width : 768px) {
	#simpleText_stacks_in_777187.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
/* iPhone Landscape */
@media (max-width : 480px) {
	#simpleText_stacks_in_777187.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
/* iPhone Portrait */
@media (max-width : 320px) {
	#simpleText_stacks_in_777187.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}

/* =====================
 * PRO FEATURES
 ======================= */
#simpleText_stacks_in_777187 .fontFamilyOff,
#simpleText_stacks_in_777187 .fontFamilyOff *,
#simpleText_stacks_in_777187 .fontFamilyOff a {
	font-family: Arial;
}

#stacks_in_777187 {
	padding:  5px;
}
/* Styled Stack v2.3.1 Copyright 2013 Joe Workman */
 #stacks_in_777189{behavior:url(/PIE/PIE.htc);       border-style:solid!important; }   

#stacks_in_777189 {
	padding:  20px;
}
/* Styled Stack v2.3.1 Copyright 2013 Joe Workman */
 #stacks_in_777190{behavior:url(/PIE/PIE.htc);       border-style:solid!important; }   

#stacks_in_777190 {
	border: solid rgba(0, 0, 0, 1.00);
	border-width:  1px;
	padding: 0px 20px 0px 20px;
}

#stacks_out_777190 {
	width: 82%;
}
/* 
 * Simple Text Pro
 * Author: Jeremy Hawes
 * Website: http://onelittledesigner.com/rapidweaver-stack/simple-text/
 * Support: http://forum.onelittledesigner.com
 * Verson: 2.0.3
 */

#simpleText_stacks_in_777193 {
	position: relative;
	color: #FD940A;
	text-shadow: ;
	-webkit-text-shadow: ;
	-moz-text-shadow: ;
	-o-text-shadow: ;
	-ms-text-shadow: ;
}
#simpleText_stacks_in_777193.fontSizeInheritOn {
	font-size: inherit;
}
#simpleText_stacks_in_777193.fontSizeInheritOff {
	font-size: 20px;
	line-height: 20px;
}
#simpleText_stacks_in_777193.letterSpacingOn {
	letter-spacing: 0px;
}
#simpleText_stacks_in_777193.lineHeightOn {
	line-height: 14px;
}
#simpleText_stacks_in_777193.rotateOn .insideText {
	-webkit-transform:rotate(270deg);
	-moz-transform:rotate(270deg);
	-o-transform:rotate(270deg);
	-ms-transform:rotate(270deg);
	display: inline-block;
}
#simpleText_stacks_in_777193.inheritOff a, #simpleText_stacks_in_777193.inheritOff a:link {
	color: #169EE6;
	text-decoration: inherit;
	font-style: inherit;
	font-weight: normal;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;	
}
#simpleText_stacks_in_777193.inheritOff a:visited {
	color: #169EE6;
}
#simpleText_stacks_in_777193.inheritOff a:hover {
	color: #FF6600;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;
}
#simpleText_stacks_in_777193.inheritOff a:active {
	color: #FF6600;
}
#simpleText_stacks_in_777193.inheritOff a:focus {
	color: #FF6600;
	outline: none !important; /*For browsers that add an outline by default*/
} 
#simpleText_stacks_in_777193.optJustify {
	text-align: justify;
}

/* iPad Landscape */
@media (max-width : 1024px) {
	#simpleText_stacks_in_777193.reFontSizeOn {
		font-size: px;
		line-height: px;
	}
}
/* iPad Portrait */
@media (max-width : 768px) {
	#simpleText_stacks_in_777193.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
/* iPhone Landscape */
@media (max-width : 480px) {
	#simpleText_stacks_in_777193.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
/* iPhone Portrait */
@media (max-width : 320px) {
	#simpleText_stacks_in_777193.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}

/* =====================
 * PRO FEATURES
 ======================= */
#simpleText_stacks_in_777193 .fontFamilyOff,
#simpleText_stacks_in_777193 .fontFamilyOff *,
#simpleText_stacks_in_777193 .fontFamilyOff a {
	font-family: Arial;
}

#stacks_in_777193 {
	padding: 10px 0px 10px 0px;
}
/* 
 * Simple Text Pro
 * Author: Jeremy Hawes
 * Website: http://onelittledesigner.com/rapidweaver-stack/simple-text/
 * Support: http://forum.onelittledesigner.com
 * Verson: 2.0.3
 */

#simpleText_stacks_in_777195 {
	position: relative;
	color: #333333;
	text-shadow: ;
	-webkit-text-shadow: ;
	-moz-text-shadow: ;
	-o-text-shadow: ;
	-ms-text-shadow: ;
}
#simpleText_stacks_in_777195.fontSizeInheritOn {
	font-size: inherit;
}
#simpleText_stacks_in_777195.fontSizeInheritOff {
	font-size: 14px;
	line-height: 14px;
}
#simpleText_stacks_in_777195.letterSpacingOn {
	letter-spacing: 0px;
}
#simpleText_stacks_in_777195.lineHeightOn {
	line-height: 14px;
}
#simpleText_stacks_in_777195.rotateOn .insideText {
	-webkit-transform:rotate(270deg);
	-moz-transform:rotate(270deg);
	-o-transform:rotate(270deg);
	-ms-transform:rotate(270deg);
	display: inline-block;
}
#simpleText_stacks_in_777195.inheritOff a, #simpleText_stacks_in_777195.inheritOff a:link {
	color: #169EE6;
	text-decoration: inherit;
	font-style: inherit;
	font-weight: normal;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;	
}
#simpleText_stacks_in_777195.inheritOff a:visited {
	color: #169EE6;
}
#simpleText_stacks_in_777195.inheritOff a:hover {
	color: #FF6600;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;
}
#simpleText_stacks_in_777195.inheritOff a:active {
	color: #FF6600;
}
#simpleText_stacks_in_777195.inheritOff a:focus {
	color: #FF6600;
	outline: none !important; /*For browsers that add an outline by default*/
} 
#simpleText_stacks_in_777195.optJustify {
	text-align: justify;
}

/* iPad Landscape */
@media (max-width : 1024px) {
	#simpleText_stacks_in_777195.reFontSizeOn {
		font-size: px;
		line-height: px;
	}
}
/* iPad Portrait */
@media (max-width : 768px) {
	#simpleText_stacks_in_777195.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
/* iPhone Landscape */
@media (max-width : 480px) {
	#simpleText_stacks_in_777195.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
/* iPhone Portrait */
@media (max-width : 320px) {
	#simpleText_stacks_in_777195.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}

/* =====================
 * PRO FEATURES
 ======================= */
#simpleText_stacks_in_777195 .fontFamilyOff,
#simpleText_stacks_in_777195 .fontFamilyOff *,
#simpleText_stacks_in_777195 .fontFamilyOff a {
	font-family: Arial;
}

#stacks_in_777195 {
	padding:  5px;
}
/* Styled Stack v2.3.1 Copyright 2013 Joe Workman */
 #stacks_in_777197{behavior:url(/PIE/PIE.htc);       border-style:solid!important; }   

#stacks_in_777197 {
	padding:  20px;
}
/* Styled Stack v2.3.1 Copyright 2013 Joe Workman */
 #stacks_in_777198{behavior:url(/PIE/PIE.htc);       border-style:solid!important; }   

#stacks_in_777198 {
	border: solid rgba(0, 0, 0, 1.00);
	border-width:  1px;
	padding: 0px 20px 0px 20px;
}

#stacks_out_777198 {
	width: 82%;
}
/* 
 * Simple Text Pro
 * Author: Jeremy Hawes
 * Website: http://onelittledesigner.com/rapidweaver-stack/simple-text/
 * Support: http://forum.onelittledesigner.com
 * Verson: 2.0.3
 */

#simpleText_stacks_in_777201 {
	position: relative;
	color: #FD940A;
	text-shadow: ;
	-webkit-text-shadow: ;
	-moz-text-shadow: ;
	-o-text-shadow: ;
	-ms-text-shadow: ;
}
#simpleText_stacks_in_777201.fontSizeInheritOn {
	font-size: inherit;
}
#simpleText_stacks_in_777201.fontSizeInheritOff {
	font-size: 20px;
	line-height: 20px;
}
#simpleText_stacks_in_777201.letterSpacingOn {
	letter-spacing: 0px;
}
#simpleText_stacks_in_777201.lineHeightOn {
	line-height: 14px;
}
#simpleText_stacks_in_777201.rotateOn .insideText {
	-webkit-transform:rotate(270deg);
	-moz-transform:rotate(270deg);
	-o-transform:rotate(270deg);
	-ms-transform:rotate(270deg);
	display: inline-block;
}
#simpleText_stacks_in_777201.inheritOff a, #simpleText_stacks_in_777201.inheritOff a:link {
	color: #169EE6;
	text-decoration: inherit;
	font-style: inherit;
	font-weight: normal;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;	
}
#simpleText_stacks_in_777201.inheritOff a:visited {
	color: #169EE6;
}
#simpleText_stacks_in_777201.inheritOff a:hover {
	color: #FF6600;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;
}
#simpleText_stacks_in_777201.inheritOff a:active {
	color: #FF6600;
}
#simpleText_stacks_in_777201.inheritOff a:focus {
	color: #FF6600;
	outline: none !important; /*For browsers that add an outline by default*/
} 
#simpleText_stacks_in_777201.optJustify {
	text-align: justify;
}

/* iPad Landscape */
@media (max-width : 1024px) {
	#simpleText_stacks_in_777201.reFontSizeOn {
		font-size: px;
		line-height: px;
	}
}
/* iPad Portrait */
@media (max-width : 768px) {
	#simpleText_stacks_in_777201.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
/* iPhone Landscape */
@media (max-width : 480px) {
	#simpleText_stacks_in_777201.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
/* iPhone Portrait */
@media (max-width : 320px) {
	#simpleText_stacks_in_777201.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}

/* =====================
 * PRO FEATURES
 ======================= */
#simpleText_stacks_in_777201 .fontFamilyOff,
#simpleText_stacks_in_777201 .fontFamilyOff *,
#simpleText_stacks_in_777201 .fontFamilyOff a {
	font-family: Arial;
}

#stacks_in_777201 {
	padding: 10px 0px 10px 0px;
}
/* 
 * Simple Text Pro
 * Author: Jeremy Hawes
 * Website: http://onelittledesigner.com/rapidweaver-stack/simple-text/
 * Support: http://forum.onelittledesigner.com
 * Verson: 2.0.3
 */

#simpleText_stacks_in_777203 {
	position: relative;
	color: #333333;
	text-shadow: ;
	-webkit-text-shadow: ;
	-moz-text-shadow: ;
	-o-text-shadow: ;
	-ms-text-shadow: ;
}
#simpleText_stacks_in_777203.fontSizeInheritOn {
	font-size: inherit;
}
#simpleText_stacks_in_777203.fontSizeInheritOff {
	font-size: 14px;
	line-height: 14px;
}
#simpleText_stacks_in_777203.letterSpacingOn {
	letter-spacing: 0px;
}
#simpleText_stacks_in_777203.lineHeightOn {
	line-height: 14px;
}
#simpleText_stacks_in_777203.rotateOn .insideText {
	-webkit-transform:rotate(270deg);
	-moz-transform:rotate(270deg);
	-o-transform:rotate(270deg);
	-ms-transform:rotate(270deg);
	display: inline-block;
}
#simpleText_stacks_in_777203.inheritOff a, #simpleText_stacks_in_777203.inheritOff a:link {
	color: #169EE6;
	text-decoration: inherit;
	font-style: inherit;
	font-weight: normal;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;	
}
#simpleText_stacks_in_777203.inheritOff a:visited {
	color: #169EE6;
}
#simpleText_stacks_in_777203.inheritOff a:hover {
	color: #FF6600;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;
}
#simpleText_stacks_in_777203.inheritOff a:active {
	color: #FF6600;
}
#simpleText_stacks_in_777203.inheritOff a:focus {
	color: #FF6600;
	outline: none !important; /*For browsers that add an outline by default*/
} 
#simpleText_stacks_in_777203.optJustify {
	text-align: justify;
}

/* iPad Landscape */
@media (max-width : 1024px) {
	#simpleText_stacks_in_777203.reFontSizeOn {
		font-size: px;
		line-height: px;
	}
}
/* iPad Portrait */
@media (max-width : 768px) {
	#simpleText_stacks_in_777203.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
/* iPhone Landscape */
@media (max-width : 480px) {
	#simpleText_stacks_in_777203.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
/* iPhone Portrait */
@media (max-width : 320px) {
	#simpleText_stacks_in_777203.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}

/* =====================
 * PRO FEATURES
 ======================= */
#simpleText_stacks_in_777203 .fontFamilyOff,
#simpleText_stacks_in_777203 .fontFamilyOff *,
#simpleText_stacks_in_777203 .fontFamilyOff a {
	font-family: Arial;
}

#stacks_in_777203 {
	padding:  5px;
}
/* Styled Stack v2.3.1 Copyright 2013 Joe Workman */
 #stacks_in_777205{behavior:url(/PIE/PIE.htc);       border-style:solid!important; }   

#stacks_in_777205 {
	padding:  20px;
}
/* Styled Stack v2.3.1 Copyright 2013 Joe Workman */
 #stacks_in_777206{behavior:url(/PIE/PIE.htc);       border-style:solid!important; }   

#stacks_in_777206 {
	border: solid rgba(0, 0, 0, 1.00);
	border-width:  1px;
	padding: 0px 20px 0px 20px;
}

#stacks_out_777206 {
	width: 82%;
}
/* 
 * Simple Text Pro
 * Author: Jeremy Hawes
 * Website: http://onelittledesigner.com/rapidweaver-stack/simple-text/
 * Support: http://forum.onelittledesigner.com
 * Verson: 2.0.3
 */

#simpleText_stacks_in_777210 {
	position: relative;
	color: #FD940A;
	text-shadow: ;
	-webkit-text-shadow: ;
	-moz-text-shadow: ;
	-o-text-shadow: ;
	-ms-text-shadow: ;
}
#simpleText_stacks_in_777210.fontSizeInheritOn {
	font-size: inherit;
}
#simpleText_stacks_in_777210.fontSizeInheritOff {
	font-size: 20px;
	line-height: 20px;
}
#simpleText_stacks_in_777210.letterSpacingOn {
	letter-spacing: 0px;
}
#simpleText_stacks_in_777210.lineHeightOn {
	line-height: 14px;
}
#simpleText_stacks_in_777210.rotateOn .insideText {
	-webkit-transform:rotate(270deg);
	-moz-transform:rotate(270deg);
	-o-transform:rotate(270deg);
	-ms-transform:rotate(270deg);
	display: inline-block;
}
#simpleText_stacks_in_777210.inheritOff a, #simpleText_stacks_in_777210.inheritOff a:link {
	color: #169EE6;
	text-decoration: inherit;
	font-style: inherit;
	font-weight: normal;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;	
}
#simpleText_stacks_in_777210.inheritOff a:visited {
	color: #169EE6;
}
#simpleText_stacks_in_777210.inheritOff a:hover {
	color: #FF6600;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;
}
#simpleText_stacks_in_777210.inheritOff a:active {
	color: #FF6600;
}
#simpleText_stacks_in_777210.inheritOff a:focus {
	color: #FF6600;
	outline: none !important; /*For browsers that add an outline by default*/
} 
#simpleText_stacks_in_777210.optJustify {
	text-align: justify;
}

/* iPad Landscape */
@media (max-width : 1024px) {
	#simpleText_stacks_in_777210.reFontSizeOn {
		font-size: px;
		line-height: px;
	}
}
/* iPad Portrait */
@media (max-width : 768px) {
	#simpleText_stacks_in_777210.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
/* iPhone Landscape */
@media (max-width : 480px) {
	#simpleText_stacks_in_777210.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
/* iPhone Portrait */
@media (max-width : 320px) {
	#simpleText_stacks_in_777210.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}

/* =====================
 * PRO FEATURES
 ======================= */
#simpleText_stacks_in_777210 .fontFamilyOff,
#simpleText_stacks_in_777210 .fontFamilyOff *,
#simpleText_stacks_in_777210 .fontFamilyOff a {
	font-family: Arial;
}

#stacks_in_777210 {
	padding: 10px 0px 10px 0px;
}
/* 
 * Simple Text Pro
 * Author: Jeremy Hawes
 * Website: http://onelittledesigner.com/rapidweaver-stack/simple-text/
 * Support: http://forum.onelittledesigner.com
 * Verson: 2.0.3
 */

#simpleText_stacks_in_777212 {
	position: relative;
	color: #333333;
	text-shadow: ;
	-webkit-text-shadow: ;
	-moz-text-shadow: ;
	-o-text-shadow: ;
	-ms-text-shadow: ;
}
#simpleText_stacks_in_777212.fontSizeInheritOn {
	font-size: inherit;
}
#simpleText_stacks_in_777212.fontSizeInheritOff {
	font-size: 14px;
	line-height: 14px;
}
#simpleText_stacks_in_777212.letterSpacingOn {
	letter-spacing: 0px;
}
#simpleText_stacks_in_777212.lineHeightOn {
	line-height: 14px;
}
#simpleText_stacks_in_777212.rotateOn .insideText {
	-webkit-transform:rotate(270deg);
	-moz-transform:rotate(270deg);
	-o-transform:rotate(270deg);
	-ms-transform:rotate(270deg);
	display: inline-block;
}
#simpleText_stacks_in_777212.inheritOff a, #simpleText_stacks_in_777212.inheritOff a:link {
	color: #169EE6;
	text-decoration: inherit;
	font-style: inherit;
	font-weight: normal;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;	
}
#simpleText_stacks_in_777212.inheritOff a:visited {
	color: #169EE6;
}
#simpleText_stacks_in_777212.inheritOff a:hover {
	color: #FF6600;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;
}
#simpleText_stacks_in_777212.inheritOff a:active {
	color: #FF6600;
}
#simpleText_stacks_in_777212.inheritOff a:focus {
	color: #FF6600;
	outline: none !important; /*For browsers that add an outline by default*/
} 
#simpleText_stacks_in_777212.optJustify {
	text-align: justify;
}

/* iPad Landscape */
@media (max-width : 1024px) {
	#simpleText_stacks_in_777212.reFontSizeOn {
		font-size: px;
		line-height: px;
	}
}
/* iPad Portrait */
@media (max-width : 768px) {
	#simpleText_stacks_in_777212.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
/* iPhone Landscape */
@media (max-width : 480px) {
	#simpleText_stacks_in_777212.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
/* iPhone Portrait */
@media (max-width : 320px) {
	#simpleText_stacks_in_777212.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}

/* =====================
 * PRO FEATURES
 ======================= */
#simpleText_stacks_in_777212 .fontFamilyOff,
#simpleText_stacks_in_777212 .fontFamilyOff *,
#simpleText_stacks_in_777212 .fontFamilyOff a {
	font-family: Arial;
}

#stacks_in_777212 {
	padding:  5px;
}
/* Styled Stack v2.3.1 Copyright 2013 Joe Workman */
 #stacks_in_777214{behavior:url(/PIE/PIE.htc);       border-style:solid!important; }   

#stacks_in_777214 {
	padding:  20px;
}
/* Styled Stack v2.3.1 Copyright 2013 Joe Workman */
 #stacks_in_777215{behavior:url(/PIE/PIE.htc);       border-style:solid!important; }   

#stacks_in_777215 {
	border: solid rgba(0, 0, 0, 1.00);
	border-width:  1px;
	padding: 0px 20px 0px 20px;
}

#stacks_out_777215 {
	width: 82%;
}
/* 
 * Simple Text Pro
 * Author: Jeremy Hawes
 * Website: http://onelittledesigner.com/rapidweaver-stack/simple-text/
 * Support: http://forum.onelittledesigner.com
 * Verson: 2.0.3
 */

#simpleText_stacks_in_777218 {
	position: relative;
	color: #FD940A;
	text-shadow: ;
	-webkit-text-shadow: ;
	-moz-text-shadow: ;
	-o-text-shadow: ;
	-ms-text-shadow: ;
}
#simpleText_stacks_in_777218.fontSizeInheritOn {
	font-size: inherit;
}
#simpleText_stacks_in_777218.fontSizeInheritOff {
	font-size: 20px;
	line-height: 20px;
}
#simpleText_stacks_in_777218.letterSpacingOn {
	letter-spacing: 0px;
}
#simpleText_stacks_in_777218.lineHeightOn {
	line-height: 14px;
}
#simpleText_stacks_in_777218.rotateOn .insideText {
	-webkit-transform:rotate(270deg);
	-moz-transform:rotate(270deg);
	-o-transform:rotate(270deg);
	-ms-transform:rotate(270deg);
	display: inline-block;
}
#simpleText_stacks_in_777218.inheritOff a, #simpleText_stacks_in_777218.inheritOff a:link {
	color: #169EE6;
	text-decoration: inherit;
	font-style: inherit;
	font-weight: normal;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;	
}
#simpleText_stacks_in_777218.inheritOff a:visited {
	color: #169EE6;
}
#simpleText_stacks_in_777218.inheritOff a:hover {
	color: #FF6600;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;
}
#simpleText_stacks_in_777218.inheritOff a:active {
	color: #FF6600;
}
#simpleText_stacks_in_777218.inheritOff a:focus {
	color: #FF6600;
	outline: none !important; /*For browsers that add an outline by default*/
} 
#simpleText_stacks_in_777218.optJustify {
	text-align: justify;
}

/* iPad Landscape */
@media (max-width : 1024px) {
	#simpleText_stacks_in_777218.reFontSizeOn {
		font-size: px;
		line-height: px;
	}
}
/* iPad Portrait */
@media (max-width : 768px) {
	#simpleText_stacks_in_777218.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
/* iPhone Landscape */
@media (max-width : 480px) {
	#simpleText_stacks_in_777218.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
/* iPhone Portrait */
@media (max-width : 320px) {
	#simpleText_stacks_in_777218.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}

/* =====================
 * PRO FEATURES
 ======================= */
#simpleText_stacks_in_777218 .fontFamilyOff,
#simpleText_stacks_in_777218 .fontFamilyOff *,
#simpleText_stacks_in_777218 .fontFamilyOff a {
	font-family: Arial;
}

#stacks_in_777218 {
	padding: 10px 0px 10px 0px;
}
/* 
 * Simple Text Pro
 * Author: Jeremy Hawes
 * Website: http://onelittledesigner.com/rapidweaver-stack/simple-text/
 * Support: http://forum.onelittledesigner.com
 * Verson: 2.0.3
 */

#simpleText_stacks_in_777220 {
	position: relative;
	color: #333333;
	text-shadow: ;
	-webkit-text-shadow: ;
	-moz-text-shadow: ;
	-o-text-shadow: ;
	-ms-text-shadow: ;
}
#simpleText_stacks_in_777220.fontSizeInheritOn {
	font-size: inherit;
}
#simpleText_stacks_in_777220.fontSizeInheritOff {
	font-size: 14px;
	line-height: 14px;
}
#simpleText_stacks_in_777220.letterSpacingOn {
	letter-spacing: 0px;
}
#simpleText_stacks_in_777220.lineHeightOn {
	line-height: 14px;
}
#simpleText_stacks_in_777220.rotateOn .insideText {
	-webkit-transform:rotate(270deg);
	-moz-transform:rotate(270deg);
	-o-transform:rotate(270deg);
	-ms-transform:rotate(270deg);
	display: inline-block;
}
#simpleText_stacks_in_777220.inheritOff a, #simpleText_stacks_in_777220.inheritOff a:link {
	color: #169EE6;
	text-decoration: inherit;
	font-style: inherit;
	font-weight: normal;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;	
}
#simpleText_stacks_in_777220.inheritOff a:visited {
	color: #169EE6;
}
#simpleText_stacks_in_777220.inheritOff a:hover {
	color: #FF6600;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;
}
#simpleText_stacks_in_777220.inheritOff a:active {
	color: #FF6600;
}
#simpleText_stacks_in_777220.inheritOff a:focus {
	color: #FF6600;
	outline: none !important; /*For browsers that add an outline by default*/
} 
#simpleText_stacks_in_777220.optJustify {
	text-align: justify;
}

/* iPad Landscape */
@media (max-width : 1024px) {
	#simpleText_stacks_in_777220.reFontSizeOn {
		font-size: px;
		line-height: px;
	}
}
/* iPad Portrait */
@media (max-width : 768px) {
	#simpleText_stacks_in_777220.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
/* iPhone Landscape */
@media (max-width : 480px) {
	#simpleText_stacks_in_777220.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
/* iPhone Portrait */
@media (max-width : 320px) {
	#simpleText_stacks_in_777220.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}

/* =====================
 * PRO FEATURES
 ======================= */
#simpleText_stacks_in_777220 .fontFamilyOff,
#simpleText_stacks_in_777220 .fontFamilyOff *,
#simpleText_stacks_in_777220 .fontFamilyOff a {
	font-family: Arial;
}

#stacks_in_777220 {
	padding:  5px;
}
/* Styled Stack v2.3.1 Copyright 2013 Joe Workman */
 #stacks_in_777222{behavior:url(/PIE/PIE.htc);       border-style:solid!important; }   

#stacks_in_777222 {
	padding:  20px;
}
/* Styled Stack v2.3.1 Copyright 2013 Joe Workman */
 #stacks_in_777223{behavior:url(/PIE/PIE.htc);       border-style:solid!important; }   

#stacks_in_777223 {
	border: solid rgba(0, 0, 0, 1.00);
	border-width:  1px;
	padding: 0px 20px 0px 20px;
}

#stacks_out_777223 {
	width: 82%;
}
/* 
 * Simple Text Pro
 * Author: Jeremy Hawes
 * Website: http://onelittledesigner.com/rapidweaver-stack/simple-text/
 * Support: http://forum.onelittledesigner.com
 * Verson: 2.0.3
 */

#simpleText_stacks_in_777226 {
	position: relative;
	color: #FD940A;
	text-shadow: ;
	-webkit-text-shadow: ;
	-moz-text-shadow: ;
	-o-text-shadow: ;
	-ms-text-shadow: ;
}
#simpleText_stacks_in_777226.fontSizeInheritOn {
	font-size: inherit;
}
#simpleText_stacks_in_777226.fontSizeInheritOff {
	font-size: 20px;
	line-height: 20px;
}
#simpleText_stacks_in_777226.letterSpacingOn {
	letter-spacing: 0px;
}
#simpleText_stacks_in_777226.lineHeightOn {
	line-height: 14px;
}
#simpleText_stacks_in_777226.rotateOn .insideText {
	-webkit-transform:rotate(270deg);
	-moz-transform:rotate(270deg);
	-o-transform:rotate(270deg);
	-ms-transform:rotate(270deg);
	display: inline-block;
}
#simpleText_stacks_in_777226.inheritOff a, #simpleText_stacks_in_777226.inheritOff a:link {
	color: #169EE6;
	text-decoration: inherit;
	font-style: inherit;
	font-weight: normal;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;	
}
#simpleText_stacks_in_777226.inheritOff a:visited {
	color: #169EE6;
}
#simpleText_stacks_in_777226.inheritOff a:hover {
	color: #FF6600;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;
}
#simpleText_stacks_in_777226.inheritOff a:active {
	color: #FF6600;
}
#simpleText_stacks_in_777226.inheritOff a:focus {
	color: #FF6600;
	outline: none !important; /*For browsers that add an outline by default*/
} 
#simpleText_stacks_in_777226.optJustify {
	text-align: justify;
}

/* iPad Landscape */
@media (max-width : 1024px) {
	#simpleText_stacks_in_777226.reFontSizeOn {
		font-size: px;
		line-height: px;
	}
}
/* iPad Portrait */
@media (max-width : 768px) {
	#simpleText_stacks_in_777226.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
/* iPhone Landscape */
@media (max-width : 480px) {
	#simpleText_stacks_in_777226.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
/* iPhone Portrait */
@media (max-width : 320px) {
	#simpleText_stacks_in_777226.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}

/* =====================
 * PRO FEATURES
 ======================= */
#simpleText_stacks_in_777226 .fontFamilyOff,
#simpleText_stacks_in_777226 .fontFamilyOff *,
#simpleText_stacks_in_777226 .fontFamilyOff a {
	font-family: Arial;
}

#stacks_in_777226 {
	padding: 10px 0px 10px 0px;
}
/* 
 * Simple Text Pro
 * Author: Jeremy Hawes
 * Website: http://onelittledesigner.com/rapidweaver-stack/simple-text/
 * Support: http://forum.onelittledesigner.com
 * Verson: 2.0.3
 */

#simpleText_stacks_in_777228 {
	position: relative;
	color: #333333;
	text-shadow: ;
	-webkit-text-shadow: ;
	-moz-text-shadow: ;
	-o-text-shadow: ;
	-ms-text-shadow: ;
}
#simpleText_stacks_in_777228.fontSizeInheritOn {
	font-size: inherit;
}
#simpleText_stacks_in_777228.fontSizeInheritOff {
	font-size: 14px;
	line-height: 14px;
}
#simpleText_stacks_in_777228.letterSpacingOn {
	letter-spacing: 0px;
}
#simpleText_stacks_in_777228.lineHeightOn {
	line-height: 14px;
}
#simpleText_stacks_in_777228.rotateOn .insideText {
	-webkit-transform:rotate(270deg);
	-moz-transform:rotate(270deg);
	-o-transform:rotate(270deg);
	-ms-transform:rotate(270deg);
	display: inline-block;
}
#simpleText_stacks_in_777228.inheritOff a, #simpleText_stacks_in_777228.inheritOff a:link {
	color: #169EE6;
	text-decoration: inherit;
	font-style: inherit;
	font-weight: normal;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;	
}
#simpleText_stacks_in_777228.inheritOff a:visited {
	color: #169EE6;
}
#simpleText_stacks_in_777228.inheritOff a:hover {
	color: #FF6600;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;
}
#simpleText_stacks_in_777228.inheritOff a:active {
	color: #FF6600;
}
#simpleText_stacks_in_777228.inheritOff a:focus {
	color: #FF6600;
	outline: none !important; /*For browsers that add an outline by default*/
} 
#simpleText_stacks_in_777228.optJustify {
	text-align: justify;
}

/* iPad Landscape */
@media (max-width : 1024px) {
	#simpleText_stacks_in_777228.reFontSizeOn {
		font-size: px;
		line-height: px;
	}
}
/* iPad Portrait */
@media (max-width : 768px) {
	#simpleText_stacks_in_777228.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
/* iPhone Landscape */
@media (max-width : 480px) {
	#simpleText_stacks_in_777228.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
/* iPhone Portrait */
@media (max-width : 320px) {
	#simpleText_stacks_in_777228.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}

/* =====================
 * PRO FEATURES
 ======================= */
#simpleText_stacks_in_777228 .fontFamilyOff,
#simpleText_stacks_in_777228 .fontFamilyOff *,
#simpleText_stacks_in_777228 .fontFamilyOff a {
	font-family: Arial;
}

#stacks_in_777228 {
	padding:  5px;
}
/* Styled Stack v2.3.1 Copyright 2013 Joe Workman */
 #stacks_in_777230{behavior:url(/PIE/PIE.htc);       border-style:solid!important; }   

#stacks_in_777230 {
	padding:  20px;
}
/* Styled Stack v2.3.1 Copyright 2013 Joe Workman */
 #stacks_in_777231{behavior:url(/PIE/PIE.htc);       border-style:solid!important; }   

#stacks_in_777231 {
	border: solid rgba(0, 0, 0, 1.00);
	border-width:  1px;
	padding: 0px 20px 0px 20px;
}

#stacks_out_777231 {
	width: 82%;
}
/* 
 * Simple Text Pro
 * Author: Jeremy Hawes
 * Website: http://onelittledesigner.com/rapidweaver-stack/simple-text/
 * Support: http://forum.onelittledesigner.com
 * Verson: 2.0.3
 */

#simpleText_stacks_in_777234 {
	position: relative;
	color: #FD940A;
	text-shadow: ;
	-webkit-text-shadow: ;
	-moz-text-shadow: ;
	-o-text-shadow: ;
	-ms-text-shadow: ;
}
#simpleText_stacks_in_777234.fontSizeInheritOn {
	font-size: inherit;
}
#simpleText_stacks_in_777234.fontSizeInheritOff {
	font-size: 20px;
	line-height: 20px;
}
#simpleText_stacks_in_777234.letterSpacingOn {
	letter-spacing: 0px;
}
#simpleText_stacks_in_777234.lineHeightOn {
	line-height: 14px;
}
#simpleText_stacks_in_777234.rotateOn .insideText {
	-webkit-transform:rotate(270deg);
	-moz-transform:rotate(270deg);
	-o-transform:rotate(270deg);
	-ms-transform:rotate(270deg);
	display: inline-block;
}
#simpleText_stacks_in_777234.inheritOff a, #simpleText_stacks_in_777234.inheritOff a:link {
	color: #169EE6;
	text-decoration: inherit;
	font-style: inherit;
	font-weight: normal;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;	
}
#simpleText_stacks_in_777234.inheritOff a:visited {
	color: #169EE6;
}
#simpleText_stacks_in_777234.inheritOff a:hover {
	color: #FF6600;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;
}
#simpleText_stacks_in_777234.inheritOff a:active {
	color: #FF6600;
}
#simpleText_stacks_in_777234.inheritOff a:focus {
	color: #FF6600;
	outline: none !important; /*For browsers that add an outline by default*/
} 
#simpleText_stacks_in_777234.optJustify {
	text-align: justify;
}

/* iPad Landscape */
@media (max-width : 1024px) {
	#simpleText_stacks_in_777234.reFontSizeOn {
		font-size: px;
		line-height: px;
	}
}
/* iPad Portrait */
@media (max-width : 768px) {
	#simpleText_stacks_in_777234.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
/* iPhone Landscape */
@media (max-width : 480px) {
	#simpleText_stacks_in_777234.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
/* iPhone Portrait */
@media (max-width : 320px) {
	#simpleText_stacks_in_777234.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}

/* =====================
 * PRO FEATURES
 ======================= */
#simpleText_stacks_in_777234 .fontFamilyOff,
#simpleText_stacks_in_777234 .fontFamilyOff *,
#simpleText_stacks_in_777234 .fontFamilyOff a {
	font-family: Arial;
}

#stacks_in_777234 {
	padding: 10px 0px 10px 0px;
}
/* 
 * Simple Text Pro
 * Author: Jeremy Hawes
 * Website: http://onelittledesigner.com/rapidweaver-stack/simple-text/
 * Support: http://forum.onelittledesigner.com
 * Verson: 2.0.3
 */

#simpleText_stacks_in_777236 {
	position: relative;
	color: #333333;
	text-shadow: ;
	-webkit-text-shadow: ;
	-moz-text-shadow: ;
	-o-text-shadow: ;
	-ms-text-shadow: ;
}
#simpleText_stacks_in_777236.fontSizeInheritOn {
	font-size: inherit;
}
#simpleText_stacks_in_777236.fontSizeInheritOff {
	font-size: 14px;
	line-height: 14px;
}
#simpleText_stacks_in_777236.letterSpacingOn {
	letter-spacing: 0px;
}
#simpleText_stacks_in_777236.lineHeightOn {
	line-height: 14px;
}
#simpleText_stacks_in_777236.rotateOn .insideText {
	-webkit-transform:rotate(270deg);
	-moz-transform:rotate(270deg);
	-o-transform:rotate(270deg);
	-ms-transform:rotate(270deg);
	display: inline-block;
}
#simpleText_stacks_in_777236.inheritOff a, #simpleText_stacks_in_777236.inheritOff a:link {
	color: #169EE6;
	text-decoration: inherit;
	font-style: inherit;
	font-weight: normal;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;	
}
#simpleText_stacks_in_777236.inheritOff a:visited {
	color: #169EE6;
}
#simpleText_stacks_in_777236.inheritOff a:hover {
	color: #FF6600;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;
}
#simpleText_stacks_in_777236.inheritOff a:active {
	color: #FF6600;
}
#simpleText_stacks_in_777236.inheritOff a:focus {
	color: #FF6600;
	outline: none !important; /*For browsers that add an outline by default*/
} 
#simpleText_stacks_in_777236.optJustify {
	text-align: justify;
}

/* iPad Landscape */
@media (max-width : 1024px) {
	#simpleText_stacks_in_777236.reFontSizeOn {
		font-size: px;
		line-height: px;
	}
}
/* iPad Portrait */
@media (max-width : 768px) {
	#simpleText_stacks_in_777236.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
/* iPhone Landscape */
@media (max-width : 480px) {
	#simpleText_stacks_in_777236.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
/* iPhone Portrait */
@media (max-width : 320px) {
	#simpleText_stacks_in_777236.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}

/* =====================
 * PRO FEATURES
 ======================= */
#simpleText_stacks_in_777236 .fontFamilyOff,
#simpleText_stacks_in_777236 .fontFamilyOff *,
#simpleText_stacks_in_777236 .fontFamilyOff a {
	font-family: Arial;
}

#stacks_in_777236 {
	padding:  5px;
}
/* Styled Stack v2.3.1 Copyright 2013 Joe Workman */
 #stacks_in_777238{behavior:url(/PIE/PIE.htc);       border-style:solid!important; }   

#stacks_in_777238 {
	padding:  20px;
}
/* Styled Stack v2.3.1 Copyright 2013 Joe Workman */
 #stacks_in_777239{behavior:url(/PIE/PIE.htc);       border-style:solid!important; }   

#stacks_in_777239 {
	border: solid rgba(0, 0, 0, 1.00);
	border-width:  1px;
	padding: 0px 20px 0px 20px;
}

#stacks_out_777239 {
	width: 82%;
}
/* 
 * Simple Text Pro
 * Author: Jeremy Hawes
 * Website: http://onelittledesigner.com/rapidweaver-stack/simple-text/
 * Support: http://forum.onelittledesigner.com
 * Verson: 2.0.3
 */

#simpleText_stacks_in_777242 {
	position: relative;
	color: #FD940A;
	text-shadow: ;
	-webkit-text-shadow: ;
	-moz-text-shadow: ;
	-o-text-shadow: ;
	-ms-text-shadow: ;
}
#simpleText_stacks_in_777242.fontSizeInheritOn {
	font-size: inherit;
}
#simpleText_stacks_in_777242.fontSizeInheritOff {
	font-size: 20px;
	line-height: 20px;
}
#simpleText_stacks_in_777242.letterSpacingOn {
	letter-spacing: 0px;
}
#simpleText_stacks_in_777242.lineHeightOn {
	line-height: 14px;
}
#simpleText_stacks_in_777242.rotateOn .insideText {
	-webkit-transform:rotate(270deg);
	-moz-transform:rotate(270deg);
	-o-transform:rotate(270deg);
	-ms-transform:rotate(270deg);
	display: inline-block;
}
#simpleText_stacks_in_777242.inheritOff a, #simpleText_stacks_in_777242.inheritOff a:link {
	color: #169EE6;
	text-decoration: inherit;
	font-style: inherit;
	font-weight: normal;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;	
}
#simpleText_stacks_in_777242.inheritOff a:visited {
	color: #169EE6;
}
#simpleText_stacks_in_777242.inheritOff a:hover {
	color: #FF6600;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;
}
#simpleText_stacks_in_777242.inheritOff a:active {
	color: #FF6600;
}
#simpleText_stacks_in_777242.inheritOff a:focus {
	color: #FF6600;
	outline: none !important; /*For browsers that add an outline by default*/
} 
#simpleText_stacks_in_777242.optJustify {
	text-align: justify;
}

/* iPad Landscape */
@media (max-width : 1024px) {
	#simpleText_stacks_in_777242.reFontSizeOn {
		font-size: px;
		line-height: px;
	}
}
/* iPad Portrait */
@media (max-width : 768px) {
	#simpleText_stacks_in_777242.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
/* iPhone Landscape */
@media (max-width : 480px) {
	#simpleText_stacks_in_777242.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
/* iPhone Portrait */
@media (max-width : 320px) {
	#simpleText_stacks_in_777242.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}

/* =====================
 * PRO FEATURES
 ======================= */
#simpleText_stacks_in_777242 .fontFamilyOff,
#simpleText_stacks_in_777242 .fontFamilyOff *,
#simpleText_stacks_in_777242 .fontFamilyOff a {
	font-family: Arial;
}

#stacks_in_777242 {
	padding: 10px 0px 10px 0px;
}
/* 
 * Simple Text Pro
 * Author: Jeremy Hawes
 * Website: http://onelittledesigner.com/rapidweaver-stack/simple-text/
 * Support: http://forum.onelittledesigner.com
 * Verson: 2.0.3
 */

#simpleText_stacks_in_777244 {
	position: relative;
	color: #333333;
	text-shadow: ;
	-webkit-text-shadow: ;
	-moz-text-shadow: ;
	-o-text-shadow: ;
	-ms-text-shadow: ;
}
#simpleText_stacks_in_777244.fontSizeInheritOn {
	font-size: inherit;
}
#simpleText_stacks_in_777244.fontSizeInheritOff {
	font-size: 14px;
	line-height: 14px;
}
#simpleText_stacks_in_777244.letterSpacingOn {
	letter-spacing: 0px;
}
#simpleText_stacks_in_777244.lineHeightOn {
	line-height: 14px;
}
#simpleText_stacks_in_777244.rotateOn .insideText {
	-webkit-transform:rotate(270deg);
	-moz-transform:rotate(270deg);
	-o-transform:rotate(270deg);
	-ms-transform:rotate(270deg);
	display: inline-block;
}
#simpleText_stacks_in_777244.inheritOff a, #simpleText_stacks_in_777244.inheritOff a:link {
	color: #169EE6;
	text-decoration: inherit;
	font-style: inherit;
	font-weight: normal;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;	
}
#simpleText_stacks_in_777244.inheritOff a:visited {
	color: #169EE6;
}
#simpleText_stacks_in_777244.inheritOff a:hover {
	color: #FF6600;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;
}
#simpleText_stacks_in_777244.inheritOff a:active {
	color: #FF6600;
}
#simpleText_stacks_in_777244.inheritOff a:focus {
	color: #FF6600;
	outline: none !important; /*For browsers that add an outline by default*/
} 
#simpleText_stacks_in_777244.optJustify {
	text-align: justify;
}

/* iPad Landscape */
@media (max-width : 1024px) {
	#simpleText_stacks_in_777244.reFontSizeOn {
		font-size: px;
		line-height: px;
	}
}
/* iPad Portrait */
@media (max-width : 768px) {
	#simpleText_stacks_in_777244.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
/* iPhone Landscape */
@media (max-width : 480px) {
	#simpleText_stacks_in_777244.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
/* iPhone Portrait */
@media (max-width : 320px) {
	#simpleText_stacks_in_777244.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}

/* =====================
 * PRO FEATURES
 ======================= */
#simpleText_stacks_in_777244 .fontFamilyOff,
#simpleText_stacks_in_777244 .fontFamilyOff *,
#simpleText_stacks_in_777244 .fontFamilyOff a {
	font-family: Arial;
}

#stacks_in_777244 {
	padding:  5px;
}
#stacks_in_777174 .flat_button_2_alignment {
  font-size: 15px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_777174 a,
#stacks_in_777174 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 4px;
  
  overflow: hidden;
  height: 65px;
  line-height: 65px;
  text-decoration: none;
    
    border-width: 0px;
    
  border-style: solid;
  border-color: rgba(0, 84, 123, 1.00);

  

}


#stacks_in_777174 a .flat_button_2_text {
  padding-left: 15px;
  padding-right: 15px;
  text-align: center !important;
  
}


#stacks_in_777174 a i,
#stacks_in_777174 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 65px;
  height: 65px;
  line-height: 65px;

  
    float: left;
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_777174 a,
  #stacks_in_777174 a:visited {
    background-color: rgba(0, 175, 0, 1.00);
    color: rgba(254, 252, 255, 1.00) !important;
  }

  #stacks_in_777174 a:hover,
  #stacks_in_777174 a:active {
    background-color: rgba(0, 131, 0, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_777174 a i,
  #stacks_in_777174 a:visited i {
    background-color: rgba(202, 0, 0, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_777174 a:hover i,
  #stacks_in_777174 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }










  /* Flexible Width Mode */
  #stacks_in_777174 a,
  #stacks_in_777174 a:visited {
      width: 100%;
  }

  







#stacks_in_777174 {
	padding: 30px 0px 5px 0px;
}

#stacks_out_777174 {
	width: 95%;
}
/* Styled Stack v2.3.1 Copyright 2013 Joe Workman */
 #stacks_in_777247{behavior:url(/PIE/PIE.htc);       border-style:solid!important; }   

#stacks_in_777247 {
	padding: 30px 0px 30px 0px;
}

/* -- === Start of Hauler 1.5.0 [stacks_in_776906_52797] === */

/* -- === End of Hauler 1.5.0 [stacks_in_776906_52797] === */



#stacks_in_776906_52799_54243 {
	padding:  20px;
}
#stacks_in_776906_52799_52468 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_776906_52799_52468 .jwresp_col{float:none} #stacks_in_776906_52799_52468 #jwresp_col2_stacks_in_776906_52799_52468{position:relative;margin:0 auto;width:32%;float:none}#stacks_in_776906_52799_52468 #jwresp_col1_stacks_in_776906_52799_52468,#stacks_in_776906_52799_52468 #jwresp_col3_stacks_in_776906_52799_52468{width:32%}#stacks_in_776906_52799_52468 #jwresp_col1_stacks_in_776906_52799_52468{float:left}#stacks_in_776906_52799_52468 #jwresp_col3_stacks_in_776906_52799_52468{float:right} @media screen and (max-width:770px){#stacks_in_776906_52799_52468 #jwresp_col1_stacks_in_776906_52799_52468,#stacks_in_776906_52799_52468 #jwresp_col3_stacks_in_776906_52799_52468{margin-bottom:20px}#stacks_in_776906_52799_52468 #jwresp_col1_stacks_in_776906_52799_52468{width:49%}#stacks_in_776906_52799_52468 #jwresp_col3_stacks_in_776906_52799_52468{width:49%}#stacks_in_776906_52799_52468 #jwresp_col2_stacks_in_776906_52799_52468{clear:both;width:100%;display:block}}  @media screen and (max-width:500px){#stacks_in_776906_52799_52468 #jwresp_col1_stacks_in_776906_52799_52468,#stacks_in_776906_52799_52468 #jwresp_col3_stacks_in_776906_52799_52468,#stacks_in_776906_52799_52468 #jwresp_col2_stacks_in_776906_52799_52468{float:none;width:100%;display:block}#stacks_in_776906_52799_52468 #jwresp_col1_stacks_in_776906_52799_52468,#stacks_in_776906_52799_52468 #jwresp_col3_stacks_in_776906_52799_52468{margin-bottom:20px}} 

#stacks_in_776906_52799_52468 {
	padding:  12px;
}

#stacks_out_776906_52799_52468 {
	width: 90%;
}
#stacks_in_776906_52799_54248>.s3_row {
	margin: 0 -0px;
}

#stacks_in_776906_52799_54248>.s3_row>.s3_column_left {
	width: 33.33%;
}

#stacks_in_776906_52799_54248>.s3_row>.s3_column_center {
	width: 33.339996%;
}

#stacks_in_776906_52799_54248>.s3_row>.s3_column_right {
	width: 33.33%;
}

#stacks_in_776906_52799_54248>.s3_row>.s3_column {
	padding: 0 0px;
}








@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_776906_52799_54248>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_776906_52799_54248>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}




#stacks_in_776906_52799_54248 {
	padding: 25px 0px 0px 0px;
}

#stacks_out_776906_52799_54248 {
	width: 200px;
	margin-left:0;
}
#stacks_in_776906_52799_54247 .flat_button_2_alignment {
  font-size: 28px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_776906_52799_54247 a,
#stacks_in_776906_52799_54247 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 4px;
  
  overflow: hidden;
  height: 55px;
  line-height: 55px;
  text-decoration: none;
    
    border-width: 0px;
    
  border-style: solid;
  border-color: rgba(0, 84, 123, 1.00);

  

}


#stacks_in_776906_52799_54247 a .flat_button_2_text {
  padding-left: 40px;
  padding-right: 40px;
  text-align: center !important;
  
  display: none;
  
}


#stacks_in_776906_52799_54247 a i,
#stacks_in_776906_52799_54247 a:visited i {
  font-size: 42px;
  display: inline-block;
  text-align: center;
  width: 55px;
  height: 55px;
  line-height: 55px;

  
    float: left;
    
  

  

  
    float: none;
  
}







  /* Flat Color Mode */
  #stacks_in_776906_52799_54247 a,
  #stacks_in_776906_52799_54247 a:visited {
    background-color: rgba(0, 0, 0, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_776906_52799_54247 a:hover,
  #stacks_in_776906_52799_54247 a:active {
    background-color: rgba(0, 0, 0, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_776906_52799_54247 a i,
  #stacks_in_776906_52799_54247 a:visited i {
    background-color: rgba(0, 0, 0, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_776906_52799_54247 a:hover i,
  #stacks_in_776906_52799_54247 a:active i {
    background-color: rgba(0, 0, 0, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }












  /* Responsive Width Mode */
  @media (max-width: 47.9em) {
    #stacks_in_776906_52799_54247 a,
    #stacks_in_776906_52799_54247 a:visited {
      width: 100%;
    }
  }

  
  @media (max-width: 47.9em) {
    #stacks_in_776906_52799_54247 a i,
    #stacks_in_776906_52799_54247 a:visited i {
      width: 100%;
    }
  }
  




#stacks_in_776906_52799_54252 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_776906_52799_54252 a,
#stacks_in_776906_52799_54252 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 4px;
  
  overflow: hidden;
  height: 55px;
  line-height: 55px;
  text-decoration: none;
    
    border-width: 0px;
    
  border-style: solid;
  border-color: rgba(0, 84, 123, 1.00);

  

}


#stacks_in_776906_52799_54252 a .flat_button_2_text {
  padding-left: 40px;
  padding-right: 40px;
  text-align: center !important;
  
  display: none;
  
}


#stacks_in_776906_52799_54252 a i,
#stacks_in_776906_52799_54252 a:visited i {
  font-size: 44px;
  display: inline-block;
  text-align: center;
  width: 55px;
  height: 55px;
  line-height: 55px;

  
    float: left;
    
  

  

  
    float: none;
  
}







  /* Flat Color Mode */
  #stacks_in_776906_52799_54252 a,
  #stacks_in_776906_52799_54252 a:visited {
    background-color: rgba(26, 26, 26, 1.00);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_776906_52799_54252 a:hover,
  #stacks_in_776906_52799_54252 a:active {
    background-color: rgba(26, 26, 26, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_776906_52799_54252 a i,
  #stacks_in_776906_52799_54252 a:visited i {
    background-color: rgba(0, 0, 0, 1.00);
    color: rgba(254, 252, 255, 1.00);
  }

  #stacks_in_776906_52799_54252 a:hover i,
  #stacks_in_776906_52799_54252 a:active i {
    background-color: rgba(254, 252, 255, 1.00);
    color: rgba(254, 252, 255, 1.00);
  }












  /* Responsive Width Mode */
  @media (max-width: 47.9em) {
    #stacks_in_776906_52799_54252 a,
    #stacks_in_776906_52799_54252 a:visited {
      width: 100%;
    }
  }

  
  @media (max-width: 47.9em) {
    #stacks_in_776906_52799_54252 a i,
    #stacks_in_776906_52799_54252 a:visited i {
      width: 100%;
    }
  }
  




#stacks_in_776906_52799_54254 .flat_button_2_alignment {
  font-size: 28px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_776906_52799_54254 a,
#stacks_in_776906_52799_54254 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 4px;
  
  overflow: hidden;
  height: 55px;
  line-height: 55px;
  text-decoration: none;
    
    border-width: 0px;
    
  border-style: solid;
  border-color: rgba(0, 84, 123, 1.00);

  

}


#stacks_in_776906_52799_54254 a .flat_button_2_text {
  padding-left: 40px;
  padding-right: 40px;
  text-align: center !important;
  
  display: none;
  
}


#stacks_in_776906_52799_54254 a i,
#stacks_in_776906_52799_54254 a:visited i {
  font-size: 42px;
  display: inline-block;
  text-align: center;
  width: 55px;
  height: 55px;
  line-height: 55px;

  
    float: left;
    
  

  

  
    float: none;
  
}







  /* Flat Color Mode */
  #stacks_in_776906_52799_54254 a,
  #stacks_in_776906_52799_54254 a:visited {
    background-color: rgba(0, 0, 0, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_776906_52799_54254 a:hover,
  #stacks_in_776906_52799_54254 a:active {
    background-color: rgba(0, 0, 0, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_776906_52799_54254 a i,
  #stacks_in_776906_52799_54254 a:visited i {
    background-color: rgba(0, 0, 0, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_776906_52799_54254 a:hover i,
  #stacks_in_776906_52799_54254 a:active i {
    background-color: rgba(0, 0, 0, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }












  /* Responsive Width Mode */
  @media (max-width: 47.9em) {
    #stacks_in_776906_52799_54254 a,
    #stacks_in_776906_52799_54254 a:visited {
      width: 100%;
    }
  }

  
  @media (max-width: 47.9em) {
    #stacks_in_776906_52799_54254 a i,
    #stacks_in_776906_52799_54254 a:visited i {
      width: 100%;
    }
  }
  





#stacks_in_776906_52799_54245 {
	padding: 20px 20px 80px 20px;
}
