<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE
  xsl:stylesheet [
	<!ENTITY nbsp "&#160;" >
	<!ENTITY euro "&#8364;" >
	<!ENTITY lt "&#38;#60;" >
	<!ENTITY gt "&#38;#62;" >
]>

<xsl:stylesheet version="1.0"
	xmlns="http://www.w3.org/1999/xhtml"
	xmlns:xhtml="http://www.w3.org/1999/xhtml"
	xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
	xmlns:exslt="http://exslt.org/common"
	xmlns:msxsl="urn:schemas-microsoft-com:xslt"
	xmlns:svg="http://www.w3.org/2000/svg"
	xmlns:xlink="http://www.w3.org/1999/xlink"
	exclude-result-prefixes="exslt msxsl"
>
	<xsl:output  method="xml"
		doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
		doctype-system="dtd/xhtml1-strict.dtd"
		encoding="UTF-8"
		xml:lang="en"
		indent="yes"
		cdata-section-elements="script style"
		/>

	<xsl:template match="/" >

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />

<title>Sasha Firsov - welcome</title>

<link rel="stylesheet" type="text/css" media="screen" href="Sasha.css" />

<style type="text/css">

	.style1 {font-size: small}
	.HiddenFromXSL{ display:none; }

</style>
<script type="text/JavaScript" src="Sasha.js"> /**/</script>
</head>

<body onload="MM_preloadImages('img/Contact_over.png','img/Photo_over.png','img/links_over.png','img/Projects_over.png','img/resume_over.png')">
<table width="100%" border="0">
  <tr>
    <td width="192"><div align="center"><a href="index.xml"><img src="img/Sasha.png" border="0" style="width:7.5em;height:10em" /></a></div></td>
    <td width="24"><img src="img/LINEv.png" class="SplitV" style="height:10em" /></td>
    <td align="left"><img src="img/SashaFirsov.png" width="720" height="108" /></td>
  </tr>
  <tr>
    <td colspan="3"><img src="img/LINEh.png" width="864" class="SplitH"  style="width:90%;" /></td>
  </tr>
  <tr valign="top">
    <td width="192">
		<p align="center"><a href="Resume.xml" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Resume','','img/resume_over.png',1)"
		><img src="img/resume.png" alt="resume" name="Resume"  class="NavButton" id="Resume" /></a></p>
    
		<p align="center"><a href="Projects.xml" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Projects','','img/Projects_over.png',1)"
		><img src="img/Projects.png" alt="Projects" name="Projects"  class="NavButton" id="Projects" /></a></p>
		
		<p align="center"><a href="Links.xml" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Links','','img/links_over.png',1)"
		><img src="img/links.png" alt="Links" name="Links"  class="NavButton" id="Links" /></a></p>

		<p align="center"><a href="Photo.xml" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Photo','','img/Photo_over.png',1)"
		><img src="img/Photo.png" alt="Photo" name="Photo"  class="NavButton" id="Photo" /></a></p>

		<p align="center"><a href="Contact.xml" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('CONTACT','','img/Contact_over.png',1)"
		><img src="img/Contact.png" alt="Contact" name="CONTACT"  class="NavButton" id="CONTACT" /></a></p>

</td>

	  <td width="24"><img src="img/LINEv.png" class="SplitV" style="height:25em"/></td>
    <td>
<!--
		<xsl:copy-of select="//xhtml:body/*|//body/*"  />
-->		
		<xsl:apply-templates mode="copyLocal" select="//xhtml:body/*|//body/*" />
    </td>
  </tr>
</table>
</body>
</html>
  </xsl:template>

  <xsl:template match="* | @*" mode="copyLocal" >
	<xsl:element name="{local-name()}">
	  <xsl:copy-of select="@*"/>
	  <xsl:apply-templates select="child::node()" mode="copyLocal" />
	</xsl:element>
  </xsl:template>
  <xsl:template match="iframe" mode="copyLocal" />
</xsl:stylesheet>

