/*
This is a sample client side CSS file for accessibility and is provided by the PSLRB as a starting point for users of our web site.
More information on accessibility of Governement of Canada web sites can be found at:  http://www.tbs-sct.gc.ca/clf2-nsi2/tb-bo/acch-aacc-eng.asp#cn_ht-ccss

9.2 Expandable page 
	To meet visual design requirements, it was necessary to fix the width of the template at 760 pixels. For some clients, an expandable template improves accessibility and/or usability. 

	Although CLF does not allow the template to be expandable by default, clients can make Web pages using the template expandable by including the following client-side CSS in their custom style sheets: 

*/

div.page {      width : 100% !important;}


/*
9.3 Underline all links 
To meet visual design requirements, it was necessary to remove the underlining of links in the side menu and the common menu bar.  Some clients may have difficulty recognizing links that are not underlined or may prefer that all links be underlined regardless of the impact on visual design. 
Although CLF does not allow the side menu and common menu bar links to be underlined by default, clients can force all links to be underlined by including the following client-side CSS in their custom style sheets: 
*/

a:link, a:visited, a:hover, a:active, a:focus{       text-decoration: underline !important;}


/*
9.4 Consistent link colours
To meet visual design requirements, it was necessary to specify different link foreground and background colours in some areas of the page. Some clients may have difficulty identifying links when the colour scheme is not consistent throughout the page. 
Although CLF does not allow the foreground and background colour to be the same for all links by default, clients can force all links to have the same foreground and background colours by including the following client-side CSS in their custom style sheets: 
*/

a:link, a:visited, a:hover, a:active, a:focus {
      background-color: #FFF !important;
      font-weight: normal !important;
      font-style: normal !important;
      font-variant: normal !important;
      padding: 0px 0px 2px 2px !important;   }
a:link {      color: #00F !important;}
a:visited {      color: #009 !important;}
a:hover, a:active, a:focus {      color: #C00 !important;}
