/**********************************************************************************************************************
* WEBSITE CONTENT MODULE
* 
* Copyright ©2006 - ASI Technologies Inc. (1167644 Ontario Inc.) - All rights reserved.
* No use or modification without the expressed, written permission of ASI Technologies Inc. (1167644 Ontario Inc.)
**********************************************************************************************************************/

/**********************************************************************************************************************
* simple.CSS
*
* Contains styles for use with BASIC.XSL and BASIC.XML.
*
* All styles can be distributed for use on client websites.
*
* STYLES (in alphabetical order)
* ---------------------------------------------------------------------------------------------------------------------
* #simple
* #simple .AdditionalInformation
* #simple .DisplayDate
* #simple .DocumentAuthor
* #simple .DocumentAuthorCaption
* #simple .DocumentDescription
* #simple .DocumentFileName
* #simple .DocumentFileName A
* #simple .DocumentRevision
* #simple .DocumentRevisionCaption
* #simple .Documents
* #simple .Documents TABLE
* #simple .Documents TABLE TD
* #simple .DocumentStatus
* #simple .DocumentStatusCaption
* #simple .DocumentTypeIcon
* #simple .DocumentTypeIcon IMG
* #simple .Link
* #simple .Name
* #simple .Text
* #simple DIV.titlebar
*
* MODIFICATION HISTORY
*
* MODIFIED BY					          DATE (YYYY-MM-DD)		     DESCRIPTION
* ----------------------------- ------------------------ --------------------------------------------------------------
* Andrew McKendrick             2006-10-02               Created this file.
**********************************************************************************************************************/

/**********************************************************************************************************************
* #simple Style
*
* A Template (such as this) should be displayed within an HTML container such as a DIV or SPAN. This style is applied 
* to any container having an ID of 'Basic' (notice the # symbol that appears in front of the style name, this signifies
* an ID follows).
*
* By changing this stylesheet, several variations of the same Template can be created. If the desired result cannot be
* achieved, a new template should be created.
*
* MODIFICATION HISTORY
*
* MODIFIED BY                   DATE (YYYY-MM-DD)        DESCRIPTION
* ----------------------------- ------------------------ --------------------------------------------------------------
* Andrew McKendrick             2006-10-02               Created this style.
**********************************************************************************************************************/
#simple
{  
  /* Any HTML elements contained within this HTML control, will have this font by default, unless otherwise 
  specified. */
  font-family: Arial,Verdana, Helvetica, sans-serif;
  font-size: 8pt;
  /* Specifies that the width of the HTML. */
  width: 100%;
}

/**********************************************************************************************************************
* #simple .AdditionalInformation
*
* A caption that displays above the document section that reads 'Additional Information' is enclosed in a span. This
* style applies to that span.
*
* MODIFICATION HISTORY
*
* MODIFIED BY                   DATE (YYYY-MM-DD)        DESCRIPTION
* ----------------------------- ------------------------ --------------------------------------------------------------
* Andrew McKendrick             2006-10-02               Created this style.
**********************************************************************************************************************/
#simple .AdditionalInformation
{  
  /* Displays a gray line above the caption. */
  border-top: solid 1px gray;
  /* Sets the padding between the Text of the item and the caption. */
  padding-top: 10px;
  font-weight: bold;
  /* Center the caption within the page. Width is required, otherwise the caption will always appear left-justified
     regardless of the value of the text-align attribute. */
  text-align: center;
  width: 100%;
  display:none;  
}

/**********************************************************************************************************************
* #simple .DisplayDate
*
* The display date of this item is enclosed in a span. This style is applied to that span.
*
* MODIFICATION HISTORY
*
* MODIFIED BY                   DATE (YYYY-MM-DD)        DESCRIPTION
* ----------------------------- ------------------------ --------------------------------------------------------------
* Andrew McKendrick             2006-10-02               Created this style.
**********************************************************************************************************************/
#simple .DisplayDate
{
  /* Similar to using the BR tag in HTML */
  display: block;
  display:none;
}

/**********************************************************************************************************************
* #simple .DocumentAuthor
*
* The author of a document is enclosed in a span. This style applies to that span.
*
* MODIFICATION HISTORY
*
* MODIFIED BY                   DATE (YYYY-MM-DD)        DESCRIPTION
* ----------------------------- ------------------------ --------------------------------------------------------------
* Andrew McKendrick             2006-10-02               Created this style.
**********************************************************************************************************************/
#simple .DocumentAuthor
{
  display:none;
}

