/*! HTML5 Boilerplate v5.0 | MIT License | http://h5bp.com/ */

@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,700);

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}


/* apply a natural box layout model to all elements, but allowing components to change */
html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

a, a:link, a:visited {
	color: #2F72C0;
	text-decoration: none;
}

a:hover {
	color: #333;
	cursor: pointer;
}

/* ==========================================================================
   Typography
   ========================================================================== */

html {
    color: #333;
    font-size: 16px;
    line-height: 25px;
    font-weight: 300;
    
    /* 2015-09: No good way to set SanFransico font at this time, so using suggestion from: http://furbo.org/2015/07/09/i-left-my-system-fonts-in-san-francisco/ */

    font-family: '.SFNSText-Light', 'Source Sans Pro', 'Helvetica Neue', Helvetica, Sans-serif;
}

body {
	width: 100%;
	background: #fff;
}

p {
	font-family: '.SFNSText-Regular', 'Source Sans Pro', 'Helvetica Neue', Helvetica, Sans-serif;
	
	font-size: 16px;
	line-height: 23px;
	margin: 0 0 25px;
	font-weight: 400;
}

@media (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi){ 
	p {
	font-family: '.SFNSText-Light', 'Source Sans Pro', 'Helvetica Neue', Helvetica, Sans-serif;
	font-weight: 300;
}
}


p.smaller {
	font-size: 14px;
	line-height: 18px;
	font-weight: 300;
}

p.no-margin {
	margin: 0;
}

p.fine-print {
	font-size: 12px;
	line-height: 15px;
	font-weight: 300;
}

h1 {
	font-family: '.SFNSDisplay-Bold', 'Source Sans Pro', 'Helvetica Neue', Helvetica, Sans-serif;
	font-size: 60px;
	line-height: 60px;
	font-weight: 800;
	margin: 0 0 0;
}

h2 {
	font-family: '.SFNSDisplay-Bold', 'Source Sans Pro', 'Helvetica Neue',Helvetica, Sans-serif;
	font-size: 28px;
	line-height: 34px;
	font-weight: 700;
	margin: 0 0 10px;
}

h3 {
	font-family: '.SFNSDisplay-Bold', 'Source Sans Pro', 'Helvetica Neue',Helvetica, Sans-serif;
	font-size: 24px;
	line-height: 25px;
	font-weight: 700;
	margin: 0 0 10px;
}

h4 {
	font-family: '.SFNSDisplay-Bold', 'Source Sans Pro', 'Helvetica Neue',Helvetica, Sans-serif;
	font-size: 18px;
	line-height: 25px;
	font-weight: 700;
	margin: 0 0 10px;
}

h5 {
	font-family: '.SFNSDisplay-Semibold', 'Source Sans Pro', 'Helvetica Neue',Helvetica, Sans-serif;
	font-size: 16px;
	line-height: 25px;
	font-weight: 700;
	margin: 0 0 10px;
}

h6 {
	font-family: '.SFNSDisplay-Semibold', 'Source Sans Pro', 'Helvetica Neue',Helvetica, Sans-serif;
	font-size: 16px;
	line-height: 25px;
	font-weight: 700;
	margin: 0 0 10px;
	text-transform: uppercase;
}

