/**
modal_content => sm_content
modal_overlay => sm_olay
modal_close => sm_close
modal_title => sm_title
**/

/*modal*/
#sm_content {
    display: none;
}
.loginPopUp{
    position: fixed;
    left: 50%;
    /*padding: 15px;*/
    top:10%;
    -webkit-box-shadow: 0px 0px 8px #111;
    background-image:url(images/login-bg.png);
    background-repeat:no-repeat;
    width:438px;
    height:272px;
    margin-left:-18%;
    text-align:center;
    z-index:1002;
    color:#FFFFFF;
    font-size:11px;
}
#sm_content small{font-size:77%;}
#sm_content .sm_close{
	float:right;
	cursor:pointer;
}
#sm_content h3{font-size:116%;}
#sm_olay { background-color: #000; }
/* Background iframe styling for IE6. Prevents ActiveX bleed-through (<select> form elements, etc.) */
* iframe.overlay {position:absolute;top:0;left:0;z-index:-1;
	width: expression(this.parentNode.offsetWidth+'px');
	height: expression(this.parentNode.offsetHeight+'px');
}

/* Fixed posistioning emulation for IE6
     Star selector used to hide definition from browsers other than IE6
     For valid CSS, use a conditional include instead */
* html #sm_content {
     position: absolute;
     top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
}
.loginPadding{
    padding:10px;
}
.lblUserName{
    background: transparent url(images/username.png) no-repeat scroll 0 0;
    overflow:hidden;
    text-indent:-9999px;
    min-width:115px;
    min-height:18px;
    float:left;
    margin-left:40px;
    margin-top:2px;
}
.lblPassword{
    background: transparent url(images/password.png) no-repeat scroll 0 0;
    overflow:hidden;
    text-indent:-9999px;
    min-width:115px;
    min-height:18px;
    float:left;
    margin-left:40px;
    margin-top:9px;
}
.loginPopText{
    font-size:12pt;
    border-width:0px;
    color:White;
    padding:5px;
    float:left;
    text-align:left;
    background: transparent url(images/LoginText.jpg) no-repeat;
}
.submitBtn
{
float:left;	
}
.buttonFiller{
    height:42px;
    width:42px;
}
.txtHeader{
    background: transparent url(images/login-heading.png) no-repeat scroll;
    overflow:hidden;
    text-indent:-9999px;
    min-width:385px;
    min-height:48px;
    margin-left:15px;
    margin-top:10px;
    margin-bottom:10px;
}
.login-info a{
    color:#FFFFFF;
    text-decoration:underline;
}
.login-info{
    text-align:left;
    padding:0px 23px;
}
.loginPopInput{
    margin-top:10px;
}
.fullWidth{
    width:100%;
}