<?xml version="1.0" encoding="UTF-8" standalone="no"?><html xmlns="http://www.w3.org/1999/xhtml">
<head><title>
	Login
</title><meta content="text/html; charset=UTF-8" http-equiv="content-type"/><meta content="no-cache" http-equiv="Pragma"/><meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible"/><script src="/WorkArea/FrameworkUI/js/ektron.javascript.ashx?id=-569449246+-1939951303+-1080527330+-1687560804+-1388997516+2009761168+27274999+1979897163+-422906301+-1818005853+774688338+873344673+1858364121+-310601373+-1968587327+-1126702884" type="text/javascript"/><script src="/WorkArea/PrivateData/js/Ektron.PrivateData.aspx" type="text/javascript"/><link href="/WorkArea/FrameworkUI/css/ektron.stylesheet.ashx?id=1414160562+-1047267675" media="all" rel="stylesheet" type="text/css"/><link href="/WorkArea/FrameworkUI/css/ektron.stylesheet.ashx?id=-1550697298" media="print" rel="stylesheet" type="text/css"/>
    <script type="text/javascript">
        <!--        //--><![CDATA[//><!--
        function GetLoginInfo() {
            var username = document.getElementById("username").value;
            var password = document.getElementById("password").value;

            return [username, password];
        }

        function SetLoginInfo() {
            try {
                var loginInfo = GetLoginInfo();
                Ektron.PrivateData.SetLoginInfo(loginInfo[0], loginInfo[1]);
            } catch (e) { }
            return true;
        }

        function ValidatePassword() {
            var password1 = document.getElementById('newpassword1').value;
            var password2 = document.getElementById('newpassword2').value;
            if (password1 != password2) {
                alert("");
                return false;
            }
            else {
                var validationString = "";
                if (validationString && validationString.length > 0) {
                    var errorMsgs = ValidateRegExMsgArray(password1, validationString);
                    if (errorMsgs.length > 0) {
                        alert(errorMsgs[0]);
                        return false;
                    }
                }
            }
            return true;
        }

        function ValidateRegExMsgArray(password, regexAndErrorMessages) {
            var errors = [];
            var regex, errorMessage;
            var parts = [];
            var raw = trimStart(regexAndErrorMessages, "[");
            raw = trimEnd(raw, "]");
            raw = raw.split("],[");

            for (var idx = 0; idx < raw.length; idx++) {
                parts = raw[idx].split("/,");
                regex = trimStart(parts[0], "/");

                errorMessage = this.trimStart(trimStart(parts[1], ' '), '\\"');
                errorMessage = this.trimEnd(errorMessage, '\\"');

                var re = new RegExp(regex);
                if (!re.test(password))
                    errors[errors.length] = errorMessage;
            }
            return errors;
        }

        function trimStart(text, toRemove) {
            if (text.indexOf(toRemove) == 0 && text.length >= toRemove.length)
                return text.substr(toRemove.length);
            return text;
        }

        function trimEnd(text, toRemove) {
            if (text.length > toRemove.length && toRemove == text.substr(text.length - toRemove.length))
                return text.substr(0, text.length - toRemove.length);
            return text;
        }
        //--><!]]>
    </script>
    <script src="java/jfunct.js" type="text/javascript">
    </script>
    <script type="text/javascript">
        <!--        //--><![CDATA[//><!--
        function setFocus() {
            self.focus();
            if ((typeof (document.LoginRequestForm)).toLowerCase() != "undefined") {
                var loginRequestForm = $ektron("#LoginRequestForm");
                var loginRequestFormUsername = loginRequestForm.find("#username")
                if (loginRequestForm.length > 0 && loginRequestFormUsername.length > 0) {
                    loginRequestFormUsername.focus();
                }
            }
        }

        // Clears the authentication for DMS control
        function clearAuth() {
            try {
                document.execCommand("ClearAuthenticationCache");
            } catch (err) {
                // do nothing
            }
        }

        $ektron(document).ready(function () {
            // add hover effects for the inputButtons
            $ektron(".inputButton").hover(
                    function () {
                        $ektron(this).addClass("ui-state-hover");
                    },
                    function () {
                        $ektron(this).removeClass("ui-state-hover");
                    }
                );
			if ($ektron.browser.safari)	 {
				$ektron('.ek_btn_lft').css('margin-left', '115px');
			}
        });
        //--><!]]>
    </script>
    <style type="text/css">
        form
        {
            display: block;
            height: 100%;
            position: relative;
        }
        .ui-widget #LoginBtn .ui-icon, .ui-widget #changePasswordBtn .ui-icon, .ui-widget #btn_skip .ui-icon, .ui-widget #LogoutBtn .ui-icon
        {
            left: .2em;
            margin: -8px 5px 0 0;
            position: absolute;
            top: 50%;
        }
        .ui-widget #loginCancel .ui-icon, .ui-widget #changePasswordCancel .ui-icon, .ui-widget #logoutCancel .ui-icon
        {
            left: .2em;
            margin: -8px 5px 0 0;
            position: absolute;
            top: 50%;
        }
        table td
        {
            padding: .2em;
        }
        
        /* New or Modified css for CMSMIN Splash Screen */
        
        html, body
        {
            text-align: center;
            background: url("images/en/BGIMAGE.jpg") repeat-x top center #fff !important;
            margin: 0;
            padding: 0;
            height: inherit;
        }
        table
        {
            margin: 0px auto;width:336px;
        }
        .padTop
        {
            padding-top: 10px;
        }
        .padBottom
        {
            padding-bottom: 10px;
        }
        #loginWrapper
        {
            height: auto;
            float: inherit;
        }
        .center
        {
            text-align: center;
            margin: 0 auto;
        }
        input[type="text"], input[type="file"], input[type="password"], textarea
        {
            width: 200px;
            vertical-align: middle;
        }
        .textbox
        {
            background: url("images/en/formfield_232x32.png") no-repeat;
            padding-top: 0px;
            margin: 2px;
            width: 232px;
            height: 32px;
            border: 0px;
            display: block;
        }
        .textbox select
        {
            width: 220px;
            border: none;
            margin: 6px;
            outline: 0;
            border: 0;
            background: none;
        }
        .inpSelect
        {
            color: black;
            background: #fff;
            position: absolute;
            border: 0;
        }
        .textbox input
        {
            background: none repeat scroll 0 0 transparent;
            border: 0 none transparent;
            height: 22px;
            margin: 5px 15px 2px 15px;
            padding: 0px;
            outline: 0;
        }
        .logo
        {
            background: url("images/en/logo_114x93.png") no-repeat;
            border: 0px;
            margin: 0em auto;
            margin-bottom: 20px;
            padding: 0px;
            width: 114px;
            height: 93px;
        }
        .copyright
        {
            font-family: arial;
            font-size: 10px;
            color: #999;
            margin: 0px auto;
            position: relative;
            bottom: 0;
        }
        .logoutbtn
        {
            background: url("images/en/logout_167x45.png") no-repeat;
            border: 0px solid #000;
            width: 167px;
            height: 45px;
            padding: 0px;
            margin: 0px auto;
            display: block;
            text-align: center;
        }
        .ui-state-error
        {
            text-align: left;
        }
        .ek_btn
        {
            margin-left: 20px;
        }
        .ek_btn_lft
        {
            background: url("images/en/lft_bg.png") no-repeat scroll left top transparent;
            cursor: pointer;
            height: 41px;
            margin-left: -23px;
            margin-top: -7px;
            position: absolute;
            width: 26px;
        }
        .ek_btn_txt
        {
            background: url("images/en/rte_bg.png") no-repeat top right;
        }
        a, a:hover, a:active, a:visited
        {
            text-decoration: none;
        }
        .button
        {
            border: 0 none;
            color: #FFFFFF;
            cursor: pointer;
            font-family: arial;
            font-size: 17px;
            font-weight: bold;
            height: 20px;
            margin: 0;
            outline: 0 none;
            padding: 10px 24px 16px 0;
            text-align: center;
            text-transform: uppercase;
            
        }
    </style>
    <!--[if IE 8]>
    <style type="text/css">
        .ek_btn_lft{margin-left: -43px;margin-top: -7px; }
        .textbox input{margin:7px 15px 2px 15px;}
        </style>
        <![endif]-->
    <!--[if IE 9]>
    <style type="text/css">
        .ek_btn_lft{margin-left: -43px;margin-top: -7px; }
        </style>
        <![endif]-->
        <!--[if IE]><!-->
 <style>
  @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  /* IE10 rule sets go here */
  .ek_btn_lft{margin-left: -43px;margin-top: -7px; }
  }
 </style>
 <!--<![endif]-->
    <!--[if IE 7]>
    <style type="text/css">
        .ek_btn_lft{margin-left: -23px;margin-top: 0px; }
        .textbox input{margin:7px 15px 2px 15px;}
        .textbox select {border:0;}
        #LogoutBtn .ek_btn_lft{margin-left: -23px;margin-top: 5px; }
        </style>
        <![endif]-->
    <!--[if IE 6]>
        <style type="text/css">
            /* float clearing for IE6 */
            * html .ui-helper-clearfix{
              height: 1%;
              overflow: visible;
            }

            .ui-widget #LoginBtn .ui-icon,
            .ui-widget #loginCancel .ui-icon,
            .ui-widget #changePasswordCancel .ui-icon,
            .ui-widget #changePasswordBtn .ui-icon,
            .ui-widget #LogoutBtn .ui-icon,
            .ui-widget #logoutCancel .ui-icon,
            .ui-widget #btn_skip .ui-icon
            {
                top: 37.5%;
            }

        </style>
        <![endif]-->