a {
	-webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

a:hover {
	-webkit-transition: all 100ms ease;
    -moz-transition: all 100ms ease;
    -o-transition: all 100ms ease;
    transition: all 100ms ease;
}

/* ==========================================================================
   Primary Layout
   ========================================================================== */

/* Sections - blocks of content */

.section {
	width: 100%;
	min-width: 960px;
	margin: 0 auto;
	padding: 0;

	float: left;
	clear: both;
}

/* Section content - defines content width */

.content, .inner { 
	padding: 30px 15px;
	max-width: 960px;
	margin: 0 auto;
}

.section .content.narrow, .content.narrow, .narrow .content {
	width: 680px;
	margin: 0 auto;
	padding: 30px 15px 0px;
	position: relative;
	overflow: hidden;
}

* html .section, *:first-child+html .section {
	zoom: 1;
} /* IE6 & IE 7*/

/* Short content - remove extra space on bottom of content block for special cases */
.section .content.short {
	padding: 30px 15px 0px;
}

/* Add auto-height sizing to section and column elements */
.section:before, .section:after, .content:before, .content:after, .column:before, .column:after {
    content: " ";
    display: table;
}

.section:after, .content:after, .column:after {
    clear: both;
}

/* Row - keeps things vertically aligned */
.row {
	width: 100%;
	padding: 0;
	clear: both;
}


/* Columns - content blocks used within sections */

.column {
	padding: 0 15px;
	float: left;
}

/* Spacer - used for creating space on desktop, but which collapse on mobile */

.spacer {
	float: left;
}

/* Column widths - use these to determine column size as a fraction of the container width */

.column.full, .spacer.full {
	width: 100%;
}

.column.two-thirds, .spacer.two-thirds {
	width: 66.6666666666%;
}

.column.half, .spacer.half {
	width: 50%;
}

.column.third, .spacer.third {
	width: 33.3333333333%;
}

.column.quarter, .spacer.quarter {
	width: 25%;
}

.column.fifth, .spacer.fifth {
	width: 20%;
}

.column.two-fifths, .spacer.two-fifths {
	width: 40%;
}

.column.three-fifths, .spacer.three-fifths {
	width: 60%;
}

.column.three-quarters, .spacer.three-quarters {
	width: 75%;
}

.column.four-fifths, .spacer.four-fifths {
	width: 80%;
}

.column.sixth, .spacer.sixth {
	width: 16.6666666666%;
}

.column.eigth, .spacer.eigth, .column.eighth, .spacer.eighth {
	width: 12.5%;
}

/* Make all columns Full-width on mobile */

/*
@media all and (max-width: 700px) { 
	.column {
		width: 100% !important;
	}
	
	.spacer {
		width: 0% !important;
		height: 0% !important;
		display: none;
	}
	
	.section .content {
		width: 100%;
		margin: 0 auto;
		padding: 30px 15px 0px;
		position: relative;
	}
}
*/


/* Features */

.column.feature {
	padding: 0 20px 0 55px;
	background: url('../img/feature-star.svg') no-repeat 15px 0px;
	background-size: 25px 25px;
	margin: 0 0 15px;
}

.two-column {
	column-count: 2; -moz-column-count: 2;
}


/* ==========================================================================
   Elements
   ========================================================================== */

.action-tiny, a.action-tiny:visited {
	color: #fff;
	background: #000;
	padding: 5px 10px 5px 10px;
	margin: 5px 0 10px;
	border-radius: 6px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
	display: inline-block;
	font-family: '.SFNSText-Regular', 'Source Sans Pro', 'Helvetica Neue', Helvetica, Sans-serif;
	transition: font-size none;
}

.action-tiny:hover {
	color: #fff;
	background: #333;
	transition: font-size none;
}

.action-tiny img {
	margin: 0 10px 5px 0;
}

.action-small {
	color: #fff;
	background: #000;
	padding: 12px 10px 12px 25px;
	margin: 5px;
	border-radius: 6px;
	text-decoration: none;
	font-size: 18px;
	font-weight: 500;
	text-align: center;
	display: inline-block;
	width: 200px;
	max-width: 47%;
	font-family: '.SFNSText-Regular', 'Source Sans Pro', 'Helvetica Neue', Helvetica, Sans-serif;
	transition: font-size none;
}

/*
Mobile Media Queries

@media all and (max-width: 700px) { 
	.action-small {
		padding: 10px 15px 10px 40px;
		font-size: 16px;
		width: 200px;
		margin: 2px;
	}
}
*/

.action-large {
	color: #fff;
	background: #000;
	padding: 12px 10px 12px 30px;
	margin: 0 0px 15px;
	border-radius: 6px;
	text-decoration: none;
	font-size: 20px;
	font-weight: 600;
	text-align: center;
	display: inline-block;
	width: 100%;
	max-width: 360px;
	font-family: '.SFNSText-Regular', 'Source Sans Pro', 'Helvetica Neue', Helvetica, Sans-serif;
	transition: font-size none;
}

.screenshot {
	width: 100%;
	margin: 0 auto 10px;
	border-radius: 6px;
	background: #000;
}

/* Icon links */
a.icon-link {
	display: block;
	margin: 5px 0 20px;
	align-content: center;
	text-align: center;
	width: 100%;
	font-size: 14px;
	color: #859398;
	-webkit-font-smoothing: antialiased;
	
	text-decoration: none;
	transform: scale(1);
	
	
	-webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

a.icon-link img {
	-webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

a.icon-link:hover {
	transform: scale(1.025);
	
	-webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

a.icon-link:hover img {
	transform: scale(1.1);
	
	-webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

a.icon-link:active {
	transform: scale(0.98);
	
	-webkit-transition: all 100ms ease;
    -moz-transition: all 100ms ease;
    -o-transition: all 100ms ease;
    transition: all 100ms ease;
}

a.icon-link h3 {
	font-weight: 500;
	size: 17px;
	margin: 0;
}

a.icon-link img {
	margin: 0 0 10px;
}

/* App Store Regular */
.app-store {
	display: block;
	width: 195px;
	height: 58px;
	border-radius: 6px;
	background: url('/global/images/siteimages/app-store.png') #000;
	background-size: contain;
	box-shadow: 0 0 0px 1px rgba(255,255,255,0.2) inset;
}

.app-store:hover {
	background: url('/global/images/siteimages/app-store.png') #111;
	background-size: contain;
	box-shadow: 0 0 0px 1px rgba(255,255,255,0.5) inset;
}

@media (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi){ 
    .app-store {
		background: url('/global/images/siteimages/app-store@2x.png') #000;
		background-size: contain;
	}
	
	.app-store:hover {
		background: url('/global/images/siteimages/app-store@2x.png') #111;
		background-size: contain;
	}
}

/* App Store Small */
.app-store-small {
	display: block;
	width: 195px;
	height: 50px;
	border-radius: 6px;
	background: url('/global/images/siteimages/app-store-small.png') #000;
	background-size: contain;
	box-shadow: 0 0 0px 1px rgba(255,255,255,0.2) inset;
}

.app-store-small:hover {
	background: url('/global/images/siteimages/app-store-small.png') #111;
	background-size: contain;
	box-shadow: 0 0 0px 1px rgba(255,255,255,0.5) inset;
}

@media (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi){ 
    .app-store-small {
		background: url('/global/images/siteimages/app-store-small@2x.png') #000;
		background-size: contain;
	}
	
	.app-store-small:hover {
		background: url('/global/images/siteimages/app-store-small@2x.png') #111;
		background-size: contain;
	}
}

.store-description {
	padding: 0 0 0 158px;
}

/*
.store-description p {
	margin-bottom: 8px;
}
*/


/* ==========================================================================
   Tables and Forms
   ========================================================================== */

input, .store-decorate-silk input[type=text], textarea {
	padding: 10px;
	max-width: 100%;
	border-radius: 6px;
	border: 1px solid #859398;
/* 	box-shadow: 0 0 0px 1px #fff inset; */
	outline: none;
	color: #000;
	background: #fff;
	
	-webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

input:focus, .store-decorate-silk input[type=text]:focus, textarea:focus {
	border: 1px solid #2F72C0;
	box-shadow: 0 0 0px 1px #2F72C0 inset;
	
	-webkit-transition: all 100ms ease;
    -moz-transition: all 100ms ease;
    -o-transition: all 100ms ease;
    transition: all 100ms ease;	
}

input:hover, .store-decorate-silk input[type=text]:hover, textarea:hover {
	border: 1px solid #2F72C0;
	
	-webkit-transition: all 100ms ease;
    -moz-transition: all 100ms ease;
    -o-transition: all 100ms ease;
    transition: all 100ms ease;	
}

input[type=checkbox] {
	border-radius: 2px;
}

input[type=submit] {
	width: auto;
	background: #2F72C0;
	font-weight: 600;
	padding: 10px 30px;
	color: #fff;
	box-shadow: none;
	border: none;
}

input[type=submit]:hover {
	background: #223940;
	
	-webkit-transition: all 100ms ease;
    -moz-transition: all 100ms ease;
    -o-transition: all 100ms ease;
    transition: all 100ms ease;	
}

td {
	padding: 5px;
	font-size: 18px;
}

tt {
	font-weight: bold;
}

input[type=file] {
	background: #f4f4f4;
	width: 100%;
	border: none;
	padding: 15px;
}

/* ==========================================================================
   Header and Navigation
   ========================================================================== */

#header {
	background: #2F72C0;
	color: #fff;
	height: 50px;
	padding: 0;
	margin: 30px 0 45px;
	overflow: visible;
}

#header .inner {
	padding: 0;
}

#logo {
	width: 185px;
	height: 100px;
	float: left;
	position: relative;
	top: -25px;
}

#tagline {
	float: left;
	font-size: 16px;
	line-height: 18px;
	clear: none;
	display: inline;
	padding-top: 7px;
	font-weight: 300;
	font-family: '.SFNSText-Light', 'Source Sans Pro', 'Helvetica Neue', Helvetica, Sans-serif;
	color: #BFD8F5;
	color: #D5E2F2;
	width: 150px;
}

#header ul {
	padding: 0;
	margin: 0;
	float: right;
	width: 600;
}

#header ul li {
	display: inline;
	float: left;
	padding: 13px 0 15px;
	margin: 0;
	list-style: none;
	background: url('../images/siteimages/nav-current-arrow-hover.png') no-repeat 50% -20px;
	background-size: 20px 20px;
	
	-webkit-transition: background 300ms ease;
    -moz-transition: background 300ms ease;
    -o-transition: background 300ms ease;
    transition: background 300ms ease;	
}

#header ul li:hover {
	background: url('../images/siteimages/nav-current-arrow-hover.png') no-repeat 50% -10px;
	background-size: 20px 20px;
	
	-webkit-transition: background 100ms ease;
    -moz-transition: background 100ms ease;
    -o-transition: background 100ms ease;
    transition: background 100ms ease;	
}

#header ul li.active, #header ul li.active a:hover {
	background: url('../images/siteimages/nav-current-arrow.png') no-repeat 50% -10px;
	color: #fff;
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	transition: none;	
}

#header ul li a {
	color: #fff;
	font-size: 18px;
	display: inline;
	text-decoration: none;
	padding: 15px 30px;
	height: 50px;
	font-weight: 600;
	font-family: '.SFNSText-Semibold', 'Source Sans Pro', 'Helvetica Neue', Helvetica, Sans-serif;
}

#header ul li a:hover {
	color: #D5E2F2;
}

#footer {
	text-align: center;
	font-size: 14px;
	padding: 0px 30px 5px;
	color: #859398;
}

#footer a {
	color: #859398;
}

@media 
(-webkit-min-device-pixel-ratio: 2), 
(min-resolution: 192dpi) { 
    #header ul li {
		background: url('../images/siteimages/nav-current-arrow-hover@2x.png') no-repeat 50% -20px;
		background-size: 20px 20px;
	}
	
	#header ul li:hover {
		background: url('../images/siteimages/nav-current-arrow-hover@2x.png') no-repeat 50% -10px;
		background-size: 20px 20px;
	}
	
	#header ul li.active, #header ul li.active:hover {
		background: url('../images/siteimages/nav-current-arrow@2x.png') no-repeat 50% -10px;
		background-size: 20px 20px;
	}
}

