/* ==========================================================================
   #lists-core
   ========================================================================== */

/*
   list-stack
   ========================================================================== */

/**
 * The list-stack object is used to create vertical lists without bullets or 
 * indentation.
 *
 * Usage:
 *
 * <ul class="o-list-stack">
 *     <li></li>
 *     <li></li>
 *     <li></li>
 * </ul>
 */

.o-list-stack,
.o-list-inline {
	margin-left: 0;
	padding-left: 0;
	list-style: none;
}

/*
   list-inline
   ========================================================================== */

/**
 * The list-inline object is used to create inline lists without bullets or 
 * indentation.
 *
 * Usage:
 *
 * <ul class="o-list-inline">
 *     <li></li>
 *     <li></li>
 *     <li></li>
 * </ul>
 */

.o-list-inline > li {
	display: inline-block;
}
