/* 
WHW edits
- Remove retina @media block at the bottom
- Remove '.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading { background: url(icons/loading.gif) no-repeat 50% 50%; }'
- Remove 'background-image: url(icons/next.png);'
- Remove 'background-image: url(icons/prev.png);'
- Remove 'background: url(icons/close.png) no-repeat 5px 5px;'
- Remove default theme
*/


/*
 * Nivo Lightbox v1.2.0
 * http://dev7studios.com/nivo-lightbox
 *
 * Copyright 2013, Dev7studios
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */

.nivo-lightbox-overlay {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99998;
	width: 100%;
	height: 100%;
	overflow: hidden;
	visibility: hidden;
	opacity: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.nivo-lightbox-overlay.nivo-lightbox-open {
	visibility: visible;
	opacity: 1;
}
.nivo-lightbox-wrap  {
	position: absolute;
	top: 10%;
	bottom: 10%;
	left: 10%;
	right: 10%;
}
.nivo-lightbox-content {
	width: 100%;
	height: 100%;
}
.nivo-lightbox-title-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 99999;
	text-align: center;
}
.nivo-lightbox-nav { display: none; }
.nivo-lightbox-prev {
	position: absolute;
	top: 50%;
	left: 0;
}
.nivo-lightbox-next {
	position: absolute;
	top: 50%;
	right: 0;
}
.nivo-lightbox-close {
	position: absolute;
	top: 2%;
	right: 2%;
}

.nivo-lightbox-image { text-align: center; }
.nivo-lightbox-image img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	vertical-align: middle;
}

.nivo-lightbox-html5audio {
	width: 100%;
}

.nivo-lightbox-html5video {
	background: #000;
}

.nivo-lightbox-html5audio,
.nivo-lightbox-html5video {
	position: absolute;
	z-index: 99999;
	max-width: 100%;
	max-height: 100%;
	display: inline-block;
	top: 50%;
	left: 50%;
	-webkit-transform: translateY(-50%) translateX(-50%);
	-ms-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	vertical-align: middle;
}

.nivo-lightbox-content iframe {
	width: 100%;
	height: 100%;
}
.nivo-lightbox-inline,
.nivo-lightbox-ajax {
	max-height: 100%;
	overflow: auto;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	/* https://bugzilla.mozilla.org/show_bug.cgi?id=308801 */
}
.nivo-lightbox-error {
	display: table;
	text-align: center;
	width: 100%;
	height: 100%;
	color: #fff;
	text-shadow: 0 1px 1px #000;
}
.nivo-lightbox-error p {
	display: table-cell;
	vertical-align: middle;
}

/* Effects
 **********************************************/
.nivo-lightbox-notouch .nivo-lightbox-effect-fade,
.nivo-lightbox-notouch .nivo-lightbox-effect-fadeScale,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideLeft,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideRight,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideUp,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideDown,
.nivo-lightbox-notouch .nivo-lightbox-effect-fall {
	-webkit-transition: all 0.2s ease-in-out;
	   -moz-transition: all 0.2s ease-in-out;
	    -ms-transition: all 0.2s ease-in-out;
	     -o-transition: all 0.2s ease-in-out;
	        transition: all 0.2s ease-in-out;
}

/* fadeScale */
.nivo-lightbox-effect-fadeScale .nivo-lightbox-wrap {
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
	    -ms-transition: all 0.3s;
	     -o-transition: all 0.3s;
	        transition: all 0.3s;
	-webkit-transform: scale(0.7);
	   -moz-transform: scale(0.7);
	    -ms-transform: scale(0.7);
	        transform: scale(0.7);
}
.nivo-lightbox-effect-fadeScale.nivo-lightbox-open .nivo-lightbox-wrap {
	-webkit-transform: scale(1);
	   -moz-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);
}

/* slideLeft / slideRight / slideUp / slideDown */
.nivo-lightbox-effect-slideLeft .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideRight .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideUp .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideDown .nivo-lightbox-wrap {
	-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);
	    -ms-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
	     -o-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);
}
.nivo-lightbox-effect-slideLeft .nivo-lightbox-wrap {
	-webkit-transform: translateX(-10%);
	   -moz-transform: translateX(-10%);
	    -ms-transform: translateX(-10%);
	        transform: translateX(-10%);
}
.nivo-lightbox-effect-slideRight .nivo-lightbox-wrap {
	-webkit-transform: translateX(10%);
	   -moz-transform: translateX(10%);
	    -ms-transform: translateX(10%);
	        transform: translateX(10%);
}
.nivo-lightbox-effect-slideLeft.nivo-lightbox-open .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideRight.nivo-lightbox-open .nivo-lightbox-wrap {
	-webkit-transform: translateX(0);
	   -moz-transform: translateX(0);
	    -ms-transform: translateX(0);
	        transform: translateX(0);
}
.nivo-lightbox-effect-slideDown .nivo-lightbox-wrap {
	-webkit-transform: translateY(-10%);
	   -moz-transform: translateY(-10%);
	    -ms-transform: translateY(-10%);
	        transform: translateY(-10%);
}
.nivo-lightbox-effect-slideUp .nivo-lightbox-wrap {
	-webkit-transform: translateY(10%);
	   -moz-transform: translateY(10%);
	    -ms-transform: translateY(10%);
	        transform: translateY(10%);
}
.nivo-lightbox-effect-slideUp.nivo-lightbox-open .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideDown.nivo-lightbox-open .nivo-lightbox-wrap {
	-webkit-transform: translateY(0);
	   -moz-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
}

/* fall */
.nivo-lightbox-body-effect-fall .nivo-lightbox-effect-fall {
	-webkit-perspective: 1000px;
	   -moz-perspective: 1000px;
	        perspective: 1000px;
}
.nivo-lightbox-effect-fall .nivo-lightbox-wrap {
	-webkit-transition: all 0.3s ease-out;
	   -moz-transition: all 0.3s ease-out;
	    -ms-transition: all 0.3s ease-out;
	     -o-transition: all 0.3s ease-out;
	        transition: all 0.3s ease-out;
	-webkit-transform: translateZ(300px);
	   -moz-transform: translateZ(300px);
	    -ms-transform: translateZ(300px);
	        transform: translateZ(300px);
}
.nivo-lightbox-effect-fall.nivo-lightbox-open .nivo-lightbox-wrap {
	-webkit-transform: translateZ(0);
	   -moz-transform: translateZ(0);
	    -ms-transform: translateZ(0);
	        transform: translateZ(0);
}


.nimblehost_myMenuOuterWrapper_stacks_in_31904 { 
	margin: 0;
	padding: 0;
	
	position: fixed;
	
	z-index: 999; 
	
	top: 0.00%;
	left: 0.00%;
	
	
	width: 100%;
	text-align: center;
	
	
	font-size: 14px;
	
	
		
		
		
		
		
		
	font-family: "Lucida Grande", "Lucida Sans Unicode", sans-serif;
		
		
		
		
		
		
	
}

.nimblehost_myMenuInnerWrapper_stacks_in_31904, .nimblehost_myMenu_stacks_in_31904 ul ul, .nimblehost_myMenuInnerWrapper_stacks_in_31904 .myMenu_mobileToggle p { 
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	-ms-border-radius: 0px;
	border-radius: 0px;
}