/* ==========================================================================
   Other Apps Section
   ========================================================================== */
   
   .section.more-apps {
		background: #3e4149;
		background: #fff;
		color: #333;
		font-size: 12px;
		padding-bottom: 20px;
		text-align: left;
	}
	
	.section.more-apps p, .section.more-apps h6 {
		font-size: 14px;
		line-height: 18px;
	}
	
	.section.more-apps h4 {
		color: #fff;
		color: #333;
		margin-bottom: 15px;
		padding-bottom: 0;
	}
	
	.section.more-apps h6 {
		padding: 0px 0 0;
	}
	
	.more-apps a {
		display: inline-block;
		width: 280px;
		height: 57px;
		margin-bottom: 0;
		border: 0;
		padding: 0;
		margin: 0 0 10px;
	}
	
	.more-apps a img.footer-icon {
		float: left;
		margin: 0 15px 0 0;
		padding: 0;
	}
	
	.more-apps a:hover img.footer-icon {
		float: left;
		margin: 0 15px 0 0;
		padding: 0;
	}
	
	
	/* Airfoil */
	
	.more-apps .airfoil h6, .more-apps .airfoil a {
		color: #c2c5cf;
		color: #333;
		margin-bottom: 0;
		text-decoration: none;
		-webkit-transition: all 300ms ease;
	    -moz-transition: all 300ms ease;
	    -o-transition: all 300ms ease;
	    transition: all 300ms ease;
		}

	.more-apps .airfoil a:hover h6, .more-apps .airfoil a:hover {
		color: #0571a3;
	}
	
	/* Audio Hijack */
	
	.more-apps .audiohijack h6, .more-apps .audiohijack a {
		color: #c2c5cf;
		color: #333;
		margin-bottom: 0;
		text-decoration: none;
		-webkit-transition: all 300ms ease;
	    -moz-transition: all 300ms ease;
	    -o-transition: all 300ms ease;
	    transition: all 300ms ease;
	}
	
	.more-apps .audiohijack a:hover h6, .more-apps .audiohijack a:hover {
		color: #dd6e27;
	}
	
	/* Fission */
	
	.more-apps .fission h6, .more-apps .fission a {
		color: #c2c5cf;
		color: #333;
		margin-bottom: 0;
		text-decoration: none;
		-webkit-transition: all 300ms ease;
	    -moz-transition: all 300ms ease;
	    -o-transition: all 300ms ease;
	    transition: all 300ms ease;
		}

	.more-apps .fission a:hover h6, .more-apps .fission a:hover {
		color: #FFEC51;
		color: #C18831;
	}
	
	/* Piezo */	
	
	.more-apps .piezo h6, .more-apps .piezo a {
		color: #c2c5cf;
		color: #333;
		margin-bottom: 0;
		text-decoration: none;
		-webkit-transition: all 300ms ease;
	    -moz-transition: all 300ms ease;
	    -o-transition: all 300ms ease;
	    transition: all 300ms ease;
	}
	
	.more-apps .piezo a:hover h6, .more-apps .piezo a:hover {
		color: #C1773E;
	}

	/* Nicecast */	
	
	.more-apps .nicecast h6, .more-apps .nicecast a {
		color: #c2c5cf;
		color: #333;
		margin-bottom: 0;
		text-decoration: none;
		-webkit-transition: all 300ms ease;
	    -moz-transition: all 300ms ease;
	    -o-transition: all 300ms ease;
	    transition: all 300ms ease;
	}
	
	.more-apps .nicecast a:hover h6, .more-apps .nicecast a:hover {
		color: #FB110F;
	}
	
	/* loopback */
	
	.more-apps .loopback h6, .more-apps .loopback a {
		color: #c2c5cf;
		color: #333;
		margin-bottom: 0;
		text-decoration: none;
		-webkit-transition: all 300ms ease;
	    -moz-transition: all 300ms ease;
	    -o-transition: all 300ms ease;
	    transition: all 300ms ease;
		}

	.more-apps .loopback a:hover h6, .more-apps .loopback a:hover {
		color: #3cbfbf;
	}

/* ==========================================================================
   Badges
   ========================================================================== */

.icon-container {
	position: relative;
	display: inline-block;
}

.badge {
	position: relative;
	vertical-align: bottom;
}

.badge.medium {
	left: 45px;
	top: -45px;
}

.icon-container .badge {
	position: absolute;
	bottom: 0;
	right: 0;
	vertical-align: bottom;
}

