/*(c) Applied Computer Music Technologies Ltd */

/* Responsive CSS */

/*Make sure that the padding and border are 
included in the total width and height of the elements.*/

/*Chrome etc all support the pseudo element for the browser scrollbar*/

* {
  scrollbar-width: thin;
  scrollbar-color: #E08E37 #E0E0E0;
}

*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

/* Track */
*::-webkit-scrollbar-track {
  background: #E0E0E0;
}

/* Handle */
*::-webkit-scrollbar-thumb {
  background: #E08E37;
}

* {
    box-sizing: border-box;
}

.row::after {
    content: "";
    clear: both;
    display: table;
}

.row {
	background-color: #1a1a1a;
}

.row.lower {
	background-color: #1a1a1a;
}

/*Stop 4px padding being added to the bottom of images in strict html*/

img {
	vertical-align: top;
}

/*All the columns should be floating to the left, and have a padding of 15px:*/

[class*="col-"] {
    float: left;
    padding: 8px;
    /*border: 1px solid red;*/
}

/* For mobile devices*/
[class*="col-"] {
    width: 100%;
}

/*Grid of 12 columns - use these sizes when the
screen width is wider than 800px*/

@media only screen and (min-width: 800px) {
  /* For tablets: */
  .col-s-1 {width: 8.33%;}
  .col-s-2 {width: 16.66%;}
  .col-s-3 {width: 25%;}
  .col-s-4 {width: 33.33%;}
  .col-s-5 {width: 41.66%;}
  .col-s-6 {width: 50%;}
  .col-s-7 {width: 58.33%;}
  .col-s-8 {width: 66.66%;}
  .col-s-9 {width: 75%;}
  .col-s-10 {width: 83.33%;}
  .col-s-11 {width: 91.66%;}
  .col-s-12 {width: 100%;}
}

/*use these sizes when the
screen width is wider than 1360px*/

@media only screen and (min-width: 1360px) {
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}
}



div {
	position: relative; /* peekaboo bug fix for IE6 */
	min-width: 0; /* peekaboo bug fix for IE7 */
}

body {
	margin: 0;
	padding: 0;
	background: #000000;
	font-family: 'Titillium Web', 'Arial', 'Helvetica', sans-serif;
	font-size: 18px;
	color: #999999;
}

.small {
	font-size: 12px; /* 75% of the baseline */
}

.large {
	font-size: 20px; /* 125% of the baseline */
}

a {
	text-decoration: none;
	color: #565656;
}

a:hover {
	border: none;
	text-decoration: none;
	color: #63006F;
}

/* Header */

#header {
	width: 100%;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	background: #181818;
	overflow: hidden;
	/*background-image: url("./images300/background-0206D.png");*/
	color: #F0F0F0;
}

#header * {
	margin: 0;
	padding: 0;
	font-weight: normal;
	color: #F0F0F0;
}

/*Header text sizes for desktop and large screens*/

#header h1 {
	margin-top: 5px;
	margin-left: 5px;
	letter-spacing: -2px;
	font-family: 'Michroma', sans-serif;
	font-size: 1.85em;
	font-weight: normal;
	
	/*Hack to stop safari over boldening everything*/
	
	text-shadow:none;
	-webkit-font-smoothing: antialiased;
	}

#header h2 {
	margin-left: 5px;
	font-size: 1em;
	color: #F0F0F0;
	text-shadow:none;
	-webkit-font-smoothing: antialiased;
	}

/*Header text at reduced size for small screens*/

@media only screen and (max-width: 800px) {
	
#header h1 {
	margin-top: 5px;
	margin-left: 5px;
	letter-spacing: -1px;
	font-family: 'Michroma', sans-serif;
	font-size: 1.5em;
	font-weight: normal;
	
	/*Hack to stop safari over boldening everything*/
	
	text-shadow:none;
	-webkit-font-smoothing: antialiased;
	}

#header h2 {
	margin-left: 5px;
	font-size: 0.75em;
	color: #F0F0F0;
	text-shadow:none;
	-webkit-font-smoothing: antialiased;
	}

}

/*Social media buttons*/

#social {
	float: right;
	margin-right: 10px;
	z-index: 1;
}

#social img {
	vertical-align: center;
	border: none;
}

#social .socialButton {
	vertical-align: top;
	transition: filter .25s ease-in-out;
	-webkit-filter: grayscale(100%); 
	filter: grayscale(100%);
}

#social .socialButton:hover {
	-webkit-filter: grayscale(0%);
	filter: grayscale(0%);
}

/*Text box for header - logo*/

#headerbox {
	color: #F0F0F0;
	background-color: #282828;
	min-height: 128px;
	/*max-width: 1280px;*/
	margin: 4px 0px 4px 0px;
	padding: 4px 14px 4px 14px;
	text-align: left;
	text-shadow:none;
	-webkit-font-smoothing: antialiased;
}

