﻿/* CSS Stylesheet for Login Page (Default.aspx) */
/* Following URL was used to create the correct div structure, css for the login page */
/* http://matthewjamestaylor.com/blog/ultimate-2-column-left-menu-ems.htm */

/* MJ 07/05/2009 Created CSS for Login */

    /* General styles */
    body {
        margin:0;
        padding:0;
        border:0;			/* This removes the border around the viewport in old versions of IE */
        width:100%;
        height:100%;
        background:#fff;
		font-size:90%;
    }
    
    .loginbodysize
    {
    	min-width:75em;
    	min-height:45em;
    	height:100%;
    }
    
	/* Header styles */
    #header {
        clear:both;
        float:left;
        width:100%;
        background-color:#f0f0f0;
        padding-top:0.94em;
    }

	/* column container */
	.colmask {
		position:relative;		/* This fixes the IE7 overflow hidden bug and stops the layout jumping out of place */
	    clear:both;
	    float:left;
        width:100%;			/* width of whole page */
		overflow:hidden;	/* This chops off any overhanging divs */
	}
	/* 2 column left menu settings */
	.leftmenu {
	   background:#00535d;
	   height:86.5%
	}
    .leftmenu .colright {
        float:left;
        width:200%;
        position:relative;
        left:12.5em;
        height:100%;
        background:#fff;
    }
    .leftmenu .col2wrap {
	    float:right;
	    width:50%;
	    position:relative;
	    right:12em;
	    padding:0;
	}
	.leftmenu .col2 {
        margin:0 1em 0 13em;
	    position:relative;
	    right:100%;
	    overflow:hidden;
	}
	
    .leftmenu .col1 {
        float:left;
        position:relative;
        right:12.4em;
    }

    #headerbar 
    {
    	height:2em;
        margin-left:12.5em;
        background-image:url(../../Images/headerendbar.gif);
        background-repeat:repeat-x;
    }
    
    #MenuButtons
    { 
      padding-top:0.5em;
    }
    
    .lblcopyright
    {
    	clear:both;
		color:Black;text-decoration:none;font-weight:normal;
		text-align:center;
		font-size:0.80em;
		margin: 1em 0 1em 0;
    }
    
    /*MJ 03/07/09 -TTP28117 IE6 : CallReport login page not displayed correctly */
    form
    {
    	width:100%;
    }