#webapp li
{
        margin: 0px !important;
}

#webapp .error {
    border:0px solid;
    margin:10px 0px;
    padding:15px 10px 15px 10px;
    background-repeat:no-repeat;
    background-position:10px center;
    color:#D8000C;
    background-color:#FFBABA;
}

#webapp .formbox { 
        border:1px solid #d0cece;
        background-color:#E7E7E7;
        padding:1em;
        width:85% !important;
}

/* step indicator */
.step-indicator {
	counter-reset: step;
	width:100%;
	margin-bottom: 1em;
}
.step-indicator span {
	list-style: none;
	display: inline-block;
	position: relative;
	text-align: center;
	width: 100px;
	padding-bottom: 1em;
}
.step-indicator span:before {
	content: counter(step);
	counter-increment: step;
	width: 30px;
	height: 30px;
	line-height : 30px;
	border: 1px solid #ddd;
	border-radius: 100%;
	display: block;
	text-align: center;
	margin: 0 auto 10px auto;
	background-color: #fff;
}
.step-indicator span:first-child:after {
	content:none
}
.step-indicator span.completed {
	color: green;
}
.step-indicator span.completed:before {
	border-color: green
}
