/**
*
*  purpose of the stylesheet is to style the textual representation of the home page
*  @author: rsharp
*  client: ESFRS
*  date created: 02/11/2009
*  @version: 1.0.0
*  @since: 1.0.0
*  1.0.0 - 02/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:#111111;
}
a:hover, a:focus{
    background-color:#900000;
    color:#FFFFFF;
    border:0px dotted #ED7676;
}
a:hover{
    text-decoration:underline;
}
/* header elements */
h1,h2,h3,h4,h5{
    letter-spacing:0px;
    word-spacing:0px;
}
h2{
    font-size:1em;
}
/* h2 within footer wrapper (at bottom of page below content) */
#footWrapper h2{
    font-size:1.1em;
    color:#900000;
}
h3 a{
    font-weight:bold;
}
/* feature block appears inside the featured campaigns block */
.featureBlock{
    text-align:left;
}
/* feature block hyperlinks (appears inside the featured campaigns block) */
.featureBlock a{
    color:#111111;
}
/* 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%;}