</head>
<body onload="setFocus();">
    <div class="bodybackground">
        <div id="loginWrapper">
            <form action="/WorkArea/login.aspx?fromLnkPg=1" id="LoginRequestForm" method="post">
<div class="aspNetHidden">
<input id="EktronClientManager" name="EktronClientManager" type="hidden" value="-569449246,-1939951303,-1080527330,-1687560804,-1388997516,2009761168,27274999,1979897163,-422906301,-1818005853,774688338,873344673,1858364121,-310601373,-1968587327,-1126702884,-2038775320,1414160562,-1047267675,-1550697298"/>
<input id="__VIEWSTATE" name="__VIEWSTATE" type="hidden" value="/wEPDwUJOTMzNzI1MDE3DxYCHhNWYWxpZGF0ZVJlcXVlc3RNb2RlAgEWAgIDEGRkFgQCAQ9kFgICAQ8WAh4EVGV4dGVkAgMPDxYCHgdWaXNpYmxlZ2QWBgIBDxYCHglpbm5lcmh0bWwFBVVzZXI6ZAIFDxYCHwMFBFB3ZDpkAgkPFgIfAmcWBGYPFgIfAwUHRG9tYWluOmQCAQ9kFgICAQ8QZA8WA2YCAQICFgMQBQx3ZXN0LnZpcy5jb20FFURDPXdlc3QsREM9dmlzLERDPWNvbWcQBQxlYXN0LnZpcy5jb20FFURDPWVhc3QsREM9dmlzLERDPWNvbWcQBQd2aXMuY29tBQ1EQz12aXMsREM9Y29tZ2RkZEX0FFZdYkvxISPRtY8gj3hvL+4mwwgqpqImCGhwWEO6"/>
</div>

