@charset "UTF-8";
/* CSS Document */

.animatedtabs{

margin-top: 30px;
overflow: hidden;
width: 100%;
font-size: 11px;
font-family: Verdana, Arial, Helvetica, sans-serif;


/*font of menu text*/
}


.animatedtabs ul{
list-style-type: none;
margin: 0;
margin-left: 20px; /*offset of first tab relative to page left edge*/
padding: 0;
}

.animatedtabs li{
float: left;
margin: 0px;
padding: 0px;

}

.animatedtabs a{
float: left;
position: relative;
top: 5px; /* 1) Number of pixels to protrude up for selected tab. Should equal (3) MINUS (2) below */
background:url(/generalcoms/img/tab-blue-left.png) no-repeat left top;
margin: 0;
margin-right: 10px; /*Spacing between each tab*/
padding: 0 0 0 9px;
text-decoration: none;


}

.animatedtabs a span{
float: left;
position: relative;
display: block;
background: url(/generalcoms/img/tab-blue-right.png) no-repeat right top;
padding: 5px 14px 3px 5px; /* 2) Padding within each tab. The 3rd value, or 3px, should equal (1) MINUS (3) */
color: white;

}

.animatedtabs .selected a{
background-position: 0 -125px;
top: 5;
}

.animatedtabs .selected a span{
background-position: 100% -125px;
color: black;
padding-bottom: 8px; /* 3) Bottom padding of selected tab. Should equal (1) PLUS (2) above */
top: 5;
}

.animatedtabs a:hover{
background-position: 0% -125px;
top: 0;

}

.animatedtabs a:hover span{
background-position: 100% -125px;
padding-bottom: 8px; /* 3) Bottom padding of selected tab. Should equal (1) PLUS (2) above */
top: 0;
color: black;
}

/*-------------*/
