html
{
	background-color: #f6f6f6;
	color: #505050;
	font-family: "Helvetica Neue", Arial, sans-serif;
	font-weight: 300;
}


p
{
	line-height: 150%;
}

a, a:visited
{
	color: #0088cc;
	text-decoration: none;
}

a:active
{
	color: #0066aa;
}



h1, h2, h3, h4, h5, h6
{
	font-family: "Merriweather";
	font-weight: 700;
/* 	line-height: 90%; */
}

.minContainer{
	position: absolute;
	top: 50px;
	left: 50px;
	display: inline-block;
}


.minLogoDiv{
	background-size: 100%;
	background-image:url(../img/rb.svg);
	width: 100px;
	height: 100px;
}

.minTextDiv{

	font-family: "Open Sans";
	font-weight: 600;
}




/* columns etc */
.grid
{
	max-width: 940px;
	margin: 0px auto;
}

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

.solid-block{
	width: 100%;
	margin: 0px;
	padding: 0px;
	background-color: #ffffff;
	border-bottom: 1px solid #e9e9e9;
}

.col-1-3
{
	width: 33.3%;

}

.col-2-3
{
	width: 66.6%;
}

.col-1-2
{
	width: 50%;
}

.col-1-4
{
	width: 25%;
}

.col-1-6 {
	
	width: 16.66%;
	
	
}