/* ==========================================================================
   Home Page
   ========================================================================== */
   
   .home-item {
	   margin: 15px 0 30px;
	   padding: 0;
	   overflow: visible;
	   text-align: center;
   }
   
   .home-item a {
	   text-decoration: none;
   }
   
    .home-banner img {
	   border-radius: 15px;
	   margin-bottom: 15px;
	   
	   box-shadow: 0 0 0 #fff;
	   
	   -webkit-transition: all 300ms ease;
	    -moz-transition: all 300ms ease;
	    -o-transition: all 300ms ease;
	    transition: all 300ms ease;
   }
   
   .home-banner img:hover {
	   box-shadow: 0 5px 10px rgba(0,0,0,0.2);
	   
	   -webkit-transition: all 300ms ease;
	    -moz-transition: all 300ms ease;
	    -o-transition: all 300ms ease;
	    transition: all 300ms ease;
   }
   
   .home-banner img:active {
	   box-shadow: 0 2px 2px rgba(0,0,0,0.2);
	   
	   -webkit-transition: all 100ms ease;
	    -moz-transition: all 100ms ease;
	    -o-transition: all 100ms ease;
	    transition: all 100ms ease;
   }
   
   .compatability-banner {
	   border-radius: 15px;
	   background: #f4f4f4;
	   text-align: left;
	   padding: 15px;
	   margin: 0 15px 0;
	   width: 100%;
	   
	   -webkit-transition: all 300ms ease;
	    -moz-transition: all 300ms ease;
	    -o-transition: all 300ms ease;
	    transition: all 300ms ease;
   }
   
      .compatability-banner:hover {
	   color: #2F72C0;
	   
	   -webkit-transition: all 300ms ease;
	    -moz-transition: all 300ms ease;
	    -o-transition: all 300ms ease;
	    transition: all 300ms ease;
   }
   
   .compatability-banner:active {
	   
	   -webkit-transition: all 100ms ease;
	    -moz-transition: all 100ms ease;
	    -o-transition: all 100ms ease;
	    transition: all 100ms ease;
   }
   
   
   .home-item h2 {
	   color: #333;
	   margin: 10px 0 5px;
	   padding: 0;
	   font-size: 22px;
	   line-height: 26px;
	   
	   -webkit-transition: all 300ms ease;
	    -moz-transition: all 300ms ease;
	    -o-transition: all 300ms ease;
	    transition: all 300ms ease;
   }
   
   .home-item h6 {
	   color: #859398;
	   text-transform: none;
	   margin: 0 0 0px;
	   font-family: '.SFNSText-Light', 'Source Sans Pro', 'Helvetica Neue', Helvetica, Sans-serif;
	   font-weight: 300;
	   font-size: 14px;
	   line-height: 16px;
	   
	   -webkit-transition: all 300ms ease;
	    -moz-transition: all 300ms ease;
	    -o-transition: all 300ms ease;
	    transition: all 300ms ease;
   }
   
   .home-item a img {
	   -webkit-transform: translateZ(0);
	
		-webkit-transition: all 300ms ease;
	    -moz-transition: all 300ms ease;
	    -o-transition: all 300ms ease;
	    transition: all 300ms ease;
   }
   
   .home-item ul {
	   margin: 15px 15px 0;
	   padding: 0;
	   border-radius: 4px;
	   background: #f4f4f4;
   }
   
   .home-item ul li {
	   display: inline;
	   list-style: none;
	   margin: 0;
	   padding: 0 7px 0;
   }
   
   .home-item ul li a {
	   color: #333;
	   font-size: 14px;
   }
   

   
   /* Airfoil */
   .home-item.airfoil a:hover h2, .home-item.airfoil a:hover h6, .home-item.airfoil ul li a:hover {
	   color: #0571a3;
   }
   
	   .home-item.airfoil a img {
		   -webkit-filter: drop-shadow(0px 0px 1px #fff);
		   filter: drop-shadow(0px 0px 1px #fff);
	   }
	   
	   .home-item.airfoil a:hover img {
		   -webkit-filter: drop-shadow(0px 0px 30px #0571a3);
		   filter: drop-shadow(0px 0px 30px #0571a3);
	   }
	   
	   .more-apps .airfoil a img {
		   -webkit-filter: drop-shadow(0px 0px 1px #fff);
		   filter: drop-shadow(0px 0px 1px #fff);
		   
		   -webkit-transition: all 300ms ease;
		    -moz-transition: all 300ms ease;
		    -o-transition: all 300ms ease;
		    transition: all 300ms ease;
		    
		    -webkit-transform: translateZ(0);
	   }
	   
	   .more-apps .airfoil a:hover img {
		   -webkit-filter: drop-shadow(0px 0px 10px #0571a3);
		   filter: drop-shadow(0px 0px 10px #0571a3);
		   
		   -webkit-transition: all 300ms ease;
		    -moz-transition: all 300ms ease;
		    -o-transition: all 300ms ease;
		    transition: all 300ms ease;
	   }
	   
   /* Audio Hijack */
   .home-item.audiohijack a:hover h2, .home-item.audiohijack a:hover h6, .home-item.audiohijack ul li a:hover {
	   color: #dd6e27;
   }
	   
	   .home-item.audiohijack a img {
		   -webkit-filter: drop-shadow(0px 0px 1px #fff);
		   filter: drop-shadow(0px 0px 1px #fff);
	   }
	   
	   .home-item.audiohijack a:hover img {
		   -webkit-filter: drop-shadow(0px 0px 30px #dd6e27);
		   filter: drop-shadow(0px 0px 30px #dd6e27);
	   }
	   
	   .more-apps .audiohijack a img {
		   -webkit-filter: drop-shadow(0px 0px 1px #fff);
		   filter: drop-shadow(0px 0px 1px #fff);
		   
		   -webkit-transition: all 300ms ease;
		    -moz-transition: all 300ms ease;
		    -o-transition: all 300ms ease;
		    transition: all 300ms ease;
		    
		    -webkit-transform: translateZ(0);
	   }
	   
	   .more-apps .audiohijack a:hover img {
		   -webkit-filter: drop-shadow(0px 0px 10px #dd6e27);
		   filter: drop-shadow(0px 0px 10px #dd6e27);
		   
		   -webkit-transition: all 300ms ease;
		    -moz-transition: all 300ms ease;
		    -o-transition: all 300ms ease;
		    transition: all 300ms ease;
	   }
	   
   /* Fission */
   .home-item.fission a:hover h2, .home-item.fission a:hover h6, .home-item.fission ul li a:hover {
	   color: #C18831;
   }
   
   		.home-item.fission a img {
		   -webkit-filter: drop-shadow(0px 0px 1px #fff);
		   filter: drop-shadow(0px 0px 1px #fff);
	   }
	   
	   .home-item.fission a:hover img {
		   -webkit-filter: drop-shadow(0px 0px 30px #C18831);
		   filter: drop-shadow(0px 0px 30px #C18831);
	   }
	   
	   .more-apps .fission a img {
		   -webkit-filter: drop-shadow(0px 0px 1px #fff);
		   filter: drop-shadow(0px 0px 1px #fff);
		   
		   -webkit-transition: all 300ms ease;
		    -moz-transition: all 300ms ease;
		    -o-transition: all 300ms ease;
		    transition: all 300ms ease;
		    
		    -webkit-transform: translateZ(0);
	   }
	   
	   .more-apps .fission a:hover img {
		   -webkit-filter: drop-shadow(0px 0px 10px #C18831);
		   filter: drop-shadow(0px 0px 10px #C18831);
		   
		   -webkit-transition: all 300ms ease;
		    -moz-transition: all 300ms ease;
		    -o-transition: all 300ms ease;
		    transition: all 300ms ease;
	   }
	   
   /* Loopback */
   .home-item.loopback a:hover h2, .home-item.loopback a:hover h6, .home-item.loopback ul li a:hover {
	   color: #3cbfbf;
   }
   
		.home-item.loopback a img {
			-webkit-filter: drop-shadow(0px 0px 1px #fff);
			filter: drop-shadow(0px 0px 1px #fff);
		}
		
		.home-item.loopback a:hover img {
			-webkit-filter: drop-shadow(0px 0px 30px #3cbfbf);
			filter: drop-shadow(0px 0px 30px #3cbfbf);
		}
		
		.more-apps .loopback a img {
			-webkit-filter: drop-shadow(0px 0px 1px #fff);
			filter: drop-shadow(0px 0px 1px #fff);
			
			-webkit-transition: all 300ms ease;
		    -moz-transition: all 300ms ease;
		    -o-transition: all 300ms ease;
		    transition: all 300ms ease;
		    
		    -webkit-transform: translateZ(0);
		}
		
		.more-apps .loopback a:hover img {
			-webkit-filter: drop-shadow(0px 0px 10px #3cbfbf);
			filter: drop-shadow(0px 0px 10px #3cbfbf);
			
			-webkit-transition: all 300ms ease;
		    -moz-transition: all 300ms ease;
		    -o-transition: all 300ms ease;
		    transition: all 300ms ease;
		}
   
   /* Nicecast */
   .home-item.nicecast a:hover h2, .home-item.nicecast a:hover h6, .home-item.nicecast ul li a:hover {
	   color: #FB110F;
   }
   
		.home-item.nicecast a img {
			-webkit-filter: drop-shadow(0px 0px 1px #fff);
			filter: drop-shadow(0px 0px 1px #fff);
		}
		
		.home-item.nicecast a:hover img {
			-webkit-filter: drop-shadow(0px 0px 30px #FB110F);
			filter: drop-shadow(0px 0px 30px #FB110F);
		}
		
		.more-apps .nicecast a img {
			-webkit-filter: drop-shadow(0px 0px 1px #fff);
			filter: drop-shadow(0px 0px 1px #fff);
			
			-webkit-transition: all 300ms ease;
		    -moz-transition: all 300ms ease;
		    -o-transition: all 300ms ease;
		    transition: all 300ms ease;
		    
		    -webkit-transform: translateZ(0);
		}
		
		.more-apps .nicecast a:hover img {
			-webkit-filter: drop-shadow(0px 0px 10px #FB110F);
			filter: drop-shadow(0px 0px 10px #FB110F);
			
			-webkit-transition: all 300ms ease;
		    -moz-transition: all 300ms ease;
		    -o-transition: all 300ms ease;
		    transition: all 300ms ease;
		}
   
   /* Piezo */
   .home-item.piezo a:hover h2, .home-item.piezo a:hover h6, .home-item.piezo ul li a:hover {
	   color: #C1773E;
   }
   
		.home-item.piezo a img {
			-webkit-filter: drop-shadow(0px 0px 1px #fff);
			filter: drop-shadow(0px 0px 1px #fff);
		}
		
		.home-item.piezo a:hover img {
			-webkit-filter: drop-shadow(0px 0px 20px #C1773E);
			filter: drop-shadow(0px 0px 20px #C1773E);
		}
		
		.more-apps .piezo a img {
			-webkit-filter: drop-shadow(0px 0px 1px #fff);
			filter: drop-shadow(0px 0px 1px #fff);
			
			-webkit-transition: all 300ms ease;
		    -moz-transition: all 300ms ease;
		    -o-transition: all 300ms ease;
		    transition: all 300ms ease;
		    
		    -webkit-transform: translateZ(0);
		}
		
		.more-apps .piezo a:hover img {
			-webkit-filter: drop-shadow(0px 0px 10px #C1773E);
			filter: drop-shadow(0px 0px 10px #C1773E);
			
			-webkit-transition: all 300ms ease;
		    -moz-transition: all 300ms ease;
		    -o-transition: all 300ms ease;
		    transition: all 300ms ease;
		}
		
   /* Freebies */
   .home-item.freebies a:hover h2, .home-item.freebies a:hover h6, .home-item.freebies ul li a:hover {
	   color: #2F72C0;
   }
   
		.home-item.freebies a img {
			-webkit-filter: drop-shadow(0px 0px 1px #fff);
			filter: drop-shadow(0px 0px 1px #fff);
			-webkit-transform: translateZ(0);
		}
		
		.home-item.freebies a:hover img {
			-webkit-filter: drop-shadow(0px 0px 20px #2F72C0);
			filter: drop-shadow(0px 0px 20px #2F72C0);
			-webkit-transform: translateZ(0);
		}
   
	.home-item a:active img {
		-webkit-filter: drop-shadow(0px 0px 30px #000) !important;
		filter: drop-shadow(0px 0px 30px #000) !important;
	}
   
   /* News */
   #news h4 {
	   font-size: 14px;
   }
   
   #news-mod ol, #news-mod ol li {
	   list-style: none;
	   margin: 0;
	   padding: 0;
	   font-size: 14px;
	   line-height: 16px;
   }
   
   #news-mod ol li img {
	   display: none;
   }
   
   #news-mod ol li a {
	   text-decoration: none;
	   font-size: 16px;
	   line-height: 18px;
	   display: block;
	   margin: 0 0 15px;
	   
	   font-family: '.SFNSText-Light', 'Source Sans Pro', 'Helvetica Neue', Helvetica, Sans-serif;
	   font-weight: 200;
   }
   
   #news-mod ol li em {
	   font-family: '.SFNSText-Light', 'Source Sans Pro', 'Helvetica Neue', Helvetica, Sans-serif;
	   font-weight: 200;
	   font-style: normal;
	   font-size: 12px;
	   line-height: 14px;
	   display: block;
	   color: #859398;
	   margin: 0;
	   padding: 0;
   }
   
   a.quick-support-link {
	   margin: 23px 0 30px;
	   display: block;
   }
   
   a.quick-support-link p {
	    font-size: 16px;
	   line-height: 18px;
   }

/* ==========================================================================
   Styles for store pages
   ========================================================================== */

#title {
	padding: 5px 30px 0px;
	margin: 0 auto;
	position: relative;
	width: 960px;
	clear: left;
}

#title.narrow, .narrow #title {
	padding: 5px 30px 0px;
	margin: 0 auto;
	position: relative;
	width: 680px;
	clear: left;
}

#title h1 {
	font-size: 36px;
	line-height: 36px;
	text-transform: none;
}

#title h2, h3.subtitle {
	font-size: 22px;
	font-weight: 300;
	color: #859398;
	font-family: '.SFNSDisplay-Light', 'Source Sans Pro', 'Helvetica Neue', Helvetica, Sans-serif;
}

.store-summary h4 {
	color: #fff;
	color: #333;
	font-weight: 500;
}

.store-summary {
	width: 100%;
	padding: 30px 15px 30px;
	margin: 0;
	background: #3e4149;
	background: #fff;
	color: #fff;
	color: #333;
}

/*
.store-summary a, .store-summary a:visited, .store-summary a:link {
	color: #c2c5cf;
	text-decoration: none;
}
*/

.store-summary p {
	margin-bottom: 15px;
}

/*
.store-summary a:hover {
	color: #fff;
}
*/

.store-summary ul {
	width: 50%;
	float: left;
	list-style: none;
	margin: 0;
	padding: 0;
}

.store-summary ul li {
	font-weight: 300;
	color: #fff;
}

.store-summary ul li strong {
	font-weight: 300;
}

#esellerate {
	width: 50%;
	float: left;
	color: #fff;
}

.store-item {
	margin-bottom: 0;
	padding: 25px 15px 10px;
	border-bottom: 1px solid #e8eaf0;
}

.store-item p {
	margin-bottom: 5px;
}

.store-item h3 {
	margin-bottom: 5px;
	margin-top: 5px;
	font-size: 20px;
}

a.storeButton, a.storeButton:link, a.storeButton:visited {
	color: #fff;
	background: #2F72C0;
	width: 100%;
	min-height: 50px;
	display: block;
	border-radius: 6px;
	padding: 5px 10px;
	margin: 5px 0 10px;
	text-decoration: none;
	font-size: 16px;
	line-height: 40px;
	text-align: center;
	font-weight: 500;
}

a.storeButton.small, a.storeButton.small:link, a.storeButton.small:visited {
	color: #fff;
	background: #2F72C0;
	display: block;
	width: intrinsic;
	min-height: 0px;
	min-height: intrinsic;
	border-radius: 6px;
	padding: 10px 15px;
	margin: 5px 0 10px;
	text-decoration: none;
	font-size: 16px;
	line-height: 16px;
	text-align: center;
	font-weight: 500;
}

a.storeButton .price {
	display: block;
	font-size: 24px;
	line-height: 24px;
}

a.storeButton .text {
	display: block;
	font-size: 12px;
	line-height: 16px;
	font-weight: 300;
	font-family: '.SFNSText-Regular', 'Source Sans Pro', 'Helvetica Neue', Helvetica, Sans-serif;
}

.store-icon {
	position: relative;
	display: inline-block;
	float: left;
	margin: 0 30px 15px 0;
}

.store-icon .badge {
	position: absolute;
	bottom: 0;
	right: 0;
	vertical-align: bottom;
}

a.cart-header-link {
	position: absolute;
	top: 30px;
	right: 30px;
	text-decoration: none;
	color: #2F72C0;
	font-size: 16px;
	font-weight: 600;
	line-height: 16px;
	
	-webkit-font-smoothing: antialiased;
	
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.cart-header-link:hover {
	color: #0062aa;
	
	-webkit-filter: brightness(0.1);
	filter: brightness(0.1);
	
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.cart-header-link img {
	margin: 0 3px 9px 0;
}

a.storeButton, a.storeButton:link, a.storeButton:visited {
	color: #fff;
	background: #2F72C0;
}

a.storeButton:hover, a.storeButton:focus, a.storeButton.small:hover, a.storeButton.small:focus {
	color: #fff;
	background: #223940;
}

a.basket-link img {
	-webkit-filter: brightness(1);
	filter: brightness(1);
	
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

a.basket-link:hover img {
	-webkit-filter: brightness(1.3);
	filter: brightness(1.3);
	
	
	-webkit-transition: all 100ms ease;
	-moz-transition: all 100ms ease;
	-o-transition: all 100ms ease;
	transition: all 100ms ease;
}

/* ==========================================================================
   FastSpring Store Page Styles
   ========================================================================== */

#home.store-page {
	width: 960px;
	padding: 15px 30px;
	background: #fff;
	font-size: 16px;
	font-family: '.SFNSText-Regular', 'Source Sans Pro', 'Helvetica Neue', Helvetica, Sans-serif;
}

#home.store-page .main-a {
	width: 100%;
}

#home.store-page .core-messages {
	border: none;
	border-radius: 10px;
	background: #fffec6;
	padding: 8px 15px;
	font-size: 12px;
	clear: both;
}

#home.store-page .store-tools.core-js-enabled-block, #store-variation-selection {
	display: inline-block;
	float: right;
	width: 500px;
}

#home.store-page #store-variation-selection-body {
	background: #000;
	background: rgba(0,0,0,0.9);
	color: #fff;
	border-radius: 10px;
}

#home.store-page #store-variation-selection-variations {
	background: none;
	color: #fff;
}

#home.store-page #store-variation-selection-variations ul li a {
	color: #fff;
	text-decoration: none;
	padding: 2px 5px;
	border-radius: 5px;
}

#home.store-page #store-variation-selection-variations ul li a:hover {
	background: #2F72C0;
	font-weight: normal; 
}

#home.store-page .store-section-customer-contact, #home.store-page .store-section-payment {
	padding: 10px 15px 0 0;
	margin-top: 40px !important;
	border-top: none !important;
}

#home.store-page .store-order-item, #home.store-page .core-form-field-group {
	background: #f4f4f4;
	padding: 15px;
	border-radius: 5px;
	margin: 15px 0 5px;
}

#home.store-page .store-payment-method {
	background: #f4f4f4;
	padding: 15px;
	border-radius: 5px;
}

.store-payment-method-pp {
	padding-top: 0 !important;
}

#home.store-page .store-order-pricing {
	border-top: 2px solid #000;
	padding: 0px 15px 0;
}

.store-decorate-silk input[type=text] {
	padding: 8px;
	border-radius: 5px;
	border: 1px solid #859398;
	box-shadow: 0 0 0px 1px #fff inset;
	outline: none;
	color: #000;
	background: #fff;
	
	-webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

#home.store-page input.store-action-input {
	padding: 2px !important;
	text-align: center;
}

#home.store-page .store-order-item-group {
	border: none !important;
	margin: 0;
}

#home.store-page .store-order-item-group-action-list {
	margin: 0 0 15px !important;
}

#home.store-page .store-order-action-more a.store-action-command, #home.store-page #store-complete-element .store-action-command,  #home.store-page #store-complete-element .store-action-command span.store-action-title {
	color: #fff;
	background: #2F72C0;
	width: 203px;
	min-height: 50px;
	display: block;
	border-radius: 6px;
	padding: 10px 0 5px !important;
	margin: 15px 0 10px;
	text-decoration: none;
	font-size: 18px !important;
	line-height: 40px;
	text-align: center;
	font-weight: 500;
	box-shadow: none !important;
	border: none !important;
	text-shadow: none !important;
}

#home.store-page #store-complete-element .store-action-command:hover {
	background: #223A40;
}

#home.store-page #store-complete-element .store-action-command span.store-action-title {
	padding: 0 !important;
	margin: 0 !important;
}

#home.store-page #store-complete-element .store-action-command {
	float: right;
}

#home.store-page span.store-action-title {
	box-shadow: none;
	border: none;
	text-shadow: none !important;
	margin: 0;
	padding: 0;
	font-size: 18px;
}

#home.store-page label {
	white-space: normal;
	font-size: 16px;
}

#home.store-page label.core-label-optional {
	font-weight: light;
}

#home.store-page label.core-label-optional::after {
	content: " (Optional)";
}

#home.store-page #have-coupon {
	clear: both;
	background: none;
}

#home.store-page .store-order-price-value {
	font-weight: bold !important;
}

#home.store-page .store-order-price-label {
	font-weight: bold !important;
	padding-right: 5px;
}

#home.store-page .store-order-action-coupon .store-action-title {
	background: none !important;
}

#home.store-page .store-page-navigation {
	margin: 0 !important;
	padding: 0 !important;
	width: 100%;
}

#home.store-page a.continue-shopping {
	text-decoration: none;
	background: url('/global/images/store/store-continue-shopping.png') no-repeat center left !important;
	background-size: 24px 16px !important;
	padding: 0px 0px 0px 30px;
	margin: 0px 0 15px !important;
	float: left;
	font-weight: bold;
	
	-webkit-filter: brightness(1);
	filter: brightness(1);
	
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

#home.store-page a.continue-shopping:hover {
	-webkit-filter: brightness(0.25);
	filter: brightness(0.25);
	
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

/* Icons */

.store-decorate-silk #store-variation-selector-command {
	background: url('/global/images/store/store-reveal.png') no-repeat center right !important;
	background-size: 16px 16px !important;
}

.store-decorate-silk #store-variation-selector-command.store-variation-selector-active {
	background: url('/global/images/store/store-remove.png') no-repeat center right !important;
	background-size: 16px 16px !important;
}

#home.store-page .store-order-item-action-delete .store-action-title {
	background: url('/global/images/store/store-remove.png') no-repeat center left !important;
	background-size: 16px 16px !important;
	
	color: #2E6FBB;
	font-weight: normal !important;
	-webkit-font-smoothing: antialiased;
	
	-webkit-filter: saturate(0.1);
	filter: saturate(0.1);
	
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
	
	-webkit-font-smoothing: antialiased;
}

#home.store-page .store-order-item-action-quantity .store-action-title {
	background: url('/global/images/store/store-update.png') no-repeat center left !important;
	background-size: 16px 16px !important;
	
	color: #2E6FBB;
	font-weight: normal !important;
	-webkit-font-smoothing: antialiased;
	
	-webkit-filter: saturate(0.1);
	filter: saturate(0.1);
	
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
	

}

#home.store-page .store-order-item-action-quantity:hover .store-action-title, #home.store-page .store-order-item-action-delete:hover .store-action-title {
	-webkit-filter: saturate(1);
	filter: saturate(1);
	
	color: #2E6FBB !important;
	-webkit-transition: all 100ms ease;
	-moz-transition: all 100ms ease;
	-o-transition: all 100ms ease;
	transition: all 100ms ease;
}

@media (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi){ 
	.store-decorate-silk #store-variation-selector-command {
		background: url('/global/images/store/store-reveal@2x.png') no-repeat center right !important;
		background-size: 16px 16px !important;
	}
	
	.store-decorate-silk #store-variation-selector-command.store-variation-selector-active {
		background: url('/global/images/store/store-remove@2x.png') no-repeat center right !important;
		background-size: 16px 16px !important;
	}
	
    #home.store-page .store-order-item-action-delete .store-action-title {
		background: url('/global/images/store/store-remove@2x.png') no-repeat center left !important;
		background-size: 16px 16px !important;
	}
	
	#home.store-page .store-order-item-action-quantity .store-action-title {
		background: url('/global/images/store/store-update@2x.png') no-repeat center left !important;
		background-size: 16px 16px !important;
	}
	
	#home.store-page a.continue-shopping {
		background: url('/global/images/store/store-continue-shopping@2x.png') no-repeat center left !important;
		background-size: 24px 16px !important;
	}
}

/* Payment Types */

#home.store-page .store-payment-type-visa {
	width: 0px !important;
	height: 0px !important;
	padding-left: 32px !important;
	padding-top: 2px !important;
	line-height: 0 !important;
	background: url('/global/images/store/card-visa.png') no-repeat center center !important;
	background-size: 32px 20px;
}

#home.store-page .store-payment-type-mastercard {
	width: 0px !important;
	height: 0px !important;
	padding-left: 32px !important;
	padding-top: 2px !important;
	line-height: 0 !important;
	background: url('/global/images/store/card-mastercard.png') no-repeat center center !important;
	background-size: 32px 20px;
}

#home.store-page .store-payment-type-amex {
	width: 0px !important;
	height: 0px !important;
	padding-left: 32px !important;
	padding-top: 2px !important;
	line-height: 0 !important;
	background: url('/global/images/store/card-amex.png') no-repeat center center !important;
	background-size: 32px 20px;
}

#home.store-page .store-payment-type-discover {
	width: 0px !important;
	height: 0px !important;
	padding-left: 32px !important;
	padding-top: 2px !important;
	line-height: 0 !important;
	background: url('/global/images/store/card-discover.png') no-repeat center center !important;
	background-size: 32px 20px;
}

#home.store-page .store-input-cc-security-code {
	background: url('/global/images/store/card-code.png') no-repeat center right !important;
	padding-right: 40px;
	padding-top: 2px !important;
}

#home.store-page .store-payment-type-pp {
	background: url('/global/images/store/logo-paypal.png') no-repeat center right !important;
	background-size: 56px 20px !important;
	width: 56px !important;
	height: 20px !important;
	padding-left: 56px;
}


@media (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi){ 
	#home.store-page .store-payment-type-visa {
		background: url('/global/images/store/card-visa@2x.png') no-repeat center center !important;
		background-size: 32px 20px !important;
	}
	
	#home.store-page .store-payment-type-mastercard {
		background: url('/global/images/store/card-mastercard@2x.png') no-repeat center center !important;
		background-size: 32px 20px !important;
	}
	
	#home.store-page .store-payment-type-amex {
		background: url('/global/images/store/card-amex@2x.png') no-repeat center center !important;
		background-size: 32px 20px !important;
	}
	
	#home.store-page .store-payment-type-discover {
		background: url('/global/images/store/card-discover@2x.png') no-repeat center center !important;
		background-size: 32px 20px !important;
	}
	
	#home.store-page .store-input-cc-security-code {
		background: url('/global/images/store/card-code@2x.png') no-repeat center right !important;
		background-size: 32px 20px !important;
		padding-right: 40px;
	}
	
	#home.store-page .store-payment-type-pp {
		background: url('/global/images/store/logo-paypal@2x.png') no-repeat center right !important;
		background-size: 56px 20px !important;
	}
}

