/*-------LOGIN STARTS HERE -------*/

/* Login Container (default to float:right) */
#loginContainer {
    position:relative;
    font-size:12px;
}

/* Login Button */
#loginButton { 
    display:inline-block;
    position:relative;
    z-index:30;
    cursor:pointer;
}

/* Login Button Text */


/* Login Box */
#loginBox {
    position:absolute;
    top:27px;
    right:0;
    display:none;
    z-index:29;
}

/* If the Login Button has been clicked */    
#loginButton.active {
    border-radius:3px 3px 0 0;
}

#loginButton.active span {
    background-position:53px -76px;
}

/* A Line added to overlap the border */
#loginButton.active em {
    position:absolute;
    width:100%;
    height:1px;
    background:#d2e0ea;
    bottom:-1px;
}

/* Login Form */
#loginForm {
    background: url("../images/bg-login.png") no-repeat scroll 0 -4px transparent;
    border-radius: 3px 0 3px 3px;
    padding: 16px;
    width: 247px;
}

#loginForm fieldset {
    margin:0 0 12px 0;
    display:block;
    border:0;
    padding:0;
}

fieldset#body {
    background: none repeat scroll 0 0 #FFFFFF;
    border-radius: 3px 3px 3px 3px;
    margin: 10px 0 0;
    padding: 5px 13px 14px;
}

#loginForm #checkbox {
    width:auto;
    margin:1px 9px 0 0;
    float:left;
    padding:0;
    border:0;
    *margin:-3px 9px 0 0; /* IE7 Fix */
}

#body label {
    color:#3a454d;
    margin:9px 0 0 0;
    display:block;
    float:left;
}

#loginForm #body fieldset label {
    display:block;
    float:none;
    margin:0 0 6px 0;
}

/* Default Input */
#loginForm input {
    width:92%;
    border:1px solid #899caa;
    border-radius:3px;
    -moz-border-radius:3px;
    color:#3a454d;
    font-weight:bold;
    padding:8px 8px;
    box-shadow:inset 0px 1px 3px #bbb;
    -webkit-box-shadow:inset 0px 1px 3px #bbb;
    -moz-box-shadow:inset 0px 1px 3px #bbb;
    font-size:12px;
}

/* Sign In Button */
#loginForm #login {
    /*
    width:auto;
    float:left;
    background:#339cdf url(../images/loginbuttonbg.png) repeat-x;
    color:#fff;
    padding:7px 10px 8px 10px;
    text-shadow:0px -1px #278db8;
    border:1px solid #339cdf;
    box-shadow:none;
    -moz-box-shadow:none;
    -webkit-box-shadow:none;
    margin:0 12px 0 0;
    cursor:pointer;
    */
     background: url("../images/loginbuttonbg.png") repeat-x scroll 0 0 #339CDF;
    border: 1px solid #000000;
    box-shadow: none;
    color: #FFFFFF;
    cursor: pointer;
    float: left;
    font-family: arial;
    margin: 0 12px 0 0;
    padding: 7px 10px 8px;
    text-shadow: 0 -1px #000000;
    text-transform: uppercase;
    width: auto;
    *padding:7px 2px 8px 2px; /* IE7 Fix */
}

/* Forgot your password */
#loginForm span {
    text-align:center;
    display:block;
    padding:7px 0 4px 0;
}

#loginForm span a {
    color: #431A0B;
    font-size: 12px;
    text-decoration: underline;
    text-shadow: 1px 0 #FFFFFF;
}

input:focus {
    outline:none;
}

/* Bubble pop-up */

        .popup {
        	position: absolute;
        	display: none;
        	z-index: 50;
        	border-collapse: collapse;
        }

        .popup td.corner {
        	height: 15px;
        	width: 19px;
        }

        .popup td#topleft { background-image: url(https://www.ajbakery.com/css/images/bubble-1.png); }
        .popup td.top { background-image: url(https://www.ajbakery.com/css/images/bubble-2.png); }
        .popup td#topright { background-image: url(https://www.ajbakery.com/css/images/bubble-3.png); }
        .popup td.left { background-image: url(https://www.ajbakery.com/css/images/bubble-4.png); }
        .popup td.right { background-image: url(https://www.ajbakery.com/css/images/bubble-5.png); }
        .popup td#bottomleft { background-image: url(https://www.ajbakery.com/css/images/bubble-6.png); }
        .popup td.bottom { background-image: url(https://www.ajbakery.com/css/images/bubble-7.png); text-align: center;}
        .popup td.bottom img { display: block; margin: 0 auto; }
        .popup td#bottomright { background-image: url(https://www.ajbakery.com/css/images/bubble-8.png); }

        .popup table.popup-contents {
        	font-size: 12px;
        	line-height: 1.2em;
        	background-color: #fff;
        	color: #666;
        	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", sans-serif;
        	}

        table.popup-contents th {
        	text-align: right;
        	text-transform: lowercase;
        	}

        table.popup-contents td {
        	text-align: left;
        	}

        tr#release-notes th {
        	text-align: left;
        	text-indent: -9999px;
        	background: url(https://www.ajbakery.com/css/images/starburst.gif) no-repeat top right;
        	height: 17px;
        	}

        tr#release-notes td a {
        	color: #333;
        }
        
    -->