/*--------------------------------------------------------------------------------------------------
Basic Style Sheet (for version 4 browsers)
this is the base style sheet for CAI
version:    1.0
author:		Jim Kitterman
date:			12/30/2010
----------------------------------------------------------------------------------------------------*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
form, label, legend,
table, caption, tbody, tfoot, thead, tr {
	background:transparent;
	border:0;
	margin:0;
	outline:0;
	padding:0;	
	vertical-align:baseline;
	}
	
	
body
{
    margin: 0 !important;
    font-family: Arial, Helvetica, Sans Serif;
    font-size: 12pt;
    font-weight: normal;
    color: #000;
    background: #FFF!important;
}

.AppTitle 
                {
                    color:White;
                    font-size: 1.70em; /*size matches closely to the actual title */
                    font-family: Arial;
                    font-weight: bold;
                    /* makes sure the div goes to the right without interfering with others */
                    float: right; 
                    /* these are positioning the title up on the header */
                    margin-top: -120px;
                    margin-left:-2px;
                    padding-right:3px;
                    /* this is the shadow technique */
                    /* this is for Mozilla browsers (FF and Chrome) */
                    text-shadow: 2px 2px 5px black; 
                    /* This is specifically for IE */
                    filter: Shadow(Color=#000000, Direction=135, Strength=3); 
                }

