﻿body /* Applies to whole page including outside OuterDiv */
{
    background-color: #1565b2; /* 3 shades darker than Dodger Blue */
}

div.outerdiv /* Style that only applies to div with class=outerdiv */
{
    background-color: #f0ffff; /* Azzure */
    width: 750px;
    border-color: #a5d3ff #a5d3ff #a5d3ff #a5d3ff; /* Border on Top, RHS, Bot, LHS */
    border-style: solid solid solid solid;
    border-width: 2px 1px 2px 1px;
    padding: 0px;
    /* Next 3 lines ensure that OuterTable is centered within Body - correct CSS code */
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    top: 0px;
}

div.bannerdiv /* Style that only applies to div with class=bannerdiv */
{
	background-image: url('../Images/AP banner arial0001.gif');
	background-repeat: no-repeat; /* I could let this repeat if gap (bug in IE) below 150 reappears */
    text-align: left; /* Needed to left-justify BannerDiv in IE */
    /* Next 4 lines help avoid vertical gaps before/after text divs that are to appear in banner */
    padding: 0px;
    margin: 0px;
    position: relative; /* Ensures that child divs in absolute are relative to this div's position */
    line-height: 0;
    height: 150px;
    width: 750px;
}

div.aptext /* Style that only applies to div with class=aptext */
{
    width: 300px;	
    font-size: 29px;
    font-weight: 600;
    font-family: "times new roman" times serif;
    color: #1873cc; /* 2 shades darker than Dodger Blue */
    position: absolute;
    left: 25px;
    top: 7px;
    /* Next 4 lines help avoid vertical gaps before/after text divs that are to appear in banner */
    padding: 0px;
    margin: 0px;
    line-height: 1;
    height: 52px;
}

span.llctext 
{
	font-family: "times new roman" times serif;
	font-size: 12px;
}
	
div.cuttingtext /* Style that only applies to div with class=cuttingtext */
{
    width: 380px;	
    font-size: 13px;
    font-weight: 600;
    font-family: "times new roman" times serif;
    color: #1873cc; /* 2 shades darker than Dodger Blue */
    position: absolute;
    left: 320px;
    top: 20px;
    /* Next 4 lines help avoid vertical gaps before/after text divs that are to appear in banner */
    padding: 0px;
    margin: 0px;
    line-height: 1;
    height: 20px;
}

div.atdtext /* Style that only applies to div with class=atdtext */
{
    width: 380px;	
    font-size: 18px;
    font-weight: 500;
    font-family: "times new roman" times serif;
    color: #1873cc; /* 2 shades darker than Dodger Blue */	
    position: absolute;
    left: 195px;
    top: 62px;
    /* Next 4 lines help avoid vertical gaps before/after text divs that are to appear in banner */
    padding: 0px;
    margin: 0px;
    line-height: 1;
    height: 26px;
}

div.gsdtext /* Style that only applies to div with class=atdtext */
{
    width: 380px;	
    font-size: 18px;
    font-weight: 500;
    font-family: "times new roman" times serif;
    color: #1873cc; /* 2 shades darker than Dodger Blue */	
    position: absolute;
    left: 370px;
    top: 94px;
    /* Next 4 lines help avoid vertical gaps before/after text divs that are to appear in banner */
    padding: 0px;
    margin: 0px;
    line-height: 1;
    height: 26px;
}

div.plustext /* Style that only applies to div with class=plustext */
{
    width: 370px;	
    font-size: 13px;
    font-weight: 500;
    font-family: "times new roman" times serif;
    color: #1873cc; /* 2 shades darker than Dodger Blue */	
    position: absolute;
    left: 260px;
    top: 130px;
    /* Next 4 lines help avoid vertical gaps before/after text divs that are to appear in banner */
    padding: 0px;
    margin: 0px;
    line-height: 1;
    height: 20px;
}

/* Tabs set up is based on www.projectseven.com/tutorials/css/qtabs/. For now tab corners are straight
   but later they will be made rounded on LH top and RH top. */

/* Sets up blue gradient background bar in which tabs are to be placed */
div.toptabs
{
    text-align : left; /* Probably needed to ensure top tabs start on LHS */
    width: 750px;
    font-family: verdana, geneva, arial, helvetica, sans-serif;
    padding-top: 6px; /* ensures that nothing placed in top 6px by 750px except background image */
    background-image: url('../Images/gradient 1565b2-4ba6ff 10by30.png'); /* image is 10px by 30px */
    background-repeat: repeat-x; /* Repeat above blue image across the row */
    height: 24px; /* Height of blue image w/o padding, so that it is 30px w' padding */
}