.nimblehost_myMenuInnerWrapper_stacks_in_31904 {
	-webkit-box-shadow: 0 0 5px black;-moz-box-shadow: 0 0 5px black;-ms-box-shadow: 0 0 5px black;box-shadow: 0 0 5px black;
	
	background-color: #FFFFFF;
	background: linear-gradient(bottom, #FFFFFF 0%, #FFFFFF 100%);
	background: -o-linear-gradient(bottom, #FFFFFF 0%, #FFFFFF 100%);
	background: -moz-linear-gradient(bottom, #FFFFFF 0%, #FFFFFF 100%);
	background: -moz-linear-gradient(100% 100% 90deg, #FFFFFF, #FFFFFF);
	background: -webkit-linear-gradient(bottom, #FFFFFF 0%, #FFFFFF 100%);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#FFFFFF), to(#FFFFFF));
	background: -ms-linear-gradient(bottom, #FFFFFF 0%, #FFFFFF 100%);
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#FFFFFF, endColorstr=#FFFFFF)";/* For IE 8 */
	
}
@-moz-document url-prefix() {  }
.nimblehost_myMenuLabel_stacks_in_31904 {
	
	display: none;
	
	color: #000000;
}

.nimblehost_myMenu_stacks_in_31904 { 
	padding: 0 5px;
	
	
}
.nimblehost_myMenu_stacks_in_31904 ul { 
	margin: 0 !important;
	padding: 0 !important;
	position: relative;
	width: auto;
	
	
	min-height: 33px;
	
	
}

.nimblehost_myMenu_stacks_in_31904 ul li, .customMenuItems li { 
	margin: 0 !important;
	padding: 0 !important;
	list-style: none;
	display: block;
	background-image: none !important;
	position: relative;
	
	display: inline-block;
	
}

.customMenuItems, .customMenuItems .stacks_out, .customMenuItems .stacks_in {
	display: block;
	
	display: inline;
	
}
/*JD*/
.nimblehost_myMenu_stacks_in_31904 ul li a, .customMenuItems li a { 
	margin: 0;
	padding: 0 20px; 
	display: block;
	text-align: left;
	text-decoration: none;
	line-height: 33px;
	color: #333333;
	
	
	False
	zoom: 1;
}
.nimblehost_myMenu_stacks_in_31904 ul li a:hover, .customMenuItems li a:hover { 
	color: #000000;
	background-color: #818181;
}
	
.nimblehost_myMenu_stacks_in_31904 ul li a:active, .customMenuItems li a:active {

}
.nimblehost_myMenu_stacks_in_31904 ul li a#current, .nimblehost_myMenu_stacks_in_31904 ul li a.current, .nimblehost_myMenu_stacks_in_31904 ul li a.currentAncestor {
	padding-top: 0;
	padding-bottom: 0;
	background-color: #BFBFBF;
	color: #FFFFFF;
	border: none;
}

.nimblehost_myMenu_stacks_in_31904 ul li.ddarrow a { padding-right: 22px !important; }
.nimblehost_myMenu_stacks_in_31904 ul ul li.ddarrow a { padding-right: 12px !important; }

.nimblehost_myMenu_stacks_in_31904 ul li.ddarrow .childIndicator, .nimblehost_myMenu_stacks_in_31904 ul .customMenuItems li.ddarrow .childIndicator { 
	position:absolute;
	top:8px;
	right:3px;
	float:right;
	height: 17px;
	width: 17px;
	background: transparent url(../files/ddarrowDown.png) center center no-repeat;
}

.nimblehost_myMenu_stacks_in_31904 ul ul li.ddarrow .childIndicator, .nimblehost_myMenu_stacks_in_31904 ul .customMenuItems ul li.ddarrow .childIndicator {
	background-image: url(../files/ddarrow.png);
}

.nimblehost_myMenu_stacks_in_31904 .customMenuItems .stacks_out, .nimblehost_myMenu_stacks_in_31904 .customMenuItems .stacks_in { overflow: visible; }

/* Second Level Menu Items */
.nimblehost_myMenu_stacks_in_31904 ul ul {
	border: none;
	margin: 0;
	padding: 5px 0 !important;
	height: auto;
	position: absolute;
    top: 36px;
	width: 180px;
	z-index: 1000; 
	top: 33px;
	left: 0;
	display: none;
	-webkit-box-shadow: 0 0 5px black;-moz-box-shadow: 0 0 5px black;-ms-box-shadow: 0 0 5px black;box-shadow: 0 0 5px black;
	
		
		background-color: #FFFFFF;
		background: linear-gradient(bottom, #FFFFFF 0%, #FFFFFF 100%);
		background: -o-linear-gradient(bottom, #FFFFFF 0%, #FFFFFF 100%);
		background: -moz-linear-gradient(bottom, #FFFFFF 0%, #FFFFFF 100%);
		background: -moz-linear-gradient(100% 100% 90deg, #FFFFFF, #FFFFFF);
		background: -webkit-linear-gradient(bottom, #FFFFFF 0%, #FFFFFF 100%);
		background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#FFFFFF), to(#FFFFFF));
		background: -ms-linear-gradient(bottom, #FFFFFF 0%, #FFFFFF 100%);
		-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#FFFFFF, endColorstr=#FFFFFF)";/* For IE 8 */
		
	
}

.nimblehost_myMenu_stacks_in_31904 ul ul li { 
	
	display: block;
	
}

.nimblehost_myMenu_stacks_in_31904 ul ul li a { 
	width: auto;
	
		
		border-top: solid 1px #FFFFFF;
		border-bottom: solid 1px #F2F2F2;
		color: #000000;
		
	
	
	False
}


.nimblehost_myMenu_stacks_in_31904 ul ul li a:hover, .customMenuItems ul li a:hover { 
	color: #FFFFFF;
	background-color: #999999;
}
.nimblehost_myMenu_stacks_in_31904 ul ul li a#current, .nimblehost_myMenu_stacks_in_31904 ul ul li a.current, .nimblehost_myMenu_stacks_in_31904 ul li a.currentAncestor {
	background-color: #BEBEBE;
	color: #FFFFFF;
}


.nimblehost_myMenu_stacks_in_31904 ul ul ul {
	top: -5px;
	left: 180px;
	padding: 5px 0 !important;
}



.nimblehost_myMenuInnerWrapper_stacks_in_31904 .myMenu_mobileToggle { display: none; }


@media screen and (max-width: 480px), (device-height: 568px) and (-webkit-min-device-pixel-ratio: 2) {
	.nimblehost_myMenuOuterWrapper_stacks_in_31904, .nimblehost_myMenuOuterWrapper_stacks_in_31904[style] {
		position: absolute !important; top: 0; bottom: auto; left: 0 !important; width: 100% !important;
		top: 44px;
	}

	.nimblehost_myMenuInnerWrapper_stacks_in_31904 .subMenuBackground { display: none; }

	.nimblehost_myMenuLabel_stacks_in_31904 { display: none; }

	.nimblehost_myMenu_stacks_in_31904 { padding: 5px 0; }

	.nimblehost_myMenu_stacks_in_31904 ul, .nimblehost_myMenu_stacks_in_31904 ul ul { width: 100% !important; }

	.nimblehost_myMenu_stacks_in_31904 ul li, .customMenuItems li, .customMenuItems, .customMenuItems .stacks_out, .customMenuItems .stacks_in { display: block; }

	.nimblehost_myMenu_stacks_in_31904 ul li a, .customMenuItems li a { color: #333333; border-top: solid 1px #FFFFFF; border-bottom: solid 1px #1E1E1E; False }

	.nimblehost_myMenu_stacks_in_31904 ul ul, .nimblehost_myMenu_stacks_in_31904 ul ul ul { position: relative !important; left: auto !important; top: auto !important; height: auto !important; padding: 0 !important; margin: 0; background: transparent; -webkit-border-radius: 0; -moz-border-radius: 0; -ms-border-radius: 0; border-radius: 0; -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; box-shadow: none; }

	.nimblehost_myMenu_stacks_in_31904 ul ul ul {
		width: 100%; position: relative; -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; -o-box-shadow: none; box-shadow: none; top: auto; left: auto;
	}
	.nimblehost_myMenu_stacks_in_31904 ul ul li { display: block; }

	.nimblehost_myMenu_stacks_in_31904 ul ul li a { padding-left: 20px; color: #333333 ; }
	.nimblehost_myMenu_stacks_in_31904 ul ul ul li a { padding-left: 40px; }
	.nimblehost_myMenu_stacks_in_31904 ul ul ul ul li a { padding-left: 60px; }
	.nimblehost_myMenu_stacks_in_31904 ul ul ul ul ul li a { padding-left: 80px; }
	.nimblehost_myMenu_stacks_in_31904 ul ul ul ul ul ul li a { padding-left: 100px; }
	.nimblehost_myMenu_stacks_in_31904 ul ul ul ul ul ul ul li a { padding-left: 120px; }
	.nimblehost_myMenu_stacks_in_31904 ul ul ul ul ul ul ul ul li a { padding-left: 140px; }
	.nimblehost_myMenu_stacks_in_31904 ul ul ul ul ul ul ul ul ul li a { padding-left: 160px; }
	.nimblehost_myMenu_stacks_in_31904 ul ul ul ul ul ul ul ul ul ul li a { padding-left: 180px; }

	.nimblehost_myMenu_stacks_in_31904 ul li.ddarrow .childIndicator, .nimblehost_myMenu_stacks_in_31904 ul ul li.ddarrow .childIndicator, .nimblehost_myMenu_stacks_in_31904 ul .customMenuItems li.ddarrow .childIndicator { width: 17px; background-image: url(../files/ddarrowDown.png); }

	.nimblehost_myMenuInnerWrapper_stacks_in_31904 .myMenu_mobileToggle {
		margin: 0; padding: 0; display: block; color: #000000; position: fixed; z-index: 1000;
		top: 0;
		
		left: 0;
		
		

	}

	.nimblehost_myMenuInnerWrapper_stacks_in_31904 .myMenu_mobileToggle p {
		margin: 0; padding: 10px 5px; height: 23px; text-align: left;
		
		background: linear-gradient(bottom, #FFFFFF 0%, #FFFFFF 100%);
		background: -o-linear-gradient(bottom, #FFFFFF 0%, #FFFFFF 100%);
		background: -moz-linear-gradient(bottom, #FFFFFF 0%, #FFFFFF 100%);
		background: -moz-linear-gradient(100% 100% 90deg, #FFFFFF, #FFFFFF);
		background: -webkit-linear-gradient(bottom, #FFFFFF 0%, #FFFFFF 100%);
		background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#FFFFFF), to(#FFFFFF));
		background: -ms-linear-gradient(bottom, #FFFFFF 0%, #FFFFFF 100%);
		-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#FFFFFF, endColorstr=#FFFFFF)";/* For IE 8 */
		
		-webkit-box-shadow: 0 0 5px black;-moz-box-shadow: 0 0 5px black;-ms-box-shadow: 0 0 5px black;box-shadow: 0 0 5px black;
	}

	.nimblehost_myMenuInnerWrapper_stacks_in_31904 .myMenu_mobileToggle .mt-bar-wrapper { display: inline-block; width: 30px; }

	.nimblehost_myMenuInnerWrapper_stacks_in_31904 .myMenu_mobileToggle .mt-bar { display: block; margin: 2px 5px; width: 20px; height: 3px; border-radius: 2px; background-color: #CD750C; border-top: solid 1px #663A06; border-bottom: solid 1px #FFAF12; }

	.nimblehost_myMenu_stacks_in_31904 { padding-top: 5px; display: none; }
}





#usefulStackWrapperstacks_in_33015 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_33015 {
	padding-bottom: 3%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_33015 {
		display: none;
	}
}













#stacks_in_33025 {
	padding: 33px 0px 0px 0px;
}
#usefulStackWrapperstacks_in_33017 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_33017 {
	padding-bottom: 2%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_33017 {
		display: none;
	}
}












#usefulStackWrapperstacks_in_33009 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_33009 {
	padding-bottom: 1%;
	padding-top: 1%;
	padding-left: 3%;
	padding-right: 3%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_33009 {
		display: none;
	}
}













#stacks_in_33009 {
	background-color: rgba(249, 249, 249, 1.00);
	border: solid rgba(209, 209, 209, 1.00);
	border-width:  1px;
	-moz-border-radius:  5px;
	-webkit-border-radius:  5px;
	border-radius:  5px;
}

#stacks_out_33009 {
	width: 87%;
}
/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}



#stacks_in_33019 {
	background-color: rgba(248, 248, 248, 1.00);
	-moz-border-radius: 5px 5px 5px 5px;
	-webkit-border-radius: 5px 5px 5px 5px;
	border-radius: 5px 5px 5px 5px;
}
#usefulStackWrapperstacks_in_33356 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_33356 {
	padding-bottom: 1%;
	padding-top: 1%;
	padding-left: 3%;
	padding-right: 3%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_33356 {
		display: none;
	}
}













#stacks_in_33356 {
	background-color: rgba(249, 249, 249, 1.00);
	border: solid rgba(209, 209, 209, 1.00);
	border-width:  1px;
	-moz-border-radius:  5px;
	-webkit-border-radius:  5px;
	border-radius:  5px;
}

#stacks_out_33356 {
	width: 87%;
}
/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}



#stacks_in_33357 {
	background-color: rgba(248, 248, 248, 1.00);
	-moz-border-radius: 5px 5px 5px 5px;
	-webkit-border-radius: 5px 5px 5px 5px;
	border-radius: 5px 5px 5px 5px;
}
#usefulStackWrapperstacks_in_33176 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_33176 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 1%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_33176 {
		display: none;
	}
}













#stacks_out_33176 {
	width: 90%;
}
/* @group CSS Reset & Box Sizing */

#adaptiveGridstacks_in_33040 *,
#adaptiveGridstacks_in_33040 *:before,
#adaptiveGridstacks_in_33040 *:after {
	box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
}

#adaptiveGridstacks_in_33040 {
	display: block;
}

/*  */
#adaptiveGridstacks_in_33040 {
	visibility: hidden;
}
/*  */

#adaptiveGridstacks_in_33040:before {
	display: table;
	content: " ";	
}

#adaptiveGridstacks_in_33040 .adaptiveGridColumn {
	overflow: visible;
}

/*  */
#adaptiveGridstacks_in_33040 img {
	max-width: 100%;
	height: auto;
}
/*  */

#adaptiveGridstacks_in_33040 .adaptiveGridColumn {
	display: inline-block;
	float: left;
}

/* @end */

/* @group Column Padding Settings */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_33040 .gridCellInner {
		padding: 0px;
	}
	
	#adaptiveGridstacks_in_33040 {
		margin-left: -0px;
	}
	
	#adaptiveGridstacks_in_33040 {
		margin-right: -0px;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_33040 .gridCellInner {
		padding: 2px;
	}
	
	#adaptiveGridstacks_in_33040 {
		margin-left: -2px;
	}
	
	#adaptiveGridstacks_in_33040 {
		margin-right: -2px;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_33040 .gridCellInner {
		padding: 4px;
	}
	
	#adaptiveGridstacks_in_33040 {
		margin-left: -4px;
	}
	
	#adaptiveGridstacks_in_33040 {
		margin-right: -4px;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_33040 .gridCellInner {
		padding: 6px;
	}
	
	#adaptiveGridstacks_in_33040 {
		margin-left: -6px;
	}
	
	#adaptiveGridstacks_in_33040 {
		margin-right: -6px;
	}
}

/* @end */

/* @group Column Settings */



/* If column 1 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_33040 .column1 {
		width: 100.00%;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_33040 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_33040 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_33040 .column1 {
		width: 25.00%;
	}
}



/* If column 2 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_33040 .column2 {
		width: 100.00%;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_33040 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_33040 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_33040 .column2 {
		width: 25.00%;
	}
}



/* If column 3 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_33040 .column3 {
		width: 100.00%;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_33040 .column3 {
		width: 50.00%;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_33040 .column3 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_33040 .column3 {
		width: 25.00%;
	}
}



/* If column 4 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_33040 .column4 {
		width: 100.00%;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_33040 .column4 {
		width: 50.00%;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_33040 .column4 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_33040 .column4 {
		width: 25.00%;
	}
}


















/* @end */

