/* RESET rules from Eric Meyer http://meyerweb.com/eric/tools/css/reset/  */
/* line 2, ../sass/partials/_reset.scss */
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;
}

/* HTML5 display-role reset for older browsers */
/* line 23, ../sass/partials/_reset.scss */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* line 27, ../sass/partials/_reset.scss */
body {
  line-height: 1;
}

/* line 30, ../sass/partials/_reset.scss */
ol, ul {
  list-style: none;
}

/* line 33, ../sass/partials/_reset.scss */
blockquote, q {
  quotes: none;
}

/* line 36, ../sass/partials/_reset.scss */
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

/* line 41, ../sass/partials/_reset.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*** BASIC TYPOGRAPHY RULES BORROWED FROM BLUEPRINT */
/* Default font settings.
The font-size percentage is of 16px. (0.75 * 16px = 12px) */
/* line 49, ../sass/partials/_reset.scss */
html {
  font-size: 100.01%;
}

/* line 50, ../sass/partials/_reset.scss */
body {
  font-size: 100%;
  /* 16px */
  color: #222;
  background: #fff;
  font-family: "Helvetica Neue", Verdana, Arial, Helvetica, sans-serif;
}

/* Headings
-------------------------------------------------------------- */
/* line 59, ../sass/partials/_reset.scss */
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  color: #111;
}

/* line 61, ../sass/partials/_reset.scss */
h1 {
  font-size: 2.5em;
  line-height: 1;
  margin-bottom: 0.5em;
}

/* line 62, ../sass/partials/_reset.scss */
h2 {
  font-size: 1.9em;
  margin-bottom: 0.75em;
}

/* line 63, ../sass/partials/_reset.scss */
h3 {
  font-size: 1.5em;
  line-height: 1;
  margin-bottom: 1em;
}

/* line 64, ../sass/partials/_reset.scss */
h4 {
  font-size: 1.2em;
  line-height: 1.25;
  margin-bottom: 1.25em;
}

/* line 65, ../sass/partials/_reset.scss */
h5 {
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 1.5em;
}

/* line 66, ../sass/partials/_reset.scss */
h6 {
  font-size: 1em;
  font-weight: bold;
}

/* line 68, ../sass/partials/_reset.scss */
h1 img, h2 img, h3 img,
h4 img, h5 img, h6 img {
  margin: 0;
}

/* Text elements
-------------------------------------------------------------- */
/* line 77, ../sass/partials/_reset.scss */
p {
  margin: 0 0 1.5em;
  line-height: 1.5;
}

/*
These can be used to pull an image at the start of a paragraph, so
that the text flows around it (usage: <p><img class="left">Text</p>)
*/
/* line 82, ../sass/partials/_reset.scss */
.left {
  float: left !important;
}

/* line 83, ../sass/partials/_reset.scss */
p .left {
  margin: 0em 1.5em 1.5em 0;
  padding: 0;
}

/* line 84, ../sass/partials/_reset.scss */
.right {
  float: right !important;
}

/* line 85, ../sass/partials/_reset.scss */
p .right {
  margin: 0em 0 1.5em 1.5em;
  padding: 0;
}

/* line 87, ../sass/partials/_reset.scss */
a:focus,
a:hover {
  color: #09f;
}

/* line 89, ../sass/partials/_reset.scss */
a {
  color: #06c;
  text-decoration: underline;
}

/* line 91, ../sass/partials/_reset.scss */
blockquote {
  margin: 1.5em;
  color: #666;
  font-style: italic;
}

/* line 92, ../sass/partials/_reset.scss */
strong, dfn {
  font-weight: bold;
}

/* line 93, ../sass/partials/_reset.scss */
em, dfn {
  font-style: italic;
}

/* line 94, ../sass/partials/_reset.scss */
sup, sub {
  line-height: 0;
}

/* line 96, ../sass/partials/_reset.scss */
abbr,
acronym {
  border-bottom: 1px dotted #666;
}

/* line 98, ../sass/partials/_reset.scss */
address {
  margin: 0 0 1.5em;
  font-style: italic;
}

/* line 99, ../sass/partials/_reset.scss */
del {
  color: #666;
}

/* line 101, ../sass/partials/_reset.scss */
pre {
  margin: 1.5em 0;
  white-space: pre;
}

/* line 102, ../sass/partials/_reset.scss */
pre, code, tt {
  font: 1em 'andale mono', 'lucida console', monospace;
  line-height: 1.5;
}

/* Lists
-------------------------------------------------------------- */
/* line 108, ../sass/partials/_reset.scss */
li ul,
li ol {
  margin: 0;
}

/* line 110, ../sass/partials/_reset.scss */
ul, ol {
  margin: 0 1.5em 1.5em 0;
  padding-left: 1.5em;
}

/* line 112, ../sass/partials/_reset.scss */
ul {
  list-style-type: disc;
}

/* line 113, ../sass/partials/_reset.scss */
ol {
  list-style-type: decimal;
}

/* line 115, ../sass/partials/_reset.scss */
dl {
  margin: 0 0 1.5em 0;
}

/* line 116, ../sass/partials/_reset.scss */
dl dt {
  font-weight: bold;
}

/* line 117, ../sass/partials/_reset.scss */
dd {
  margin-left: 1.5em;
}

/* Tables
-------------------------------------------------------------- */
/*
Because of the need for padding on TH and TD, the vertical rhythm
on table cells has to be 27px, instead of the standard 18px or 36px
of other elements.
*/
/* line 127, ../sass/partials/_reset.scss */
table {
  margin-bottom: 1.4em;
  width: 100%;
  border: 1px solid #C9C68F;
}

/* line 130, ../sass/partials/_reset.scss */
th {
  font-weight: bold;
}

/* line 131, ../sass/partials/_reset.scss */
thead th {
  background: #E9E6AF;
  border-bottom: 1px solid #C9C68F;
  font-family: "Helvetica Neue", Verdana, Arial, Helvetica, sans-serif !important;
}

/* line 132, ../sass/partials/_reset.scss */
th, td, caption {
  padding: 10px 15px 10px 10px;
}

/*
You can zebra-stripe your tables in outdated browsers by adding
the class "even" to every other table row.
*/
/* line 137, ../sass/partials/_reset.scss */
tbody tr:nth-child(even) td,
tbody tr.even td {
  background: #E9E6AF;
}

/* line 141, ../sass/partials/_reset.scss */
tfoot {
  font-style: italic;
}

/* line 142, ../sass/partials/_reset.scss */
caption {
  background: #758053;
  font-size: 1.2em;
  font-weight: bold;
  color: white;
  -webkit-text-shadow: rgba(0, 0, 0, 0.5) -1px 0, rgba(0, 0, 0, 0.3) 0 -1px, rgba(255, 255, 255, 0.5) 0 1px, rgba(0, 0, 0, 0.3) -1px -2px;
  -moz-text-shadow: rgba(0, 0, 0, 0.5) -1px 0, rgba(0, 0, 0, 0.3) 0 -1px, rgba(255, 255, 255, 0.5) 0 1px, rgba(0, 0, 0, 0.3) -1px -2px;
  text-shadow: rgba(0, 0, 0, 0.5) -1px 0, rgba(0, 0, 0, 0.3) 0 -1px, rgba(255, 255, 255, 0.5) 0 1px, rgba(0, 0, 0, 0.3) -1px -2px;
}

/* Misc classes
-------------------------------------------------------------- */
/* line 151, ../sass/partials/_reset.scss */
.small {
  font-size: .8em;
  margin-bottom: 1.875em;
  line-height: 1.875em;
}

/* line 152, ../sass/partials/_reset.scss */
.large {
  font-size: 1.2em;
  line-height: 2.5em;
  margin-bottom: 1.25em;
}

/* line 153, ../sass/partials/_reset.scss */
.hide {
  display: none;
}

/* line 155, ../sass/partials/_reset.scss */
.quiet {
  color: #666;
}

/* line 156, ../sass/partials/_reset.scss */
.loud {
  color: #000;
}

/* line 157, ../sass/partials/_reset.scss */
.highlight {
  background: #ff0;
}

/* line 158, ../sass/partials/_reset.scss */
.added {
  background: #060;
  color: #fff;
}

/* line 159, ../sass/partials/_reset.scss */
.removed {
  background: #900;
  color: #fff;
}

/* line 161, ../sass/partials/_reset.scss */
.first {
  margin-left: 0;
  padding-left: 0;
}

/* line 162, ../sass/partials/_reset.scss */
.last {
  margin-right: 0;
  padding-right: 0;
}

/* line 163, ../sass/partials/_reset.scss */
.top {
  margin-top: 0;
  padding-top: 0;
}

/* line 164, ../sass/partials/_reset.scss */
.bottom {
  margin-bottom: 0;
  padding-bottom: 0;
}

/* MISC STYLES, clears, etc. */
/* Clearing floats without extra markup
Based on How To Clear Floats Without Structural Markup by PiE
[http://www.positioniseverything.net/easyclearing.html] */
/* line 170, ../sass/partials/_reset.scss */
.clearfix:after, .container:after, .all-about-rice-hero-container:after, .all-about-rice .factoid blockquote:after, .home-page-hero-container:after, .home-page-video-callout-container:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow: hidden;
}

/* line 178, ../sass/partials/_reset.scss */
.clearfix, .container, .all-about-rice-hero-container, .all-about-rice .factoid blockquote, .home-page-hero-container, .home-page-video-callout-container {
  display: block;
}

/* Regular clearing
apply to column that should drop below previous ones. */
/* line 183, ../sass/partials/_reset.scss */
.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

/* line 1, ../sass/modules/_helpers.scss */
.read-more {
  font-family: "Coustard", "Georgia", "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
  display: block;
  text-decoration: none;
  color: #c95628;
}
/* line 6, ../sass/modules/_helpers.scss */
.read-more:hover {
  color: #743217;
}

/* line 13, ../sass/modules/_helpers.scss */
.callout-nav .callout-nav-links, .social-nav ul, .main-footer nav ul, .primary-nav ul, .divisions-nav ul, .home-page-hero-nav ul {
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  *zoom: 1;
}
/* line 49, ../../../../../../../../.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/compass-core-1.0.3/stylesheets/compass/typography/lists/_inline-block-list.scss */
.callout-nav .callout-nav-links li, .social-nav ul li, .main-footer nav ul li, .primary-nav ul li, .divisions-nav ul li, .home-page-hero-nav ul li {
  list-style-image: none;
  list-style-type: none;
  margin-left: 0;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  white-space: nowrap;
}
/* line 16, ../sass/modules/_helpers.scss */
.callout-nav .callout-nav-links li:last-child, .social-nav ul li:last-child, .main-footer nav ul li:last-child, .primary-nav ul li:last-child, .divisions-nav ul li:last-child, .home-page-hero-nav ul li:last-child {
  margin-right: 0;
}
/* line 19, ../sass/modules/_helpers.scss */
.callout-nav .callout-nav-links a, .social-nav ul a, .main-footer nav ul a, .primary-nav ul a, .divisions-nav ul a, .home-page-hero-nav ul a {
  display: block;
}

/* line 26, ../sass/modules/_helpers.scss */
.post-list .post, .event-list .event {
  padding-bottom: 45px;
  margin-bottom: 45px;
}
/* line 29, ../sass/modules/_helpers.scss */
.post-list .post header, .event-list .event header {
  margin-bottom: 20px;
}
/* line 31, ../sass/modules/_helpers.scss */
.post-list .post header .title, .event-list .event header .title {
  font-size: 1.4em;
  margin-bottom: 10px;
}
/* line 35, ../sass/modules/_helpers.scss */
.post-list .post header time, .event-list .event header time {
  font-size: 1em;
}
@media screen and (max-width: 640px) {
  /* line 41, ../sass/modules/_helpers.scss */
  .post-list .post header .title, .event-list .event header .title {
    font-size: 1.28em;
  }
  /* line 45, ../sass/modules/_helpers.scss */
  .post-list .post .excerpt, .event-list .event .excerpt {
    display: none;
  }
}

/* line 53, ../sass/modules/_helpers.scss */
.post header, .event header {
  margin-bottom: 30px;
}
/* line 55, ../sass/modules/_helpers.scss */
.post header .title, .event header .title {
  font-size: 2.15em;
  margin-bottom: 12px;
  font-family: "Coustard", "Georgia", "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.2;
  color: #222;
}
/* line 61, ../sass/modules/_helpers.scss */
.post header .title a, .event header .title a {
  color: #222;
  -moz-transition: color 0.4s ease-in;
  -o-transition: color 0.4s ease-in;
  -webkit-transition: color 0.4s ease-in;
  transition: color 0.4s ease-in;
}
/* line 64, ../sass/modules/_helpers.scss */
.post header .title a:hover, .event header .title a:hover {
  color: #660000;
}
/* line 69, ../sass/modules/_helpers.scss */
.post header time, .event header time {
  color: #777;
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 0;
  display: block;
}
/* line 75, ../sass/modules/_helpers.scss */
.post header time span, .event header time span {
  font-weight: normal;
}
/* line 80, ../sass/modules/_helpers.scss */
.post .excerpt, .event .excerpt {
  color: #222;
  line-height: 1.5;
  font-size: 1em;
}
/* line 84, ../sass/modules/_helpers.scss */
.post .excerpt .read-more, .event .excerpt .read-more {
  margin-top: 20px;
}

/* line 92, ../sass/modules/_helpers.scss */
.post-list .post, .event-list .event, .all-about-rice-hero .video-callout, .all-about-rice .what-is-rice .video-callout, .all-about-rice .types-of-rice .video-callout, .all-about-rice .forms-of-rice .video-callout, .all-about-rice .growing-harvesting .video-callout, .all-about-rice .milling-packaging .video-callout, .all-about-rice .distribution .video-callout, .all-about-rice .health .video-callout, .all-about-rice .final .video-callout, .all-about-rice-hero .abr-hero-media, .home-page-hero, .home-page-video-callout {
  overflow: hidden;
  *zoom: 1;
}
/* line 94, ../sass/modules/_helpers.scss */
.post-list .post .media-img, .event-list .event .media-img, .all-about-rice-hero .video-callout .media-img, .all-about-rice .what-is-rice .video-callout .media-img, .all-about-rice .types-of-rice .video-callout .media-img, .all-about-rice .forms-of-rice .video-callout .media-img, .all-about-rice .growing-harvesting .video-callout .media-img, .all-about-rice .milling-packaging .video-callout .media-img, .all-about-rice .distribution .video-callout .media-img, .all-about-rice .health .video-callout .media-img, .all-about-rice .final .video-callout .media-img, .all-about-rice-hero .abr-hero-media .media-img, .home-page-hero .media-img, .home-page-video-callout .media-img {
  display: block;
  float: left;
  margin-right: 5%;
  width: 30%;
}
/* line 99, ../sass/modules/_helpers.scss */
.post-list .post .media-img > img, .event-list .event .media-img > img, .all-about-rice-hero .video-callout .media-img > img, .all-about-rice .what-is-rice .video-callout .media-img > img, .all-about-rice .types-of-rice .video-callout .media-img > img, .all-about-rice .forms-of-rice .video-callout .media-img > img, .all-about-rice .growing-harvesting .video-callout .media-img > img, .all-about-rice .milling-packaging .video-callout .media-img > img, .all-about-rice .distribution .video-callout .media-img > img, .all-about-rice .health .video-callout .media-img > img, .all-about-rice .final .video-callout .media-img > img, .all-about-rice-hero .abr-hero-media .media-img > img, .home-page-hero .media-img > img, .home-page-video-callout .media-img > img {
  display: block;
}
/* line 103, ../sass/modules/_helpers.scss */
.post-list .post .media-body, .event-list .event .media-body, .all-about-rice-hero .video-callout .media-body, .all-about-rice .what-is-rice .video-callout .media-body, .all-about-rice .types-of-rice .video-callout .media-body, .all-about-rice .forms-of-rice .video-callout .media-body, .all-about-rice .growing-harvesting .video-callout .media-body, .all-about-rice .milling-packaging .video-callout .media-body, .all-about-rice .distribution .video-callout .media-body, .all-about-rice .health .video-callout .media-body, .all-about-rice .final .video-callout .media-body, .all-about-rice-hero .abr-hero-media .media-body, .home-page-hero .media-body, .home-page-video-callout .media-body {
  overflow: hidden;
  *zoom: 1;
}

/* line 111, ../sass/modules/_helpers.scss */
.gallery ul {
  list-style-type: none;
  padding: 0;
}
/* line 115, ../sass/modules/_helpers.scss */
.gallery li {
  margin-bottom: 50px;
}
/* line 117, ../sass/modules/_helpers.scss */
.gallery li:last-child {
  margin-bottom: 0;
}
/* line 121, ../sass/modules/_helpers.scss */
.gallery figure {
  display: block;
}
/* line 123, ../sass/modules/_helpers.scss */
.gallery figure a {
  display: block;
  text-decoration: none;
}
/* line 127, ../sass/modules/_helpers.scss */
.gallery figure img {
  display: block;
  margin-bottom: 15px;
  -moz-transition: opacity 0.3s ease-in;
  -o-transition: opacity 0.3s ease-in;
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
  width: 100%;
}
/* line 132, ../sass/modules/_helpers.scss */
.gallery figure img:hover {
  opacity: 0.4;
}
/* line 136, ../sass/modules/_helpers.scss */
.gallery figure figcaption {
  display: block;
  color: #777;
  font-size: 0.86em;
}
/* line 141, ../sass/modules/_helpers.scss */
.gallery figure .thumb {
  position: relative;
}
/* line 146, ../sass/modules/_helpers.scss */
.gallery figure.media-video .thumb:after {
  content: '';
  background: transparent url(../images/video-gallery-play-icon.png) no-repeat 50% 50%;
  width: 67px;
  height: 67px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -33px;
  margin-top: -33px;
}

