﻿<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl">
  <xsl:include href="InstructorBio.xslt"/>
  <xsl:include href="InstructorHead.xslt"/>
  <xsl:output method="xml" indent="yes"/>

  <xsl:template match="/">
    <xsl:variable name="HostName" select="normalize-space(AjaxRequest/HostName)"></xsl:variable>
    <xsl:variable name="TemplateURL" select="normalize-space(AjaxRequest/TemplateURL)"></xsl:variable>
    <xsl:variable name="Name" select="normalize-space(AjaxRequest/Params/Name)"></xsl:variable>

    <div id="divInsturctorContentContainer">
      <div class="dragonDivColordBakground" id="divInstructorGrouping">
        <xsl:call-template name="InstructorHead">
          <xsl:with-param name="TemplateURL" select="$TemplateURL"></xsl:with-param>
          <xsl:with-param name="HostName" select="$HostName"></xsl:with-param>
          <xsl:with-param name="Name" select="$Name"></xsl:with-param>
        </xsl:call-template>
      </div>
      <div style="background:#000000;" id="divInstructorBioDetails">
        <xsl:call-template name="InstructorBio">
          <xsl:with-param name="TemplateURL" select="$TemplateURL"></xsl:with-param>
          <xsl:with-param name="HostName" select="$HostName"></xsl:with-param>
          <xsl:with-param name="Name" select="$Name"></xsl:with-param>
        </xsl:call-template>
      </div>
      <div style="background:#000000;padding:5px 10px 5px 10px;" class="marginBottom20">
        <table class="tableMaster whiteHorizontalFooter marginLeft30">
          <tr>
            <td>
              <a href="http://{$HostName}/OurTeam/Kikuchi" target="_blank" title="Open Sensei Kikuchi">
                <span>Sensei Kikuchi</span>
              </a>
            </td>
            <td>
              <a href="http://{$HostName}/OurTeam/Jackson" target="_blank" title="Open Sensei Jackson">
                <span>Sensei Jackson</span>
              </a>
            </td>
            <td>
              <a href="http://{$HostName}/OurTeam/Gerongco" target="_blank" title="Open Sensei Gerongco">
                <span>Sensei Gerongco</span>
              </a>
            </td>
            <td>
              <a href="http://{$HostName}/OurTeam/Davis" target="_blank" title="Open Sensei Davis">
                <span>Sensei Davis</span>
              </a>
            </td>
            <td>
              <a href="http://{$HostName}/OurTeam/Clauson" target="_blank" title="Open Sensei Clauson">
                <span>Sensei Clauson</span>
              </a>
            </td>
            <td>
              <a href="http://{$HostName}/OurTeam/Sanchez" target="_blank" title="Open Roman Sanchez">
                <span>Roman Sanchez</span>
              </a>
            </td>
          </tr>
          <tr>
            <td>
              <a href="http://{$HostName}/OurTeam/Irvine" target="_blank" title="Open Joan Irvine">
                <span>Joan Irvine</span>
              </a>
            </td>
            <td>
              <a href="http://{$HostName}/OurTeam/Anderson" target="_blank" title="Open Tad Anderson">
                <span>Tad Anderson</span>
              </a>
            </td>
            <td>
              <a href="http://{$HostName}/OurTeam/MarinaHayden" target="_blank" title="Open Marina Hayden">
                <span>Marina Hayden</span>
              </a>
            </td>
            <td>
              <a href="http://{$HostName}/OurTeam/SteveHayden" target="_blank" title="Open Steve Hayden">
                <span>Steve Hayden</span>
              </a>
            </td>
            <td>
              <a href="http://{$HostName}/OurTeam/Arlington" target="_blank" title="Open Tracie Arlington">
                <span>Tracie Arlington</span>
              </a>
            </td>
            <td>
              <a href="http://{$HostName}/OurTeam/Armstrong" target="_blank" title="Open Emily Armstrong">
                <span>Emily Armstrong</span>
              </a>
            </td>
          </tr>
        </table>
      </div>
      <div align="center">
        <span style="color: #C1C1C1;">
          This site is powered by
        </span>
        <a class="publicationSummary" style="color:#C1C1C1;" href="/pro" target="_blank">LifeSpace Pro</a>
      </div>
    </div>

  </xsl:template>
</xsl:stylesheet>