/* Styles for license info */

.license-download-link {
	text-decoration: none;
	margin-bottom: 15px;
}

.license-download-button, .license-download-button:visited {
	color: #fff;
	font-weight: bold;
	background: #2F72C0;
	padding: 15px 30px 15px 45px;
	border-radius: 6px;
	text-decoration: none;
	margin: 0px 0 0px 0;
	float: left;
	clear: both;
	
	background: url('http://rogueamoeba.com/global/images/siteimages/icon-download-small@2x.png') no-repeat 15px 15px, #2F72C0;
	background-size: 16px 20px;
}

.license-download-button:hover {
	background: #223940;
	background: url('http://rogueamoeba.com/global/images/siteimages/icon-download-small@2x.png') no-repeat 15px 15px, #223940;
	background-size: 16px 20px;
	color: #fff;
}

.license-download-url {
	font-size: 12px; clear: both; color: #859399; margin: 0 0 15px;
}


/* ==========================================================================
   Release Notes
   ========================================================================== */

body.release {
	margin: 0;
}

#wrap.release-notes {
	width: 100%;
	padding: 0;
	margin: 0;
}

#wrap.release-notes .full.group {
	margin: 0;
	padding: 0;
}

#wrap.release-notes #title {
	padding: 15px 30px;
}

#wrap.release-notes .main.group {
	margin-bottom: 60px;
}