[class*='col-'] {
  float: left;
  padding-right: 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

[class*='col-']:last-of-type {
  padding-right: 0;
}

.grid-pad {
  padding: 20px 0 20px 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.grid-pad > [class*='col-']:last-of-type {
  padding-right: 20px;
}

/* specific text styles etc */

.code
{
	font-size: 14px;
	color: #888888;
	font-family:  "Consolas", "Courier", monospace;
	line-height: 110%;

}


.hero-header
{
	width: 100%;
	min-height: 420px;
	text-align: center;
}

.hero-header h1
{

	padding-top: 90px;
	margin: 0px;

}

.hero-header span {
	color: rgba(255,255,255,0.7);
	display: inline-block;
	height: 50px;
	margin-top: 50px;
}

.mini-header
{
	width: 100%;
	min-height: 100px;
	text-align: center;
}

.mini-header h1
{

	padding-top: 20px;
	margin: 0px;

}

.endStamp {
	margin: 80px auto;
	background-image: url(../img/rb.svg);
	width: 100px;
	height: 100px;
	background-size: 100%;
}


/* button courtesy of chad mazzola - http://hellohappy.org/css3-buttons/ */

	
	.button, a.button {
    /* Structure */
    display: inline-block;
    *display: inline; /*IE 6/7*/
    zoom: 1;
    line-height: normal;
    white-space: nowrap;
    vertical-align: baseline;
    text-align: center;
    cursor: pointer;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Firefox: Get rid of the inner focus border */
.button::-moz-focus-inner {
    padding: 0;
    border: 0;
}
	.button, a.button {
    font-family: inherit;
    font-size: 100%;
    *font-size: 90%; /*IE 6/7 - To reduce IE's oversized button text*/
    *overflow: visible; /*IE 6/7 - Because of IE's overly large left/right padding on buttons */
    padding: 0.5em 1em;
    color: #444; /* rgba not supported (IE 8) */
    color: rgba(0, 0, 0, 0.80); /* rgba supported */
    *color: #444; /* IE 6 & 7 */
    border: 1px solid #999;  /*IE 6/7/8*/
    border: none rgba(0, 0, 0, 0);  /*IE9 + everything else*/
    background-color: #E6E6E6;
    text-decoration: none;
    border-radius: 2px;
}

.button-hover,
.button:hover,
.button:focus {
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#1a000000',GradientType=0);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(transparent), color-stop(40%, rgba(0,0,0, 0.05)), to(rgba(0,0,0, 0.10)));
    background-image: -webkit-linear-gradient(transparent, rgba(0,0,0, 0.05) 40%, rgba(0,0,0, 0.10));
    background-image: -moz-linear-gradient(top, rgba(0,0,0, 0.05) 0%, rgba(0,0,0, 0.10));
    background-image: -o-linear-gradient(transparent, rgba(0,0,0, 0.05) 40%, rgba(0,0,0, 0.10));
    background-image: linear-gradient(transparent, rgba(0,0,0, 0.05) 40%, rgba(0,0,0, 0.10));
}
.button:focus {
    outline: 0;
}
.button-active,
.button:active {
    box-shadow: 0 0 0 1px rgba(0,0,0, 0.15) inset, 0 0 6px rgba(0,0,0, 0.20) inset;
}


.button.large {
	
		background: #d45510; /* Old browsers */
	background: -moz-linear-gradient(top, #d45510 0%, #ee7d15 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#d45510), color-stop(100%,#ee7d15)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #d45510 0%,#ee7d15 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #d45510 0%,#ee7d15 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #d45510 0%,#ee7d15 100%); /* IE10+ */
	background: linear-gradient(to bottom, #d45510 0%,#ee7d15 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d45510', endColorstr='#ee7d15',GradientType=0 ); /* IE6-9 */
	
	color: white;
	font-size: 120%;
	
}

/*
button, a.button {
  background-color: #eeeeee;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #eeeeee), color-stop(100%, #cccccc));
  background-image: -webkit-linear-gradient(top, #eeeeee, #cccccc);
  background-image: -moz-linear-gradient(top, #eeeeee, #cccccc);
  background-image: -ms-linear-gradient(top, #eeeeee, #cccccc);
  background-image: -o-linear-gradient(top, #eeeeee, #cccccc);
  background-image: linear-gradient(top, #eeeeee, #cccccc);
  border: 1px solid #ccc;
  border-bottom: 1px solid #bbb;
  border-radius: 3px;
  color: #333;
  font: bold 11px/1 "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
  padding: 8px 0;
  text-align: center;
  text-shadow: 0 1px 0 #eee;
  width: 150px; }
  
  button:hover, a.button:hover {
    background-color: #dddddd;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #dddddd), color-stop(100%, #bbbbbb));
    background-image: -webkit-linear-gradient(top, #dddddd, #bbbbbb);
    background-image: -moz-linear-gradient(top, #dddddd, #bbbbbb);
    background-image: -ms-linear-gradient(top, #dddddd, #bbbbbb);
    background-image: -o-linear-gradient(top, #dddddd, #bbbbbb);
    background-image: linear-gradient(top, #dddddd, #bbbbbb);
    border: 1px solid #bbb;
    border-bottom: 1px solid #999;
    cursor: pointer;
    text-shadow: 0 1px 0 #ddd; }
	
  button:active, a.button:active {
    border: 1px solid #aaa;
    border-bottom: 1px solid #888;
    -webkit-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
    box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee; }

	a.button
	{
		padding-left: 8px;
		padding-right: 8px;
		text-decoration: none;
	}
*/

.octave-header
{
	border-bottom: 1px solid #8B300F;
	
	background: #d45510; /* Old browsers */
	background: -moz-linear-gradient(top, #d45510 0%, #ee7d15 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#d45510), color-stop(100%,#ee7d15)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #d45510 0%,#ee7d15 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #d45510 0%,#ee7d15 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #d45510 0%,#ee7d15 100%); /* IE10+ */
	background: linear-gradient(to bottom, #d45510 0%,#ee7d15 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d45510', endColorstr='#ee7d15',GradientType=0 ); /* IE6-9 */
	
}

.octave-header h1
{
	color: #ffffff;
	text-transform: none;
	font-family:"Hoefler Text", "Merriweather";
	font-weight: 300;
	font-style: italic;
	font-size: 140px;
	line-height: 170px;
	
	    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;

}

.navish-title
{
	padding-left: 40px;
	padding-top: 20px;
	float: left;


}

.navish-title, .navish-title a
{
	color: #ffffff;
	text-transform: none;
	font-family:"Merriweather";
	font-weight: 700;
	font-style: italic;
	font-size: 50px;
	line-height: 50px;
}

.octave-header p
{

/* 	font-weight: 600; */
	margin: 0px;
	color: #222222;
	padding-bottom: 30px;

}

.octave-header p> span
{
	font-weight: 800;
	font-style: none;
}

.octave-links
{

	
	text-align: left;

	
}


.download-link
{
	padding-top: 30px;
	padding-bottom: 12px;
	margin: 0px auto;
	text-align: center;
}

.octave-links {
	
	padding: 10px;
	border-radius: 3px;
	border: 1px solid #cacaca;
	background-color: #fafafa;
	max-width: 200px;
	text-align: center;
}

.octave-links a, .octave-links
{
/* 	font-family: "Merriweather", 'Lucida Grande', 'Lucida Sans Unicode', 'Lucida Sans', Geneva, Verdana, sans-serif; */
	font-size: 18px;	
	font-style: normal;
		
			color: #ee7d15;

}
.octave-links a
{
font-weight: 600;

}

.octave-links a:hover
{
color: #d45510;
}

.whats-included
{
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */

	background-color: #fcfcfc;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;

	border: 1px solid #aaaaaa;

	padding: 25px !important;

margin-top: -100px;
box-shadow: 0px 0px 5px rgba(0,0,0,0.25);
 -webkit-transform: rotate(1deg);
}

.whats-included h3
{
font-family: "Merriweather";
	padding-left: 22px;
font-weight: 700;
}


.whats-included ul li{
padding-bottom: 8px;
padding-right: 10px;
}


.question-mark
{

	text-align: center;
	color: #dedede;
		font-family:"Merriweather";
		font-weight: 400;
		font-style: italic;
		font-size: 200px;
		line-height: 210px;


}

.points
{
	font-family: "Merriweather";
	color: #d45510;
	font-weight: 400;
	font-size: 20px;
	margin-bottom: 8px;
}


h1#custom {
	
	font-size: 56px;
	color: #ee7d15;
	color: #d45510;
	color: #e06912;
}

.pricing-hero {
	
	background-color: #fafafa;
	border: 1px solid #cacaca;
	border-radius: 2px;
	text-align: center;
	font-size: 20px;
	padding: 12px;
	margin: 30px 0;
}


.pricing-hero span {
	
	font-size: 24px;
	font-weight: 700;
	font-family: "Merriweather";
	
}



p.question
{
	font-family:"Merriweather";
	color: #727F79;
	margin-bottom: 0px;
	margin-top: 20px;
}


/*
p.question:before
{
	content:"Q: ";
}
*/

p.answer
{
	margin-top: 8px;
	font-weight: 300;
}

p.tip {
	margin-top: 8px;
	font-size: 13px;
	padding: 20px;
	margin: 15px 0;
	border-radius: 10px;
	background-color: #eeeeee;
}

@media (max-width: 767px){
	
	[class*='col-'] {
	  float: none;
	  padding-right: 0px;
  }
  
  .octave-header h1 {
	  font-size: 70px;
	  line-height: 80px;
	  padding-top: 30px !important;
  }
  
  .octave-header p{
	  font-size: 12px;
	  padding-left: 30px;
	  padding-right: 30px;
  }
  
  .hero-header{
	  height: 240px;
	  min-height: 240px;
  }
  
  .hero-header span {

  	margin-top: 35px;
  }
  
  .col-1-3
  {
  	width: 100%;

  }

  .col-2-3
  {
  	width: 100%;
  }

  .col-1-2
  {
  	width: 100%;
  }

  .col-1-4
  {
  	width: 100%;
  }
  
  .grid-pad{
	  padding: 15px;
  }
  
  .whats-included{
  margin-top: 0px;
  margin-left: -3px;
}

h1#custom {
	
	font-size: 48px;
}

.no-mobile{
	display: none;
}
}