/* Content */

.content {
	width: 100%;
	margin: 0 auto;
	padding: 0px 0px 0px 0px;
	background-color: #000000;
}

.content h3 {
	font-weight: normal;
	color: #404040;
}
		
#tagLine {
	font-size: smaller;
	color: #404040;
}

#tagLine a {
	text-decoration: none;
	color: #63006F;
}

#subheadBannerDesktop {
	background-color: #404040;
	color: #F0F0F0; 
	min-height: 48px;
	margin: 0px 0px 0px 0px; 
	padding: 0px 0px 0px 0px;
	display: block;
	text-align: left;
	clear: both;
	/*font-size: 1em;*/
	font-size: 1.125em;
	text-align: center;
	text-shadow:none;
	line-height: 48px;
	-webkit-font-smoothing: antialiased;
}

#subheadBannerMobile {
	background-color: #404040;
	color: #F0F0F0; 
	min-height: 32px;
	margin: 0px 0px 0px 0px; 
	padding: 4px 4px 4px 4px;
	display: none;
	text-align: left;
	clear: both;
	/*font-size: 1em;*/
	
	text-shadow:none;
	-webkit-font-smoothing: antialiased;
}

#subheadBannerMobile h3 {
	font-weight: normal;
	color: #F0F0F0;
}
	
#subheadBannerMobile a {
	text-decoration: none;
	color: #F0F0F0;
}

#subheadBannerMobile a:hover {
	border: none;
	text-decoration: none;
	color: #D0D0D0;
}

#subheadBannerMobile a:visited {
	text-decoration: none;
	color: #F0F0F0;
}

#subheadBanner {
	background-color: #404040;
	color: #F0F0F0; 
	line-height: 52px;
	min-height: 52px;
	margin: 0px; 
	padding: 0px;
	text-align: left;
	clear: both;
	text-shadow:none;
	-webkit-font-smoothing: antialiased;
}

#subheadBanner h3 {
	font-weight: normal;
	color: #F0F0F0;
	margin: 0px;
	}
	
#subheadBanner a {
	text-decoration: none;
	color: #F0F0F0;
}

#subheadBanner a:hover {
	border: none;
	text-decoration: none;
	color: #F0F0F0;
}

#subheadBanner a:visited {
	text-decoration: none;
	color: #F0F0F0;
}

/*Box containing product info tabs*/

#tabsBox {
	background-color: #404040;
	color: #F0F0F0; 
	margin: 0px; 
	padding: 0px;
	text-align: left;
	width: 100%;
	min-height: 52px;
	min-width: 256px;
}

/*Sticky top navigation menu*/

#navbarSticky {
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	background-color: #000000;
}

/* The sticky class is added to the navbar with JS when it reaches its scroll position */

.sticky {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 2;
}

/* Add some top padding to the page content to prevent sudden quick movement 
(as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */

.sticky + .content {
	padding-top: 50px;
}

/*when the tab bar stickys to the top we need to pad to avoid
glitching  - the stickypad class is added to the content elements after
the tab bar - default is worst case 160px, then we adjust if the layout
is altered*/

.stickypad {
	padding-top: 168px; /*The height of the tab buttons + the height of the subheadbanner*/
}

/*For screens larger than 800px*/

@media only screen and (min-width: 800px) {
  .stickypad {padding-top: 104px;} /*The height of the subheadbanner + tab buttons*/
}

/*For screens larger than 1360px*/

@media only screen and (min-width: 1360px) {
.stickypad {padding-top: 52px;} /*The height of the subheadbanner*/

}

/*Product picture above page*/

.productMasthead {
	background-color: #000000;
}

.productMasthead img {
	max-width: 100%;
	height: auto;
	width: auto\9; /* ie8 */
	border: none;
}

.topnav {
	list-style-type: none;
	background-color: #2a2a2a;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	min-height: 48px;
	text-align: left;
	overflow: hidden;
	color: #F0F0F0;
	text-shadow:none;
	-webkit-font-smoothing: antialiased;
}

.topnav {
  overflow: hidden;
  background-color: #2a2a2a;
}

.topnav a {
  float: left;
  display: block;
  color: #F0F0F0;
  text-align: center;
  padding: 8px 10px;
  text-decoration: none;
  font-size: 1.125em;
  border-bottom: 3px solid transparent;
}

.topnav a:hover {
  background-color: #545454;
  /*color: #FBB70D;*/
}

.topnav a.active {
  /*background-color: #E29500;*/
  /*color: white;*/
  border-bottom: 3px solid #E29500;
}

/*slide show carousel*/

.slide-carousel-container {
	position: relative;
	background-color: #FFFFFF;
	margin: 0px 0px 0px 0px;
	padding: 2px 0px 2px 0px;
}

.slide-carousel {
	position: relative;
	height: 27vw;
	background-color: #FFFFFF;
	margin: 2px 0px 2px 0px;
	padding: 0px 0px 0px 0px;
	overflow: hidden;
}