#wrap.release-notes a, #wrap.release-notes a:link, #wrap.release-notes a:visited {
	color: #163b57;
}

#wrap.release-notes a:hover {
	color: #3690D5;
}

#wrap.release-notes p {
	margin-bottom: 10px;
}

#wrap.release-notes h1 {
	font-size: 28px;
	line-height: 30px;
	margin-bottom: 0px;
	font-weight: 700;
	font-family: '.SFNSText-Bold', 'Source Sans Pro', 'Helvetica Neue', Helvetica, Sans-serif;
}

#wrap.release-notes h2 {
	color: #859398;
	font-size: 16px;
	line-height: 18px;
	font-weight: 300;
}

#wrap.release-notes li {
	padding: 5px 30px 5px 15px;
}

/* ==========================================================================
   Accolades section
   ========================================================================== */

#toggler:hover {
	cursor: pointer;
}

.quotes-container {
	position: relative;
	width: 100%;
	height: 210px;
	margin: 15px 0 15px;
	float: left;
	color: #fff;
	font-size: 18px;
	line-height: 26px;
}

/* Special case to make Airfoil for Windows quotes smaller */
.quotes-container.afw {
	height: 180px;
}

.quote-set {
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
	color: #fff;
	font-size: 18px;
	line-height: 26px;
}

