<?xml version="1.0"?>

<!-- *************************************************   
	File name: fabless_companies.xsl
 	Author: Debra Brubaker Burns, COIN 78 - XML
	Assignment: Final
	Description: Fabless Companies
               : xsl file
	Date Created: 12/10/01
	Date Modified: 12/13/01
	Copyright 2001
***************************************************** -->

<xsl:stylesheet version="1.0"
	xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
	<xsl:template match="/">
		<HTML>
			<HEAD>
				<TITLE>Fabless Semi-Conductor Companies</TITLE>
			</HEAD>
		<BODY>
		<xsl:apply-templates />
		</BODY>
		</HTML>
	</xsl:template>
	<xsl:template match="fabless_companies">
	
	<CENTER>

	<table width="100%" style="border-width: medium; border-style: solid; border-color: #000077;"><tr><td align="center" style="color:#FFFFFF; background-color:#33cc00; font-family:verdana, ariel, helvetica, sans-serif; font-size:12pt; font-weight:bold"><xsl:value-of select="heading"/></td></tr></table>

	<TABLE>
		<xsl:for-each select="/fabless_companies/company">

		<TABLE style="border-width: medium; border-style: solid; border-color: #33cc00; margin-bottom:30px;" >

		
		<tr height="20" style="color:#FFFFFF; background-color:#000077; font-family: verdana, ariel, helvetica, sans-serif; font-size: 12pt;font-weight:bold">

			<TD colspan="3" align="center"><xsl:value-of select="name" /></TD>

		</tr>
		
		<tr style="color:#000000; background-color:#eeeeee; font-family=verdana, ariel, helvetica, sans-serif; font-size: 10pt;font-weight:bold;">
			<th width="25%" align="center">Headquarters Address</th>	
			<th width="30%" align="center">Contact</th>
			<th width="45%" align="center">Officers</th>
		</tr>
<!--address information-->
		<tr>
			<td style="padding-bottom:6pt;padding-left:3pt"> 

		<table style="color:#000000; font-family=verdana, ariel, helvetica, sans-serif; font-size: 8pt;text-align:left">
		<tr><td><xsl:value-of select="headquarters_address/address_1" /></td></tr>
		<tr><td><xsl:value-of select="headquarters_address/address_2" /></td></tr> 
		<tr><td><xsl:value-of select="headquarters_address/city" />,			        <xsl:value-of select="headquarters_address/state" />  
			<xsl:value-of select="headquarters_address/province" />
  			<xsl:value-of select="headquarters_address/zip_code" /></td></tr>    
		<tr><td><xsl:value-of select="headquarters_address/country" /></td></tr> 
		</table>
			</td>
		
<!--contact information-->             

			<td style="padding-bottom:6pt;padding-left:3pt"> 

		<table style="color:#000000; font-family=verdana, ariel, helvetica, sans-serif; font-size: 8pt;text-align:left">
		<tr><td>Website: <xsl:value-of select="contact/website" /></td></tr>
		<tr><td><xsl:value-of select="contact/telephone" /></td></tr>
		<tr><td><xsl:value-of select="contact/fax" /></td></tr>
		</table>
			</td>

<!--officer information-->             

			<td style="padding-bottom:6pt;padding-left:3pt"> 

		<table style="color:#000000; font-family=verdana, ariel, helvetica, sans-serif; font-size: 8pt;text-align:left">
		<tr><td>CEO: <xsl:value-of select="officers/ceo" /></td></tr>
		<tr><td>COO: <xsl:value-of select="officers/coo" /></td></tr>
		<tr><td>CFO: <xsl:value-of select="officers/cfo" /></td></tr>
		<tr><td>CTO: <xsl:value-of select="officers/cto" /></td></tr>
		</table>
			</td>
		</tr>




			      



		<tr style="color:#000000; background-color:#eeeeee; font-family=verdana, ariel, helvetica, sans-serif; font-size: 10pt;font-weight:bold;">
			<th colspan="3">Description</th>
		</tr>
		<tr style="color:#000000; background-color:#ffffff; font-family=verdana, ariel, helvetica, sans-serif; font-size: 8pt;">				
			<TD colspan="3" style="padding-bottom:12pt;padding-left:6pt"><xsl:value-of select="description" /></TD>
		</tr>


	</TABLE>

		</xsl:for-each>
	</TABLE>
	</CENTER>

	</xsl:template>


</xsl:stylesheet>
