ol{
	list-style: none;
	counter-reset: li; /* increment li by 1 */
}

ol li{
	position:relative;
	margin-bottom:5px; /* bottom spacing between lis */
	padding:5px 20px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
}
ol > li:before{ /* pseudo element for custom counter */
	content:counter(li); /* set li content start by 1 */
	counter-increment:li; /* increment the li counter each time */
	text-align: center;
	display:block;
	position:absolute;
	width:27px; /* width of counter */
	height:26px; /* height of counter */
	top:0;
	left:-15px; /* shift counter to the left */
	background:#06C; /* background of counter */
	color:white;
	padding-top:4px;
}

/*Serch Box */
#frmSearchTerm { 
	width:320px;
	position:relative;
	float:right;
	margin-bottom:0px;
	margin-top:0px;
	padding-top:70px;
}
#frmSearchTerm input{ 
	height:34px;
	border:none; 
	color:#000; 
	outline:none; 
	background:#fff; 
	font: 15px Helvetica, Arial, sans-serif;
	width:255px;
	position:relative;
}
#frmSearchTerm button {
	background:#fff;
	cursor:pointer;
	position:absolute; 
	right:1px; 
	top:70px;
	width:40px;
	height:34px;
	background-image:url(images/bt-go.jpg);
	background-repeat:no-repeat;
}
.container-social-media{
	width:100%;
}
.social-media-16{
	width:16%;
	float:left;
	padding:10px 5px 2px 8px;
}