#slideshow .slide-holder {
	position: absolute;
	left: 0;
	width: 100%;
	background-color: #FFFFFF;
	color: #F0F0F0;
}

.slide-holder img {
	position: relative;
	width: 100%;
}

.slide-holder a {
	border: none;
	text-decoration: none;
	color: #191919;
}

.slide-holder a:hover {
	color: #63006F;
}

.caption-lower {
	position: absolute;
	left: 0;
	bottom: 0;
	margin: 5px 0px 5px 20px;
	padding: 5px 5px 5px 5px;
	width: 50%;
	color: #191919;
}

.caption-upper {
	position: absolute;
	left: 0;
	top: 10px;
	margin: 5px 0px 5px 0px;
	padding: 5px 5px 5px 5px;
	width: 50%;
}

.caption-heading {
	font-weight: normal;
	font-size: 1.125em;
	color: #191919;
	padding: 5px 0px 5px 0px;
	margin: 0px 0px 0px 0px;
}

.caption-heading a {
	text-decoration: none;
	color: #191919;
}

.caption-heading a:hover {
	color: #63006F;
}


.caption-heading2 {
	font-weight: normal;
	font-size: 1.25em;
	color: #f0f0f0;
	padding: 5px 0px 5px 0px;
	margin: 0px 0px 0px 0px;
}

/*slide nav buttons*/

.buttonFloating, .buttonFloatingLarge {
	display:inline-block;
	text-align:center;
	color:#808080;
	position:relative;
	overflow:hidden;
	z-index:1;
	padding:0;
	opacity: 0;
	border-radius:50%;
	cursor:pointer;
	font-size:24px;
	transition: opacity 0.2s;
	-webkit-transition: opacity 0.2s;
	user-drag: none; 
	user-select: none;
	-moz-user-select: none;
	-webkit-user-drag: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	}

.buttonFloating:hover, .buttonFloatingLarge:hover {
	color:#D0D0D0;
}
	
.buttonFloating{
	width: 40px;
	height: 40px;
	line-height: 40px;
}
	
.buttonFloatingLarge{
	width:56px;
	height:56px;
	line-height:56px;
}

/*Slide navigation dots*/

#navDotsContainer {
  position: absolute;
  bottom: 0;
  left:50%; 
  opacity: 0;
  transition: opacity 0.2s;
  -webkit-transition: opacity 0.2s;
  transform:translate(-50%, 0); 
  -webkit-transform:translate(-50%, 0);
  -ms-transform:translate(-50%, 0);
  
  z-index: 1;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
}

#navDotsContainer .navDot {
	width: 24px;
	height: 12px;
	background-color: #FFFFFF00;
  	border: solid 2px #A0A0A0;
	margin: 0px 4px 0px 4px;
  	border-radius: 6px;
	display: inline-block;
}

#navDotsContainer .navDot.on {
	width: 24px;
	height: 12px;
	background-color: #FFFFFF00;
  	border: solid 2px #606060;
	margin: 0px 4px 0px 4px;
  	border-radius: 6px;
	display: inline-block;
}

#navDotsContainer .navDot:hover {
	cursor: pointer;
}

/*Mobile Topnav*/

.topnav .icon {display: none;}
	
/*Only show the first menu entry and the icon on small screens*/

@media screen and (max-width:800px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

/*"responsive" class added to the topnav with JavaScript when the user clicks on the icon - 
makes the topnav look better on small screens */

@media screen and (max-width:800px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align:left;
  }
}

/* Custom bullet point*/
	
.titlePoint {
	color: #68006F;
}
	
/* Product Page Style tab links */

.tablink {
  background-color: #555555;
  color: white;
  float: left;
  border: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  outline: none;
  cursor: pointer;
  padding: 14px 8px;
  font-size: 18px;
  font-family: 'Roboto', 'Arial', 'Helvetica', sans-serif;
  width: 25%;
  max-width: 100px;
  height: 52px;
}

.tablink:hover {
  background-color: #777777;
}

/*Outer container for 'action' buttons on the tab bar (Buy Now etc)*/

.tabactionbutton {
	background-color: #404040;
	border: none;
	outline: none;
	padding: 6px 6px 6px 6px;
	width: 100%;
	height: 52px;
	display: none;
}

/*Outer container for action buttons on extra small screens - 
we switch these on and off with a media query*/

.tabactionbuttonxs {
	background-color: #404040;
	border: none;
	outline: none;
	padding: 6px 6px 6px 6px;
	width: 100%;
	height: 64px;
	display: inline-block;
}

/*Tab bar 'Buy Now' button*/