<div class="aspNetHidden">

	<input id="__VIEWSTATEGENERATOR" name="__VIEWSTATEGENERATOR" type="hidden" value="C010AF82"/>
</div>
            <div class="logo">
            </div>
            
            <div id="LoginRequestPanel" style="padding: 0.0em 0.2em">
	
                <table class="fields">
                    <tbody>
                        <tr>
                            <td class="label padTop">
                                <label for="username" id="usernamelbl" title="User">User:</label>
                            </td>
                            <td class="padTop">
                                <div class="textbox">
                                    <input id="username" name="username" title="Enter Username here" type="text"/></div>
                            </td>
                        </tr>
                        <tr>
                            <td class="label">
                                <label for="password" id="passwordlbl" title="Password">Pwd:</label>
                            </td>
                            <td>
                                <div class="textbox">
                                    <input autocomplete="off" id="password" name="password" title="Enter Password here" type="password"/></div>
                            </td>
                        </tr>
                        <tr class="stripe" id="TR_domain">
		<td class="label" id="domainlbl" title="Domain">Domain:</td>
		<td>
                                <div class="textbox ">
                                    <select class="inpSelect" id="domainname" name="domainname" title="Select a Domain Name from the Drop Down Menu">
			<option selected="selected" value="DC=west,DC=vis,DC=com">west.vis.com</option>
			<option value="DC=east,DC=vis,DC=com">east.vis.com</option>
			<option value="DC=vis,DC=com">vis.com</option>

		</select></div>
                            </td>
	</tr>
	
                    </tbody>
                    <tfoot>
                        <tr>
                            <td class="padTop center padBottom" colspan="2">
                                <input onclick="SetLoginInfo()" style="position: absolute;                                     top: -10000px;" type="submit" value="Login"/>
                                <a class="ek_btn" href="javascript:__doPostBack('LoginBtn','')" id="LoginBtn" onclick="SetLoginInfo();" title="Click here to log in">
                                    <span class="ek_btn_lft"/>
                                    <span class="ek_btn_txt button" id="loginLoginText">Login</span></a>
                            </td>
                        </tr>
                    </tfoot>
                </table>
            
</div>
            
            
            
            
            
            
            </form>
        </div>
    </div>
</body>
</html>