/**********************************************************************************************************************
* #simple .DocumentAuthorCaption
*
* The caption that is displayed before the author of a document is enclosed in a span. This style applies to that span.
*
* MODIFICATION HISTORY
*
* MODIFIED BY                   DATE (YYYY-MM-DD)        DESCRIPTION
* ----------------------------- ------------------------ --------------------------------------------------------------
* Andrew McKendrick             2006-10-02               Created this style.
**********************************************************************************************************************/
#simple .DocumentAuthorCaption
{
  font-weight: bold;
  width: 100px;
  display:none;
}

/**********************************************************************************************************************
* #simple .DocumentDescription
*
* The description of a document is enclosed in a span. This style applies to that span.
*
* MODIFICATION HISTORY
*
* MODIFIED BY                   DATE (YYYY-MM-DD)        DESCRIPTION
* ----------------------------- ------------------------ --------------------------------------------------------------
* Andrew McKendrick             2006-10-02               Created this style.
**********************************************************************************************************************/
#simple .DocumentDescription
{
  display:none;
}

/**********************************************************************************************************************
* #simple .DocumentFileName
*
* The filename of a document appears in a span. This style applies to that span.
*
* MODIFICATION HISTORY
*
* MODIFIED BY                   DATE (YYYY-MM-DD)        DESCRIPTION
* ----------------------------- ------------------------ --------------------------------------------------------------
* Andrew McKendrick             2006-10-02               Created this style.
**********************************************************************************************************************/
#simple .DocumentFileName
{
  display:none;
}

/**********************************************************************************************************************
* #simple .DocumentFileName A
*
* The filename of a document appears in a span as a link which the user can click to view the document. This style is 
* applied to that span.
*
* MODIFICATION HISTORY
*
* MODIFIED BY                   DATE (YYYY-MM-DD)        DESCRIPTION
* ----------------------------- ------------------------ --------------------------------------------------------------
* Andrew McKendrick             2006-10-02               Created this style.
**********************************************************************************************************************/
#simple .DocumentFileName A
{
  font-weight: bold;
  text-decoration: none;
  display:none;
}

/**********************************************************************************************************************
* #simple .DocumentRevision
*
* The document revision is enclosed in a span. This style applies to that span.
*
* MODIFICATION HISTORY
*
* MODIFIED BY                   DATE (YYYY-MM-DD)        DESCRIPTION
* ----------------------------- ------------------------ --------------------------------------------------------------
* Andrew McKendrick             2006-10-02               Created this style.
**********************************************************************************************************************/
#simple .DocumentRevision
{
  display:none;
  display:none;
}

/**********************************************************************************************************************
* #simple .DocumentRevisionCaption
*
* The caption that is displayed before the document revision is enclosed in a span. This style applies to that span.
*
* MODIFICATION HISTORY
*
* MODIFIED BY                   DATE (YYYY-MM-DD)        DESCRIPTION
* ----------------------------- ------------------------ --------------------------------------------------------------
* Andrew McKendrick             2006-10-02               Created this style.
**********************************************************************************************************************/
#simple .DocumentRevisionCaption
{
  font-weight: bold;
  width: 100px; 
  display:none; 
  display:none;
}

/**********************************************************************************************************************
* #simple .Documents
*
* The section that displays all of the documents associated with this item is enclosed within a span. This style 
* applies to that span.
*
* MODIFICATION HISTORY
*
* MODIFIED BY                   DATE (YYYY-MM-DD)        DESCRIPTION
* ----------------------------- ------------------------ --------------------------------------------------------------
* Andrew McKendrick             2006-10-02               Created this style.
**********************************************************************************************************************/
#simple .Documents
{
  display:none;
}

/**********************************************************************************************************************
* #simple .Documents TABLE
*
* All of the documents associated with this item are displayed within a table. This style applies to that table.
* Without this style, the default font will be used for all text in the table.
*
* MODIFICATION HISTORY
*
* MODIFIED BY                   DATE (YYYY-MM-DD)        DESCRIPTION
* ----------------------------- ------------------------ --------------------------------------------------------------
* Andrew McKendrick             2006-10-02               Created this style.
**********************************************************************************************************************/
#simple .Documents TABLE
{
  font-family: Verdana, Arial;
  font-size: 8pt;
  /* Indent the documents. */
  margin-left: 25px;
  display:none;
}

/**********************************************************************************************************************
* #simple .Documents TABLE TD
*
* All of the documents associated with this item are displayed within a table. This style applies to all of the cells
* within that table.
*
* MODIFICATION HISTORY
*
* MODIFIED BY                   DATE (YYYY-MM-DD)        DESCRIPTION
* ----------------------------- ------------------------ --------------------------------------------------------------
* Andrew McKendrick             2006-10-02               Created this style.
**********************************************************************************************************************/
#simple .Documents TABLE TD
{
  /* Eliminates spacing between cells. */
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 0px 0px;
  display:none;
}

