﻿/*add by ysl 140618 登录界面按钮样式*/
.button
{
    font: 15px Calibri, Arial, sans-serif; /* A semi-transparent text shadow */
    text-shadow: 1px 1px 0 rgba(255,255,255,0.4); /* Overriding the default underline styling of the links */
    text-decoration: none !important;
    display: inline-block;
    vertical-align: baseline;
    position: relative;
    cursor: pointer;
    padding: 10px 0px;
    background-repeat: no-repeat; /* The following two rules are fallbacks, in case 	   the browser does not support multiple backgrounds. */
    background-position: bottom left;
    background-image: url('../Images/Channel_Logon/button_bg.png'); /* Multiple backgrounds version. The background images 	   are defined individually in color classes */
    background-position: bottom left, top right, 0 0, 0 0;
    background-clip: border-box; /* Applying a default border raidus of 8px */
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 0px; /* A 1px highlight inside of the button */
    -moz-box-shadow: 0 0 1px #fff inset;
    -webkit-box-shadow: 0 0 1px #fff inset;
    box-shadow: 0 0 1px #fff inset; /* Animating the background positions with CSS3 */ /* Currently works only in Safari/Chrome */
    -webkit-transition: background-position 1s;
    -moz-transition: background-position 1s;
    transition: background-position 1s;
}

.button:hover
{
    /* The first rule is a fallback, in case the browser 	   does not support multiple backgrounds 	*/
    background-position: top left;
    background-position: top left, bottom right, 0 0, 0 0;
}

.button:active
{
    /* Moving the button 1px to the bottom when clicked */
    bottom: -1px;
}

/* The three buttons sizes */

.button.medium
{
    font-size: 18px;
}

/* Green Button */

.green.button
{
    color: #345903 !important;
    border: 1px solid #96a37b !important;
    background-color: #0fa847;
    background-image: url('../Images/Channel_Logon/button_bg.png') , url('../Images/button_bg.png') , -moz-radial-gradient(center bottom, circle, rgba(162,211,30,1) 0,rgba(162,211,30,0) 100px),-moz-linear-gradient(#82cc27, #74b317);
    background-image: url('../Images/Channel_Logon/button_bg.png') , url('../Images/Channel_Logon/button_bg.png') , -webkit-gradient(radial, 50% 100%, 0, 50% 100%, 100, from(rgba(162,211,30,1)), to(rgba(162,211,30,0))),-webkit-gradient(linear, 0% 0%, 0% 100%, from(#82cc27), to(#74b317));
}

.green.button:hover
{
    background-color: #12c453;
    background-image: url('../Images/Channel_Logon/button_bg.png') , url('../Images/Channel_Logon/button_bg.png') , -moz-radial-gradient(center bottom, circle, rgba(183,229,45,1) 0,rgba(183,229,45,0) 100px),-moz-linear-gradient(#90de31, #7fc01e);
    background-image: url('../Images/Channel_Logon/button_bg.png') , url('../Images/Channel_Logon/button_bg.png') , -webkit-gradient(radial, 50% 100%, 0, 50% 100%, 100, from(rgba(183,229,45,1)), to(rgba(183,229,45,0))),-webkit-gradient(linear, 0% 0%, 0% 100%, from(#90de31), to(#7fc01e));
}


.gray.button
{
    color: #525252 !important;
    border: 1px solid #a5a5a5 !important;
    background-color: #a9adb1;
    background-image: url('../Images/button_bg.png') , url('../Images/Channel_Logon/button_bg.png') , -moz-radial-gradient(center bottom, circle, rgba(197,199,202,1) 0,rgba(197,199,202,0) 100px),-moz-linear-gradient(#c5c7ca, #92989c);
    background-image: url('../Images/Channel_Logon/button_bg.png') , url('../Images/Channel_Logon/button_bg.png') , -webkit-gradient(radial, 50% 100%, 0, 50% 100%, 100, from(rgba(197,199,202,1)), to(rgba(197,199,202,0))),-webkit-gradient(linear, 0% 0%, 0% 100%, from(#c5c7ca), to(#92989c));
}

.gray.button:hover
{
    background-color: #b6bbc0;
    background-image: url('../Images/Channel_Logon/button_bg.png') , url('../Images/Channel_Logon/button_bg.png') , -moz-radial-gradient(center bottom, circle, rgba(202,205,208,1) 0,rgba(202,205,208,0) 100px),-moz-linear-gradient(#d1d3d6, #9fa5a9);
    background-image: url('../Images/Channel_Logon/button_bg.png') , url('../Images/Channel_Logon/button_bg.png') , -webkit-gradient(radial, 50% 100%, 0, 50% 100%, 100, from(rgba(202,205,208,1)), to(rgba(202,205,208,0))),-webkit-gradient(linear, 0% 0%, 0% 100%, from(#d1d3d6), to(#9fa5a9));
}
