a.block-link{display:block;text-decoration:none !important;padding:0;margin:0;color:inherit}a.block-link:link,a.block-link:visited,a.block-link:hover,a.block-link:active{color:inherit}
/* 
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);
}






.rwml-menu-imported {
	display: none;
}

#stacks_in_2664523_43 {
	display: none !important;
}


/* Start by hiding all translatable items. This class is applied via jQuery in the scripts-global.js file */
.rwml-translatable {
	display: none;
}


/* If the content with a selector of '.rwml-translatable' is equal to the body class and language attribute, display it */
body.aud .rwml-translatable:lang(aud) {
	display: inherit;
}



/* If the content with a selector of '.rwml-translatable' is equal to the body class and language attribute, display it */
body.cad .rwml-translatable:lang(cad) {
	display: inherit;
}


/* If the content with a selector of '.rwml-translatable' is equal to the body class and language attribute, display it */
body.eur .rwml-translatable:lang(eur) {
	display: inherit;
}


/* If the content with a selector of '.rwml-translatable' is equal to the body class and language attribute, display it */
body.gbp .rwml-translatable:lang(gbp) {
	display: inherit;
}


/* If the content with a selector of '.rwml-translatable' is equal to the body class and language attribute, display it */
body.nzd .rwml-translatable:lang(nzd) {
	display: inherit;
}


/* If the content with a selector of '.rwml-translatable' is equal to the body class and language attribute, display it */
body.usd .rwml-translatable:lang(usd) {
	display: inherit;
}








/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Hide Show Stack' 
Style Sheet: fsrmobilehideshow.css Style Sheet
Created: 10, June 2014
Last Modified: 29, June 2014
Author: Blueball Design LLC/Charlie Lockhart
http://freestackresponsive.blueballdesign.com
Copyright 2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/


/************************************************************************************
DESKTOP
*************************************************************************************/


#stacks_in_2664523_116desktopcontent {
	display: none;
	height: auto;
	max-width: 100%;
}




#stacks_in_2664523_116mobilecontent { 
	display: none;
}




/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 960px) {
	
#stacks_in_2664523_116mobilecontent { 
	display: block;
	height: auto;
	max-width: 100%;
}

#stacks_in_2664523_116desktopcontent {
	display: none;
}

}
#SuperMenuWrapperstacks_in_2664523_128 {
	position: relative;
}



#SuperMenu1 {
	height: 30px;
	line-height: 30px;
	border-left: 0px solid #666666;
	border-right: 0px solid #666666;
	border-top: 3px solid #666666;
	border-bottom: 0px solid #666666;
	font-size: 110%;
	display: block;
	color: #FCFFFF;
	text-align: center;
	cursor: pointer;
	transition: all 300ms ease-in-out;
	position: relative;
	z-index: 1;
}

#SuperMenu1 a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	outline: none;
	text-decoration: none;
}

/*  */
body.supermenu-active .superMenuCloseLayer {
	background: transparent;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 10;
	cursor: pointer;
}
/*  */





#SuperMenu1:hover,
#SuperMenu1.supermenu-active {
	opacity: 0.99;
	color: #FFFFFF;
}

#SuperMenu1.supermenu-active {
	cursor: default;
}




/* Solid colour fill */
#SuperMenu1 {
	background: #666666;
}

#SuperMenu1:hover,
#SuperMenu1.supermenu-active {
	background: #666666;
}

















#SuperMenu1.supermenu-active {
}

#SuperMenuPanel-SuperMenu1 {
	display: none;
	position: absolute;
	left: 0;
	z-index: 997;
}

#SuperMenuFillstacks_in_2664523_128 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	background: #cdcdcd;
	z-index: 998;
	opacity: 0.99;
	border-bottom: 2px solid #EAEAEA;
}




/* Solid colour fill */
#SuperMenuFillstacks_in_2664523_128 {
	background: #505151;
}
















#SuperMenuContentstacks_in_2664523_128 {
	position: relative;
	z-index: 999;
	color: #333333;
	margin: 0 auto;
	padding-left: 5.00%;
	padding-right: 5.00%;
	padding-top: 2.00%;
	padding-bottom: 2.00%;
	font-size: 100%;
}



#SuperMenuContentstacks_in_2664523_128 h1,
#SuperMenuContentstacks_in_2664523_128 h2,
#SuperMenuContentstacks_in_2664523_128 h3,
#SuperMenuContentstacks_in_2664523_128 h4,
#SuperMenuContentstacks_in_2664523_128 h5,
#SuperMenuContentstacks_in_2664523_128 h6 {
	color: #000000;
}

#SuperMenuContentstacks_in_2664523_128 a,
#SuperMenuContentstacks_in_2664523_128 a:visited {
	color: #0080FF;
}

#SuperMenuContentstacks_in_2664523_128 a:hover,
#SuperMenuContentstacks_in_2664523_128 a:active {
	color: #004080;
}

#SuperMenuClosestacks_in_2664523_128 {
	position: absolute;
	top: 0;
	right: 0;
	cursor: pointer;
	outline: none;
	border: none;
	z-index: 1000;
}

@media screen and (max-width: 0px) {
	#SuperMenuWrapperstacks_in_2664523_128, #SuperMenuPanel-SuperMenu1 {
		display: none !important;
	}
}

@media print {
	#SuperMenuWrapperstacks_in_2664523_128, #SuperMenuPanel-SuperMenu1 {
		display: none;
	}
}

/* @end */



/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Styler Stack' 
Style Sheet: fsrstyler.css Style Sheet
Created: 26, September 2012
Last Modified: 22, April 2014
Author: Charlie Lockhart/Blueball Design LLC
www.blueballdesign.com
Copyright 2012-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2664523_129 {
	font-size: 0.95em;
	color: #000000;
	line-height: 1.63em;
}

#stacks_in_2664523_129 p {
	font-size: 0.95em;
	color: ##000000;
	line-height: 1.63em;
}

#stacks_in_2664523_129 a:link  {
	color: #FFFFFF;
	text-decoration: none;
}

#stacks_in_2664523_129 a:visited {
	color: #FFFFFF;
	text-decoration: none;
}

#stacks_in_2664523_129 a:hover {
	color: #CCCCCC;
	text-decoration: none;
}

#stacks_in_2664523_129  a:active  {
	color: #FFFFFF;
	text-decoration: none;
}

#stacks_in_2664523_129 h1 {
	color: #000000;
	font-size: 2.30em;
	line-height: 1.00em;
}

#stacks_in_2664523_129 h2 {
	color: #000000;
	font-size: 2.00em;
	line-height: 1.00em;
}

#stacks_in_2664523_129 h3 {
	color: #000000;
	font-size: 1.60em;
	line-height: 1.00em;
}

#stacks_in_2664523_129 h4 {
	color: #000000;
	font-size: 1.40em;
	line-height: 1.00em;
}

#stacks_in_2664523_129 h5 {
	color: #000000;
	font-size: 1.20em;
	line-height: 1.00em;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 600px) {
	
#stacks_in_2664523_129 {
	font-size: 0.90em;
	line-height: 1.63em;
}

#stacks_in_2664523_129 p {
	font-size: 0.90em;
	line-height: 1.63em;
}

#stacks_in_2664523_129 h1 {
	font-size: 2.30em;
	line-height: 1.20em;
}

#stacks_in_2664523_129 h2 {
	font-size: 2.00em;
	line-height: 1.20em;
}

#stacks_in_2664523_129 h3 {
	font-size: 1.60em;
	line-height: 1.20em;
}

#stacks_in_2664523_129 h4 {
	font-size: 1.40em;
	line-height: 1.20em;
}

#stacks_in_2664523_129 h5 {
	font-size: 1.20em;
	line-height: 1.20em;
}

}
#stacks_in_2664523_134 {
	display:inline-block; width:100%; line-height: 0.360000em;
	font-size: 129%;
}

/* CSS code for getting consent for cookies, custom popup message box */
#mini_cookie_wrapper_stacks_in_2664523_59 {
	display: inline-block;
	background: rgba(255, 255, 255, 1.00);
	border-radius: 0.5rem;
	box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.20);
	margin: 3rem;
	padding: 0.7rem;
	max-height: 100vh;
	max-width: 40rem;
	overflow: auto;
	
	
	
	
	
	
	
	
	
	position: fixed;
	bottom: 0;
	left: 0;
	display: block;
	margin: 0;
	max-width: none;
	width: 100%;
	border-radius: 0;
	
	
	
	
	
	
	font-weight: normal;
  font-style: normal;
  text-transform: none;
  text-decoration: none;
  
  
  
  
	z-index: 99999;
}







#mini_cookie_wrapper_stacks_in_2664523_59.dismissed {
	display: none;
}

#mini_cookie_stacks_in_2664523_59 {
	display: flex;
	align-items: center;
	
	
}

#mini_cookie_content_stacks_in_2664523_59,
#mini_cookie_button_stacks_in_2664523_59 {
	font-size: 1.0rem;
	line-height: 1.5em;
	letter-spacing: 0px;
	margin: 0;
}

#mini_cookie_content_stacks_in_2664523_59 {
	flex: 1;
	color: rgba(66, 66, 66, 1.00);
}

@media screen and (max-width: 568px) {
	/* Mobile styling */
	#mini_cookie_stacks_in_2664523_59 {
		flex-direction: column;
	}

	#mini_cookie_wrapper_stacks_in_2664523_59 {
		width: 100vw;
		margin: 0;
		border-radius: 0;
		margin-left: 0;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}

	#mini_cookie_content_stacks_in_2664523_59 {
		text-align: center;
		margin-bottom: 1rem;
	}

	#mini_cookie_button_stacks_in_2664523_59 {
		margin-left: 0 !important;
	}
}

#mini_cookie_supplementary_link_stacks_in_2664523_59 a,
#mini_cookie_supplementary_link_stacks_in_2664523_59 a:visited,
#mini_cookie_content_stacks_in_2664523_59 a,
#mini_cookie_content_stacks_in_2664523_59 a:visited {
	font-weight: 600;
	color: rgba(41, 145, 204, 1.00);
	background: none;
	border: none;
	transition: all 100ms ease-in-out;
	font-weight: normal;
	font-style: normal;
	text-transform: none;
	text-decoration: none;
	
	
	
	
}

#mini_cookie_supplementary_link_stacks_in_2664523_59 a:hover,
#mini_cookie_content_stacks_in_2664523_59 a:hover {
	color: rgba(82, 124, 154, 1.00);
	text-decoration: none;
	background: none;
	border: none;
}

#mini_cookie_supplementary_link_stacks_in_2664523_59 a:active,
#mini_cookie_content_stacks_in_2664523_59 a:active {
	color: rgba(82, 124, 154, 1.00);
	text-decoration: none;
	background: none;
	border: none;
	opacity: 0.50;
}

#mini_cookie_supplementary_link_stacks_in_2664523_59 a:focus,
#mini_cookie_content_stacks_in_2664523_59 a:focus {
	outline: 1px dotted rgba(82, 124, 154, 1.00);
}

#mini_cookie_supplementary_link_stacks_in_2664523_59 a {
	display: inline-block;
	padding: 8px 16px;
	font-size: 0.9rem;
}




#mini_cookie_consent_button_wrapper_stacks_in_2664523_59 {
	display: flex;
	flex-direction: column;
	margin-left: 0.7rem;
	text-align: center;
}

#mini_cookie_consent_button_wrapper_stacks_in_2664523_59 #mini_cookie_button_stacks_in_2664523_59 {
	order: 1;
	margin-left: 0;
}

#mini_cookie_consent_button_wrapper_stacks_in_2664523_59 #mini_cookie_supplementary_link_stacks_in_2664523_59 {
	order: 2;
	margin-left: 0;
}











/* MiniCookie create, edit, delete buttons, and buttons for our own popup message */
#mini_cookie_button_stacks_in_2664523_59,
#mini_cookie_button_accept_all_stacks_in_2664523_59,
#mini_cookie_button_disallow_all_stacks_in_2664523_59,
.mini_cookie_button_stacks_in_2664523_59 {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: rgba(41, 145, 204, 0.20);
	border: 1px hidden rgba(41, 145, 204, 0.20);
	border-radius: 0.25rem;
	color: rgba(41, 145, 204, 1.00);
	cursor: pointer;
	margin-left: 0.7rem;
	display: inline-block;
	font-family: inherit;
	font-size: 0.9rem;
	font-weight: 600;
	padding: 8px 16px;
	text-align: center;
	transition: all 100ms ease-in-out;
	white-space: nowrap;
	font-weight: normal;
  font-style: normal;
  text-transform: none;
  text-decoration: none;
  font-weight: bold;
  
  
  
	margin-bottom: 5px;
	
	
}

#mini_cookie_button_stacks_in_2664523_59:hover,
.mini_cookie_button_stacks_in_2664523_59:hover,
#mini_cookie_button_accept_all_stacks_in_2664523_59:hover,
#mini_cookie_button_disallow_all_stacks_in_2664523_59:hover {
	color: rgba(82, 124, 154, 1.00);
	background-color: rgba(41, 145, 204, 0.40);
	border: 1px hidden rgba(41, 145, 204, 0.40);
}


#mini_cookie_button_stacks_in_2664523_59:active,
.mini_cookie_button_stacks_in_2664523_59:active,
#mini_cookie_button_accept_all_stacks_in_2664523_59:active,
#mini_cookie_button_disallow_all_stacks_in_2664523_59:active {
	color: rgba(82, 124, 154, 1.00);
	background-color: rgba(41, 145, 204, 0.40);
	border: 1px hidden rgba(41, 145, 204, 0.40);
	opacity: 0.50;
}

#mini_cookie_button_stacks_in_2664523_59:focus,
#mini_cookie_button_accept_all_stacks_in_2664523_59:focus,
#mini_cookie_button_disallow_all_stacks_in_2664523_59:focus,
.mini_cookie_button_stacks_in_2664523_59:focus {
	outline: 2px dotted rgba(82, 124, 154, 1.00);
}







#dialog_title_stacks_in_2664523_59,
#dialog_desc_stacks_in_2664523_59 {
	display: none;
}


@media print {
	#mini_cookie_stack_stacks_in_2664523_59,
	#mini_cookie_window_shade_stacks_in_2664523_59,
	#mini_cookie_wrapper_stacks_in_2664523_59 {
		display: none;
	}
}



/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Styler Stack' 
Style Sheet: fsrstyler.css Style Sheet
Created: 26, September 2012
Last Modified: 22, April 2014
Author: Charlie Lockhart/Blueball Design LLC
www.blueballdesign.com
Copyright 2012-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2664523_60 {
	font-size: 0.83em;
	color: #242424;
	line-height: 1.38em;
}

#stacks_in_2664523_60 p {
	font-size: 0.83em;
	color: ##242424;
	line-height: 1.38em;
}

#stacks_in_2664523_60 a:link  {
	color: #2484FF;
	text-decoration: underline;
}

#stacks_in_2664523_60 a:visited {
	color: #2E5BFF;
	text-decoration: underline;
}

#stacks_in_2664523_60 a:hover {
	color: #0031FF;
	text-decoration: none;
}

#stacks_in_2664523_60  a:active  {
	color: #2484FF;
	text-decoration: underline;
}

#stacks_in_2664523_60 h1 {
	color: #000000;
	font-size: 2.30em;
	line-height: 1.00em;
}

#stacks_in_2664523_60 h2 {
	color: #000000;
	font-size: 2.00em;
	line-height: 1.00em;
}

#stacks_in_2664523_60 h3 {
	color: #000000;
	font-size: 1.60em;
	line-height: 1.00em;
}

#stacks_in_2664523_60 h4 {
	color: #000000;
	font-size: 1.40em;
	line-height: 1.00em;
}

#stacks_in_2664523_60 h5 {
	color: #000000;
	font-size: 1.20em;
	line-height: 1.00em;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 600px) {
	
#stacks_in_2664523_60 {
	font-size: 0.90em;
	line-height: 1.20em;
}

#stacks_in_2664523_60 p {
	font-size: 0.90em;
	line-height: 1.20em;
}

#stacks_in_2664523_60 h1 {
	font-size: 2.30em;
	line-height: 1.20em;
}

#stacks_in_2664523_60 h2 {
	font-size: 2.00em;
	line-height: 1.20em;
}

#stacks_in_2664523_60 h3 {
	font-size: 1.60em;
	line-height: 1.20em;
}

#stacks_in_2664523_60 h4 {
	font-size: 1.40em;
	line-height: 1.20em;
}

#stacks_in_2664523_60 h5 {
	font-size: 1.20em;
	line-height: 1.20em;
}

}
#stacks_in_2664523_63 {
	font-size: 99%;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Styler Stack' 
Style Sheet: fsrstyler.css Style Sheet
Created: 26, September 2012
Last Modified: 22, April 2014
Author: Charlie Lockhart/Blueball Design LLC
www.blueballdesign.com
Copyright 2012-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2664523_69 {
	font-size: 0.83em;
	color: #242424;
	line-height: 1.38em;
}

#stacks_in_2664523_69 p {
	font-size: 0.83em;
	color: ##242424;
	line-height: 1.38em;
}

#stacks_in_2664523_69 a:link  {
	color: #2484FF;
	text-decoration: underline;
}

#stacks_in_2664523_69 a:visited {
	color: #800080;
	text-decoration: underline;
}

#stacks_in_2664523_69 a:hover {
	color: #FF0000;
	text-decoration: none;
}

#stacks_in_2664523_69  a:active  {
	color: #2484FF;
	text-decoration: underline;
}

#stacks_in_2664523_69 h1 {
	color: #000000;
	font-size: 2.30em;
	line-height: 1.00em;
}

#stacks_in_2664523_69 h2 {
	color: #000000;
	font-size: 2.00em;
	line-height: 1.00em;
}

#stacks_in_2664523_69 h3 {
	color: #000000;
	font-size: 1.60em;
	line-height: 1.00em;
}

#stacks_in_2664523_69 h4 {
	color: #000000;
	font-size: 1.40em;
	line-height: 1.00em;
}

#stacks_in_2664523_69 h5 {
	color: #000000;
	font-size: 1.20em;
	line-height: 1.00em;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 600px) {
	
#stacks_in_2664523_69 {
	font-size: 0.90em;
	line-height: 1.20em;
}

#stacks_in_2664523_69 p {
	font-size: 0.90em;
	line-height: 1.20em;
}

#stacks_in_2664523_69 h1 {
	font-size: 2.30em;
	line-height: 1.20em;
}

#stacks_in_2664523_69 h2 {
	font-size: 2.00em;
	line-height: 1.20em;
}

#stacks_in_2664523_69 h3 {
	font-size: 1.60em;
	line-height: 1.20em;
}

#stacks_in_2664523_69 h4 {
	font-size: 1.40em;
	line-height: 1.20em;
}

#stacks_in_2664523_69 h5 {
	font-size: 1.20em;
	line-height: 1.20em;
}

}
#stacks_in_2664523_72 {
	font-size: 99%;
}

/* Vibracart Pro: Cart v1.5.0 by Vibralogix */
#embedvcp {
  display: block;
  position: relative}    
/* End Vibracart Pro: Cart */
#stacks_in_2664523_2 {
	background-color: rgba(255, 255, 255, 1.00);
}
/*
-------------------------------------------
Stack: Blueball FreeStack Responsive Max Width Stack
Style Sheet: fsrmaxwidth.css
Created: 23, October 2012
Last Modified: 10, November, 2014
Author: Blueball Design
www.blueballdesign.com
Copyright 2013-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2664523_3 {
	max-width: 1024px;
	min-width: 320px;
	margin: 0px auto !important;
}

/************************************************************************************
MOBILE
*************************************************************************************/

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

#stacks_in_2664523_3 {
	max-width: 100% !important;
	min-width: 50% !important;
}

}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive 2 Column Stack' 
Style Sheet: fsr2columns.css Style Sheet
Created: 29, December 2012
Last Modified: 17, April 2014
Author: Blueball Design, Charlie Lockhart
www.blueballdesign.com
Copyright 2012-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2664523_4 #fsr_colwrap_stacks_in_2664523_4 {
	width: 100%;
	vertical-align: top;
	margin: 0;
	padding: 0;
	overflow: auto;
}

#stacks_in_2664523_4 #fsr_colwrap_stacks_in_2664523_4 #fsr_leftcol_stacks_in_2664523_4 {
	float: left;
	display: block;
	width: 21%;
	height: auto;
	margin: 0;
}

#stacks_in_2664523_4 #fsr_colwrap_stacks_in_2664523_4 #fsr_leftcol_stacks_in_2664523_4 .leftcolpad_stacks_in_2664523_4 {
	padding: 0px 0px 0px 0px;
}

#stacks_in_2664523_4 #fsr_colwrap_stacks_in_2664523_4 #fsr_rightcol_stacks_in_2664523_4 {
	float: right;
	display: block;
	width: 79%;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_2664523_4 #fsr_colwrap_stacks_in_2664523_4 #fsr_rightcol_stacks_in_2664523_4 .rightcolpad_stacks_in_2664523_4 {
	padding: 0px 0px 0px 0px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

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

#stacks_in_2664523_4 #fsr_colwrap_stacks_in_2664523_4 #fsr_leftcol_stacks_in_2664523_4 {
	display: block;
	float: left;
	width: 100% !important;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_2664523_4 #fsr_colwrap_stacks_in_2664523_4 #fsr_leftcol_stacks_in_2664523_4 .leftcolpad_stacks_in_2664523_4 {
	padding: 0px 0px 0px 0px;
}

#stacks_in_2664523_4 #fsr_colwrap_stacks_in_2664523_4 #fsr_rightcol_stacks_in_2664523_4 {
	display: block;
	float: left;
	width: 100% !important;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_2664523_4 #fsr_colwrap_stacks_in_2664523_4 #fsr_rightcol_stacks_in_2664523_4 .rightcolpad_stacks_in_2664523_4 {
	padding: 0px 0px 0px 0px;
}

}/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Reposition Alt Stack' 
Style Sheet: fsrrepositionalt.css Style Sheet
Created: 26, August 2013
Last Modified: 03, June 2014
Author: Blueball Design LLC/Charlie Lockhart
http://freestackresponsive.blueballdesign.com
Copyright 2013-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2664523_5 {
	padding: 0px 0px 0px 0px;
	margin: 10px 0px 6px 22px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 768px) {
	
#stacks_in_2664523_5 { 
    padding: 0px 0px 0px 0px;
    margin: 10px 0px 6px 20px;
}
}
/* Start True Retina stack CSS code */#stacks_in_2664523_6 img{	max-width: 50%;	height: auto;}/* End True Retina stack CSS code */
#stacks_out_2664523_6 {
	margin-left:0;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive 2 Column Stack' 
Style Sheet: fsr2columns.css Style Sheet
Created: 29, December 2012
Last Modified: 17, April 2014
Author: Blueball Design, Charlie Lockhart
www.blueballdesign.com
Copyright 2012-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2664523_14 #fsr_colwrap_stacks_in_2664523_14 {
	width: 100%;
	vertical-align: top;
	margin: 0;
	padding: 0;
	overflow: auto;
}

#stacks_in_2664523_14 #fsr_colwrap_stacks_in_2664523_14 #fsr_leftcol_stacks_in_2664523_14 {
	float: left;
	display: block;
	width: 50%;
	height: auto;
	margin: 0;
}

#stacks_in_2664523_14 #fsr_colwrap_stacks_in_2664523_14 #fsr_leftcol_stacks_in_2664523_14 .leftcolpad_stacks_in_2664523_14 {
	padding: 0px 0px 0px 0px;
}

#stacks_in_2664523_14 #fsr_colwrap_stacks_in_2664523_14 #fsr_rightcol_stacks_in_2664523_14 {
	float: right;
	display: block;
	width: 50%;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_2664523_14 #fsr_colwrap_stacks_in_2664523_14 #fsr_rightcol_stacks_in_2664523_14 .rightcolpad_stacks_in_2664523_14 {
	padding: 0px 0px 0px 0px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

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

#stacks_in_2664523_14 #fsr_colwrap_stacks_in_2664523_14 #fsr_leftcol_stacks_in_2664523_14 {
	display: block;
	float: left;
	width: 100% !important;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_2664523_14 #fsr_colwrap_stacks_in_2664523_14 #fsr_leftcol_stacks_in_2664523_14 .leftcolpad_stacks_in_2664523_14 {
	padding: 0px 0px 0px 0px;
}

#stacks_in_2664523_14 #fsr_colwrap_stacks_in_2664523_14 #fsr_rightcol_stacks_in_2664523_14 {
	display: block;
	float: left;
	width: 100% !important;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_2664523_14 #fsr_colwrap_stacks_in_2664523_14 #fsr_rightcol_stacks_in_2664523_14 .rightcolpad_stacks_in_2664523_14 {
	padding: 0px 0px 0px 0px;
}

}/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Reposition Alt Stack' 
Style Sheet: fsrrepositionalt.css Style Sheet
Created: 26, August 2013
Last Modified: 03, June 2014
Author: Blueball Design LLC/Charlie Lockhart
http://freestackresponsive.blueballdesign.com
Copyright 2013-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2664523_17 {
	padding: 0px 0px 0px 0px;
	margin: 10px 0px 0px 0px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 400px) {
	
#stacks_in_2664523_17 { 
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}
}

#stacks_out_2664523_17 {
	margin-right:0;
}

#stacks_in_2664523_19 {
	margin: 0px 0px 0px 10px;
}

#stacks_out_2664523_19 {
	width: 256px;
	margin-right:0;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive 2 Column Stack' 
Style Sheet: fsr2columns.css Style Sheet
Created: 29, December 2012
Last Modified: 17, April 2014
Author: Blueball Design, Charlie Lockhart
www.blueballdesign.com
Copyright 2012-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2664523_32 #fsr_colwrap_stacks_in_2664523_32 {
	width: 100%;
	vertical-align: top;
	margin: 0;
	padding: 0;
	overflow: auto;
}