/* @group Custom Classes */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_33040 .no-phone {
		display: none;
	}
	
	#adaptiveGridstacks_in_33040 .display-phone {
		display: block;
	}	
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_33040 .no-tablet {
		display: none;
	}
	
	#adaptiveGridstacks_in_33040 .display-tablet {
		display: block;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_33040 .no-laptop {
		display: none;
	}
	
	#adaptiveGridstacks_in_33040 .display-laptop {
		display: block;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_33040 .no-desktop {
		display: none;
	}
	
	#adaptiveGridstacks_in_33040 .display-desktop {
		display: block;
	}
}

@media print {
	#adaptiveGridstacks_in_33040 .no-print {
		display: none;
	}
}

@media screen {
	#adaptiveGridstacks_in_33040 .no-screen {
		display: none;
	}
}

/* @end */

/* @group User Style Settings */

/*  */
#adaptiveGridstacks_in_33040 .gridCellInner {
	background: #F5F5F5;
}
/*  */

/*  */
#adaptiveGridstacks_in_33040 .gridCellInner {
	border: 1px solid #DADADA;
	overflow: visible;
}
/*  */

/*  */
#adaptiveGridstacks_in_33040 .gridCellInner {
	margin: 6px;
}
/*  */

/*  */
#adaptiveGridstacks_in_33040 .gridCellInner {
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}
/*  */

/* @end */

/* @group Print Styling */

@media print {
	#adaptiveGridstacks_in_33040 {
		display: block;
		position: relative;
		height: auto;
		overflow: auto;
	}
	
	#adaptiveGridstacks_in_33040 .column1,
	#adaptiveGridstacks_in_33040 .column2,
	#adaptiveGridstacks_in_33040 .column3,
	#adaptiveGridstacks_in_33040 .column4,
	#adaptiveGridstacks_in_33040 .column5,
	#adaptiveGridstacks_in_33040 .column6,
	#adaptiveGridstacks_in_33040 .column7,
	#adaptiveGridstacks_in_33040 .column8,
	#adaptiveGridstacks_in_33040 .column9,
	#adaptiveGridstacks_in_33040 .column10,
	#adaptiveGridstacks_in_33040 .column11,
	#adaptiveGridstacks_in_33040 .column12 {
		float: none;
		position: relative;
		width: 100%;	
	}
	
	#adaptiveGridstacks_in_33040 .gridCellInner {
		padding: 0;
	}
}

/* @end *//*  */
#stacks_in_33040 {
	padding:  10px;
}
#usefulStackWrapperstacks_in_33140 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_33140 {
	padding-bottom: 10%;
	padding-top: 10%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_33140 {
		display: none;
	}
}













#stacks_in_33140 {
	background-color: rgba(254, 203, 79, 1.00);
}
#hoverBoxWrapperstacks_in_33108 {
	height: auto;
	min-height: 0px;
	max-height: 1000px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
	cursor: auto;
}

#hoverBoxWrapperstacks_in_33108 img {
	max-width: 100%;
	height: auto;
}

#hoverBoxStaticstacks_in_33108 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

#hoverBoxRolloverstacks_in_33108 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
}

#hoverBoxLinkstacks_in_33108 a,
#hoverBoxLinkstacks_in_33108 a:hover {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../files/bg_fill.gif) repeat;
	border: none;
	outline: none;
}




#hoverBoxWrapperstacks_in_33108.touchDeviceDetected #hoverBoxStaticstacks_in_33108 {
	display: block;
	opacity: 1.00;
}

#hoverBoxWrapperstacks_in_33108.touchDeviceDetected #hoverBoxRolloverstacks_in_33108 {
	display: none;
	opacity: 0;
}









#hoverBoxWrapperstacks_in_33108.noTouchDeviceDetected #hoverBoxRolloverstacks_in_33108 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	-moz-transition: opacity 100ms linear;
	-webkit-transition: opacity 100ms linear;
	transition: opacity 100ms linear;
}

#hoverBoxWrapperstacks_in_33108.noTouchDeviceDetected:hover #hoverBoxRolloverstacks_in_33108 {
	opacity: 1.00;
}





















/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}



#stacks_in_33111 {
	background-color: rgba(254, 203, 79, 1.00);
}

#stacks_in_33112 {
	font-size: 120%;
}
/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}



#stacks_in_33271 {
	background-color: rgba(255, 241, 50, 1.00);
}

#stacks_in_33272 {
	font-size: 120%;
}
#usefulStackWrapperstacks_in_33179 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_33179 {
	padding-bottom: 5%;
	padding-top: 5%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_33179 {
		display: none;
	}
}












/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}


#usefulStackWrapperstacks_in_33181 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_33181 {
	padding-bottom: 5%;
	padding-top: 5%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_33181 {
		display: none;
	}
}












/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}


#usefulStackWrapperstacks_in_33352 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_33352 {
	padding-bottom: 0%;
	padding-top: 5%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_33352 {
		display: none;
	}
}












/* @group CSS Reset & Box Sizing */

#adaptiveGridstacks_in_33060 *,
#adaptiveGridstacks_in_33060 *:before,
#adaptiveGridstacks_in_33060 *:after {
	box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
}

#adaptiveGridstacks_in_33060 {
	display: block;
}

/*  */
#adaptiveGridstacks_in_33060 {
	visibility: hidden;
}
/*  */

#adaptiveGridstacks_in_33060:before {
	display: table;
	content: " ";	
}

#adaptiveGridstacks_in_33060 .adaptiveGridColumn {
	overflow: visible;
}

/*  */
#adaptiveGridstacks_in_33060 img {
	max-width: 100%;
	height: auto;
}
/*  */

#adaptiveGridstacks_in_33060 .adaptiveGridColumn {
	display: inline-block;
	float: left;
}

/* @end */

/* @group Column Padding Settings */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_33060 .gridCellInner {
		padding: 0px;
	}
	
	#adaptiveGridstacks_in_33060 {
		margin-left: -0px;
	}
	
	#adaptiveGridstacks_in_33060 {
		margin-right: -0px;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_33060 .gridCellInner {
		padding: 2px;
	}
	
	#adaptiveGridstacks_in_33060 {
		margin-left: -2px;
	}
	
	#adaptiveGridstacks_in_33060 {
		margin-right: -2px;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_33060 .gridCellInner {
		padding: 4px;
	}
	
	#adaptiveGridstacks_in_33060 {
		margin-left: -4px;
	}
	
	#adaptiveGridstacks_in_33060 {
		margin-right: -4px;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_33060 .gridCellInner {
		padding: 6px;
	}
	
	#adaptiveGridstacks_in_33060 {
		margin-left: -6px;
	}
	
	#adaptiveGridstacks_in_33060 {
		margin-right: -6px;
	}
}

/* @end */

/* @group Column Settings */



/* If column 1 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_33060 .column1 {
		width: 100.00%;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_33060 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_33060 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_33060 .column1 {
		width: 25.00%;
	}
}



/* If column 2 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_33060 .column2 {
		width: 100.00%;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_33060 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_33060 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_33060 .column2 {
		width: 25.00%;
	}
}



/* If column 3 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_33060 .column3 {
		width: 100.00%;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_33060 .column3 {
		width: 50.00%;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_33060 .column3 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_33060 .column3 {
		width: 25.00%;
	}
}



/* If column 4 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_33060 .column4 {
		width: 100.00%;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_33060 .column4 {
		width: 50.00%;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_33060 .column4 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_33060 .column4 {
		width: 25.00%;
	}
}


















/* @end */

/* @group Custom Classes */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_33060 .no-phone {
		display: none;
	}
	
	#adaptiveGridstacks_in_33060 .display-phone {
		display: block;
	}	
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_33060 .no-tablet {
		display: none;
	}
	
	#adaptiveGridstacks_in_33060 .display-tablet {
		display: block;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_33060 .no-laptop {
		display: none;
	}
	
	#adaptiveGridstacks_in_33060 .display-laptop {
		display: block;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_33060 .no-desktop {
		display: none;
	}
	
	#adaptiveGridstacks_in_33060 .display-desktop {
		display: block;
	}
}

@media print {
	#adaptiveGridstacks_in_33060 .no-print {
		display: none;
	}
}

@media screen {
	#adaptiveGridstacks_in_33060 .no-screen {
		display: none;
	}
}

/* @end */

/* @group User Style Settings */

/*  */
#adaptiveGridstacks_in_33060 .gridCellInner {
	background: #F5F5F5;
}
/*  */

/*  */
#adaptiveGridstacks_in_33060 .gridCellInner {
	border: 1px solid #DADADA;
	overflow: visible;
}
/*  */

/*  */
#adaptiveGridstacks_in_33060 .gridCellInner {
	margin: 6px;
}
/*  */

/*  */
#adaptiveGridstacks_in_33060 .gridCellInner {
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}
/*  */

/* @end */

/* @group Print Styling */

@media print {
	#adaptiveGridstacks_in_33060 {
		display: block;
		position: relative;
		height: auto;
		overflow: auto;
	}
	
	#adaptiveGridstacks_in_33060 .column1,
	#adaptiveGridstacks_in_33060 .column2,
	#adaptiveGridstacks_in_33060 .column3,
	#adaptiveGridstacks_in_33060 .column4,
	#adaptiveGridstacks_in_33060 .column5,
	#adaptiveGridstacks_in_33060 .column6,
	#adaptiveGridstacks_in_33060 .column7,
	#adaptiveGridstacks_in_33060 .column8,
	#adaptiveGridstacks_in_33060 .column9,
	#adaptiveGridstacks_in_33060 .column10,
	#adaptiveGridstacks_in_33060 .column11,
	#adaptiveGridstacks_in_33060 .column12 {
		float: none;
		position: relative;
		width: 100%;	
	}
	
	#adaptiveGridstacks_in_33060 .gridCellInner {
		padding: 0;
	}
}

/* @end *//*  */
#stacks_in_33060 {
	padding:  10px;
}
#hoverBoxWrapperstacks_in_33115 {
	height: auto;
	min-height: 0px;
	max-height: 1000px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
	cursor: auto;
}

#hoverBoxWrapperstacks_in_33115 img {
	max-width: 100%;
	height: auto;
}

#hoverBoxStaticstacks_in_33115 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

#hoverBoxRolloverstacks_in_33115 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
}

#hoverBoxLinkstacks_in_33115 a,
#hoverBoxLinkstacks_in_33115 a:hover {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../files/bg_fill.gif) repeat;
	border: none;
	outline: none;
}




#hoverBoxWrapperstacks_in_33115.touchDeviceDetected #hoverBoxStaticstacks_in_33115 {
	display: block;
	opacity: 1.00;
}

#hoverBoxWrapperstacks_in_33115.touchDeviceDetected #hoverBoxRolloverstacks_in_33115 {
	display: none;
	opacity: 0;
}









#hoverBoxWrapperstacks_in_33115.noTouchDeviceDetected #hoverBoxRolloverstacks_in_33115 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	-moz-transition: opacity 500ms linear;
	-webkit-transition: opacity 500ms linear;
	transition: opacity 500ms linear;
}

#hoverBoxWrapperstacks_in_33115.noTouchDeviceDetected:hover #hoverBoxRolloverstacks_in_33115 {
	opacity: 1.00;
}






















#stacks_in_33115 {
	background-color: rgba(254, 203, 79, 1.00);
	padding: 5px 5px 0px 5px;
}
/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}