.quote-set.active {
	pointer-events: auto;
}

.quote {
	width: 33.3333333333%;
	float: left;
	padding: 0 15px;
	-webkit-font-smoothing: antialiased;
	color: #fff;
	font-size: 18px;
	line-height: 26px;
}

.quote a {
	text-decoration: none;
}

.quote a:hover {
	text-decoration: underline;
}

.quote p {
	margin: 0;
	color: #fff;
	font-size: 18px;
	line-height: 24px;
}

.quote-name {
	font-weight: bold;
	text-align: right;
}

/* Fade Out */

.quote-set .quote.a {
	opacity: 0;
	transition: all 0.5s ease 0s;
	transform: translate(0px, 10px);
}

.quote-set .quote.b {
	opacity: 0;
	transition: all 0.5s ease 0.25s;
	transform: translate(0px, 10px); 
}

.quote-set .quote.c {
	opacity: 0;
	transition: all 0.5s ease 0.5s;
	transform: translate(0px, 10px); 
}

/* Fade In */

.quote-set.active .quote.a {
	opacity: 1;
	transition: all 0.5s ease 0.5s;
	transform: translate(0px, 0px);
}

.quote-set.active .quote.b {
	opacity: 1;
	transition: all 0.5s ease 0.75s;
	transform: translate(0px, 0px); 
}

.quote-set.active .quote.c {
	opacity: 1;
	transition: all 0.5s ease 1s;
	transform: translate(0px, 0px); 
}

/* Quote Preview Page */

#quote-preview .quotes-container, #quote-preview .quotes-container.afw {
	height: auto;
}


#quote-preview .quote-set {
	position: relative;
	float: left;
	clear: both;
	margin-bottom: 60px;
}

#quote-preview .quote-set .quote.a, #quote-preview .quote-set .quote.b, #quote-preview .quote-set .quote.c {
	opacity: 1;
	transform: translate(0px, 0px);
	pointer-events: auto;
}


/* ==========================================================================
   Support Pages
   ========================================================================== */

.alert-box {
	background: #f4f4f4;
	border-radius: 10px;
	padding: 15px 15px 15px 75px;
	margin: 15px 0 0;
	min-height: 70px;
	border: none;
	background: #f4f4f4;
	background: url('/support/images/icon-failure.png') no-repeat 15px 15px, #f4f4f4;
}

@media 
(-webkit-min-device-pixel-ratio: 2), 
(min-resolution: 192dpi) { 
    .alert-box {
	    background: url('/support/images/icon-failure@2x.png') no-repeat 15px 15px, #f4f4f4;
	    background-size: 44px 44px;
    }
}

.success-box {
	background: #f4f4f4;
	border-radius: 10px;
	padding: 15px 15px 15px 75px;
	margin: 15px 0 0;
	min-height: 70px;
	border: none;
	background: #f4f4f4;
	background: url('/support/images/icon-success.png') no-repeat 15px 15px, #f4f4f4;
}

@media 
(-webkit-min-device-pixel-ratio: 2), 
(min-resolution: 192dpi) { 
    .success-box {
	    background: url('/support/images/icon-success@2x.png') no-repeat 15px 15px, #f4f4f4;
	    background-size: 44px 44px;
    }
}

.alert-box h4 {
	color: #cc0000;
	margin-bottom: 0;
}

.success-box h4 {
	color: #16b60e;
	margin-bottom: 0;
}

.alert-box p a, .success-box p a {
	color: #333 !important;
}

.note {
	background: #f4f4f4;
	border-radius: 10px;
	padding: 15px;
	margin: 0 0 15px;
	border: none;
}

.article p, .article ol, .article ul {
	font-size: 18px;
	line-height: 26px;
	font-family: '.SFNSText-Light', 'Source Sans Pro', 'Helvetica Neue', Helvetica, Sans-serif;
	   font-weight: 300;
}

.article li {
	margin-bottom: 15px;
}

.article pre {
	font-size: 12px;
	line-height: 26px;
	padding: 0 0 0 5px;
	margin: 0 0 30px 15px;
	border-left: 4px solid #f4f4f4;
	overflow: visible;
}

.article .indent {
	padding-left: 30px;
}

p.centeredimage, .imagecaption {
	width: 100%;
	font-style: italic;
	color: #859398;
	align-content: center;
	align-items: center;
	text-align: center;
	font-size: 14px;
}

p.centeredimage img {
	align-content: center;
	align-items: center;
	margin: 0 auto 10px;
}