.tabbuybutton {
	background-color: #E62300;
	color: white;
	border: none;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-top-left-radius: 6px;
	-webkit-border_top-right-radius: 6px;
	-webkit-border-bottom-left-radius: 6px;
	-webkit-border-top-right-radius: 6px;
	outline: none;
	cursor: pointer;
	white-space: nowrap;
	overflow: hidden;
	text-align: center;
	text-overflow: ellipsis;
	margin: auto;
	font-size: 18px;
	font-family: 'Roboto', 'Arial', 'Helvetica', sans-serif;
	width: 100%;
	min-height: 40px;
}

/*Tab bar 'Buy Now' button for extra small screens*/

.tabbuybuttonxs {
	background-color: #E62300;
	color: white;
	border: none;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-top-left-radius: 6px;
	-webkit-border_top-right-radius: 6px;
	-webkit-border-bottom-left-radius: 6px;
	-webkit-border-top-right-radius: 6px;
	outline: none;
	cursor: pointer;
	white-space: nowrap;
	overflow: hidden;
	text-align: center;
	text-overflow: ellipsis;
	margin: auto;
	font-size: 17px;
	font-weight: bold;
	font-family: 'Roboto', 'Arial', 'Helvetica', sans-serif;
	width: 100%;
	min-height: 52px;
}

/*Optional price ticket for the tab bar */

.tabprice {
	background-color: #404040;
	border: none;
	color: white;
	outline: none;
	font-weight: bold;
	font-family: 'Roboto', 'Arial', 'Helvetica', sans-serif;
	text-align: right;
	line-height: 52px;
	font-size: 20px;
	padding: 0px;
	width: 100%;
	height: 52px;
	display: none;
}

@media only screen and (min-width: 800px) {
	.tabactionbuttonxs {
		display: none;
	}
	.tabactionbutton {
		display: inline-block;
	}
	.tabprice {
		display: inline-block;
	}
}

/*Tab bar 'Try' button*/

.tabtrybutton {
	background-color: #A0A0A0;
	color: white;
	border: none;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-top-left-radius: 6px;
	-webkit-border_top-right-radius: 6px;
	-webkit-border-bottom-left-radius: 6px;
	-webkit-border-top-right-radius: 6px;
	outline: none;
	cursor: pointer;
	white-space: nowrap;
	overflow: hidden;
	text-align: center;
	text-overflow: ellipsis;
	margin: auto;
	font-size: 17px;
	font-family: 'Roboto', 'Arial', 'Helvetica', sans-serif;
	width: 100%;
	min-height: 36px;
}

/* Style the tab content (and add height:100% for full page content) */

.tabcontent {
  color: white;
  display: none;
  height: 100%;
}
	
/*Product Page - Container for supported formats*/

.formatcontainer {
	margin: 10px 10px 10px 10px;
	padding: 10px 10px 10px 10px;
}

.formatcontainer img {
	border: none;
	margin: 0px 0px 0px 0px;
	padding: 0px 5px 0px 5px;
	vertical-align: middle;
}

/*Product page individual content item*/

.contentItem {
	background-color: #1a1a1a;
	margin: 0px 0px 0px 0px;
	padding: 25px 25px 50px 25px;
	border: none; /*1px solid #C5C5C5;*/
	text-align: left;
	color: #C0C0C0;
	text-shadow:none;
	font-family: 'Roboto', 'Arial', 'Helvetica', sans-serif;
	-webkit-font-smoothing: antialiased;
	line-height: 1.375;
}

.contentItem h3 {
	font-weight: bold;
}

.contentItem a {
	text-decoration: none;
	color: #F7BA00;
}

.contentItem a:hover {
	border: none;
	text-decoration: none;
	color: #F0F0F0;
}

/*Auto shrink images*/

.contentItem img {
	max-width: 100%;
	height: auto;
	width: auto\9; /* ie8 */
	border: none;
}

.itemHoverOpacity {
	transition: opacity 0.2s;
	-webkit-transition: opacity 0.2s;
}

.itemHoverOpacity:hover {
	border: none;
	opacity:0.60;
	filter:alpha(opacity=60);
	-webkit-backface-visibility:hidden;
}

.itemHoverHighlight {
	transition: opacity 0.1s;
	-webkit-transition: opacity 0.1s;
}

.itemHoverHighlight:hover {
	border: none;
	opacity:0.80;
	filter:alpha(opacity=80);
	-webkit-backface-visibility:hidden;
}

.rssfeed {
	text-align: left;
}

.rssfeed img {
	vertical-align: middle;
	border: none;
}

.rssheadline {
	font-family: 'Titillium Web', 'Arial', 'Helvetica', sans-serif;
	color: #404040;
}

.rssheadline a {
	text-decoration: none;
	color: #404040;
}

.rssheadline a:hover {
	border: none;
	text-decoration: none;
	color: #63006F;
}

.headline {
	color: #F0F0F0;
	font-size: 1.125em;
	text-shadow:none;
	-webkit-font-smoothing: antialiased;
	line-height: 1.75;
}