#stacks_in_2664523_32 #fsr_colwrap_stacks_in_2664523_32 #fsr_leftcol_stacks_in_2664523_32 {
	float: left;
	display: block;
	width: 52%;
	height: auto;
	margin: 0;
}

#stacks_in_2664523_32 #fsr_colwrap_stacks_in_2664523_32 #fsr_leftcol_stacks_in_2664523_32 .leftcolpad_stacks_in_2664523_32 {
	padding: 0px 0px 0px 0px;
}

#stacks_in_2664523_32 #fsr_colwrap_stacks_in_2664523_32 #fsr_rightcol_stacks_in_2664523_32 {
	float: right;
	display: block;
	width: 48%;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_2664523_32 #fsr_colwrap_stacks_in_2664523_32 #fsr_rightcol_stacks_in_2664523_32 .rightcolpad_stacks_in_2664523_32 {
	padding: 0px 0px 0px 0px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

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

#stacks_in_2664523_32 #fsr_colwrap_stacks_in_2664523_32 #fsr_leftcol_stacks_in_2664523_32 {
	display: block;
	float: left;
	width: 100% !important;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_2664523_32 #fsr_colwrap_stacks_in_2664523_32 #fsr_leftcol_stacks_in_2664523_32 .leftcolpad_stacks_in_2664523_32 {
	padding: 0px 0px 0px 0px;
}

#stacks_in_2664523_32 #fsr_colwrap_stacks_in_2664523_32 #fsr_rightcol_stacks_in_2664523_32 {
	display: block;
	float: left;
	width: 100% !important;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_2664523_32 #fsr_colwrap_stacks_in_2664523_32 #fsr_rightcol_stacks_in_2664523_32 .rightcolpad_stacks_in_2664523_32 {
	padding: 0px 0px 0px 0px;
}

}
#stacks_in_2664523_32 {
	-moz-border-radius:  4px;
	-webkit-border-radius:  4px;
	border-radius:  4px;
	margin: 6px 10px 0px 0px;
	padding: 0px 0px 0px 4px;
}

#stacks_out_2664523_32 {
	width: 280px;
	margin-right:0;
}

#stacks_in_2664523_33 {
	margin: 10px 0px 10px 0px;
}

#stacks_out_2664523_33 {
	width: 205px;
	margin-right:0;
}





















#rwml_switch_language_form_stacks_in_2664523_35 {
	text-align: left;
	
	
}








@media print {
	#switchContainerstacks_in_2664523_35 {
		display: none !important;
	}
}



#stacks_in_2664523_41 {
	margin: 0px 0px 0px 6px;
}

#stacks_out_2664523_41 {
	width: 140px;
	margin-left:0;
}

#stacks_in_2664523_42 {
	font-size: 75%;
}

#stacks_in_2664523_50 {
	margin: 6px 0px 0px 0px;
}

#stacks_out_2664523_50 {
	width: 50px;
	margin-right:0;
}

#stacks_out_2664523_48 {
	width: 100px;
	margin-right:0;
}

#stacks_in_2664523_56 {
	margin: 6px 0px 0px 0px;
}

#stacks_out_2664523_56 {
	width: 30px;
	margin-right:0;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Hide Show Stack' 
Style Sheet: fsrmobilehideshow.css Style Sheet
Created: 10, June 2014
Last Modified: 29, June 2014
Author: Blueball Design LLC/Charlie Lockhart
http://freestackresponsive.blueballdesign.com
Copyright 2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/


/************************************************************************************
DESKTOP
*************************************************************************************/


#stacks_in_2664523_104desktopcontent {
	display: block;
	height: auto;
	max-width: 100%;
}




#stacks_in_2664523_104mobilecontent { 
	display: none;
}




/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 961px) {
	
#stacks_in_2664523_104mobilecontent { 
	display: none;
	height: auto;
	max-width: 100%;
}

#stacks_in_2664523_104desktopcontent {
	display: none;
}

}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Styler Stack' 
Style Sheet: fsrstyler.css Style Sheet
Created: 26, September 2012
Last Modified: 22, April 2014
Author: Charlie Lockhart/Blueball Design LLC
www.blueballdesign.com
Copyright 2012-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2664523_100 {
	font-size: 1.05em;
	color: #000000;
	line-height: 1.11em;
}

#stacks_in_2664523_100 p {
	font-size: 1.05em;
	color: ##000000;
	line-height: 1.11em;
}

#stacks_in_2664523_100 a:link  {
	color: #666666;
	text-decoration: none;
}

#stacks_in_2664523_100 a:visited {
	color: #666666;
	text-decoration: none;
}

#stacks_in_2664523_100 a:hover {
	color: #333333;
	text-decoration: none;
}

#stacks_in_2664523_100  a:active  {
	color: #666666;
	text-decoration: none;
}

#stacks_in_2664523_100 h1 {
	color: #000000;
	font-size: 2.30em;
	line-height: 1.00em;
}

#stacks_in_2664523_100 h2 {
	color: #000000;
	font-size: 2.00em;
	line-height: 1.00em;
}

#stacks_in_2664523_100 h3 {
	color: #000000;
	font-size: 1.60em;
	line-height: 1.00em;
}

#stacks_in_2664523_100 h4 {
	color: #000000;
	font-size: 1.40em;
	line-height: 1.00em;
}

#stacks_in_2664523_100 h5 {
	color: #000000;
	font-size: 1.20em;
	line-height: 1.00em;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 600px) {
	
#stacks_in_2664523_100 {
	font-size: 0.90em;
	line-height: 1.63em;
}

#stacks_in_2664523_100 p {
	font-size: 0.90em;
	line-height: 1.63em;
}

#stacks_in_2664523_100 h1 {
	font-size: 2.30em;
	line-height: 1.20em;
}

#stacks_in_2664523_100 h2 {
	font-size: 2.00em;
	line-height: 1.20em;
}

#stacks_in_2664523_100 h3 {
	font-size: 1.60em;
	line-height: 1.20em;
}

#stacks_in_2664523_100 h4 {
	font-size: 1.40em;
	line-height: 1.20em;
}

#stacks_in_2664523_100 h5 {
	font-size: 1.20em;
	line-height: 1.20em;
}

}#stacks_in_2664523_77>.s3_row {
	margin: 0 -0px;
}

#stacks_in_2664523_77>.s3_row>.s3_column_left {
	width: 45.87%;
}

#stacks_in_2664523_77>.s3_row>.s3_column_right {
	width: 54.130001%;
}




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










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



}



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


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


}






#stacks_in_2664523_77 {
	margin: 10px 4px 8px 0px;
}
#stacks_in_2664523_80>.s3_row {
	margin: 0 -0px;
}

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

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

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

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








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



}



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


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


}



#stacks_in_2664523_84>.s3_row {
	margin: 0 -0px;
}

#stacks_in_2664523_84>.s3_row>.s3_column_left {
	width: 26.78%;
}

#stacks_in_2664523_84>.s3_row>.s3_column_center {
	width: 48.400002%;
}

#stacks_in_2664523_84>.s3_row>.s3_column_right {
	width: 24.82%;
}

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








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



}



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


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


}




#stacks_in_2664046_1 {
	background-color: rgba(150, 118, 255, 1.00);
	border: solid rgba(204, 204, 204, 1.00);
	border-width: 0px 0px 3px 0px;
}
/*
-------------------------------------------
Stack: Blueball FreeStack Responsive Max Width Stack
Style Sheet: fsrmaxwidth.css
Created: 23, October 2012
Last Modified: 10, November, 2014
Author: Blueball Design
www.blueballdesign.com
Copyright 2013-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2664046_2 {
	max-width: 1024px;
	min-width: 320px;
	margin: 0px auto !important;
}

/************************************************************************************
MOBILE
*************************************************************************************/

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

#stacks_in_2664046_2 {
	max-width: 100% !important;
	min-width: 50% !important;
}

}
/*
-------------------------------------------
File: 'Blueball FreeStacks' fscontent.css Style Sheet
Created: 17, January, 2011
Last Modified: 20, April, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2010-2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2664046_3 {
	-moz-border-radius-topright: 0px;
	-webkit-border-top-right-radius: 0px;
	border-top-right-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-webkit-border-top-left-radius: 0px;
	border-top-left-radius: 0px;
	-moz-border-radius-bottomright: 0px;
	-webkit-border-bottom-right-radius: 0px;
	border-bottom-right-radius: 0px;
	-moz-border-radius-bottomleft: 0px;
	-webkit-border-bottom-left-radius: 0px;
	border-bottom-left-radius: 0px;
}

#stacks_in_2664046_3 #content {
	font-size: 15px;
	line-height: 16px;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive 2 Column Stack' 
Style Sheet: fsr2columns.css Style Sheet
Created: 29, December 2012
Last Modified: 17, April 2014
Author: Blueball Design, Charlie Lockhart
www.blueballdesign.com
Copyright 2012-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2664046_4 #fsr_colwrap_stacks_in_2664046_4 {
	width: 100%;
	vertical-align: top;
	margin: 0;
	padding: 0;
	overflow: auto;
}

#stacks_in_2664046_4 #fsr_colwrap_stacks_in_2664046_4 #fsr_leftcol_stacks_in_2664046_4 {
	float: left;
	display: block;
	width: 61%;
	height: auto;
	margin: 0;
}

#stacks_in_2664046_4 #fsr_colwrap_stacks_in_2664046_4 #fsr_leftcol_stacks_in_2664046_4 .leftcolpad_stacks_in_2664046_4 {
	padding: 0px 0px 0px 0px;
}

#stacks_in_2664046_4 #fsr_colwrap_stacks_in_2664046_4 #fsr_rightcol_stacks_in_2664046_4 {
	float: right;
	display: block;
	width: 39%;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_2664046_4 #fsr_colwrap_stacks_in_2664046_4 #fsr_rightcol_stacks_in_2664046_4 .rightcolpad_stacks_in_2664046_4 {
	padding: 0px 0px 0px 0px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

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

#stacks_in_2664046_4 #fsr_colwrap_stacks_in_2664046_4 #fsr_leftcol_stacks_in_2664046_4 {
	display: block;
	float: left;
	width: 100% !important;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_2664046_4 #fsr_colwrap_stacks_in_2664046_4 #fsr_leftcol_stacks_in_2664046_4 .leftcolpad_stacks_in_2664046_4 {
	padding: 0px 0px 0px 0px;
}

#stacks_in_2664046_4 #fsr_colwrap_stacks_in_2664046_4 #fsr_rightcol_stacks_in_2664046_4 {
	display: block;
	float: left;
	width: 100% !important;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_2664046_4 #fsr_colwrap_stacks_in_2664046_4 #fsr_rightcol_stacks_in_2664046_4 .rightcolpad_stacks_in_2664046_4 {
	padding: 0px 0px 0px 0px;
}

}/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive 3 Column Stack' 
Style Sheet: fsr3columns.css Style Sheet
Created: 4, January 2013
Last Modified: 17, April 2014
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2013-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2664046_5 #fsr_3colwrap_stacks_in_2664046_5 {
	width: 100%;
	vertical-align: top;
	margin: 0;
	padding: 0;
	overflow: auto;
}

#stacks_in_2664046_5 #fsr_3colwrap_stacks_in_2664046_5 #fsr_left3col_stacks_in_2664046_5 {
	float: left;
	width: 33.33%;
	margin: 0;
	padding: 0;
}

#stacks_in_2664046_5 #fsr_3colwrap_stacks_in_2664046_5 #fsr_left3col_stacks_in_2664046_5 .left3colpad_stacks_in_2664046_5 {
	padding: 0px 0px 0px 0px;
}

#stacks_in_2664046_5 #fsr_3colwrap_stacks_in_2664046_5 #fsr_center3col_stacks_in_2664046_5 {
	float: left;
	display: inline;
	margin: 0 auto;
	width: 33.33%;
	padding: 0;
}

#stacks_in_2664046_5 #fsr_3colwrap_stacks_in_2664046_5 #fsr_right3col_stacks_in_2664046_5 .right3colpad_stacks_in_2664046_5 {
	padding: 0px 0px 0px 0px;
}

#stacks_in_2664046_5 #fsr_3colwrap_stacks_in_2664046_5 #fsr_right3col_stacks_in_2664046_5 {
	float: left;
	display: inline;
	width: 33.33%;
	margin: 0;
	padding: 0;
}

#stacks_in_2664046_5 #fsr_3colwrap_stacks_in_2664046_5 #fsr_center3col_stacks_in_2664046_5 .center3colpad_stacks_in_2664046_5 {
	padding: 0px 0px 0px 0px;
}


/************************************************************************************
MOBILE
*************************************************************************************/

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

#stacks_in_2664046_5 #fsr_3colwrap_stacks_in_2664046_5 #fsr_left3col_stacks_in_2664046_5 {
	display: block;
	float: none;
	width: 100% !important;
	margin: 0;
	padding: 0;
}

#stacks_in_2664046_5 #fsr_3colwrap_stacks_in_2664046_5 #fsr_left3col_stacks_in_2664046_5 .left3colpad_stacks_in_2664046_5 {
	padding: 0px 0px 0px 0px;
}

#stacks_in_2664046_5 #fsr_3colwrap_stacks_in_2664046_5 #fsr_center3col_stacks_in_2664046_5 {
	display: block;
	float: none;
	width: 100% !important;
	margin: 0;
	padding: 0;
}

#stacks_in_2664046_5 #fsr_3colwrap_stacks_in_2664046_5 #fsr_center3col_stacks_in_2664046_5 .center3colpad_stacks_in_2664046_5 {
	padding: 0px 0px 0px 0px;
}

#stacks_in_2664046_5 #fsr_3colwrap_stacks_in_2664046_5 #fsr_right3col_stacks_in_2664046_5 {
	display: block;
	float: none;
	width: 100% !important;
	margin: 0;
	padding: 0;
}

#stacks_in_2664046_5 #fsr_3colwrap_stacks_in_2664046_5 #fsr_right3col_stacks_in_2664046_5 .right3colpad_stacks_in_2664046_5 {
	padding: 0px 0px 0px 0px;
}

}/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Reposition Alt Stack' 
Style Sheet: fsrrepositionalt.css Style Sheet
Created: 26, August 2013
Last Modified: 03, June 2014
Author: Blueball Design LLC/Charlie Lockhart
http://freestackresponsive.blueballdesign.com
Copyright 2013-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2664046_6 {
	padding: 0px 0px 0px 0px;
	margin: 0px 1px 0px 0px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 600px) {
	
#stacks_in_2664046_6 { 
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 1px 0px;
}
}
/*
 * Simple Buttons Free
 * Author: Jeremy Hawes
 * URL: http://onelittledesigner.com/rapidweaver-stack/simple-buttons/
 * HELP URL: forum.onelittledesigner.com
 * Description: Drag & Drop CSS3 Buttons
 * Version: 1.1.2
 * Requirements: RapidWeaver 5.0+, Stacks 2.0+
 */

/* Double Gradient Generated by http://www.colorzilla.com/gradient-editor/ */
#buttonContainer_stacks_in_2664046_7 a.buttonGradientDouble {
	background: #1E5799; /* Old browsers */
	background: -moz-linear-gradient(top, #1E5799 0%, #2989D8 50%, #207CCA 51%, #7DB9E8 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1E5799), color-stop(50%,#2989D8), color-stop(51%,#207CCA), color-stop(100%,#7DB9E8)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* IE10+ */
	background: linear-gradient(to bottom, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1E5799', endColorstr='#7DB9E8',GradientType=0 ); /* IE6-9 */
}
#buttonContainer_stacks_in_2664046_7 a.buttonGradientDouble:hover {
	background: #1E5799; /* Old browsers */
	background: -moz-linear-gradient(top, #1E5799 0%, #2989D8 50%, #207CCA 51%, #7DB9E8 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1E5799), color-stop(50%,#2989D8), color-stop(51%,#207CCA), color-stop(100%,#7DB9E8)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* IE10+ */
	background: linear-gradient(to bottom, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1E5799', endColorstr='#7DB9E8',GradientType=0 ); /* IE6-9 */
}
/* Single Gradients genrated with http://cssgradientbutton.com/ */
#buttonContainer_stacks_in_2664046_7 a.buttonGradientSingle {
	background: -webkit-gradient(linear, left top, left bottom, from(#3093C7), to(#1C5A85));
	background: -webkit-linear-gradient(top, #3093C7, #1C5A85);
	background: -moz-linear-gradient(top, #3093C7, #1C5A85);
	background: -ms-linear-gradient(top, #3093C7, #1C5A85);
	background: -o-linear-gradient(top, #3093C7, #1C5A85);
	background: linear-gradient(to bottom, #3093C7, #1C5A85);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#3093C7, endColorstr=#1C5A85);
}
#buttonContainer_stacks_in_2664046_7 a.buttonGradientSingle:hover {
	background: -webkit-gradient(linear, left top, left bottom, from(#26759E), to(#133D5B));
	background: -webkit-linear-gradient(top, #26759E, #133D5B);
	background: -moz-linear-gradient(top, #26759E, #133D5B);
	background: -ms-linear-gradient(top, #26759E, #133D5B);
	background: -o-linear-gradient(top, #26759E, #133D5B);
	background: linear-gradient(to bottom, #26759E, #133D5B);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#26759E, endColorstr=#133D5B);
}
/* GLOBAL */
#buttonContainer_stacks_in_2664046_7 a.transparentOn {
	background-color: none !important;
	background: none !important;
}
#buttonContainer_stacks_in_2664046_7 {
	width: 100%;
	display: block;
	padding-bottom: 5px;
}
#buttonContainer_stacks_in_2664046_7 a.simpleButton_stacks_in_2664046_7 {
	font-weight: normal;
	cursor: pointer;
	max-width: 600px;
	text-decoration: none;
	display: block;
	width: 100%;
	color: #FFFFFF !important;
	text-align: Center;
	padding-top: 6px;
	padding-bottom: 6px;
	padding-left: 0px;
	padding-right: 0px;
	border-radius: 0px;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	-ms-border-radius: 0px;
	-o-border-radius: 0px;
	transform:rotate(deg);
	-webkit-transform:rotate(deg);
	-moz-transform:rotate(deg);
	-ms-transform:rotate(deg);
	-o-transform:rotate(deg);
	transition: all s ease-in-out;
	-webkit-transition: all s ease-in-out;
	-moz-transition: all s ease-in-out;
	-ms-transition: all s ease-in-out;
	-o-transition: all s ease-in-out;
	opacity: ;
}
#buttonContainer_stacks_in_2664046_7 a.simpleButton_stacks_in_2664046_7:hover, #buttonContainer_stacks_in_2664046_7 a:hover {
	color: #FFFFFF !important;
	transform:rotate(deg);
	-webkit-transform:rotate(deg);
	-moz-transform:rotate(deg);
	-ms-transform:rotate(deg);
	-o-transform:rotate(deg);
	transition: all s ease-in-out;
	-webkit-transition: all s ease-in-out;
	-moz-transition: all s ease-in-out;
	-ms-transition: all s ease-in-out;
	-o-transition: all s ease-in-out;
	opacity: ;
}
#buttonContainer_stacks_in_2664046_7 a.simpleButton_stacks_in_2664046_7.buttonGradientOff {
	background-color: #9900FF;
}
#buttonContainer_stacks_in_2664046_7 a.simpleButton_stacks_in_2664046_7.buttonGradientOff:hover, #buttonContainer_stacks_in_2664046_7 a.buttonGradientOff:hover {
	background-color: #FF6600;
}
#buttonContainer_stacks_in_2664046_7 a.transparentOn:hover {
	background-color: none !important;
}
#buttonContainer_stacks_in_2664046_7 a.borderOn {
	border: solid 1px #F0F0F0;
}
#buttonContainer_stacks_in_2664046_7 a.borderOn:hover {
	border: solid 1px #CCCCCC;
}

/* OPTIONS */

#buttonContainer_stacks_in_2664046_7 a.alignLeft {
	float: left;
}
#buttonContainer_stacks_in_2664046_7 a.alignRight {
	float: right;
}
#buttonContainer_stacks_in_2664046_7 a.alignCenter {
	margin: 0 auto;
}
#buttonContainer_stacks_in_2664046_7 a.textShadowOn {
	text-shadow:  #333333 !important;
}
#buttonContainer_stacks_in_2664046_7 a.textShadowOn:hover {
	text-shadow:  #333333;
}
#buttonContainer_stacks_in_2664046_7 a.buttonShadowOn {
	box-shadow:  #333333;
	-moz-box-shadow:  #333333;
	-webkit-box-shadow:  #333333;
	-ms-box-shadow:  #333333;
	-o-box-shadow:  #333333;
}
#buttonContainer_stacks_in_2664046_7 a.buttonShadowOn:hover {
	box-shadow:  #333333;
	-moz-box-shadow:  #333333;
	-webkit-box-shadow:  #333333;
	-ms-box-shadow:  #333333;
	-o-box-shadow:  #333333;
}

/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Reposition Alt Stack' 
Style Sheet: fsrrepositionalt.css Style Sheet
Created: 26, August 2013
Last Modified: 03, June 2014
Author: Blueball Design LLC/Charlie Lockhart
http://freestackresponsive.blueballdesign.com
Copyright 2013-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2664046_11 {
	padding: 0px 0px 0px 0px;
	margin: 0px 1px 0px 0px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 600px) {
	
#stacks_in_2664046_11 { 
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 1px 0px;
}
}
/*
 * Simple Buttons Free
 * Author: Jeremy Hawes
 * URL: http://onelittledesigner.com/rapidweaver-stack/simple-buttons/
 * HELP URL: forum.onelittledesigner.com
 * Description: Drag & Drop CSS3 Buttons
 * Version: 1.1.2
 * Requirements: RapidWeaver 5.0+, Stacks 2.0+
 */

/* Double Gradient Generated by http://www.colorzilla.com/gradient-editor/ */
#buttonContainer_stacks_in_2664046_12 a.buttonGradientDouble {
	background: #1E5799; /* Old browsers */
	background: -moz-linear-gradient(top, #1E5799 0%, #2989D8 50%, #207CCA 51%, #7DB9E8 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1E5799), color-stop(50%,#2989D8), color-stop(51%,#207CCA), color-stop(100%,#7DB9E8)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* IE10+ */
	background: linear-gradient(to bottom, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1E5799', endColorstr='#7DB9E8',GradientType=0 ); /* IE6-9 */
}
#buttonContainer_stacks_in_2664046_12 a.buttonGradientDouble:hover {
	background: #1E5799; /* Old browsers */
	background: -moz-linear-gradient(top, #1E5799 0%, #2989D8 50%, #207CCA 51%, #7DB9E8 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1E5799), color-stop(50%,#2989D8), color-stop(51%,#207CCA), color-stop(100%,#7DB9E8)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* IE10+ */
	background: linear-gradient(to bottom, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1E5799', endColorstr='#7DB9E8',GradientType=0 ); /* IE6-9 */
}
/* Single Gradients genrated with http://cssgradientbutton.com/ */
#buttonContainer_stacks_in_2664046_12 a.buttonGradientSingle {
	background: -webkit-gradient(linear, left top, left bottom, from(#3093C7), to(#1C5A85));
	background: -webkit-linear-gradient(top, #3093C7, #1C5A85);
	background: -moz-linear-gradient(top, #3093C7, #1C5A85);
	background: -ms-linear-gradient(top, #3093C7, #1C5A85);
	background: -o-linear-gradient(top, #3093C7, #1C5A85);
	background: linear-gradient(to bottom, #3093C7, #1C5A85);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#3093C7, endColorstr=#1C5A85);
}
#buttonContainer_stacks_in_2664046_12 a.buttonGradientSingle:hover {
	background: -webkit-gradient(linear, left top, left bottom, from(#26759E), to(#133D5B));
	background: -webkit-linear-gradient(top, #26759E, #133D5B);
	background: -moz-linear-gradient(top, #26759E, #133D5B);
	background: -ms-linear-gradient(top, #26759E, #133D5B);
	background: -o-linear-gradient(top, #26759E, #133D5B);
	background: linear-gradient(to bottom, #26759E, #133D5B);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#26759E, endColorstr=#133D5B);
}
/* GLOBAL */
#buttonContainer_stacks_in_2664046_12 a.transparentOn {
	background-color: none !important;
	background: none !important;
}
#buttonContainer_stacks_in_2664046_12 {
	width: 100%;
	display: block;
	padding-bottom: 5px;
}
#buttonContainer_stacks_in_2664046_12 a.simpleButton_stacks_in_2664046_12 {
	font-weight: normal;
	cursor: pointer;
	max-width: 600px;
	text-decoration: none;
	display: block;
	width: 100%;
	color: #FFFFFF !important;
	text-align: Center;
	padding-top: 6px;
	padding-bottom: 6px;
	padding-left: 0px;
	padding-right: 0px;
	border-radius: 0px;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	-ms-border-radius: 0px;
	-o-border-radius: 0px;
	transform:rotate(deg);
	-webkit-transform:rotate(deg);
	-moz-transform:rotate(deg);
	-ms-transform:rotate(deg);
	-o-transform:rotate(deg);
	transition: all s ease-in-out;
	-webkit-transition: all s ease-in-out;
	-moz-transition: all s ease-in-out;
	-ms-transition: all s ease-in-out;
	-o-transition: all s ease-in-out;
	opacity: ;
}
#buttonContainer_stacks_in_2664046_12 a.simpleButton_stacks_in_2664046_12:hover, #buttonContainer_stacks_in_2664046_12 a:hover {
	color: #FFFFFF !important;
	transform:rotate(deg);
	-webkit-transform:rotate(deg);
	-moz-transform:rotate(deg);
	-ms-transform:rotate(deg);
	-o-transform:rotate(deg);
	transition: all s ease-in-out;
	-webkit-transition: all s ease-in-out;
	-moz-transition: all s ease-in-out;
	-ms-transition: all s ease-in-out;
	-o-transition: all s ease-in-out;
	opacity: ;
}
#buttonContainer_stacks_in_2664046_12 a.simpleButton_stacks_in_2664046_12.buttonGradientOff {
	background-color: #9900FF;
}
#buttonContainer_stacks_in_2664046_12 a.simpleButton_stacks_in_2664046_12.buttonGradientOff:hover, #buttonContainer_stacks_in_2664046_12 a.buttonGradientOff:hover {
	background-color: #FF6600;
}
#buttonContainer_stacks_in_2664046_12 a.transparentOn:hover {
	background-color: none !important;
}
#buttonContainer_stacks_in_2664046_12 a.borderOn {
	border: solid 1px #F4F4F4;
}
#buttonContainer_stacks_in_2664046_12 a.borderOn:hover {
	border: solid 1px #CCCCCC;
}

/* OPTIONS */

#buttonContainer_stacks_in_2664046_12 a.alignLeft {
	float: left;
}
#buttonContainer_stacks_in_2664046_12 a.alignRight {
	float: right;
}
#buttonContainer_stacks_in_2664046_12 a.alignCenter {
	margin: 0 auto;
}
#buttonContainer_stacks_in_2664046_12 a.textShadowOn {
	text-shadow:  #333333 !important;
}
#buttonContainer_stacks_in_2664046_12 a.textShadowOn:hover {
	text-shadow:  #333333;
}
#buttonContainer_stacks_in_2664046_12 a.buttonShadowOn {
	box-shadow:  #333333;
	-moz-box-shadow:  #333333;
	-webkit-box-shadow:  #333333;
	-ms-box-shadow:  #333333;
	-o-box-shadow:  #333333;
}
#buttonContainer_stacks_in_2664046_12 a.buttonShadowOn:hover {
	box-shadow:  #333333;
	-moz-box-shadow:  #333333;
	-webkit-box-shadow:  #333333;
	-ms-box-shadow:  #333333;
	-o-box-shadow:  #333333;
}