/* line 163, ../sass/modules/_helpers.scss */
.blog-search-form label, .recipe-search-form label {
  font-size: 1.15em;
  margin-bottom: 10px;
  line-height: 1;
  display: block;
  text-transform: none;
  color: #222;
  font-family: "Coustard", "Georgia", "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
}
/* line 172, ../sass/modules/_helpers.scss */
.blog-search-form .field-wrapper, .recipe-search-form .field-wrapper {
  overflow: hidden;
  *zoom: 1;
}
/* line 175, ../sass/modules/_helpers.scss */
.blog-search-form .keyword, .recipe-search-form .keyword, .blog-search-form .button, .recipe-search-form .button, .blog-search-form .all-about-rice-hero .button-nav a, .all-about-rice-hero .button-nav .blog-search-form a, .recipe-search-form .all-about-rice-hero .button-nav a, .all-about-rice-hero .button-nav .recipe-search-form a, .blog-search-form .all-about-rice .what-is-rice .button-nav a, .all-about-rice .what-is-rice .button-nav .blog-search-form a, .recipe-search-form .all-about-rice .what-is-rice .button-nav a, .all-about-rice .what-is-rice .button-nav .recipe-search-form a, .blog-search-form .all-about-rice .types-of-rice .button-nav a, .all-about-rice .types-of-rice .button-nav .blog-search-form a, .recipe-search-form .all-about-rice .types-of-rice .button-nav a, .all-about-rice .types-of-rice .button-nav .recipe-search-form a, .blog-search-form .all-about-rice .forms-of-rice .button-nav a, .all-about-rice .forms-of-rice .button-nav .blog-search-form a, .recipe-search-form .all-about-rice .forms-of-rice .button-nav a, .all-about-rice .forms-of-rice .button-nav .recipe-search-form a, .blog-search-form .all-about-rice .growing-harvesting .button-nav a, .all-about-rice .growing-harvesting .button-nav .blog-search-form a, .recipe-search-form .all-about-rice .growing-harvesting .button-nav a, .all-about-rice .growing-harvesting .button-nav .recipe-search-form a, .blog-search-form .all-about-rice .milling-packaging .button-nav a, .all-about-rice .milling-packaging .button-nav .blog-search-form a, .recipe-search-form .all-about-rice .milling-packaging .button-nav a, .all-about-rice .milling-packaging .button-nav .recipe-search-form a, .blog-search-form .all-about-rice .distribution .button-nav a, .all-about-rice .distribution .button-nav .blog-search-form a, .recipe-search-form .all-about-rice .distribution .button-nav a, .all-about-rice .distribution .button-nav .recipe-search-form a, .blog-search-form .all-about-rice .health .button-nav a, .all-about-rice .health .button-nav .blog-search-form a, .recipe-search-form .all-about-rice .health .button-nav a, .all-about-rice .health .button-nav .recipe-search-form a, .blog-search-form .all-about-rice .final .button-nav a, .all-about-rice .final .button-nav .blog-search-form a, .recipe-search-form .all-about-rice .final .button-nav a, .all-about-rice .final .button-nav .recipe-search-form a {
  vertical-align: top;
  float: left;
}
/* line 180, ../sass/modules/_helpers.scss */
.blog-search-form .keyword, .recipe-search-form .keyword {
  width: 70%;
  height: 18px;
  -moz-border-radius-topleft: 5px;
  -webkit-border-top-left-radius: 5px;
  border-top-left-radius: 5px;
  -moz-border-radius-bottomleft: 5px;
  -webkit-border-bottom-left-radius: 5px;
  border-bottom-left-radius: 5px;
  -moz-border-radius-topright: 0;
  -webkit-border-top-right-radius: 0;
  border-top-right-radius: 0;
  -moz-border-radius-bottomright: 0;
  -webkit-border-bottom-right-radius: 0;
  border-bottom-right-radius: 0;
}
/* line 186, ../sass/modules/_helpers.scss */
.blog-search-form .button, .recipe-search-form .button, .blog-search-form .all-about-rice-hero .button-nav a, .all-about-rice-hero .button-nav .blog-search-form a, .recipe-search-form .all-about-rice-hero .button-nav a, .all-about-rice-hero .button-nav .recipe-search-form a, .blog-search-form .all-about-rice .what-is-rice .button-nav a, .all-about-rice .what-is-rice .button-nav .blog-search-form a, .recipe-search-form .all-about-rice .what-is-rice .button-nav a, .all-about-rice .what-is-rice .button-nav .recipe-search-form a, .blog-search-form .all-about-rice .types-of-rice .button-nav a, .all-about-rice .types-of-rice .button-nav .blog-search-form a, .recipe-search-form .all-about-rice .types-of-rice .button-nav a, .all-about-rice .types-of-rice .button-nav .recipe-search-form a, .blog-search-form .all-about-rice .forms-of-rice .button-nav a, .all-about-rice .forms-of-rice .button-nav .blog-search-form a, .recipe-search-form .all-about-rice .forms-of-rice .button-nav a, .all-about-rice .forms-of-rice .button-nav .recipe-search-form a, .blog-search-form .all-about-rice .growing-harvesting .button-nav a, .all-about-rice .growing-harvesting .button-nav .blog-search-form a, .recipe-search-form .all-about-rice .growing-harvesting .button-nav a, .all-about-rice .growing-harvesting .button-nav .recipe-search-form a, .blog-search-form .all-about-rice .milling-packaging .button-nav a, .all-about-rice .milling-packaging .button-nav .blog-search-form a, .recipe-search-form .all-about-rice .milling-packaging .button-nav a, .all-about-rice .milling-packaging .button-nav .recipe-search-form a, .blog-search-form .all-about-rice .distribution .button-nav a, .all-about-rice .distribution .button-nav .blog-search-form a, .recipe-search-form .all-about-rice .distribution .button-nav a, .all-about-rice .distribution .button-nav .recipe-search-form a, .blog-search-form .all-about-rice .health .button-nav a, .all-about-rice .health .button-nav .blog-search-form a, .recipe-search-form .all-about-rice .health .button-nav a, .all-about-rice .health .button-nav .recipe-search-form a, .blog-search-form .all-about-rice .final .button-nav a, .all-about-rice .final .button-nav .blog-search-form a, .recipe-search-form .all-about-rice .final .button-nav a, .all-about-rice .final .button-nav .recipe-search-form a {
  width: 20%;
  -moz-border-radius-topright: 5px;
  -webkit-border-top-right-radius: 5px;
  border-top-right-radius: 5px;
  -moz-border-radius-bottomright: 5px;
  -webkit-border-bottom-right-radius: 5px;
  border-bottom-right-radius: 5px;
  -moz-border-radius-topleft: 0;
  -webkit-border-top-left-radius: 0;
  border-top-left-radius: 0;
  -moz-border-radius-bottomleft: 0;
  -webkit-border-bottom-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 0;
  padding: 3px 0;
  height: 30px;
}

/* line 1, ../sass/modules/_layout.scss */
.two-column-page .sidebar {
  float: left;
  width: 20%;
  margin-right: 4%;
}
@media screen and (max-width: 885px) {
  /* line 1, ../sass/modules/_layout.scss */
  .two-column-page .sidebar {
    margin-right: 8%;
    width: 30%;
  }
}
@media screen and (max-width: 640px) {
  /* line 1, ../sass/modules/_layout.scss */
  .two-column-page .sidebar {
    width: auto;
    float: none;
    margin-right: 0;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #EEE;
  }
}

/* line 19, ../sass/modules/_layout.scss */
.two-column-page .main-column {
  float: right;
  width: 76%;
}
@media screen and (max-width: 885px) {
  /* line 19, ../sass/modules/_layout.scss */
  .two-column-page .main-column {
    width: 62%;
  }
}
@media screen and (max-width: 640px) {
  /* line 19, ../sass/modules/_layout.scss */
  .two-column-page .main-column {
    width: auto;
    float: none;
  }
}

/* line 33, ../sass/modules/_layout.scss */
.two-column-page .sidebar {
  position: relative;
}
/* line 36, ../sass/modules/_layout.scss */
.two-column-page .sidebar:before, .two-column-page .sidebar:after {
  display: block;
  content: '';
  width: 15px;
  height: 666px;
  background-image: url(../images/sidebar-divider-sprite.png);
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
}
/* line 46, ../sass/modules/_layout.scss */
.two-column-page .sidebar:before {
  left: -30px;
  background-position: 0 0;
}
/* line 50, ../sass/modules/_layout.scss */
.two-column-page .sidebar:after {
  right: -30px;
  background-position: -55px 0;
}
@media screen and (max-width: 640px) {
  /* line 56, ../sass/modules/_layout.scss */
  .two-column-page .sidebar:before, .two-column-page .sidebar:after {
    display: none;
  }
}

/* line 13, ../sass/partials/_base.scss */
body {
  font-size: 87.5%;
  /* 14/16 */
  min-width: 240px;
  font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, Helvetica, sans-serif;
}

/* line 19, ../sass/partials/_base.scss */
header, footer, nav, aside, article, section {
  display: block;
}

/* line 23, ../sass/partials/_base.scss */
img, object, video, media, embed, iframe {
  max-width: 100%;
}

/* line 27, ../sass/partials/_base.scss */
.wrapper, .callout-nav, .main-footer, .page-header, .main-content-wrapper, .google-translate, .primary-nav, .divisions-nav {
  margin: 0;
  padding: 0;
  width: 100%;
}

/* line 32, ../sass/partials/_base.scss */
.container, .all-about-rice-hero-container, .all-about-rice .factoid blockquote, .home-page-hero-container, .home-page-video-callout-container {
  width: 94%;
  margin: 0 auto;
  padding: 0;
  max-width: 1400px;
}

/* line 39, ../sass/partials/_base.scss */
a {
  color: #c95628;
}
/* line 41, ../sass/partials/_base.scss */
a:hover {
  color: #743217;
}

/* line 43, ../sass/partials/_base.scss */
h1, h2, h3, h4 {
  font-family: "Coustard", "Georgia", "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
}

/* line 46, ../sass/partials/_base.scss */
h1 a, h2 a, h3 a, h4 a, h5 a {
  text-decoration: none;
}

/* line 52, ../sass/partials/_base.scss */
.chromeframe {
  padding: 20px 0;
  text-align: center;
  background-color: #b3aa19;
  color: #222;
  font-size: 1.2em;
  position: relative;
  z-index: 1000;
}
/* line 60, ../sass/partials/_base.scss */
.chromeframe p {
  max-width: 700px;
  margin: 0 auto;
}

/* line 3, ../sass/screen.scss */
.callout-nav {
  text-align: right;
}
/* line 6, ../sass/screen.scss */
.callout-nav .callout-nav-links {
  float: right;
  overflow: visible;
  font-size: 0.85em;
}
/* line 13, ../sass/screen.scss */
.callout-nav .callout-nav-links li {
  color: #777;
  padding: 10px 0;
  cursor: pointer;
  margin-right: 10px;
}
/* line 18, ../sass/screen.scss */
.callout-nav .callout-nav-links li:last-child {
  margin-right: 0;
}
/* line 21, ../sass/screen.scss */
.callout-nav .callout-nav-links li:hover {
  color: #444444;
}
/* line 23, ../sass/screen.scss */
.callout-nav .callout-nav-links li:hover i {
  color: #536e7a;
}
/* line 29, ../sass/screen.scss */
.callout-nav .callout-nav-links li i {
  margin-left: 0.25em;
  color: #86a1ad;
}
/* line 34, ../sass/screen.scss */
.callout-nav .callout-nav-links li a {
  color: #777;
  text-decoration: none;
}
/* line 37, ../sass/screen.scss */
.callout-nav .callout-nav-links li a:hover {
  color: #444444;
}
@media screen and (max-width: 640px) {
  /* line 3, ../sass/screen.scss */
  .callout-nav {
    background-color: #F2F5FF;
    border-bottom: 1px solid #d5d5d5;
    text-align: center;
  }
  /* line 46, ../sass/screen.scss */
  .callout-nav .callout-nav-links {
    float: auto;
    width: 100%;
    max-width: 100%;
    font-size: 0.75em;
  }
}