/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}



#stacks_in_33069 {
	padding:  5px;
}
/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}



#stacks_in_33072 {
	padding:  5px;
}
#usefulStackWrapperstacks_in_33184 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_33184 {
	padding-bottom: 0%;
	padding-top: 5%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_33184 {
		display: none;
	}
}












/* @group CSS Reset & Box Sizing */

#adaptiveGridstacks_in_32764 *,
#adaptiveGridstacks_in_32764 *:before,
#adaptiveGridstacks_in_32764 *:after {
	box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
}

#adaptiveGridstacks_in_32764 {
	display: block;
}

/*  */
#adaptiveGridstacks_in_32764 {
	visibility: hidden;
}
/*  */

#adaptiveGridstacks_in_32764:before {
	display: table;
	content: " ";	
}

#adaptiveGridstacks_in_32764 .adaptiveGridColumn {
	overflow: visible;
}

/*  */
#adaptiveGridstacks_in_32764 img {
	max-width: 100%;
	height: auto;
}
/*  */

#adaptiveGridstacks_in_32764 .adaptiveGridColumn {
	display: inline-block;
	float: left;
}

/* @end */

/* @group Column Padding Settings */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_32764 .gridCellInner {
		padding: 0px;
	}
	
	#adaptiveGridstacks_in_32764 {
		margin-left: -0px;
	}
	
	#adaptiveGridstacks_in_32764 {
		margin-right: -0px;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_32764 .gridCellInner {
		padding: 2px;
	}
	
	#adaptiveGridstacks_in_32764 {
		margin-left: -2px;
	}
	
	#adaptiveGridstacks_in_32764 {
		margin-right: -2px;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_32764 .gridCellInner {
		padding: 4px;
	}
	
	#adaptiveGridstacks_in_32764 {
		margin-left: -4px;
	}
	
	#adaptiveGridstacks_in_32764 {
		margin-right: -4px;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_32764 .gridCellInner {
		padding: 6px;
	}
	
	#adaptiveGridstacks_in_32764 {
		margin-left: -6px;
	}
	
	#adaptiveGridstacks_in_32764 {
		margin-right: -6px;
	}
}

/* @end */

/* @group Column Settings */



/* If column 1 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_32764 .column1 {
		width: 100.00%;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_32764 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_32764 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_32764 .column1 {
		width: 33.00%;
	}
}



/* If column 2 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_32764 .column2 {
		width: 100.00%;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_32764 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_32764 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_32764 .column2 {
		width: 33.00%;
	}
}



/* If column 3 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_32764 .column3 {
		width: 100.00%;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_32764 .column3 {
		width: 50.00%;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_32764 .column3 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_32764 .column3 {
		width: 33.00%;
	}
}



/* If column 4 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_32764 .column4 {
		width: 100.00%;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_32764 .column4 {
		width: 50.00%;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_32764 .column4 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_32764 .column4 {
		width: 33.00%;
	}
}



/* If column 2 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_32764 .column5 {
		width: 100.00%;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_32764 .column5 {
		width: 50.00%;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_32764 .column5 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_32764 .column5 {
		width: 33.00%;
	}
}



/* If column 2 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_32764 .column6 {
		width: 100.00%;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_32764 .column6 {
		width: 50.00%;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_32764 .column6 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_32764 .column6 {
		width: 33.00%;
	}
}














/* @end */

/* @group Custom Classes */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_32764 .no-phone {
		display: none;
	}
	
	#adaptiveGridstacks_in_32764 .display-phone {
		display: block;
	}	
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_32764 .no-tablet {
		display: none;
	}
	
	#adaptiveGridstacks_in_32764 .display-tablet {
		display: block;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_32764 .no-laptop {
		display: none;
	}
	
	#adaptiveGridstacks_in_32764 .display-laptop {
		display: block;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_32764 .no-desktop {
		display: none;
	}
	
	#adaptiveGridstacks_in_32764 .display-desktop {
		display: block;
	}
}

@media print {
	#adaptiveGridstacks_in_32764 .no-print {
		display: none;
	}
}

@media screen {
	#adaptiveGridstacks_in_32764 .no-screen {
		display: none;
	}
}

/* @end */

/* @group User Style Settings */

/*  */
#adaptiveGridstacks_in_32764 .gridCellInner {
	background: #F9F9F9;
}
/*  */

/*  */
#adaptiveGridstacks_in_32764 .gridCellInner {
	border: 1px solid #E1E1E1;
	overflow: visible;
}
/*  */

/*  */
#adaptiveGridstacks_in_32764 .gridCellInner {
	margin: 6px;
}
/*  */

/*  */
#adaptiveGridstacks_in_32764 .gridCellInner {
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
}
/*  */

/* @end */

/* @group Print Styling */

@media print {
	#adaptiveGridstacks_in_32764 {
		display: block;
		position: relative;
		height: auto;
		overflow: auto;
	}
	
	#adaptiveGridstacks_in_32764 .column1,
	#adaptiveGridstacks_in_32764 .column2,
	#adaptiveGridstacks_in_32764 .column3,
	#adaptiveGridstacks_in_32764 .column4,
	#adaptiveGridstacks_in_32764 .column5,
	#adaptiveGridstacks_in_32764 .column6,
	#adaptiveGridstacks_in_32764 .column7,
	#adaptiveGridstacks_in_32764 .column8,
	#adaptiveGridstacks_in_32764 .column9,
	#adaptiveGridstacks_in_32764 .column10,
	#adaptiveGridstacks_in_32764 .column11,
	#adaptiveGridstacks_in_32764 .column12 {
		float: none;
		position: relative;
		width: 100%;	
	}
	
	#adaptiveGridstacks_in_32764 .gridCellInner {
		padding: 0;
	}
}

/* @end *//*  */
#stacks_in_32764 {
	margin: 20px 0px 0px 0px;
	padding:  10px;
}

#stacks_out_32764 {
	width: 90%;
}
/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}


/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}



#stacks_in_32772 {
	padding:  10px;
}
/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}


/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}



#stacks_in_32776 {
	padding:  10px;
}
/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}


/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}



#stacks_in_32781 {
	padding:  10px;
}
/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}


/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}



#stacks_in_32786 {
	padding:  10px;
}
/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}


/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}



#stacks_in_32493 {
	padding:  10px;
}
/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}


/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}



#stacks_in_32479 {
	padding:  10px;
}



.spacerStack {
	height: auto;
	padding-bottom: 2.00%;
}

#spacerStackstacks_in_33262 {
	height: auto;
	padding-bottom: 2.00%;
}


















@media print {
	#spacerStackstacks_in_33262 {
		display: none !important;
	}
}
/* @group CSS Reset & Box Sizing */

#adaptiveGridstacks_in_32796 *,
#adaptiveGridstacks_in_32796 *:before,
#adaptiveGridstacks_in_32796 *:after {
	box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
}

#adaptiveGridstacks_in_32796 {
	display: block;
}

/*  */
#adaptiveGridstacks_in_32796 {
	visibility: hidden;
}
/*  */

#adaptiveGridstacks_in_32796:before {
	display: table;
	content: " ";	
}

#adaptiveGridstacks_in_32796 .adaptiveGridColumn {
	overflow: visible;
}

/*  */
#adaptiveGridstacks_in_32796 img {
	max-width: 100%;
	height: auto;
}
/*  */

#adaptiveGridstacks_in_32796 .adaptiveGridColumn {
	display: inline-block;
	float: left;
}

/* @end */

/* @group Column Padding Settings */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_32796 .gridCellInner {
		padding: 0px;
	}
	
	#adaptiveGridstacks_in_32796 {
		margin-left: -0px;
	}
	
	#adaptiveGridstacks_in_32796 {
		margin-right: -0px;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_32796 .gridCellInner {
		padding: 2px;
	}
	
	#adaptiveGridstacks_in_32796 {
		margin-left: -2px;
	}
	
	#adaptiveGridstacks_in_32796 {
		margin-right: -2px;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_32796 .gridCellInner {
		padding: 4px;
	}
	
	#adaptiveGridstacks_in_32796 {
		margin-left: -4px;
	}
	
	#adaptiveGridstacks_in_32796 {
		margin-right: -4px;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_32796 .gridCellInner {
		padding: 6px;
	}
	
	#adaptiveGridstacks_in_32796 {
		margin-left: -6px;
	}
	
	#adaptiveGridstacks_in_32796 {
		margin-right: -6px;
	}
}

/* @end */

/* @group Column Settings */



/* If column 1 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_32796 .column1 {
		width: 100.00%;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_32796 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_32796 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_32796 .column1 {
		width: 33.00%;
	}
}



/* If column 2 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_32796 .column2 {
		width: 100.00%;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_32796 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_32796 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_32796 .column2 {
		width: 33.00%;
	}
}



/* If column 3 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_32796 .column3 {
		width: 100.00%;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_32796 .column3 {
		width: 50.00%;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_32796 .column3 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_32796 .column3 {
		width: 33.00%;
	}
}



/* If column 4 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_32796 .column4 {
		width: 100.00%;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_32796 .column4 {
		width: 50.00%;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_32796 .column4 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_32796 .column4 {
		width: 33.00%;
	}
}



/* If column 2 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_32796 .column5 {
		width: 100.00%;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_32796 .column5 {
		width: 50.00%;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_32796 .column5 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_32796 .column5 {
		width: 33.00%;
	}
}



/* If column 2 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_32796 .column6 {
		width: 100.00%;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_32796 .column6 {
		width: 50.00%;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_32796 .column6 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_32796 .column6 {
		width: 33.00%;
	}
}














/* @end */

/* @group Custom Classes */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_32796 .no-phone {
		display: none;
	}
	
	#adaptiveGridstacks_in_32796 .display-phone {
		display: block;
	}	
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_32796 .no-tablet {
		display: none;
	}
	
	#adaptiveGridstacks_in_32796 .display-tablet {
		display: block;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_32796 .no-laptop {
		display: none;
	}
	
	#adaptiveGridstacks_in_32796 .display-laptop {
		display: block;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_32796 .no-desktop {
		display: none;
	}
	
	#adaptiveGridstacks_in_32796 .display-desktop {
		display: block;
	}
}

@media print {
	#adaptiveGridstacks_in_32796 .no-print {
		display: none;
	}
}

@media screen {
	#adaptiveGridstacks_in_32796 .no-screen {
		display: none;
	}
}

/* @end */

/* @group User Style Settings */

/*  */
#adaptiveGridstacks_in_32796 .gridCellInner {
	background: #F8F8F8;
}
/*  */

/*  */
#adaptiveGridstacks_in_32796 .gridCellInner {
	border: 1px solid #E0E0E0;
	overflow: visible;
}
/*  */

/*  */
#adaptiveGridstacks_in_32796 .gridCellInner {
	margin: 6px;
}
/*  */

/*  */
#adaptiveGridstacks_in_32796 .gridCellInner {
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}
/*  */

/* @end */

/* @group Print Styling */

@media print {
	#adaptiveGridstacks_in_32796 {
		display: block;
		position: relative;
		height: auto;
		overflow: auto;
	}
	
	#adaptiveGridstacks_in_32796 .column1,
	#adaptiveGridstacks_in_32796 .column2,
	#adaptiveGridstacks_in_32796 .column3,
	#adaptiveGridstacks_in_32796 .column4,
	#adaptiveGridstacks_in_32796 .column5,
	#adaptiveGridstacks_in_32796 .column6,
	#adaptiveGridstacks_in_32796 .column7,
	#adaptiveGridstacks_in_32796 .column8,
	#adaptiveGridstacks_in_32796 .column9,
	#adaptiveGridstacks_in_32796 .column10,
	#adaptiveGridstacks_in_32796 .column11,
	#adaptiveGridstacks_in_32796 .column12 {
		float: none;
		position: relative;
		width: 100%;	
	}
	
	#adaptiveGridstacks_in_32796 .gridCellInner {
		padding: 0;
	}
}