/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Reposition Alt Stack' 
Style Sheet: fsrrepositionalt.css Style Sheet
Created: 26, August 2013
Last Modified: 03, June 2014
Author: Blueball Design LLC/Charlie Lockhart
http://freestackresponsive.blueballdesign.com
Copyright 2013-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2664046_16 {
	padding: 0px 0px 0px 0px;
	margin: 0px 1px 0px 0px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 600px) {
	
#stacks_in_2664046_16 { 
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 1px 0px;
}
}
/*
 * Simple Buttons Free
 * Author: Jeremy Hawes
 * URL: http://onelittledesigner.com/rapidweaver-stack/simple-buttons/
 * HELP URL: forum.onelittledesigner.com
 * Description: Drag & Drop CSS3 Buttons
 * Version: 1.1.2
 * Requirements: RapidWeaver 5.0+, Stacks 2.0+
 */

/* Double Gradient Generated by http://www.colorzilla.com/gradient-editor/ */
#buttonContainer_stacks_in_2664046_17 a.buttonGradientDouble {
	background: #1E5799; /* Old browsers */
	background: -moz-linear-gradient(top, #1E5799 0%, #2989D8 50%, #207CCA 51%, #7DB9E8 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1E5799), color-stop(50%,#2989D8), color-stop(51%,#207CCA), color-stop(100%,#7DB9E8)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* IE10+ */
	background: linear-gradient(to bottom, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1E5799', endColorstr='#7DB9E8',GradientType=0 ); /* IE6-9 */
}
#buttonContainer_stacks_in_2664046_17 a.buttonGradientDouble:hover {
	background: #1E5799; /* Old browsers */
	background: -moz-linear-gradient(top, #1E5799 0%, #2989D8 50%, #207CCA 51%, #7DB9E8 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1E5799), color-stop(50%,#2989D8), color-stop(51%,#207CCA), color-stop(100%,#7DB9E8)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* IE10+ */
	background: linear-gradient(to bottom, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1E5799', endColorstr='#7DB9E8',GradientType=0 ); /* IE6-9 */
}
/* Single Gradients genrated with http://cssgradientbutton.com/ */
#buttonContainer_stacks_in_2664046_17 a.buttonGradientSingle {
	background: -webkit-gradient(linear, left top, left bottom, from(#3093C7), to(#1C5A85));
	background: -webkit-linear-gradient(top, #3093C7, #1C5A85);
	background: -moz-linear-gradient(top, #3093C7, #1C5A85);
	background: -ms-linear-gradient(top, #3093C7, #1C5A85);
	background: -o-linear-gradient(top, #3093C7, #1C5A85);
	background: linear-gradient(to bottom, #3093C7, #1C5A85);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#3093C7, endColorstr=#1C5A85);
}
#buttonContainer_stacks_in_2664046_17 a.buttonGradientSingle:hover {
	background: -webkit-gradient(linear, left top, left bottom, from(#26759E), to(#133D5B));
	background: -webkit-linear-gradient(top, #26759E, #133D5B);
	background: -moz-linear-gradient(top, #26759E, #133D5B);
	background: -ms-linear-gradient(top, #26759E, #133D5B);
	background: -o-linear-gradient(top, #26759E, #133D5B);
	background: linear-gradient(to bottom, #26759E, #133D5B);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#26759E, endColorstr=#133D5B);
}
/* GLOBAL */
#buttonContainer_stacks_in_2664046_17 a.transparentOn {
	background-color: none !important;
	background: none !important;
}
#buttonContainer_stacks_in_2664046_17 {
	width: 100%;
	display: block;
	padding-bottom: 5px;
}
#buttonContainer_stacks_in_2664046_17 a.simpleButton_stacks_in_2664046_17 {
	font-weight: normal;
	cursor: pointer;
	max-width: 600px;
	text-decoration: none;
	display: block;
	width: 100%;
	color: #FFFFFF !important;
	text-align: Center;
	padding-top: 6px;
	padding-bottom: 6px;
	padding-left: 0px;
	padding-right: 0px;
	border-radius: 0px;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	-ms-border-radius: 0px;
	-o-border-radius: 0px;
	transform:rotate(deg);
	-webkit-transform:rotate(deg);
	-moz-transform:rotate(deg);
	-ms-transform:rotate(deg);
	-o-transform:rotate(deg);
	transition: all s ease-in-out;
	-webkit-transition: all s ease-in-out;
	-moz-transition: all s ease-in-out;
	-ms-transition: all s ease-in-out;
	-o-transition: all s ease-in-out;
	opacity: ;
}
#buttonContainer_stacks_in_2664046_17 a.simpleButton_stacks_in_2664046_17:hover, #buttonContainer_stacks_in_2664046_17 a:hover {
	color: #FFFFFF !important;
	transform:rotate(deg);
	-webkit-transform:rotate(deg);
	-moz-transform:rotate(deg);
	-ms-transform:rotate(deg);
	-o-transform:rotate(deg);
	transition: all s ease-in-out;
	-webkit-transition: all s ease-in-out;
	-moz-transition: all s ease-in-out;
	-ms-transition: all s ease-in-out;
	-o-transition: all s ease-in-out;
	opacity: ;
}
#buttonContainer_stacks_in_2664046_17 a.simpleButton_stacks_in_2664046_17.buttonGradientOff {
	background-color: #9900FF;
}
#buttonContainer_stacks_in_2664046_17 a.simpleButton_stacks_in_2664046_17.buttonGradientOff:hover, #buttonContainer_stacks_in_2664046_17 a.buttonGradientOff:hover {
	background-color: #FF6600;
}
#buttonContainer_stacks_in_2664046_17 a.transparentOn:hover {
	background-color: none !important;
}
#buttonContainer_stacks_in_2664046_17 a.borderOn {
	border: solid 1px #F5F5F5;
}
#buttonContainer_stacks_in_2664046_17 a.borderOn:hover {
	border: solid 1px #CCCCCC;
}

/* OPTIONS */

#buttonContainer_stacks_in_2664046_17 a.alignLeft {
	float: left;
}
#buttonContainer_stacks_in_2664046_17 a.alignRight {
	float: right;
}
#buttonContainer_stacks_in_2664046_17 a.alignCenter {
	margin: 0 auto;
}
#buttonContainer_stacks_in_2664046_17 a.textShadowOn {
	text-shadow:  #333333 !important;
}
#buttonContainer_stacks_in_2664046_17 a.textShadowOn:hover {
	text-shadow:  #333333;
}
#buttonContainer_stacks_in_2664046_17 a.buttonShadowOn {
	box-shadow:  #333333;
	-moz-box-shadow:  #333333;
	-webkit-box-shadow:  #333333;
	-ms-box-shadow:  #333333;
	-o-box-shadow:  #333333;
}
#buttonContainer_stacks_in_2664046_17 a.buttonShadowOn:hover {
	box-shadow:  #333333;
	-moz-box-shadow:  #333333;
	-webkit-box-shadow:  #333333;
	-ms-box-shadow:  #333333;
	-o-box-shadow:  #333333;
}

/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive 2 Column Stack' 
Style Sheet: fsr2columns.css Style Sheet
Created: 29, December 2012
Last Modified: 17, April 2014
Author: Blueball Design, Charlie Lockhart
www.blueballdesign.com
Copyright 2012-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2664046_22 #fsr_colwrap_stacks_in_2664046_22 {
	width: 100%;
	vertical-align: top;
	margin: 0;
	padding: 0;
	overflow: auto;
}

#stacks_in_2664046_22 #fsr_colwrap_stacks_in_2664046_22 #fsr_leftcol_stacks_in_2664046_22 {
	float: left;
	display: block;
	width: 50%;
	height: auto;
	margin: 0;
}

#stacks_in_2664046_22 #fsr_colwrap_stacks_in_2664046_22 #fsr_leftcol_stacks_in_2664046_22 .leftcolpad_stacks_in_2664046_22 {
	padding: 0px 0px 0px 0px;
}

#stacks_in_2664046_22 #fsr_colwrap_stacks_in_2664046_22 #fsr_rightcol_stacks_in_2664046_22 {
	float: right;
	display: block;
	width: 50%;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_2664046_22 #fsr_colwrap_stacks_in_2664046_22 #fsr_rightcol_stacks_in_2664046_22 .rightcolpad_stacks_in_2664046_22 {
	padding: 0px 0px 0px 0px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

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

#stacks_in_2664046_22 #fsr_colwrap_stacks_in_2664046_22 #fsr_leftcol_stacks_in_2664046_22 {
	display: block;
	float: left;
	width: 100% !important;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_2664046_22 #fsr_colwrap_stacks_in_2664046_22 #fsr_leftcol_stacks_in_2664046_22 .leftcolpad_stacks_in_2664046_22 {
	padding: 0px 0px 0px 0px;
}

#stacks_in_2664046_22 #fsr_colwrap_stacks_in_2664046_22 #fsr_rightcol_stacks_in_2664046_22 {
	display: block;
	float: left;
	width: 100% !important;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_2664046_22 #fsr_colwrap_stacks_in_2664046_22 #fsr_rightcol_stacks_in_2664046_22 .rightcolpad_stacks_in_2664046_22 {
	padding: 0px 0px 0px 0px;
}

}/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Reposition Alt Stack' 
Style Sheet: fsrrepositionalt.css Style Sheet
Created: 26, August 2013
Last Modified: 03, June 2014
Author: Blueball Design LLC/Charlie Lockhart
http://freestackresponsive.blueballdesign.com
Copyright 2013-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2664046_23 {
	padding: 0px 0px 0px 0px;
	margin: 0px 1px 0px 0px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 600px) {
	
#stacks_in_2664046_23 { 
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 1px 0px;
}
}
/*
 * Simple Buttons Free
 * Author: Jeremy Hawes
 * URL: http://onelittledesigner.com/rapidweaver-stack/simple-buttons/
 * HELP URL: forum.onelittledesigner.com
 * Description: Drag & Drop CSS3 Buttons
 * Version: 1.1.2
 * Requirements: RapidWeaver 5.0+, Stacks 2.0+
 */

/* Double Gradient Generated by http://www.colorzilla.com/gradient-editor/ */
#buttonContainer_stacks_in_2664046_24 a.buttonGradientDouble {
	background: #1E5799; /* Old browsers */
	background: -moz-linear-gradient(top, #1E5799 0%, #2989D8 50%, #207CCA 51%, #7DB9E8 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1E5799), color-stop(50%,#2989D8), color-stop(51%,#207CCA), color-stop(100%,#7DB9E8)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* IE10+ */
	background: linear-gradient(to bottom, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1E5799', endColorstr='#7DB9E8',GradientType=0 ); /* IE6-9 */
}
#buttonContainer_stacks_in_2664046_24 a.buttonGradientDouble:hover {
	background: #1E5799; /* Old browsers */
	background: -moz-linear-gradient(top, #1E5799 0%, #2989D8 50%, #207CCA 51%, #7DB9E8 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1E5799), color-stop(50%,#2989D8), color-stop(51%,#207CCA), color-stop(100%,#7DB9E8)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* IE10+ */
	background: linear-gradient(to bottom, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1E5799', endColorstr='#7DB9E8',GradientType=0 ); /* IE6-9 */
}
/* Single Gradients genrated with http://cssgradientbutton.com/ */
#buttonContainer_stacks_in_2664046_24 a.buttonGradientSingle {
	background: -webkit-gradient(linear, left top, left bottom, from(#3093C7), to(#1C5A85));
	background: -webkit-linear-gradient(top, #3093C7, #1C5A85);
	background: -moz-linear-gradient(top, #3093C7, #1C5A85);
	background: -ms-linear-gradient(top, #3093C7, #1C5A85);
	background: -o-linear-gradient(top, #3093C7, #1C5A85);
	background: linear-gradient(to bottom, #3093C7, #1C5A85);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#3093C7, endColorstr=#1C5A85);
}
#buttonContainer_stacks_in_2664046_24 a.buttonGradientSingle:hover {
	background: -webkit-gradient(linear, left top, left bottom, from(#26759E), to(#133D5B));
	background: -webkit-linear-gradient(top, #26759E, #133D5B);
	background: -moz-linear-gradient(top, #26759E, #133D5B);
	background: -ms-linear-gradient(top, #26759E, #133D5B);
	background: -o-linear-gradient(top, #26759E, #133D5B);
	background: linear-gradient(to bottom, #26759E, #133D5B);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#26759E, endColorstr=#133D5B);
}
/* GLOBAL */
#buttonContainer_stacks_in_2664046_24 a.transparentOn {
	background-color: none !important;
	background: none !important;
}
#buttonContainer_stacks_in_2664046_24 {
	width: 100%;
	display: block;
	padding-bottom: 5px;
}
#buttonContainer_stacks_in_2664046_24 a.simpleButton_stacks_in_2664046_24 {
	font-weight: normal;
	cursor: pointer;
	max-width: 600px;
	text-decoration: none;
	display: block;
	width: 100%;
	color: #FFFFFF !important;
	text-align: Center;
	padding-top: 6px;
	padding-bottom: 6px;
	padding-left: 0px;
	padding-right: 0px;
	border-radius: 0px;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	-ms-border-radius: 0px;
	-o-border-radius: 0px;
	transform:rotate(deg);
	-webkit-transform:rotate(deg);
	-moz-transform:rotate(deg);
	-ms-transform:rotate(deg);
	-o-transform:rotate(deg);
	transition: all s ease-in-out;
	-webkit-transition: all s ease-in-out;
	-moz-transition: all s ease-in-out;
	-ms-transition: all s ease-in-out;
	-o-transition: all s ease-in-out;
	opacity: ;
}
#buttonContainer_stacks_in_2664046_24 a.simpleButton_stacks_in_2664046_24:hover, #buttonContainer_stacks_in_2664046_24 a:hover {
	color: #FFFFFF !important;
	transform:rotate(deg);
	-webkit-transform:rotate(deg);
	-moz-transform:rotate(deg);
	-ms-transform:rotate(deg);
	-o-transform:rotate(deg);
	transition: all s ease-in-out;
	-webkit-transition: all s ease-in-out;
	-moz-transition: all s ease-in-out;
	-ms-transition: all s ease-in-out;
	-o-transition: all s ease-in-out;
	opacity: ;
}
#buttonContainer_stacks_in_2664046_24 a.simpleButton_stacks_in_2664046_24.buttonGradientOff {
	background-color: #9900FF;
}
#buttonContainer_stacks_in_2664046_24 a.simpleButton_stacks_in_2664046_24.buttonGradientOff:hover, #buttonContainer_stacks_in_2664046_24 a.buttonGradientOff:hover {
	background-color: #FF6600;
}
#buttonContainer_stacks_in_2664046_24 a.transparentOn:hover {
	background-color: none !important;
}
#buttonContainer_stacks_in_2664046_24 a.borderOn {
	border: solid 1px #F6F6F6;
}
#buttonContainer_stacks_in_2664046_24 a.borderOn:hover {
	border: solid 1px #CCCCCC;
}

/* OPTIONS */

#buttonContainer_stacks_in_2664046_24 a.alignLeft {
	float: left;
}
#buttonContainer_stacks_in_2664046_24 a.alignRight {
	float: right;
}
#buttonContainer_stacks_in_2664046_24 a.alignCenter {
	margin: 0 auto;
}
#buttonContainer_stacks_in_2664046_24 a.textShadowOn {
	text-shadow:  #333333 !important;
}
#buttonContainer_stacks_in_2664046_24 a.textShadowOn:hover {
	text-shadow:  #333333;
}
#buttonContainer_stacks_in_2664046_24 a.buttonShadowOn {
	box-shadow:  #333333;
	-moz-box-shadow:  #333333;
	-webkit-box-shadow:  #333333;
	-ms-box-shadow:  #333333;
	-o-box-shadow:  #333333;
}
#buttonContainer_stacks_in_2664046_24 a.buttonShadowOn:hover {
	box-shadow:  #333333;
	-moz-box-shadow:  #333333;
	-webkit-box-shadow:  #333333;
	-ms-box-shadow:  #333333;
	-o-box-shadow:  #333333;
}

/*
 * Simple Buttons Free
 * Author: Jeremy Hawes
 * URL: http://onelittledesigner.com/rapidweaver-stack/simple-buttons/
 * HELP URL: forum.onelittledesigner.com
 * Description: Drag & Drop CSS3 Buttons
 * Version: 1.1.2
 * Requirements: RapidWeaver 5.0+, Stacks 2.0+
 */

/* Double Gradient Generated by http://www.colorzilla.com/gradient-editor/ */
#buttonContainer_stacks_in_2664046_28 a.buttonGradientDouble {
	background: #1E5799; /* Old browsers */
	background: -moz-linear-gradient(top, #1E5799 0%, #2989D8 50%, #207CCA 51%, #7DB9E8 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1E5799), color-stop(50%,#2989D8), color-stop(51%,#207CCA), color-stop(100%,#7DB9E8)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* IE10+ */
	background: linear-gradient(to bottom, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1E5799', endColorstr='#7DB9E8',GradientType=0 ); /* IE6-9 */
}
#buttonContainer_stacks_in_2664046_28 a.buttonGradientDouble:hover {
	background: #1E5799; /* Old browsers */
	background: -moz-linear-gradient(top, #1E5799 0%, #2989D8 50%, #207CCA 51%, #7DB9E8 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1E5799), color-stop(50%,#2989D8), color-stop(51%,#207CCA), color-stop(100%,#7DB9E8)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* IE10+ */
	background: linear-gradient(to bottom, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1E5799', endColorstr='#7DB9E8',GradientType=0 ); /* IE6-9 */
}
/* Single Gradients genrated with http://cssgradientbutton.com/ */
#buttonContainer_stacks_in_2664046_28 a.buttonGradientSingle {
	background: -webkit-gradient(linear, left top, left bottom, from(#3093C7), to(#1C5A85));
	background: -webkit-linear-gradient(top, #3093C7, #1C5A85);
	background: -moz-linear-gradient(top, #3093C7, #1C5A85);
	background: -ms-linear-gradient(top, #3093C7, #1C5A85);
	background: -o-linear-gradient(top, #3093C7, #1C5A85);
	background: linear-gradient(to bottom, #3093C7, #1C5A85);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#3093C7, endColorstr=#1C5A85);
}
#buttonContainer_stacks_in_2664046_28 a.buttonGradientSingle:hover {
	background: -webkit-gradient(linear, left top, left bottom, from(#26759E), to(#133D5B));
	background: -webkit-linear-gradient(top, #26759E, #133D5B);
	background: -moz-linear-gradient(top, #26759E, #133D5B);
	background: -ms-linear-gradient(top, #26759E, #133D5B);
	background: -o-linear-gradient(top, #26759E, #133D5B);
	background: linear-gradient(to bottom, #26759E, #133D5B);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#26759E, endColorstr=#133D5B);
}
/* GLOBAL */
#buttonContainer_stacks_in_2664046_28 a.transparentOn {
	background-color: none !important;
	background: none !important;
}
#buttonContainer_stacks_in_2664046_28 {
	width: 100%;
	display: block;
	padding-bottom: 5px;
}
#buttonContainer_stacks_in_2664046_28 a.simpleButton_stacks_in_2664046_28 {
	font-weight: normal;
	cursor: pointer;
	max-width: 600px;
	text-decoration: none;
	display: block;
	width: 100%;
	color: #FFFFFF !important;
	text-align: Center;
	padding-top: 6px;
	padding-bottom: 6px;
	padding-left: 0px;
	padding-right: 0px;
	border-radius: 0px;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	-ms-border-radius: 0px;
	-o-border-radius: 0px;
	transform:rotate(deg);
	-webkit-transform:rotate(deg);
	-moz-transform:rotate(deg);
	-ms-transform:rotate(deg);
	-o-transform:rotate(deg);
	transition: all s ease-in-out;
	-webkit-transition: all s ease-in-out;
	-moz-transition: all s ease-in-out;
	-ms-transition: all s ease-in-out;
	-o-transition: all s ease-in-out;
	opacity: ;
}
#buttonContainer_stacks_in_2664046_28 a.simpleButton_stacks_in_2664046_28:hover, #buttonContainer_stacks_in_2664046_28 a:hover {
	color: #FFFFFF !important;
	transform:rotate(deg);
	-webkit-transform:rotate(deg);
	-moz-transform:rotate(deg);
	-ms-transform:rotate(deg);
	-o-transform:rotate(deg);
	transition: all s ease-in-out;
	-webkit-transition: all s ease-in-out;
	-moz-transition: all s ease-in-out;
	-ms-transition: all s ease-in-out;
	-o-transition: all s ease-in-out;
	opacity: ;
}
#buttonContainer_stacks_in_2664046_28 a.simpleButton_stacks_in_2664046_28.buttonGradientOff {
	background-color: #9900FF;
}
#buttonContainer_stacks_in_2664046_28 a.simpleButton_stacks_in_2664046_28.buttonGradientOff:hover, #buttonContainer_stacks_in_2664046_28 a.buttonGradientOff:hover {
	background-color: #FF6600;
}
#buttonContainer_stacks_in_2664046_28 a.transparentOn:hover {
	background-color: none !important;
}
#buttonContainer_stacks_in_2664046_28 a.borderOn {
	border: solid 1px #E3E3E3;
}
#buttonContainer_stacks_in_2664046_28 a.borderOn:hover {
	border: solid 1px #CCCCCC;
}

/* OPTIONS */

#buttonContainer_stacks_in_2664046_28 a.alignLeft {
	float: left;
}
#buttonContainer_stacks_in_2664046_28 a.alignRight {
	float: right;
}
#buttonContainer_stacks_in_2664046_28 a.alignCenter {
	margin: 0 auto;
}
#buttonContainer_stacks_in_2664046_28 a.textShadowOn {
	text-shadow:  #333333 !important;
}
#buttonContainer_stacks_in_2664046_28 a.textShadowOn:hover {
	text-shadow:  #333333;
}
#buttonContainer_stacks_in_2664046_28 a.buttonShadowOn {
	box-shadow:  #333333;
	-moz-box-shadow:  #333333;
	-webkit-box-shadow:  #333333;
	-ms-box-shadow:  #333333;
	-o-box-shadow:  #333333;
}
#buttonContainer_stacks_in_2664046_28 a.buttonShadowOn:hover {
	box-shadow:  #333333;
	-moz-box-shadow:  #333333;
	-webkit-box-shadow:  #333333;
	-ms-box-shadow:  #333333;
	-o-box-shadow:  #333333;
}

/* Styled Stack v2.3.1 Copyright 2013 Joe Workman */
 #stacks_in_32074{behavior:url(/PIE/PIE.htc);       border-style:solid!important; }   
/*
-------------------------------------------
Stack: Blueball FreeStack Responsive Max Width Stack
Style Sheet: fsrmaxwidth.css
Created: 23, October 2012
Last Modified: 10, November, 2014
Author: Blueball Design
www.blueballdesign.com
Copyright 2013-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_33158 {
	max-width: 1024px;
	min-width: 320px;
	margin: 0px auto !important;
}

/************************************************************************************
MOBILE
*************************************************************************************/

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

#stacks_in_33158 {
	max-width: 100% !important;
	min-width: 50% !important;
}

}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Reposition Stack' 
Style Sheet: fsrreposition.css Style Sheet
Created: 26, August 2013
Last Modified: 28, July 2015
Version: 1.5
Author: Blueball Design/Charlie Lockhart
www.blueballdesign.com
Copyright 2013-2015 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

#stacks_in_1461225 {
	padding: 2% 0% 0% 1%;
	margin: 1% 0% 0% 2%;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 700px) {
	
#stacks_in_1461225 { 
    padding: 0% 0% 0% 0%;
    margin: 0% 0% 1% 0%;
}
}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive 2 Column Stack' 
Style Sheet: fsr2columns.css Style Sheet
Created: 29, December 2012
Last Modified: 17, April 2014
Author: Blueball Design, Charlie Lockhart
www.blueballdesign.com
Copyright 2012-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_1461227 #fsr_colwrap_stacks_in_1461227 {
	width: 100%;
	vertical-align: top;
	margin: 0;
	padding: 0;
	overflow: auto;
}