.summary {
	color: #404040;
	font-weight: normal;
	font-size: 1em;
	font-style: italic;
	text-shadow: none;
}

.emph {
	color: #F7BA00;
	font-size: 1em;
	text-shadow:none;
	-webkit-font-smoothing: antialiased;
}

.emphlight {
	color: #F0F0F0;
	font-size: 1em;
	text-shadow: none;
	-webkit-font-smoothing: antialiased;
}

.techspec li {
	padding: 8px 0px 8px 0px;
}

.featuresBox {
	background-color: #D5D5D5;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-top-left-radius: 6px;
	-webkit-border_top-right-radius: 6px;
	-webkit-border-bottom-left-radius: 6px;
	-webkit-border-top-right-radius: 6px;
	color: #000000; 
	min-height: 32px;
	margin: 4px 4px 4px 4px; 
	padding: 4px 4px 4px 4px;
	text-align: left;
	/*text-shadow:rgba(0, 0, 0, 0.01) 0 0 1px;*/
	text-shadow:none;
	-webkit-font-smoothing: antialiased;
}

.contentTable {
	border-collapse: collapse;
}

.contentColumn {
	padding: 8px;
	background-color: #2a2a2a;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-top-left-radius: 10px;
	-webkit-border_top-right-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
	-webkit-border-top-right-radius: 10px;
	/*border: solid 1px #5a5a5a;*/
	color: #C0C0C0;
	text-align: left;
	text-shadow:none;
	vertical-align: top;
	font-family: 'Roboto', 'Arial', 'Helvetica', sans-serif;
}

.contentTableCellL {
	padding: 8px;
	background-color: #1a1a1a;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-top-left-radius: 10px;
	-webkit-border_top-right-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
	-webkit-border-top-right-radius: 10px;
	color: #C0C0C0;
	text-align: center;
	vertical-align: top;
}

.contentTableCellL .headline {
	color: #F0F0F0;
	font-family: 'Titillium Web', 'Arial', 'Helvetica', sans-serif;
	font-size: 1.25em;
	text-align:left;
	text-shadow: none;
	-webkit-font-smoothing: antialiased;
}

.contentTableCellL a {
	text-decoration: none;
	color: #F7BA00;
}

.contentTableCellL a:hover {
	border: none;
	text-decoration: none;
	color: #F0F0F0;
}

.contentTabelCellL img {
	border: none;
}

.contentTableCellR {
	padding: 8px;
	background-color: #2a2a2a;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-top-left-radius: 10px;
	-webkit-border_top-right-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
	-webkit-border-top-right-radius: 10px;
	/*border: solid 1px #5a5a5a;*/
	color: #C0C0C0;
	text-align: left;
	text-shadow:none;
	vertical-align: top;
}

.contentTableCellR .headline {
	color: #F0F0F0;
	font-family: 'Titillium Web', 'Arial', 'Helvetica', sans-serif;
	font-size: 1.25em;
	-webkit-font-smoothing: antialiased;
}

.contentTableCellR .summary {
	color: #C0C0C0;
	font-weight: normal;
	font-size: 1em;
	font-style: italic;
	text-shadow: none;
}

.contentTableCellR .overview li {
	padding: 8px 0px 8px 0px;
}

.contentTableCellR .titleBlock {
	background-color: #000000;
	text-align: left;
}

.contentTableCellR a {
	text-decoration: none;
	color: #F7BA00;
}

.contentTableCellR a:hover {
	border: none;
	text-decoration: none;
	color: #F0F0F0;
}

.contentTableCellBotL {
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-top-left-radius: 10px;
	-webkit-border_top-right-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
	-webkit-border-top-right-radius: 10px;
	padding: 0px;
	background-color: #1a1a1a;
	color: #C0C0C0;
	text-align: left;
	vertical-align: top;
}

.contentTableCellBotL .headline {
	color: #F0F0F0;
	font-family: 'Titillium Web', 'Arial', 'Helvetica', sans-serif;
	font-size: 1.25em;
	text-align:left;
	text-shadow: none;
	-webkit-font-smoothing: antialiased;
}

.contentTableCellBotR {
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-top-left-radius: 10px;
	-webkit-border_top-right-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
	-webkit-border-top-right-radius: 10px;
	padding: 0px;
	background-color: #1a1a1a;
	color: #C0C0C0;
	text-align: left;
	text-shadow:none;
	vertical-align: top;
}

.contentTableCellBotR .headline {
	color: #F0F0F0;
	font-family: 'Titillium Web', 'Arial', 'Helvetica', sans-serif;
	font-size: 1.25em;
	-webkit-font-smoothing: antialiased;
}

.contentTableCellBotR .summary {
	color: #191919;
	font-weight: normal;
	font-size: 1em;
	font-style: italic;
	text-shadow: none;
}

.contentTableCellBotR .titleBlock {
	background-color: #000000;
	text-align: left;
}