/* @end *//*  */
#stacks_in_32796 {
	padding:  10px;
}
/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}


/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}



#stacks_in_32799 {
	padding:  10px;
}
/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}


/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}



#stacks_in_32804 {
	padding:  10px;
}
/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}


/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}



#stacks_in_32809 {
	padding:  10px;
}
/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}


/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}



#stacks_in_32814 {
	padding:  10px;
}
/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}


/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}



#stacks_in_32819 {
	padding:  10px;
}
/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}


/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}



#stacks_in_32824 {
	padding:  10px;
}



.spacerStack {
	height: auto;
	padding-bottom: 2.00%;
}

#spacerStackstacks_in_33261 {
	height: auto;
	padding-bottom: 2.00%;
}


















@media print {
	#spacerStackstacks_in_33261 {
		display: none !important;
	}
}
/* @group CSS Reset & Box Sizing */

#adaptiveGridstacks_in_32833 *,
#adaptiveGridstacks_in_32833 *:before,
#adaptiveGridstacks_in_32833 *:after {
	box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
}

#adaptiveGridstacks_in_32833 {
	display: block;
}

/*  */
#adaptiveGridstacks_in_32833 {
	visibility: hidden;
}
/*  */

#adaptiveGridstacks_in_32833:before {
	display: table;
	content: " ";	
}

#adaptiveGridstacks_in_32833 .adaptiveGridColumn {
	overflow: visible;
}

/*  */
#adaptiveGridstacks_in_32833 img {
	max-width: 100%;
	height: auto;
}
/*  */

#adaptiveGridstacks_in_32833 .adaptiveGridColumn {
	display: inline-block;
	float: left;
}

/* @end */

/* @group Column Padding Settings */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_32833 .gridCellInner {
		padding: 0px;
	}
	
	#adaptiveGridstacks_in_32833 {
		margin-left: -0px;
	}
	
	#adaptiveGridstacks_in_32833 {
		margin-right: -0px;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_32833 .gridCellInner {
		padding: 2px;
	}
	
	#adaptiveGridstacks_in_32833 {
		margin-left: -2px;
	}
	
	#adaptiveGridstacks_in_32833 {
		margin-right: -2px;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_32833 .gridCellInner {
		padding: 4px;
	}
	
	#adaptiveGridstacks_in_32833 {
		margin-left: -4px;
	}
	
	#adaptiveGridstacks_in_32833 {
		margin-right: -4px;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_32833 .gridCellInner {
		padding: 6px;
	}
	
	#adaptiveGridstacks_in_32833 {
		margin-left: -6px;
	}
	
	#adaptiveGridstacks_in_32833 {
		margin-right: -6px;
	}
}

/* @end */

/* @group Column Settings */



/* If column 1 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_32833 .column1 {
		width: 100.00%;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_32833 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_32833 .column1 {
		width: 25.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_32833 .column1 {
		width: 25.00%;
	}
}



/* If column 2 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_32833 .column2 {
		width: 100.00%;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_32833 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_32833 .column2 {
		width: 25.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_32833 .column2 {
		width: 25.00%;
	}
}



/* If column 3 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_32833 .column3 {
		width: 100.00%;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_32833 .column3 {
		width: 50.00%;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_32833 .column3 {
		width: 25.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_32833 .column3 {
		width: 25.00%;
	}
}



/* If column 4 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_32833 .column4 {
		width: 100.00%;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_32833 .column4 {
		width: 50.00%;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_32833 .column4 {
		width: 25.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_32833 .column4 {
		width: 25.00%;
	}
}


















/* @end */

/* @group Custom Classes */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_32833 .no-phone {
		display: none;
	}
	
	#adaptiveGridstacks_in_32833 .display-phone {
		display: block;
	}	
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_32833 .no-tablet {
		display: none;
	}
	
	#adaptiveGridstacks_in_32833 .display-tablet {
		display: block;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_32833 .no-laptop {
		display: none;
	}
	
	#adaptiveGridstacks_in_32833 .display-laptop {
		display: block;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_32833 .no-desktop {
		display: none;
	}
	
	#adaptiveGridstacks_in_32833 .display-desktop {
		display: block;
	}
}

@media print {
	#adaptiveGridstacks_in_32833 .no-print {
		display: none;
	}
}

@media screen {
	#adaptiveGridstacks_in_32833 .no-screen {
		display: none;
	}
}

/* @end */

/* @group User Style Settings */

/*  */
#adaptiveGridstacks_in_32833 .gridCellInner {
	background: #F9F9F9;
}
/*  */

/*  */
#adaptiveGridstacks_in_32833 .gridCellInner {
	border: 0px solid #E1E1E1;
	overflow: visible;
}
/*  */

/*  */
#adaptiveGridstacks_in_32833 .gridCellInner {
	margin: 6px;
}
/*  */

/*  */
#adaptiveGridstacks_in_32833 .gridCellInner {
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
}
/*  */

/* @end */

/* @group Print Styling */

@media print {
	#adaptiveGridstacks_in_32833 {
		display: block;
		position: relative;
		height: auto;
		overflow: auto;
	}
	
	#adaptiveGridstacks_in_32833 .column1,
	#adaptiveGridstacks_in_32833 .column2,
	#adaptiveGridstacks_in_32833 .column3,
	#adaptiveGridstacks_in_32833 .column4,
	#adaptiveGridstacks_in_32833 .column5,
	#adaptiveGridstacks_in_32833 .column6,
	#adaptiveGridstacks_in_32833 .column7,
	#adaptiveGridstacks_in_32833 .column8,
	#adaptiveGridstacks_in_32833 .column9,
	#adaptiveGridstacks_in_32833 .column10,
	#adaptiveGridstacks_in_32833 .column11,
	#adaptiveGridstacks_in_32833 .column12 {
		float: none;
		position: relative;
		width: 100%;	
	}
	
	#adaptiveGridstacks_in_32833 .gridCellInner {
		padding: 0;
	}
}

/* @end *//*  */
#stacks_out_32833 {
	width: 93%;
}
#hoverBoxWrapperstacks_in_33234 {
	height: auto;
	min-height: 0px;
	max-height: 1000px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
	cursor: auto;
}

#hoverBoxWrapperstacks_in_33234 img {
	max-width: 100%;
	height: auto;
}

#hoverBoxStaticstacks_in_33234 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

#hoverBoxRolloverstacks_in_33234 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
}

#hoverBoxLinkstacks_in_33234 a,
#hoverBoxLinkstacks_in_33234 a:hover {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../files/bg_fill.gif) repeat;
	border: none;
	outline: none;
}




#hoverBoxWrapperstacks_in_33234.touchDeviceDetected #hoverBoxStaticstacks_in_33234 {
	display: block;
	opacity: 1.00;
}

#hoverBoxWrapperstacks_in_33234.touchDeviceDetected #hoverBoxRolloverstacks_in_33234 {
	display: none;
	opacity: 0;
}









#hoverBoxWrapperstacks_in_33234.noTouchDeviceDetected #hoverBoxRolloverstacks_in_33234 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	-moz-transition: opacity 200ms linear;
	-webkit-transition: opacity 200ms linear;
	transition: opacity 200ms linear;
}

#hoverBoxWrapperstacks_in_33234.noTouchDeviceDetected:hover #hoverBoxRolloverstacks_in_33234 {
	opacity: 1.00;
}






















#stacks_in_33234 {
	-moz-border-radius:  3px;
	-webkit-border-radius:  3px;
	border-radius:  3px;
}
#usefulStackWrapperstacks_in_33263 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_33263 {
	padding-bottom: 0%;
	padding-top: 2%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_33263 {
		display: none;
	}
}













#stacks_in_33263 {
	border: solid rgba(250, 250, 250, 1.00);
	border-width: 0px 3px 0px 3px;
}
/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}


#usefulStackWrapperstacks_in_33267 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_33267 {
	padding-bottom: 3%;
	padding-top: 0%;
	padding-left: 5%;
	padding-right: 5%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_33267 {
		display: none;
	}
}













#stacks_in_33267 {
	border: solid rgba(249, 249, 249, 1.00);
	border-width: 0px 3px 3px 3px;
}
/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}


#hoverBoxWrapperstacks_in_33187 {
	height: auto;
	min-height: 0px;
	max-height: 1000px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
	cursor: auto;
}

#hoverBoxWrapperstacks_in_33187 img {
	max-width: 100%;
	height: auto;
}

#hoverBoxStaticstacks_in_33187 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

#hoverBoxRolloverstacks_in_33187 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
}

#hoverBoxLinkstacks_in_33187 a,
#hoverBoxLinkstacks_in_33187 a:hover {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../files/bg_fill.gif) repeat;
	border: none;
	outline: none;
}




#hoverBoxWrapperstacks_in_33187.touchDeviceDetected #hoverBoxStaticstacks_in_33187 {
	display: block;
	opacity: 1.00;
}

#hoverBoxWrapperstacks_in_33187.touchDeviceDetected #hoverBoxRolloverstacks_in_33187 {
	display: none;
	opacity: 0;
}









#hoverBoxWrapperstacks_in_33187.noTouchDeviceDetected #hoverBoxRolloverstacks_in_33187 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	-moz-transition: opacity 200ms linear;
	-webkit-transition: opacity 200ms linear;
	transition: opacity 200ms linear;
}

#hoverBoxWrapperstacks_in_33187.noTouchDeviceDetected:hover #hoverBoxRolloverstacks_in_33187 {
	opacity: 1.00;
}






















#stacks_in_33187 {
	-moz-border-radius:  3px;
	-webkit-border-radius:  3px;
	border-radius:  3px;
}

#stacks_in_33188 {
	-moz-border-radius: 3px 3px 0px 0px;
	-webkit-border-radius: 3px 3px 0px 0px;
	border-radius: 3px 3px 0px 0px;
}
#usefulStackWrapperstacks_in_33194 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_33194 {
	padding-bottom: 0%;
	padding-top: 2%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_33194 {
		display: none;
	}
}













#stacks_in_33194 {
	border: solid rgba(250, 250, 250, 1.00);
	border-width: 0px 3px 0px 3px;
}
/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}


#usefulStackWrapperstacks_in_33198 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_33198 {
	padding-bottom: 3%;
	padding-top: 0%;
	padding-left: 5%;
	padding-right: 5%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_33198 {
		display: none;
	}
}













#stacks_in_33198 {
	border: solid rgba(249, 249, 249, 1.00);
	border-width: 0px 3px 3px 3px;
}
/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}


#hoverBoxWrapperstacks_in_33202 {
	height: auto;
	min-height: 0px;
	max-height: 1000px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
	cursor: auto;
}

#hoverBoxWrapperstacks_in_33202 img {
	max-width: 100%;
	height: auto;
}

#hoverBoxStaticstacks_in_33202 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

#hoverBoxRolloverstacks_in_33202 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
}

#hoverBoxLinkstacks_in_33202 a,
#hoverBoxLinkstacks_in_33202 a:hover {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../files/bg_fill.gif) repeat;
	border: none;
	outline: none;
}




#hoverBoxWrapperstacks_in_33202.touchDeviceDetected #hoverBoxStaticstacks_in_33202 {
	display: block;
	opacity: 1.00;
}

#hoverBoxWrapperstacks_in_33202.touchDeviceDetected #hoverBoxRolloverstacks_in_33202 {
	display: none;
	opacity: 0;
}