/* block for unordered list covering text for tabs at top (ul descendants of toptabs) */
div.toptabs ul
{
    width: 750px;
    font-family: verdana, geneva, arial, helvetica, sans-serif;
    list-style: none; /* Removes list bullets that browser would otherwise insert */
    padding: 0px; /* Needed to avoid unordered list indenting in Firefox */
    margin: 0px; /* Needed to avoid unordered list indenting in IE */
}

/* block for list items in unordered list covering text for tabs at top (li descendants of toptabs) */
div.toptabs li
{
    display: inline; /* no line break so as to give horizontal list (of tabs) */
}

/* Deals with hyperlink images in toptabs (a descendants of toptabs) */
div.toptabs a
{
    padding: 0px 0px 0px 6px; /* 6px padding on LHS of left part of tab = width of LH image, and it
                                 ensures that image in child element starts 6px from LHS */
    margin: 0px 0px 0px 3px; /* Give 3px gap between tabs */
    background-image: url('../Images/ltab 6by50 white v3.png'); /* Image is 6px by 50px */
    background-repeat: no-repeat; /* Image appears one time per list item */
    background-position: left top; /* Not really needed as default is top left  to position ltab image */
    float: left; /* Ensures that ltab appears in left-most position so that LH curve is on LHS of tab */
    text-decoration: none;  /* Ensures that Hyperlinks do not Blink and that they are not underlined */
    display: block; /* element generates a block box (line before and after element), the whole of which
                       is clickable for the hyperlink */
}

/* Deals with text for hyperlinks on the upper tabs (span descendents of a which are 
   descendants of toptabs) */
div.toptabs a span
{
    color: #1873cc; /* sets color of text on top tab's hyperlinks to 2 shades darker than Dodger Blue */
    font-family: verdana, geneva, arial, helvetica, sans-serif;
    font-weight: bold;
    font-size: 12px;
    padding: 4px 12px 4px 6px; /* padding on top, right, bottom, & left around wording on tabs where
                                  right padding here should be the sum of left padding here + left
                                  padding on LH part of tab icon, so as to center text L-R on tab icon*/
    background-image: url('../Images/rtab 400by50 white v3.png'); /* image is 400px by 50px */
    background-repeat: no-repeat; /* Image appears one time per list item */
    background-position: right top; /* Ensures that top right edge (with curve) of rtab image is 
                                       displayed */
    float: left; /* Ensures that rtab appears in left-most position (after allowing for 6px padding 
                    of parent element */
    cursor: pointer; /* Displays usual "hand" cursor */
}

/* Sets properties on hover (over block) for text on top tab's hyperlinks */
div.toptabs a:hover span
{
    text-decoration: underline;  /* Ensures that Hyperlinks become underlined on hover */
}

/* Deals with text for hyperlinks on current upper tab (span descendents of a which are 
   descendants of toptabs) */
div.toptabs a span.currenttab
{
    /* color: #092B4C; */ /* Sets color of text on current upper tab's hyperlink to 7 shades darker than Dodger Blue */
    color: #0C3A66; /* Sets color of text on current upper tab's hyperlink to 6 shades darker than Dodger Blue */
	font-family: verdana, geneva, arial, helvetica, sans-serif;
	font-weight: bold;
	font-size: 13px;
	padding: 4px 12px 4px 6px;
/* padding on top, right, bottom, & left around wording on tabs where
                                  right padding here should be the sum of left padding here + left
                                  padding on LH part of tab icon, so as to center text L-R on tab icon*/	background-image: url('../Images/rtab 400by50 white v3.png'); /* image is 400px by 50px */;
	background-repeat: no-repeat; /* Image appears one time per list item */;
	background-position: right top;
/* Ensures that top right edge (with curve) of rtab image is 
                                       displayed */	float: left; /* Ensures that rtab appears in left-most position (after allowing for 6px padding 
                    of parent element */;
	/* cursor: pointer; */ /* Displays usual "hand" cursor */
	cursor: auto; /* Does not display "hand" cursor */
}

div.toptabs a span.currenttab:hover
{
    text-decoration: none;  /* Ensures that Hyperlink is not underlined on hover, although this is turned off successfully in Firefox 8 but not in IE 8 */
}

div.textdiv /* Style that only applies to div with class=textdiv */
{
    width: 550px;	
    /* Next 3 lines ensure that TextDiv div is centered within OuterTable - correct CSS code */
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    text-align: left; /* Needed to left-justify text within TextDiv regardless of browser */
    font-size: 100%;
}

div.textdiv h1 /* Style that only applies to a header1 in the div textdiv (h1 descendant of textdiv) */
{
    color: #1565b2; /* 3 shades darker than Dodger Blue */
    font-size: 1.27em;
    line-height: 1.0; /* Sets Height Between Lines to a multiple of the font-size */
    font-weight: 600;
    font-family: "times new roman" times serif;
    text-align: center;
}

