
img 
{
	max-width:400px;
	max-height:400px;
	width:auto;
	height:auto;
}

#recipe
{
	padding-top: 12px;
	padding-bottom: 24px;
}
#recipe h2 
{
	  color: #333;
	  font-size: 2em;
	  margin-bottom: 24px;
	  margin-top: 12px;
}
#recipe h3 
{
	margin-top: 24px;
}
	
.recipe-info .row
{
	margin-top: 12px;
	padding-top: 6px;
	padding-bottom: 6px;
	background-color: #f9f9f9;
	box-shadow: 0 1px 0 rgba(0,0,0,.15);
}
.recipe-info i 
{
	color: #4E7DC8;
}
.ingredients-list dl 
{
	display: inline-block;
	width: 100%;
	padding: 0;
	margin: 0;
	overflow: hidden;
}
.ingredients-list dt 
{
	width: 20%;
	float: left;
	clear: left;
	margin: 0 0 5px;
	padding: 0 5px;
	font-size: 13px;
	line-height: 37px;
	background: #f9f9f9;
	box-shadow: 0 1px 0 rgba(0,0,0,.15);
}
.ingredients-list dd 
{
	width: 80%;
	float: left;
	margin: 0 0 5px;
	padding: 0 5px;
	font-size: 13px;
	line-height: 37px;
	font-weight: 600;
	background: #4E7DC8;
	color: #f9f9f9;
	box-shadow: 0 1px 0 rgba(0,0,0,.15);
}

.recipe-directions ol 
{
    counter-reset: li;
    list-style: none;
    padding: 0;
    margin-bottom: 4em;
    text-shadow: 0 1px 0 rgba(255,255,255,.5);
}
.recipe-directions ol ol 
{
    margin: 0 0 0 2em;
}
.recipe-directions li 
{
    position: relative;
    display: block;
    padding: .4em .4em .4em .8em;
    *padding: .4em;
    margin: .5em 0 .5em 2.5em;
    background: #f9f9f9;
    color: #222;
    text-decoration: none;
    transition: all .3s ease-out;
    box-shadow: 0 1px 0 rgba(0,0,0,.15);
}
.recipe-directions li:before
{
    content: counter(li);
    counter-increment: li;
    position: absolute;
    left: -2.5em;
    top: 50%;
    margin-top: -1em;
    background: #4E7DC8;
    height: 2em;
    width: 2em;
    line-height: 2em;
    text-align: center;
    font-weight: bold;
    color: #f9f9f9;
}
.recipe-directions li:after
{
    position: absolute;
    content: '';
    border: .5em solid transparent;
    left: -1em;
    top: 50%;
    margin-top: -.5em;
    transition: all .3s ease-out;
}