#hoverBoxWrapperstacks_in_33202.noTouchDeviceDetected #hoverBoxRolloverstacks_in_33202 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	-moz-transition: opacity 200ms linear;
	-webkit-transition: opacity 200ms linear;
	transition: opacity 200ms linear;
}

#hoverBoxWrapperstacks_in_33202.noTouchDeviceDetected:hover #hoverBoxRolloverstacks_in_33202 {
	opacity: 1.00;
}






















#stacks_in_33202 {
	-moz-border-radius:  3px;
	-webkit-border-radius:  3px;
	border-radius:  3px;
}

#stacks_in_33203 {
	-moz-border-radius: 3px 3px 0px 0px;
	-webkit-border-radius: 3px 3px 0px 0px;
	border-radius: 3px 3px 0px 0px;
}

#stacks_in_33206 {
	-moz-border-radius: 3px 3px 0px 0px;
	-webkit-border-radius: 3px 3px 0px 0px;
	border-radius: 3px 3px 0px 0px;
}
#usefulStackWrapperstacks_in_33209 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_33209 {
	padding-bottom: 0%;
	padding-top: 2%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_33209 {
		display: none;
	}
}













#stacks_in_33209 {
	border: solid rgba(249, 249, 249, 1.00);
	border-width: 0px 3px 0px 3px;
}
/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}


#usefulStackWrapperstacks_in_33213 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_33213 {
	padding-bottom: 3%;
	padding-top: 0%;
	padding-left: 5%;
	padding-right: 5%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_33213 {
		display: none;
	}
}













#stacks_in_33213 {
	border: solid rgba(249, 249, 249, 1.00);
	border-width: 0px 3px 3px 3px;
}
/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}


#hoverBoxWrapperstacks_in_32682 {
	height: auto;
	min-height: 0px;
	max-height: 1000px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
	cursor: auto;
}

#hoverBoxWrapperstacks_in_32682 img {
	max-width: 100%;
	height: auto;
}

#hoverBoxStaticstacks_in_32682 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

#hoverBoxRolloverstacks_in_32682 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
}

#hoverBoxLinkstacks_in_32682 a,
#hoverBoxLinkstacks_in_32682 a:hover {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../files/bg_fill.gif) repeat;
	border: none;
	outline: none;
}




#hoverBoxWrapperstacks_in_32682.touchDeviceDetected #hoverBoxStaticstacks_in_32682 {
	display: block;
	opacity: 1.00;
}

#hoverBoxWrapperstacks_in_32682.touchDeviceDetected #hoverBoxRolloverstacks_in_32682 {
	display: none;
	opacity: 0;
}









#hoverBoxWrapperstacks_in_32682.noTouchDeviceDetected #hoverBoxRolloverstacks_in_32682 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	-moz-transition: opacity 200ms linear;
	-webkit-transition: opacity 200ms linear;
	transition: opacity 200ms linear;
}

#hoverBoxWrapperstacks_in_32682.noTouchDeviceDetected:hover #hoverBoxRolloverstacks_in_32682 {
	opacity: 1.00;
}






















#stacks_in_32682 {
	-moz-border-radius:  3px;
	-webkit-border-radius:  3px;
	border-radius:  3px;
}

#stacks_in_32684 {
	-moz-border-radius: 3px 3px 0px 0px;
	-webkit-border-radius: 3px 3px 0px 0px;
	border-radius: 3px 3px 0px 0px;
}

#stacks_in_32687 {
	-moz-border-radius: 3px 3px 0px 0px;
	-webkit-border-radius: 3px 3px 0px 0px;
	border-radius: 3px 3px 0px 0px;
}
#usefulStackWrapperstacks_in_32254 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_32254 {
	padding-bottom: 0%;
	padding-top: 2%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_32254 {
		display: none;
	}
}













#stacks_in_32254 {
	border: solid rgba(249, 249, 249, 1.00);
	border-width: 0px 3px 0px 3px;
}
/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}


#usefulStackWrapperstacks_in_32258 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_32258 {
	padding-bottom: 3%;
	padding-top: 0%;
	padding-left: 5%;
	padding-right: 5%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_32258 {
		display: none;
	}
}













#stacks_in_32258 {
	border: solid rgba(249, 249, 249, 1.00);
	border-width: 0px 3px 3px 3px;
}
/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}


/* @group CSS Reset & Box Sizing */

#adaptiveGridstacks_in_33273 *,
#adaptiveGridstacks_in_33273 *:before,
#adaptiveGridstacks_in_33273 *:after {
	box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
}

#adaptiveGridstacks_in_33273 {
	display: block;
}

/*  */
#adaptiveGridstacks_in_33273 {
	visibility: hidden;
}
/*  */

#adaptiveGridstacks_in_33273:before {
	display: table;
	content: " ";	
}

#adaptiveGridstacks_in_33273 .adaptiveGridColumn {
	overflow: visible;
}

/*  */
#adaptiveGridstacks_in_33273 img {
	max-width: 100%;
	height: auto;
}
/*  */

#adaptiveGridstacks_in_33273 .adaptiveGridColumn {
	display: inline-block;
	float: left;
}

/* @end */

/* @group Column Padding Settings */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_33273 .gridCellInner {
		padding: 0px;
	}
	
	#adaptiveGridstacks_in_33273 {
		margin-left: -0px;
	}
	
	#adaptiveGridstacks_in_33273 {
		margin-right: -0px;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_33273 .gridCellInner {
		padding: 2px;
	}
	
	#adaptiveGridstacks_in_33273 {
		margin-left: -2px;
	}
	
	#adaptiveGridstacks_in_33273 {
		margin-right: -2px;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_33273 .gridCellInner {
		padding: 4px;
	}
	
	#adaptiveGridstacks_in_33273 {
		margin-left: -4px;
	}
	
	#adaptiveGridstacks_in_33273 {
		margin-right: -4px;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_33273 .gridCellInner {
		padding: 6px;
	}
	
	#adaptiveGridstacks_in_33273 {
		margin-left: -6px;
	}
	
	#adaptiveGridstacks_in_33273 {
		margin-right: -6px;
	}
}

/* @end */

/* @group Column Settings */



/* If column 1 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_33273 .column1 {
		width: 100.00%;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_33273 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_33273 .column1 {
		width: 25.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_33273 .column1 {
		width: 25.00%;
	}
}



/* If column 2 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_33273 .column2 {
		width: 100.00%;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_33273 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_33273 .column2 {
		width: 25.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_33273 .column2 {
		width: 25.00%;
	}
}



/* If column 3 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_33273 .column3 {
		width: 100.00%;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_33273 .column3 {
		width: 50.00%;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_33273 .column3 {
		width: 25.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_33273 .column3 {
		width: 25.00%;
	}
}



/* If column 4 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_33273 .column4 {
		width: 100.00%;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_33273 .column4 {
		width: 50.00%;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_33273 .column4 {
		width: 25.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_33273 .column4 {
		width: 25.00%;
	}
}


















/* @end */

/* @group Custom Classes */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_33273 .no-phone {
		display: none;
	}
	
	#adaptiveGridstacks_in_33273 .display-phone {
		display: block;
	}	
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_33273 .no-tablet {
		display: none;
	}
	
	#adaptiveGridstacks_in_33273 .display-tablet {
		display: block;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_33273 .no-laptop {
		display: none;
	}
	
	#adaptiveGridstacks_in_33273 .display-laptop {
		display: block;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_33273 .no-desktop {
		display: none;
	}
	
	#adaptiveGridstacks_in_33273 .display-desktop {
		display: block;
	}
}

@media print {
	#adaptiveGridstacks_in_33273 .no-print {
		display: none;
	}
}

@media screen {
	#adaptiveGridstacks_in_33273 .no-screen {
		display: none;
	}
}

/* @end */

/* @group User Style Settings */

/*  */
#adaptiveGridstacks_in_33273 .gridCellInner {
	background: #F9F9F9;
}
/*  */

/*  */
#adaptiveGridstacks_in_33273 .gridCellInner {
	border: 0px solid #E1E1E1;
	overflow: visible;
}
/*  */

/*  */
#adaptiveGridstacks_in_33273 .gridCellInner {
	margin: 6px;
}
/*  */

/*  */
#adaptiveGridstacks_in_33273 .gridCellInner {
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
}
/*  */

/* @end */

/* @group Print Styling */

@media print {
	#adaptiveGridstacks_in_33273 {
		display: block;
		position: relative;
		height: auto;
		overflow: auto;
	}
	
	#adaptiveGridstacks_in_33273 .column1,
	#adaptiveGridstacks_in_33273 .column2,
	#adaptiveGridstacks_in_33273 .column3,
	#adaptiveGridstacks_in_33273 .column4,
	#adaptiveGridstacks_in_33273 .column5,
	#adaptiveGridstacks_in_33273 .column6,
	#adaptiveGridstacks_in_33273 .column7,
	#adaptiveGridstacks_in_33273 .column8,
	#adaptiveGridstacks_in_33273 .column9,
	#adaptiveGridstacks_in_33273 .column10,
	#adaptiveGridstacks_in_33273 .column11,
	#adaptiveGridstacks_in_33273 .column12 {
		float: none;
		position: relative;
		width: 100%;	
	}
	
	#adaptiveGridstacks_in_33273 .gridCellInner {
		padding: 0;
	}
}

/* @end *//*  */
#stacks_out_33273 {
	width: 93%;
}
#hoverBoxWrapperstacks_in_33274 {
	height: auto;
	min-height: 0px;
	max-height: 1000px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
	cursor: auto;
}

#hoverBoxWrapperstacks_in_33274 img {
	max-width: 100%;
	height: auto;
}

#hoverBoxStaticstacks_in_33274 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

#hoverBoxRolloverstacks_in_33274 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
}

#hoverBoxLinkstacks_in_33274 a,
#hoverBoxLinkstacks_in_33274 a:hover {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../files/bg_fill.gif) repeat;
	border: none;
	outline: none;
}




#hoverBoxWrapperstacks_in_33274.touchDeviceDetected #hoverBoxStaticstacks_in_33274 {
	display: block;
	opacity: 1.00;
}

#hoverBoxWrapperstacks_in_33274.touchDeviceDetected #hoverBoxRolloverstacks_in_33274 {
	display: none;
	opacity: 0;
}









#hoverBoxWrapperstacks_in_33274.noTouchDeviceDetected #hoverBoxRolloverstacks_in_33274 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	-moz-transition: opacity 200ms linear;
	-webkit-transition: opacity 200ms linear;
	transition: opacity 200ms linear;
}

#hoverBoxWrapperstacks_in_33274.noTouchDeviceDetected:hover #hoverBoxRolloverstacks_in_33274 {
	opacity: 1.00;
}






















#stacks_in_33274 {
	-moz-border-radius:  3px;
	-webkit-border-radius:  3px;
	border-radius:  3px;
}
#usefulStackWrapperstacks_in_33281 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_33281 {
	padding-bottom: 0%;
	padding-top: 2%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_33281 {
		display: none;
	}
}













#stacks_in_33281 {
	border: solid rgba(250, 250, 250, 1.00);
	border-width: 0px 3px 0px 3px;
}
/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}


#usefulStackWrapperstacks_in_33285 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_33285 {
	padding-bottom: 3%;
	padding-top: 0%;
	padding-left: 5%;
	padding-right: 5%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_33285 {
		display: none;
	}
}













#stacks_in_33285 {
	border: solid rgba(249, 249, 249, 1.00);
	border-width: 0px 3px 3px 3px;
}
/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}


#hoverBoxWrapperstacks_in_33290 {
	height: auto;
	min-height: 0px;
	max-height: 1000px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
	cursor: auto;
}