#stacks_in_1461227 #fsr_colwrap_stacks_in_1461227 #fsr_leftcol_stacks_in_1461227 {
	float: left;
	display: block;
	width: 73%;
	height: auto;
	margin: 0;
}

#stacks_in_1461227 #fsr_colwrap_stacks_in_1461227 #fsr_leftcol_stacks_in_1461227 .leftcolpad_stacks_in_1461227 {
	padding: 0px 0px 0px 0px;
}

#stacks_in_1461227 #fsr_colwrap_stacks_in_1461227 #fsr_rightcol_stacks_in_1461227 {
	float: right;
	display: block;
	width: 27%;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_1461227 #fsr_colwrap_stacks_in_1461227 #fsr_rightcol_stacks_in_1461227 .rightcolpad_stacks_in_1461227 {
	padding: 0px 0px 0px 0px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

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

#stacks_in_1461227 #fsr_colwrap_stacks_in_1461227 #fsr_leftcol_stacks_in_1461227 {
	display: block;
	float: left;
	width: 100% !important;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_1461227 #fsr_colwrap_stacks_in_1461227 #fsr_leftcol_stacks_in_1461227 .leftcolpad_stacks_in_1461227 {
	padding: 10px 10px 0px 10px;
}

#stacks_in_1461227 #fsr_colwrap_stacks_in_1461227 #fsr_rightcol_stacks_in_1461227 {
	display: block;
	float: left;
	width: 100% !important;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_1461227 #fsr_colwrap_stacks_in_1461227 #fsr_rightcol_stacks_in_1461227 .rightcolpad_stacks_in_1461227 {
	padding: 10px 10px 0px 10px;
}

}#stacks_in_1461229 h1{font-size:54px}@media screen and (max-width:770px){#stacks_in_1461229 h1{font-size:54px}}@media screen and (max-width:600px){#stacks_in_1461229 h1{font-size:52px}}@media screen and (max-width:500px){#stacks_in_1461229 h1{font-size:48px}}@media screen and (max-width:320px){#stacks_in_1461229 h1{font-size:40px}}

#stacks_out_1461231 {
	margin-left:0;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Reposition Stack' 
Style Sheet: fsrreposition.css Style Sheet
Created: 26, August 2013
Last Modified: 28, July 2015
Version: 1.5
Author: Blueball Design/Charlie Lockhart
www.blueballdesign.com
Copyright 2013-2015 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

#stacks_in_1461233 {
	padding: 0% 0% 0% 0%;
	margin: 3% 0% 0% 0%;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 600px) {
	
#stacks_in_1461233 { 
    padding: 0% 0% 0% 0%;
    margin: 1% 0% 0% 0%;
}
}
/*
-------------------------------------------
File: 'Blueball FreeStacks' fscontent.css Style Sheet
Created: 17, January, 2011
Last Modified: 20, April, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2010-2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

#stacks_in_1461235 {
	-moz-border-radius-topright: 0px;
	-webkit-border-top-right-radius: 0px;
	border-top-right-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-webkit-border-top-left-radius: 0px;
	border-top-left-radius: 0px;
	-moz-border-radius-bottomright: 0px;
	-webkit-border-bottom-right-radius: 0px;
	border-bottom-right-radius: 0px;
	-moz-border-radius-bottomleft: 0px;
	-webkit-border-bottom-left-radius: 0px;
	border-bottom-left-radius: 0px;
}

#stacks_in_1461235 #content {
	font-size: 13px;
	line-height: 23px;
}

#stacks_in_1461240 {
	margin: 20px 0px 0px 0px;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Styler Stack' 
Style Sheet: fsrstyler.css Style Sheet
Created: 26, September 2012
Last Modified: 22, April 2014
Author: Charlie Lockhart/Blueball Design LLC
www.blueballdesign.com
Copyright 2012-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_1461244 {
	font-size: 0.97em;
	color: #666666;
	line-height: 1.63em;
}

#stacks_in_1461244 p {
	font-size: 0.97em;
	color: ##666666;
	line-height: 1.63em;
}

#stacks_in_1461244 a:link  {
	color: #0000FF;
	text-decoration: underline;
}

#stacks_in_1461244 a:visited {
	color: #800080;
	text-decoration: underline;
}

#stacks_in_1461244 a:hover {
	color: #FF0000;
	text-decoration: none;
}

#stacks_in_1461244  a:active  {
	color: #0000FF;
	text-decoration: underline;
}

#stacks_in_1461244 h1 {
	color: #000000;
	font-size: 2.30em;
	line-height: 1.00em;
}

#stacks_in_1461244 h2 {
	color: #000000;
	font-size: 2.00em;
	line-height: 1.00em;
}

#stacks_in_1461244 h3 {
	color: #000000;
	font-size: 1.60em;
	line-height: 1.00em;
}

#stacks_in_1461244 h4 {
	color: #000000;
	font-size: 1.40em;
	line-height: 1.00em;
}

#stacks_in_1461244 h5 {
	color: #000000;
	font-size: 1.20em;
	line-height: 1.00em;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 600px) {
	
#stacks_in_1461244 {
	font-size: 0.90em;
	line-height: 1.20em;
}

#stacks_in_1461244 p {
	font-size: 0.90em;
	line-height: 1.20em;
}

#stacks_in_1461244 h1 {
	font-size: 2.30em;
	line-height: 1.20em;
}

#stacks_in_1461244 h2 {
	font-size: 2.00em;
	line-height: 1.20em;
}

#stacks_in_1461244 h3 {
	font-size: 1.60em;
	line-height: 1.20em;
}

#stacks_in_1461244 h4 {
	font-size: 1.40em;
	line-height: 1.20em;
}

#stacks_in_1461244 h5 {
	font-size: 1.20em;
	line-height: 1.20em;
}

}
#stacks_in_1461246 .pullquote {
font-size:1.25em;
display:block;

padding:2.5em 0.5em;

font-style:italic;
}


#stacks_in_1461246 .pullquote:before, #stacks_in_1461246 .pullquote:after {
display:block;
position:relative;
font-size:100px;
line-height:0px;
overflow:display;
text-align:left;
font-style:normal;
opacity:0.25;
}
	
#stacks_in_1461246 .pullquote:before {
content:"\201C";
top:5px;
left:-5px;
}
	
#stacks_in_1461246 .pullquote:after {
content:"\201D";
bottom:-40px;
right:-5px;
text-align:right;
}


#stacks_in_1461246 .pullquote-source {
font-size:0.65em;
text-align:right;
font-style:normal;
}

#stacks_in_1461246 .pullquote-source:before {
	content:"\2014\200A";
	font-style:normal;
}/*
-------------------------------------------
Stack: Blueball FreeStack Responsive Max Width Stack
Style Sheet: fsrmaxwidth.css
Created: 23, October 2012
Last Modified: 10, November, 2014
Author: Blueball Design
www.blueballdesign.com
Copyright 2013-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_15503 {
	max-width: 1024px;
	min-width: 320px;
	margin: 0px auto !important;
}

/************************************************************************************
MOBILE
*************************************************************************************/

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

#stacks_in_15503 {
	max-width: 100% !important;
	min-width: 50% !important;
}

}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive 2 Column Stack' 
Style Sheet: fsr2columns.css Style Sheet
Created: 29, December 2012
Last Modified: 17, April 2014
Author: Blueball Design, Charlie Lockhart
www.blueballdesign.com
Copyright 2012-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_35532 #fsr_colwrap_stacks_in_35532 {
	width: 100%;
	vertical-align: top;
	margin: 0;
	padding: 0;
	overflow: auto;
}

#stacks_in_35532 #fsr_colwrap_stacks_in_35532 #fsr_leftcol_stacks_in_35532 {
	float: left;
	display: block;
	width: 76%;
	height: auto;
	margin: 0;
}

#stacks_in_35532 #fsr_colwrap_stacks_in_35532 #fsr_leftcol_stacks_in_35532 .leftcolpad_stacks_in_35532 {
	padding: 0px 0px 0px 0px;
}

#stacks_in_35532 #fsr_colwrap_stacks_in_35532 #fsr_rightcol_stacks_in_35532 {
	float: right;
	display: block;
	width: 24%;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_35532 #fsr_colwrap_stacks_in_35532 #fsr_rightcol_stacks_in_35532 .rightcolpad_stacks_in_35532 {
	padding: 0px 0px 0px 0px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

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

#stacks_in_35532 #fsr_colwrap_stacks_in_35532 #fsr_leftcol_stacks_in_35532 {
	display: block;
	float: left;
	width: 100% !important;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_35532 #fsr_colwrap_stacks_in_35532 #fsr_leftcol_stacks_in_35532 .leftcolpad_stacks_in_35532 {
	padding: 0px 0px 0px 0px;
}

#stacks_in_35532 #fsr_colwrap_stacks_in_35532 #fsr_rightcol_stacks_in_35532 {
	display: block;
	float: left;
	width: 100% !important;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_35532 #fsr_colwrap_stacks_in_35532 #fsr_rightcol_stacks_in_35532 .rightcolpad_stacks_in_35532 {
	padding: 0px 0px 0px 0px;
}

}
#stacks_in_35532 {
	background-color: rgba(255, 255, 255, 1.00);
}
/*
-------------------------------------------
File: 'Blueball FreeStacks' fscontent.css Style Sheet
Created: 17, January, 2011
Last Modified: 20, April, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2010-2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

#stacks_in_109 {
	-moz-border-radius-topright: 0px;
	-webkit-border-top-right-radius: 0px;
	border-top-right-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-webkit-border-top-left-radius: 0px;
	border-top-left-radius: 0px;
	-moz-border-radius-bottomright: 0px;
	-webkit-border-bottom-right-radius: 0px;
	border-bottom-right-radius: 0px;
	-moz-border-radius-bottomleft: 0px;
	-webkit-border-bottom-left-radius: 0px;
	border-bottom-left-radius: 0px;
}

#stacks_in_109 #content {
	font-size: 12px;
	line-height: 19px;
}

#stacks_in_109 {
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive 2 Column Stack' 
Style Sheet: fsr2columns.css Style Sheet
Created: 29, December 2012
Last Modified: 17, April 2014
Author: Blueball Design, Charlie Lockhart
www.blueballdesign.com
Copyright 2012-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_33170 #fsr_colwrap_stacks_in_33170 {
	width: 100%;
	vertical-align: top;
	margin: 0;
	padding: 0;
	overflow: auto;
}

#stacks_in_33170 #fsr_colwrap_stacks_in_33170 #fsr_leftcol_stacks_in_33170 {
	float: left;
	display: block;
	width: 35%;
	height: auto;
	margin: 0;
}

#stacks_in_33170 #fsr_colwrap_stacks_in_33170 #fsr_leftcol_stacks_in_33170 .leftcolpad_stacks_in_33170 {
	padding: 0px 0px 32px 11px;
}

#stacks_in_33170 #fsr_colwrap_stacks_in_33170 #fsr_rightcol_stacks_in_33170 {
	float: right;
	display: block;
	width: 65%;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_33170 #fsr_colwrap_stacks_in_33170 #fsr_rightcol_stacks_in_33170 .rightcolpad_stacks_in_33170 {
	padding: 0px 0px 32px 11px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

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

#stacks_in_33170 #fsr_colwrap_stacks_in_33170 #fsr_leftcol_stacks_in_33170 {
	display: block;
	float: left;
	width: 100% !important;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_33170 #fsr_colwrap_stacks_in_33170 #fsr_leftcol_stacks_in_33170 .leftcolpad_stacks_in_33170 {
	padding: 0px 0px 0px 0px;
}

#stacks_in_33170 #fsr_colwrap_stacks_in_33170 #fsr_rightcol_stacks_in_33170 {
	display: block;
	float: left;
	width: 100% !important;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_33170 #fsr_colwrap_stacks_in_33170 #fsr_rightcol_stacks_in_33170 .rightcolpad_stacks_in_33170 {
	padding: 0px 0px 0px 0px;
}

}
#stacks_in_33170 {
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
}
/* Styled Stack v2.3.1 Copyright 2013 Joe Workman */
 #stacks_in_5540{behavior:url(/PIE/PIE.htc);       border-style:solid!important; } #stacks_in_5540{behavior:url(/PIE/PIE.htc);-moz-box-shadow:0px 0px 6px #666666;-webkit-box-shadow:0px 0px 6px #666666;box-shadow:0px 0px 6px #666666}   

#stacks_in_5540 {
	background-color: rgba(255, 255, 255, 1.00);
	border: solid rgba(153, 153, 153, 1.00);
	border-width:  1px;
	-moz-border-radius:  8px;
	-webkit-border-radius:  8px;
	border-radius:  8px;
	margin: 16px 8px 8px 8px;
}

#stacks_out_5540 {
	width: 240px;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks' fscontent.css Style Sheet
Created: 17, January, 2011
Last Modified: 20, April, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2010-2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

#stacks_in_5355 {
	-moz-border-radius-topright: 0px;
	-webkit-border-top-right-radius: 0px;
	border-top-right-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-webkit-border-top-left-radius: 0px;
	border-top-left-radius: 0px;
	-moz-border-radius-bottomright: 0px;
	-webkit-border-bottom-right-radius: 0px;
	border-bottom-right-radius: 0px;
	-moz-border-radius-bottomleft: 0px;
	-webkit-border-bottom-left-radius: 0px;
	border-bottom-left-radius: 0px;
}

#stacks_in_5355 #content {
	font-size: 12px;
	line-height: 16px;
}

#stacks_in_30562_30576 {
	background-color: rgba(255, 102, 0, 1.00);
	-moz-border-radius: 8px 8px 0px 0px;
	-webkit-border-radius: 8px 8px 0px 0px;
	border-radius: 8px 8px 0px 0px;
}

#stacks_in_30562_30578 {
	background-color: rgba(255, 102, 0, 1.00);
	-moz-border-radius: 8px 8px 0px 0px;
	-webkit-border-radius: 8px 8px 0px 0px;
	border-radius: 8px 8px 0px 0px;
	padding: 24px 0px 0px 0px;
}

#stacks_in_5364 {
	margin: 20px 0px 4px 20px;
}

#stacks_out_5364 {
	width: 92%;
}

#stacks_in_37688 {
	margin: 0px 0px 6px 20px;
}

#stacks_out_37688 {
	width: 92%;
}
	
	/* start image list from doobox css */
	
	
	#stacks_in_5366 .stacks_in_5366imagelist {
		position: relative;
		list-style: none;
		list-style-type: none;
		margin:0px 0;
		
		z-index:1;
	}
	
	#stacks_in_5366 .stacks_in_5366listIcon {
		position: relative;
		float:left;
		z-index: 2;
	}
	
	#stacks_in_5366 .stacks_in_5366listIcon img{
		width:16px;
		height: auto;
	}
	
	
	#stacks_in_5366 .stacks_in_5366listTitle {

		margin-left:26px;
		padding-bottom: 0px;
		
		font-size: 129%;
	}
	
	
	#stacks_in_5366 .stacks_in_5366listContent {
		display: none;
		margin-left:26px;
		padding-top: 0px;
		padding-bottom: 18px;
	}
	
	.stacks_in_5366breaker{
		margin: 0;
		padding: 0;
		height: 1px;
		clear: both;
	}
	
	
	/* end image list from doobox css */
	
#stacks_in_5366 {
	margin: 0px 0px 10px 30px;
}
/* @group Edit Mode Styling */

/*  */

/* @end *//*
-------------------------------------------
File: 'Blueball FreeStacks' fscontent.css Style Sheet
Created: 17, January, 2011
Last Modified: 20, April, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2010-2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2664066_5 {
	-moz-border-radius-topright: 0px;
	-webkit-border-top-right-radius: 0px;
	border-top-right-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-webkit-border-top-left-radius: 0px;
	border-top-left-radius: 0px;
	-moz-border-radius-bottomright: 0px;
	-webkit-border-bottom-right-radius: 0px;
	border-bottom-right-radius: 0px;
	-moz-border-radius-bottomleft: 0px;
	-webkit-border-bottom-left-radius: 0px;
	border-bottom-left-radius: 0px;
}

#stacks_in_2664066_5 #content {
	font-size: 11px;
	line-height: 11px;
}

#stacks_in_2664066_3 {
	margin: 0px 0px 2px 24px;
	padding: 0px 0px 2px 0px;
}

#stacks_in_2664066_10 {
	margin: 0px 20px 10px 20px;
}





















#rwml_switch_language_form_stacks_in_2664066_8 {
	text-align: left;
	
	
}








@media print {
	#switchContainerstacks_in_2664066_8 {
		display: none !important;
	}
}





#stacks_in_2664929 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_2664930 {
	margin: 0px 2px 0px 2px;
	padding: 0px 0px 0px 20px;
}

#stacks_in_2664932 {
	margin: 0px 0px 4px 4px;
}
#stacks_in_2664936 .onthelineouterspace
{
display:block;
padding: 2px 0px 2px 0px;
}
#stacks_in_2664936 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:2px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#C8B7D3; 
font-size:1%;
-webkit-box-shadow: 0px 0px 1px #CCCCCC;
-moz-box-shadow: 0px 0px 1px #CCCCCC;
box-shadow: 0px 0px 1px #CCCCCC;
opacity:1;

/*CustomCSS;*/
}


#stacks_in_2664936 {
	margin: 10px 20px 0px 0px;
}

#stacks_in_2664937 {
	margin: 10px 0px 4px 4px;
}
#stacks_in_2664940 .onthelineouterspace
{
display:block;
padding: 2px 0px 2px 0px;
}
#stacks_in_2664940 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:2px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#C8B7D3; 
font-size:1%;
-webkit-box-shadow: 0px 0px 1px #CCCCCC;
-moz-box-shadow: 0px 0px 1px #CCCCCC;
box-shadow: 0px 0px 1px #CCCCCC;
opacity:1;

/*CustomCSS;*/
}


#stacks_in_2664940 {
	margin: 10px 20px 0px 0px;
}

#stacks_in_2664941 {
	margin: 0px 0px 4px 4px;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks' fscontent.css Style Sheet
Created: 17, January, 2011
Last Modified: 20, April, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2010-2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2664943 {
	-moz-border-radius-topright: 0px;
	-webkit-border-top-right-radius: 0px;
	border-top-right-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-webkit-border-top-left-radius: 0px;
	border-top-left-radius: 0px;
	-moz-border-radius-bottomright: 0px;
	-webkit-border-bottom-right-radius: 0px;
	border-bottom-right-radius: 0px;
	-moz-border-radius-bottomleft: 0px;
	-webkit-border-bottom-left-radius: 0px;
	border-bottom-left-radius: 0px;
}

#stacks_in_2664943 #content {
	font-size: 12px;
	line-height: 14px;
}

#stacks_in_2664943 {
	margin: 0px 0px 10px 0px;
}
	
	/* start image list from doobox css */
	
	
	#stacks_in_2664944 .stacks_in_2664944imagelist {
		position: relative;
		list-style: none;
		list-style-type: none;
		margin:2px 0;
		
		z-index:1;
	}
	
	#stacks_in_2664944 .stacks_in_2664944listIcon {
		position: relative;
		float:left;
		z-index: 2;
	}
	
	#stacks_in_2664944 .stacks_in_2664944listIcon img{
		width:16px;
		height: auto;
	}
	
	
	#stacks_in_2664944 .stacks_in_2664944listTitle {

		margin-left:26px;
		padding-bottom: 0px;
		
		font-size: 100%;
	}
	
	
	#stacks_in_2664944 .stacks_in_2664944listContent {
		display: none;
		margin-left:26px;
		padding-top: 0px;
		padding-bottom: 18px;
	}
	
	.stacks_in_2664944breaker{
		margin: 0;
		padding: 0;
		height: 1px;
		clear: both;
	}
	
	
	/* end image list from doobox css */
	
#stacks_in_2664944 {
	margin: 0px 14px 0px 24px;
}
#stacks_in_2664951 .onthelineouterspace
{
display:block;
padding: 2px 0px 2px 0px;
}
#stacks_in_2664951 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:2px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#C8B7D3; 
font-size:1%;
-webkit-box-shadow: 0px 0px 1px #CCCCCC;
-moz-box-shadow: 0px 0px 1px #CCCCCC;
box-shadow: 0px 0px 1px #CCCCCC;
opacity:1;

/*CustomCSS;*/
}


#stacks_in_2664951 {
	margin: 10px 20px 0px 0px;
}

#stacks_in_2664952 {
	margin: 10px 0px 6px 4px;
}
#stacks_in_2664955 .onthelineouterspace
{
display:block;
padding: 2px 0px 2px 0px;
}
#stacks_in_2664955 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:2px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#C8B7D3; 
font-size:1%;
-webkit-box-shadow: 0px 0px 1px #CCCCCC;
-moz-box-shadow: 0px 0px 1px #CCCCCC;
box-shadow: 0px 0px 1px #CCCCCC;
opacity:1;

/*CustomCSS;*/
}


#stacks_in_2664955 {
	margin: 10px 20px 0px 0px;
}

#stacks_in_2664956 {
	margin: 14px 0px 6px 0px;
}

#stacks_in_2664959 {
	margin: 0px 0px 10px 0px;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Styler Stack' 
Style Sheet: fsrstyler.css Style Sheet
Created: 26, September 2012
Last Modified: 22, April 2014
Author: Charlie Lockhart/Blueball Design LLC
www.blueballdesign.com
Copyright 2012-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2664959_4 {
	font-size: 0.90em;
	color: #000000;
	line-height: 1.30em;
}

#stacks_in_2664959_4 p {
	font-size: 0.90em;
	color: ##000000;
	line-height: 1.30em;
}

#stacks_in_2664959_4 a:link  {
	color: #0000FF;
	text-decoration: underline;
}

#stacks_in_2664959_4 a:visited {
	color: #800080;
	text-decoration: underline;
}

#stacks_in_2664959_4 a:hover {
	color: #FF0000;
	text-decoration: none;
}

#stacks_in_2664959_4  a:active  {
	color: #0000FF;
	text-decoration: underline;
}

#stacks_in_2664959_4 h1 {
	color: #000000;
	font-size: 2.30em;
	line-height: 1.00em;
}

#stacks_in_2664959_4 h2 {
	color: #000000;
	font-size: 2.00em;
	line-height: 1.00em;
}

#stacks_in_2664959_4 h3 {
	color: #000000;
	font-size: 1.60em;
	line-height: 1.00em;
}

#stacks_in_2664959_4 h4 {
	color: #000000;
	font-size: 1.40em;
	line-height: 1.00em;
}

#stacks_in_2664959_4 h5 {
	color: #000000;
	font-size: 1.20em;
	line-height: 1.00em;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 600px) {
	
#stacks_in_2664959_4 {
	font-size: 0.90em;
	line-height: 1.20em;
}

#stacks_in_2664959_4 p {
	font-size: 0.90em;
	line-height: 1.20em;
}

#stacks_in_2664959_4 h1 {
	font-size: 2.30em;
	line-height: 1.20em;
}

#stacks_in_2664959_4 h2 {
	font-size: 2.00em;
	line-height: 1.20em;
}

#stacks_in_2664959_4 h3 {
	font-size: 1.60em;
	line-height: 1.20em;
}

#stacks_in_2664959_4 h4 {
	font-size: 1.40em;
	line-height: 1.20em;
}

#stacks_in_2664959_4 h5 {
	font-size: 1.20em;
	line-height: 1.20em;
}

}
#stacks_in_2664959_1 {
	margin: 10px 5px 0px 2px;
}
#stacks_in_2664960 .onthelineouterspace
{
display:block;
padding: 2px 0px 2px 0px;
}
#stacks_in_2664960 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:2px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#CCCCCC; 
font-size:1%;
-webkit-box-shadow: 0px 0px 1px #CCCCCC;
-moz-box-shadow: 0px 0px 1px #CCCCCC;
box-shadow: 0px 0px 1px #CCCCCC;
opacity:1;

/*CustomCSS;*/
}


#stacks_in_2664960 {
	margin: 10px 0px 0px 0px;
}



#stacks_in_2664961 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_2664962 {
	margin: 0px 2px 0px 2px;
	padding: 0px 0px 0px 20px;
}

#stacks_in_2664964 {
	margin: 0px 0px 4px 4px;
}
#stacks_in_2664970 .onthelineouterspace
{
display:block;
padding: 2px 0px 2px 0px;
}
#stacks_in_2664970 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:2px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#C8B7D3; 
font-size:1%;
-webkit-box-shadow: 0px 0px 1px #CCCCCC;
-moz-box-shadow: 0px 0px 1px #CCCCCC;
box-shadow: 0px 0px 1px #CCCCCC;
opacity:1;

/*CustomCSS;*/
}


#stacks_in_2664970 {
	margin: 10px 20px 0px 0px;
}

#stacks_in_2664971 {
	margin: 10px 0px 4px 4px;
}
#stacks_in_2664976 .onthelineouterspace
{
display:block;
padding: 2px 0px 2px 0px;
}
#stacks_in_2664976 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:2px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#C8B7D3; 
font-size:1%;
-webkit-box-shadow: 0px 0px 1px #CCCCCC;
-moz-box-shadow: 0px 0px 1px #CCCCCC;
box-shadow: 0px 0px 1px #CCCCCC;
opacity:1;

/*CustomCSS;*/
}


#stacks_in_2664976 {
	margin: 10px 20px 0px 0px;
}

#stacks_in_2664977 {
	margin: 0px 0px 4px 4px;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks' fscontent.css Style Sheet
Created: 17, January, 2011
Last Modified: 20, April, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2010-2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2664981 {
	-moz-border-radius-topright: 0px;
	-webkit-border-top-right-radius: 0px;
	border-top-right-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-webkit-border-top-left-radius: 0px;
	border-top-left-radius: 0px;
	-moz-border-radius-bottomright: 0px;
	-webkit-border-bottom-right-radius: 0px;
	border-bottom-right-radius: 0px;
	-moz-border-radius-bottomleft: 0px;
	-webkit-border-bottom-left-radius: 0px;
	border-bottom-left-radius: 0px;
}

