/* Put a standard gutter on these common elements, as well as any element with the std-gutter class.
   This makes it possible to have a standard gutter compatible with IE<=7 without needing to wrap every
   grid cell with <div class="cell">  (as is done in the Cascade Framework examples)
*/
/* line 7, /www/summerbuilder/www2/assets/sass/standard-gutter.scss */
.std-gutter, .panel, .media, h1, h2, h3, h4, h5, h6, dl, p, blockquote, table, address, pre, figure {
  margin: 15px;
}

/* since we're applying a standard margin, list-style-position:inside is needed to keep lists
   in alignment with everything else */
/* line 10, /www/summerbuilder/www2/assets/sass/standard-gutter.scss */
ul, ol {
  list-style-position: inside;
}

/* line 11, /www/summerbuilder/www2/assets/sass/standard-gutter.scss */
ul {
  margin: 0 0 9px 2.4em;
}

/* line 12, /www/summerbuilder/www2/assets/sass/standard-gutter.scss */
ol {
  margin: 0 0 9px 2em;
}

/* ul, ol {margin:15px; position:relative; left:25px;} */
/* immediate children of .std-gutter elements shouldn't have margins by default
   because if the .std-gutter element has children, the intent is probably not to have the margin
   applied again for child elements like h3, p, etc. listed above.
   To override this, those child elements can simply be assigned the .std-gutter class as well  */
/* line 20, /www/summerbuilder/www2/assets/sass/standard-gutter.scss */
.std-gutter > h1, .std-gutter h2, .std-gutter h3, .std-gutter h4, .std-gutter h5, .std-gutter h6, .std-gutter dl, .std-gutter p, .std-gutter blockquote, .std-gutter table, .std-gutter address, .std-gutter pre, .std-gutter figure, .std-gutter legend {
  margin-left: 0;
  margin-right: 0;
}

/* line 22, /www/summerbuilder/www2/assets/sass/standard-gutter.scss */
.std-gutter > .col {
  margin: 0;
}

/* line 23, /www/summerbuilder/www2/assets/sass/standard-gutter.scss */
.std-gutter > .std-gutter {
  margin: 15px 0;
}

/* line 24, /www/summerbuilder/www2/assets/sass/standard-gutter.scss */
.no-gutter {
  margin: 0 !important;
}