h2 /* Style that only applies to a header2 in the div textdiv (h2 descendant of textdiv) */
{
    /*color: #1b82e6;*/ /* 1 shade darker than Dodger Blue */
    color: #000000; /* Black */
    font-size: 1.05em;
    line-height: 1.0; /* Sets Height Between Lines to a multiple of the font-size */
    font-weight: 800;
    font-family: "times new roman" times serif;
    text-align: left;
    margin-top: 30px;
    line-height: 1.2;
}

div.textdiv h2.makebolder
{
    font-weight: 900;	
}

div.textdiv p /* Style that only applies to a paragraph in the div textdiv (p descendant of textdiv) */
{
    color: #000000; /* Black */
    /*color: #666666;*/ /* Dark Grey */
    font-size: 0.81em;
    line-height: 1.25; /* Sets Height Between Lines to a multiple of the font-size */
    font-family: verdana, geneva, arial, helvetica, sans-serif;
}

p.indenttext
{
	margin-left: 40px;
	margin-top: 20px;
}

div.textdiv p.smalllinks
{
    font-size: 0.65em;
    line-height: 1.25; /* Sets Height Between Lines to a multiple of the font-size */
    font-family: verdana, geneva, arial, helvetica, sans-serif;
}

div.textdiv p.smalllinksm12
{
	margin-top: -12px;
    font-size: 0.65em;
    line-height: 1.25; /* Sets Height Between Lines to a multiple of the font-size */
    font-family: verdana, geneva, arial, helvetica, sans-serif;
}

div.textdiv p.smalllinksm12
{
	margin-top: -12px;
    font-size: 0.65em;
    line-height: 1.25; /* Sets Height Between Lines to a multiple of the font-size */
    font-family: verdana, geneva, arial, helvetica, sans-serif;
}

li.unbulleted /* Style that only applies to a list-item with class=unbulleted 
                 - used to get no bullet for this item */
{
    list-style: none; /* Removes list bullets that browser would otherwise insert */
}

li.unbulletedm10 /* Style that only applies to a list-item with class=unbulleted 
                 - used to get no bullet for this item */
{
	margin-top: -10px;
    list-style: none; /* Removes list bullets that browser would otherwise insert */
}
li.unbulletedlink /* Style that only applies to a list-item with class=unbulleted 
                 - used to get no bullet for this item */
{
    list-style: none; /* Removes list bullets that browser would otherwise insert */
}

li.gapbefore20px
{
	margin-top: 20px;
}

li.gapbeforem5px
{
	margin-top: -5px;
}

li.gapbeforem10px
{
	margin-top: -10px;
}

a.emaillink
{
    color: #1873cc; /* 2 shades darker than Dodger Blue */
    font-weight: 600;	
}

div.footerdiv /* Style that only applies to a div with class=footerdiv */
{
    background-image: url('../Images/gradient 349bff-1565b2 10by52.png'); /* image is 10px by 52px */
    background-repeat: repeat-x; /* Repeat above blue footer image across the row */
    /*padding-top: 2px;*/
    width: 750px;
    height: 45px;
    text-align: center;
}

span.footerspan1
{
    font-size: 16px; 
    color: #ffffff;	/* White */
}

div.footerdiv a
{
    color: #ffffff;	/* White */	
    font-family: verdana, geneva, arial, helvetica, sans-serif;
    text-decoration: none;  /* Ensures that Hyperlinks do not Blink and that they are not underlined */
    font-size: 13px;
}

div.footerdiv a:hover
{
    color: #ffffff;	/* White */	
    font-family: verdana, geneva, arial, helvetica, sans-serif;
    text-decoration: underline;  /* Ensures that Hyperlinks do not Blink and that they are underlined */
    cursor: pointer; /* Displays usual "hand" cursor */
    font-size: 13px;
}

span.footerspan2
{
    font-size: 12px; 
    color: #dcdcdc;	
    line-height: 1.8;
}
a {
	text-decoration: none;
	/* color: #1E90ff; */ /* Dodger Blue */
	/* color: #1b82e6; */ /* 1 shade darker than Dodger Blue */
	color: #1873cc; /* 2 shades darker than Dodger Blue */
}

a:hover
{
	/* color: #1E90ff; */ /* Dodger Blue */
	/* color: #1b82e6; */ /* 1 shade darker than Dodger Blue */
	color: #1873cc; /* 2 shades darker than Dodger Blue */
    text-decoration: underline;  /* Ensures that Hyperlinks become underlined on hover */
    cursor: pointer; /* Displays usual "hand" cursor */
}