#stacks_in_2664981 #content {
	font-size: 12px;
	line-height: 14px;
}

#stacks_in_2664981 {
	margin: 0px 0px 10px 0px;
}
	
	/* start image list from doobox css */
	
	
	#stacks_in_2664982 .stacks_in_2664982imagelist {
		position: relative;
		list-style: none;
		list-style-type: none;
		margin:2px 0;
		
		z-index:1;
	}
	
	#stacks_in_2664982 .stacks_in_2664982listIcon {
		position: relative;
		float:left;
		z-index: 2;
	}
	
	#stacks_in_2664982 .stacks_in_2664982listIcon img{
		width:16px;
		height: auto;
	}
	
	
	#stacks_in_2664982 .stacks_in_2664982listTitle {

		margin-left:26px;
		padding-bottom: 0px;
		
		font-size: 100%;
	}
	
	
	#stacks_in_2664982 .stacks_in_2664982listContent {
		display: none;
		margin-left:26px;
		padding-top: 0px;
		padding-bottom: 18px;
	}
	
	.stacks_in_2664982breaker{
		margin: 0;
		padding: 0;
		height: 1px;
		clear: both;
	}
	
	
	/* end image list from doobox css */
	
#stacks_in_2664982 {
	margin: 0px 14px 0px 24px;
}
#stacks_in_2664989 .onthelineouterspace
{
display:block;
padding: 2px 0px 2px 0px;
}
#stacks_in_2664989 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:2px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#C8B7D3; 
font-size:1%;
-webkit-box-shadow: 0px 0px 1px #CCCCCC;
-moz-box-shadow: 0px 0px 1px #CCCCCC;
box-shadow: 0px 0px 1px #CCCCCC;
opacity:1;

/*CustomCSS;*/
}


#stacks_in_2664989 {
	margin: 10px 20px 0px 0px;
}

#stacks_in_2664990 {
	margin: 10px 0px 6px 4px;
}
#stacks_in_2664995 .onthelineouterspace
{
display:block;
padding: 2px 0px 2px 0px;
}
#stacks_in_2664995 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:2px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#C8B7D3; 
font-size:1%;
-webkit-box-shadow: 0px 0px 1px #CCCCCC;
-moz-box-shadow: 0px 0px 1px #CCCCCC;
box-shadow: 0px 0px 1px #CCCCCC;
opacity:1;

/*CustomCSS;*/
}


#stacks_in_2664995 {
	margin: 10px 20px 0px 0px;
}

#stacks_in_2664996 {
	margin: 14px 0px 6px 0px;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Styler Stack' 
Style Sheet: fsrstyler.css Style Sheet
Created: 26, September 2012
Last Modified: 22, April 2014
Author: Charlie Lockhart/Blueball Design LLC
www.blueballdesign.com
Copyright 2012-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2665001_1 {
	font-size: 0.90em;
	color: #000000;
	line-height: 1.30em;
}

#stacks_in_2665001_1 p {
	font-size: 0.90em;
	color: ##000000;
	line-height: 1.30em;
}

#stacks_in_2665001_1 a:link  {
	color: #0000FF;
	text-decoration: underline;
}

#stacks_in_2665001_1 a:visited {
	color: #800080;
	text-decoration: underline;
}

#stacks_in_2665001_1 a:hover {
	color: #FF0000;
	text-decoration: none;
}

#stacks_in_2665001_1  a:active  {
	color: #0000FF;
	text-decoration: underline;
}

#stacks_in_2665001_1 h1 {
	color: #000000;
	font-size: 2.30em;
	line-height: 1.00em;
}

#stacks_in_2665001_1 h2 {
	color: #000000;
	font-size: 2.00em;
	line-height: 1.00em;
}

#stacks_in_2665001_1 h3 {
	color: #000000;
	font-size: 1.60em;
	line-height: 1.00em;
}

#stacks_in_2665001_1 h4 {
	color: #000000;
	font-size: 1.40em;
	line-height: 1.00em;
}

#stacks_in_2665001_1 h5 {
	color: #000000;
	font-size: 1.20em;
	line-height: 1.00em;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 600px) {
	
#stacks_in_2665001_1 {
	font-size: 0.90em;
	line-height: 1.20em;
}

#stacks_in_2665001_1 p {
	font-size: 0.90em;
	line-height: 1.20em;
}

#stacks_in_2665001_1 h1 {
	font-size: 2.30em;
	line-height: 1.20em;
}

#stacks_in_2665001_1 h2 {
	font-size: 2.00em;
	line-height: 1.20em;
}

#stacks_in_2665001_1 h3 {
	font-size: 1.60em;
	line-height: 1.20em;
}

#stacks_in_2665001_1 h4 {
	font-size: 1.40em;
	line-height: 1.20em;
}

#stacks_in_2665001_1 h5 {
	font-size: 1.20em;
	line-height: 1.20em;
}

}
#stacks_in_2665001_2 {
	margin: 4px 5px 0px 3px;
}
#stacks_in_2665002 .onthelineouterspace
{
display:block;
padding: 2px 0px 2px 0px;
}
#stacks_in_2665002 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:2px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#CCCCCC; 
font-size:1%;
-webkit-box-shadow: 0px 0px 1px #CCCCCC;
-moz-box-shadow: 0px 0px 1px #CCCCCC;
box-shadow: 0px 0px 1px #CCCCCC;
opacity:1;

/*CustomCSS;*/
}


#stacks_in_2665002 {
	margin: 10px 0px 0px 0px;
}



#stacks_in_2665003 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_2665004 {
	margin: 0px 2px 0px 2px;
	padding: 0px 0px 0px 20px;
}

#stacks_in_2665006 {
	margin: 0px 0px 4px 4px;
}
#stacks_in_2665012 .onthelineouterspace
{
display:block;
padding: 2px 0px 2px 0px;
}
#stacks_in_2665012 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:2px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#C8B7D3; 
font-size:1%;
-webkit-box-shadow: 0px 0px 1px #CCCCCC;
-moz-box-shadow: 0px 0px 1px #CCCCCC;
box-shadow: 0px 0px 1px #CCCCCC;
opacity:1;

/*CustomCSS;*/
}


#stacks_in_2665012 {
	margin: 10px 20px 0px 0px;
}

#stacks_in_2665013 {
	margin: 10px 0px 4px 4px;
}
#stacks_in_2665018 .onthelineouterspace
{
display:block;
padding: 2px 0px 2px 0px;
}
#stacks_in_2665018 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:2px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#C8B7D3; 
font-size:1%;
-webkit-box-shadow: 0px 0px 1px #CCCCCC;
-moz-box-shadow: 0px 0px 1px #CCCCCC;
box-shadow: 0px 0px 1px #CCCCCC;
opacity:1;

/*CustomCSS;*/
}


#stacks_in_2665018 {
	margin: 10px 20px 0px 0px;
}

#stacks_in_2665019 {
	margin: 0px 0px 4px 4px;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks' fscontent.css Style Sheet
Created: 17, January, 2011
Last Modified: 20, April, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2010-2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2665023 {
	-moz-border-radius-topright: 0px;
	-webkit-border-top-right-radius: 0px;
	border-top-right-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-webkit-border-top-left-radius: 0px;
	border-top-left-radius: 0px;
	-moz-border-radius-bottomright: 0px;
	-webkit-border-bottom-right-radius: 0px;
	border-bottom-right-radius: 0px;
	-moz-border-radius-bottomleft: 0px;
	-webkit-border-bottom-left-radius: 0px;
	border-bottom-left-radius: 0px;
}

#stacks_in_2665023 #content {
	font-size: 12px;
	line-height: 14px;
}

#stacks_in_2665023 {
	margin: 0px 0px 10px 0px;
}
	
	/* start image list from doobox css */
	
	
	#stacks_in_2665024 .stacks_in_2665024imagelist {
		position: relative;
		list-style: none;
		list-style-type: none;
		margin:2px 0;
		
		z-index:1;
	}
	
	#stacks_in_2665024 .stacks_in_2665024listIcon {
		position: relative;
		float:left;
		z-index: 2;
	}
	
	#stacks_in_2665024 .stacks_in_2665024listIcon img{
		width:16px;
		height: auto;
	}
	
	
	#stacks_in_2665024 .stacks_in_2665024listTitle {

		margin-left:26px;
		padding-bottom: 0px;
		
		font-size: 100%;
	}
	
	
	#stacks_in_2665024 .stacks_in_2665024listContent {
		display: none;
		margin-left:26px;
		padding-top: 0px;
		padding-bottom: 18px;
	}
	
	.stacks_in_2665024breaker{
		margin: 0;
		padding: 0;
		height: 1px;
		clear: both;
	}
	
	
	/* end image list from doobox css */
	
#stacks_in_2665024 {
	margin: 0px 14px 0px 24px;
}
#stacks_in_2665031 .onthelineouterspace
{
display:block;
padding: 2px 0px 2px 0px;
}
#stacks_in_2665031 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:2px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#C8B7D3; 
font-size:1%;
-webkit-box-shadow: 0px 0px 1px #CCCCCC;
-moz-box-shadow: 0px 0px 1px #CCCCCC;
box-shadow: 0px 0px 1px #CCCCCC;
opacity:1;

/*CustomCSS;*/
}


#stacks_in_2665031 {
	margin: 10px 20px 0px 0px;
}

#stacks_in_2665032 {
	margin: 10px 0px 6px 4px;
}
#stacks_in_2665037 .onthelineouterspace
{
display:block;
padding: 2px 0px 2px 0px;
}
#stacks_in_2665037 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:2px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#C8B7D3; 
font-size:1%;
-webkit-box-shadow: 0px 0px 1px #CCCCCC;
-moz-box-shadow: 0px 0px 1px #CCCCCC;
box-shadow: 0px 0px 1px #CCCCCC;
opacity:1;

/*CustomCSS;*/
}


#stacks_in_2665037 {
	margin: 10px 20px 0px 0px;
}

#stacks_in_2665038 {
	margin: 14px 0px 6px 0px;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Styler Stack' 
Style Sheet: fsrstyler.css Style Sheet
Created: 26, September 2012
Last Modified: 22, April 2014
Author: Charlie Lockhart/Blueball Design LLC
www.blueballdesign.com
Copyright 2012-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2665043_1 {
	font-size: 0.90em;
	color: #000000;
	line-height: 1.30em;
}

#stacks_in_2665043_1 p {
	font-size: 0.90em;
	color: ##000000;
	line-height: 1.30em;
}

#stacks_in_2665043_1 a:link  {
	color: #0000FF;
	text-decoration: underline;
}

#stacks_in_2665043_1 a:visited {
	color: #800080;
	text-decoration: underline;
}

#stacks_in_2665043_1 a:hover {
	color: #FF0000;
	text-decoration: none;
}

#stacks_in_2665043_1  a:active  {
	color: #0000FF;
	text-decoration: underline;
}

#stacks_in_2665043_1 h1 {
	color: #000000;
	font-size: 2.30em;
	line-height: 1.00em;
}

#stacks_in_2665043_1 h2 {
	color: #000000;
	font-size: 2.00em;
	line-height: 1.00em;
}

#stacks_in_2665043_1 h3 {
	color: #000000;
	font-size: 1.60em;
	line-height: 1.00em;
}

#stacks_in_2665043_1 h4 {
	color: #000000;
	font-size: 1.40em;
	line-height: 1.00em;
}

#stacks_in_2665043_1 h5 {
	color: #000000;
	font-size: 1.20em;
	line-height: 1.00em;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 600px) {
	
#stacks_in_2665043_1 {
	font-size: 0.90em;
	line-height: 1.20em;
}

#stacks_in_2665043_1 p {
	font-size: 0.90em;
	line-height: 1.20em;
}

#stacks_in_2665043_1 h1 {
	font-size: 2.30em;
	line-height: 1.20em;
}

#stacks_in_2665043_1 h2 {
	font-size: 2.00em;
	line-height: 1.20em;
}

#stacks_in_2665043_1 h3 {
	font-size: 1.60em;
	line-height: 1.20em;
}

#stacks_in_2665043_1 h4 {
	font-size: 1.40em;
	line-height: 1.20em;
}

#stacks_in_2665043_1 h5 {
	font-size: 1.20em;
	line-height: 1.20em;
}

}
#stacks_in_2665043_2 {
	margin: 4px 5px 0px 3px;
}
#stacks_in_2665044 .onthelineouterspace
{
display:block;
padding: 2px 0px 2px 0px;
}
#stacks_in_2665044 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:2px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#CCCCCC; 
font-size:1%;
-webkit-box-shadow: 0px 0px 1px #CCCCCC;
-moz-box-shadow: 0px 0px 1px #CCCCCC;
box-shadow: 0px 0px 1px #CCCCCC;
opacity:1;

/*CustomCSS;*/
}


#stacks_in_2665044 {
	margin: 10px 0px 0px 0px;
}



#stacks_in_2665045 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_2665046 {
	margin: 0px 2px 0px 2px;
	padding: 0px 0px 0px 20px;
}

#stacks_in_2665048 {
	margin: 0px 0px 4px 4px;
}
#stacks_in_2665054 .onthelineouterspace
{
display:block;
padding: 2px 0px 2px 0px;
}
#stacks_in_2665054 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:2px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#C8B7D3; 
font-size:1%;
-webkit-box-shadow: 0px 0px 1px #CCCCCC;
-moz-box-shadow: 0px 0px 1px #CCCCCC;
box-shadow: 0px 0px 1px #CCCCCC;
opacity:1;

/*CustomCSS;*/
}


#stacks_in_2665054 {
	margin: 10px 20px 0px 0px;
}

#stacks_in_2665055 {
	margin: 10px 0px 4px 4px;
}
#stacks_in_2665060 .onthelineouterspace
{
display:block;
padding: 2px 0px 2px 0px;
}
#stacks_in_2665060 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:2px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#C8B7D3; 
font-size:1%;
-webkit-box-shadow: 0px 0px 1px #CCCCCC;
-moz-box-shadow: 0px 0px 1px #CCCCCC;
box-shadow: 0px 0px 1px #CCCCCC;
opacity:1;

/*CustomCSS;*/
}


#stacks_in_2665060 {
	margin: 10px 20px 0px 0px;
}

#stacks_in_2665061 {
	margin: 0px 0px 4px 4px;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks' fscontent.css Style Sheet
Created: 17, January, 2011
Last Modified: 20, April, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2010-2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2665065 {
	-moz-border-radius-topright: 0px;
	-webkit-border-top-right-radius: 0px;
	border-top-right-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-webkit-border-top-left-radius: 0px;
	border-top-left-radius: 0px;
	-moz-border-radius-bottomright: 0px;
	-webkit-border-bottom-right-radius: 0px;
	border-bottom-right-radius: 0px;
	-moz-border-radius-bottomleft: 0px;
	-webkit-border-bottom-left-radius: 0px;
	border-bottom-left-radius: 0px;
}

#stacks_in_2665065 #content {
	font-size: 12px;
	line-height: 14px;
}

#stacks_in_2665065 {
	margin: 0px 0px 10px 0px;
}
	
	/* start image list from doobox css */
	
	
	#stacks_in_2665066 .stacks_in_2665066imagelist {
		position: relative;
		list-style: none;
		list-style-type: none;
		margin:2px 0;
		
		z-index:1;
	}
	
	#stacks_in_2665066 .stacks_in_2665066listIcon {
		position: relative;
		float:left;
		z-index: 2;
	}
	
	#stacks_in_2665066 .stacks_in_2665066listIcon img{
		width:16px;
		height: auto;
	}
	
	
	#stacks_in_2665066 .stacks_in_2665066listTitle {

		margin-left:26px;
		padding-bottom: 0px;
		
		font-size: 100%;
	}
	
	
	#stacks_in_2665066 .stacks_in_2665066listContent {
		display: none;
		margin-left:26px;
		padding-top: 0px;
		padding-bottom: 18px;
	}
	
	.stacks_in_2665066breaker{
		margin: 0;
		padding: 0;
		height: 1px;
		clear: both;
	}
	
	
	/* end image list from doobox css */
	
#stacks_in_2665066 {
	margin: 0px 14px 0px 24px;
}
#stacks_in_2665073 .onthelineouterspace
{
display:block;
padding: 2px 0px 2px 0px;
}
#stacks_in_2665073 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:2px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#C8B7D3; 
font-size:1%;
-webkit-box-shadow: 0px 0px 1px #CCCCCC;
-moz-box-shadow: 0px 0px 1px #CCCCCC;
box-shadow: 0px 0px 1px #CCCCCC;
opacity:1;

/*CustomCSS;*/
}


#stacks_in_2665073 {
	margin: 10px 20px 0px 0px;
}

#stacks_in_2665074 {
	margin: 10px 0px 6px 4px;
}
#stacks_in_2665079 .onthelineouterspace
{
display:block;
padding: 2px 0px 2px 0px;
}
#stacks_in_2665079 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:2px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#C8B7D3; 
font-size:1%;
-webkit-box-shadow: 0px 0px 1px #CCCCCC;
-moz-box-shadow: 0px 0px 1px #CCCCCC;
box-shadow: 0px 0px 1px #CCCCCC;
opacity:1;

/*CustomCSS;*/
}


#stacks_in_2665079 {
	margin: 10px 20px 0px 0px;
}

#stacks_in_2665080 {
	margin: 14px 0px 6px 0px;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Styler Stack' 
Style Sheet: fsrstyler.css Style Sheet
Created: 26, September 2012
Last Modified: 22, April 2014
Author: Charlie Lockhart/Blueball Design LLC
www.blueballdesign.com
Copyright 2012-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2665085_1 {
	font-size: 0.90em;
	color: #000000;
	line-height: 1.30em;
}

#stacks_in_2665085_1 p {
	font-size: 0.90em;
	color: ##000000;
	line-height: 1.30em;
}

#stacks_in_2665085_1 a:link  {
	color: #0000FF;
	text-decoration: underline;
}

#stacks_in_2665085_1 a:visited {
	color: #800080;
	text-decoration: underline;
}

#stacks_in_2665085_1 a:hover {
	color: #FF0000;
	text-decoration: none;
}

#stacks_in_2665085_1  a:active  {
	color: #0000FF;
	text-decoration: underline;
}

#stacks_in_2665085_1 h1 {
	color: #000000;
	font-size: 2.30em;
	line-height: 1.00em;
}

#stacks_in_2665085_1 h2 {
	color: #000000;
	font-size: 2.00em;
	line-height: 1.00em;
}

#stacks_in_2665085_1 h3 {
	color: #000000;
	font-size: 1.60em;
	line-height: 1.00em;
}

#stacks_in_2665085_1 h4 {
	color: #000000;
	font-size: 1.40em;
	line-height: 1.00em;
}

#stacks_in_2665085_1 h5 {
	color: #000000;
	font-size: 1.20em;
	line-height: 1.00em;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 600px) {
	
#stacks_in_2665085_1 {
	font-size: 0.90em;
	line-height: 1.20em;
}

#stacks_in_2665085_1 p {
	font-size: 0.90em;
	line-height: 1.20em;
}

#stacks_in_2665085_1 h1 {
	font-size: 2.30em;
	line-height: 1.20em;
}

#stacks_in_2665085_1 h2 {
	font-size: 2.00em;
	line-height: 1.20em;
}

#stacks_in_2665085_1 h3 {
	font-size: 1.60em;
	line-height: 1.20em;
}

#stacks_in_2665085_1 h4 {
	font-size: 1.40em;
	line-height: 1.20em;
}

#stacks_in_2665085_1 h5 {
	font-size: 1.20em;
	line-height: 1.20em;
}

}
#stacks_in_2665085_2 {
	margin: 4px 5px 0px 3px;
}
#stacks_in_2665086 .onthelineouterspace
{
display:block;
padding: 2px 0px 2px 0px;
}
#stacks_in_2665086 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:2px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#CCCCCC; 
font-size:1%;
-webkit-box-shadow: 0px 0px 1px #CCCCCC;
-moz-box-shadow: 0px 0px 1px #CCCCCC;
box-shadow: 0px 0px 1px #CCCCCC;
opacity:1;

/*CustomCSS;*/
}


#stacks_in_2665086 {
	margin: 10px 0px 0px 0px;
}



#stacks_in_2665087 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_2665088 {
	margin: 0px 2px 0px 2px;
	padding: 0px 0px 0px 20px;
}

#stacks_in_2665090 {
	margin: 0px 0px 4px 4px;
}
#stacks_in_2665096 .onthelineouterspace
{
display:block;
padding: 2px 0px 2px 0px;
}
#stacks_in_2665096 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:2px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#C8B7D3; 
font-size:1%;
-webkit-box-shadow: 0px 0px 1px #CCCCCC;
-moz-box-shadow: 0px 0px 1px #CCCCCC;
box-shadow: 0px 0px 1px #CCCCCC;
opacity:1;

/*CustomCSS;*/
}


#stacks_in_2665096 {
	margin: 10px 20px 0px 0px;
}

#stacks_in_2665097 {
	margin: 10px 0px 4px 4px;
}
#stacks_in_2665102 .onthelineouterspace
{
display:block;
padding: 2px 0px 2px 0px;
}
#stacks_in_2665102 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:2px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#C8B7D3; 
font-size:1%;
-webkit-box-shadow: 0px 0px 1px #CCCCCC;
-moz-box-shadow: 0px 0px 1px #CCCCCC;
box-shadow: 0px 0px 1px #CCCCCC;
opacity:1;

/*CustomCSS;*/
}


#stacks_in_2665102 {
	margin: 10px 20px 0px 0px;
}

#stacks_in_2665103 {
	margin: 0px 0px 4px 4px;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks' fscontent.css Style Sheet
Created: 17, January, 2011
Last Modified: 20, April, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2010-2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2665107 {
	-moz-border-radius-topright: 0px;
	-webkit-border-top-right-radius: 0px;
	border-top-right-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-webkit-border-top-left-radius: 0px;
	border-top-left-radius: 0px;
	-moz-border-radius-bottomright: 0px;
	-webkit-border-bottom-right-radius: 0px;
	border-bottom-right-radius: 0px;
	-moz-border-radius-bottomleft: 0px;
	-webkit-border-bottom-left-radius: 0px;
	border-bottom-left-radius: 0px;
}

#stacks_in_2665107 #content {
	font-size: 12px;
	line-height: 14px;
}

#stacks_in_2665107 {
	margin: 0px 0px 10px 0px;
}
	
	/* start image list from doobox css */
	
	
	#stacks_in_2665108 .stacks_in_2665108imagelist {
		position: relative;
		list-style: none;
		list-style-type: none;
		margin:2px 0;
		
		z-index:1;
	}
	
	#stacks_in_2665108 .stacks_in_2665108listIcon {
		position: relative;
		float:left;
		z-index: 2;
	}
	
	#stacks_in_2665108 .stacks_in_2665108listIcon img{
		width:16px;
		height: auto;
	}
	
	
	#stacks_in_2665108 .stacks_in_2665108listTitle {

		margin-left:26px;
		padding-bottom: 0px;
		
		font-size: 100%;
	}
	
	
	#stacks_in_2665108 .stacks_in_2665108listContent {
		display: none;
		margin-left:26px;
		padding-top: 0px;
		padding-bottom: 18px;
	}
	
	.stacks_in_2665108breaker{
		margin: 0;
		padding: 0;
		height: 1px;
		clear: both;
	}
	
	
	/* end image list from doobox css */
	
#stacks_in_2665108 {
	margin: 0px 14px 0px 24px;
}
#stacks_in_2665115 .onthelineouterspace
{
display:block;
padding: 2px 0px 2px 0px;
}
#stacks_in_2665115 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:2px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#C8B7D3; 
font-size:1%;
-webkit-box-shadow: 0px 0px 1px #CCCCCC;
-moz-box-shadow: 0px 0px 1px #CCCCCC;
box-shadow: 0px 0px 1px #CCCCCC;
opacity:1;

/*CustomCSS;*/
}


#stacks_in_2665115 {
	margin: 10px 20px 0px 0px;
}

#stacks_in_2665116 {
	margin: 10px 0px 6px 4px;
}
#stacks_in_2665121 .onthelineouterspace
{
display:block;
padding: 2px 0px 2px 0px;
}
#stacks_in_2665121 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:2px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#C8B7D3; 
font-size:1%;
-webkit-box-shadow: 0px 0px 1px #CCCCCC;
-moz-box-shadow: 0px 0px 1px #CCCCCC;
box-shadow: 0px 0px 1px #CCCCCC;
opacity:1;

/*CustomCSS;*/
}


#stacks_in_2665121 {
	margin: 10px 20px 0px 0px;
}

#stacks_in_2665122 {
	margin: 14px 0px 6px 0px;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Styler Stack' 
Style Sheet: fsrstyler.css Style Sheet
Created: 26, September 2012
Last Modified: 22, April 2014
Author: Charlie Lockhart/Blueball Design LLC
www.blueballdesign.com
Copyright 2012-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2665127_1 {
	font-size: 0.90em;
	color: #000000;
	line-height: 1.30em;
}

#stacks_in_2665127_1 p {
	font-size: 0.90em;
	color: ##000000;
	line-height: 1.30em;
}

#stacks_in_2665127_1 a:link  {
	color: #0000FF;
	text-decoration: underline;
}

#stacks_in_2665127_1 a:visited {
	color: #800080;
	text-decoration: underline;
}

#stacks_in_2665127_1 a:hover {
	color: #FF0000;
	text-decoration: none;
}

#stacks_in_2665127_1  a:active  {
	color: #0000FF;
	text-decoration: underline;
}

#stacks_in_2665127_1 h1 {
	color: #000000;
	font-size: 2.30em;
	line-height: 1.00em;
}

#stacks_in_2665127_1 h2 {
	color: #000000;
	font-size: 2.00em;
	line-height: 1.00em;
}

#stacks_in_2665127_1 h3 {
	color: #000000;
	font-size: 1.60em;
	line-height: 1.00em;
}

#stacks_in_2665127_1 h4 {
	color: #000000;
	font-size: 1.40em;
	line-height: 1.00em;
}

