/* CSS Document */

/* FORM ELEMENTS */







p.title {
	font-family: Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	font-size: 12pt;
	font-weight: bold;
	margin-left: 30px;
	font-style: italic;
	margin-bottom: 18px;

}
.entryLabels
{
    /*BORDER-BOTTOM: 1px solid;
    BORDER-LEFT: 1px solid;
    BORDER-RIGHT: 1px solid;
    BORDER-TOP: 1px solid;*/
    FONT-FAMILY: Arial;
    FONT-SIZE: 14px;
	font-style:italic;
	color:	#555;
	text-align: left;
	padding-left:20px;
	
}

.entryFields
{
    FONT-FAMILY: Arial;
    FONT-SIZE: 11px;
	padding-left:10px;
	border-bottom:1px solid;
	border-color:#CCC;
	/*border: 1px solid;
	background-color:	#EEE;*/
}
.buttons
{
    BACKGROUND-COLOR: #CCCCCC;
    COLOR: #000000;
    FONT-FAMILY: 'MS Sans Serif';
    FONT-SIZE: 12px;
    TEXT-DECORATION: none
}
.footer {
	font-size: 8pt;
	color: #000000;
	margin: 0px;

}
.celltext {
	margin-left: 4px;
	margin-bottom: 4px;

}
.underline {
	font-family: Arial, Verdana;
	font-size: 9pt;
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: underline;
}
.bold {
	font-family: Arial, Verdana;
	font-size: 9pt;
	font-style: normal;
	font-weight: bold;
	color: #000000;
	text-align: center;
	margin-bottom: 10px;
}
.boldgreen {
	color: #006633;
	font-family: Arial, Verdana;
	font-size: 8pt;
	margin-bottom: 10px;
	text-align: center;
	font-style: normal;
	font-weight: bold;

}
.subtitle2 {
	font-size: 9pt;
	font-weight: bold;
	color: #000000;
}
.redFont {
	color: #F00;
}














label {
    width:60px;
    float:left;
    font-size:12px;
    line-height:24px;
    font-weight:bold;

}
input {
    width:300px;
    margin-bottom:5px;
    line-height:18px;
    padding:2px 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border:1px solid #CCC;
}

/*General rules*/
#WebFormData input {
    line-height:18px;
}
/*Text, email & tel input fields*/
#WebFormData input[type=text],
#WebFormData input[type=email],
#WebFormData input[type=tel] {
    width:300px;
    margin-bottom:8px;
    padding:2px 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border:1px solid #CCC;
}
/*Just the tel field*/
#WebFormData input[type=tel] {
    width:150px;
}
/*The Submit Button */
#WebFormData input[type=button],
#WebFormData input[type=submit] {
    margin-top:5px;
    margin-left:60px;
    padding:2px 20px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border:2px solid #06C;
    background-color:#09F;
    color:#fff;
    font-weight:bold;
	width:100px;

}

#WebFormData input[type=text]:focus,
#WebFormData input[type=email]:focus,
#WebFormData input[type=tel]:focus{
    border:1px solid #09F;
    -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.3);
-moz-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.3);
box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.3);
}









<!-- Progress with steps -->

    ol.progtrckr {
        margin: 0;
        padding: 0;
        list-style-type: none;
    }

    ol.progtrckr li {
        display: inline-block;
        text-align: center;
        line-height: 3em;
    }

    ol.progtrckr[data-progtrckr-steps="2"] li { width: 49%; }
    ol.progtrckr[data-progtrckr-steps="3"] li { width: 33%; }
    ol.progtrckr[data-progtrckr-steps="4"] li { width: 24%; }
    ol.progtrckr[data-progtrckr-steps="5"] li { width: 19%; }
    ol.progtrckr[data-progtrckr-steps="6"] li { width: 16%; }
    ol.progtrckr[data-progtrckr-steps="7"] li { width: 14%; }
    ol.progtrckr[data-progtrckr-steps="8"] li { width: 12%; }
    ol.progtrckr[data-progtrckr-steps="9"] li { width: 11%; }

    ol.progtrckr li.progtrckr-done {
        color: black;
        border-bottom: 4px solid yellowgreen;
		font-size:14px;
		font-weight:bold;
		
    }
    ol.progtrckr li.progtrckr-todo {
        color: silver; 
        border-bottom: 4px solid silver;
		font-size:14px;
		font-weight:bold;

    }

    ol.progtrckr li:after {
        content: "\00a0\00a0";
    }
    ol.progtrckr li:before {
        position: relative;
        bottom: -2.5em;
        float: left;
        left: 50%;
        line-height: 1em;
    }
    ol.progtrckr li.progtrckr-done:before {
        content: "\2713";
        color: white;
        background-color: yellowgreen;
        height: 1.2em;
        width: 1.2em;
        line-height: 1.2em;
        border: none;
        border-radius: 1.2em;
    }
    ol.progtrckr li.progtrckr-todo:before {
        content: "\039F";
        color: silver;
        background-color: silver;
        height: 1.2em;
        width: 1.2em;
        line-height: 1.2em;
        border: none;
        border-radius: 1.2em;
    }
