* {
    margin: 0;
    padding: 0;
}

#petscam {
    text-align: left;
    position: relative;
    margin-top: 30px;
}	

hr {
  border: 2px solid green;
}

.center_div{
    margin: 0 auto;
}
	/*progressbar*/
#progressbar {
	text-align: center;
	position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
}

#progressbar li {
    list-style-type: none;
    color: green;
    font-size: 18px;
    width: 25%;
    float: left;
    position: relative;
    letter-spacing: 1px;
}

#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 24px;
    height: 24px;
    line-height: 26px;
    display: block;
    font-size: 12px;
    color: #fff;
    background: green;
    border-radius: 25px;
    margin: 0 auto 10px auto;
	padding: 0 0 4px 0;
	font-weight: bold;
}

/*progressbar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 3px;
    background: green;
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: -1; /*put it behind the numbers*/
}

#progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}

/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before, #progressbar li.active:after {
    background: #00FF00;
    color: #000000;
	font-weight: bold;
}

.losstog, .castog{
        display: none;
}

.next {
	float:right;
}

.previous  {
	float:left;
}

.send  {
	float:right;
	display: none;
}

.tab {
  display: none;
}
input.invalid {
  background-color: #ffdddd;
}

.reqd {
  background-color: #F1FFEF;
}

.reqico {
  color: #ffffff;
  background-color: #29a648;
}

	