Label 1

/*Heres the css
<style>#docContainer #item3_label_0{
display:block !important;
text-align:center !important;
color:#FF0000;
</style>

//Heres the JQuery
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>
var jQ = $.noConflict(true);
jQ(document).ready(function() {

//start label 3
jQ('#item5_label_0').css({
'display':'block',
'text-align' : 'center',
'color' : 'Yellow',
'font-size' : '40px'
});
// end label 3
// start label 4
jQ('#item9').css({
'display':'block' ,
'width':'100%'
});

jQ('#item9').children('.fb-grouplabel').css({
'display':'inline-block' ,
'clear':'none',
'color' : 'purple',
'font-size' : '40px',
'width':'48%'
});
jQ('#item9').children('.fb-input-box').css({
'display':'inline-block' ,
'width':'45%'
});
//end label 4
});

</script>