/* line 55, ../sass/screen.scss */
.social-nav {
  overflow: hidden;
  *zoom: 1;
  margin-bottom: 35px;
}
/* line 58, ../sass/screen.scss */
.social-nav h4 {
  font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, Helvetica, sans-serif;
  font-size: 0.85em;
  line-height: 1.2;
  margin-bottom: 0;
  margin-top: 10px;
  color: #86a1ad;
  float: left;
  width: 35%;
  margin-right: 2%;
  max-width: 300px;
}
/* line 74, ../sass/screen.scss */
.social-nav li {
  margin-right: 10px;
}
/* line 77, ../sass/screen.scss */
.social-nav li a {
  background-image: url(../images/social-icons-sprite.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 32px;
  height: 32px;
  text-indent: 999999px;
  -moz-transition: -moz-transform 0.3s ease;
  -o-transition: -o-transform 0.3s ease;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
}
/* line 86, ../sass/screen.scss */
.social-nav li a:hover {
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}
/* line 90, ../sass/screen.scss */
.social-nav .twitter-button a {
  background-position: 0 0;
}
/* line 93, ../sass/screen.scss */
.social-nav .facebook-button a {
  background-position: -42px 0;
}
/* line 96, ../sass/screen.scss */
.social-nav .pinterest-button a {
  background-position: -84px 0;
}
/* line 99, ../sass/screen.scss */
.social-nav .youtube-button a {
  background-position: -126px 0;
}
@media screen and (max-width: 640px) {
  /* line 55, ../sass/screen.scss */
  .social-nav {
    text-align: center;
    margin-bottom: 60px;
  }
  /* line 106, ../sass/screen.scss */
  .social-nav h4 {
    float: none;
    width: auto;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 2em;
  }
}

/* line 115, ../sass/screen.scss */
.callout-nav .social-nav {
  margin-bottom: 0;
  text-align: right;
}
/* line 118, ../sass/screen.scss */
.callout-nav .social-nav ul {
  margin: 0;
  padding: 0;
}
/* line 122, ../sass/screen.scss */
.callout-nav .social-nav li {
  margin-right: 5px;
}
/* line 125, ../sass/screen.scss */
.callout-nav .social-nav li a {
  background-image: url(../images/sm-social-icons-sprite.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  padding: 0;
  margin: 0;
  width: 20px;
  height: 20px;
  text-indent: 999999px;
  -moz-transition: -moz-transform 0.3s ease;
  -o-transition: -o-transform 0.3s ease;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
}
/* line 136, ../sass/screen.scss */
.callout-nav .social-nav li a:hover {
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}
/* line 140, ../sass/screen.scss */
.callout-nav .social-nav .twitter-button a {
  background-position: 0 0;
}
/* line 143, ../sass/screen.scss */
.callout-nav .social-nav .facebook-button a {
  background-position: -26px 0;
}
/* line 146, ../sass/screen.scss */
.callout-nav .social-nav .pinterest-button a {
  background-position: -52px 0;
}
/* line 149, ../sass/screen.scss */
.callout-nav .social-nav .youtube-button a {
  background-position: -78px 0;
}
@media screen and (max-width: 640px) {
  /* line 115, ../sass/screen.scss */
  .callout-nav .social-nav {
    display: none;
  }
}

/* line 157, ../sass/screen.scss */
.main-footer {
  overflow: hidden;
  border-top: 1px solid #EEE;
  -moz-box-shadow: inset 0 2px 8px -4px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset 0 2px 8px -4px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 2px 8px -4px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  padding: 0;
}
/* line 169, ../sass/screen.scss */
.main-footer .scam-footer {
  font-weight: bold;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #12177f;
}
/* line 176, ../sass/screen.scss */
.main-footer .main-footer-blog-callout {
  float: right;
  width: 30%;
  text-align: right;
  margin-right: -4%;
}
/* line 183, ../sass/screen.scss */
.main-footer .footer-nav-wrapper {
  float: left;
  padding: 40px 0;
  width: 67%;
  margin-right: 2%;
}
/* line 190, ../sass/screen.scss */
.main-footer .main-footer-nav {
  font-size: 1.14em;
  margin-bottom: 20px;
  font-family: "Coustard", "Georgia", "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
}
/* line 194, ../sass/screen.scss */
.main-footer .main-footer-nav li {
  margin-right: 1em;
}
/* line 197, ../sass/screen.scss */
.main-footer .main-footer-nav a {
  color: #222;
  text-decoration: none;
}
/* line 200, ../sass/screen.scss */
.main-footer .main-footer-nav a:hover {
  color: #444;
}
/* line 205, ../sass/screen.scss */
.main-footer .main-footer-secondary-nav {
  font-size: 0.85em;
  margin-bottom: 15px;
  text-align: left;
  font-style: italic;
  color: #777;
}
/* line 211, ../sass/screen.scss */
.main-footer .main-footer-secondary-nav li {
  margin-right: 0.5em;
}
/* line 214, ../sass/screen.scss */
.main-footer .main-footer-secondary-nav a {
  color: #777;
  text-decoration: none;
  padding: 2px 0;
}
/* line 218, ../sass/screen.scss */
.main-footer .main-footer-secondary-nav a:hover {
  color: #444;
}
@media screen and (max-width: 640px) {
  /* line 224, ../sass/screen.scss */
  .main-footer .main-footer-nav {
    margin-bottom: 50px;
    text-align: center;
  }
  /* line 227, ../sass/screen.scss */
  .main-footer .main-footer-nav li {
    display: block;
    margin-right: 0;
    margin-bottom: 0.75em;
  }
  /* line 231, ../sass/screen.scss */
  .main-footer .main-footer-nav li:last-chid {
    margin-bottom: 0;
  }
  /* line 235, ../sass/screen.scss */
  .main-footer .main-footer-nav a {
    display: block;
  }
  /* line 239, ../sass/screen.scss */
  .main-footer .main-footer-blog-callout, .main-footer .footer-nav-wrapper {
    float: none;
    width: auto;
    margin-right: 0;
  }
  /* line 244, ../sass/screen.scss */
  .main-footer .footer-nav-wrapper {
    margin-bottom: 0;
  }
  /* line 247, ../sass/screen.scss */
  .main-footer .main-footer-secondary-nav {
    text-align: center;
  }
  /* line 249, ../sass/screen.scss */
  .main-footer .main-footer-secondary-nav .copyright {
    display: block;
    margin-top: 0.5em;
  }
  /* line 254, ../sass/screen.scss */
  .main-footer .main-footer-blog-callout {
    margin-left: -3%;
    text-align: left;
  }
}

/* line 265, ../sass/screen.scss */
.page-header {
  text-align: center;
  padding: 45px 0;
  background-color: #444;
  background-image: url(../images/default-header-background.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
/* line 275, ../sass/screen.scss */
.page-header h1 {
  font-size: 2.57em;
  line-height: 1;
  margin: 0;
  color: white;
}
/* line 281, ../sass/screen.scss */
.page-header h1 + p {
  margin-top: 30px;
}
/* line 284, ../sass/screen.scss */
.page-header p {
  color: white;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.9);
  font-size: 1.14em;
}
/* line 289, ../sass/screen.scss */
.page-header .media {
  width: 32%;
  float: left;
  margin-right: 6%;
}
/* line 293, ../sass/screen.scss */
.page-header .media .video-play {
  margin: 0 auto;
}
/* line 297, ../sass/screen.scss */
.page-header .body {
  width: 62%;
  float: left;
  text-align: left;
}
@media screen and (max-width: 770px) {
  /* line 304, ../sass/screen.scss */
  .page-header h1 {
    font-size: 1.9em;
  }
  /* line 307, ../sass/screen.scss */
  .page-header h1 + p {
    margin-top: 20px;
  }
  /* line 310, ../sass/screen.scss */
  .page-header p {
    font-size: 1em;
  }
}
@media screen and (max-width: 640px) {
  /* line 265, ../sass/screen.scss */
  .page-header {
    padding: 30px 0;
  }
  /* line 316, ../sass/screen.scss */
  .page-header .media, .page-header .body {
    width: auto;
    float: none;
    margin-right: 0;
  }
  /* line 321, ../sass/screen.scss */
  .page-header .media {
    margin-bottom: 35px;
  }
}

/* line 327, ../sass/screen.scss */
.video-play {
  background-color: transparent;
  background-image: url(../images/large-video-play-icon.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  display: block;
  width: 125px;
  height: 125px;
  text-indent: -99999em;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
/* line 337, ../sass/screen.scss */
.video-play:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
  opacity: 0.9;
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

/* line 343, ../sass/screen.scss */
.main-content-wrapper {
  padding: 40px 0;
}
/* line 347, ../sass/screen.scss */
.main-content-wrapper .content-header {
  margin-bottom: 20px;
}
/* line 349, ../sass/screen.scss */
.main-content-wrapper .content-header h1 {
  font-size: 2.14em;
}

/* line 356, ../sass/screen.scss */
.sidebar-nav, .recipe-filter {
  margin-bottom: 35px;
}
/* line 358, ../sass/screen.scss */
.sidebar-nav h2, .recipe-filter h2, .sidebar-nav .nav-title, .recipe-filter .nav-title {
  font-size: 1.3em;
  margin-bottom: 1em;
  line-height: 1;
}
/* line 362, ../sass/screen.scss */
.sidebar-nav h2 a, .recipe-filter h2 a, .sidebar-nav .nav-title a, .recipe-filter .nav-title a {
  color: #222;
}
/* line 364, ../sass/screen.scss */
.sidebar-nav h2 a:hover, .recipe-filter h2 a:hover, .sidebar-nav .nav-title a:hover, .recipe-filter .nav-title a:hover {
  color: #743217;
}
/* line 370, ../sass/screen.scss */
.sidebar-nav h3, .recipe-filter h3 {
  font-size: 1em;
  margin-bottom: 0.5em;
  font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, Helvetica, sans-serif;
}
/* line 375, ../sass/screen.scss */
.sidebar-nav ul, .recipe-filter ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  margin-bottom: 4em;
}
/* line 381, ../sass/screen.scss */
.sidebar-nav ul li, .recipe-filter ul li {
  line-height: 1.2;
  margin-bottom: 7px;
  padding-bottom: 7px;
  border-bottom: 1px solid #EEE;
}
/* line 386, ../sass/screen.scss */
.sidebar-nav ul li:last-child, .recipe-filter ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
/* line 394, ../sass/screen.scss */
.sidebar-nav ul > li.selected > a, .recipe-filter ul > li.selected > a, .sidebar-nav ul a.current_item, .recipe-filter ul a.current_item {
  color: #c95628;
  font-weight: bold;
}
/* line 399, ../sass/screen.scss */
.sidebar-nav ul a, .recipe-filter ul a {
  display: block;
  padding: 4px 0;
  text-decoration: none;
  color: #222;
}
/* line 404, ../sass/screen.scss */
.sidebar-nav ul a:hover, .recipe-filter ul a:hover {
  color: #743217;
}
/* line 408, ../sass/screen.scss */
.sidebar-nav ul li > ul, .recipe-filter ul li > ul {
  margin-left: 1em;
}
@media screen and (max-width: 640px) {
  /* line 356, ../sass/screen.scss */
  .sidebar-nav, .recipe-filter {
    margin-bottom: 0;
  }
  /* line 415, ../sass/screen.scss */
  .sidebar-nav h2, .recipe-filter h2 {
    margin-bottom: 0.75em;
  }
  /* line 418, ../sass/screen.scss */
  .sidebar-nav ul, .recipe-filter ul {
    padding-bottom: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    *zoom: 1;
  }
  /* line 423, ../sass/screen.scss */
  .sidebar-nav ul li, .recipe-filter ul li {
    float: left;
    width: 48%;
    margin-right: 4%;
    border-bottom: 0;
  }
  /* line 428, ../sass/screen.scss */
  .sidebar-nav ul li:nth-child(even), .recipe-filter ul li:nth-child(even) {
    margin-right: 0;
  }
}

/* line 436, ../sass/screen.scss */
.skinny-content {
  max-width: 500px;
  margin: 0 auto;
}

/* line 442, ../sass/screen.scss */
.google-translate {
  display: none;
  background-color: #777;
  -moz-box-shadow: inset 0 -4px 8px -4px rgba(0, 0, 0, 0.8), inset 0 -12px 24px -12px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 -4px 8px -4px rgba(0, 0, 0, 0.8), inset 0 -12px 24px -12px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 -4px 8px -4px rgba(0, 0, 0, 0.8), inset 0 -12px 24px -12px rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  text-align: right;
}
/* line 450, ../sass/screen.scss */
.google-translate .container, .google-translate .all-about-rice-hero-container, .google-translate .all-about-rice .factoid blockquote, .all-about-rice .factoid .google-translate blockquote, .google-translate .home-page-hero-container, .google-translate .home-page-video-callout-container {
  padding-right: 40px;
}
/* line 453, ../sass/screen.scss */
.google-translate h4 {
  color: white;
  margin-bottom: 10px;
  font-size: 1.1em;
}

/* line 463, ../sass/screen.scss */
.sidebar .promo-banner {
  margin: 70px 0 10px 0;
}

/* line 467, ../sass/screen.scss */
.promo-banner a {
  text-decoration: none;
  color: #222;
  display: block;
}
/* line 471, ../sass/screen.scss */
.promo-banner a img {
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
/* line 475, ../sass/screen.scss */
.promo-banner a:hover img {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}
/* line 480, ../sass/screen.scss */
.promo-banner img {
  margin-bottom: 20px;
  width: 100%;
}
/* line 484, ../sass/screen.scss */
.promo-banner .title {
  line-height: 1;
  margin-bottom: 15px;
  font-size: 1em;
}
/* line 489, ../sass/screen.scss */
.promo-banner .sub-heading {
  font-size: 0.85em;
  color: #666;
  margin-bottom: 15px;
}
/* line 494, ../sass/screen.scss */
.promo-banner .read-more {
  font-size: 0.85em;
}

/* line 2, ../sass/partials/_primary_nav.scss */
.products .lnkProducts a,
.recipes .lnkRecipes a,
.all-about-rice .lnkAllAboutRice a,
.stories .lnkStories a,
.videos .lnkVideos a,
.blog .lnkBlog a {
  color: #c95628;
}

/* line 11, ../sass/partials/_primary_nav.scss */
.primary-nav {
  font-family: "Coustard", "Georgia", "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
  position: relative;
  z-index: 100000;
  text-align: right;
  padding: 20px 0;
  font-size: 1.25em;
  background-color: white;
  -moz-transition: padding 0.7s ease-out;
  -o-transition: padding 0.7s ease-out;
  -webkit-transition: padding 0.7s ease-out;
  transition: padding 0.7s ease-out;
}
/* line 23, ../sass/partials/_primary_nav.scss */
.primary-nav .logo {
  margin-top: -20px;
  width: 20%;
  float: left;
  margin-right: 3%;
}
/* line 30, ../sass/partials/_primary_nav.scss */
.primary-nav ul {
  width: 77%;
  float: left;
  padding: 5px 0;
}
/* line 35, ../sass/partials/_primary_nav.scss */
.primary-nav ul li {
  margin-right: 3%;
}
/* line 39, ../sass/partials/_primary_nav.scss */
.primary-nav a {
  text-decoration: none;
  color: #222;
  padding: 5px 0;
}
/* line 43, ../sass/partials/_primary_nav.scss */
.primary-nav a.selected {
  color: #c95628;
}
/* line 46, ../sass/partials/_primary_nav.scss */
.primary-nav a:hover {
  color: #c95628;
}
@media screen and (max-width: 1100px) {
  /* line 11, ../sass/partials/_primary_nav.scss */
  .primary-nav {
    font-size: 1em;
  }
  /* line 53, ../sass/partials/_primary_nav.scss */
  .primary-nav ul li {
    margin-right: 2%;
  }
}
@media screen and (max-width: 885px) {
  /* line 11, ../sass/partials/_primary_nav.scss */
  .primary-nav {
    font-size: 1.2em;
    padding: 20px 0;
    -moz-transition: none;
    -o-transition: none;
    -webkit-transition: none;
    transition: none;
  }
  /* line 62, ../sass/partials/_primary_nav.scss */
  .primary-nav .logo {
    width: auto;
    float: none;
    max-width: 150px;
    margin-right: 0;
    margin-bottom: 20px;
    margin-top: 10px;
    text-align: left;
  }
  /* line 72, ../sass/partials/_primary_nav.scss */
  .primary-nav ul {
    margin-top: 0;
    display: none;
    width: auto;
    float: none;
    position: absolute;
    background-color: white;
    width: 92%;
    padding: 10px 4%;
    z-index: 100000;
    top: 100px;
    left: 0;
    border-bottom: 1px solid #EEE;
    -moz-box-shadow: 0 4px 8px -4px rgba(0, 0, 0, 0.8), 0 12px 24px -12px rgba(0, 0, 0, 0.2), inset 0 4px 8px -4px rgba(0, 0, 0, 0.8), inset 0 12px 24px -12px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 4px 8px -4px rgba(0, 0, 0, 0.8), 0 12px 24px -12px rgba(0, 0, 0, 0.2), inset 0 4px 8px -4px rgba(0, 0, 0, 0.8), inset 0 12px 24px -12px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 8px -4px rgba(0, 0, 0, 0.8), 0 12px 24px -12px rgba(0, 0, 0, 0.2), inset 0 4px 8px -4px rgba(0, 0, 0, 0.8), inset 0 12px 24px -12px rgba(0, 0, 0, 0.2);
  }
  /* line 89, ../sass/partials/_primary_nav.scss */
  .primary-nav ul li {
    display: block;
    margin-right: 0;
    margin-bottom: 0.5em;
    width: auto;
  }
  /* line 94, ../sass/partials/_primary_nav.scss */
  .primary-nav ul li:last-child {
    margin-bottom: 0;
  }
  /* line 98, ../sass/partials/_primary_nav.scss */
  .primary-nav ul a {
    padding: 4px 0;
    text-align: right;
  }
}
@media screen and (max-width: 425px) {
  /* line 11, ../sass/partials/_primary_nav.scss */
  .primary-nav {
    padding: 15px 0;
  }
}

/* line 109, ../sass/partials/_primary_nav.scss */
.primary-nav.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  font-size: 1em;
  padding: 10px 0;
  background-color: rgba(245, 245, 245, 0.85);
  -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 4px 8px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 4px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 4px 8px rgba(0, 0, 0, 0.1);
}
/* line 120, ../sass/partials/_primary_nav.scss */
.primary-nav.sticky-nav .logo {
  max-width: 125px;
  max-height: 30px;
  margin-top: 0;
  overflow: hidden;
}
@media screen and (max-width: 885px) {
  /* line 109, ../sass/partials/_primary_nav.scss */
  .primary-nav.sticky-nav {
    padding: 20px 0;
    position: relative;
    top: auto;
    left: auto;
    background-color: white;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  /* line 134, ../sass/partials/_primary_nav.scss */
  .primary-nav.sticky-nav .logo {
    width: auto;
    max-width: 150px;
    max-height: none;
    margin-top: 10px;
  }
}

/* line 145, ../sass/partials/_primary_nav.scss */
.nav-toggle {
  cursor: pointer;
  width: 22px;
  height: 16px;
  position: absolute;
  right: 15px;
  top: 40px;
  display: none;
}
@media screen and (max-width: 885px) {
  /* line 145, ../sass/partials/_primary_nav.scss */
  .nav-toggle {
    display: block;
  }
}

/* line 1, ../sass/partials/_divisions_nav.scss */
.divisions-nav {
  padding: 30px 0 20px 0;
  background-color: #444;
  background-image: url(../images/divisions-nav-background.jpg);
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-attachment: fixed;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  color: white;
}
/* line 13, ../sass/partials/_divisions_nav.scss */
.divisions-nav .nav-title {
  font-size: 1.28em;
  font-family: "Coustard", "Georgia", "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
  padding: 0;
  margin-bottom: 30px;
  line-height: 1;
  color: white;
  text-align: center;
}
/* line 23, ../sass/partials/_divisions_nav.scss */
.divisions-nav ul {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
  font-family: "Coustard", "Georgia", "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
}
/* line 30, ../sass/partials/_divisions_nav.scss */
.divisions-nav ul li {
  margin: 25px 0px;
  font-size: 1.14em;
  width: 33.2%;
}
/* line 34, ../sass/partials/_divisions_nav.scss */
.divisions-nav ul li a {
  padding: 0;
  padding-left: 90px;
  color: white;
  position: relative;
  text-decoration: none;
  -moz-transition: color 0.3s ease-out;
  -o-transition: color 0.3s ease-out;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}
/* line 42, ../sass/partials/_divisions_nav.scss */
.divisions-nav ul li a:hover {
  color: #c95628;
}
/* line 45, ../sass/partials/_divisions_nav.scss */
.divisions-nav ul li a:before {
  content: "";
  background-color: transparent;
  background-repeat: no-repeat;
  background-image: url(../images/division-icon-sprite.png);
  width: 40px;
  height: 40px;
  display: block;
  position: absolute;
  left: 40px;
  top: -15px;
  -moz-transition: -moz-transform 0.2s ease-out;
  -o-transition: -o-transform 0.2s ease-out;
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
}
/* line 58, ../sass/partials/_divisions_nav.scss */
.divisions-nav ul li a:hover:before {
  -moz-transform: scale(1.07) translateY(-5px);
  -ms-transform: scale(1.07) translateY(-5px);
  -webkit-transform: scale(1.07) translateY(-5px);
  transform: scale(1.07) translateY(-5px);
}
/* line 63, ../sass/partials/_divisions_nav.scss */
.divisions-nav ul li.lnk-retail a:before {
  background-position: 0 0;
}
/* line 66, ../sass/partials/_divisions_nav.scss */
.divisions-nav ul li.lnk-food-service a:before {
  background-position: 0 -40px;
}
/* line 69, ../sass/partials/_divisions_nav.scss */
.divisions-nav ul li.lnk-cooking-oils a:before {
  background-position: 0 -80px;
}
/* line 72, ../sass/partials/_divisions_nav.scss */
.divisions-nav ul li.lnk-export a:before {
  background-position: -40px 0;
}
/* line 75, ../sass/partials/_divisions_nav.scss */
.divisions-nav ul li.lnk-ingredient a:before {
  background-position: -40px -80px;
}
/* line 78, ../sass/partials/_divisions_nav.scss */
.divisions-nav ul li.lnk-co-products a:before {
  background-position: -80px 0;
}
/* line 81, ../sass/partials/_divisions_nav.scss */
.divisions-nav ul li.lnk-rice-hull-products a:before {
  background-position: -40px -40px;
}
/* line 84, ../sass/partials/_divisions_nav.scss */
.divisions-nav ul li.lnk-grains a:before {
  background-position: -80px -80px;
}
/* line 87, ../sass/partials/_divisions_nav.scss */
.divisions-nav ul li.lnk-private-label a:before {
  background-position: -80px -40px;
}
@media screen and (max-width: 640px) {
  /* line 92, ../sass/partials/_divisions_nav.scss */
  .divisions-nav .nav-title {
    margin-bottom: 20px;
  }
  /* line 95, ../sass/partials/_divisions_nav.scss */
  .divisions-nav ul {
    width: 96%;
    margin: 0 auto;
    text-align: left;
  }
  /* line 99, ../sass/partials/_divisions_nav.scss */
  .divisions-nav ul li {
    text-align: left;
    width: 33%;
    margin: 0;
  }
  /* line 103, ../sass/partials/_divisions_nav.scss */
  .divisions-nav ul li a {
    padding: 4px 0 4px 10px;
  }
  /* line 106, ../sass/partials/_divisions_nav.scss */
  .divisions-nav ul li a:before {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  /* line 113, ../sass/partials/_divisions_nav.scss */
  .divisions-nav ul li {
    width: 50%;
  }
}
@media screen and (max-width: 425px) {
  /* line 1, ../sass/partials/_divisions_nav.scss */
  .divisions-nav {
    background-attachment: scroll;
  }
  /* line 120, ../sass/partials/_divisions_nav.scss */
  .divisions-nav .nav-title {
    font-size: 1.14em;
  }
  /* line 123, ../sass/partials/_divisions_nav.scss */
  .divisions-nav ul li {
    font-size: 1em;
  }
}

/* line 130, ../sass/partials/_divisions_nav.scss */
.divisions-nav-link-wrapper {
  position: relative;
  padding: 0;
  z-index: 10000;
  border-top: 1px solid #EEE;
  border-bottom: 1px solid #EEE;
  background-color: white;
}
/* line 138, ../sass/partials/_divisions_nav.scss */
.divisions-nav-link-wrapper .divisions-nav-link {
  font-size: 1em;
  font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  padding: 10px 0;
  display: block;
  cursor: pointer;
  line-height: 1;
  margin-bottom: 0;
  color: #222;
  text-align: center;
  -moz-transition: color 0.4s ease-in;
  -o-transition: color 0.4s ease-in;
  -webkit-transition: color 0.4s ease-in;
  transition: color 0.4s ease-in;
}
/* line 149, ../sass/partials/_divisions_nav.scss */
.divisions-nav-link-wrapper .divisions-nav-link a {
  color: #222;
}
/* line 154, ../sass/partials/_divisions_nav.scss */
.divisions-nav-link-wrapper .divisions-nav-link i {
  margin-left: 1em;
  color: #86a1ad;
}
/* line 158, ../sass/partials/_divisions_nav.scss */
.divisions-nav-link-wrapper .divisions-nav-link:hover {
  color: #c95628;
}
/* line 160, ../sass/partials/_divisions_nav.scss */
.divisions-nav-link-wrapper .divisions-nav-link:hover a {
  color: #c95628;
}
/* line 164, ../sass/partials/_divisions_nav.scss */
.divisions-nav-link-wrapper .divisions-nav-link:hover i {
  color: #536e7a;
}
@media screen and (max-width: 640px) {
  /* line 170, ../sass/partials/_divisions_nav.scss */
  .divisions-nav-link-wrapper .divisions-nav-link {
    padding: 10px;
  }
}

/* line 1, ../sass/partials/_form.scss */
label {
  color: #b99563;
}

/* line 4, ../sass/partials/_form.scss */
input[type=text] {
  border: 1px solid #86a1ad;
  background-color: white;
  font-size: 1.15em;
  padding: 5px 5px;
  color: #222;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
/* line 11, ../sass/partials/_form.scss */
input[type=text]:focus {
  background-color: #e7ddba;
  outline: none;
}

/* line 17, ../sass/partials/_form.scss */
button, input[type=submit], .button, .all-about-rice-hero .button-nav a, .all-about-rice .what-is-rice .button-nav a, .all-about-rice .types-of-rice .button-nav a, .all-about-rice .forms-of-rice .button-nav a, .all-about-rice .growing-harvesting .button-nav a, .all-about-rice .milling-packaging .button-nav a, .all-about-rice .distribution .button-nav a, .all-about-rice .health .button-nav a, .all-about-rice .final .button-nav a {
  background-color: #86a1ad;
  border: 1px solid #86a1ad;
  font-size: 1.15em;
  padding: 10px 8px;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  color: white;
  font-family: "Coustard", "Georgia", "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.6), 0px 2px 4px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0 2px 8px -4px #fafafa;
  -webkit-box-shadow: inset 0 2px 8px -4px #fafafa;
  box-shadow: inset 0 2px 8px -4px #fafafa;
  -moz-transition: background-color 0.3s ease-in;
  -o-transition: background-color 0.3s ease-in;
  -webkit-transition: background-color 0.3s ease-in;
  transition: background-color 0.3s ease-in;
}
/* line 31, ../sass/partials/_form.scss */
button:hover, input[type=submit]:hover, .button:hover, .all-about-rice-hero .button-nav a:hover, .all-about-rice .what-is-rice .button-nav a:hover, .all-about-rice .types-of-rice .button-nav a:hover, .all-about-rice .forms-of-rice .button-nav a:hover, .all-about-rice .growing-harvesting .button-nav a:hover, .all-about-rice .milling-packaging .button-nav a:hover, .all-about-rice .distribution .button-nav a:hover, .all-about-rice .health .button-nav a:hover, .all-about-rice .final .button-nav a:hover {
  background-color: #688998;
  color: white;
}
/* line 36, ../sass/partials/_form.scss */
button.important, input[type=submit].important, .button.important, .all-about-rice-hero .button-nav a.important, .all-about-rice .what-is-rice .button-nav a.important, .all-about-rice .types-of-rice .button-nav a.important, .all-about-rice .forms-of-rice .button-nav a.important, .all-about-rice .growing-harvesting .button-nav a.important, .all-about-rice .milling-packaging .button-nav a.important, .all-about-rice .distribution .button-nav a.important, .all-about-rice .health .button-nav a.important, .all-about-rice .final .button-nav a.important {
  background-color: #8fab3d;
  border: 1px solid #b2ca6a;
}
/* line 39, ../sass/partials/_form.scss */
button.important:hover, input[type=submit].important:hover, .button.important:hover, .all-about-rice-hero .button-nav a.important:hover, .all-about-rice .what-is-rice .button-nav a.important:hover, .all-about-rice .types-of-rice .button-nav a.important:hover, .all-about-rice .forms-of-rice .button-nav a.important:hover, .all-about-rice .growing-harvesting .button-nav a.important:hover, .all-about-rice .milling-packaging .button-nav a.important:hover, .all-about-rice .distribution .button-nav a.important:hover, .all-about-rice .health .button-nav a.important:hover, .all-about-rice .final .button-nav a.important:hover {
  background-color: #70852f;
}
/* line 43, ../sass/partials/_form.scss */
button.transparent, input[type=submit].transparent, .button.transparent, .all-about-rice-hero .button-nav a.transparent, .all-about-rice .what-is-rice .button-nav a.transparent, .all-about-rice .types-of-rice .button-nav a.transparent, .all-about-rice .forms-of-rice .button-nav a.transparent, .all-about-rice .growing-harvesting .button-nav a.transparent, .all-about-rice .milling-packaging .button-nav a.transparent, .all-about-rice .distribution .button-nav a.transparent, .all-about-rice .health .button-nav a.transparent, .all-about-rice .final .button-nav a.transparent {
  background-color: white;
  background-color: rgba(250, 250, 250, 0.4);
  color: black;
  border: 1px solid #777;
  border: 1px solid rgba(119, 119, 119, 0.4);
  text-shadow: 1px 1px 0 rgba(250, 250, 250, 0.5);
  -moz-transition: background-color 0.5s ease-out;
  -o-transition: background-color 0.5s ease-out;
  -webkit-transition: background-color 0.5s ease-out;
  transition: background-color 0.5s ease-out;
}
/* line 51, ../sass/partials/_form.scss */
button.transparent:hover, input[type=submit].transparent:hover, .button.transparent:hover, .all-about-rice-hero .button-nav a.transparent:hover, .all-about-rice .what-is-rice .button-nav a.transparent:hover, .all-about-rice .types-of-rice .button-nav a.transparent:hover, .all-about-rice .forms-of-rice .button-nav a.transparent:hover, .all-about-rice .growing-harvesting .button-nav a.transparent:hover, .all-about-rice .milling-packaging .button-nav a.transparent:hover, .all-about-rice .distribution .button-nav a.transparent:hover, .all-about-rice .health .button-nav a.transparent:hover, .all-about-rice .final .button-nav a.transparent:hover {
  background-color: rgba(250, 250, 250, 0.7);
}

/* line 1, ../sass/partials/_pagination.scss */
.pagination {
  font-family: "Coustard", "Georgia", "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
  margin: 100px 0 40px 0;
  font-size: 1.1em;
  text-align: center;
}
/* line 8, ../sass/partials/_pagination.scss */
.pagination a, .pagination .next, .pagination .prev {
  margin-right: 10px;
  text-transform: capitalize;
  text-decoration: none;
  padding: 6px 10px;
  color: #c95628;
  text-align: center;
}
/* line 16, ../sass/partials/_pagination.scss */
.pagination a:hover {
  color: #743217;
}
/* line 19, ../sass/partials/_pagination.scss */
.pagination span {
  color: #444;
  padding: 8px 6px;
  margin-right: 10px;
}
/* line 24, ../sass/partials/_pagination.scss */
.pagination .disabled {
  color: #999;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  opacity: 0.4;
}
/* line 28, ../sass/partials/_pagination.scss */
.pagination .current {
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  /* line 1, ../sass/partials/_pagination.scss */
  .pagination {
    font-size: 0.85em;
  }
}

/* line 2, ../sass/partials/_faq.scss */
.faq-list .faq-category-title {
  font-size: 1.7em;
  margin-bottom: 20px;
  padding-bottom: 5px;
  border-bottom: 1px solid #EEE;
}
/* line 7, ../sass/partials/_faq.scss */
.faq-list .faq-category-title a {
  color: #222;
}
/* line 9, ../sass/partials/_faq.scss */
.faq-list .faq-category-title a:hover {
  color: #777;
}
@media screen and (max-width: 640px) {
  /* line 15, ../sass/partials/_faq.scss */
  .faq-list .faq-category-title {
    font-size: 1.5em;
    margin-bottom: 12px;
    padding-bottom: 4px;
  }
}

/* line 23, ../sass/partials/_faq.scss */
.faq {
  margin-bottom: 15px;
  border-bottom: 1px solid #EEE;
}
/* line 26, ../sass/partials/_faq.scss */
.faq dt {
  font-size: 1.28em;
  line-height: 1.5;
  font-weight: normal;
  margin-bottom: 15px;
  color: #c95628;
  -moz-transition: color 0.5s ease-in;
  -o-transition: color 0.5s ease-in;
  -webkit-transition: color 0.5s ease-in;
  transition: color 0.5s ease-in;
}
/* line 33, ../sass/partials/_faq.scss */
.faq dt:hover {
  cursor: pointer;
  color: #491f0f;
}
/* line 38, ../sass/partials/_faq.scss */
.faq dd {
  margin-left: 0;
  font-size: 1em;
  color: #444;
  margin-bottom: 15px;
  display: none;
}
/* line 46, ../sass/partials/_faq.scss */
.faq.selected dt {
  color: #444;
  font-weight: bold;
  margin-bottom: 25px;
  cursor: auto;
}
@media screen and (max-width: 640px) {
  /* line 23, ../sass/partials/_faq.scss */
  .faq {
    margin-bottom: 10px;
  }
  /* line 56, ../sass/partials/_faq.scss */
  .faq dt {
    font-size: 1.14em;
  }
}

/* line 61, ../sass/partials/_faq.scss */
.no-js .faq dd {
  display: block;
}

/* line 1, ../sass/partials/_video_gallery.scss */
.large-video-header {
  position: relative;
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-attachment: fixed;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  padding: 80px 0;
}
@media screen and (max-width: 640px) {
  /* line 1, ../sass/partials/_video_gallery.scss */
  .large-video-header {
    padding: 30px 0;
  }
}
@media screen and (max-width: 425px) {
  /* line 1, ../sass/partials/_video_gallery.scss */
  .large-video-header {
    background-attachment: scroll;
  }
}

/* line 17, ../sass/partials/_video_gallery.scss */
.video-single-column-container {
  max-width: 1400px;
}

/* line 21, ../sass/partials/_video_gallery.scss */
.video-detail-page .video-single-column-container {
  max-width: 700px;
}

/* line 25, ../sass/partials/_video_gallery.scss */
.video-list {
  overflow: hidden;
  *zoom: 1;
}

/* line 29, ../sass/partials/_video_gallery.scss */
.video-list .video {
  overflow: hidden;
  *zoom: 1;
  margin-bottom: 50px;
}
/* line 33, ../sass/partials/_video_gallery.scss */
.video-list .video .thumb {
  float: left;
  width: 60%;
  margin-right: 2%;
}
/* line 38, ../sass/partials/_video_gallery.scss */
.video-list .video .body {
  float: left;
  width: 38%;
}
/* line 43, ../sass/partials/_video_gallery.scss */
.video-list .video a {
  text-decoration: none;
  color: #222;
}
/* line 47, ../sass/partials/_video_gallery.scss */
.video-list .video .thumb {
  position: relative;
}
/* line 49, ../sass/partials/_video_gallery.scss */
.video-list .video .thumb img {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}
/* line 56, ../sass/partials/_video_gallery.scss */
.video-list .video .thumb:after {
  width: 67px;
  height: 67px;
  content: '';
  background: transparent url(../images/video-gallery-play-icon.png) no-repeat center center;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -33px;
  margin-top: -33px;
}
/* line 69, ../sass/partials/_video_gallery.scss */
.video-list .video .title {
  font-size: 1.4em;
  line-height: 1.25;
  margin-bottom: 15px;
  font-family: "Coustard", "Georgia", "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
}
/* line 75, ../sass/partials/_video_gallery.scss */
.video-list .video .teaser {
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  /* line 80, ../sass/partials/_video_gallery.scss */
  .video-list .video .thumb {
    width: 50%;
  }
  /* line 83, ../sass/partials/_video_gallery.scss */
  .video-list .video .body {
    width: 48%;
  }
}
@media screen and (max-width: 885px) {
  /* line 90, ../sass/partials/_video_gallery.scss */
  .video-list .video .title {
    font-size: 1.14em;
    margin-bottom: 8px;
  }
  /* line 94, ../sass/partials/_video_gallery.scss */
  .video-list .video .teaser {
    font-size: 0.85em;
  }
}
@media screen and (max-width: 770px) {
  /* line 100, ../sass/partials/_video_gallery.scss */
  .video-list .video .thumb {
    float: none;
    width: auto;
    margin-right: 0;
    margin-bottom: 15px;
  }
  /* line 106, ../sass/partials/_video_gallery.scss */
  .video-list .video .body {
    float: none;
    width: auto;
  }
}

/* line 114, ../sass/partials/_video_gallery.scss */
.video-detail-page .video .description {
  line-height: 1.5;
  margin: 20px 0;
  font-size: 1.14em;
}
/* line 119, ../sass/partials/_video_gallery.scss */
.video-detail-page .video .embed-code {
  text-align: center;
}

/* line 1, ../sass/partials/_glossary.scss */
.alphabet-nav {
  border-top: 1px solid #EEE;
  border-bottom: 1px solid #EEE;
  padding: 8px 12px;
  font-family: "Coustard", "Georgia", "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
  font-size: 1.28em;
  text-align: center;
  margin-bottom: 55px;
  color: #999;
}
/* line 10, ../sass/partials/_glossary.scss */
.alphabet-nav a {
  color: #999;
  display: block;
  text-decoration: none;
  padding: 4px 7px;
}
/* line 15, ../sass/partials/_glossary.scss */
.alphabet-nav a:hover {
  color: #444;
}
/* line 19, ../sass/partials/_glossary.scss */
.alphabet-nav ul {
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  *zoom: 1;
  margin: 0;
  padding: 0;
}
/* line 49, ../../../../../../../../.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/compass-core-1.0.3/stylesheets/compass/typography/lists/_inline-block-list.scss */
.alphabet-nav ul li {
  list-style-image: none;
  list-style-type: none;
  margin-left: 0;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  white-space: nowrap;
}
/* line 26, ../sass/partials/_glossary.scss */
.alphabet-nav li.selected a {
  color: #222;
  text-decoration: none;
}
@media screen and (max-width: 640px) {
  /* line 1, ../sass/partials/_glossary.scss */
  .alphabet-nav {
    font-size: 1.1em;
    padding: 4px 6px;
    margin-bottom: 30px;
  }
  /* line 36, ../sass/partials/_glossary.scss */
  .alphabet-nav a {
    padding: 4px;
  }
}

/* line 43, ../sass/partials/_glossary.scss */
.glossary-term {
  margin-bottom: 40px;
}
/* line 45, ../sass/partials/_glossary.scss */
.glossary-term dt {
  font-size: 1.28em;
  margin-bottom: 12px;
  font-family: "Coustard", "Georgia", "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
}
/* line 50, ../sass/partials/_glossary.scss */
.glossary-term dd {
  margin-left: 0;
  font-size: 1em;
  line-height: 1.5;
}
@media screen and (max-width: 640px) {
  /* line 43, ../sass/partials/_glossary.scss */
  .glossary-term {
    margin-bottom: 20px;
  }
  /* line 57, ../sass/partials/_glossary.scss */
  .glossary-term dt {
    font-size: 1.14em;
    margin-bottom: 8px;
  }
}

/* line 63, ../sass/partials/_glossary.scss */
.letter-heading {
  font-size: 2.14em;
  line-height: 1;
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 640px) {
  /* line 63, ../sass/partials/_glossary.scss */
  .letter-heading {
    font-size: 1.85em;
    margin-bottom: 20px;
  }
}

/* line 1, ../sass/partials/_products.scss */
.products .page-header {
  background-image: url(../images/products-header-background.jpg);
}

/* line 5, ../sass/partials/_products.scss */
.sidebar-nav .lnk-commercial-products, .recipe-filter .lnk-commercial-products {
  font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, Helvetica, sans-serif;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
}
/* line 10, ../sass/partials/_products.scss */
.sidebar-nav .lnk-commercial-products i, .recipe-filter .lnk-commercial-products i {
  font-weight: normal;
  color: #86a1ad;
  font-size: 85%;
  opacity: 0.0;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
/* line 17, ../sass/partials/_products.scss */
.sidebar-nav .lnk-commercial-products:hover, .recipe-filter .lnk-commercial-products:hover {
  color: #743217;
}
/* line 19, ../sass/partials/_products.scss */
.sidebar-nav .lnk-commercial-products:hover i, .recipe-filter .lnk-commercial-products:hover i {
  opacity: 1.0;
}

/* line 25, ../sass/partials/_products.scss */
.product-list {
  overflow: hidden;
  *zoom: 1;
}

/* line 29, ../sass/partials/_products.scss */
.products.product-list-page .page-header {
  padding: 140px 0;
}
@media screen and (max-width: 960px) {
  /* line 29, ../sass/partials/_products.scss */
  .products.product-list-page .page-header {
    padding: 100px 0;
  }
}
@media screen and (max-width: 885px) {
  /* line 29, ../sass/partials/_products.scss */
  .products.product-list-page .page-header {
    padding: 80px 0;
  }
}
@media screen and (max-width: 640px) {
  /* line 29, ../sass/partials/_products.scss */
  .products.product-list-page .page-header {
    padding: 60px 0;
  }
}
@media screen and (max-width: 425px) {
  /* line 29, ../sass/partials/_products.scss */
  .products.product-list-page .page-header {
    padding: 40px 0;
  }
}

/* line 45, ../sass/partials/_products.scss */
.product-list .product {
  float: left;
  margin-bottom: 20px;
  width: 46%;
  margin-right: 2%;
  text-align: center;
}
/* line 52, ../sass/partials/_products.scss */
.product-list .product .media-img {
  display: block;
  padding: 0 15px;
  margin-bottom: 10px;
}
/* line 56, ../sass/partials/_products.scss */
.product-list .product .media-img > img {
  width: 100%;
  display: block;
  margin: 0 auto;
  border: 1px solid #EEE;
  -moz-box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.5);
  padding: 4px;
  background-color: white;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
/* line 65, ../sass/partials/_products.scss */
.product-list .product .media-img > img:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}
/* line 70, ../sass/partials/_products.scss */
.product-list .product .media-body {
  padding: 0 15px;
}
/* line 72, ../sass/partials/_products.scss */
.product-list .product .media-body .title {
  font-size: 1.14em;
  line-height: 1.5;
  font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, Helvetica, sans-serif;
}
/* line 76, ../sass/partials/_products.scss */
.product-list .product .media-body .title a {
  display: block;
  padding: 4px 0;
}
@media screen and (max-width: 770px) {
  /* line 45, ../sass/partials/_products.scss */
  .product-list .product {
    float: none;
    width: auto;
  }
}

/* line 90, ../sass/partials/_products.scss */
.product-detail {
  *zoom: 1;
}
/* line 38, ../../../../../../../../.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/compass-core-1.0.3/stylesheets/compass/utilities/general/_clearfix.scss */
.product-detail:after {
  content: "";
  display: table;
  clear: both;
}
/* line 94, ../sass/partials/_products.scss */
.product-detail .product-image {
  margin-bottom: 30px;
}
/* line 96, ../sass/partials/_products.scss */
.product-detail .product-image img {
  width: 100%;
  border: 1px solid #EEE;
  -moz-box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.5);
  padding: 4px;
}
/* line 104, ../sass/partials/_products.scss */
.product-detail .product-body {
  *zoom: 1;
  margin-bottom: 40px;
}
/* line 38, ../../../../../../../../.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/compass-core-1.0.3/stylesheets/compass/utilities/general/_clearfix.scss */
.product-detail .product-body:after {
  content: "";
  display: table;
  clear: both;
}
/* line 108, ../sass/partials/_products.scss */
.product-detail .product-body .product-description {
  width: 62%;
  float: left;
  margin-right: 6%;
}
/* line 114, ../sass/partials/_products.scss */
.product-detail .product-body .product-nutrition-info {
  float: left;
  width: 32%;
}
/* line 117, ../sass/partials/_products.scss */
.product-detail .product-body .product-nutrition-info img {
  -moz-transition: -moz-transform 0.1s ease;
  -o-transition: -o-transform 0.1s ease;
  -webkit-transition: -webkit-transform 0.1s ease;
  transition: transform 0.1s ease;
}
/* line 120, ../sass/partials/_products.scss */
.product-detail .product-body .product-nutrition-info img:hover {
  -moz-transform: scale(1.01);
  -ms-transform: scale(1.01);
  -webkit-transform: scale(1.01);
  transform: scale(1.01);
}
/* line 126, ../sass/partials/_products.scss */
.product-detail .product-body .recipe-box {
  margin-top: 20px;
  border-top: 1px solid #EEE;
  padding-top: 20px;
}
/* line 130, ../sass/partials/_products.scss */
.product-detail .product-body .recipe-box h3 {
  font-size: 1.28em;
}
/* line 133, ../sass/partials/_products.scss */
.product-detail .product-body .recipe-box h4 {
  font-size: 1.14em;
}
/* line 136, ../sass/partials/_products.scss */
.product-detail .product-body .recipe-box .read-more {
  font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, Helvetica, sans-serif;
  line-height: 1.25;
}
/* line 140, ../sass/partials/_products.scss */
.product-detail .product-body .recipe-box .read-more em {
  font-style: normal;
}
/* line 143, ../sass/partials/_products.scss */
.product-detail .product-body .recipe-box .read-more:hover {
  color: #743217;
}
/* line 150, ../sass/partials/_products.scss */
.product-detail .product-body .product-nutrition-info ul {
  list-style-type: square;
}
/* line 152, ../sass/partials/_products.scss */
.product-detail .product-body .product-nutrition-info ul li {
  line-height: 1.25;
  margin-bottom: 0.75em;
}
/* line 155, ../sass/partials/_products.scss */
.product-detail .product-body .product-nutrition-info ul li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 425px) {
  /* line 163, ../sass/partials/_products.scss */
  .product-detail .product-body .product-description {
    width: auto;
    float: none;
    margin-right: 0;
    margin-bottom: 20px;
  }
  /* line 169, ../sass/partials/_products.scss */
  .product-detail .product-body .product-nutrition-info {
    float: none;
    width: auto;
  }
}

/* line 1, ../sass/partials/_recipes.scss */
.recipes .page-header {
  background-image: url(../images/recipes-header-background.jpg);
}

/* line 7, ../sass/partials/_recipes.scss */
.recipes .content-header h1 em {
  font-style: normal;
  color: #444;
}

/* line 18, ../sass/partials/_recipes.scss */
.recipe-cat-description {
  font-size: 1.2em;
  color: #777;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 30px;
}

/* line 25, ../sass/partials/_recipes.scss */
.recipe-list {
  overflow: hidden;
  *zoom: 1;
}

/* line 28, ../sass/partials/_recipes.scss */
.recipe-list .recipe {
  float: left;
  height: 420px;
  overflow: hidden;
  width: 48%;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-bottom: 30px;
  margin-right: 2%;
  text-align: left;
  position: relative;
}
/* line 40, ../sass/partials/_recipes.scss */
.recipe-list .recipe .media-img {
  margin-bottom: 15px;
  display: block;
  max-width: 400px;
}
/* line 44, ../sass/partials/_recipes.scss */
.recipe-list .recipe .media-img > img {
  width: 100%;
  margin: 0 auto;
  display: block;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
/* line 49, ../sass/partials/_recipes.scss */
.recipe-list .recipe .media-img > img:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}
/* line 56, ../sass/partials/_recipes.scss */
.recipe-list .recipe .title {
  padding: 0 10px;
  font-size: 1.28em;
  font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, Helvetica, sans-serif;
  margin-bottom: 10px;
}
/* line 61, ../sass/partials/_recipes.scss */
.recipe-list .recipe .title a {
  display: block;
}
/* line 65, ../sass/partials/_recipes.scss */
.recipe-list .recipe .excerpt {
  padding: 0 10px;
  line-height: 1.5;
  font-size: 0.85em;
  color: #777;
  max-width: 400px;
}
/* line 73, ../sass/partials/_recipes.scss */
.recipe-list .recipe .meta {
  padding: 0 10px;
  position: absolute;
  width: 90%;
  bottom: 15px;
  font-size: 0.85em;
  color: #919191;
}
/* line 80, ../sass/partials/_recipes.scss */
.recipe-list .recipe .meta em {
  font-weight: bold;
  font-style: normal;
}
@media screen and (max-width: 1100px) {
  /* line 28, ../sass/partials/_recipes.scss */
  .recipe-list .recipe {
    height: 400px;
  }
}
@media screen and (max-width: 885px) {
  /* line 28, ../sass/partials/_recipes.scss */
  .recipe-list .recipe {
    float: none;
    width: auto;
    margin-left: 0;
    height: auto;
  }
  /* line 93, ../sass/partials/_recipes.scss */
  .recipe-list .recipe .media-img {
    margin-left: auto;
    margin-right: auto;
  }
  /* line 97, ../sass/partials/_recipes.scss */
  .recipe-list .recipe .excerpt {
    margin-bottom: 30px;
  }
  /* line 100, ../sass/partials/_recipes.scss */
  .recipe-list .recipe .meta {
    position: static;
  }
}

/* line 105, ../sass/partials/_recipes.scss */
.recipe-list .recipe-no-photo {
  height: 160px;
}
@media screen and (max-width: 885px) {
  /* line 105, ../sass/partials/_recipes.scss */
  .recipe-list .recipe-no-photo {
    height: 220px;
  }
}
@media screen and (max-width: 640px) {
  /* line 105, ../sass/partials/_recipes.scss */
  .recipe-list .recipe-no-photo {
    height: auto;
  }
}

/* line 119, ../sass/partials/_recipes.scss */
.recipe-detail {
  overflow: hidden;
  *zoom: 1;
}
/* line 122, ../sass/partials/_recipes.scss */
.recipe-detail .recipe-image {
  margin-bottom: 20px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
/* line 127, ../sass/partials/_recipes.scss */
.recipe-detail .recipe-image img {
  width: 100%;
}
/* line 131, ../sass/partials/_recipes.scss */
.recipe-detail .recipe-meta {
  margin-bottom: 40px;
  overflow: hidden;
  *zoom: 1;
}
/* line 134, ../sass/partials/_recipes.scss */
.recipe-detail .recipe-meta h4 {
  font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1em;
  font-style: italic;
  color: #6a6a6a;
  margin-bottom: 10px;
  margin-right: 20px;
  display: inline;
  float: left;
  text-align: left;
}
/* line 144, ../sass/partials/_recipes.scss */
.recipe-detail .recipe-meta h4 i {
  margin-right: 0.25em;
  color: #b99563;
}
/* line 148, ../sass/partials/_recipes.scss */
.recipe-detail .recipe-meta h4 em {
  font-style: normal;
}
/* line 153, ../sass/partials/_recipes.scss */
.recipe-detail .recipe-body {
  overflow: hidden;
  *zoom: 1;
  margin-bottom: 20px;
}
/* line 156, ../sass/partials/_recipes.scss */
.recipe-detail .recipe-body .section-heading {
  font-size: 1.28em;
  margin-bottom: 20px;
}
/* line 160, ../sass/partials/_recipes.scss */
.recipe-detail .recipe-body .ingredients, .recipe-detail .recipe-body .instructions {
  line-height: 1.5;
}
/* line 162, ../sass/partials/_recipes.scss */
.recipe-detail .recipe-body .ingredients .section-heading, .recipe-detail .recipe-body .instructions .section-heading {
  line-height: 1.2;
}
/* line 166, ../sass/partials/_recipes.scss */
.recipe-detail .recipe-body .ingredients {
  width: 40%;
  margin-right: 7%;
  float: left;
}
/* line 170, ../sass/partials/_recipes.scss */
.recipe-detail .recipe-body .ingredients ul {
  list-style-type: square;
}
/* line 173, ../sass/partials/_recipes.scss */
.recipe-detail .recipe-body .ingredients li {
  margin-bottom: 0.75em;
  line-height: 1.5;
}
/* line 176, ../sass/partials/_recipes.scss */
.recipe-detail .recipe-body .ingredients li:last-child {
  margin-bottom: 0;
}
/* line 181, ../sass/partials/_recipes.scss */
.recipe-detail .recipe-body .instructions {
  float: left;
  width: 53%;
}
@media screen and (max-width: 770px) {
  /* line 189, ../sass/partials/_recipes.scss */
  .recipe-detail .recipe-body .section-heading {
    margin-bottom: 15px;
  }
  /* line 192, ../sass/partials/_recipes.scss */
  .recipe-detail .recipe-body .ingredients, .recipe-detail .recipe-body .instructions {
    width: auto;
    float: none;
    margin-right: 0;
  }
  /* line 197, ../sass/partials/_recipes.scss */
  .recipe-detail .recipe-body .ingredients {
    margin-bottom: 50px;
  }
}

/* line 206, ../sass/partials/_recipes.scss */
.recipe-filter h2 {
  font-size: 1.15em;
  margin-bottom: 10px;
  line-height: 1;
  font-family: "Coustard", "Georgia", "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
}
/* line 212, ../sass/partials/_recipes.scss */
.recipe-filter ul {
  overflow: hidden;
  *zoom: 1;
  margin-bottom: 1.5em;
  font-size: 0.86em;
}
/* line 216, ../sass/partials/_recipes.scss */
.recipe-filter ul li {
  width: 48%;
  margin-right: 2%;
  float: left;
  margin-bottom: 0;
  border-bottom: 0;
  padding-bottom: 0;
}
/* line 224, ../sass/partials/_recipes.scss */
.recipe-filter ul li:nth-child(even) {
  width: 50%;
  margin-right: 0;
}
/* line 229, ../sass/partials/_recipes.scss */
.recipe-filter ul a {
  color: #c95628;
}
/* line 231, ../sass/partials/_recipes.scss */
.recipe-filter ul a:hover {
  color: #743217;
}
/* line 237, ../sass/partials/_recipes.scss */
.recipe-filter ul.view-all li {
  width: 100%;
  margin-right: 0;
  float: none;
}
@media screen and (max-width: 640px) {
  /* line 204, ../sass/partials/_recipes.scss */
  .recipe-filter {
    margin-bottom: 20px;
  }
}

/* line 1, ../sass/partials/_all_about_rice.scss */
ul.checklist {
  padding-left: 0;
}
/* line 3, ../sass/partials/_all_about_rice.scss */
ul.checklist li {
  margin-bottom: 30px;
  list-style-type: none;
  background: transparent url(../images/check-mark.png) no-repeat 0 50%;
  padding-left: 40px;
  min-height: 20px;
  line-height: 1.5;
}
/* line 10, ../sass/partials/_all_about_rice.scss */
ul.checklist li:last-child {
  margin-bottom: 0;
}

/* line 16, ../sass/partials/_all_about_rice.scss */
.infographic {
  border-top: 1px solid #EEE;
  padding: 40px 30px;
  text-align: center;
}
/* line 20, ../sass/partials/_all_about_rice.scss */
.infographic figcaption {
  font-size: 0.85em;
  margin-bottom: 30px;
}
/* line 24, ../sass/partials/_all_about_rice.scss */
.infographic img {
  display: block;
}

/* line 29, ../sass/partials/_all_about_rice.scss */
.all-about-rice .what-is-rice, .all-about-rice .factoid, .all-about-rice .growing-harvesting, .all-about-rice .health {
  position: static;
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-attachment: fixed;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 425px) {
  /* line 29, ../sass/partials/_all_about_rice.scss */
  .all-about-rice .what-is-rice, .all-about-rice .factoid, .all-about-rice .growing-harvesting, .all-about-rice .health {
    background-attachment: scroll;
  }
}

/* line 42, ../sass/partials/_all_about_rice.scss */
.all-about-rice-hero, .all-about-rice .what-is-rice, .all-about-rice .types-of-rice, .all-about-rice .forms-of-rice, .all-about-rice .growing-harvesting, .all-about-rice .milling-packaging, .all-about-rice .distribution, .all-about-rice .health, .all-about-rice .final {
  padding: 100px 0;
}
/* line 44, ../sass/partials/_all_about_rice.scss */
.all-about-rice-hero header, .all-about-rice .what-is-rice header, .all-about-rice .types-of-rice header, .all-about-rice .forms-of-rice header, .all-about-rice .growing-harvesting header, .all-about-rice .milling-packaging header, .all-about-rice .distribution header, .all-about-rice .health header, .all-about-rice .final header {
  margin-bottom: 60px;
}
/* line 46, ../sass/partials/_all_about_rice.scss */
.all-about-rice-hero header h1, .all-about-rice .what-is-rice header h1, .all-about-rice .types-of-rice header h1, .all-about-rice .forms-of-rice header h1, .all-about-rice .growing-harvesting header h1, .all-about-rice .milling-packaging header h1, .all-about-rice .distribution header h1, .all-about-rice .health header h1, .all-about-rice .final header h1 {
  font-size: 2.57em;
}
/* line 49, ../sass/partials/_all_about_rice.scss */
.all-about-rice-hero header .intro, .all-about-rice .what-is-rice header .intro, .all-about-rice .types-of-rice header .intro, .all-about-rice .forms-of-rice header .intro, .all-about-rice .growing-harvesting header .intro, .all-about-rice .milling-packaging header .intro, .all-about-rice .distribution header .intro, .all-about-rice .health header .intro, .all-about-rice .final header .intro {
  font-size: 1.14em;
  color: #515151;
}
/* line 56, ../sass/partials/_all_about_rice.scss */
.all-about-rice-hero .body-content, .all-about-rice .what-is-rice .body-content, .all-about-rice .types-of-rice .body-content, .all-about-rice .forms-of-rice .body-content, .all-about-rice .growing-harvesting .body-content, .all-about-rice .milling-packaging .body-content, .all-about-rice .distribution .body-content, .all-about-rice .health .body-content, .all-about-rice .final .body-content {
  overflow: hidden;
  *zoom: 1;
  font-size: 1.14em;
  color: #515151;
}
/* line 63, ../sass/partials/_all_about_rice.scss */
.all-about-rice-hero .content-box, .all-about-rice .what-is-rice .content-box, .all-about-rice .types-of-rice .content-box, .all-about-rice .forms-of-rice .content-box, .all-about-rice .growing-harvesting .content-box, .all-about-rice .milling-packaging .content-box, .all-about-rice .distribution .content-box, .all-about-rice .health .content-box, .all-about-rice .final .content-box {
  max-width: 400px;
  padding: 40px;
  background-color: white;
  -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.6), 0 3px 9px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.6), 0 3px 9px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.6), 0 3px 9px rgba(0, 0, 0, 0.3);
}
/* line 68, ../sass/partials/_all_about_rice.scss */
.all-about-rice-hero .content-box .infographic, .all-about-rice .what-is-rice .content-box .infographic, .all-about-rice .types-of-rice .content-box .infographic, .all-about-rice .forms-of-rice .content-box .infographic, .all-about-rice .growing-harvesting .content-box .infographic, .all-about-rice .milling-packaging .content-box .infographic, .all-about-rice .distribution .content-box .infographic, .all-about-rice .health .content-box .infographic, .all-about-rice .final .content-box .infographic {
  margin-left: -40px;
  margin-right: -40px;
  padding: 30px 40px;
}
/* line 75, ../sass/partials/_all_about_rice.scss */
.all-about-rice-hero .tab-nav, .all-about-rice .what-is-rice .tab-nav, .all-about-rice .types-of-rice .tab-nav, .all-about-rice .forms-of-rice .tab-nav, .all-about-rice .growing-harvesting .tab-nav, .all-about-rice .milling-packaging .tab-nav, .all-about-rice .distribution .tab-nav, .all-about-rice .health .tab-nav, .all-about-rice .final .tab-nav {
  margin: 0 -40px -40px -40px;
  padding: 0;
  font-size: 1.7em;
}
/* line 79, ../sass/partials/_all_about_rice.scss */
.all-about-rice-hero .tab-nav ul, .all-about-rice .what-is-rice .tab-nav ul, .all-about-rice .types-of-rice .tab-nav ul, .all-about-rice .forms-of-rice .tab-nav ul, .all-about-rice .growing-harvesting .tab-nav ul, .all-about-rice .milling-packaging .tab-nav ul, .all-about-rice .distribution .tab-nav ul, .all-about-rice .health .tab-nav ul, .all-about-rice .final .tab-nav ul {
  overflow: hidden;
  *zoom: 1;
  list-style: none;
  margin: 0;
  padding: 0;
}
/* line 85, ../sass/partials/_all_about_rice.scss */
.all-about-rice-hero .tab-nav li, .all-about-rice .what-is-rice .tab-nav li, .all-about-rice .types-of-rice .tab-nav li, .all-about-rice .forms-of-rice .tab-nav li, .all-about-rice .growing-harvesting .tab-nav li, .all-about-rice .milling-packaging .tab-nav li, .all-about-rice .distribution .tab-nav li, .all-about-rice .health .tab-nav li, .all-about-rice .final .tab-nav li {
  float: left;
  padding: 0;
  text-align: center;
  background-color: #f0f0f0;
  border-top: 1px solid #c8c8c8;
  cursor: pointer;
}
/* line 92, ../sass/partials/_all_about_rice.scss */
.all-about-rice-hero .tab-nav li span, .all-about-rice .what-is-rice .tab-nav li span, .all-about-rice .types-of-rice .tab-nav li span, .all-about-rice .forms-of-rice .tab-nav li span, .all-about-rice .growing-harvesting .tab-nav li span, .all-about-rice .milling-packaging .tab-nav li span, .all-about-rice .distribution .tab-nav li span, .all-about-rice .health .tab-nav li span, .all-about-rice .final .tab-nav li span {
  padding: 40px 20px;
  display: block;
  border-right: 1px solid #c8c8c8;
  -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}
/* line 98, ../sass/partials/_all_about_rice.scss */
.all-about-rice-hero .tab-nav li:hover, .all-about-rice .what-is-rice .tab-nav li:hover, .all-about-rice .types-of-rice .tab-nav li:hover, .all-about-rice .forms-of-rice .tab-nav li:hover, .all-about-rice .growing-harvesting .tab-nav li:hover, .all-about-rice .milling-packaging .tab-nav li:hover, .all-about-rice .distribution .tab-nav li:hover, .all-about-rice .health .tab-nav li:hover, .all-about-rice .final .tab-nav li:hover {
  background-color: #E0E0E0;
}
/* line 102, ../sass/partials/_all_about_rice.scss */
.all-about-rice-hero .tab-nav li:last-child span, .all-about-rice .what-is-rice .tab-nav li:last-child span, .all-about-rice .types-of-rice .tab-nav li:last-child span, .all-about-rice .forms-of-rice .tab-nav li:last-child span, .all-about-rice .growing-harvesting .tab-nav li:last-child span, .all-about-rice .milling-packaging .tab-nav li:last-child span, .all-about-rice .distribution .tab-nav li:last-child span, .all-about-rice .health .tab-nav li:last-child span, .all-about-rice .final .tab-nav li:last-child span {
  border-right: 0;
}
/* line 106, ../sass/partials/_all_about_rice.scss */
.all-about-rice-hero .tab-nav li.selected, .all-about-rice .what-is-rice .tab-nav li.selected, .all-about-rice .types-of-rice .tab-nav li.selected, .all-about-rice .forms-of-rice .tab-nav li.selected, .all-about-rice .growing-harvesting .tab-nav li.selected, .all-about-rice .milling-packaging .tab-nav li.selected, .all-about-rice .distribution .tab-nav li.selected, .all-about-rice .health .tab-nav li.selected, .all-about-rice .final .tab-nav li.selected {
  border-top: 1px solid white;
  background-color: white;
  cursor: auto;
}
/* line 110, ../sass/partials/_all_about_rice.scss */
.all-about-rice-hero .tab-nav li.selected span, .all-about-rice .what-is-rice .tab-nav li.selected span, .all-about-rice .types-of-rice .tab-nav li.selected span, .all-about-rice .forms-of-rice .tab-nav li.selected span, .all-about-rice .growing-harvesting .tab-nav li.selected span, .all-about-rice .milling-packaging .tab-nav li.selected span, .all-about-rice .distribution .tab-nav li.selected span, .all-about-rice .health .tab-nav li.selected span, .all-about-rice .final .tab-nav li.selected span {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
/* line 117, ../sass/partials/_all_about_rice.scss */
.all-about-rice-hero .button-nav, .all-about-rice .what-is-rice .button-nav, .all-about-rice .types-of-rice .button-nav, .all-about-rice .forms-of-rice .button-nav, .all-about-rice .growing-harvesting .button-nav, .all-about-rice .milling-packaging .button-nav, .all-about-rice .distribution .button-nav, .all-about-rice .health .button-nav, .all-about-rice .final .button-nav {
  clear: both;
  text-align: center;
}
/* line 120, ../sass/partials/_all_about_rice.scss */
.all-about-rice-hero .button-nav ul, .all-about-rice .what-is-rice .button-nav ul, .all-about-rice .types-of-rice .button-nav ul, .all-about-rice .forms-of-rice .button-nav ul, .all-about-rice .growing-harvesting .button-nav ul, .all-about-rice .milling-packaging .button-nav ul, .all-about-rice .distribution .button-nav ul, .all-about-rice .health .button-nav ul, .all-about-rice .final .button-nav ul {
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  *zoom: 1;
}
/* line 49, ../../../../../../../../.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/compass-core-1.0.3/stylesheets/compass/typography/lists/_inline-block-list.scss */
.all-about-rice-hero .button-nav ul li, .all-about-rice .what-is-rice .button-nav ul li, .all-about-rice .types-of-rice .button-nav ul li, .all-about-rice .forms-of-rice .button-nav ul li, .all-about-rice .growing-harvesting .button-nav ul li, .all-about-rice .milling-packaging .button-nav ul li, .all-about-rice .distribution .button-nav ul li, .all-about-rice .health .button-nav ul li, .all-about-rice .final .button-nav ul li {
  list-style-image: none;
  list-style-type: none;
  margin-left: 0;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  white-space: nowrap;
}
/* line 123, ../sass/partials/_all_about_rice.scss */
.all-about-rice-hero .button-nav li, .all-about-rice .what-is-rice .button-nav li, .all-about-rice .types-of-rice .button-nav li, .all-about-rice .forms-of-rice .button-nav li, .all-about-rice .growing-harvesting .button-nav li, .all-about-rice .milling-packaging .button-nav li, .all-about-rice .distribution .button-nav li, .all-about-rice .health .button-nav li, .all-about-rice .final .button-nav li {
  margin-right: 20px;
  margin-bottom: 20px;
}
/* line 126, ../sass/partials/_all_about_rice.scss */
.all-about-rice-hero .button-nav li:last-child, .all-about-rice .what-is-rice .button-nav li:last-child, .all-about-rice .types-of-rice .button-nav li:last-child, .all-about-rice .forms-of-rice .button-nav li:last-child, .all-about-rice .growing-harvesting .button-nav li:last-child, .all-about-rice .milling-packaging .button-nav li:last-child, .all-about-rice .distribution .button-nav li:last-child, .all-about-rice .health .button-nav li:last-child, .all-about-rice .final .button-nav li:last-child {
  margin-right: 0;
}
/* line 130, ../sass/partials/_all_about_rice.scss */
.all-about-rice-hero .button-nav a, .all-about-rice .what-is-rice .button-nav a, .all-about-rice .types-of-rice .button-nav a, .all-about-rice .forms-of-rice .button-nav a, .all-about-rice .growing-harvesting .button-nav a, .all-about-rice .milling-packaging .button-nav a, .all-about-rice .distribution .button-nav a, .all-about-rice .health .button-nav a, .all-about-rice .final .button-nav a {
  display: block;
  padding-left: 20px;
  padding-right: 20px;
  min-width: 180px;
}
/* line 141, ../sass/partials/_all_about_rice.scss */
.all-about-rice-hero .video-callout .media-body, .all-about-rice .what-is-rice .video-callout .media-body, .all-about-rice .types-of-rice .video-callout .media-body, .all-about-rice .forms-of-rice .video-callout .media-body, .all-about-rice .growing-harvesting .video-callout .media-body, .all-about-rice .milling-packaging .video-callout .media-body, .all-about-rice .distribution .video-callout .media-body, .all-about-rice .health .video-callout .media-body, .all-about-rice .final .video-callout .media-body {
  float: left;
  width: 45%;
  margin-right: 5%;
}
/* line 146, ../sass/partials/_all_about_rice.scss */
.all-about-rice-hero .video-callout .media-img, .all-about-rice .what-is-rice .video-callout .media-img, .all-about-rice .types-of-rice .video-callout .media-img, .all-about-rice .forms-of-rice .video-callout .media-img, .all-about-rice .growing-harvesting .video-callout .media-img, .all-about-rice .milling-packaging .video-callout .media-img, .all-about-rice .distribution .video-callout .media-img, .all-about-rice .health .video-callout .media-img, .all-about-rice .final .video-callout .media-img {
  float: left;
  margin-right: 0;
  width: 49%;
}
@media screen and (max-width: 770px) {
  /* line 155, ../sass/partials/_all_about_rice.scss */
  .all-about-rice-hero .video-callout .media-body, .all-about-rice .what-is-rice .video-callout .media-body, .all-about-rice .types-of-rice .video-callout .media-body, .all-about-rice .forms-of-rice .video-callout .media-body, .all-about-rice .growing-harvesting .video-callout .media-body, .all-about-rice .milling-packaging .video-callout .media-body, .all-about-rice .distribution .video-callout .media-body, .all-about-rice .health .video-callout .media-body, .all-about-rice .final .video-callout .media-body {
    float: none;
    width: auto;
    margin-bottom: 30px;
    margin-right: 0;
  }
  /* line 161, ../sass/partials/_all_about_rice.scss */
  .all-about-rice-hero .video-callout .media-img, .all-about-rice .what-is-rice .video-callout .media-img, .all-about-rice .types-of-rice .video-callout .media-img, .all-about-rice .forms-of-rice .video-callout .media-img, .all-about-rice .growing-harvesting .video-callout .media-img, .all-about-rice .milling-packaging .video-callout .media-img, .all-about-rice .distribution .video-callout .media-img, .all-about-rice .health .video-callout .media-img, .all-about-rice .final .video-callout .media-img {
    float: none;
    width: auto;
  }
  /* line 167, ../sass/partials/_all_about_rice.scss */
  .all-about-rice-hero .button-nav a, .all-about-rice .what-is-rice .button-nav a, .all-about-rice .types-of-rice .button-nav a, .all-about-rice .forms-of-rice .button-nav a, .all-about-rice .growing-harvesting .button-nav a, .all-about-rice .milling-packaging .button-nav a, .all-about-rice .distribution .button-nav a, .all-about-rice .health .button-nav a, .all-about-rice .final .button-nav a {
    min-width: 150px;
  }
}
@media screen and (max-width: 640px) {
  /* line 42, ../sass/partials/_all_about_rice.scss */
  .all-about-rice-hero, .all-about-rice .what-is-rice, .all-about-rice .types-of-rice, .all-about-rice .forms-of-rice, .all-about-rice .growing-harvesting, .all-about-rice .milling-packaging, .all-about-rice .distribution, .all-about-rice .health, .all-about-rice .final {
    padding: 50px 0;
  }
  /* line 176, ../sass/partials/_all_about_rice.scss */
  .all-about-rice-hero header, .all-about-rice .what-is-rice header, .all-about-rice .types-of-rice header, .all-about-rice .forms-of-rice header, .all-about-rice .growing-harvesting header, .all-about-rice .milling-packaging header, .all-about-rice .distribution header, .all-about-rice .health header, .all-about-rice .final header {
    margin-bottom: 30px;
  }
  /* line 178, ../sass/partials/_all_about_rice.scss */
  .all-about-rice-hero header h1, .all-about-rice .what-is-rice header h1, .all-about-rice .types-of-rice header h1, .all-about-rice .forms-of-rice header h1, .all-about-rice .growing-harvesting header h1, .all-about-rice .milling-packaging header h1, .all-about-rice .distribution header h1, .all-about-rice .health header h1, .all-about-rice .final header h1 {
    font-size: 2em;
  }
  /* line 185, ../sass/partials/_all_about_rice.scss */
  .all-about-rice-hero .content-box, .all-about-rice .what-is-rice .content-box, .all-about-rice .types-of-rice .content-box, .all-about-rice .forms-of-rice .content-box, .all-about-rice .growing-harvesting .content-box, .all-about-rice .milling-packaging .content-box, .all-about-rice .distribution .content-box, .all-about-rice .health .content-box, .all-about-rice .final .content-box {
    max-width: 100%;
  }
  /* line 189, ../sass/partials/_all_about_rice.scss */
  .all-about-rice-hero .button-nav a, .all-about-rice .what-is-rice .button-nav a, .all-about-rice .types-of-rice .button-nav a, .all-about-rice .forms-of-rice .button-nav a, .all-about-rice .growing-harvesting .button-nav a, .all-about-rice .milling-packaging .button-nav a, .all-about-rice .distribution .button-nav a, .all-about-rice .health .button-nav a, .all-about-rice .final .button-nav a {
    min-width: 0;
  }
  /* line 193, ../sass/partials/_all_about_rice.scss */
  .all-about-rice-hero .tab-nav, .all-about-rice .what-is-rice .tab-nav, .all-about-rice .types-of-rice .tab-nav, .all-about-rice .forms-of-rice .tab-nav, .all-about-rice .growing-harvesting .tab-nav, .all-about-rice .milling-packaging .tab-nav, .all-about-rice .distribution .tab-nav, .all-about-rice .health .tab-nav, .all-about-rice .final .tab-nav {
    font-size: 1.28em;
  }
}
@media screen and (max-width: 425px) {
  /* line 42, ../sass/partials/_all_about_rice.scss */
  .all-about-rice-hero, .all-about-rice .what-is-rice, .all-about-rice .types-of-rice, .all-about-rice .forms-of-rice, .all-about-rice .growing-harvesting, .all-about-rice .milling-packaging, .all-about-rice .distribution, .all-about-rice .health, .all-about-rice .final {
    padding: 30px 0;
  }
  /* line 199, ../sass/partials/_all_about_rice.scss */
  .all-about-rice-hero header, .all-about-rice .what-is-rice header, .all-about-rice .types-of-rice header, .all-about-rice .forms-of-rice header, .all-about-rice .growing-harvesting header, .all-about-rice .milling-packaging header, .all-about-rice .distribution header, .all-about-rice .health header, .all-about-rice .final header {
    margin-bottom: 20px;
  }
  /* line 201, ../sass/partials/_all_about_rice.scss */
  .all-about-rice-hero header .intro, .all-about-rice .what-is-rice header .intro, .all-about-rice .types-of-rice header .intro, .all-about-rice .forms-of-rice header .intro, .all-about-rice .growing-harvesting header .intro, .all-about-rice .milling-packaging header .intro, .all-about-rice .distribution header .intro, .all-about-rice .health header .intro, .all-about-rice .final header .intro {
    font-size: 1em;
  }
  /* line 205, ../sass/partials/_all_about_rice.scss */
  .all-about-rice-hero .body-content, .all-about-rice .what-is-rice .body-content, .all-about-rice .types-of-rice .body-content, .all-about-rice .forms-of-rice .body-content, .all-about-rice .growing-harvesting .body-content, .all-about-rice .milling-packaging .body-content, .all-about-rice .distribution .body-content, .all-about-rice .health .body-content, .all-about-rice .final .body-content {
    font-size: 1em;
  }
  /* line 209, ../sass/partials/_all_about_rice.scss */
  .all-about-rice-hero .button-nav ul li, .all-about-rice .what-is-rice .button-nav ul li, .all-about-rice .types-of-rice .button-nav ul li, .all-about-rice .forms-of-rice .button-nav ul li, .all-about-rice .growing-harvesting .button-nav ul li, .all-about-rice .milling-packaging .button-nav ul li, .all-about-rice .distribution .button-nav ul li, .all-about-rice .health .button-nav ul li, .all-about-rice .final .button-nav ul li {
    margin-right: auto;
    margin-left: auto;
    display: block;
    max-width: 250px;
  }
  /* line 214, ../sass/partials/_all_about_rice.scss */
  .all-about-rice-hero .button-nav ul li:last-child, .all-about-rice .what-is-rice .button-nav ul li:last-child, .all-about-rice .types-of-rice .button-nav ul li:last-child, .all-about-rice .forms-of-rice .button-nav ul li:last-child, .all-about-rice .growing-harvesting .button-nav ul li:last-child, .all-about-rice .milling-packaging .button-nav ul li:last-child, .all-about-rice .distribution .button-nav ul li:last-child, .all-about-rice .health .button-nav ul li:last-child, .all-about-rice .final .button-nav ul li:last-child {
    margin-right: auto;
  }
}

/* line 222, ../sass/partials/_all_about_rice.scss */
.all-about-rice-hero-container {
  max-width: 800px;
  z-index: 1;
  position: relative;
}
/* line 228, ../sass/partials/_all_about_rice.scss */
.all-about-rice-hero-container:before {
  content: '';
  width: 36px;
  height: 36px;
  background: url(../images/down-arrow.png) no-repeat 50% 50%;
  position: absolute;
  bottom: 20px;
  left: 50%;
  margin-left: -18px;
  z-index: 1000;
}
@media screen and (max-width: 640px) {
  /* line 240, ../sass/partials/_all_about_rice.scss */
  .all-about-rice-hero-container:before {
    bottom: 10px;
  }
}
@media screen and (max-width: 425px) {
  /* line 246, ../sass/partials/_all_about_rice.scss */
  .all-about-rice-hero-container:before {
    display: none;
  }
}

/* line 253, ../sass/partials/_all_about_rice.scss */
.all-about-rice-hero {
  text-align: center;
  position: relative;
}
/* line 258, ../sass/partials/_all_about_rice.scss */
.all-about-rice-hero header {
  text-align: center;
}
/* line 260, ../sass/partials/_all_about_rice.scss */
.all-about-rice-hero header h1 {
  font-size: 4.28em;
  margin-bottom: 15px;
}
/* line 264, ../sass/partials/_all_about_rice.scss */
.all-about-rice-hero header h2 {
  font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.72em;
  margin-bottom: 0;
  color: #86a1ad;
}
/* line 274, ../sass/partials/_all_about_rice.scss */
.all-about-rice-hero .media-img {
  width: 45%;
  margin-right: 5%;
}
/* line 278, ../sass/partials/_all_about_rice.scss */
.all-about-rice-hero .media-body {
  width: 50%;
  margin-top: 70px;
  font-size: 1.28em;
  color: #515151;
  text-align: left;
}
@media screen and (max-width: 640px) {
  /* line 288, ../sass/partials/_all_about_rice.scss */
  .all-about-rice-hero header {
    margin-bottom: 20px;
  }
  /* line 290, ../sass/partials/_all_about_rice.scss */
  .all-about-rice-hero header h1 {
    font-size: 2.25em;
  }
  /* line 293, ../sass/partials/_all_about_rice.scss */
  .all-about-rice-hero header h2 {
    font-size: 1.14em;
    margin-bottom: 0;
  }
  /* line 300, ../sass/partials/_all_about_rice.scss */
  .all-about-rice-hero .abr-hero-media .media-img {
    float: none;
    width: auto;
    margin: 0 auto 10px auto;
    max-width: 200px;
  }
  /* line 306, ../sass/partials/_all_about_rice.scss */
  .all-about-rice-hero .abr-hero-media .media-body {
    float: none;
    width: auto;
  }
}

/* line 315, ../sass/partials/_all_about_rice.scss */
.all-about-rice-hero {
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -moz-transform: translate(10px, -10px) scale(0.2);
  -ms-transform: translate(10px, -10px) scale(0.2);
  -webkit-transform: translate(10px, -10px) scale(0.2);
  transform: translate(10px, -10px) scale(0.2);
  -moz-transition: none;
  -o-transition: none;
  -webkit-transition: none;
  transition: none;
}

/* line 324, ../sass/partials/_all_about_rice.scss */
.no-js .all-about-rice-hero {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-transform: none;
  -ms-transform: none;
  -webkit-transform: none;
  transform: none;
}

/* line 328, ../sass/partials/_all_about_rice.scss */
.abr-hero-show {
  -moz-transition: opacity 0.7s ease, -moz-transform 0.5s ease;
  -o-transition: opacity 0.7s ease, -o-transform 0.5s ease;
  -webkit-transition: opacity 0.7s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.7s ease, transform 0.5s ease;
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}

/* line 335, ../sass/partials/_all_about_rice.scss */
.all-about-rice .what-is-rice {
  background-color: white;
  background-image: url(../images/all-about-rice/what-rice-background.jpg);
}
/* line 341, ../sass/partials/_all_about_rice.scss */
.all-about-rice .what-is-rice .rice-inside {
  display: none;
}
/* line 346, ../sass/partials/_all_about_rice.scss */
.all-about-rice .what-is-rice .tab-nav li {
  width: 50%;
}

/* line 354, ../sass/partials/_all_about_rice.scss */
.all-about-rice .types-of-rice header, .all-about-rice .forms-of-rice header {
  margin-left: auto;
  margin-right: auto;
  max-width: 500px;
  text-align: center;
}
/* line 362, ../sass/partials/_all_about_rice.scss */
.all-about-rice .types-of-rice .gallery ul, .all-about-rice .forms-of-rice .gallery ul {
  overflow: hidden;
  *zoom: 1;
}
/* line 365, ../sass/partials/_all_about_rice.scss */
.all-about-rice .types-of-rice .gallery li, .all-about-rice .forms-of-rice .gallery li {
  width: 30%;
  margin-right: 3%;
  float: left;
}
/* line 369, ../sass/partials/_all_about_rice.scss */
.all-about-rice .types-of-rice .gallery li:last-child, .all-about-rice .forms-of-rice .gallery li:last-child {
  margin-right: 0;
}
/* line 374, ../sass/partials/_all_about_rice.scss */
.all-about-rice .types-of-rice .gallery figure img, .all-about-rice .forms-of-rice .gallery figure img {
  display: block;
  position: relative;
  max-width: 300px;
  margin: 0 auto 20px auto;
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -moz-transition: -moz-transform 0.2s ease-out;
  -o-transition: -o-transform 0.2s ease-out;
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
}
/* line 382, ../sass/partials/_all_about_rice.scss */
.all-about-rice .types-of-rice .gallery figure img:hover, .all-about-rice .forms-of-rice .gallery figure img:hover {
  opacity: 1;
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
/* line 387, ../sass/partials/_all_about_rice.scss */
.all-about-rice .types-of-rice .gallery figure figcaption h4, .all-about-rice .forms-of-rice .gallery figure figcaption h4 {
  font-size: 1.42em;
  margin-bottom: 20px;
}
@media screen and (max-width: 640px) {
  /* line 396, ../sass/partials/_all_about_rice.scss */
  .all-about-rice .types-of-rice .gallery li, .all-about-rice .forms-of-rice .gallery li {
    float: none;
    width: 100%;
    margin-right: 0;
  }
}
@media screen and (max-width: 425px) {
  /* line 406, ../sass/partials/_all_about_rice.scss */
  .all-about-rice .types-of-rice .gallery figure img, .all-about-rice .forms-of-rice .gallery figure img {
    max-width: 250px;
  }
}

/* line 415, ../sass/partials/_all_about_rice.scss */
.all-about-rice .factoid {
  background-color: #bc836c;
  padding: 100px 0;
  background-image: url(../images/all-about-rice/factiod-background.jpg);
  color: white;
}
/* line 421, ../sass/partials/_all_about_rice.scss */
.all-about-rice .factoid blockquote {
  color: white;
  font-size: 2.28em;
  font-family: "Coustard", "Georgia", "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  text-align: center;
  max-width: 350px;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.6), 0px 2px 4px rgba(0, 0, 0, 0.1);
  line-height: 1.25;
}
/* line 431, ../sass/partials/_all_about_rice.scss */
.all-about-rice .factoid blockquote strong {
  display: block;
  font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, Helvetica, sans-serif;
  font-size: 200%;
  font-weight: normal;
}
@media screen and (max-width: 640px) {
  /* line 415, ../sass/partials/_all_about_rice.scss */
  .all-about-rice .factoid {
    padding: 50px 0;
  }
  /* line 440, ../sass/partials/_all_about_rice.scss */
  .all-about-rice .factoid blockquote {
    font-size: 2.14em;
  }
}
@media screen and (max-width: 425px) {
  /* line 445, ../sass/partials/_all_about_rice.scss */
  .all-about-rice .factoid blockquote {
    font-size: 1.75em;
  }
}

/* line 450, ../sass/partials/_all_about_rice.scss */
.all-about-rice .factoid {
  overflow: hidden;
}
/* line 452, ../sass/partials/_all_about_rice.scss */
.all-about-rice .factoid blockquote {
  z-index: 1;
  opacity: 1.0;
  -moz-transition-delay: 0.25s;
  -o-transition-delay: 0.25s;
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -moz-transition: -moz-transform 1s ease, opacity 1.25s linear;
  -o-transition: -o-transform 1s ease, opacity 1.25s linear;
  -webkit-transition: -webkit-transform 1s ease, opacity 1.25s linear;
  transition: transform 1s ease, opacity 1.25s linear;
}
/* line 462, ../sass/partials/_all_about_rice.scss */
.all-about-rice .factoid.outside-viewport blockquote {
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
  opacity: 0;
  -moz-transform: translateY(1000px);
  -ms-transform: translateY(1000px);
  -webkit-transform: translateY(1000px);
  transform: translateY(1000px);
}
@media screen and (max-width: 640px) {
  /* line 473, ../sass/partials/_all_about_rice.scss */
  .all-about-rice .factoid.outside-viewport blockquote {
    opacity: 1.0;
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/* line 480, ../sass/partials/_all_about_rice.scss */
.all-about-rice .growing-harvesting {
  -moz-box-shadow: inset 0 4px 6px -6px rgba(0, 0, 0, 0.6), inset 0 12px 6px -6px rgba(0, 0, 0, 0.1), inset 0 -4px 6px -6px rgba(0, 0, 0, 0.6), inset 0 -12px 6px -6px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset 0 4px 6px -6px rgba(0, 0, 0, 0.6), inset 0 12px 6px -6px rgba(0, 0, 0, 0.1), inset 0 -4px 6px -6px rgba(0, 0, 0, 0.6), inset 0 -12px 6px -6px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 4px 6px -6px rgba(0, 0, 0, 0.6), inset 0 12px 6px -6px rgba(0, 0, 0, 0.1), inset 0 -4px 6px -6px rgba(0, 0, 0, 0.6), inset 0 -12px 6px -6px rgba(0, 0, 0, 0.1);
  background-color: white;
  background-image: url(../images/all-about-rice/growing-harvesting-background.jpg);
}
/* line 489, ../sass/partials/_all_about_rice.scss */
.all-about-rice .growing-harvesting header {
  margin-bottom: 30px;
}
/* line 492, ../sass/partials/_all_about_rice.scss */
.all-about-rice .growing-harvesting h1 {
  text-align: center;
}
/* line 497, ../sass/partials/_all_about_rice.scss */
.all-about-rice .growing-harvesting .body-content .col-1, .all-about-rice .growing-harvesting .body-content .col-2, .all-about-rice .growing-harvesting .body-content .col-3 {
  float: left;
  width: 30%;
  margin-right: 3%;
}
@media screen and (max-width: 640px) {
  /* line 505, ../sass/partials/_all_about_rice.scss */
  .all-about-rice .growing-harvesting .body-content .col-1, .all-about-rice .growing-harvesting .body-content .col-2, .all-about-rice .growing-harvesting .body-content .col-3 {
    float: none;
    width: auto;
    margin-right: 0;
  }
}

/* line 518, ../sass/partials/_all_about_rice.scss */
.all-about-rice .milling-packaging header {
  max-width: 500px;
}

/* line 528, ../sass/partials/_all_about_rice.scss */
.abr-share {
  text-align: center;
}
/* line 530, ../sass/partials/_all_about_rice.scss */
.abr-share .share-bar {
  margin: 0 auto;
  max-width: 600px;
}

/* line 536, ../sass/partials/_all_about_rice.scss */
.all-about-rice .video-loop {
  background-color: #F0F0F0;
  max-height: 300px;
  overflow: hidden;
}
/* line 540, ../sass/partials/_all_about_rice.scss */
.all-about-rice .video-loop img, .all-about-rice .video-loop video {
  width: 100%;
}
@media screen and (max-width: 640px) {
  /* line 536, ../sass/partials/_all_about_rice.scss */
  .all-about-rice .video-loop {
    background-image: url(../images/all-about-rice/video-loop-poster.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    -moz-background-size: cover;
    -o-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
    height: 200px;
  }
  /* line 549, ../sass/partials/_all_about_rice.scss */
  .all-about-rice .video-loop video {
    display: none;
  }
}

/* line 556, ../sass/partials/_all_about_rice.scss */
.all-about-rice .distribution {
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-color: white;
}
/* line 563, ../sass/partials/_all_about_rice.scss */
.all-about-rice .distribution .background {
  position: absolute;
  top: 0;
  left: 0;
  max-width: none;
  width: 1400px;
  z-index: 1;
  -moz-transition: width 2s linear, top 2s linear, left 2s linear;
  -o-transition: width 2s linear, top 2s linear, left 2s linear;
  -webkit-transition: width 2s linear, top 2s linear, left 2s linear;
  transition: width 2s linear, top 2s linear, left 2s linear;
  -moz-transition-delay: 0.75s;
  -o-transition-delay: 0.75s;
  -webkit-transition-delay: 0.75s;
  transition-delay: 0.75s;
}
/* line 575, ../sass/partials/_all_about_rice.scss */
.all-about-rice .distribution header {
  max-width: 475px;
  float: right;
  position: relative;
  z-index: 10;
}
/* line 582, ../sass/partials/_all_about_rice.scss */
.all-about-rice .distribution.outside-viewport .background {
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
  max-width: none;
  left: -2000px;
  top: -1700px;
  width: 10560px;
}
@media screen and (max-width: 1100px) {
  /* line 593, ../sass/partials/_all_about_rice.scss */
  .all-about-rice .distribution.outside-viewport .background {
    left: -2200px;
  }
}
@media screen and (max-width: 770px) {
  /* line 598, ../sass/partials/_all_about_rice.scss */
  .all-about-rice .distribution.outside-viewport .background {
    left: -2400px;
  }
}
@media screen and (max-width: 640px) {
  /* line 605, ../sass/partials/_all_about_rice.scss */
  .all-about-rice .distribution .background {
    -moz-transition: none;
    -o-transition: none;
    -webkit-transition: none;
    transition: none;
  }
  /* line 608, ../sass/partials/_all_about_rice.scss */
  .all-about-rice .distribution.outside-viewport .background {
    width: 1200px;
    top: 0;
    left: 0;
  }
}
@media screen and (max-width: 425px) {
  /* line 618, ../sass/partials/_all_about_rice.scss */
  .all-about-rice .distribution header {
    float: none;
  }
}

/* line 624, ../sass/partials/_all_about_rice.scss */
.all-about-rice .health {
  position: relative;
  z-index: 0;
  background-color: white;
  background-image: url(../images/all-about-rice/health-background.jpg);
}
/* line 632, ../sass/partials/_all_about_rice.scss */
.all-about-rice .health .content-box {
  background-image: url(../images/all-about-rice/health-box-background.jpg);
  background-repeat: no-repeat;
  background-position: right bottom;
}

/* line 640, ../sass/partials/_all_about_rice.scss */
.all-about-rice .final .container, .all-about-rice .final .all-about-rice-hero-container, .all-about-rice .final .factoid blockquote, .all-about-rice .factoid .final blockquote, .all-about-rice .final .home-page-hero-container, .all-about-rice .final .home-page-video-callout-container {
  max-width: 700px;
}
/* line 644, ../sass/partials/_all_about_rice.scss */
.all-about-rice .final header h1 {
  text-align: center;
}
/* line 648, ../sass/partials/_all_about_rice.scss */
.all-about-rice .final .feature-img {
  text-align: center;
  margin: 0 auto 10px auto;
}

/* line 2, ../sass/partials/_home.scss */
.home-page-hero-container {
  z-index: 1;
  max-width: 900px;
  margin-bottom: 60px;
}
@media screen and (max-width: 770px) {
  /* line 2, ../sass/partials/_home.scss */
  .home-page-hero-container {
    margin-top: -50px;
    margin-bottom: 40px;
  }
}

/* line 16, ../sass/partials/_home.scss */
.home-page-hero .media-img {
  width: 34%;
  margin-right: 3%;
  max-width: 300px;
}
/* line 21, ../sass/partials/_home.scss */
.home-page-hero .media-body {
  margin-top: 70px;
}
/* line 23, ../sass/partials/_home.scss */
.home-page-hero .media-body h1 {
  margin-bottom: 30px;
  font-size: 2.75em;
}
/* line 27, ../sass/partials/_home.scss */
.home-page-hero .media-body p {
  margin-bottom: 50px;
}
@media screen and (max-width: 770px) {
  /* line 32, ../sass/partials/_home.scss */
  .home-page-hero .media-img, .home-page-hero .media-body {
    float: none;
    width: auto;
    margin-right: 0;
  }
  /* line 37, ../sass/partials/_home.scss */
  .home-page-hero .media-img {
    margin: 0 auto;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
    opacity: 0.6;
  }
  /* line 41, ../sass/partials/_home.scss */
  .home-page-hero .media-body {
    position: relative;
    z-index: 100;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -70px;
  }
  /* line 48, ../sass/partials/_home.scss */
  .home-page-hero .media-body h1 {
    font-size: 2.14em;
    margin-bottom: 20px;
  }
  /* line 52, ../sass/partials/_home.scss */
  .home-page-hero .media-body p {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 425px) {
  /* line 59, ../sass/partials/_home.scss */
  .home-page-hero .media-body h1 {
    font-size: 1.85em;
    text-align: center;
  }
  /* line 64, ../sass/partials/_home.scss */
  .home-page-hero .button, .home-page-hero .all-about-rice-hero .button-nav a, .all-about-rice-hero .button-nav .home-page-hero a, .home-page-hero .all-about-rice .what-is-rice .button-nav a, .all-about-rice .what-is-rice .button-nav .home-page-hero a, .home-page-hero .all-about-rice .types-of-rice .button-nav a, .all-about-rice .types-of-rice .button-nav .home-page-hero a, .home-page-hero .all-about-rice .forms-of-rice .button-nav a, .all-about-rice .forms-of-rice .button-nav .home-page-hero a, .home-page-hero .all-about-rice .growing-harvesting .button-nav a, .all-about-rice .growing-harvesting .button-nav .home-page-hero a, .home-page-hero .all-about-rice .milling-packaging .button-nav a, .all-about-rice .milling-packaging .button-nav .home-page-hero a, .home-page-hero .all-about-rice .distribution .button-nav a, .all-about-rice .distribution .button-nav .home-page-hero a, .home-page-hero .all-about-rice .health .button-nav a, .all-about-rice .health .button-nav .home-page-hero a, .home-page-hero .all-about-rice .final .button-nav a, .all-about-rice .final .button-nav .home-page-hero a {
    font-size: 0.85em;
  }
}

/* line 75, ../sass/partials/_home.scss */
.home-page-hero-nav li {
  margin-right: 1em;
}
/* line 77, ../sass/partials/_home.scss */
.home-page-hero-nav li:last-child {
  margin-right: 0;
}
/* line 81, ../sass/partials/_home.scss */
.home-page-hero-nav a {
  text-decoration: none;
  padding: 10px 25px;
}
@media screen and (max-width: 770px) {
  /* line 71, ../sass/partials/_home.scss */
  .home-page-hero-nav {
    text-align: center;
  }
}

/* line 92, ../sass/partials/_home.scss */
.hp-large-banner, .hp-meet-farmers-banner, .hp-about-rice-banner {
  position: relative;
  margin-bottom: 80px;
  padding: 100px 0 80px 0;
  border-top: 1px solid #EEE;
  border-bottom: 1px solid #EEE;
  text-align: center;
  background-color: #f6f6df;
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-attachment: fixed;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
/* line 108, ../sass/partials/_home.scss */
.hp-large-banner .body, .hp-meet-farmers-banner .body, .hp-about-rice-banner .body {
  margin: 0 auto;
  max-width: 650px;
}
/* line 112, ../sass/partials/_home.scss */
.hp-large-banner .body h1, .hp-meet-farmers-banner .body h1, .hp-about-rice-banner .body h1 {
  color: black;
  font-size: 2.25em;
  line-height: 1.2;
  margin-bottom: 30px;
}
/* line 119, ../sass/partials/_home.scss */
.hp-large-banner .body p, .hp-meet-farmers-banner .body p, .hp-about-rice-banner .body p {
  color: white;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.7);
}
/* line 124, ../sass/partials/_home.scss */
.hp-large-banner .button, .hp-meet-farmers-banner .button, .hp-about-rice-banner .button, .hp-large-banner .all-about-rice-hero .button-nav a, .all-about-rice-hero .button-nav .hp-large-banner a, .hp-meet-farmers-banner .all-about-rice-hero .button-nav a, .all-about-rice-hero .button-nav .hp-meet-farmers-banner a, .hp-about-rice-banner .all-about-rice-hero .button-nav a, .all-about-rice-hero .button-nav .hp-about-rice-banner a, .hp-large-banner .all-about-rice .what-is-rice .button-nav a, .all-about-rice .what-is-rice .button-nav .hp-large-banner a, .hp-meet-farmers-banner .all-about-rice .what-is-rice .button-nav a, .all-about-rice .what-is-rice .button-nav .hp-meet-farmers-banner a, .hp-about-rice-banner .all-about-rice .what-is-rice .button-nav a, .all-about-rice .what-is-rice .button-nav .hp-about-rice-banner a, .hp-large-banner .all-about-rice .types-of-rice .button-nav a, .all-about-rice .types-of-rice .button-nav .hp-large-banner a, .hp-meet-farmers-banner .all-about-rice .types-of-rice .button-nav a, .all-about-rice .types-of-rice .button-nav .hp-meet-farmers-banner a, .hp-about-rice-banner .all-about-rice .types-of-rice .button-nav a, .all-about-rice .types-of-rice .button-nav .hp-about-rice-banner a, .hp-large-banner .all-about-rice .forms-of-rice .button-nav a, .all-about-rice .forms-of-rice .button-nav .hp-large-banner a, .hp-meet-farmers-banner .all-about-rice .forms-of-rice .button-nav a, .all-about-rice .forms-of-rice .button-nav .hp-meet-farmers-banner a, .hp-about-rice-banner .all-about-rice .forms-of-rice .button-nav a, .all-about-rice .forms-of-rice .button-nav .hp-about-rice-banner a, .hp-large-banner .all-about-rice .growing-harvesting .button-nav a, .all-about-rice .growing-harvesting .button-nav .hp-large-banner a, .hp-meet-farmers-banner .all-about-rice .growing-harvesting .button-nav a, .all-about-rice .growing-harvesting .button-nav .hp-meet-farmers-banner a, .hp-about-rice-banner .all-about-rice .growing-harvesting .button-nav a, .all-about-rice .growing-harvesting .button-nav .hp-about-rice-banner a, .hp-large-banner .all-about-rice .milling-packaging .button-nav a, .all-about-rice .milling-packaging .button-nav .hp-large-banner a, .hp-meet-farmers-banner .all-about-rice .milling-packaging .button-nav a, .all-about-rice .milling-packaging .button-nav .hp-meet-farmers-banner a, .hp-about-rice-banner .all-about-rice .milling-packaging .button-nav a, .all-about-rice .milling-packaging .button-nav .hp-about-rice-banner a, .hp-large-banner .all-about-rice .distribution .button-nav a, .all-about-rice .distribution .button-nav .hp-large-banner a, .hp-meet-farmers-banner .all-about-rice .distribution .button-nav a, .all-about-rice .distribution .button-nav .hp-meet-farmers-banner a, .hp-about-rice-banner .all-about-rice .distribution .button-nav a, .all-about-rice .distribution .button-nav .hp-about-rice-banner a, .hp-large-banner .all-about-rice .health .button-nav a, .all-about-rice .health .button-nav .hp-large-banner a, .hp-meet-farmers-banner .all-about-rice .health .button-nav a, .all-about-rice .health .button-nav .hp-meet-farmers-banner a, .hp-about-rice-banner .all-about-rice .health .button-nav a, .all-about-rice .health .button-nav .hp-about-rice-banner a, .hp-large-banner .all-about-rice .final .button-nav a, .all-about-rice .final .button-nav .hp-large-banner a, .hp-meet-farmers-banner .all-about-rice .final .button-nav a, .all-about-rice .final .button-nav .hp-meet-farmers-banner a, .hp-about-rice-banner .all-about-rice .final .button-nav a, .all-about-rice .final .button-nav .hp-about-rice-banner a {
  margin: 0 auto;
  display: block;
  text-decoration: none;
  max-width: 250px;
  text-align: center;
  background-color: white;
  background-color: rgba(250, 250, 250, 0.4);
  color: black;
  border: 1px solid #777;
  text-shadow: 1px 1px 0 rgba(250, 250, 250, 0.5);
  -moz-transition: background-color 0.5s ease-out;
  -o-transition: background-color 0.5s ease-out;
  -webkit-transition: background-color 0.5s ease-out;
  transition: background-color 0.5s ease-out;
}
/* line 136, ../sass/partials/_home.scss */
.hp-large-banner .button:hover, .hp-meet-farmers-banner .button:hover, .hp-about-rice-banner .button:hover, .hp-large-banner .all-about-rice-hero .button-nav a:hover, .all-about-rice-hero .button-nav .hp-large-banner a:hover, .hp-meet-farmers-banner .all-about-rice-hero .button-nav a:hover, .all-about-rice-hero .button-nav .hp-meet-farmers-banner a:hover, .hp-about-rice-banner .all-about-rice-hero .button-nav a:hover, .all-about-rice-hero .button-nav .hp-about-rice-banner a:hover, .hp-large-banner .all-about-rice .what-is-rice .button-nav a:hover, .all-about-rice .what-is-rice .button-nav .hp-large-banner a:hover, .hp-meet-farmers-banner .all-about-rice .what-is-rice .button-nav a:hover, .all-about-rice .what-is-rice .button-nav .hp-meet-farmers-banner a:hover, .hp-about-rice-banner .all-about-rice .what-is-rice .button-nav a:hover, .all-about-rice .what-is-rice .button-nav .hp-about-rice-banner a:hover, .hp-large-banner .all-about-rice .types-of-rice .button-nav a:hover, .all-about-rice .types-of-rice .button-nav .hp-large-banner a:hover, .hp-meet-farmers-banner .all-about-rice .types-of-rice .button-nav a:hover, .all-about-rice .types-of-rice .button-nav .hp-meet-farmers-banner a:hover, .hp-about-rice-banner .all-about-rice .types-of-rice .button-nav a:hover, .all-about-rice .types-of-rice .button-nav .hp-about-rice-banner a:hover, .hp-large-banner .all-about-rice .forms-of-rice .button-nav a:hover, .all-about-rice .forms-of-rice .button-nav .hp-large-banner a:hover, .hp-meet-farmers-banner .all-about-rice .forms-of-rice .button-nav a:hover, .all-about-rice .forms-of-rice .button-nav .hp-meet-farmers-banner a:hover, .hp-about-rice-banner .all-about-rice .forms-of-rice .button-nav a:hover, .all-about-rice .forms-of-rice .button-nav .hp-about-rice-banner a:hover, .hp-large-banner .all-about-rice .growing-harvesting .button-nav a:hover, .all-about-rice .growing-harvesting .button-nav .hp-large-banner a:hover, .hp-meet-farmers-banner .all-about-rice .growing-harvesting .button-nav a:hover, .all-about-rice .growing-harvesting .button-nav .hp-meet-farmers-banner a:hover, .hp-about-rice-banner .all-about-rice .growing-harvesting .button-nav a:hover, .all-about-rice .growing-harvesting .button-nav .hp-about-rice-banner a:hover, .hp-large-banner .all-about-rice .milling-packaging .button-nav a:hover, .all-about-rice .milling-packaging .button-nav .hp-large-banner a:hover, .hp-meet-farmers-banner .all-about-rice .milling-packaging .button-nav a:hover, .all-about-rice .milling-packaging .button-nav .hp-meet-farmers-banner a:hover, .hp-about-rice-banner .all-about-rice .milling-packaging .button-nav a:hover, .all-about-rice .milling-packaging .button-nav .hp-about-rice-banner a:hover, .hp-large-banner .all-about-rice .distribution .button-nav a:hover, .all-about-rice .distribution .button-nav .hp-large-banner a:hover, .hp-meet-farmers-banner .all-about-rice .distribution .button-nav a:hover, .all-about-rice .distribution .button-nav .hp-meet-farmers-banner a:hover, .hp-about-rice-banner .all-about-rice .distribution .button-nav a:hover, .all-about-rice .distribution .button-nav .hp-about-rice-banner a:hover, .hp-large-banner .all-about-rice .health .button-nav a:hover, .all-about-rice .health .button-nav .hp-large-banner a:hover, .hp-meet-farmers-banner .all-about-rice .health .button-nav a:hover, .all-about-rice .health .button-nav .hp-meet-farmers-banner a:hover, .hp-about-rice-banner .all-about-rice .health .button-nav a:hover, .all-about-rice .health .button-nav .hp-about-rice-banner a:hover, .hp-large-banner .all-about-rice .final .button-nav a:hover, .all-about-rice .final .button-nav .hp-large-banner a:hover, .hp-meet-farmers-banner .all-about-rice .final .button-nav a:hover, .all-about-rice .final .button-nav .hp-meet-farmers-banner a:hover, .hp-about-rice-banner .all-about-rice .final .button-nav a:hover, .all-about-rice .final .button-nav .hp-about-rice-banner a:hover {
  background-color: rgba(250, 250, 250, 0.7);
}
@media screen and (max-width: 770px) {
  /* line 92, ../sass/partials/_home.scss */
  .hp-large-banner, .hp-meet-farmers-banner, .hp-about-rice-banner {
    text-align: left;
    padding: 60px 0 70px 0;
    margin-bottom: 40px;
  }
  /* line 145, ../sass/partials/_home.scss */
  .hp-large-banner .body, .hp-meet-farmers-banner .body, .hp-about-rice-banner .body {
    width: 94%;
  }
  /* line 147, ../sass/partials/_home.scss */
  .hp-large-banner .body h1, .hp-meet-farmers-banner .body h1, .hp-about-rice-banner .body h1 {
    font-size: 2.14em;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 425px) {
  /* line 92, ../sass/partials/_home.scss */
  .hp-large-banner, .hp-meet-farmers-banner, .hp-about-rice-banner {
    background-attachment: scroll;
  }
  /* line 156, ../sass/partials/_home.scss */
  .hp-large-banner .body h1, .hp-meet-farmers-banner .body h1, .hp-about-rice-banner .body h1 {
    font-size: 1.8em;
  }
}

/* line 165, ../sass/partials/_home.scss */
.hp-meet-farmers-banner {
  background-image: url(../images/meet_farmers_home_page_background.jpg);
}

/* line 170, ../sass/partials/_home.scss */
.hp-about-rice-banner {
  background-image: url(../images/hp_about_rice_background.jpg);
}

/* line 175, ../sass/partials/_home.scss */
.home-page-video-callout-container {
  max-width: 1200px;
  margin-bottom: 80px;
}

/* line 182, ../sass/partials/_home.scss */
.home-page-video-callout .media-body {
  float: left;
  width: 45%;
  margin-right: 6%;
}
/* line 186, ../sass/partials/_home.scss */
.home-page-video-callout .media-body h3 {
  margin-bottom: 30px;
  font-size: 1.42em;
}
/* line 190, ../sass/partials/_home.scss */
.home-page-video-callout .media-body p {
  margin-bottom: 80px;
}
/* line 194, ../sass/partials/_home.scss */
.home-page-video-callout .media-img {
  float: left;
  margin-right: 0;
  width: 49%;
}
/* line 199, ../sass/partials/_home.scss */
.home-page-video-callout .button, .home-page-video-callout .all-about-rice-hero .button-nav a, .all-about-rice-hero .button-nav .home-page-video-callout a, .home-page-video-callout .all-about-rice .what-is-rice .button-nav a, .all-about-rice .what-is-rice .button-nav .home-page-video-callout a, .home-page-video-callout .all-about-rice .types-of-rice .button-nav a, .all-about-rice .types-of-rice .button-nav .home-page-video-callout a, .home-page-video-callout .all-about-rice .forms-of-rice .button-nav a, .all-about-rice .forms-of-rice .button-nav .home-page-video-callout a, .home-page-video-callout .all-about-rice .growing-harvesting .button-nav a, .all-about-rice .growing-harvesting .button-nav .home-page-video-callout a, .home-page-video-callout .all-about-rice .milling-packaging .button-nav a, .all-about-rice .milling-packaging .button-nav .home-page-video-callout a, .home-page-video-callout .all-about-rice .distribution .button-nav a, .all-about-rice .distribution .button-nav .home-page-video-callout a, .home-page-video-callout .all-about-rice .health .button-nav a, .all-about-rice .health .button-nav .home-page-video-callout a, .home-page-video-callout .all-about-rice .final .button-nav a, .all-about-rice .final .button-nav .home-page-video-callout a {
  display: block;
  max-width: 230px;
}
@media screen and (max-width: 770px) {
  /* line 205, ../sass/partials/_home.scss */
  .home-page-video-callout .media-body, .home-page-video-callout .media-img {
    float: none;
    width: auto;
    margin-right: 0;
  }
  /* line 210, ../sass/partials/_home.scss */
  .home-page-video-callout .media-body {
    margin-bottom: 40px;
  }
  /* line 212, ../sass/partials/_home.scss */
  .home-page-video-callout .media-body h3 {
    font-size: 2em;
    line-height: 1.25;
  }
  /* line 216, ../sass/partials/_home.scss */
  .home-page-video-callout .media-body p {
    margin-bottom: 20px;
  }
  /* line 220, ../sass/partials/_home.scss */
  .home-page-video-callout .button, .home-page-video-callout .all-about-rice-hero .button-nav a, .all-about-rice-hero .button-nav .home-page-video-callout a, .home-page-video-callout .all-about-rice .what-is-rice .button-nav a, .all-about-rice .what-is-rice .button-nav .home-page-video-callout a, .home-page-video-callout .all-about-rice .types-of-rice .button-nav a, .all-about-rice .types-of-rice .button-nav .home-page-video-callout a, .home-page-video-callout .all-about-rice .forms-of-rice .button-nav a, .all-about-rice .forms-of-rice .button-nav .home-page-video-callout a, .home-page-video-callout .all-about-rice .growing-harvesting .button-nav a, .all-about-rice .growing-harvesting .button-nav .home-page-video-callout a, .home-page-video-callout .all-about-rice .milling-packaging .button-nav a, .all-about-rice .milling-packaging .button-nav .home-page-video-callout a, .home-page-video-callout .all-about-rice .distribution .button-nav a, .all-about-rice .distribution .button-nav .home-page-video-callout a, .home-page-video-callout .all-about-rice .health .button-nav a, .all-about-rice .health .button-nav .home-page-video-callout a, .home-page-video-callout .all-about-rice .final .button-nav a, .all-about-rice .final .button-nav .home-page-video-callout a {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 425px) {
  /* line 227, ../sass/partials/_home.scss */
  .home-page-video-callout .media-body h3 {
    font-size: 1.8em;
  }
}

/* line 237, ../sass/partials/_home.scss */
.home-page-banner-container {
  margin: 0 auto;
  max-width: 1200px;
}
/* line 241, ../sass/partials/_home.scss */
.home-page-banner-container ul {
  overflow: hidden;
  *zoom: 1;
  list-style-type: none;
}
/* line 245, ../sass/partials/_home.scss */
.home-page-banner-container li {
  float: left;
  text-align: left;
  width: 48%;
  margin-right: 4%;
  margin-bottom: 20px;
}
/* line 251, ../sass/partials/_home.scss */
.home-page-banner-container li:nth-child(even) {
  margin-right: 0;
}
/* line 254, ../sass/partials/_home.scss */
.home-page-banner-container li .body {
  padding: 0 20px;
}
/* line 257, ../sass/partials/_home.scss */
.home-page-banner-container li .read-more {
  padding: 0 20px;
  font-size: 1em;
}
/* line 261, ../sass/partials/_home.scss */
.home-page-banner-container li .title {
  font-size: 1.4em;
}
/* line 264, ../sass/partials/_home.scss */
.home-page-banner-container li .sub-heading {
  font-size: 1em;
}
@media screen and (max-width: 640px) {
  /* line 269, ../sass/partials/_home.scss */
  .home-page-banner-container li {
    float: none;
    width: auto;
    margin-right: 0;
    margin-bottom: 40px;
  }
  /* line 274, ../sass/partials/_home.scss */
  .home-page-banner-container li .body {
    padding: 0;
  }
  /* line 277, ../sass/partials/_home.scss */
  .home-page-banner-container li .title {
    font-size: 1.28em;
  }
  /* line 280, ../sass/partials/_home.scss */
  .home-page-banner-container li .read-more {
    padding: 0;
  }
}

/* line 288, ../sass/partials/_home.scss */
.hp-about-riceland-section .button, .hp-about-riceland-section .all-about-rice-hero .button-nav a, .all-about-rice-hero .button-nav .hp-about-riceland-section a, .hp-about-riceland-section .all-about-rice .what-is-rice .button-nav a, .all-about-rice .what-is-rice .button-nav .hp-about-riceland-section a, .hp-about-riceland-section .all-about-rice .types-of-rice .button-nav a, .all-about-rice .types-of-rice .button-nav .hp-about-riceland-section a, .hp-about-riceland-section .all-about-rice .forms-of-rice .button-nav a, .all-about-rice .forms-of-rice .button-nav .hp-about-riceland-section a, .hp-about-riceland-section .all-about-rice .growing-harvesting .button-nav a, .all-about-rice .growing-harvesting .button-nav .hp-about-riceland-section a, .hp-about-riceland-section .all-about-rice .milling-packaging .button-nav a, .all-about-rice .milling-packaging .button-nav .hp-about-riceland-section a, .hp-about-riceland-section .all-about-rice .distribution .button-nav a, .all-about-rice .distribution .button-nav .hp-about-riceland-section a, .hp-about-riceland-section .all-about-rice .health .button-nav a, .all-about-rice .health .button-nav .hp-about-riceland-section a, .hp-about-riceland-section .all-about-rice .final .button-nav a, .all-about-rice .final .button-nav .hp-about-riceland-section a {
  margin-bottom: 20px;
}
/* line 291, ../sass/partials/_home.scss */
.hp-about-riceland-section .social-nav {
  text-align: center;
}
@media screen and (min-width: 640px) {
  /* line 295, ../sass/partials/_home.scss */
  .hp-about-riceland-section .social-nav {
    text-align: left;
  }
}
@media screen and (min-width: 885px) {
  /* line 301, ../sass/partials/_home.scss */
  .hp-about-riceland-section .button-social-wrapper .button, .hp-about-riceland-section .button-social-wrapper .all-about-rice-hero .button-nav a, .all-about-rice-hero .button-nav .hp-about-riceland-section .button-social-wrapper a, .hp-about-riceland-section .button-social-wrapper .all-about-rice .what-is-rice .button-nav a, .all-about-rice .what-is-rice .button-nav .hp-about-riceland-section .button-social-wrapper a, .hp-about-riceland-section .button-social-wrapper .all-about-rice .types-of-rice .button-nav a, .all-about-rice .types-of-rice .button-nav .hp-about-riceland-section .button-social-wrapper a, .hp-about-riceland-section .button-social-wrapper .all-about-rice .forms-of-rice .button-nav a, .all-about-rice .forms-of-rice .button-nav .hp-about-riceland-section .button-social-wrapper a, .hp-about-riceland-section .button-social-wrapper .all-about-rice .growing-harvesting .button-nav a, .all-about-rice .growing-harvesting .button-nav .hp-about-riceland-section .button-social-wrapper a, .hp-about-riceland-section .button-social-wrapper .all-about-rice .milling-packaging .button-nav a, .all-about-rice .milling-packaging .button-nav .hp-about-riceland-section .button-social-wrapper a, .hp-about-riceland-section .button-social-wrapper .all-about-rice .distribution .button-nav a, .all-about-rice .distribution .button-nav .hp-about-riceland-section .button-social-wrapper a, .hp-about-riceland-section .button-social-wrapper .all-about-rice .health .button-nav a, .all-about-rice .health .button-nav .hp-about-riceland-section .button-social-wrapper a, .hp-about-riceland-section .button-social-wrapper .all-about-rice .final .button-nav a, .all-about-rice .final .button-nav .hp-about-riceland-section .button-social-wrapper a {
    float: left;
    width: 45%;
    margin-bottom: 0;
  }
  /* line 307, ../sass/partials/_home.scss */
  .hp-about-riceland-section .button-social-wrapper .social-nav {
    float: right;
    width: 50%;
    text-align: left;
  }
}

/* line 317, ../sass/partials/_home.scss */
.hp-meet-farmers-banner, .hp-about-rice-banner {
  overflow: hidden;
}
/* line 319, ../sass/partials/_home.scss */
.hp-meet-farmers-banner .body, .hp-about-rice-banner .body {
  z-index: 1;
  opacity: 1.0;
  -moz-transition-delay: 0.25s;
  -o-transition-delay: 0.25s;
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -moz-transition: -moz-transform 1s ease, opacity 0.7s ease;
  -o-transition: -o-transform 1s ease, opacity 0.7s ease;
  -webkit-transition: -webkit-transform 1s ease, opacity 0.7s ease;
  transition: transform 1s ease, opacity 0.7s ease;
}
/* line 328, ../sass/partials/_home.scss */
.hp-meet-farmers-banner.outside-viewport .body, .hp-about-rice-banner.outside-viewport .body {
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
  opacity: 0.0;
  -moz-transform: translateY(400px);
  -ms-transform: translateY(400px);
  -webkit-transform: translateY(400px);
  transform: translateY(400px);
}
@media screen and (max-width: 640px) {
  /* line 338, ../sass/partials/_home.scss */
  .hp-meet-farmers-banner.outside-viewport .body, .hp-about-rice-banner.outside-viewport .body {
    opacity: 1.0;
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/* line 346, ../sass/partials/_home.scss */
.home-page-hero-container {
  overflow: hidden;
  position: relative;
  z-index: 1000;
}

/* line 351, ../sass/partials/_home.scss */
.home-page-hero {
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -moz-transform: translate(10px, -10px) scale(0.2);
  -ms-transform: translate(10px, -10px) scale(0.2);
  -webkit-transform: translate(10px, -10px) scale(0.2);
  transform: translate(10px, -10px) scale(0.2);
  -moz-transition: none;
  -o-transition: none;
  -webkit-transition: none;
  transition: none;
}

/* line 360, ../sass/partials/_home.scss */
.no-js .home-page-hero {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-transform: none;
  -ms-transform: none;
  -webkit-transform: none;
  transform: none;
}

/* line 365, ../sass/partials/_home.scss */
.home-page-hero-show {
  -moz-transition: opacity 0.7s ease, -moz-transform 0.5s ease;
  -o-transition: opacity 0.7s ease, -o-transform 0.5s ease;
  -webkit-transition: opacity 0.7s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.7s ease, transform 0.5s ease;
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}

/* line 2, ../sass/partials/_page_content.scss */
.content {
  overflow: hidden;
  *zoom: 1;
}
/* line 5, ../sass/partials/_page_content.scss */
.content h1, .content h2, .content h3, .content h4, .content h5 {
  font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, Helvetica, sans-serif;
}
/* line 9, ../sass/partials/_page_content.scss */
.content h2 {
  font-size: 1.875em;
}
/* line 12, ../sass/partials/_page_content.scss */
.content h3 {
  font-size: 1.7em;
}
/* line 15, ../sass/partials/_page_content.scss */
.content h4 {
  font-size: 1.28em;
  font-weight: bold;
  margin-bottom: 10px;
}
/* line 21, ../sass/partials/_page_content.scss */
.content blockquote {
  font-size: 1.28em;
  font-style: normal;
  color: black;
  margin: 1.5em 1em;
  color: #777;
}
/* line 28, ../sass/partials/_page_content.scss */
.content .pull-quote {
  border: 2px solid #EEE;
  padding: 30px 40px;
  text-align: center;
  max-width: 300px;
  margin-bottom: 40px;
  float: right;
}
/* line 35, ../sass/partials/_page_content.scss */
.content .pull-quote .title {
  color: #86a1ad;
  font-size: 14px;
  margin-bottom: 7px;
  line-height: 1.2;
}
/* line 41, ../sass/partials/_page_content.scss */
.content .pull-quote .large-text {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 0;
  line-height: 1;
}
/* line 50, ../sass/partials/_page_content.scss */
.content ul {
  list-style-type: square;
  line-height: 1.25;
}
/* line 54, ../sass/partials/_page_content.scss */
.content ol {
  line-height: 1.25;
  margin-left: 1.5em;
}
/* line 59, ../sass/partials/_page_content.scss */
.content li {
  margin-bottom: 0.5em;
}
/* line 61, ../sass/partials/_page_content.scss */
.content li:last-child {
  margin-bottom: 0;
}
/* line 66, ../sass/partials/_page_content.scss */
.content img {
  height: auto !important;
  display: block;
  margin-bottom: 1.5em;
}
/* line 72, ../sass/partials/_page_content.scss */
.content hr {
  width: 90%;
  border: 0;
  height: 1px;
  background-color: #EEE;
}
@media screen and (max-width: 885px) {
  /* line 79, ../sass/partials/_page_content.scss */
  .content .pull-quote {
    margin-bottom: 30px;
    float: none;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 640px) {
  /* line 87, ../sass/partials/_page_content.scss */
  .content h2 {
    font-size: 1.42em;
  }
  /* line 90, ../sass/partials/_page_content.scss */
  .content h3 {
    font-size: 1.28em;
  }
  /* line 93, ../sass/partials/_page_content.scss */
  .content h4 {
    font-size: 1.14em;
  }
  /* line 96, ../sass/partials/_page_content.scss */
  .content blockquote {
    font-size: 1.1em;
  }
}

/* line 1, ../sass/partials/_share.scss */
.share-bar {
  overflow: hidden;
  *zoom: 1;
  margin-bottom: 20px;
  padding: 7px 5px;
  max-width: 200px;
  text-align: center;
}
/* line 8, ../sass/partials/_share.scss */
.share-bar h4 {
  margin: 0;
  color: #86a1ad;
  font-size: 0.85em;
  font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, Helvetica, sans-serif;
  width: 80px;
  float: left;
  padding-top: 7px;
}
@media screen and (max-width: 640px) {
  /* line 1, ../sass/partials/_share.scss */
  .share-bar {
    margin-left: auto;
    margin-right: auto;
    padding: 7px 5px;
    text-align: center;
  }
  /* line 23, ../sass/partials/_share.scss */
  .share-bar h4 {
    display: none;
    float: none;
    margin-bottom: 10px;
    width: auto;
  }
}

/* line 33, ../sass/partials/_share.scss */
.share-bar .addthis_toolbox .custom-images a img {
  width: 32px;
  height: 32px;
}
/* line 36, ../sass/partials/_share.scss */
.share-bar .addthis_toolbox .custom-images a img:hover {
  -moz-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}