/**********************************************************************************************************************
* #simple .DocumentStatus
*
* The document status is enclosed in a span. This style applies to that span.
*
* MODIFICATION HISTORY
*
* MODIFIED BY                   DATE (YYYY-MM-DD)        DESCRIPTION
* ----------------------------- ------------------------ --------------------------------------------------------------
* Andrew McKendrick             2006-10-02               Created this style.
**********************************************************************************************************************/
#simple .DocumentStatus
{
  display:none;
}

/**********************************************************************************************************************
* #simple .DocumentStatusCaption
*
* The caption that is displayed before the document status is enclosed in a span. This style applies to that span.
*
* MODIFICATION HISTORY
*
* MODIFIED BY                   DATE (YYYY-MM-DD)        DESCRIPTION
* ----------------------------- ------------------------ --------------------------------------------------------------
* Andrew McKendrick             2006-10-02               Created this style.
**********************************************************************************************************************/
#simple .DocumentStatusCaption
{
  font-weight: bold;
  width: 100px;
  display:none;  
}

/**********************************************************************************************************************
* #simple .DocumentTypeIcon
*
* The image that indicates the type of a document appears in a span. This style is applied to that span.
*
* MODIFICATION HISTORY
*
* MODIFIED BY                   DATE (YYYY-MM-DD)        DESCRIPTION
* ----------------------------- ------------------------ --------------------------------------------------------------
* Andrew McKendrick             2006-10-02               Created this style.
**********************************************************************************************************************/
#simple .DocumentTypeIcon
{
  width: 50px;
  display:none;
}

/**********************************************************************************************************************
* #simple .DocumentTypeIcon IMG
*
* The image that indicates the type of a document appears in a span. This style is applied to the image itself.
*
* MODIFICATION HISTORY
*
* MODIFIED BY                   DATE (YYYY-MM-DD)        DESCRIPTION
* ----------------------------- ------------------------ --------------------------------------------------------------
* Andrew McKendrick             2006-10-02               Created this style.
**********************************************************************************************************************/
#simple .DocumentTypeIcon IMG
{
  border: none 0px; 
  display:none; 
}

/**********************************************************************************************************************
* #simple .Link
*
* A Link (enclosed in a span) that is associated with this item.
*
* MODIFICATION HISTORY
*
* MODIFIED BY                   DATE (YYYY-MM-DD)        DESCRIPTION
* ----------------------------- ------------------------ --------------------------------------------------------------
* Andrew McKendrick             2006-10-02               Created this style.
**********************************************************************************************************************/
#simple .Link
{ 
  /* Similar to using the BR tag in HTML */
  display: block;
  color: #630C0D;
  text-decoration: none;
  font-size:12px;
  font-family: Arial,Verdana, Helvetica, sans-serif;
  font-style:  normal;

}
/**********************************************************************************************************************
* NewsListNews .Teaser Style
*
* For some items (depending on the XML) a teaser is displayed in a span. This style is applied to that span.
*
* MODIFICATION HISTORY
*
* MODIFIED BY                   DATE (YYYY/MM/DD)        DESCRIPTION
* ----------------------------- ------------------------ --------------------------------------------------------------
* Andrew McKendrick             2006-09-27               Created this style.
**********************************************************************************************************************/
#simple .Teaser
{   
  /* To hide the teaser regardless of the item, set the display attribute to none. To allow teasers to be shown, set
  the display attribute to block or another value. */
  display: block;
  FONT-SIZE: 12px;
  COLOR: black;
  font-family: Arial,Verdana, Helvetica, sans-serif;
  TEXT-DECORATION: none    
}

/**********************************************************************************************************************
* #simple .Name
*
* The name of each item is enclosed in a span. This style is applied to that span.
*
* MODIFICATION HISTORY
*
* MODIFIED BY                   DATE (YYYY-MM-DD)        DESCRIPTION
* ----------------------------- ------------------------ --------------------------------------------------------------
* Andrew McKendrick             2006-10-02               Created this style.
**********************************************************************************************************************/
#simple .Name
{
  /* Similar to using the BR tag in HTML */
  display: block;
  font-size:12px;
  color: #630C0D;
  font-family: Arial,Verdana, Helvetica, sans-serif;
  font-style:  normal;
  text-decoration: none;
}

/**********************************************************************************************************************
* #simple .Text
*
* The text of the item is displayed in a span. This style is applied to that span.
*
* MODIFICATION HISTORY
*
* MODIFIED BY                   DATE (YYYY-MM-DD)        DESCRIPTION
* ----------------------------- ------------------------ --------------------------------------------------------------
* Andrew McKendrick             2006-10-02               Created this style.
**********************************************************************************************************************/
#simple .Text
{   
  /* Similar to using the BR tag in HTML */
  display: block;
  /* Displays a blank line before and a blank line after the item text. */  
  padding:  0px 0px 20px 0px;
}


