/**
*
*  purpose of the stylesheet is to style the textual representation of high visibility
*  home page.
*  @author: rsharp, AShrivastava
*  client: ESFRS
*  date created: 17/11/2009
*  @version: 1.0.0
*  @since: 1.0.0
*  1.0.0 - 17/11/2009 - Version 1 created.
**/

/* hyperlinks - must be in this order i.e. a, a:link, a:visited, a:hover, a:focus */
a:link, a:visited{
    text-decoration:none;
    color:#FFFF00;
}
a:hover{
    text-decoration:underline;
    color:#000;
    background-color:#FFFFA9;
}
a:focus{
    color:#000;
}
/* header elements */
h1,h2,h3,h4,h5{
    letter-spacing:0px;
    word-spacing:0px;
}
h2{
    font-size:1em;
}
/* rules for h2 header within foot wrapper at bottom of page below main content */
#footWrapper h2{
    font-size:1.1em;
    color:#00ffff;
}
h3 a{
    font-weight:bold;
}
/* feature block which appears inside featured campaigns block in left panel */
.featureBlock{
    text-align:left;
}
/* hyperlink rules for feature block (appears inside featured campaigns block in left panel) */
.featureBlock a{
    color:#ffff00;
}
/* text rules for multiple content blocks */
#contentBlock,th,ul,#smokeAlarmsBlock, #safetyVisitsBlock,#footWrapper{
    text-align:left;
}
/* text rules for multiple content blocks */
#featuredCampaignsBlock,#linksBlock,#safetyFeatureBlock,#smokeAlarmsBlock p, #safetyVisitsBlock p{
    text-align:center;
}
/* Following must be used to make text bold (Rather than using mark up <b> or <strong>) */
p.strong{
    font-weight:bold;
}
p.stronger{
    font-weight:bolder;
}

/*Sets italic, bold with size at 107% */
 #highlight {font-style:italic; font-weight:bolder; font-size:107%;}