#stacks_in_2665127_1 h5 {
	color: #000000;
	font-size: 1.20em;
	line-height: 1.00em;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 600px) {
	
#stacks_in_2665127_1 {
	font-size: 0.90em;
	line-height: 1.20em;
}

#stacks_in_2665127_1 p {
	font-size: 0.90em;
	line-height: 1.20em;
}

#stacks_in_2665127_1 h1 {
	font-size: 2.30em;
	line-height: 1.20em;
}

#stacks_in_2665127_1 h2 {
	font-size: 2.00em;
	line-height: 1.20em;
}

#stacks_in_2665127_1 h3 {
	font-size: 1.60em;
	line-height: 1.20em;
}

#stacks_in_2665127_1 h4 {
	font-size: 1.40em;
	line-height: 1.20em;
}

#stacks_in_2665127_1 h5 {
	font-size: 1.20em;
	line-height: 1.20em;
}

}
#stacks_in_2665127_2 {
	margin: 4px 5px 0px 3px;
}
#stacks_in_2665128 .onthelineouterspace
{
display:block;
padding: 2px 0px 2px 0px;
}
#stacks_in_2665128 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:2px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#CCCCCC; 
font-size:1%;
-webkit-box-shadow: 0px 0px 1px #CCCCCC;
-moz-box-shadow: 0px 0px 1px #CCCCCC;
box-shadow: 0px 0px 1px #CCCCCC;
opacity:1;

/*CustomCSS;*/
}


#stacks_in_2665128 {
	margin: 10px 0px 0px 0px;
}



#stacks_in_2665129 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_2665130 {
	margin: 0px 2px 0px 2px;
	padding: 0px 0px 0px 20px;
}

#stacks_in_2665132 {
	margin: 0px 0px 4px 4px;
}
#stacks_in_2665138 .onthelineouterspace
{
display:block;
padding: 2px 0px 2px 0px;
}
#stacks_in_2665138 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:2px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#C8B7D3; 
font-size:1%;
-webkit-box-shadow: 0px 0px 1px #CCCCCC;
-moz-box-shadow: 0px 0px 1px #CCCCCC;
box-shadow: 0px 0px 1px #CCCCCC;
opacity:1;

/*CustomCSS;*/
}


#stacks_in_2665138 {
	margin: 10px 20px 0px 0px;
}

#stacks_in_2665139 {
	margin: 10px 0px 4px 4px;
}
#stacks_in_2665144 .onthelineouterspace
{
display:block;
padding: 2px 0px 2px 0px;
}
#stacks_in_2665144 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:2px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#C8B7D3; 
font-size:1%;
-webkit-box-shadow: 0px 0px 1px #CCCCCC;
-moz-box-shadow: 0px 0px 1px #CCCCCC;
box-shadow: 0px 0px 1px #CCCCCC;
opacity:1;

/*CustomCSS;*/
}


#stacks_in_2665144 {
	margin: 10px 20px 0px 0px;
}

#stacks_in_2665145 {
	margin: 0px 0px 4px 4px;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks' fscontent.css Style Sheet
Created: 17, January, 2011
Last Modified: 20, April, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2010-2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2665149 {
	-moz-border-radius-topright: 0px;
	-webkit-border-top-right-radius: 0px;
	border-top-right-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-webkit-border-top-left-radius: 0px;
	border-top-left-radius: 0px;
	-moz-border-radius-bottomright: 0px;
	-webkit-border-bottom-right-radius: 0px;
	border-bottom-right-radius: 0px;
	-moz-border-radius-bottomleft: 0px;
	-webkit-border-bottom-left-radius: 0px;
	border-bottom-left-radius: 0px;
}

#stacks_in_2665149 #content {
	font-size: 12px;
	line-height: 14px;
}

#stacks_in_2665149 {
	margin: 0px 0px 10px 0px;
}
	
	/* start image list from doobox css */
	
	
	#stacks_in_2665150 .stacks_in_2665150imagelist {
		position: relative;
		list-style: none;
		list-style-type: none;
		margin:2px 0;
		
		z-index:1;
	}
	
	#stacks_in_2665150 .stacks_in_2665150listIcon {
		position: relative;
		float:left;
		z-index: 2;
	}
	
	#stacks_in_2665150 .stacks_in_2665150listIcon img{
		width:16px;
		height: auto;
	}
	
	
	#stacks_in_2665150 .stacks_in_2665150listTitle {

		margin-left:26px;
		padding-bottom: 0px;
		
		font-size: 100%;
	}
	
	
	#stacks_in_2665150 .stacks_in_2665150listContent {
		display: none;
		margin-left:26px;
		padding-top: 0px;
		padding-bottom: 18px;
	}
	
	.stacks_in_2665150breaker{
		margin: 0;
		padding: 0;
		height: 1px;
		clear: both;
	}
	
	
	/* end image list from doobox css */
	
#stacks_in_2665150 {
	margin: 0px 14px 0px 24px;
}
#stacks_in_2665157 .onthelineouterspace
{
display:block;
padding: 2px 0px 2px 0px;
}
#stacks_in_2665157 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:2px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#C8B7D3; 
font-size:1%;
-webkit-box-shadow: 0px 0px 1px #CCCCCC;
-moz-box-shadow: 0px 0px 1px #CCCCCC;
box-shadow: 0px 0px 1px #CCCCCC;
opacity:1;

/*CustomCSS;*/
}


#stacks_in_2665157 {
	margin: 10px 20px 0px 0px;
}

#stacks_in_2665158 {
	margin: 10px 0px 6px 4px;
}
#stacks_in_2665163 .onthelineouterspace
{
display:block;
padding: 2px 0px 2px 0px;
}
#stacks_in_2665163 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:2px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#C8B7D3; 
font-size:1%;
-webkit-box-shadow: 0px 0px 1px #CCCCCC;
-moz-box-shadow: 0px 0px 1px #CCCCCC;
box-shadow: 0px 0px 1px #CCCCCC;
opacity:1;

/*CustomCSS;*/
}


#stacks_in_2665163 {
	margin: 10px 20px 0px 0px;
}

#stacks_in_2665164 {
	margin: 14px 0px 6px 0px;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Styler Stack' 
Style Sheet: fsrstyler.css Style Sheet
Created: 26, September 2012
Last Modified: 22, April 2014
Author: Charlie Lockhart/Blueball Design LLC
www.blueballdesign.com
Copyright 2012-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2665169_1 {
	font-size: 0.90em;
	color: #000000;
	line-height: 1.30em;
}

#stacks_in_2665169_1 p {
	font-size: 0.90em;
	color: ##000000;
	line-height: 1.30em;
}

#stacks_in_2665169_1 a:link  {
	color: #0000FF;
	text-decoration: underline;
}

#stacks_in_2665169_1 a:visited {
	color: #800080;
	text-decoration: underline;
}

#stacks_in_2665169_1 a:hover {
	color: #FF0000;
	text-decoration: none;
}

#stacks_in_2665169_1  a:active  {
	color: #0000FF;
	text-decoration: underline;
}

#stacks_in_2665169_1 h1 {
	color: #000000;
	font-size: 2.30em;
	line-height: 1.00em;
}

#stacks_in_2665169_1 h2 {
	color: #000000;
	font-size: 2.00em;
	line-height: 1.00em;
}

#stacks_in_2665169_1 h3 {
	color: #000000;
	font-size: 1.60em;
	line-height: 1.00em;
}

#stacks_in_2665169_1 h4 {
	color: #000000;
	font-size: 1.40em;
	line-height: 1.00em;
}

#stacks_in_2665169_1 h5 {
	color: #000000;
	font-size: 1.20em;
	line-height: 1.00em;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 600px) {
	
#stacks_in_2665169_1 {
	font-size: 0.90em;
	line-height: 1.20em;
}

#stacks_in_2665169_1 p {
	font-size: 0.90em;
	line-height: 1.20em;
}

#stacks_in_2665169_1 h1 {
	font-size: 2.30em;
	line-height: 1.20em;
}

#stacks_in_2665169_1 h2 {
	font-size: 2.00em;
	line-height: 1.20em;
}

#stacks_in_2665169_1 h3 {
	font-size: 1.60em;
	line-height: 1.20em;
}

#stacks_in_2665169_1 h4 {
	font-size: 1.40em;
	line-height: 1.20em;
}

#stacks_in_2665169_1 h5 {
	font-size: 1.20em;
	line-height: 1.20em;
}

}
#stacks_in_2665169_2 {
	margin: 4px 5px 0px 3px;
}
#stacks_in_2665170 .onthelineouterspace
{
display:block;
padding: 2px 0px 2px 0px;
}
#stacks_in_2665170 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:2px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#CCCCCC; 
font-size:1%;
-webkit-box-shadow: 0px 0px 1px #CCCCCC;
-moz-box-shadow: 0px 0px 1px #CCCCCC;
box-shadow: 0px 0px 1px #CCCCCC;
opacity:1;

/*CustomCSS;*/
}


#stacks_in_2665170 {
	margin: 10px 0px 0px 0px;
}



#stacks_in_2665375 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_2665376 {
	margin: 0px 2px 0px 2px;
	padding: 0px 0px 0px 20px;
}

#stacks_in_2665378 {
	margin: 0px 0px 4px 4px;
}
#stacks_in_2665384 .onthelineouterspace
{
display:block;
padding: 2px 0px 2px 0px;
}
#stacks_in_2665384 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:2px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#C8B7D3; 
font-size:1%;
-webkit-box-shadow: 0px 0px 1px #CCCCCC;
-moz-box-shadow: 0px 0px 1px #CCCCCC;
box-shadow: 0px 0px 1px #CCCCCC;
opacity:1;

/*CustomCSS;*/
}


#stacks_in_2665384 {
	margin: 10px 20px 0px 0px;
}

#stacks_in_2665385 {
	margin: 10px 0px 4px 4px;
}
#stacks_in_2665390 .onthelineouterspace
{
display:block;
padding: 2px 0px 2px 0px;
}
#stacks_in_2665390 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:2px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#C8B7D3; 
font-size:1%;
-webkit-box-shadow: 0px 0px 1px #CCCCCC;
-moz-box-shadow: 0px 0px 1px #CCCCCC;
box-shadow: 0px 0px 1px #CCCCCC;
opacity:1;

/*CustomCSS;*/
}


#stacks_in_2665390 {
	margin: 10px 20px 0px 0px;
}

#stacks_in_2665391 {
	margin: 0px 0px 4px 4px;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks' fscontent.css Style Sheet
Created: 17, January, 2011
Last Modified: 20, April, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2010-2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2665393 {
	-moz-border-radius-topright: 0px;
	-webkit-border-top-right-radius: 0px;
	border-top-right-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-webkit-border-top-left-radius: 0px;
	border-top-left-radius: 0px;
	-moz-border-radius-bottomright: 0px;
	-webkit-border-bottom-right-radius: 0px;
	border-bottom-right-radius: 0px;
	-moz-border-radius-bottomleft: 0px;
	-webkit-border-bottom-left-radius: 0px;
	border-bottom-left-radius: 0px;
}

#stacks_in_2665393 #content {
	font-size: 12px;
	line-height: 14px;
}

#stacks_in_2665393 {
	margin: 0px 0px 10px 0px;
}
	
	/* start image list from doobox css */
	
	
	#stacks_in_2665394 .stacks_in_2665394imagelist {
		position: relative;
		list-style: none;
		list-style-type: none;
		margin:2px 0;
		
		z-index:1;
	}
	
	#stacks_in_2665394 .stacks_in_2665394listIcon {
		position: relative;
		float:left;
		z-index: 2;
	}
	
	#stacks_in_2665394 .stacks_in_2665394listIcon img{
		width:16px;
		height: auto;
	}
	
	
	#stacks_in_2665394 .stacks_in_2665394listTitle {

		margin-left:26px;
		padding-bottom: 0px;
		
		font-size: 100%;
	}
	
	
	#stacks_in_2665394 .stacks_in_2665394listContent {
		display: none;
		margin-left:26px;
		padding-top: 0px;
		padding-bottom: 18px;
	}
	
	.stacks_in_2665394breaker{
		margin: 0;
		padding: 0;
		height: 1px;
		clear: both;
	}
	
	
	/* end image list from doobox css */
	
#stacks_in_2665394 {
	margin: 0px 14px 0px 24px;
}
#stacks_in_2665403 .onthelineouterspace
{
display:block;
padding: 2px 0px 2px 0px;
}
#stacks_in_2665403 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:2px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#C8B7D3; 
font-size:1%;
-webkit-box-shadow: 0px 0px 1px #CCCCCC;
-moz-box-shadow: 0px 0px 1px #CCCCCC;
box-shadow: 0px 0px 1px #CCCCCC;
opacity:1;

/*CustomCSS;*/
}


#stacks_in_2665403 {
	margin: 10px 20px 0px 0px;
}

#stacks_in_2665404 {
	margin: 10px 0px 6px 4px;
}
#stacks_in_2665409 .onthelineouterspace
{
display:block;
padding: 2px 0px 2px 0px;
}
#stacks_in_2665409 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:2px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#C8B7D3; 
font-size:1%;
-webkit-box-shadow: 0px 0px 1px #CCCCCC;
-moz-box-shadow: 0px 0px 1px #CCCCCC;
box-shadow: 0px 0px 1px #CCCCCC;
opacity:1;

/*CustomCSS;*/
}


#stacks_in_2665409 {
	margin: 10px 20px 0px 0px;
}

#stacks_in_2665410 {
	margin: 14px 0px 6px 0px;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Styler Stack' 
Style Sheet: fsrstyler.css Style Sheet
Created: 26, September 2012
Last Modified: 22, April 2014
Author: Charlie Lockhart/Blueball Design LLC
www.blueballdesign.com
Copyright 2012-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2665415_1 {
	font-size: 0.90em;
	color: #000000;
	line-height: 1.30em;
}

#stacks_in_2665415_1 p {
	font-size: 0.90em;
	color: ##000000;
	line-height: 1.30em;
}

#stacks_in_2665415_1 a:link  {
	color: #0000FF;
	text-decoration: underline;
}

#stacks_in_2665415_1 a:visited {
	color: #800080;
	text-decoration: underline;
}

#stacks_in_2665415_1 a:hover {
	color: #FF0000;
	text-decoration: none;
}

#stacks_in_2665415_1  a:active  {
	color: #0000FF;
	text-decoration: underline;
}

#stacks_in_2665415_1 h1 {
	color: #000000;
	font-size: 2.30em;
	line-height: 1.00em;
}

#stacks_in_2665415_1 h2 {
	color: #000000;
	font-size: 2.00em;
	line-height: 1.00em;
}

#stacks_in_2665415_1 h3 {
	color: #000000;
	font-size: 1.60em;
	line-height: 1.00em;
}

#stacks_in_2665415_1 h4 {
	color: #000000;
	font-size: 1.40em;
	line-height: 1.00em;
}

#stacks_in_2665415_1 h5 {
	color: #000000;
	font-size: 1.20em;
	line-height: 1.00em;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 600px) {
	
#stacks_in_2665415_1 {
	font-size: 0.90em;
	line-height: 1.20em;
}

#stacks_in_2665415_1 p {
	font-size: 0.90em;
	line-height: 1.20em;
}

#stacks_in_2665415_1 h1 {
	font-size: 2.30em;
	line-height: 1.20em;
}

#stacks_in_2665415_1 h2 {
	font-size: 2.00em;
	line-height: 1.20em;
}

#stacks_in_2665415_1 h3 {
	font-size: 1.60em;
	line-height: 1.20em;
}

#stacks_in_2665415_1 h4 {
	font-size: 1.40em;
	line-height: 1.20em;
}

#stacks_in_2665415_1 h5 {
	font-size: 1.20em;
	line-height: 1.20em;
}

}
#stacks_in_2665415_2 {
	margin: 4px 5px 0px 3px;
}
#stacks_in_2665416 .onthelineouterspace
{
display:block;
padding: 2px 0px 2px 0px;
}
#stacks_in_2665416 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:2px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#CCCCCC; 
font-size:1%;
-webkit-box-shadow: 0px 0px 1px #CCCCCC;
-moz-box-shadow: 0px 0px 1px #CCCCCC;
box-shadow: 0px 0px 1px #CCCCCC;
opacity:1;

/*CustomCSS;*/
}


#stacks_in_2665416 {
	margin: 10px 0px 0px 0px;
}

#stacks_in_2665171 {
	padding: 0px 0px 0px 15px;
}

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

#stacks_in_2665179 {
	background-color: rgba(255, 255, 255, 1.00);
}

#stacks_in_2665180 {
	margin: 4px 10px 6px 0px;
}
.nivo-lightbox-theme-default.nivo-lightbox-overlay {
	
	background: rgba(0, 0, 0, .70);
	
	
	
}

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

.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;
}




/* No background */
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-ajax,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-inline {
	background: none;
}


















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

.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, 1.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 200ms 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_2665183 {
	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_2665183 #topBoxTriggerstacks_in_2665183 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 10;
}


#topBoxTriggerRegionstacks_in_2665183 #topBoxTriggerContentstacks_in_2665183 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_2665183 #topBoxTriggerContentstacks_in_2665183 img {
	display: block;
	margin: 0 auto;
}

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

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

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

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

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

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

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

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

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



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


#topBoxContentWrapperstacks_in_2665183 {
	display: none;
}







/*
-------------------------------------------
File: 'Blueball FreeStacks' fsstyler.css Style Sheet
Created: 17, January, 2011
Last Modified: 09, July, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2010-2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2665184 {
	-moz-border-radius-topright: 0px;
	-webkit-border-top-right-radius: 0px;
	border-top-right-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-webkit-border-top-left-radius: 0px;
	border-top-left-radius: 0px;
	-moz-border-radius-bottomright: 0px;
	-webkit-border-bottom-right-radius: 0px;
	border-bottom-right-radius: 0px;
	-moz-border-radius-bottomleft: 0px;
	-webkit-border-bottom-left-radius: 0px;
	border-bottom-left-radius: 0px;
	font-size: 12px;
	color: #0033CC;
	line-height: 14px;
}

#stacks_in_2665184 p {
	font-size: 12px;
	color: ##0033CC;
	line-height: 14px;
}

#stacks_in_2665184  a:link, #stacks_in_2665184  a:active  {
	color: #0033CC;
	text-decoration: underline;
}

#stacks_in_2665184 a:visited {
	color: #0033CC;
	text-decoration: underline;
}

#stacks_in_2665184 a:hover {
	color: #000000;
	text-decoration: none;
}

#stacks_in_2665184 h1 {
	color: #CD180D;
}

#stacks_in_2665184 h2 {
	color: #CD180D;
}

#stacks_in_2665184 h3 {
	color: #CD180D;
}

#stacks_in_2665184 h4 {
	color: #CD180D;
}

#stacks_in_2665184 h5 {
	color: #CD180D;
}

#stacks_in_2665184 {
	margin: 1px 0px 10px 10px;
}

#stacks_out_2665185 {
	margin-left:0;
}
/*
-------------------------------------------
File: 'Blueball FreeStack Responsive Image URL Stack' 
Style Sheet: fsrimageurl.css
Created: 05, June, 2014
Last Modified: 08, August, 2014
Author: Charlie Lockhart/Blueball Design LLC
www.blueballdesign.com
Copyright 2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2665433 {
	
}

#stacks_in_2665433 #stacks_in_2665433_image #editmessage {
	position: absolute; 
	top: 0; 
	left: 0;
	visibility: visible;
	display: block;
	width: 100%; 
	height: 38px;
	margin: 0 auto; 
	padding: 8px 12px 0 12px; 
	color: #ffffff; 
	font-size: 14px; 
	line-height: 18px; 
	text-align: center; 
	font-weight: bold; 
	background-color: rgba(0, 0, 0, 0.66);
}

#stacks_in_2665433 #stacks_in_2665433_image {
		display: block;
		text-align: center;
}

#stacks_in_2665433 #stacks_in_2665433_image img {
	max-width: 100% !important;
	height: auto !important;
	min-height: 38px;
	padding: 0;
	margin: 0 auto;
	border: 0px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 768px) {
	
	#stacks_in_2665433 #stacks_in_2665433_image {
		display: block;
		text-align: center;
}

#stacks_in_2665433 #stacks_in_2665433_image img {
	max-width: 75% !important;
	min-width: 40% !important;
	height: auto !important;
}

}


#stacks_in_2665192 {
	
	
	
	
	
	 text-align: ;
}



/*
-------------------------------------------
File: 'Blueball FreeStacks' fscontent.css Style Sheet
Created: 17, January, 2011
Last Modified: 20, April, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2010-2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2665193 {
	-moz-border-radius-topright: 0px;
	-webkit-border-top-right-radius: 0px;
	border-top-right-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-webkit-border-top-left-radius: 0px;
	border-top-left-radius: 0px;
	-moz-border-radius-bottomright: 0px;
	-webkit-border-bottom-right-radius: 0px;
	border-bottom-right-radius: 0px;
	-moz-border-radius-bottomleft: 0px;
	-webkit-border-bottom-left-radius: 0px;
	border-bottom-left-radius: 0px;
}

#stacks_in_2665193 #content {
	font-size: 12px;
	line-height: 16px;
}

#stacks_in_2665193 {
	-moz-border-radius:  8px;
	-webkit-border-radius:  8px;
	border-radius:  8px;
	margin: 0px 0px 6px 0px;
	padding: 0px 15px 0px 0px;
}



#stacks_in_2665199 {
	
	
	
	
	
	 text-align: ;
}



/*
-------------------------------------------
File: 'Blueball FreeStacks' fscontent.css Style Sheet
Created: 17, January, 2011
Last Modified: 20, April, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2010-2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2665200 {
	-moz-border-radius-topright: 0px;
	-webkit-border-top-right-radius: 0px;
	border-top-right-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-webkit-border-top-left-radius: 0px;
	border-top-left-radius: 0px;
	-moz-border-radius-bottomright: 0px;
	-webkit-border-bottom-right-radius: 0px;
	border-bottom-right-radius: 0px;
	-moz-border-radius-bottomleft: 0px;
	-webkit-border-bottom-left-radius: 0px;
	border-bottom-left-radius: 0px;
}

#stacks_in_2665200 #content {
	font-size: 12px;
	line-height: 16px;
}

#stacks_in_2665200 {
	-moz-border-radius:  8px;
	-webkit-border-radius:  8px;
	border-radius:  8px;
	margin: 0px 0px 6px 0px;
	padding: 0px 15px 0px 0px;
}



#stacks_in_2665208 {
	
	
	
	
	
	 text-align: ;
}



/*
-------------------------------------------
File: 'Blueball FreeStacks' fscontent.css Style Sheet
Created: 17, January, 2011
Last Modified: 20, April, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2010-2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2665209 {
	-moz-border-radius-topright: 0px;
	-webkit-border-top-right-radius: 0px;
	border-top-right-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-webkit-border-top-left-radius: 0px;
	border-top-left-radius: 0px;
	-moz-border-radius-bottomright: 0px;
	-webkit-border-bottom-right-radius: 0px;
	border-bottom-right-radius: 0px;
	-moz-border-radius-bottomleft: 0px;
	-webkit-border-bottom-left-radius: 0px;
	border-bottom-left-radius: 0px;
}

#stacks_in_2665209 #content {
	font-size: 12px;
	line-height: 16px;
}

#stacks_in_2665209 {
	-moz-border-radius:  8px;
	-webkit-border-radius:  8px;
	border-radius:  8px;
	margin: 0px 0px 6px 0px;
	padding: 0px 15px 0px 0px;
}



#stacks_in_2665217 {
	
	
	
	
	
	 text-align: ;
}



/*
-------------------------------------------
File: 'Blueball FreeStacks' fscontent.css Style Sheet
Created: 17, January, 2011
Last Modified: 20, April, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2010-2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2665218 {
	-moz-border-radius-topright: 0px;
	-webkit-border-top-right-radius: 0px;
	border-top-right-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-webkit-border-top-left-radius: 0px;
	border-top-left-radius: 0px;
	-moz-border-radius-bottomright: 0px;
	-webkit-border-bottom-right-radius: 0px;
	border-bottom-right-radius: 0px;
	-moz-border-radius-bottomleft: 0px;
	-webkit-border-bottom-left-radius: 0px;
	border-bottom-left-radius: 0px;
}

#stacks_in_2665218 #content {
	font-size: 12px;
	line-height: 16px;
}

#stacks_in_2665218 {
	-moz-border-radius:  8px;
	-webkit-border-radius:  8px;
	border-radius:  8px;
	margin: 0px 0px 6px 0px;
	padding: 0px 15px 0px 0px;
}



#stacks_in_2665226 {
	
	
	
	
	
	 text-align: ;
}



/*
-------------------------------------------
File: 'Blueball FreeStacks' fscontent.css Style Sheet
Created: 17, January, 2011
Last Modified: 20, April, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2010-2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2665227 {
	-moz-border-radius-topright: 0px;
	-webkit-border-top-right-radius: 0px;
	border-top-right-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-webkit-border-top-left-radius: 0px;
	border-top-left-radius: 0px;
	-moz-border-radius-bottomright: 0px;
	-webkit-border-bottom-right-radius: 0px;
	border-bottom-right-radius: 0px;
	-moz-border-radius-bottomleft: 0px;
	-webkit-border-bottom-left-radius: 0px;
	border-bottom-left-radius: 0px;
}

#stacks_in_2665227 #content {
	font-size: 12px;
	line-height: 16px;
}

#stacks_in_2665227 {
	-moz-border-radius:  8px;
	-webkit-border-radius:  8px;
	border-radius:  8px;
	margin: 0px 0px 6px 0px;
	padding: 0px 15px 0px 0px;
}



#stacks_in_2665235 {
	
	
	
	
	
	 text-align: ;
}



/*
-------------------------------------------
File: 'Blueball FreeStacks' fscontent.css Style Sheet
Created: 17, January, 2011
Last Modified: 20, April, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2010-2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2665236 {
	-moz-border-radius-topright: 0px;
	-webkit-border-top-right-radius: 0px;
	border-top-right-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-webkit-border-top-left-radius: 0px;
	border-top-left-radius: 0px;
	-moz-border-radius-bottomright: 0px;
	-webkit-border-bottom-right-radius: 0px;
	border-bottom-right-radius: 0px;
	-moz-border-radius-bottomleft: 0px;
	-webkit-border-bottom-left-radius: 0px;
	border-bottom-left-radius: 0px;
}

#stacks_in_2665236 #content {
	font-size: 12px;
	line-height: 16px;
}

#stacks_in_2665236 {
	-moz-border-radius:  8px;
	-webkit-border-radius:  8px;
	border-radius:  8px;
	margin: 0px 0px 6px 0px;
	padding: 0px 15px 0px 0px;
}



#stacks_in_2665417 {
	
	
	
	
	
	 text-align: ;
}



/*
-------------------------------------------
File: 'Blueball FreeStacks' fscontent.css Style Sheet
Created: 17, January, 2011
Last Modified: 20, April, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2010-2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2665418 {
	-moz-border-radius-topright: 0px;
	-webkit-border-top-right-radius: 0px;
	border-top-right-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-webkit-border-top-left-radius: 0px;
	border-top-left-radius: 0px;
	-moz-border-radius-bottomright: 0px;
	-webkit-border-bottom-right-radius: 0px;
	border-bottom-right-radius: 0px;
	-moz-border-radius-bottomleft: 0px;
	-webkit-border-bottom-left-radius: 0px;
	border-bottom-left-radius: 0px;
}

#stacks_in_2665418 #content {
	font-size: 12px;
	line-height: 16px;
}

#stacks_in_2665418 {
	-moz-border-radius:  8px;
	-webkit-border-radius:  8px;
	border-radius:  8px;
	margin: 0px 0px 6px 0px;
	padding: 0px 15px 0px 0px;
}

#stacks_in_2665244 {
	margin: 4px 18px 0px 0px;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks' fscontent.css Style Sheet
Created: 17, January, 2011
Last Modified: 20, April, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2010-2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2665246 {
	-moz-border-radius-topright: 0px;
	-webkit-border-top-right-radius: 0px;
	border-top-right-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-webkit-border-top-left-radius: 0px;
	border-top-left-radius: 0px;
	-moz-border-radius-bottomright: 0px;
	-webkit-border-bottom-right-radius: 0px;
	border-bottom-right-radius: 0px;
	-moz-border-radius-bottomleft: 0px;
	-webkit-border-bottom-left-radius: 0px;
	border-bottom-left-radius: 0px;
}

#stacks_in_2665246 #content {
	font-size: 10px;
	line-height: 12px;
}

#stacks_in_2665246 {
	margin: 10px 0px 20px 0px;
}

#stacks_in_2665247 {
	margin: 0px 10px 0px 0px;
}


.cluetip-stacks_in_2664055_1 .cluetip-outer {
	position: relative;
	margin:  0 ;
	background-color: #FFFFFF;
	color: #333333;
	border: 1px solid #0066FF;
}
.cluetip-stacks_in_2664055_1 .cluetip-inner a:link {
	background: none !important;
}
.cluetip-stacks_in_2664055_1 .cluetip-inner {
	padding: 10px;
	text-align: left;
	font-size: 90%;
}
div.cluetip-stacks_in_2664055_1 .cluetip-arrows {
	display: none;
	position: absolute;
	top: 0;
	left: -11px;
	width:0px;
	font-size:0;
	line-height:0%;
	border-color: #0066FF;
	border-style: solid;
}
div.clue-right-stacks_in_2664055_1 .cluetip-arrows {
	border-width: 11px 11px 11px 0;
	border-top-color: transparent;
	border-bottom-color: transparent;
}
div.clue-left-stacks_in_2664055_1 .cluetip-arrows {
	border-width: 11px 0 11px 11px;
	border-top-color: transparent;
	border-bottom-color: transparent;
	left: 100%;
}
div.clue-top-stacks_in_2664055_1 .cluetip-arrows {
	border-width: 11px 11px 0 11px;
	border-left-color: transparent;
	border-right-color: transparent;
	top: 100%;
	left: 50%;
	margin-left: -11px;
}
div.clue-bottom-stacks_in_2664055_1 .cluetip-arrows {
	border-width: 0 11px 11px 11px;
	border-left-color: transparent;
	border-right-color: transparent;
	top: -11px;
	left: 50%;
	margin-left: -11px;
}
.cluetip-stacks_in_2664055_1 .cluetip-title {}
.cluetip-stacks_in_2664055_1 .cluetip-close {
	text-align: right !important;
}
.cluetip-stacks_in_2664055_1 .cluetip-close img {
 	border: 0;
}
.cluetip-stacks_in_2664055_1 .cluetip-close a {
	color: #000000;
	font-size: 100%; 
	font-variant: normal;
	font-weight: normal;
	font-style: normal;
}
.cluetip-stacks_in_2664055_1 .cluetip-close a:hover {
	color: #0066FF; 
}
#cluetip-waitimage {
    width: 43px;
    height: 11px;
    position: absolute;
    background-image: url('../files/images/wait.gif');
}
.cluetip-stacks_in_2664055_1 .cluetip-extra {
	display: none;
}
.cluetip-stacks_in_2664055_1 .cluetip-inner img.layer {
	position: absolute;
	width:100%; height:100%;
	top:0;left:0;
	display:none;
}

#stacks_in_30698 {
	padding: 6px 20px 10px 20px;
}

#stacks_in_13450 {
	margin: 0px 0px 10px 0px;
}
 #caption_stacks_in_1575381{color:#000000} #caption_stacks_in_1575381{text-align:center;margin-top:10px;font-size:14px;font-weight:normal}

#stacks_in_1575381 {
	margin: 20px 20px 0px 20px;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive 2 Column Stack' 
Style Sheet: fsr2columns.css Style Sheet
Created: 29, December 2012
Last Modified: 17, April 2014
Author: Blueball Design, Charlie Lockhart
www.blueballdesign.com
Copyright 2012-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2664031 #fsr_colwrap_stacks_in_2664031 {
	width: 100%;
	vertical-align: top;
	margin: 0;
	padding: 0;
	overflow: auto;
}

#stacks_in_2664031 #fsr_colwrap_stacks_in_2664031 #fsr_leftcol_stacks_in_2664031 {
	float: left;
	display: block;
	width: 40%;
	height: auto;
	margin: 0;
}

#stacks_in_2664031 #fsr_colwrap_stacks_in_2664031 #fsr_leftcol_stacks_in_2664031 .leftcolpad_stacks_in_2664031 {
	padding: 32px 11px 0px 11px;
}

#stacks_in_2664031 #fsr_colwrap_stacks_in_2664031 #fsr_rightcol_stacks_in_2664031 {
	float: right;
	display: block;
	width: 60%;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_2664031 #fsr_colwrap_stacks_in_2664031 #fsr_rightcol_stacks_in_2664031 .rightcolpad_stacks_in_2664031 {
	padding: 32px 11px 0px 11px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

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

#stacks_in_2664031 #fsr_colwrap_stacks_in_2664031 #fsr_leftcol_stacks_in_2664031 {
	display: block;
	float: left;
	width: 100% !important;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_2664031 #fsr_colwrap_stacks_in_2664031 #fsr_leftcol_stacks_in_2664031 .leftcolpad_stacks_in_2664031 {
	padding: 11px 0px 0px 0px;
}

#stacks_in_2664031 #fsr_colwrap_stacks_in_2664031 #fsr_rightcol_stacks_in_2664031 {
	display: block;
	float: left;
	width: 100% !important;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_2664031 #fsr_colwrap_stacks_in_2664031 #fsr_rightcol_stacks_in_2664031 .rightcolpad_stacks_in_2664031 {
	padding: 11px 0px 0px 0px;
}

}.featherlight-content {
	overflow: visible !important;
	border-radius: 0px;
}

.featherlight-content img {
	border-radius: 0px;
	overflow: hidden;
}

img.readyToLiteBox {
	cursor: pointer;
}



/*  */