#hoverBoxWrapperstacks_in_33290 img {
	max-width: 100%;
	height: auto;
}

#hoverBoxStaticstacks_in_33290 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

#hoverBoxRolloverstacks_in_33290 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
}

#hoverBoxLinkstacks_in_33290 a,
#hoverBoxLinkstacks_in_33290 a:hover {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../files/bg_fill.gif) repeat;
	border: none;
	outline: none;
}




#hoverBoxWrapperstacks_in_33290.touchDeviceDetected #hoverBoxStaticstacks_in_33290 {
	display: block;
	opacity: 1.00;
}

#hoverBoxWrapperstacks_in_33290.touchDeviceDetected #hoverBoxRolloverstacks_in_33290 {
	display: none;
	opacity: 0;
}









#hoverBoxWrapperstacks_in_33290.noTouchDeviceDetected #hoverBoxRolloverstacks_in_33290 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	-moz-transition: opacity 200ms linear;
	-webkit-transition: opacity 200ms linear;
	transition: opacity 200ms linear;
}

#hoverBoxWrapperstacks_in_33290.noTouchDeviceDetected:hover #hoverBoxRolloverstacks_in_33290 {
	opacity: 1.00;
}






















#stacks_in_33290 {
	-moz-border-radius:  3px;
	-webkit-border-radius:  3px;
	border-radius:  3px;
}

#stacks_in_33291 {
	-moz-border-radius: 3px 3px 0px 0px;
	-webkit-border-radius: 3px 3px 0px 0px;
	border-radius: 3px 3px 0px 0px;
}
#usefulStackWrapperstacks_in_33297 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_33297 {
	padding-bottom: 0%;
	padding-top: 2%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_33297 {
		display: none;
	}
}













#stacks_in_33297 {
	border: solid rgba(250, 250, 250, 1.00);
	border-width: 0px 3px 0px 3px;
}
/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}


#usefulStackWrapperstacks_in_33301 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_33301 {
	padding-bottom: 3%;
	padding-top: 0%;
	padding-left: 5%;
	padding-right: 5%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_33301 {
		display: none;
	}
}













#stacks_in_33301 {
	border: solid rgba(249, 249, 249, 1.00);
	border-width: 0px 3px 3px 3px;
}
/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}


#hoverBoxWrapperstacks_in_33306 {
	height: auto;
	min-height: 0px;
	max-height: 1000px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
	cursor: auto;
}

#hoverBoxWrapperstacks_in_33306 img {
	max-width: 100%;
	height: auto;
}

#hoverBoxStaticstacks_in_33306 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

#hoverBoxRolloverstacks_in_33306 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
}

#hoverBoxLinkstacks_in_33306 a,
#hoverBoxLinkstacks_in_33306 a:hover {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../files/bg_fill.gif) repeat;
	border: none;
	outline: none;
}




#hoverBoxWrapperstacks_in_33306.touchDeviceDetected #hoverBoxStaticstacks_in_33306 {
	display: block;
	opacity: 1.00;
}

#hoverBoxWrapperstacks_in_33306.touchDeviceDetected #hoverBoxRolloverstacks_in_33306 {
	display: none;
	opacity: 0;
}









#hoverBoxWrapperstacks_in_33306.noTouchDeviceDetected #hoverBoxRolloverstacks_in_33306 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	-moz-transition: opacity 200ms linear;
	-webkit-transition: opacity 200ms linear;
	transition: opacity 200ms linear;
}

#hoverBoxWrapperstacks_in_33306.noTouchDeviceDetected:hover #hoverBoxRolloverstacks_in_33306 {
	opacity: 1.00;
}






















#stacks_in_33306 {
	-moz-border-radius:  3px;
	-webkit-border-radius:  3px;
	border-radius:  3px;
}

#stacks_in_33307 {
	-moz-border-radius: 3px 3px 0px 0px;
	-webkit-border-radius: 3px 3px 0px 0px;
	border-radius: 3px 3px 0px 0px;
}

#stacks_in_33310 {
	-moz-border-radius: 3px 3px 0px 0px;
	-webkit-border-radius: 3px 3px 0px 0px;
	border-radius: 3px 3px 0px 0px;
}
#usefulStackWrapperstacks_in_33313 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_33313 {
	padding-bottom: 0%;
	padding-top: 2%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_33313 {
		display: none;
	}
}













#stacks_in_33313 {
	border: solid rgba(249, 249, 249, 1.00);
	border-width: 0px 3px 0px 3px;
}
/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}


#usefulStackWrapperstacks_in_33317 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_33317 {
	padding-bottom: 3%;
	padding-top: 0%;
	padding-left: 5%;
	padding-right: 5%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_33317 {
		display: none;
	}
}













#stacks_in_33317 {
	border: solid rgba(249, 249, 249, 1.00);
	border-width: 0px 3px 3px 3px;
}
/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}


#hoverBoxWrapperstacks_in_33322 {
	height: auto;
	min-height: 0px;
	max-height: 1000px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
	cursor: auto;
}

#hoverBoxWrapperstacks_in_33322 img {
	max-width: 100%;
	height: auto;
}

#hoverBoxStaticstacks_in_33322 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

#hoverBoxRolloverstacks_in_33322 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
}

#hoverBoxLinkstacks_in_33322 a,
#hoverBoxLinkstacks_in_33322 a:hover {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../files/bg_fill.gif) repeat;
	border: none;
	outline: none;
}




#hoverBoxWrapperstacks_in_33322.touchDeviceDetected #hoverBoxStaticstacks_in_33322 {
	display: block;
	opacity: 1.00;
}

#hoverBoxWrapperstacks_in_33322.touchDeviceDetected #hoverBoxRolloverstacks_in_33322 {
	display: none;
	opacity: 0;
}









#hoverBoxWrapperstacks_in_33322.noTouchDeviceDetected #hoverBoxRolloverstacks_in_33322 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	-moz-transition: opacity 200ms linear;
	-webkit-transition: opacity 200ms linear;
	transition: opacity 200ms linear;
}

#hoverBoxWrapperstacks_in_33322.noTouchDeviceDetected:hover #hoverBoxRolloverstacks_in_33322 {
	opacity: 1.00;
}






















#stacks_in_33322 {
	-moz-border-radius:  3px;
	-webkit-border-radius:  3px;
	border-radius:  3px;
}

#stacks_in_33323 {
	-moz-border-radius: 3px 3px 0px 0px;
	-webkit-border-radius: 3px 3px 0px 0px;
	border-radius: 3px 3px 0px 0px;
}

#stacks_in_33326 {
	-moz-border-radius: 3px 3px 0px 0px;
	-webkit-border-radius: 3px 3px 0px 0px;
	border-radius: 3px 3px 0px 0px;
}
#usefulStackWrapperstacks_in_33329 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_33329 {
	padding-bottom: 0%;
	padding-top: 2%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_33329 {
		display: none;
	}
}













#stacks_in_33329 {
	border: solid rgba(249, 249, 249, 1.00);
	border-width: 0px 3px 0px 3px;
}
/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}


#usefulStackWrapperstacks_in_33333 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_33333 {
	padding-bottom: 3%;
	padding-top: 0%;
	padding-left: 5%;
	padding-right: 5%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_33333 {
		display: none;
	}
}













#stacks_in_33333 {
	border: solid rgba(249, 249, 249, 1.00);
	border-width: 0px 3px 3px 3px;
}
/*
-------------------------------------------
File: Blueball GFontsStylr 4, v1.0 for Stacks 2  
gfontsstylr04.css Style Sheet
Created: 1, March, 2012
Last Modified: 13, March, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

/*
* Google Fonts are provided under the Following Open-Source Licenses:
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* This Font Software is licensed under the SIL Open Font License, Version 1.1.
* This license is available with a FAQ at: http://scripts.sil.org/OFL
*
* Unless required by applicable law or agreed to in writing, software distributed under these Licenses are distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*
*/


.Add Div Name Here_content a, 
.Add Div Name Here_content a:active {text-decoration: none;color: #0000FF;}
.Add Div Name Here_content a:hover {text-decoration: none;color: #FF0000;}
.Add Div Name Here_content a:visited {text-decoration: none;color: #800080;}


.nivo-lightbox-theme-default.nivo-lightbox-overlay {
	
	background: rgba(0, 0, 0, .80);
	
	
	
}

.nivo-lightbox-theme-default .nivo-lightbox-wrap {
	left: 10%;
	right: 10%;
	top: 10%;
	bottom: 10%;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay a,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:visited,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:active,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:focus {
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline {
	padding: 20px;
	border-radius: 5px;
}

.nivo-lightbox-theme-default .nivo-lightbox-html5audio,
.nivo-lightbox-theme-default .nivo-lightbox-html5video,
.nivo-lightbox-theme-default .nivo-lightbox-image img {
	border-radius: 5px;
}


.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline,
.nivo-lightbox-theme-default .nivo-lightbox-image img,
.nivo-lightbox-theme-default .nivo-lightbox-html5video {
	box-shadow: 10px 10px 10px  rgba(63, 63, 63, 0.40);
}





/* Solid colour fill */
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-ajax,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-inline {
	background: rgba(128, 128, 128, 1.00);
}
















.nivo-lightbox-theme-default .nivo-lightbox-title-wrap { 
	bottom: -9%; 
}

.nivo-lightbox-theme-default .nivo-lightbox-title {
	font: 15px/1.80 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-style: normal;
	font-weight: normal;
	background: #000;
	color: #fff;
	padding: 7px 15px;
	border-radius: 30px;
}

.nivo-lightbox-theme-default .nivo-lightbox-title-wrap .nivo-lightbox-title {
	
	
	color: rgba(255, 255, 255, 1.00);
	background: rgba(0, 0, 0, 0.00);
	padding: 8px 16px;
	border-radius: 5px;
}

/* .nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-title {
	background: none;
	padding: 0;
	border-radius: none;
} */

.nivo-lightbox-theme-default .nivo-lightbox-nav {
	top: 10%;
	width: 8%;
	height: 80%;
	text-indent: -9999px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	opacity: 0.5;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	background: none;
	text-indent: 0;
	font-size: 50px;
	opacity: 0.35;
	transition: all 300ms ease-in-out;
	z-index: 99999999999;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-prev [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: left;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-next [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	right: 50%;
	text-align: right;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	width: 50px;
	height: 50px;
	
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav:hover {
	background: none;
	opacity: 0.99;
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav [class^="fa fa-"],
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading {
	background: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading:before {
	color: rgba(255, 255, 255, 1.00);
	text-indent: 0px;
	content: 'Loading content...';
	position: absolute;
	top: 48%;
	left: 0;
	display: block;
	width: 100%;
	text-align: center;
	z-index: 99999;
	font-size: 18px;
}

.nivo-lightbox-theme-default .nivo-lightbox-content .nivo-lightbox-error {
	color: rgba(255, 255, 255, 1.00);
	font-size: 18px;
}

#topBoxTriggerRegionstacks_in_32726 {
	position: relative;
	display: block;
	height: auto;
	overflow: auto;
}






/* Only stretch the trigger link over the trigger region, if the TopBox trigger is not a button */
#topBoxTriggerRegionstacks_in_32726 #topBoxTriggerstacks_in_32726 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 10;
}


#topBoxTriggerRegionstacks_in_32726 #topBoxTriggerContentstacks_in_32726 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_32726 #topBoxTriggerContentstacks_in_32726 img {
	display: block;
	margin: 0 auto;
}

#topBoxContentWrapperstacks_in_32726 {
	color: rgba(66, 66, 66, 1.00);
}

#topBoxContentWrapperstacks_in_32726 img {
	max-height: 100%;
	max-width: 100%;
	height: auto;
	width: auto;
}

#topBoxContentWrapperstacks_in_32726 h1,
#topBoxContentWrapperstacks_in_32726 h2,
#topBoxContentWrapperstacks_in_32726 h3,
#topBoxContentWrapperstacks_in_32726 h4,
#topBoxContentWrapperstacks_in_32726 h5,
#topBoxContentWrapperstacks_in_32726 h6 {
	color: rgba(0, 0, 0, 1.00);
	padding: 0;
	margin: 0;
}

#topBoxContentWrapperstacks_in_32726 a {
	color: rgba(0, 80, 221, 1.00);
	transition: all 300ms ease-in-out;
}

#topBoxContentWrapperstacks_in_32726 a:visited {
	color: rgba(0, 80, 221, 1.00);
}

#topBoxContentWrapperstacks_in_32726 a:hover,
#topBoxContentWrapperstacks_in_32726 a:focus,
#topBoxContentWrapperstacks_in_32726 a:active {
	color: rgba(255, 0, 0, 1.00);
}

#topBoxContentWrapperstacks_in_32726 .topBoxAudio,
#topBoxContentWrapperstacks_in_32726 .topBoxVideo {
	width: 100%;
	display: block;
}