.contentTableCellBotR a {
	text-decoration: none;
	color: #F7BA00;
}

.contentTableCellBotR a:hover {
	border: none;
	text-decoration: none;
	color: #F0F0F0;
}


/*Try and Buy button container*/

.buttonContainerBlock{
	width: 70%;
	max-width: 320px;
	margin: 12px auto;
	clear: both;
}

.prodButtonBox {
	display: inline-block;
	padding: 4px 0px 0px 0px;
}

.prodButtonCaption {
	align: center; padding: 0px 0px 4px 0px;
	color: #F0F0F0;
}
	

.prodTryButton {
	background-color: #C0C0C0;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-top-left-radius: 6px;
	-webkit-border_top-right-radius: 6px;
	-webkit-border-bottom-left-radius: 6px;
	-webkit-border-top-right-radius: 6px;
	margin: 2px 5px 2px 5px; 
	padding: 2px 10px 2px 10px;
	text-align: center;
	color: #1F1F1F;
	-moz-background-clip: padding-box;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	min-height: 32px;
	width: 140px;
	display: inline-block;
}

a.prodTryButton {
	border: none;
	text-decoration: none;
	color: #1F1F1F;
}

a.prodTryButton:hover {
	border: none;
	text-decoration: none;
	color: #1F1F1F;
}

a.prodTryButton img {
	border: none;
	vertical-align: middle;
}

.prodBuyButton {
	background-color: #De9303;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-top-left-radius: 6px;
	-webkit-border_top-right-radius: 6px;
	-webkit-border-bottom-left-radius: 6px;
	-webkit-border-top-right-radius: 6px;
	margin: 2px 5px 2px 5px; 
	padding: 2px 10px 2px 10px;
	text-align: center;
	color: #F0F0F0;
	-moz-background-clip: padding-box;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	min-height:32px;
	width: 140px;
	display: inline-block;
}

a.prodBuyButton {
	border: none;
	text-decoration: none;
	color: #F0F0F0;
}

a.prodBuyButton:hover {
	border: none;
	text-decoration: none;
	color: #F0F0F0;
}

a.prodBuyButton img {
	border: none;
	vertical-align: middle;
}

.prodDemoButton {
	background-color: #0775A8;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-top-left-radius: 6px;
	-webkit-border_top-right-radius: 6px;
	-webkit-border-bottom-left-radius: 6px;
	-webkit-border-top-right-radius: 6px;
	margin: 2px 5px 2px 5px; 
	padding: 10px 10px 10px 10px;
	text-align: center;
	color: #F0F0F0;
	-moz-background-clip: padding-box;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	min-height:32px;
	width: 140px;
	display: inline-block;
}

a.prodDemoButton {
	border: none;
	text-decoration: none;
	color: #F0F0F0;
}

a.prodDemoButton:hover {
	border: none;
	text-decoration: none;
	color: #F0F0F0;
}

a.prodDemoButton img {
	border: none;
	vertical-align: middle;
}

.buttonSmall {
	width: 40%;
	min-width: 90px;
}

/*container for OS logos*/

.oslogos {
	height: 48px;
	padding: 0px 10px 0px 10px;
	vertical-align: middle;
}

.oslogos img {
	border: none;
}

.mediaicons {
	display: inline-block;
	height: 48px;
	padding: 0px 0px 0px 0px;
	vertical-align: middle;
}

.mediaicons img {
	border: none;
}

#disclaimer {
	width: 975px;
	margin: 20px 20px 0px 20px;
	padding: 5px 5px 5px 5px;
	border: 1px solid #C5C5C5;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-top-left-radius: 6px;
	-webkit-border_top-right-radius: 6px;
	-webkit-border-bottom-left-radius: 6px;
	-webkit-border-top-right-radius: 6px;
	text-align: left;
	font-size: 1em;
	color: #1F1F1F;
	text-shadow:none;
	-webkit-font-smoothing: antialiased;
}

#disclaimer a:hover {
	border: none;
	text-decoration: none;
	color: #2F2F2F;
}

#disclaimer a {
	text-decoration: none;
	color: #63006F;
}

/*Promo banners*/

.promoBannerBasic {
	color: #404040; 
	min-height: 32px;
	max-width: 400px;
	margin: 4px 4px 4px 4px; 
	padding: 4px 4px 4px 4px;
	text-align: center;
	text-shadow:none;
	-webkit-font-smoothing: antialiased;
}

.promoBannerPlain {
	background-color: #F0F0F0; /*#A8A8A8;*/
	border: 1px solid #C5C5C5;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-top-left-radius: 6px;
	-webkit-border_top-right-radius: 6px;
	-webkit-border-bottom-left-radius: 6px;
	-webkit-border-top-right-radius: 6px;
	color: #000000; 
	min-height: 32px;
	max-width: 400px;
	margin: 4px 4px 4px 4px; 
	padding: 4px 4px 4px 4px;
	text-align: center;
	/*text-shadow:rgba(0, 0, 0, 0.01) 0 0 1px;*/
	text-shadow:none;
	-webkit-font-smoothing: antialiased;
}