/**
 * Featherlight – ultra slim jQuery lightbox
 * Version 1.4.0 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2016, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
@media all {
	.featherlight {
		display: none;

		/* dimensions: spanning the background from edge to edge */
		position:fixed;
		top: 0; right: 0; bottom: 0; left: 0;
		z-index: 2147483647; /* z-index needs to be >= elements on the site. */

		/* position: centering content */
		text-align: center;

		/* insures that the ::before pseudo element doesn't force wrap with fixed width content; */
		white-space: nowrap;

		/* styling */
		cursor: pointer;
		background: #333;
		/* IE8 "hack" for nested featherlights */
		background: rgba(0, 0, 0, 0);
	}

	/* support for nested featherlights. Does not work in IE8 (use JS to fix) */
	.featherlight:last-of-type {
		background: rgba(0, 0, 0, 0.90);
	}

	.featherlight:before {
		/* position: trick to center content vertically */
		content: '';
		display: inline-block;
		height: 100%;
		vertical-align: middle;
		margin-right: -0.25em;
	}

	.featherlight .featherlight-content {
		/* make content container for positioned elements (close button) */
		position: relative;

		/* position: centering vertical and horizontal */
		text-align: left;
		vertical-align: middle;
		display: inline-block;

		/* dimensions: cut off images */
		overflow: auto;
		padding: 0;
		border-bottom: 0px solid transparent;

		/* dimensions: handling large content */
		margin-left: 5%;
		margin-right: 5%;
		max-height: 95%;

		/* styling */
		background: #fff;
		cursor: auto;

		/* reset white-space wrapping */
		white-space: normal;
	}

	/* contains the content */
	.featherlight .featherlight-inner {
		/* make sure its visible */
		display: block;
	}

	.featherlight .featherlight-close-icon {
		/* position: centering vertical and horizontal */
		position: absolute;
		z-index: 9999;
		top: 0px;
		right: 0px;
		line-height: 50px;
		font-size: 18px;
		width: 50px;
		cursor: pointer;
		text-align: center;
		font-family: Arial, sans-serif;
		background: rgba(0, 0, 0, 0.60);
		color: rgba(255, 255, 255, 1.00);
		overflow: hidden;
		border-radius: 0px;
	}


	.featherlight .featherlight-image {
		/* styling */
		width: 100%;
	}


	.featherlight-iframe .featherlight-content {
		/* removed the border for image croping since iframe is edge to edge */
		border-bottom: 0;
		padding: 0;
	}

	.featherlight iframe {
		/* styling */
		border: none;
	}
}

/* handling phones and small screens */
@media only screen and (max-width: 1024px) {
	.featherlight .featherlight-content {
		/* dimensions: maximize lightbox with for small screens */
		margin-left: 20px;
		margin-right: 20px;
		max-height: 98%;

		padding: 0;
		border-bottom: 0px solid transparent;
	}
}

#stacks_in_2664032 {
	border: solid rgba(204, 204, 204, 1.00);
	border-width:  1px;
}

#stacks_in_476 {
	margin:  2px;
	padding:  5px;
}

#stacks_in_2664036 {
	margin: 4px 0px 0px 0px;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Reposition Alt Stack' 
Style Sheet: fsrrepositionalt.css Style Sheet
Created: 26, August 2013
Last Modified: 03, June 2014
Author: Blueball Design LLC/Charlie Lockhart
http://freestackresponsive.blueballdesign.com
Copyright 2013-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2664039 {
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 20px 0px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 600px) {
	
#stacks_in_2664039 { 
    padding: 0px 0px 0px 0px;
    margin: 3px 10px 10px 10px;
}
}
#audioPlayerContainerstacks_in_2664040 {
	position: relative;
	z-index: 1;
}

#audioPlayerContainerstacks_in_2664040,
#audioPlayerContainerstacks_in_2664040:before,
#audioPlayerContainerstacks_in_2664040:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#audioPlayerstacks_in_2664040 {
	width: 100%;
	display: block;
	position: relative;
	z-index: 2;
}

#audioPlayerControlsstacks_in_2664040 {
	position: relative;
	z-index: 5;
	overflow: hidden;
	border-radius: 5px;
}

#audioPlayerControlsstacks_in_2664040 [class^="fa fa-"] {
	color: rgba(0, 102, 255, 1.00);
}






/* Solid colour fill */
#audioPlayerControlsstacks_in_2664040 {
	background: #DCDCDC;
}


















#audioPlayerControlsWrapperstacks_in_2664040 {
	display: flex;
	position: relative;
	z-index: 2;
}

#audioPlayerControlsstacks_in_2664040 button {
	background: none;
	border: 0;
	outline: none;
	color: #ffffff;
	display: inline-block;
	text-align: center;
	width: 30px;
	padding: 0;
	margin: 0;
	height: 30px;
	line-height: 30px;
	font-size: 14px;
	cursor: pointer;
}

button:hover {
	cursor: pointer;
}

#audioPlayerControlsstacks_in_2664040 #audioPlayerPlayPausestacks_in_2664040 {
	display: inline-block;
}

#audioPlayerControlsstacks_in_2664040 #audioPlayerFullScreenstacks_in_2664040 {
	display: ;
}

.audioPlayerAudioTimingstacks_in_2664040 {
	display: inline-block;
	height: 30px;
	line-height: 30px;
	color: rgba(76, 76, 76, 1.00);
	padding: 0;
	text-align: center;
	font-size: 12px;
}

#audioPlayerCurrentTimestacks_in_2664040 {
	display: inline-block;
	width: 30px;
}

#audioPlayerDurationstacks_in_2664040 {
	display: inline-block;
	width: 30px;
}

#audioPlayerTimeDividerstacks_in_2664040 {
	display: inline-block;
	height: 30px;
	line-height: 30px;
	color: rgba(76, 76, 76, 1.00);
}





@media screen and (min-width: 568px) {
	#audioPlayerTimeDividerstacks_in_2664040 {
		display: none;
	}
}

#progressBarstacks_in_2664040 {
	display: none;
}

@media screen and (min-width: 568px) {
	#progressBarstacks_in_2664040 {
		flex: 1;
		padding-right: 15px;
		padding-left: 15px;
		height: 30px;
		line-height: 30px;
		vertical-align: middle;
		display: inline-block;
	}

	#audioPlayerSeekBarstacks_in_2664040[type=range] {
		-webkit-appearance: none;
		background: none;
		display: inline-block;
		width: 99%;
		height: 30px;
		line-height: 30px;
	}

	#audioPlayerSeekBarstacks_in_2664040[type=range]::-webkit-slider-runnable-track {
		height: 5px;
		background: #FFFFFF;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_2664040[type=range]::-webkit-slider-thumb {
		-webkit-appearance: none;
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #696969;
		margin-top: -5px;
	}

	#audioPlayerSeekBarstacks_in_2664040[type=range]:focus {
		outline: none;
	}

	#audioPlayerSeekBarstacks_in_2664040[type=range]:focus::-webkit-slider-runnable-track {
		background: #FFFFFF;
	}

	#audioPlayerSeekBarstacks_in_2664040[type=range]::-moz-range-track {
		width: 100%;
		height: 5px;
		background: #FFFFFF;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_2664040[type=range]::-moz-range-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #696969;
	}

	#audioPlayerSeekBarstacks_in_2664040[type=range]::-ms-track {
		width: 100%;
		height: 5px;
		background: #FFFFFF;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_2664040[type=range]::-ms-fill-lower {
		background: #FFFFFF;
		border-radius: 10px;
	}

	#audioPlayerSeekBarstacks_in_2664040[type=range]::-ms-fill-upper {
		background: #FFFFFF;
		border-radius: 10px;
	}

	#audioPlayerSeekBarstacks_in_2664040[type=range]::-ms-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #696969;
	}

	#audioPlayerSeekBarstacks_in_2664040[type=range]:focus::-ms-fill-lower {
		background: #FFFFFF;
	}

	#audioPlayerSeekBarstacks_in_2664040[type=range]:focus::-ms-fill-upper {
		background: #FFFFFF;
	}
}

#volumestacks_in_2664040 {
	display: none;
}

@media screen and (min-width: 768px) {
	#volumestacks_in_2664040 {
		display: none;
		max-width: 30px;
		width: 30px;
		line-height: 30px;
		height: 30px;
		transition: all ease-in-out 300ms;
		text-align: center;
		position: relative;
		overflow: hidden;
		font-size: 14px;
		vertical-align: middle;
	}

	#volumestacks_in_2664040 [class^="fa fa-"] {
		color: rgba(0, 102, 255, 1.00);
	}

	#volumestacks_in_2664040:hover {
		max-width: 150px;
		width: 150px;
		padding: 0px 15px;
	}

	#volumeButtonstacks_in_2664040 {
		display: inline-block;
		max-width: 30px;
		width: 30px;
		line-height: 30px;
		height: 30px;
		color: rgba(0, 102, 255, 1.00);
	}

	#volumestacks_in_2664040:hover #volumeButtonstacks_in_2664040 {
		display: none;
	}

	#volumeMinstacks_in_2664040 {
		position: absolute;
		left: 20px;
		top: 0;
		height: 30px;
		line-height: 30px;
		color: rgba(0, 102, 255, 1.00);
	}

	#volumeMaxstacks_in_2664040 {
		position: absolute;
		right: 15px;
		top: 0;
		height: 30px;
		line-height: 30px;
		color: rgba(0, 102, 255, 1.00);
	}

	#volume-barstacks_in_2664040[type=range],
	#volumeMinstacks_in_2664040,
	#volumeMaxstacks_in_2664040 {
		display: none;
	}

	#volumeMinstacks_in_2664040,
	#volumeMaxstacks_in_2664040 {
		cursor: pointer;
	}

	#volumestacks_in_2664040:hover #volume-barstacks_in_2664040,
	#volumestacks_in_2664040:hover #volumeMinstacks_in_2664040,
	#volumestacks_in_2664040:hover #volumeMaxstacks_in_2664040 {
		display: inline;
	}

	#volume-barstacks_in_2664040[type=range] {
		-webkit-appearance: none;
		background: none;
		width: 50%;
		text-align: center;
		line-height: 30px;
		height: 30px;
	}

	#volume-barstacks_in_2664040[type=range]::-webkit-slider-runnable-track {
		height: 5px;
		background: #FFFFFF;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_2664040[type=range]::-webkit-slider-thumb {
		-webkit-appearance: none;
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #696969;
		margin-top: -5px;
	}

	#volume-barstacks_in_2664040[type=range]:focus {
		outline: none;
	}

	#volume-barstacks_in_2664040[type=range]:focus::-webkit-slider-runnable-track {
		background: #FFFFFF;
	}

	#volume-barstacks_in_2664040[type=range]::-moz-range-track {
		width: 100%;
		height: 5px;
		background: #FFFFFF;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_2664040[type=range]::-moz-range-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #696969;
	}

	#volume-barstacks_in_2664040[type=range]::-ms-track {
		width: 100%;
		height: 5px;
		background: #FFFFFF;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_2664040[type=range]::-ms-fill-lower {
		background: #FFFFFF;
		border-radius: 10px;
	}

	#volume-barstacks_in_2664040[type=range]::-ms-fill-upper {
		background: #FFFFFF;
		border-radius: 10px;
	}

	#volume-barstacks_in_2664040[type=range]::-ms-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #696969;
	}

	#volume-barstacks_in_2664040[type=range]:focus::-ms-fill-lower {
		background: #FFFFFF;
	}

	#volume-barstacks_in_2664040[type=range]:focus::-ms-fill-upper {
		background: #FFFFFF;
	}
}

@media screen and (max-width: 569px) {
	#audioPlayerControlsstacks_in_2664040 #audioPlayerFullScreenstacks_in_2664040,
	#audioPlayerControlsstacks_in_2664040 #volumestacks_in_2664040 {
		display: none;
	}
}


/* -- Start Truedownload2 Each css Template -- */

#hiddenDownloader{
	display: none;
	height:0px !important;
	padding: 0px !important;
	margin: 0px !important;
}
#hiddenDownloader *{
	display: none;
	height:0px !important;
	padding: 0px !important;
	margin: 0px !important;
}

.stacks_in_2664043faicon{
	display: inline;
}


.stacks_in_2664043wrapper{
	text-align: left;
}

/* -- Style 1 -- */
.stacks_in_2664043td-style-1{
	
}

.stacks_in_2664043button{
	position: relative;
	display: inline-block;
	padding: 6px 12px;
	margin-bottom: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.42857143;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-image: none;
	background: rgba(0, 102, 255, 1.00);
	border: 1px solid transparent;
	border-radius: 4px;
	color: rgba(255, 255, 255, 1.00);
}

.stacks_in_2664043badge{
	position: relative;
	display: inline-block;
	min-width: 10px;
	padding: 3px 7px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	color: rgba(255, 255, 255, 1.00);
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	background-color: rgba(0, 153, 255, 1.00);
	border-radius: 10px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	top: -1px;
	margin-left: 2px;
}


.stacks_in_2664043counttext{
	display: none;
}

/* -- Style 2 -- */
.stacks_in_2664043td-style-2 .stacks_in_2664043button{
	padding: 10px 16px;
	font-size: 18px;
	line-height: 1.3333333;
	border-radius: 6px
}

/* -- Style 3 -- */
.stacks_in_2664043td-style-3{
	padding-top: 9px;
	padding-right: 8px;
}

.stacks_in_2664043td-style-3 .stacks_in_2664043button{
	padding: 10px 16px;
	font-size: 18px;
	line-height: 1.3333333;
	border-radius: 6px
}

.stacks_in_2664043td-style-3 .stacks_in_2664043badge{
	position: absolute;
	top: -8px;
	right: -9px;
	margin-left: 0;
}


.stacks_in_2664043badge{
	display: none;
}

/* -- End Button Styles -- */


/* -- End Truedownload2 Each css Template -- */
#stacks_in_2664043 {
	margin: 20px 0px 0px 0px;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Reposition Alt Stack' 
Style Sheet: fsrrepositionalt.css Style Sheet
Created: 26, August 2013
Last Modified: 03, June 2014
Author: Blueball Design LLC/Charlie Lockhart
http://freestackresponsive.blueballdesign.com
Copyright 2013-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_312105 {
	padding: 0px 0px 0px 0px;
	margin: 0px 10px 0px 0px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 768px) {
	
#stacks_in_312105 { 
    padding: 0% 0% 0% 0%;
    margin: 0% 0% 0% 0%;
}
}
/*
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-videos/
 * Support: support@1littledesigner.com
 * Version 2.4.1
 * Description: cleanVideo uses Chris Coyier's FitVids and tailors it for use in RapidWeaver
 */

#cleanVids_stacks_in_2177300.maxWidthOn {
	max-width: 100px !important;
}
#cleanVids_stacks_in_2177300 video {
    width: 100% !important;
    height: auto !important;
}

#stacks_in_312109 {
	background-color: rgba(240, 240, 240, 1.00);
}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive 2 Column Stack' 
Style Sheet: fsr2columns.css Style Sheet
Created: 29, December 2012
Last Modified: 17, April 2014
Author: Blueball Design, Charlie Lockhart
www.blueballdesign.com
Copyright 2012-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_312113 #fsr_colwrap_stacks_in_312113 {
	width: 100%;
	vertical-align: top;
	margin: 0;
	padding: 0;
	overflow: auto;
}

#stacks_in_312113 #fsr_colwrap_stacks_in_312113 #fsr_leftcol_stacks_in_312113 {
	float: left;
	display: block;
	width: 56%;
	height: auto;
	margin: 0;
}

#stacks_in_312113 #fsr_colwrap_stacks_in_312113 #fsr_leftcol_stacks_in_312113 .leftcolpad_stacks_in_312113 {
	padding: 0px 11px 11px 0px;
}

#stacks_in_312113 #fsr_colwrap_stacks_in_312113 #fsr_rightcol_stacks_in_312113 {
	float: right;
	display: block;
	width: 44%;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_312113 #fsr_colwrap_stacks_in_312113 #fsr_rightcol_stacks_in_312113 .rightcolpad_stacks_in_312113 {
	padding: 0px 11px 11px 0px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

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

#stacks_in_312113 #fsr_colwrap_stacks_in_312113 #fsr_leftcol_stacks_in_312113 {
	display: block;
	float: left;
	width: 100% !important;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_312113 #fsr_colwrap_stacks_in_312113 #fsr_leftcol_stacks_in_312113 .leftcolpad_stacks_in_312113 {
	padding: 0px 0px 0px 0px;
}

#stacks_in_312113 #fsr_colwrap_stacks_in_312113 #fsr_rightcol_stacks_in_312113 {
	display: block;
	float: left;
	width: 100% !important;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_312113 #fsr_colwrap_stacks_in_312113 #fsr_rightcol_stacks_in_312113 .rightcolpad_stacks_in_312113 {
	padding: 0px 0px 0px 0px;
}

}
#stacks_in_312111 {
	margin: 18px 10px 6px 20px;
}

#stacks_in_312115 {
	margin: 0px 20px 0px 20px;
}

#stacks_in_2664128 {
	background-color: rgba(255, 255, 255, 1.00);
	border: solid rgba(204, 204, 204, 1.00);
	border-width:  1px;
	-moz-border-radius:  6px;
	-webkit-border-radius:  6px;
	border-radius:  6px;
	margin: 10px 0px 0px 0px;
	padding: 10px 0px 10px 0px;
}

#stacks_in_2664169 {
	margin: 0px 10px 6px 20px;
}
/* @group Edit Mode Styling */

/*  */

