I am new to CSS designing.
I have developed a page using HTML.
I have a header including buttons like HomePage, MyData, Help. When i click the MyData link, one submenu will come up below it. Like Personal Data ,Official Data and Employee Document.
When I click on Personal Data, on the left hand side of the page a menu will come up with the content Address, Passport Details, PAN etc.
When I click the Address link it will display a table having all the address related data in the center of the page.
Here I have taken a line in between the left menu and center table.

I have used 6 div's and 6 different css's for doing this.
<div id="Fourth_Page_Left_Line"> </div>
<div id="Fourth_Page_Left_Line1"> </div>
<div id="Fourth_Page_Left_Line2"> </div>
<div id="Fourth_Page_Left_Line3"> </div>
<div id="Fourth_Page_Left_Line4"> </div>
<div id="Fourth_Page_Left_Line5"> </div>
CSS:
#Fourth_Page_Left_Line {
left: 190px;
top: 130px;
position: absolute;
font-size: 20px;
}
#Fourth_Page_Left_Line1 {
left: 190px;
top: 133px;
position: absolute;
font-size: 20px;
}
#Fourth_Page_Left_Line2 {
left: 190px;
top: 136px;
position: absolute;
font-size: 20px;
}
#Fourth_Page_Left_Line3 {
left: 190px;
top: 139px;
position: absolute;
font-size: 20px;
}
#Fourth_Page_Left_Line4 {
left: 190px;
top: 142px;
position: absolute;
font-size: 20px;
}
#Fourth_Page_Left_Line5 {
left: 190px;
top: 145px;
position: absolute;
font-size: 20px;
}
Like the same I have to make a line till the bottom of the page, then I have to take another 20 to 25 div's and again I have to create CSS for those div's.
Can anyone tell me how I can reduce the code, instead of using so many div's and CSS, can I use a single div and single CSS to produce the same output?