﻿#bg {
    text-align: center;   
    background: #f8ffe8; /* Old browsers */
    background: -moz-linear-gradient(top, #f8ffe8 0%, #e3f5ab 50%, #b7df2d 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f8ffe8), color-stop(50%,#e3f5ab), color-stop(100%,#b7df2d)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #f8ffe8 0%,#e3f5ab 50%,#b7df2d 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #f8ffe8 0%,#e3f5ab 50%,#b7df2d 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #f8ffe8 0%,#e3f5ab 50%,#b7df2d 100%); /* IE10+ */
    background: linear-gradient(to bottom, #f8ffe8 0%,#e3f5ab 50%,#b7df2d 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f8ffe8', endColorstr='#b7df2d',GradientType=0 ); /* IE6-9 */
    
}

.txtBlue {
    color:blue;
}

.txtRed {
    color:red;
}

#mainFrameContent input[type="submit"][data-JYbtn=primary] {     
    padding:5px;  
    background: -webkit-gradient(linear, left top, left bottom, from(#007bff), to(#007bff));
    background: -moz-linear-gradient(top, #007bff, #007bff) ; 
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

#mainFrameContent input[type="submit"][data-JYbtn=primary]:hover {     
    background: -webkit-gradient(linear, left top, left bottom, from(#0062CC), to(#0062CC));
    background: -moz-linear-gradient(top, #0062CC, #0062CC) ;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;     
}

#mainFrameContent input[type="submit"][data-JYbtn=primary]:disabled {     
    background: -webkit-gradient(linear, left top, left bottom, from(#59a9ff), to(#59a9ff));
    background: -moz-linear-gradient(top, #59a9ff, #59a9ff) ; 
    cursor:default;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