/* @end *//*
-------------------------------------------
File: 'Blueball FreeStacks' fscontent.css Style Sheet
Created: 17, January, 2011
Last Modified: 20, April, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2010-2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2664126_5 {
	-moz-border-radius-topright: 0px;
	-webkit-border-top-right-radius: 0px;
	border-top-right-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-webkit-border-top-left-radius: 0px;
	border-top-left-radius: 0px;
	-moz-border-radius-bottomright: 0px;
	-webkit-border-bottom-right-radius: 0px;
	border-bottom-right-radius: 0px;
	-moz-border-radius-bottomleft: 0px;
	-webkit-border-bottom-left-radius: 0px;
	border-bottom-left-radius: 0px;
}

#stacks_in_2664126_5 #content {
	font-size: 11px;
	line-height: 11px;
}

#stacks_in_2664126_3 {
	margin: 0px 0px 2px 24px;
	padding: 0px 0px 2px 0px;
}

#stacks_in_2664126_10 {
	margin: 0px 20px 10px 20px;
}





















#rwml_switch_language_form_stacks_in_2664126_8 {
	text-align: left;
	
	
}








@media print {
	#switchContainerstacks_in_2664126_8 {
		display: none !important;
	}
}





#stacks_in_2664130 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_2664132 {
	background-color: rgba(255, 255, 255, 1.00);
	margin: 0px 2px 0px 2px;
	padding: 0px 0px 0px 20px;
}
#stacks_in_2664189 .onthelineouterspace
{
display:block;
padding: 2px 0px 2px 0px;
}
#stacks_in_2664189 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:2px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#C8B7D3; 
font-size:1%;
-webkit-box-shadow: 0px 0px 1px #CCCCCC;
-moz-box-shadow: 0px 0px 1px #CCCCCC;
box-shadow: 0px 0px 1px #CCCCCC;
opacity:1;

/*CustomCSS;*/
}


#stacks_in_2664189 {
	margin: 10px 20px 0px 0px;
}

#stacks_in_2664173 {
	margin: 10px 0px 0px 0px;
}



#stacks_in_2664150 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_2664179 {
	margin: 0px 2px 0px 2px;
	padding: 0px 0px 0px 20px;
}
#stacks_in_2664190 .onthelineouterspace
{
display:block;
padding: 2px 0px 2px 0px;
}
#stacks_in_2664190 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:2px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#C8B7D3; 
font-size:1%;
-webkit-box-shadow: 0px 0px 1px #CCCCCC;
-moz-box-shadow: 0px 0px 1px #CCCCCC;
box-shadow: 0px 0px 1px #CCCCCC;
opacity:1;

/*CustomCSS;*/
}


#stacks_in_2664190 {
	margin: 10px 20px 0px 0px;
}

#stacks_in_2664185 {
	margin: 10px 0px 0px 0px;
}



#stacks_in_2665254 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_2665255 {
	margin: 0px 2px 0px 2px;
	padding: 0px 0px 0px 20px;
}
#stacks_in_2665263 .onthelineouterspace
{
display:block;
padding: 2px 0px 2px 0px;
}
#stacks_in_2665263 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:2px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#C8B7D3; 
font-size:1%;
-webkit-box-shadow: 0px 0px 1px #CCCCCC;
-moz-box-shadow: 0px 0px 1px #CCCCCC;
box-shadow: 0px 0px 1px #CCCCCC;
opacity:1;

/*CustomCSS;*/
}


#stacks_in_2665263 {
	margin: 10px 20px 0px 0px;
}

#stacks_in_2665314 {
	margin: 10px 0px 0px 0px;
}



#stacks_in_2665268 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_2665269 {
	margin: 0px 2px 0px 2px;
	padding: 0px 0px 0px 20px;
}
#stacks_in_2665277 .onthelineouterspace
{
display:block;
padding: 2px 0px 2px 0px;
}
#stacks_in_2665277 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:2px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#C8B7D3; 
font-size:1%;
-webkit-box-shadow: 0px 0px 1px #CCCCCC;
-moz-box-shadow: 0px 0px 1px #CCCCCC;
box-shadow: 0px 0px 1px #CCCCCC;
opacity:1;

/*CustomCSS;*/
}


#stacks_in_2665277 {
	margin: 10px 20px 0px 0px;
}

#stacks_in_2665319 {
	margin: 10px 0px 0px 0px;
}



#stacks_in_2665282 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_2665283 {
	margin: 0px 2px 0px 2px;
	padding: 0px 0px 0px 20px;
}
#stacks_in_2665291 .onthelineouterspace
{
display:block;
padding: 2px 0px 2px 0px;
}
#stacks_in_2665291 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:2px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#C8B7D3; 
font-size:1%;
-webkit-box-shadow: 0px 0px 1px #CCCCCC;
-moz-box-shadow: 0px 0px 1px #CCCCCC;
box-shadow: 0px 0px 1px #CCCCCC;
opacity:1;

/*CustomCSS;*/
}


#stacks_in_2665291 {
	margin: 10px 20px 0px 0px;
}

#stacks_in_2665324 {
	margin: 10px 0px 0px 0px;
}



#stacks_in_2665296 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_2665297 {
	margin: 0px 2px 0px 2px;
	padding: 0px 0px 0px 20px;
}
#stacks_in_2665305 .onthelineouterspace
{
display:block;
padding: 2px 0px 2px 0px;
}
#stacks_in_2665305 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:2px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#C8B7D3; 
font-size:1%;
-webkit-box-shadow: 0px 0px 1px #CCCCCC;
-moz-box-shadow: 0px 0px 1px #CCCCCC;
box-shadow: 0px 0px 1px #CCCCCC;
opacity:1;

/*CustomCSS;*/
}


#stacks_in_2665305 {
	margin: 10px 20px 0px 0px;
}

#stacks_in_2665329 {
	margin: 10px 0px 0px 0px;
}


.cluetip-stacks_in_329377 .cluetip-outer {
	position: relative;
	margin:  0 ;
	background-color: #FFFFFF;
	color: #333333;
	border: 1px solid #0066FF;
}
.cluetip-stacks_in_329377 .cluetip-inner a:link {
	background: none !important;
}
.cluetip-stacks_in_329377 .cluetip-inner {
	padding: 10px;
	text-align: left;
	font-size: 90%;
}
div.cluetip-stacks_in_329377 .cluetip-arrows {
	display: none;
	position: absolute;
	top: 0;
	left: -11px;
	width:0px;
	font-size:0;
	line-height:0%;
	border-color: #0066FF;
	border-style: solid;
}
div.clue-right-stacks_in_329377 .cluetip-arrows {
	border-width: 11px 11px 11px 0;
	border-top-color: transparent;
	border-bottom-color: transparent;
}
div.clue-left-stacks_in_329377 .cluetip-arrows {
	border-width: 11px 0 11px 11px;
	border-top-color: transparent;
	border-bottom-color: transparent;
	left: 100%;
}
div.clue-top-stacks_in_329377 .cluetip-arrows {
	border-width: 11px 11px 0 11px;
	border-left-color: transparent;
	border-right-color: transparent;
	top: 100%;
	left: 50%;
	margin-left: -11px;
}
div.clue-bottom-stacks_in_329377 .cluetip-arrows {
	border-width: 0 11px 11px 11px;
	border-left-color: transparent;
	border-right-color: transparent;
	top: -11px;
	left: 50%;
	margin-left: -11px;
}
.cluetip-stacks_in_329377 .cluetip-title {}
.cluetip-stacks_in_329377 .cluetip-close {
	text-align: right !important;
}
.cluetip-stacks_in_329377 .cluetip-close img {
 	border: 0;
}
.cluetip-stacks_in_329377 .cluetip-close a {
	color: #000000;
	font-size: 100%; 
	font-variant: normal;
	font-weight: normal;
	font-style: normal;
}
.cluetip-stacks_in_329377 .cluetip-close a:hover {
	color: #0066FF; 
}
#cluetip-waitimage {
    width: 43px;
    height: 11px;
    position: absolute;
    background-image: url('../files/images/wait.gif');
}
.cluetip-stacks_in_329377 .cluetip-extra {
	display: none;
}
.cluetip-stacks_in_329377 .cluetip-inner img.layer {
	position: absolute;
	width:100%; height:100%;
	top:0;left:0;
	display:none;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Reposition Stack' 
Style Sheet: fsrreposition.css Style Sheet
Created: 26, August 2013
Last Modified: 28, July 2015
Version: 1.5
Author: Blueball Design/Charlie Lockhart
www.blueballdesign.com
Copyright 2013-2015 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

#stacks_in_15615 {
	padding: 0% 0% 0% 0%;
	margin: 3% 0% 0% 0%;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 600px) {
	
#stacks_in_15615 { 
    padding: 0% 0% 0% 3%;
    margin: 1% 0% 0% 0%;
}
}
/*
-------------------------------------------
File: 'Blueball FreeStacks' fsstyler.css Style Sheet
Created: 17, January, 2011
Last Modified: 09, July, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2010-2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

#stacks_in_33261 {
	-moz-border-radius-topright: 0px;
	-webkit-border-top-right-radius: 0px;
	border-top-right-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-webkit-border-top-left-radius: 0px;
	border-top-left-radius: 0px;
	-moz-border-radius-bottomright: 0px;
	-webkit-border-bottom-right-radius: 0px;
	border-bottom-right-radius: 0px;
	-moz-border-radius-bottomleft: 0px;
	-webkit-border-bottom-left-radius: 0px;
	border-bottom-left-radius: 0px;
	font-size: 13px;
	color: #000000;
	line-height: 17px;
}

#stacks_in_33261 p {
	font-size: 13px;
	color: ##000000;
	line-height: 17px;
}

#stacks_in_33261  a:link, #stacks_in_33261  a:active  {
	color: #0033CC;
	text-decoration: none;
}

#stacks_in_33261 a:visited {
	color: #0033CC;
	text-decoration: none;
}

#stacks_in_33261 a:hover {
	color: #FF6600;
	text-decoration: none;
}

#stacks_in_33261 h1 {
	color: #CD180D;
}

#stacks_in_33261 h2 {
	color: #CD180D;
}

#stacks_in_33261 h3 {
	color: #CD180D;
}

#stacks_in_33261 h4 {
	color: #CD180D;
}

#stacks_in_33261 h5 {
	color: #CD180D;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive 2 Column Stack' 
Style Sheet: fsr2columns.css Style Sheet
Created: 29, December 2012
Last Modified: 17, April 2014
Author: Blueball Design, Charlie Lockhart
www.blueballdesign.com
Copyright 2012-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2664018 #fsr_colwrap_stacks_in_2664018 {
	width: 100%;
	vertical-align: top;
	margin: 0;
	padding: 0;
	overflow: auto;
}

#stacks_in_2664018 #fsr_colwrap_stacks_in_2664018 #fsr_leftcol_stacks_in_2664018 {
	float: left;
	display: block;
	width: 50%;
	height: auto;
	margin: 0;
}

#stacks_in_2664018 #fsr_colwrap_stacks_in_2664018 #fsr_leftcol_stacks_in_2664018 .leftcolpad_stacks_in_2664018 {
	padding: 11px 0px 0px 0px;
}

#stacks_in_2664018 #fsr_colwrap_stacks_in_2664018 #fsr_rightcol_stacks_in_2664018 {
	float: right;
	display: block;
	width: 50%;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_2664018 #fsr_colwrap_stacks_in_2664018 #fsr_rightcol_stacks_in_2664018 .rightcolpad_stacks_in_2664018 {
	padding: 11px 0px 0px 0px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

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

#stacks_in_2664018 #fsr_colwrap_stacks_in_2664018 #fsr_leftcol_stacks_in_2664018 {
	display: block;
	float: left;
	width: 100% !important;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_2664018 #fsr_colwrap_stacks_in_2664018 #fsr_leftcol_stacks_in_2664018 .leftcolpad_stacks_in_2664018 {
	padding: 11px 0px 0px 21px;
}

#stacks_in_2664018 #fsr_colwrap_stacks_in_2664018 #fsr_rightcol_stacks_in_2664018 {
	display: block;
	float: left;
	width: 100% !important;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_2664018 #fsr_colwrap_stacks_in_2664018 #fsr_rightcol_stacks_in_2664018 .rightcolpad_stacks_in_2664018 {
	padding: 11px 0px 0px 21px;
}

}/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive 2 Column Stack' 
Style Sheet: fsr2columns.css Style Sheet
Created: 29, December 2012
Last Modified: 17, April 2014
Author: Blueball Design, Charlie Lockhart
www.blueballdesign.com
Copyright 2012-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_14018 #fsr_colwrap_stacks_in_14018 {
	width: 100%;
	vertical-align: top;
	margin: 0;
	padding: 0;
	overflow: auto;
}

#stacks_in_14018 #fsr_colwrap_stacks_in_14018 #fsr_leftcol_stacks_in_14018 {
	float: left;
	display: block;
	width: 52%;
	height: auto;
	margin: 0;
}

#stacks_in_14018 #fsr_colwrap_stacks_in_14018 #fsr_leftcol_stacks_in_14018 .leftcolpad_stacks_in_14018 {
	padding: 0px 0px 0px 0px;
}

#stacks_in_14018 #fsr_colwrap_stacks_in_14018 #fsr_rightcol_stacks_in_14018 {
	float: right;
	display: block;
	width: 48%;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_14018 #fsr_colwrap_stacks_in_14018 #fsr_rightcol_stacks_in_14018 .rightcolpad_stacks_in_14018 {
	padding: 0px 0px 0px 0px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

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

#stacks_in_14018 #fsr_colwrap_stacks_in_14018 #fsr_leftcol_stacks_in_14018 {
	display: block;
	float: left;
	width: 100% !important;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_14018 #fsr_colwrap_stacks_in_14018 #fsr_leftcol_stacks_in_14018 .leftcolpad_stacks_in_14018 {
	padding: 10px 0px 4px 21px;
}

#stacks_in_14018 #fsr_colwrap_stacks_in_14018 #fsr_rightcol_stacks_in_14018 {
	display: block;
	float: left;
	width: 100% !important;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_14018 #fsr_colwrap_stacks_in_14018 #fsr_rightcol_stacks_in_14018 .rightcolpad_stacks_in_14018 {
	padding: 10px 0px 4px 21px;
}

}
#stacks_in_33268 {
	padding: 20px 0px 0px 0px;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Reposition Stack' 
Style Sheet: fsrreposition.css Style Sheet
Created: 26, August 2013
Last Modified: 28, July 2015
Version: 1.5
Author: Blueball Design/Charlie Lockhart
www.blueballdesign.com
Copyright 2013-2015 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

#stacks_in_34643 {
	padding: 0% 0% 0% 0%;
	margin: 0% 0% 0% 0%;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 600px) {
	
#stacks_in_34643 { 
    padding: 0% 0% 0% 0%;
    margin: 0% 0% 0% 0%;
}
}
/*
-------------------------------------------
File: 'Blueball FreeStacks' fscontent.css Style Sheet
Created: 17, January, 2011
Last Modified: 20, April, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2010-2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

#stacks_in_33270 {
	-moz-border-radius-topright: 0px;
	-webkit-border-top-right-radius: 0px;
	border-top-right-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-webkit-border-top-left-radius: 0px;
	border-top-left-radius: 0px;
	-moz-border-radius-bottomright: 0px;
	-webkit-border-bottom-right-radius: 0px;
	border-bottom-right-radius: 0px;
	-moz-border-radius-bottomleft: 0px;
	-webkit-border-bottom-left-radius: 0px;
	border-bottom-left-radius: 0px;
}

#stacks_in_33270 #content {
	font-size: 12px;
	line-height: 18px;
}

#stacks_in_33270 {
	border: solid rgba(153, 153, 153, 1.00);
	border-width:  1px;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	margin: 20px 0px 0px 0px;
	padding:  6px;
}

#stacks_out_33270 {
	width: 180px;
	margin-left:0;
}

#stacks_in_33272 {
	margin:  2px;
	padding:  6px;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Reposition Alt Stack' 
Style Sheet: fsrrepositionalt.css Style Sheet
Created: 26, August 2013
Last Modified: 03, June 2014
Author: Blueball Design LLC/Charlie Lockhart
http://freestackresponsive.blueballdesign.com
Copyright 2013-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_1799810 {
	padding: 0px 0px 0px 0px;
	margin: 40px 0px 0px 0px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 768px) {
	
#stacks_in_1799810 { 
    padding: 0% 0% 0% 0%;
    margin: 0% 0% 0% 0%;
}
}

#stacks_in_2664524_2 {
	margin: 40px 0px 0px 0px;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks' fscontent.css Style Sheet
Created: 17, January, 2011
Last Modified: 20, April, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2010-2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2664524_3 {
	-moz-border-radius-topright: 0px;
	-webkit-border-top-right-radius: 0px;
	border-top-right-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-webkit-border-top-left-radius: 0px;
	border-top-left-radius: 0px;
	-moz-border-radius-bottomright: 0px;
	-webkit-border-bottom-right-radius: 0px;
	border-bottom-right-radius: 0px;
	-moz-border-radius-bottomleft: 0px;
	-webkit-border-bottom-left-radius: 0px;
	border-bottom-left-radius: 0px;
}

#stacks_in_2664524_3 #content {
	font-size: 15px;
	line-height: 21px;
}

#stacks_in_2664524_3 {
	border: solid rgba(204, 204, 204, 1.00);
	border-width:  2px;
	padding: 20px 20px 10px 20px;
}

#stacks_in_2664524_7 {
	margin: 4px 0px 0px 0px;
}

#stacks_in_2664524_9 {
	margin: 6px 0px 0px 0px;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks' fscontent.css Style Sheet
Created: 17, January, 2011
Last Modified: 20, April, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2010-2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2664524_14 {
	-moz-border-radius-topright: 0px;
	-webkit-border-top-right-radius: 0px;
	border-top-right-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-webkit-border-top-left-radius: 0px;
	border-top-left-radius: 0px;
	-moz-border-radius-bottomright: 0px;
	-webkit-border-bottom-right-radius: 0px;
	border-bottom-right-radius: 0px;
	-moz-border-radius-bottomleft: 0px;
	-webkit-border-bottom-left-radius: 0px;
	border-bottom-left-radius: 0px;
}

#stacks_in_2664524_14 #content {
	font-size: 12px;
	line-height: 14px;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Reposition Alt Stack' 
Style Sheet: fsrrepositionalt.css Style Sheet
Created: 26, August 2013
Last Modified: 03, June 2014
Author: Blueball Design LLC/Charlie Lockhart
http://freestackresponsive.blueballdesign.com
Copyright 2013-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2664524_11 {
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 8px 0px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 768px) {
	
#stacks_in_2664524_11 { 
    padding: 0px 0px 0px 0px;
    margin: 6px 0px 10px 0px;
}
}

#stacks_in_2664524_11 {
	margin: 8px 0px 0px 0px;
}

#stacks_out_2664524_11 {
	width: 116px;
	margin-left:0;
}

#stacks_in_2664524_22 {
	display:inline-block; width:100%; line-height: 1.100000em;
	font-size: 69%;
}

#stacks_in_2664524_18 {
	background-color: rgba(240, 240, 240, 1.00);
	-moz-border-radius:  6px;
	-webkit-border-radius:  6px;
	border-radius:  6px;
	margin: 20px 0px 0px 0px;
	padding: 8px 10px 0px 10px;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Reposition Alt Stack' 
Style Sheet: fsrrepositionalt.css Style Sheet
Created: 26, August 2013
Last Modified: 03, June 2014
Author: Blueball Design LLC/Charlie Lockhart
http://freestackresponsive.blueballdesign.com
Copyright 2013-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2664524_23 {
	padding: 0px 0px 0px 0px;
	margin: 10px 0px 10px 0px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 768px) {
	
#stacks_in_2664524_23 { 
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 6px;
}
}

#stacks_in_2664524_26 {
	background-color: rgba(255, 153, 51, 1.00);
	border: solid rgba(204, 102, 0, 1.00);
	border-width:  6px;
	-moz-border-radius:  8px;
	-webkit-border-radius:  8px;
	border-radius:  8px;
	margin: 10px 0px 4px 0px;
	padding:  13px;
}

#stacks_out_2664524_26 {
	width: 245px;
	margin-left:0;
}

#stacks_in_2664524_28 {
	font-size: 102%;
}

#stacks_in_2664054_2518893 {
	background-color: rgba(249, 249, 249, 1.00);
}
/*
-------------------------------------------
Stack: Blueball FreeStack Responsive Max Width Stack
Style Sheet: fsrmaxwidth.css
Created: 23, October 2012
Last Modified: 10, November, 2014
Author: Blueball Design
www.blueballdesign.com
Copyright 2013-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2664054_2518895 {
	max-width: 1024px;
	min-width: 320px;
	margin: 0px auto !important;
}

/************************************************************************************
MOBILE
*************************************************************************************/

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

#stacks_in_2664054_2518895 {
	max-width: 100% !important;
	min-width: 50% !important;
}

}
/*
-------------------------------------------
File: 'Blueball FreeStacks' fsstyler.css Style Sheet
Created: 17, January, 2011
Last Modified: 09, July, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2010-2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2664054_2518897 {
	-moz-border-radius-topright: 0px;
	-webkit-border-top-right-radius: 0px;
	border-top-right-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-webkit-border-top-left-radius: 0px;
	border-top-left-radius: 0px;
	-moz-border-radius-bottomright: 0px;
	-webkit-border-bottom-right-radius: 0px;
	border-bottom-right-radius: 0px;
	-moz-border-radius-bottomleft: 0px;
	-webkit-border-bottom-left-radius: 0px;
	border-bottom-left-radius: 0px;
	font-size: 13px;
	color: #333333;
	line-height: 19px;
}

#stacks_in_2664054_2518897 p {
	font-size: 13px;
	color: ##333333;
	line-height: 19px;
}

#stacks_in_2664054_2518897  a:link, #stacks_in_2664054_2518897  a:active  {
	color: #333333;
	text-decoration: none;
}

#stacks_in_2664054_2518897 a:visited {
	color: #333333;
	text-decoration: none;
}

#stacks_in_2664054_2518897 a:hover {
	color: #0099FF;
	text-decoration: none;
}

#stacks_in_2664054_2518897 h1 {
	color: #CD180D;
}

#stacks_in_2664054_2518897 h2 {
	color: #CD180D;
}

#stacks_in_2664054_2518897 h3 {
	color: #CD180D;
}

#stacks_in_2664054_2518897 h4 {
	color: #CD180D;
}

#stacks_in_2664054_2518897 h5 {
	color: #CD180D;
}

#stacks_in_2664054_2518897 {
	background-color: rgba(248, 248, 248, 1.00);
}

.stacks_column_left {
	float:left;
}

.stacks_column_right {
	float:right;
}

.stacks_column_4 {
	width:23%;
	margin: 0 1%;
}
#stacks_in_2664054_2518925 {
	margin: 20px 0px 0px 0px;
}

#stacks_in_2664054_2518926 {
	margin: 20px 0px 10px 20px;
}

#stacks_in_2664054_2518928 {
	margin: 0px 0px 0px 20px;
}

#stacks_in_2664054_2518930 {
	margin: 20px 0px 10px 20px;
}

#stacks_in_2664054_2518932 {
	margin: 0px 0px 0px 20px;
}

#stacks_out_2664054_2518932 {
	margin-right:0;
}

#stacks_in_2664054_2518935 {
	margin: 20px 0px 0px 0px;
}

#stacks_in_2664054_2518938 {
	margin: 20px 0px 0px 20px;
}
/*
-------------------------------------------
File: 'Blueball FreeStack Responsive Image Plus Stack' 
Style Sheet: fsrimage.css
Created: 05, November, 2013
Last Modified: 18, April, 2014
Author: Charlie Lockhart/Blueball Design LLC
www.blueballdesign.com
Copyright 2012-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2664054_2518940 {
	
}

#stacks_in_2664054_2518940 img {
	float: left;
	max-width: 100% !important;
	height: auto !important;
	padding: 0;
	margin: 0 auto;
}

/************************************************************************************
MOBILE
*************************************************************************************/

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

#stacks_in_2664054_2518940 img {
	float: none;
	max-width: 75% !important;
	min-width: 40% !important;
	height: auto !important;
}

}
#stacks_in_2664054_2518940 {
	margin: 0px 0px 18px 20px;
}
/*
-------------------------------------------
File: 'Blueball FreeStack Responsive Image Plus Stack' 
Style Sheet: fsrimage.css
Created: 05, November, 2013
Last Modified: 18, April, 2014
Author: Charlie Lockhart/Blueball Design LLC
www.blueballdesign.com
Copyright 2012-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2664054_2518942 {
	
}

#stacks_in_2664054_2518942 img {
	float: left;
	max-width: 100% !important;
	height: auto !important;
	padding: 0;
	margin: 0 auto;
}

/************************************************************************************
MOBILE
*************************************************************************************/

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

#stacks_in_2664054_2518942 img {
	float: none;
	max-width: 75% !important;
	min-width: 40% !important;
	height: auto !important;
}

}
#stacks_in_2664054_2518942 {
	margin: 0px 0px 0px 20px;
}

#stacks_in_2664054_2518944 {
	margin: 40px 0px 0px 20px;
}

#stacks_in_2664054_2518947 {
	margin: 20px 0px 10px 0px;
}

#stacks_out_2664054_2518949 {
	margin-right:0;
}

#stacks_in_2664054_2518951 {
	margin: 20px 0px 10px 0px;
}
/*
-------------------------------------------
File: 'Blueball FreeStack Responsive Footer' 
Style Sheet: fsrfooter.css
Created: 25, October, 2010
Last Modified: 18, April 2014
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2664054_2518924 {
}

#stacks_in_2664054_2518924 #footer {
	line-height: 2.03em;
	width: 100%;
}



#stacks_out_2664054_2518924 {
	width: 250px;
	margin-right:0;
}

#stacks_in_2664054_2518959 {
	margin: 10px 0px 2px 0px;
}
/*
-------------------------------------------
File: 'Blueball FreeStack Responsive Footer' 
Style Sheet: fsrfooter.css
Created: 25, October, 2010
Last Modified: 18, April 2014
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2664054_2518960 {
}

#stacks_in_2664054_2518960 #footer {
	line-height: 1.20em;
	width: 100%;
}



#stacks_in_2664054_2518960 {
	padding: 0px 0px 6px 5px;
}