.promoBannerYellow {
	background-color: #FFCC00;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-top-left-radius: 6px;
	-webkit-border_top-right-radius: 6px;
	-webkit-border-bottom-left-radius: 6px;
	-webkit-border-top-right-radius: 6px;
	color: #000000; 
	min-height: 32px;
	/*max-width: 400px;*/
	margin: 4px 4px 4px 4px; 
	padding: 4px 4px 4px 4px;
	text-align: center;
	/*text-shadow:rgba(0, 0, 0, 0.01) 0 0 1px;*/
	text-shadow:none;
	-webkit-font-smoothing: antialiased;
}

.bannerContainerBlock{
	max-width: 100%;
	margin: auto;
	padding: 0px 10px 0px 10px;
	clear: both;
}

/*Product Spec Table*/

.productSpecTable {
	border-spacing: 5px;
	border-collapse: separate;
	background-color: #2a2a2a;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-top-left-radius: 10px;
	-webkit-border_top-right-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
	-webkit-border-top-right-radius: 10px;
	color: #C0C0C0;
	width: 100%;
	/*border: 1px solid #5a5a5a;*/
}

.productSpecTable a {
	text-decoration: none;
	color: #B14000;
}

.productSpecTableColHeading {
	width: 32%;
	text-align: left;
}

.productSpecTableCol1 {
	width: 2%;
	text-align: left;
	padding: 5px 0px 5px 5px;
}

.productSpecTableCol2 {
	width: 30%;
	text-align: left;
	padding: 5px 0px 5px 5px;
}

.productSpecTableCol3 {
	width: 68%;
	text-align: left;
	padding: 5px 0px 5px 0px;
}

.specInfoBox {
	background-color: #B793BA;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-top-left-radius: 6px;
	-webkit-border_top-right-radius: 6px;
	-webkit-border-bottom-left-radius: 6px;
	-webkit-border-top-right-radius: 6px;
	color: #000000; 
	min-height: 32px;
	max-width: 75%;
	margin: 4px 4px 4px 4px; 
	padding: 4px 8px 4px 8px;
	text-align: left;
	/*text-shadow:rgba(0, 0, 0, 0.01) 0 0 1px;*/
	text-shadow: none;
	-webkit-font-smoothing: antialiased;
}

.specHeadingBox {
	background-color: #4a4a4a; /*#A8A8A8;*/
	/*border: 1px solid #5a5a5a;*/
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-top-left-radius: 6px;
	-webkit-border_top-right-radius: 6px;
	-webkit-border-bottom-left-radius: 6px;
	-webkit-border-top-right-radius: 6px;
	font-family: 'Titillium Web', 'Arial', 'Helvetica', sans-serif;
	color: #000000; 
	min-height: 16px;
	margin: 4px 0px 4px 0px; 
	padding: 4px 8px 4px 8px;
	/*text-align: center;*/
	/*text-shadow:rgba(0, 0, 0, 0.01) 0 0 1px;*/
	text-shadow: none;
	-webkit-font-smoothing: antialiased;
}

.specText {
	color: #C0C0C0;
	text-shadow: none;
}

.specTextHl {
	color: #F7BA00;
	text-shadow: none;
}

.specEmph {
	color: #F0F0F0;
	text-shadow: none;
}

/*System Requirements Table*/

.sysReqTable {
	border-collapse: collapse;
	background-color: #2a2a2a;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-top-left-radius: 10px;
	-webkit-border_top-right-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
	-webkit-border-top-right-radius: 10px;
	/*border: 1px solid #5a5a5a;*/
	width: 100%;
}

.sysReqTableCol1 {
	width: 40%;
	text-align: left;
	padding: 8px 0px 8px 8px;
}

.sysReqTableCol2 {
	width: 25%;
	text-align: left;
	padding: 5px 0px 5px 0px;
}

.sysReqTableCol3 {
	width: 25%;
	text-align: left;
	padding: 5px 0px 5px 0px;
}

.extraContent {
	background-color: #F0F0F0; /*#A8A8A8;*/
	border: 1px solid #C5C5C5;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-top-left-radius: 6px;
	-webkit-border_top-right-radius: 6px;
	-webkit-border-bottom-left-radius: 6px;
	-webkit-border-top-right-radius: 6px;
	font-family: 'Roboto', 'Arial', 'Helvetica', sans-serif;
	color: #404040; 
	min-height: 16px;
	margin: 4px 4px 4px 0px; 
	padding: 4px 4px 4px 4px;
	/*text-align: center;*/
	/*text-shadow:rgba(0, 0, 0, 0.01) 0 0 1px;*/
	text-shadow: none;
	-webkit-font-smoothing: antialiased;
}