/* Fixes for Firefox video positioning, April 2018 */
#topBoxContentWrapperstacks_in_32726.topBoxVideo {
	position: relative;
	padding-bottom: %;
	height: 0;
	overflow: hidden;
}

#topBoxContentWrapperstacks_in_32726 video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



#topBoxContentWrapperstacks_in_32726 .trackName,
#topBoxContentWrapperstacks_in_32726 .trackDescription {
	text-align: center;
	display: block;
}


#topBoxContentWrapperstacks_in_32726 {
	display: none;
}







#usefulStackWrapperstacks_in_33021 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_33021 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_33021 {
		display: none;
	}
}












#hoverBoxWrapperstacks_in_32743 {
	height: auto;
	min-height: 0px;
	max-height: 1000px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
	cursor: auto;
}

#hoverBoxWrapperstacks_in_32743 img {
	max-width: 100%;
	height: auto;
}

#hoverBoxStaticstacks_in_32743 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

#hoverBoxRolloverstacks_in_32743 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
}

#hoverBoxLinkstacks_in_32743 a,
#hoverBoxLinkstacks_in_32743 a:hover {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../files/bg_fill.gif) repeat;
	border: none;
	outline: none;
}




#hoverBoxWrapperstacks_in_32743.touchDeviceDetected #hoverBoxStaticstacks_in_32743 {
	display: block;
	opacity: 1.00;
}

#hoverBoxWrapperstacks_in_32743.touchDeviceDetected #hoverBoxRolloverstacks_in_32743 {
	display: none;
	opacity: 0;
}









#hoverBoxWrapperstacks_in_32743.noTouchDeviceDetected #hoverBoxRolloverstacks_in_32743 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	-moz-transition: opacity 100ms linear;
	-webkit-transition: opacity 100ms linear;
	transition: opacity 100ms linear;
}

#hoverBoxWrapperstacks_in_32743.noTouchDeviceDetected:hover #hoverBoxRolloverstacks_in_32743 {
	opacity: 1.00;
}






















#stacks_in_31908 {
	padding: 0px 0px 15px 0px;
}
#usefulStackWrapperstacks_in_31908_22 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_31908_22 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_31908_22 {
		display: none;
	}
}















.spacerStack {
	height: auto;
	padding-bottom: 3.00%;
}

#spacerStackstacks_in_31908_37 {
	height: auto;
	padding-bottom: 3.00%;
}


















@media print {
	#spacerStackstacks_in_31908_37 {
		display: none !important;
	}
}
/* @group CSS Reset & Box Sizing */

#adaptiveGridstacks_in_31908_24 *,
#adaptiveGridstacks_in_31908_24 *:before,
#adaptiveGridstacks_in_31908_24 *:after {
	box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
}

#adaptiveGridstacks_in_31908_24 {
	display: block;
}

/*  */
#adaptiveGridstacks_in_31908_24 {
	visibility: hidden;
}
/*  */

#adaptiveGridstacks_in_31908_24:before {
	display: table;
	content: " ";	
}

#adaptiveGridstacks_in_31908_24 .adaptiveGridColumn {
	overflow: visible;
}

/*  */
#adaptiveGridstacks_in_31908_24 img {
	max-width: 100%;
	height: auto;
}
/*  */

#adaptiveGridstacks_in_31908_24 .adaptiveGridColumn {
	display: inline-block;
	float: left;
}

/* @end */

/* @group Column Padding Settings */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_31908_24 .gridCellInner {
		padding: 0px;
	}
	
	#adaptiveGridstacks_in_31908_24 {
		margin-left: -0px;
	}
	
	#adaptiveGridstacks_in_31908_24 {
		margin-right: -0px;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_31908_24 .gridCellInner {
		padding: 2px;
	}
	
	#adaptiveGridstacks_in_31908_24 {
		margin-left: -2px;
	}
	
	#adaptiveGridstacks_in_31908_24 {
		margin-right: -2px;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_31908_24 .gridCellInner {
		padding: 4px;
	}
	
	#adaptiveGridstacks_in_31908_24 {
		margin-left: -4px;
	}
	
	#adaptiveGridstacks_in_31908_24 {
		margin-right: -4px;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_31908_24 .gridCellInner {
		padding: 6px;
	}
	
	#adaptiveGridstacks_in_31908_24 {
		margin-left: -6px;
	}
	
	#adaptiveGridstacks_in_31908_24 {
		margin-right: -6px;
	}
}

/* @end */

/* @group Column Settings */



/* If column 1 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_31908_24 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_31908_24 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_31908_24 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_31908_24 .column1 {
		width: 50.00%;
	}
}



/* If column 2 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_31908_24 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_31908_24 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_31908_24 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_31908_24 .column2 {
		width: 50.00%;
	}
}






















/* @end */

/* @group Custom Classes */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_31908_24 .no-phone {
		display: none;
	}
	
	#adaptiveGridstacks_in_31908_24 .display-phone {
		display: block;
	}	
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_31908_24 .no-tablet {
		display: none;
	}
	
	#adaptiveGridstacks_in_31908_24 .display-tablet {
		display: block;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_31908_24 .no-laptop {
		display: none;
	}
	
	#adaptiveGridstacks_in_31908_24 .display-laptop {
		display: block;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_31908_24 .no-desktop {
		display: none;
	}
	
	#adaptiveGridstacks_in_31908_24 .display-desktop {
		display: block;
	}
}

@media print {
	#adaptiveGridstacks_in_31908_24 .no-print {
		display: none;
	}
}

@media screen {
	#adaptiveGridstacks_in_31908_24 .no-screen {
		display: none;
	}
}

/* @end */

/* @group User Style Settings */

/*  */

/*  */

/*  */

/*  */

/* @end */

/* @group Print Styling */

@media print {
	#adaptiveGridstacks_in_31908_24 {
		display: block;
		position: relative;
		height: auto;
		overflow: auto;
	}
	
	#adaptiveGridstacks_in_31908_24 .column1,
	#adaptiveGridstacks_in_31908_24 .column2,
	#adaptiveGridstacks_in_31908_24 .column3,
	#adaptiveGridstacks_in_31908_24 .column4,
	#adaptiveGridstacks_in_31908_24 .column5,
	#adaptiveGridstacks_in_31908_24 .column6,
	#adaptiveGridstacks_in_31908_24 .column7,
	#adaptiveGridstacks_in_31908_24 .column8,
	#adaptiveGridstacks_in_31908_24 .column9,
	#adaptiveGridstacks_in_31908_24 .column10,
	#adaptiveGridstacks_in_31908_24 .column11,
	#adaptiveGridstacks_in_31908_24 .column12 {
		float: none;
		position: relative;
		width: 100%;	
	}
	
	#adaptiveGridstacks_in_31908_24 .gridCellInner {
		padding: 0;
	}
}

/* @end *//*  */
#stacks_in_31908_24 {
	border: solid rgba(178, 178, 178, 1.00);
	border-width: 1px 0px 0px 0px;
}

#stacks_out_31908_24 {
	width: 89%;
}

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

#stacks_in_31908_13 {
	padding: 5px 0px 0px 0px;
}
#usefulStackWrapperstacks_in_33023 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_33023 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_33023 {
		display: none;
	}
}












.blockOverlay.cartloom-modal{z-index:9000!important}#stacks_in_31644 .expose_launcher{display:none;}.expose_contact_us{cursor:pointer}#expose_contact_us{display:none;z-index:9999;padding:15px;margin:0;overflow:visible !important;background-color:transparent;width:80%;max-width:600px;position:fixed;top:50%;left:50%;opacity:0;-webkit-transition:all 0.5s ease;transition:all 0.5s ease;-webkit-transform:translateY(-50%) translateX(-50%);transform:translateY(-50%) translateX(-50%);height:auto;min-height:50px;-webkit-box-shadow: 2px 2px 10px #1F1F1F;box-shadow: 2px 2px 10px #1F1F1F;border-radius:10px;border-style:solid;border-width:0px;border-color:#000000;background-color:#FFFFFF;}#expose_contact_us img.youtube_poster{display:none}#expose_contact_us > a.close{z-index:1000000;background-image:url('../../rw_common/plugins/stacks/expose-images/close.png');background-color:transparent !important;position:absolute;top:-12px;cursor:pointer;height:28px;width:28px;left:-12px;}
/* Start Contact Form stack CSS code */.stacks_in_31889formwrap{	margin: 0;}#stacks_in_31889comment{display: none;height: 0px;padding: 0px;margin: 0px;}.stacks_in_31889mail{padding: 0;}.stacks_in_31889fieldset{	border: none;	outline: none;	float : none !important;	text-align: left !important;}.stacks_in_31889formail{}.stacks_in_31889fieldset{	padding: 0 20px 0 3px;}#stacks_in_31889 label{display: block;margin: 10px 0 0 0;padding: 0 0 5px 0;line-height: 1.1em;}#stacks_in_31889 label *{display: inline;}#stacks_in_31889 .stacks_in_31889input{padding: 3px 7px 3px 7px;width: 100%;font-size: 12px;background: #FFFFFF;color: #555555;margin: 0;border: 1px solid #D8D8D8;-moz-border-radius: 3px;-webkit-border-radius: 3px;border-radius: 3px;}#stacks_in_31889 textarea{padding: 7px;width: 100%;font-size: 13px;border: 1px solid #D8D8D8;background: #FFFFFF;color: #555555;-moz-border-radius: 3px;-webkit-border-radius: 3px;border-radius: 3px;}.stacks_in_31889sendmail{margin-top: 20px;padding: 4px 7px 4px 7px;display: block;font-size: 12px;color: #444444;border: 1px solid #D8D8D8;background-color: #FFFFFF;-moz-border-radius: 3px;-webkit-border-radius: 3px;border-radius: 3px;cursor: pointer;}#sendmail:hover{cursor: pointer;}.stacks_in_31889response{display: none;width: 80%;border: 1px solid #D6392B;background: #FEF4FA;padding: 10px;margin: 20px auto 0 0;color: #444444;-moz-border-radius: 5px;-webkit-border-radius: 5px;border-radius: 5px;min-height: 35px;}.stacks_in_31889loader{float: left;width: 35px;height: 35px;padding: 0 15px 30px 0;}.stacks_in_31889autoreplay{visibility: hidden;height: 0px;display: none;}#stacks_in_31889 textarea{	color: #555555 !important;}/* End Contact Form stack CSS code */