/*
	UHaulHR.com
	Desc: AAPS Custom Stylesheet, 
		  overrides standard.css	

	Table of contents
	-----------------
	Structure
	General
	Header
	Abbreviations & Acronyms	
	Forms	
	Help Box	
    Misc
        VCard
    Search Page (Default)


*/


/* =Structure (Overrides standard.css)
----------------------------------------------- */

/* Fix a bug in Mozilla */
html 
{ 
    min-width: 700px;
}

body {

    /* IE 5 doesn't like margin-auto for centering but will 
    incorrectly center block level elements like this: */

    text-align: center;
        
}

.main, .mainsmall 
{
    /* Reset alignment to compensate for 
		     'text-align:center' */
    text-align:left;
}

.main 
{
    width:700px;
}


/* Header
     List items in the nav without tables
----------------------------------------------- */

#header 
{
    position:relative;
    overflow:hidden;
}

#header ul
{
    position:absolute;
    float:right;
    top:0;
    right:0;
}

#header #logo, #header img
{
    float:left;
}  


/* =Abbreviations & Acronyms
----------------------------------------------- */
a:link.glossary,
a:visited.glossary,
a:hover.glossary,
a:active.glossary
{
    color:#000000;
    border-bottom-color:#000000; /* for IE e */
    border-bottom-style:dotted;
    border-bottom-width:1px;
    font-style:normal; /* for use with dfn tag */
    text-decoration:none;
}


/* =Screen 
----------------------------------------------- */
/* Styles that should only be used for the
screen */

@Media Screen 
{
    .noscreen 
    {
        display:none;
    }  
}


/* =Print 
----------------------------------------------- */
/* Styles that should only be used for print */

@Media Print 
{
    .print_banner
    {
        margin:.2em auto 2em auto;
        text-align:center;
    }
}