/*******************************************************************************************
*******************************************************************************************
/shared/css/base/_lists.css 
*******************************************************************************************
*******************************************************************************************/

/* bulleted list */
.list-bulleted {
	padding: 0;
	margin: 12px 0;
}
	.list-bulleted li {
		background: url(/shared/images/bullet2.png) 1px 7px no-repeat;
		list-style: none;
		padding: 2px 0 2px 16px;
	}
	
/* unformatted list */	
.list-unformatted {
	margin: 0;
	padding: 0;
	list-style: none;
}
	.list-unformatted li {
		background: none;
		margin: 0;
		padding: 0;
	}
	.list-padding li {
		background: none;
		margin: 0;
		padding: 3px 0 3px; 
	}

/* inline list */
.list-inline {
	margin: 0;
	padding: 0;
	list-style: none;
}
	.list-inline li {
		display: inline-block;
		margin: 0;
		padding: 0 8px 0 0;
	}
/* list with an arrow as a bullet */
.list-arrow {
	margin: 0 0 0 12px;
	padding: 0;
	list-style: none;
}
	.list-arrow li {
		padding: 3px 0 3px 8px;
		margin: 0;
		position: relative;
	}
	.list-arrow li:before {
		position: absolute;
		top: 9px;
		left: 0;
		content: '';
		border-top: 3px solid transparent;
		border-bottom: 3px solid transparent;
		border-left: 3px solid #055BAD;
	}
	.list-arrow li:after {
		position: absolute;
		z-index: 2;
		top: 9px;
		left: -1px;
		content: '';
		border-top: 3px solid transparent;
		border-bottom: 3px solid transparent;
		border-left: 3px solid #FFF;
	}

/* list with numbered steps */
.list-steps {
	padding: 0;
	margin: 12px 0;
}
.list-steps li {
	list-style: none;
	margin: 10px 0;
	padding: 0 0 0 30px;
	position: relative;
}
.list-steps .step {
	background: #f6871f;
	border-radius: 12px;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	height: 24px;
	line-height: 24px;
	position: absolute;
	left: 0;
	text-align: center;
	top: 0;
	width: 24px;
}

/*** CHECKMARK USED ON NONMEMBER HOMEPAGE ***/
.checkmark {
	list-style: none;
	padding: 0;
}
.checkmark > li {
	padding: 5px 0;
}
.checkmark > li::before {
    content:"\2714  "
}