/* CSS Document */

#Tabs ul {
padding: 0px;
margin: 0px;
margin-left: 0;
list-style-type: none;
}

#Tabs ul li {
float: left;
}

#Tabs ul li a {
padding: 0 10px;
line-height:20px;
float:left;
text-align:center;
height:24px; display:block;
background: #f6f6f6;
border: 1px solid #ccc;
border-bottom: 0px;

/* The following four lines are to make the top left and top right corners of each tab rounded. */
-moz-border-radius-topleft: 4px;
border-top-left-radius: 4px;
-moz-border-radius-topright: 4px;
border-top-right-radius: 4px;
/* end of rounded borders */

color: #000000;
text-decoration: none;
font-weight: bold;
}

#Tabs ul li a:hover {
text-decoration: underline;  
background-color:#999;
pointer:hand;
}

#Tabs #Content_Area { 
background-color:#FFFFFF;
overflow:hidden;
padding:4px;
line-height:19px;


-moz-border-radius-topleft: 4px;
border-top-left-radius: 4px;
-moz-border-radius-topright: 4px;
border-top-right-radius: 4px;


 -moz-border-radius-bottomleft: 4px;
border-bottom-left-radius: 4px;
-moz-border-radius-bottomright: 4px;
border-bottom-right-radius: 4px;


}

