/*
==================================================

* Credits
----------------------
* Skeleton V1.2
* Copyright 2011, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 6/20/2012


* Table of Contents
----------------------
	#Reset & Basics
	#Basic Styles
	#Site Styles
	#Typography
	#Links
	#Lists
	#Images
	#Buttons
	#Forms
	#Misc


	#Header
	#Content
		#Home
		#Content
		#Review Slider
		#Features
		#Overview
		#CTA
		#Author
		#Purchase
		#Contact
		#Footer

	#Media Queries

==================================================
*/
/* #Reset & Basics (Inspired by E. Meyers)
================================================== */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* #Basic Styles
================================================== */
html {
  overflow-x: hidden;
}
body {
  background: transparent;
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5em;
  color: #666666;
  -webkit-font-smoothing: antialiased;
  /* Fix for webkit rendering */

  -webkit-text-size-adjust: 100%;
}
/* #Typography
================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #333333;
  font-family: 'Roboto Slab', serif;
  font-weight: 300;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-weight: inherit;
}
h1 {
  font-size: 46px;
  line-height: 50px;
  margin-bottom: 14px;
}
h2 {
  font-size: 35px;
  line-height: 40px;
  margin-bottom: 10px;
}
h3 {
  font-size: 28px;
  line-height: 34px;
  margin-bottom: 8px;
}
h4 {
  font-size: 21px;
  line-height: 30px;
  margin-bottom: 4px;
}
h5 {
  font-size: 17px;
  line-height: 24px;
}
h6 {
  font-size: 14px;
  line-height: 21px;
}
p {
  margin: 0 0 20px 0;
}
p img {
  margin: 0;
}
em {
  font-style: italic;
}
strong {
  font-weight: bold;
  color: #333333;
}
small {
  font-size: 80%;
  color: #999999;
}
/*	Blockquotes  */
blockquote,
blockquote p {
  font-size: 18px;
  line-height: 26px;
  color: #333333;
  font-style: italic;
}
blockquote {
  margin: 0 0 20px;
  padding: 9px 20px 0 19px;
  border-left: 1px solid #ddd;
}
blockquote cite {
  display: block;
  font-size: 12px;
  color: #555;
}
blockquote cite:before {
  content: "\2014 \0020";
}
hr {
  border: solid #ddd;
  border-width: 1px 0 0;
  clear: both;
  margin: 10px 0 30px;
  height: 0;
}
/* #Links
================================================== */
a,
a:visited {
  color: #ca9626;
  text-decoration: none;
  outline: 0;
}
a:hover,
a:focus {
  color: #333333;
}
p a,
p a:visited {
  line-height: inherit;
}
/* #Lists
================================================== */
ul,
ol {
  margin-bottom: 20px;
}
ul {
  list-style: none outside;
}
ol {
  list-style: decimal;
}
ol,
ul.square,
ul.circle,
ul.disc {
  margin-left: 30px;
}
ul.square {
  list-style: square outside;
}
ul.circle {
  list-style: circle outside;
}
ul.disc {
  list-style: disc outside;
}
ul ul,
ul ol,
ol ol,
ol ul {
  margin: 4px 0 5px 30px;
  font-size: 90%;
}
ul ul li,
ul ol li,
ol ol li,
ol ul li {
  margin-bottom: 6px;
}
li {
  line-height: 18px;
  margin-bottom: 12px;
}
ul.large li {
  line-height: 21px;
}
li p {
  line-height: 21px;
}
/* #Images
================================================== */
img {
  max-width: 100% !important;
  height: auto;
  display: block;
}
/* #Buttons
================================================== */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  background: #ca9626;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  color: #fff !important;
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 20px;
  line-height: normal;
  padding: 10px 20px;
  font-family: 'Pacifico', cursive;
  border: 0;
}
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:active,
button:active,
input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active {
  color: #fff !important;
  background: #333333;
}
.button.full-width,
button.full-width,
input[type="submit"].full-width,
input[type="reset"].full-width,
input[type="button"].full-width {
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
  text-align: center;
}
/* Fix for odd Mozilla border & padding issues */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/* #Forms
================================================== */
form {
  margin-bottom: 20px;
}
fieldset {
  margin-bottom: 20px;
}
input[type="text"],
input[type="password"],
input[type="email"],
textarea,
select {
  padding: 25px 20px;
  outline: none;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  font: 24px/1.5em 'Roboto Slab', serif;
  color: #999999;
  margin: 0 0 20px 0;
  width: 100%;
  max-width: 100%;
  display: block;
  margin-bottom: 20px;
  background: #f9f9f9;
  border: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
textarea {
  min-height: 200px;
  height: 200px;
}
select {
  padding: 0;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
textarea:focus {
  color: #333333;
}
label,
legend {
  display: block;
  font-weight: bold;
  font-size: 13px;
}
select {
  width: 220px;
}
input[type="checkbox"] {
  display: inline;
}
label span,
legend span {
  font-weight: normal;
  font-size: 13px;
  color: #444;
}
/* #Misc
================================================== */
.underline:after {
  content: '';
  width: 100%;
  height: 3px;
  background: #ca9626;
  position: absolute;
  top: 85%;
  left: 0;
  z-index: 1 !important;
  /* so that it doesn't overlap text */

}
.social i {
  font-size: 18px;
  color: #999999;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #999999;
  margin-right: 10px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
.social i:hover {
  border: 1px solid #ca9626;
  color: #ca9626;
}
.opacity-one {
  opacity: 1;
  filter: alpha(opacity=100);
}
.opacity-zero {
  opacity: 0;
  filter: alpha(opacity=0);
}
/* jQuery validation (contact form) error message */
.error {
  margin-bottom: 10px;
  color: #ca9626;
  font-weight: 700;
}
/* #Header
================================================== */
header {
  background: #ffffff;
  width: 100%;
  z-index: 2;
  min-height: 100px;
  line-height: 100px;
  position: fixed;
  top: 0;
  left: 0;
}
header,
img {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.logo {
  margin-top: 10px;
}
.logo img {
  max-height: 80px;
}
.scaled-down {
  min-height: 60px;
  line-height: 60px;
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.scaled-down .logo {
  margin-top: 10px !important;
}
.scaled-down .logo img {
  max-height: 42px !important;
}
.nav .menu {
  margin: 0;
}
.nav li a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #666666;
}
.nav li.active a,
.nav li a:hover,
.nav li a:active {
  color: #ca9626;
}
.menu-toggle {
  position: absolute;
  top: 0;
  right: 0;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-size: 16px;
}
.menu-toggle.open,
.menu-toggle.open i {
  color: #ca9626 !important;
}
/* #Content
================================================== */
.boxed {
  padding: 60px 0;
}
.boxed-mini {
  padding: 30px 0;
}
.landing-page .title .title-highlight {
  font-weight: 700;
  position: relative;
  z-index: 1 !important;
  /* underline */

}
.landing-page .title .title-highlight:after {
  content: '';
  width: 100%;
  height: 3px;
  background: #ca9626;
  position: absolute;
  top: 85%;
  left: 0;
  z-index: -1 !important;
  /* so that it doesn't overlap text */

}
.landing-page h3.title {
  font-size: 40px;
  margin-bottom: 40px;
}
.landing-page .section-header {
  text-align: center;
}
.landing-page .section-header .description {
  max-width: 50%;
  margin: 0 auto 50px;
}
/* /.landing-page */
.dark {
  background: #333333;
}
.dark .title {
  color: #e5e5e5;
}
.dark p {
  color: #cccccc;
}
/* Home
------------------*/
.home {
  margin-top: 100px;
  background: #f9f9f9;
}
.home h1.title {
  font-size: 36px;
  line-height: 48px;
}
.home .subtitle {
  margin-bottom: 50px;
}
.home p {
  font-size: 18px;
  line-height: 24px;
}
.home .small {
  font-size: 14px;
  line-height: 18px !important;
  color: #999999;
}
/* Review Slider
------------------*/
.reviews {
  background: #eeeeee;
  text-align: center;
  /* FlexSlider */

}
.reviews .reviews-wrap {
  width: 70%;
  margin: 0 auto;
}
.reviews blockquote {
  display: inline-block;
  border: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.reviews blockquote i {
  color: #ca9626;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 37px;
  position: absolute;
  left: 0;
  top: 3px;
}
.reviews blockquote p {
  padding-left: 50px;
  text-align: left;
}
.reviews blockquote p {
  font-weight: 400;
  font-style: italic;
  font-size: 22px;
  line-height: 1.2em;
  margin-bottom: 5px;
}
.reviews blockquote .source {
  font-size: 16px;
  font-style: normal;
  color: #999999;
}
.reviews .flex-control-nav.flex-control-paging a {
  opacity: 0.3;
  filter: alpha(opacity=30);
}
/* Features
------------------*/
.features {
  background: #ffffff;
  position: relative;
}
.features .feature {
  margin-bottom: 20px;
}
.features .feature-icon {
  float: left;
  background: #eeeeee;
  text-align: center;
  width: 100px;
  height: 100px;
  margin-right: 20px;
}
.features .feature-icon i {
  color: #ca9626;
  font-size: 40px;
  line-height: 100px;
}
.features .feature-title {
  float: left;
  padding: 0 20px;
  margin-right: 20px;
  text-align: center;
  line-height: 100px;
  background: #0d5f31;
  color: #e5e5e5;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  text-transform: uppercase;
}
.features .feature-description {
  min-height: 100px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: #f9f9f9;
  padding: 10px 20px;
}
/* Overview
------------------*/
.overview {
  background: #eeeeee;
}
.overview .chapter-block {
  float: left;
  margin: 0 7px;
  max-width: 220px;
}
.overview .chapter-no {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 10px;
  height: 60px;
  overflow: hidden;
}
.overview .chapter-preview-img {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 5px;
  margin-bottom: 20px;
  background: #f9f9f9;
}
.overview .chapter-title {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 18px;
  line-height: 1.5em;
  margin-bottom: 20px;
}
.overview .product-sample {
  position: relative;
  margin-top: 50px;
  margin-bottom: -60px;
}
.overview .product-sample .dl-link {
  position: absolute;
  bottom: 130px;
  left: 41%;
  z-index: 1;
}
/* CTA
------------------*/
.cta {
  text-align: center;
  background: #a8c316;
}
.cta .title {
  color: #e5e5e5;
}
.cta p {
  color: #cccccc;
}
.cta .cta-txt {
  font-family: 'Roboto Slab', serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2em;
  display: inline-block;
  margin-right: 20px;
  color: #e5e5e5;
}
.cta a.button {
  margin: 0;
}
/* Testimonials
------------------*/
.testimonials {
  background: #ffffff;
}
.testimonials .testimonial {
  background: #f9f9f9;
  padding: 20px 0;
}
.testimonials .testimonial img {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
.testimonials .profile {
  padding-top: 10px;
}
.testimonials .profile .name {
  font-family: 'Pacifico', cursive;
  font-size: 24px;
  color: #ca9626;
  float: left;
  margin-right: 20px;
}
.testimonials .profile .ratings {
  color: #fee157;
  font-size: 24px;
}
.testimonials .profile p {
  margin-top: 10px;
}
.testimonials .testimonial:nth-child(2n+1) {
  background: #ffffff;
}
.testimonials .testimonial:nth-child(2n+1) .profile {
  text-align: right;
}
.testimonials .testimonial:nth-child(2n+1) .name {
  float: right;
  margin-right: 0;
  margin-left: 20px;
}
/* Author
------------------*/
.author {
  background: #f9f9f9;
}
.author .author-info {
  width: 60%;
  margin: 0 auto;
}
.author .author-avatar {
  float: left;
  margin-right: 40px;
}
.author .author-avatar img {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
.author .author-meta {
  position: relative;
}
.author .author-meta .name {
  font-size: 30px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  color: #333333;
  display: inline-block;
  margin-bottom: 20px;
}
.author .author-meta .sig {
  position: absolute;
  left: 220px;
  top: auto;
  margin-top: 20px;
}
.author .author-description {
  margin-top: 30px;
}
/* Purchase
------------------*/
.purchase {
  background: #333333;
  /* /.price-table */

}
.purchase .title {
  color: #e5e5e5;
}
.purchase p {
  color: #cccccc;
}
.purchase .product-name {
  font-family: 'Pacifico', cursive;
  color: #ca9626;
}
.purchase .price-table {
  background: #eeeeee;
  text-align: center;
  width: 280px;
  min-height: 560px;
  position: relative;
  float: left;
  margin: 20px 30px 20px 0;
  padding-bottom: 50px;
}
.purchase .price-table:last-child {
  margin-right: 0;
}
.purchase .price-table .price-table-title,
.purchase .price-table .price,
.purchase .price-table .price-table-description {
  padding: 30px 0;
}
.purchase .price-table .price-table-title {
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  text-transform: uppercase;
}
.purchase .price-table .price {
  background: #ca9626;
  text-align: center;
}
.purchase .price-table .price p {
  font-family: 'Pacifico', cursive;
  font-size: 72px;
  color: #f2f2f2;
}
.purchase .price-table .price span {
  font-size: 30px;
}
.purchase .price-table .price-table-description {
  min-height: 250px;
}
.purchase .price-table .price-table-description p {
  margin: 0 0 5px 0;
  color: #666666;
  font-style: italic;
}
.purchase .price-table .button {
  margin: 0;
}
.purchase .price-table.recommended {
  background: #ffffff;
  padding-bottom: 50px;
  margin-top: -10px;
}
.purchase .price-table.recommended .price {
  padding: 50px 0;
}
.purchase .price-table.recommended .price-table-description {
  min-height: 270px;
}
/* Contact
------------------*/
.contact {
  background: #eeeeee;
  text-align: center;
}
.contact input[type="submit"] {
  width: 300px;
  font-size: 30px;
}


.alert {
    border: 1px solid transparent;
    border-radius: 4px;
    margin-bottom: 20px;
    padding: 15px;
	cursor: pointer;
}

.alert-success {
    background-color: #dff0d8;
    border-color: #d6e9c6;
    color: #3c763d;
}

.alert-error {
    background-color: #f2dede;
    border-color: #ebccd1;
    color: #a94442;
}



/* Footer
------------------*/
footer {
  text-align: center;
  background: #333333;
}
footer .title {
  color: #e5e5e5;
}
footer p {
  color: #cccccc;
}
footer .social i {
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 27px;
}
footer .copyright {
  margin-top: 70px;
}
footer .copyright p,
footer .copyright p a {
  color: #666666 !important;
}
footer .copyright p a:hover {
  color: #ca9626 !important;
}
footer .back-to-top {
  position: fixed;
  bottom: 20px;
  right: 5%;
}
footer .back-to-top i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background: #ca9626;
  color: #fff;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
footer .back-to-top i:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}
/* #Media Queries
================================================== */
/* Smaller than standard 960 (devices and browsers) */
@media only screen and (max-width: 959px) {
  /* Features
  ------------------*/
  .features .feature {
    text-align: center;
  }
  .features .feature-icon,
  .features .feature-title {
    float: none;
    margin-right: 0;
  }
  .features .feature-title,
  .features .feature-description {
    width: 60%;
  }
  .features .feature-title {
    display: inline-block;
    line-height: 1.3em;
    padding: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .features .feature-description {
    margin: 0 auto;
    min-height: 0;
    padding: 20px;
  }
  .features .feature-icon {
    margin: 0 auto;
  }
  /* Author
  ------------------*/
  .author {
    background: #f9f9f9;
  }
  .author .author-info {
    width: 80%;
    margin: 0 auto;
  }
  .author .author-avatar {
    float: none;
    margin: 0;
  }
  .author .author-avatar img {
    margin: 0 auto;
  }
  .author .author-meta {
    margin-top: 20px;
  }
  .author .author-meta .sig {
    left: 0;
  }
  .author .author-description {
    margin-top: 120px;
  }
  /* Purchase
  ------------------*/
  .purchase .price-table {
    width: 240px;
    margin-right: 10px;
  }
  .purchase .price-table:last-child {
    margin-right: 0;
  }
}
/* @media only screen and (max-width: 959px) */
/* Tablet Landscape & Desktops + Anything Larger */
@media only screen and (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
  .logo {
    position: absolute;
    top: 0;
    left: 0;
  }
  .nav {
    float: right;
  }
  .nav li {
    margin-right: 20px;
    display: inline-block;
  }
  .nav li:last-child {
    margin-right: 0;
  }
  /* /.nav */
}
/* @media only screen and (min-width: 768px) */
/* Tablet Portrait size to standard 960 (devices and browsers) */
@media only screen and (min-width: 768px) and (max-width: 959px) {
  
}
/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width: 767px) {
  input[type="text"],
  input[type="password"],
  input[type="email"],
  textarea,
  select {
    font: 16px/1.5em 'Roboto Slab', serif !important;
  }
  .landing-page {
    text-align: center;
  }
  .section-header {
    max-width: 90%;
    margin: 0 auto;
  }
  .section-header .title {
    line-height: 1.2em;
  }
  .section-header .description {
    max-width: 100% !important;
  }
  /* #Header
  ================================================== */
  .menu-toggle,
  .menu-toggle i {
    color: #333333 !important;
  }
  .menu {
    display: none;
  }
  .menu li {
    margin-bottom: 20px;
  }
  .menu li:first-child {
    margin-top: 20px;
  }
  /* Review Slider
  ------------------*/
  .reviews .reviews-wrap {
    width: 80%;
    margin: 0 auto;
  }
  /* Features
  ------------------*/
  .features .feature-icon,
  .features .feature-title {
    float: none;
    margin-right: 0;
  }
  .features .feature-title,
  .features .feature-description {
    width: 100%;
  }
  .features .feature-icon {
    margin: 0 auto;
  }
  /* Overview
  ------------------*/
  .overview .chapter-block {
    float: none;
    margin: 0 auto 40px;
    max-width: 300px;
  }
  .overview .chapter-preview-img {
    max-width: 220px;
    margin: 0 auto 20px;
  }
  .overview .dl-link {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
  }
  /* CTA
  ------------------*/
  .cta a.button {
    margin-top: 20px;
  }
  /* Testimonials
  ------------------*/
  .testimonials img {
    margin: 0 auto;
  }
  .testimonials .name {
    display: block;
    float: none !important;
    width: 100%;
    margin: 0 0 10px 0 !important;
  }
  .testimonials .profile {
    text-align: center !important;
  }
  /* Purchase
  ------------------*/
  .purchase .price-table,
  .purchase .price-table-description {
    min-height: 0 !important;
  }
  .purchase .price-table {
    width: 80%;
    margin: 20px 10%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .purchase .recommended {
    width: 100%;
    margin: 20px 0 !important;
  }
}
/* @media only screen and (max-width: 767px) */
/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
@media only screen and (min-width: 480px) and (max-width: 767px) {
  
}
/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 479px) {
  
}
.txtCenter {
    text-align: center;
}

.margin20 {
    width: 100%;
    margin: 20px;
    float: left;
    position: relative;
}

.griglia_1 {
    width: 100%;
    position: relative;
    float: left;
}

.griglia_1 .chapter-block {
    max-width: 31%;
    margin: 1%;
}

.griglia_1_2 .chapter-block {
    max-width: 46%;
    margin: 2%;
}