.kb-back {
	margin: 30px 0 45px 0px;
	padding: 0px 0 45px 0;
	text-decoration: none;
	float: left;
	clear: both;
}

/* ==========================================================================
   Company Page
   ========================================================================== */

   .section.blue {
	   background: #2F72C0;
	   color: #fff;
	   padding-bottom: 30px;
   }
   
   .section.blue a {
	   color: #CFE5FF;
   }
   
   .section.blue a:hover {
	   color: #B0D4FF;
   }
   
   .staff {
	   margin: 0 0 15px;
   }
   
   .staff img {
	   margin: 0 auto;
	   display: block;
   }
   
   .staff h3 {
	   text-align: center;
	   margin: 15px 0px 0px;
   }
   
   .staff h6 {
	   text-align: center;
	   font-family: '.SFNSText-Light', 'Source Sans Pro', 'Helvetica Neue', Helvetica, Sans-serif;
	   font-weight: 300;
	   color: #859398;
	   font-size: 14px;
   }
   
   .staff .contact {
	   text-align: center;
	   font-family: '.SFNSText-Light', 'Source Sans Pro', 'Helvetica Neue', Helvetica, Sans-serif;
	   font-weight: 300;
	   color: #859398;
	   font-size: 14px;
	   line-height: 16px;
	   margin: 0 0 20px;
   }
   
   .staff .contact a {
	   font-size: 14px;
	   text-decoration: none;
   }
   
   .job-alert {
	   padding: 15px;
	   color: #fff;
	   border-radius: 10px;
	   font-size: 16px;
	   line-height: 26px;
	   text-align: center;
	   background: #2F72C0;
	   margin: 15px 0 30px;
   }
   
   .job-alert ul {
	   margin: 0;
	   padding: 0;
   }
   
   .job-alert ul li {
	   display: inline;
	   list-style: none;
	   margin: 0;
	   padding: 0;
   }
   
   .social-icon img, img.social-icon {
	   float: left;
	   margin: 0 15px 15px 0;
   }
   
   .company-social-description {
	   padding: 0 0 0 45px;
   }
   
   .company-social-description.wide {
	   padding: 0 0 0 0;
   }
   
   .company-social-description h5 {
	   margin: 0 0 5px;
	   line-height: 18px;
	   font-size: 16px;
	   font-family: '.SFNSText-Bold', 'Source Sans Pro', 'Helvetica Neue', Helvetica, Sans-serif;
	   font-weight: 700;
   }
   
   .company-social-description p {
	   margin-bottom: 30px;
   }
   
/* ==========================================================================
   Status Page
   ========================================================================== */
   
.status-item {
	background: #f4f4f4;
	border-radius: 8px;
	padding: 15px 15px 15px;
	margin: 15px 0 15px;
	position: relative;
}

.status-item p {
	font-size: 14px;
	line-height: 18px;
}

.status-item h3 {
	margin: 10px 0 0;
}

.status-item h5 {
	font-family: '.SFNSText-Light', 'Source Sans Pro', 'Helvetica Neue', Helvetica, Sans-serif;
	font-weight: 300;
	font-size: 14px;
}

.status-item hr {
	background: #d8d8d8;
	border: none;
	height: 1px;
	box-shadow: none;
}

.status-item.partial h4 {
	color: #DBC31B;
}

.status-item.full h4 {
	color: #2CB225;
}

.status-item.none h4 {
	color: #CC0000;
}

.status-item .status-badge {
	position: absolute;
	top: 0;
	right: 0;
	-webkit-border-top-right-radius: 8px;
	-moz-border-radius-topright: 8px;
	border-top-right-radius: 8px;
}

.status-item p {
	text-align: left;
}


/* ==========================================================================
   Photoswipe Image Galleries
   ========================================================================== */

.pswp__bg {
	background: #000 !important;
}

.pswp__img--placeholder--blank {
	background: none !important;
}

.pswp__images--placeholder--blank {
	background: none !important;
}

.pswp__caption__center {
	font-size: 32px !important;
	line-height: 32px !important;
	text-align: center !important;
	font-weight: 300 !important;
	color: #fff !important;
	padding: 30px;
	opacity: 1 !important;
	background: none !important;
	
	width: 100% !important;
	max-width: 100% !important;

	font-family: '.SFNSDisplay-Bold', 'Source Sans Pro', 'Helvetica Neue',Helvetica, Sans-serif;
	font-weight: 800 !important;
}


.pswp__ui--fit .pswp__top-bar, .pswp__top-bar {
	background: none !important;
}

pswp__caption pswp__caption--fake, .pswp__ui--fit .pswp__caption {
	background: none !important;
	opacity: 1 !important;
	padding: 30px;
}


/* ==========================================================================
   Helper classes
   ========================================================================== */

.bold {
	font-weight: 600;
}

.align-left {
	text-align: left;
	float: left;
}

.align-right {
	text-align: right;
	float: right;
}

.align-center {
	text-align: center;
}

.no-decoration {
	text-decoration: none;
}

.clear {
	clear: both;
}

.hidden {
    display: none !important;
    visibility: hidden;
}

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

.invisible {
    visibility: hidden;
}

.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
	}
* html .clearfix             { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */

/* ==========================================================================
   Mobile Styles
   ========================================================================== */

@media (max-width: 600px) {
	
	/* Utility Classes */
	.mobile-hide {
		display: none;
	}
	
	.mobile-full {
		width: 100%;
		margin-left: 0 !important;
		margin-right: 0 !important;
		margin-top: 15px !important;
	}
	
	.mobile-only {
		visibility: visible;
	}
	
	/* Mobile Layout */
	.content.narrow, #title.narrow, .column, .section, input, .narrow .content, #footer .content
	{
		width: 100%;
		min-width: 100%;
	}
	
	.two-column {
		column-count: 1; -moz-column-count: 1;
	}
	
	.content {
		margin-top: 0px;
		padding-top: 10px;
		max-width: 100%;
	}
	
	#title, #title.narrow, .narrow #title {
		padding-top: 30px;
		width: 100%;
		min-width: 100%;
		clear: both;
	}
	
	#title h1 {
		text-align: left;
		font-size: 30px;
		width: 100%;
		font-size: 34px;
		margin-bottom: 10px;
	}
	
	#title h2 {
		width: 100%;
		line-height: 24px;
		font-size: 18px;
	}
	
	a.storeButton {
		margin-left: 0 !important;
		margin-right: 0 !important;
		display: block;
	}
	
	/* Navigation */
	#header {
		background: none;
		text-align: center;
		height: auto;
		margin-bottom: 0px;
		float: left;
		clear: both;
	}
	
	#logo {
		width: 50%;
		float: left;
		margin: 0 0 -15px;
		padding: 0;
	}
	
	#tagline {
		width: 50%;
		color: #333;
		padding: 0;
		margin: 8px 0 0;
	}
	
	#nav {
		clear: left;
		width: 100%;
		background: #2F72C0;
		text-align: center;
		padding: 5px 0;
	}
	
	#header ul {
		text-align: center;
	}
	
	#header ul li {
		display: inline-block;
		float: none;
	}
	
	#header ul li a {
		font-size: 16px;
		background: none !important;
		float: none;
		padding: 10px 30px;
	}
	
	#header ul li, #header ul li.active:hover {
		background: none !important;
		padding: 5px 0;
	}
	
	#header ul li.active a {
		color: #D5E2F2 !important;
	}
	
	a.action-small.download, a.action-small.purchase {
		width: 100%;
		max-width: 100%;
		min-width: 100%;
		display: block;
		float: left;
		clear: both;
	}
	
	.store-item h3 {
		width: 100%;
		clear: both;
	}
	
	.store-description, .store-description h2 {
		padding: 0;
		width: 100%;
		clear: both;
	}
	
	.content img {
		max-width: 100% !important;
		height: auto !important;
	}
	
	#fsp-cart-link {
		display: none;
	}
}


/* ==========================================================================
   Print styles
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
	    content: " (" attr(title) ")";
    }

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}