.extraContent a {
	text-decoration: none;
	color: #B14000;
}

.extraContent a:hover {
	border: none;
	text-decoration: none;
	color: #D0D0D0;
}

#bottomnav {
	min-height: 48px;
	line-height: 48px;
	background-color: #2a2a2a;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	text-align: left;
	text-shadow:rgba(0, 0, 0, 0.01) 0 0 1px;
	-webkit-font-smoothing: antialiased;
}

#bottomnav a {
	text-decoration: none;
	color: #D0D0D0;
}

#bottomnav a:hover {
	border: none;
	text-decoration: none;
	color: #D0D0D0;
}

#bottomnav ul {
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}

#bottomnav li {
	color: #D0D0D0;
	display:inline-block;
	padding: 0px 10px 0px 10px;
	font-weight: normal;
	font-size: 1em;
	line-height: 48px;
}

#bottomnav li a {
		text-decoration: none; 
		outline: none; 
		padding: 0px 0px 0px 0px;
}

#bottomnav img {
	vertical-align: middle;
	border: none;
}

.demoInfoBox {
	background-color: #2a2a2a;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-top-left-radius: 10px;
	-webkit-border_top-right-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
	-webkit-border-top-right-radius: 10px;
	/*border: 2px solid #4a4a4a;*/
	color: #D0D0D0; 
	min-height: 32px;
	margin: 4px 4px 4px 4px; 
	padding: 8px 16px 8px 16px;
	text-align: left;
	/*text-shadow:rgba(0, 0, 0, 0.01) 0 0 1px;*/
	text-shadow:none;
	-webkit-font-smoothing: antialiased;
}

.demoInfoBox .headline {
	color: #E0E0E0;
	font-family: 'Titillium Web', 'Arial', 'Helvetica', sans-serif;
	text-align: center;
}

#copyrightInfoBox {
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-top-left-radius: 6px;
	-webkit-border_top-right-radius: 6px;
	-webkit-border-bottom-left-radius: 6px;
	-webkit-border-top-right-radius: 6px;
	border: 1px solid #C5C5C5;
	color: #404040;
	min-height: 32px;
	margin: 4px 20px 4px 20px; 
	padding: 4px 4px 4px 4px;
	text-align: left;
	/*text-shadow:rgba(0, 0, 0, 0.01) 0 0 1px;*/
	text-shadow:none;
	-webkit-font-smoothing: antialiased;
}

/*Shopping cart - checkout*/

#cart
{
	float: right;
	padding: 0px 20px 0px 10px;
	margin: 0px 10px 0px 10px;
	font-size: small;
}

#cart a {
	text-decoration: none;
	color: #1F1F1F;
}

#cart a:hover {
	border: none;
	text-decoration: none;
	color: #63006F;
}

#cart img {
	vertical-align: middle;
	padding: 0px 10px 0px 10px;
	border: none;
	overflow: auto;
}


#tooltip {
	background-color: rgba(0, 0, 0, 0.65); /*#E5E5E5;*/
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-top-left-radius: 6px;
	-webkit-border_top-right-radius: 6px;
	-webkit-border-bottom-left-radius: 6px;
	-webkit-border-top-right-radius: 6px;
	border: 1px solid #161616;
	color: #F0F0F0;
	font-weight: normal;
	font-size: 1.125em;
	min-height: 12px;
	min-width: 12px;
	max-width: 192px;
	padding: 4px 4px 4px 4px;
}

.left {
	float: left;
}

.right {
	float: right;
}

.center {
	text-align: center;
}

.abs-middle {
	vertical-align: middle;
}

.displayLeft{
	position:absolute;
	top:50%;
	left:0%;
	transform:translate(0%,-50%);
	-webkit-transform:translate(-0%,-50%);
	-ms-transform:translate(-0%,-50%);
}
	
.displayRight{
	position:absolute;
	top:50%;
	right:0%;
	transform:translate(0%,-50%);
	-webkit-transform:translate(0%,-50%);
	-ms-transform:translate(0%,-50%);
}

/*Social media in footer*/

#socialMediaBox{
	margin: 16px 0px 16px 0px;
	text-align: center
}

.socialMediaWidgets {
	float: none;
	margin-top: auto;
	margin-bottom: auto;
	margin-right: 10px;
}

.socialMediaWidgets img {
	vertical-align: center;
	border: none;
	margin-left: 5px;
	margin-right: 5px;
}

.socialMediaWidgets a {
	text-decoration: none;
}

/* Footer */

#footer {
	clear: both;
	height: 60px;
	margin: 0 auto;
	padding: 20px 0 0 20px;
	text-align: left;
	text-shadow:none;
	-webkit-font-smoothing: antialiased; 
}

#footer p {
	margin: 0px 25px 0px 25px;
	padding: 0;
	text-align: left;
	font-size: smaller;
	color: #808080;
}
