﻿
.MyLabel 
{
    border-style: none;
    font-size: MEDIUM;
    color: gray;  
}
.MyLabel:hover {
    border-style: none;
    font-size: MEDIUM;
    color: black;  
}

.MyTextLabel { 
    font-size: medium; 
    font-family: Century Gothic;
}

.MyTextBox {
    font-size: medium; 
    font-family: Century Gothic;
    background-color: White ;  
}

.MyTextBox:focus  
{
    outline: 0;
    font-size: medium; 
    font-family: Century Gothic;
    background-color: Yellow;  
}

.MyTextBox:disabled
{
    outline: 0;
    font-size: medium; 
    font-family: Century Gothic;
    color : #B8BDBD;
    background-color: #FBFFFF ;
}

.MyButton {
    background-color: #26A69A;
    font-size: 16px;
    color: white;
    border-style: none;
    transition: box-shadow 1s;
}

.MyButton:hover 
{
    box-shadow: 5px 5px 5px gray;
    cursor: pointer;
    transition: box-shadow 1s;
}

.MyButton1 {
    background-color: #F0F0F0;
    font-size: 16px;
    color: black;
    border-style: none;
    transition: all 1s;
}

.MyButton1:disabled {
    background-color: silver;
    color: darkgray;
    pointer-events: none;
}

.MyButton1:hover {
    background-color: #EEEEEE ;
    color: black;
    cursor: pointer;
    transition: all 1s;
}

.MyAnagButton2 {
    background-color: #26A69A;
    font-size: 12px;
    height: 16px;
    width: 75px;
    color: white;
    border-style: none;
    transition: all 1s;
}

.MyAnagButton2:hover 
{
    background-color: #00665A;
    color: YELLOW;
    cursor: pointer;
    transition: all 1s;
}

.MyAnagButton3 {
    background-color: #26A69A;
    font-size: 14px;
    height: 22px; 
    color: white;
    border-style: none;
    transition: all 1s;
}

.MyAnagButton3:hover 
{
    background-color: #00665A;
    color: YELLOW;
    cursor: pointer;
    transition: all 1s;
}

.MyCompletionList {
    border:solid 1px Gray;
    margin:0px;
    padding:3px;
    overflow:auto;
    background-color: Yellow;
    font-family: Century Gothic;      
    } 
.MyListItem {
    color: #191919;
    } 
.MyItemHighlighted {
    background-color: #ADD6FF;       
    }
    
.MyComboBox {
    border-style: solid;
    border-color: #999999;
    border-width: 1px;  
    font-size: medium; 
    font-family: Century Gothic;
    background-color: White;  
}   

.MyComboBox:focus  {
    outline: 0;
    border-style: solid;
    border-color: #999999;
    border-width: 1px;  
    font-size: medium; 
    font-family: Century Gothic;
    background-color: Yellow;  
} 

.MyLoginButton {
    background-color: #26A69A;
    font-size: 18px;
    color: white;
    border-style: none;
    transition: all 1s;
}


