@charset "UTF-8";
/* CSS Document */
/*    First Characters:
    .  (period) is a class
    #  is for IDs
    
    */

.black_square {background-color: #000000;
         height:50px;
         width: 50px;
}
.red_square {background-color: #FF0033;
         height:50px;
         width: 50px;
}
.yellow_square {background-color: #FFFF00;
         height:50px;
         width: 50px;
}
.pink_square {background-color: #FF3399;
         height:50px;
         width: 50px;
}
.adjust_button{
        height: 30px;
        width: 100px;
        background-color: #ff3399;
}
.next_button{
        height: 30px;
        width: 100px;
        background-color: #99ff66;
}
.email_button{
        height: 30px;
        width: 150px;
        background-color: #ff99ff;
}
.load_button{
        height: 30px;
        width: 130px;
        background-color: #ffff66;
}
.clear_button{
        height: 30px;
        width: 130px;
        background-color: #99ffff;
}
.cancel_button{
        height: 30px;
        width: 100px;
        background-color: #ff6600;
}
