/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/*
    Created on : 26 Feb 2014, 1:11:30 PM
    Author     : william
*/


body {
		font: 80% verdana, arial, helvetica, sans-serif;
		text-align: center; /* for IE */
	}
	#container {
		margin: 0 auto;   /* align for good browsers */
		text-align: left; /* counter the body center */
                width: 500px;
	}
        #formimage {
                position: absolute;
		margin: 0 auto;   /* align for good browsers */
		text-align: left; /* counter the body center */
                z-index: -1;
                width: 400px;
                height: 400px;
	}

        #loginform {
		margin: 0 auto;   /* align for good browsers */
                margin-top: 180px;
                margin-right: 50px;
                margin-left: 100px;
                z-index: 3;
                position: absolute;
		text-align: right; /* counter the body center */
                width: 275px;
                height: 200px;
	}
        input[type="text"]{
            background-color: #cce6ff;
            border: 1px solid #3A610E;
            width: 150px;
        }
        input[type="text"]:hover{
            background-color: #eff29c;
        }
        input[type="text"]:active{
            background-color: #eff29c;
        }
        input[type="text"]:focus{
            background-color: #eff29c;
        }


        input[type="password"]{
            background-color:  #cce6ff;
            border: 1px solid #3A610E;
            width: 150px;
        }
        input[type="password"]:hover{
            background-color: #eff29c;
        }
        input[type="password"]:active{
            background-color: #eff29c;
        }
        input[type="password"]:focus{
            background-color: #eff29c;
        }

        input[type="submit"]{
            border: 1px solid #999;color:#000;
            background-color:  #ccddff;
            width: 100px;

        }
        input[type="submit"]:hover{
            border: 1px solid #999;color:#000;
            background-color:   #6699ff;

        }
