
   
.left {
    float:left;
}

.right {
    float: right;
}

/* container for a group of buttons */

.buttoncontainer { 
    background:transparent;    
}

/* specify the desired spacing between buttons */


/* place button img tags in an element using this class */

.buttonimagecontainer {
    position:relative;
    z-index:1;
    margin:0px;
}

/* place button text in an element using this class */

.buttontext {
    position:relative;                                  /* don't change this */
    z-index:2;                                          /* don't change this */
    top:-28;                                            /* adjust to align text vertically over the image */
    height:0;                                           /* adjust to control the bottom edge of the hover area */
    font-family:Verdana, Arial, Helvetica, sans-serif;  /* from here down, adjust per your design */
    color:#808080;                                      /* #291AA4; */
    font-size:16px;
    font-weight:bold;
    text-align:left;
    margin-left:30px;
}
 
/* use these to ensure text on buttons doesn't inherit the attributes of normal anchor tags */
a.anchortext:link {
    text-decoration:none;
}
a.anchortext:visited {
    text-decoration:none;
}
a.anchortext:hover {
    text-decoration:none;
}
a.anchortext:active {
    text-decoration:none;
}

