<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Mukesh Chapagain&#039;s Blog &#187; CSS</title>
	<atom:link href="http://blog.chapagain.com.np/tag/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.chapagain.com.np</link>
	<description>PHP Magento jQuery SQL Wordpress Joomla Programming &#38; Tutorial</description>
	<lastBuildDate>Tue, 07 Feb 2012 00:54:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>Javascript: Show/Hide HTML elements</title>
		<link>http://blog.chapagain.com.np/javascript-showhide-html-elements/</link>
		<comments>http://blog.chapagain.com.np/javascript-showhide-html-elements/#comments</comments>
		<pubDate>Fri, 27 Nov 2009 12:26:51 +0000</pubDate>
		<dc:creator>Mukesh</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://blog.chapagain.com.np/?p=277</guid>
		<description><![CDATA[Here, I will be demonstrating on showing or hiding a div when a link is clicked. I have done this with Javascript and CSS. I have called showHideDiv() Js function when the link is clicked. The display of the div where content is present, is visible or hidden on each click. For this, CSS styling [...]


<strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/javascript-add-remove-html-elements/' rel='bookmark' title='Permanent Link: Javascript: Add Remove HTML elements'>Javascript: Add Remove HTML elements</a></li>
<li><a href='http://blog.chapagain.com.np/javascript-show-hide-textbox-text-on-focus/' rel='bookmark' title='Permanent Link: Javascript: Show Hide textbox text on focus'>Javascript: Show Hide textbox text on focus</a></li>
<li><a href='http://blog.chapagain.com.np/print_r-in-javascript/' rel='bookmark' title='Permanent Link: print_r in Javascript'>print_r in Javascript</a></li>
<li><a href='http://blog.chapagain.com.np/javascript-how-to-submit-form-and-change-form-action/' rel='bookmark' title='Permanent Link: Javascript: How to Submit form and Change form action?'>Javascript: How to Submit form and Change form action?</a></li>
<li><a href='http://blog.chapagain.com.np/how-to-get-html-source-code-of-a-website/' rel='bookmark' title='Permanent Link: How to get(view) html source code of a website'>How to get(view) html source code of a website</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Here, I will be demonstrating on showing or hiding a div when a link is clicked. I have done this with Javascript and CSS.</p>
<p>I have called showHideDiv() Js function when the link is clicked. The display of the div where content is present, is visible or hidden on each click. For this, CSS styling is used (display: none).</p>
<p><span id="more-277"></span></p>
<p>The code follows:</p>
<pre class="brush: jscript; title: ; notranslate">

&lt;div&gt;
	&lt;a onclick=&quot;showHideDiv()&quot; style=&quot;cursor:pointer&quot;&gt;Show / Hide&lt;/a&gt;
	&lt;div id=&quot;addTag&quot; style=&quot;display:none&quot;&gt;This is a test.&lt;/div&gt;
&lt;/div&gt;

&lt;script type=&quot;text/javascript&quot; language=&quot;javascript&quot;&gt;
	function showHideDiv()
	{
		if(document.getElementById('addTag').style.display == &quot;none&quot;) {
			document.getElementById('addTag').style.display = &quot;&quot;;
		}
		else {
			document.getElementById('addTag').style.display = &quot;none&quot;;
		}
	}
&lt;/script&gt;
</pre>
<p>Try, Implement and Enjoy!</p>
<hr /><small>Copyright &copy; 2011<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small><img src="http://blog.chapagain.com.np/?ak_action=api_record_view&id=277&type=feed" alt="" />

<p><strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/javascript-add-remove-html-elements/' rel='bookmark' title='Permanent Link: Javascript: Add Remove HTML elements'>Javascript: Add Remove HTML elements</a></li>
<li><a href='http://blog.chapagain.com.np/javascript-show-hide-textbox-text-on-focus/' rel='bookmark' title='Permanent Link: Javascript: Show Hide textbox text on focus'>Javascript: Show Hide textbox text on focus</a></li>
<li><a href='http://blog.chapagain.com.np/print_r-in-javascript/' rel='bookmark' title='Permanent Link: print_r in Javascript'>print_r in Javascript</a></li>
<li><a href='http://blog.chapagain.com.np/javascript-how-to-submit-form-and-change-form-action/' rel='bookmark' title='Permanent Link: Javascript: How to Submit form and Change form action?'>Javascript: How to Submit form and Change form action?</a></li>
<li><a href='http://blog.chapagain.com.np/how-to-get-html-source-code-of-a-website/' rel='bookmark' title='Permanent Link: How to get(view) html source code of a website'>How to get(view) html source code of a website</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.chapagain.com.np/javascript-showhide-html-elements/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Left or Right Align your image, adsense code or other advertisement in wordpress</title>
		<link>http://blog.chapagain.com.np/left-or-right-align-your-image-adsense-code-or-other-advertisement-in-wordpress/</link>
		<comments>http://blog.chapagain.com.np/left-or-right-align-your-image-adsense-code-or-other-advertisement-in-wordpress/#comments</comments>
		<pubDate>Fri, 21 Nov 2008 11:00:34 +0000</pubDate>
		<dc:creator>Mukesh</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[adsense]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[stylesheet]]></category>

		<guid isPermaLink="false">http://blog.chapagain.com.np/?p=79</guid>
		<description><![CDATA[Suppose you want to show your google adsense in the top-left side of your post. If you simply put your adsense code in the single post page (single.php) of wordpress then the text of your post will appear below the adsense. To solve this problem, I used stylesheet property called &#8216;margin&#8217;. The example below is [...]


<strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/how-to-setup-google-adsense-in-your-website/' rel='bookmark' title='Permanent Link: How to setup Google AdSense for your website'>How to setup Google AdSense for your website</a></li>
<li><a href='http://blog.chapagain.com.np/wordpress-plugin-quick-adsense-10/' rel='bookmark' title='Permanent Link: WordPress Plugin: Quick Adsense 1.0'>WordPress Plugin: Quick Adsense 1.0</a></li>
<li><a href='http://blog.chapagain.com.np/solution-google-adsense-not-showing-on-my-website-blog/' rel='bookmark' title='Permanent Link: Solution: Google Adsense not showing on my website blog'>Solution: Google Adsense not showing on my website blog</a></li>
<li><a href='http://blog.chapagain.com.np/blogspot-how-to-add-google-adsense-to-your-blogger-website/' rel='bookmark' title='Permanent Link: Blogspot: How to add google adsense to your blogger website?'>Blogspot: How to add google adsense to your blogger website?</a></li>
<li><a href='http://blog.chapagain.com.np/how-to-get-html-source-code-of-a-website/' rel='bookmark' title='Permanent Link: How to get(view) html source code of a website'>How to get(view) html source code of a website</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Suppose you want to show your google adsense in the top-left side of your post. If you simply put your adsense code in the single post page (single.php) of wordpress then the text of your post will appear below the adsense.</p>
<p>To solve this problem, I used stylesheet property called &#8216;margin&#8217;. The example below is from single.php file of my wordpress theme. The adsense code is kept in between the paragraph tag.<br />
It is kept after </p>
<pre class="brush: php; title: ; notranslate">&lt;em&gt;&lt;div class=&quot;entry-content&quot;&gt;&lt;/em&gt;</pre>
<p>and before </p>
<pre class="brush: php; title: ; notranslate">&lt;em&gt;&lt;?php the_content(); ?&gt;&lt;/em&gt;</pre>
<p><span id="more-79"></span></p>
<pre class="brush: xml; title: ; notranslate">
&lt;div class=&quot;entry-content&quot;&gt;

&lt;p class=&quot;alignleft&quot; style=&quot;text-align: left; margin: 8px; float: left;&quot;&gt;

&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-8802303964745491&quot;;
/* 336x280, created 5/16/08 */
google_ad_slot = &quot;7152897181&quot;;
google_ad_width = 336;
google_ad_height = 280;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;

&lt;/p&gt;

&lt;?php the_content(''.__('Read More &lt;span class=&quot;meta-nav&quot;&gt;&amp;raquo;&lt;/span&gt;', 'sandbox').''); ?&gt;
</pre>
<p>Similarly, I created an about me page. I wanted to show my pic in the top-left position and to show the text by the side of the pic. For this I added style to my uploaded image while editing the page. I went to the HTML (not View) section in the edit/add page.</p>
<p>The style I added goes like this:</p>
<pre class="brush: xml; title: ; notranslate">style=&quot;margin: 8px; float: left;&quot;</pre>
<p>More HTML source from my about page:</p>
<pre class="brush: xml; title: ; notranslate">

&lt;p style=&quot;text-align: left;&quot;&gt;
&lt;img class=&quot;alignleft&quot; alt=&quot;Mukesh Image&quot; src=&quot;http://blog.chapagain.com.np/wp-content/uploads/close-up-small.jpg&quot; style=&quot;margin: 8px; float: left;&quot;/&gt;
&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;
Hi, I am Mukesh Chapagain. My rest of the introduction goes here...
&lt;/p&gt;
</pre>
<hr /><small>Copyright &copy; 2011<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small><img src="http://blog.chapagain.com.np/?ak_action=api_record_view&id=79&type=feed" alt="" />

<p><strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/how-to-setup-google-adsense-in-your-website/' rel='bookmark' title='Permanent Link: How to setup Google AdSense for your website'>How to setup Google AdSense for your website</a></li>
<li><a href='http://blog.chapagain.com.np/wordpress-plugin-quick-adsense-10/' rel='bookmark' title='Permanent Link: WordPress Plugin: Quick Adsense 1.0'>WordPress Plugin: Quick Adsense 1.0</a></li>
<li><a href='http://blog.chapagain.com.np/solution-google-adsense-not-showing-on-my-website-blog/' rel='bookmark' title='Permanent Link: Solution: Google Adsense not showing on my website blog'>Solution: Google Adsense not showing on my website blog</a></li>
<li><a href='http://blog.chapagain.com.np/blogspot-how-to-add-google-adsense-to-your-blogger-website/' rel='bookmark' title='Permanent Link: Blogspot: How to add google adsense to your blogger website?'>Blogspot: How to add google adsense to your blogger website?</a></li>
<li><a href='http://blog.chapagain.com.np/how-to-get-html-source-code-of-a-website/' rel='bookmark' title='Permanent Link: How to get(view) html source code of a website'>How to get(view) html source code of a website</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.chapagain.com.np/left-or-right-align-your-image-adsense-code-or-other-advertisement-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Cascading StyleSheet (CSS) :: Property Value Pairs</title>
		<link>http://blog.chapagain.com.np/cascading-stylesheet-css-property-value-pairs/</link>
		<comments>http://blog.chapagain.com.np/cascading-stylesheet-css-property-value-pairs/#comments</comments>
		<pubDate>Fri, 23 Mar 2007 10:08:14 +0000</pubDate>
		<dc:creator>mukeshChapagain</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[style]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://blog.chapagain.com.np/?p=6</guid>
		<description><![CDATA[CSS Syntax Introduction The CSS syntax is made up of three parts: a selector, a property and a value: selector {property: value} The selector is normally the HTML element/tag you wish to define, the property is the attribute you wish to change, and each property can take a value. The property and value are separated [...]


<strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/pageispostback-property-a-solution-to-the-client-postback-problem/' rel='bookmark' title='Permanent Link: Page.IsPostBack property: A solution to the client postback problem'>Page.IsPostBack property: A solution to the client postback problem</a></li>
<li><a href='http://blog.chapagain.com.np/meta-tags/' rel='bookmark' title='Permanent Link: What are Meta-Tags? Full Description of Meta tags'>What are Meta-Tags? Full Description of Meta tags</a></li>
<li><a href='http://blog.chapagain.com.np/jquery-grey-out-background-and-preview-image-as-popup/' rel='bookmark' title='Permanent Link: jQuery: Grey out background and preview image as popup'>jQuery: Grey out background and preview image as popup</a></li>
<li><a href='http://blog.chapagain.com.np/how-to-get-html-source-code-of-a-website/' rel='bookmark' title='Permanent Link: How to get(view) html source code of a website'>How to get(view) html source code of a website</a></li>
<li><a href='http://blog.chapagain.com.np/how-to-setup-google-adsense-in-your-website/' rel='bookmark' title='Permanent Link: How to setup Google AdSense for your website'>How to setup Google AdSense for your website</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p class="Section1"><span style="font-size: 14pt">CSS  Syntax Introduction</span></p>
<p>The CSS syntax is made up of three parts: a selector, a property and a  value:</p>
<p><span class="GramE">selector</span> {property: value}</p>
<p><span id="more-6"></span></p>
<p>The selector is normally the HTML element/tag you wish to define, the  property is the attribute you wish to change, and each property can take a  value. The property and value are separated by a colon, and surrounded by curly  braces:</p>
<p><span class="GramE">body</span> {color: black}</p>
<p>If the value is multiple words, put quotes around the value:</p>
<p><span class="GramE">p</span> {font-family: &#8220;sans serif&#8221;}</p>
<p>If you wish to specify more than one property, you must separate each  property with a semicolon. The example below shows how to define a center  aligned paragraph, with a red text color:</p>
<p><span class="GramE">p</span> {text-<span class="SpellE">align:center;color:red</span>}</p>
<p><span style="font-size: 14pt">Properties</span></p>
<p>The different categories of property are explained below:</p>
<p><strong>Text style  properties</strong></p>
<p>These properties affect how text appears on a page. The different text style  properties are as under:</p>
<p><span class="GramE"><u>color</u></span><u></u></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->sets the foreground color of an element</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{color: aqua}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{color: black} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{color: blue}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{color: fuchsia}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{color: #808080}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{color: maroon}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{color: #ffa500}</p>
<p><span class="GramE"><u>font-weight</u></span><u></u></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->the weight of the font is how bold it is</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-weight: normal} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-weight: bold}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-weight: bolder} (use of relative keywords: <em>bolder, lighter</em>)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-weight: lighter}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]--><em>bolder</em>  specifies that the text should be one degree bolder than the parent element and  <em>lighter</em> specifies that the text  should be one degree lighter than parent element</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-weight: 100} (use of numeric values:  100,200,300,400,500,600,700,800,900)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->Each value is one degree bolder than the previous value.  <span class="GramE"><em>normal</em></span> is  equivalent to 400 and <em>bold</em> is  equivalent to 700.</p>
<p><span class="GramE"><u>font-family</u></span><u></u></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->this property specifies a hierarchy list of preferred  fonts that a browser should use to draw the element</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-family: Verdana, Arial, Helvetica, sans-serif}</p>
<p><span class="GramE"><u>font-size</u></span><u></u></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]--><span class="GramE">specifies</span> how large text  appears on a web page.</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-size: 2point} (abbrev. pt)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-size: 2em} (abbrev. <span class="SpellE">em</span>)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-size: 2ex} (abbrev. ex)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-size: 2pica} (abbrev. pc)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-size: 2pixel} (abbrev. <span class="SpellE">px</span>)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-size: 2inche} (abbrev. in)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-size: 10millimeter} (abbrev. mm)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-size: 5centimeter} (abbrev. cm)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-size: small}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-size: larger}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-size: smaller}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-size: xx-small}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-size: x-small}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-size: medium} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-size: large}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-size: x-large}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-size: xx-large}</p>
<p><span class="GramE"><u>font-variant</u></span><u></u></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->this specifies that the text should appear in small  capitals</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-variant: normal } (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-variant: small-caps}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]--><em>normal  </em>specifies that the text should appear using capital or lowercase letters as  it appears in source and <em>small-caps</em>  specifies that the lower case letters (but not capitals) should appear as small  capital letters</p>
<p><span class="GramE"><u>font-style</u></span><u></u></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-style: normal} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-style: italic}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-style: oblique}</p>
<p><span class="GramE"><u>text-decoration</u></span><u></u></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{text-decoration: none} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{text-decoration: underline}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{text-decoration: <span class="SpellE">overline</span>}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{text-decoration: line-through}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{text-decoration: blink}</p>
<p><span class="GramE"><u>text-transform</u></span><u></u></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->this allows you to specify the capitalization of  text</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{text-transform: capitalize} (the first letter of each  word is in capital letters)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{text-transform: uppercase} (every letter is in  uppercase)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{text-transform: lowercase} (every letter is in  lowercase)</p>
<p><strong> </strong></p>
<p><strong>Text Layout  Properties</strong></p>
<p><span class="GramE"><u>letter-spacing</u></span></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->this gives you control over the space between  characters</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{letter-spacing: normal} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{letter-spacing: 2px}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{letter-spacing: 2in}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->Other units of measurement are <span class="SpellE">em</span>, ex, pica (pc), point (pt), pixel (<span class="SpellE"><span class="GramE">px</span></span>), millimeter (mm), centimeter  (cm), inch (in).</p>
<p><span class="GramE"><u>word-spacing</u></span><u></u></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->this gives you control over the space between words</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{word-spacing: normal} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{word-spacing: 2px} (other example of length units are  given above)</p>
<p><span class="GramE"><u>line-height</u></span></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->this property sets the distance between adjacent  lines</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{line-height: normal} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{line-height: 1.2}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{line-height: 120%}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{line-height: 2px}</p>
<p><span class="GramE"><u>vertical-</u></span><u>align</u></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->this property gives control over how elements align  vertically across the page</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{vertical-align: baseline} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{vertical-align: middle}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{vertical-align: sub}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{vertical-align: super}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{vertical-align: text-top}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{vertical-align: text-bottom}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{vertical-align: top}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{vertical-align: bottom}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{vertical-align: 20%}</p>
<p><span class="GramE"><u>text-indent</u></span></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->this property enables you to control how the first line  of any element is indented, or <span class="SpellE">outdented</span></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{text-indent: 5px}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{text-indent: 10%}</p>
<p><span class="GramE"><u>text-</u></span><u>align</u></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{text-align: left}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{text-align: right}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{text-align: center}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{text-align: justify}</p>
<p><span class="GramE"><u>direction</u></span><u> </u></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->this property specifies the base direction for text</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{direction: <span class="SpellE">rtl</span>} (means the  text should flow from right to left)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{direction: <span class="SpellE">ltr</span>} (means the  text should flow from left to right) (default)</p>
<p><strong>Background  properties</strong></p>
<p><span class="GramE"><u>background-color</u></span><u></u></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->specifies background color of an element</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{background-color: maroon}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{background-color: #336699}</p>
<p><span class="GramE"><u>background-image</u></span></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{background-image: <span class="SpellE">url</span>(image1.gif)}</p>
<p><span class="GramE"><u>background-attachment</u></span></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->specifies whether the background image should scroll or  remain fixed</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{background-attachment: scroll} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{background-attachment: fixed}</p>
<p><span class="GramE"><u>background-repeat</u></span><u> </u></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{background-repeat: repeat} (tiling the background image  horizontally and vertically)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{background-repeat: repeat-x} (tiles an image  horizontally but not vertically)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{background-repeat: repeat-y} (tiles an image vertically  but not horizontally)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{background-repeat: no-repeat} (makes the image appear  once and doesn’t tile image)</p>
<p><span class="GramE"><u>background-position</u></span></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->specifies where a background image is placed</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{background-position: 0% 0%} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{background-position: 15% 25%}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{background-position: 20px <span class="SpellE">20px</span>}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{background-position: top left}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{background-position: left top}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{background-position: top}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{background-position: top center}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{background-position: right top}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{background-position: left center}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{background-position: right center}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{background-position: bottom left}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{background-position: bottom-center}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{background-position: bottom-right}</p>
<p><span class="GramE"><u>background</u></span><u> </u></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->this is a shorthand property that lets you set any or  all background properties at once</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{background: <span class="SpellE">url</span>(http://www.chapagain.com.np/gifs/mukesh1.gif) fixed  no-repeat top center} is equivalent to the below four properties:</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->background-image: <span class="SpellE">url</span>(http://www.chapagain.com.np/gifs/mukesh1.gif);</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->background-attachment: fixed;</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->background-repeat: no-repeat;</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->background-position: top center;</p>
<p><strong>Border properties</strong></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{border-width: thin}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{border-width: medium} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{border-width: thick}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{border-top-width: 2pt}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{border-left-width: medium}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{border-right-width: 2em}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{border-bottom-width: 2px}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{border-color: #336699}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{border-color: #336699 #003366}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{border-color: maroon green blue}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{border-color: maroon green blue yellow}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{border-style: none} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{border-style: dotted dashed}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{border-style: solid}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{border-style: solid double groove}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{border-style: none ridge inset outset}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]--><span class="GramE"><em>border</em></span><em>, border-top, border-bottom, border-left,  border-right </em>let you specify with one property any or all of <em>border-style, border-width, border-color  </em>values for each edge respectively, or the entire border.</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{border-top: red thick solid}</p>
<p><strong> </strong></p>
<p><strong>Margin properties</strong></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->A margin is the space between an element and the  elements to its top, left, bottom and right. Margin can be negative values.</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{margin: auto}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{margin-top: 20%}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{margin-bottom: 2px}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{margin-left: -2cm}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{margin-bottom: 2em}</p>
<p><strong>Padding properties</strong></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->Padding is the space between the edge of an element (its  border) and its contents. Padding cannot take negative values.</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{padding: 4px}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{padding-right: 20%}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{padding-left: 9mm}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{padding-bottom: 1in}</p>
<p><strong>Page Layout properties</strong></p>
<p><span class="GramE"><u>position</u></span><u> </u></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->this property is used to determine what the coordinates  are with respect to, or how the element will be drawn</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{position: static} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{position: relative}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{position: absolute}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{position: fixed}</p>
<p><span class="GramE"><u>top</u></span><u> </u></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->specifies where the top of an element will be placed</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{top: auto} (this is default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{top: 4px} (using length values)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{top: 4%} (using percentage values)</p>
<p><span class="GramE"><u>left</u></span><u> </u></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->specifies where the left of an element will be  placed</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{left: auto}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{left: 4px}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{left: 55%}</p>
<p><span class="GramE"><u>bottom</u></span><u> </u></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{bottom: auto}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{bottom: 4in}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{bottom: 9%}</p>
<p><span class="GramE"><u>right</u></span><u></u></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{right: auto}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{right: 4cm}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{right: 40%}</p>
<p><span class="GramE"><u>width</u></span></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->specifies how wide an element will appear on the  page</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{width: auto} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{width: 5%}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{width: 5em}</p>
<p><span class="GramE"><u>min-width</u></span></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->allows you to specify a minimum width for an element</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{min-width: auto} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{min-width: 5%}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{min-width: 5mm}</p>
<p><span class="GramE"><em>max-width</em></span><em>, height, max-height, min-height</em> are  similar as above</p>
<p><span class="GramE"><u>z-index</u></span><u> </u></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->determine which elements will appear in front of others  when they overlap</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{z-index: auto} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{z-index: 5} (using integer values)</p>
<p><span class="GramE"><u>visibility</u></span><u></u></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->lets you make an element either visible or invisible</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{visibility: inherit} (having same visibility as its  parent) (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{visibility: visible}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{visibility: hidden}</p>
<p><span class="GramE"><u>overflow</u></span></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->let you specify how a browser should display an element  where its contents do not fit into its width and height</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{overflow: visible} (default) (means browser should  increase the actual width and/or height of the element to display all of its  contents)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{overflow: scroll} (means that the browser should place  scrollbars on the element whether or not the contents of the element have  overflowed)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{overflow: auto} (means that the browser should add  scrollbars as needed to enable users to scroll horizontally and/or vertically to  show hidden contents of the element)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{overflow: hidden} (display only the contents which are  visible within the specified width and height)</p>
<p><span class="GramE"><u>float</u></span></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->this property takes an element out of the flow and place  it to the right or left of other elements in the same parent element</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{float: none} (this is default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{float: right}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{float: left}</p>
<p><span class="GramE"><u>clear</u></span></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->this property can be used in conjunction with <em>float</em> to specify whether and or where an  element allows floating alongside it</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{clear: none} (default) (element allows floating on  either side)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{clear: left} (element doesn’t allow floating on its  left)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{clear: right} (element doesn’t allow floating on its  right)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{clear: both} (element doesn’t allow floating either on  its left or its right)</p>
<p><strong>User Interface properties</strong></p>
<p><span class="GramE"><u>cursor</u></span></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->this property sets the shape of the cursor when the  mouse is hovering over a selected element</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{cursor: auto} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{cursor: crosshair}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{cursor: default}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{cursor: pointer}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{cursor: move}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{cursor: *-resize} (Indicates that the edge is to be  moved. * is replaced with N, S, E, W, NE, NW, SE, SW which are directions, for  each of the edges)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{cursor: text}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{cursor: wait}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{cursor: help}</p>
<p><span class="GramE"><u>outline</u></span></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->sets the outline around an element<span>           </span></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]--><em>outline</em> is  the shorthand for three properties <em>outline-color, outline-width </em>and <em>outline-style</em></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{outline-color: invert} (default) (indicates that the  outline will be visible regardless of background color)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{outline-color: #ffa500}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{outline-color: purple}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{outline-style: none} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{outline-style: dotted}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{outline-style: dashed}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{outline-style: solid}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{outline-style: double}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{outline-style: groove}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{outline-style: ridge}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{outline-style: inset}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{outline-style: outset}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{outline-width: thick}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{outline-width: medium} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{outline-width: thick}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{outline-width: 4px}</p>
<p><strong>Element Type properties</strong></p>
<p><span class="GramE"><u>display</u></span><u></u></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->determines how an element will be drawn on the page</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{display: none}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{display: block}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{display: inline} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{display: list-item}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{display: inline-block}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{display: run-in}</p>
<p><span class="GramE"><u>white-space</u></span></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->this property applies only to block elements, and  specifies what should be done by the browser with extraneous <span class="SpellE">whitespace</span> (tabs, extra spaces, returns and so on)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{white-space: none} (default) (<span class="SpellE"><span class="GramE">whitespace</span></span> are handled in traditional manner. Any  tabs, extraneous spacing will be ignored.)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{white-space: pre} (keeps all <span class="SpellE">whitespace</span> as it appears in the element)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{white-space: <span class="SpellE">nowrap</span>}  (contents of the element will only wrap (break to a new line) when an explicit  line break <<span class="SpellE">br</span>> is in the contents)</p>
<p><span class="GramE"><u>list-style-type</u></span></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->lets you determine what maker (or bullet point) if any  is associated with a list item</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-type: none}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-type: disc} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-type: circle}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-type: square}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-type: decimal}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-type: decimal-leading-zero}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-type: lower-roman}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-type: upper-roman}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-type: lower-alpha}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-type: upper-alpha}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-type: lower-<span class="SpellE">greek</span>}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-type: upper-<span class="SpellE">latin</span>}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-type: lower-<span class="SpellE">latin</span>}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-type: <span class="SpellE">hebrew</span>}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-type: <span class="SpellE">armenian</span>}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-type: <span class="SpellE">georgian</span>}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-type: <span class="SpellE">cjk</span>-ideographic}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-type: hiragana}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-type: katakana}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-type: hiragana-<span class="SpellE">iroha</span>}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-type: katakana-<span class="SpellE">iroha</span>}</p>
<p><span class="GramE"><u>list-style-image</u></span></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->specifies an image by URL as the maker for the list  item</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-image: none} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-image: <span class="SpellE">url</span>(image1.gif)}</p>
<p><span class="GramE"><u>list-style-position</u></span></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-position: outside} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-position: inside}</p>
<p><span class="GramE"><u>list-style</u></span></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->this property is the shorthand property that allows you  to specify and set all list style property value with one property</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style: disc <span class="SpellE">url</span>(image1.gif) inside}</p>
<p><span class="GramE"><u>table-layout</u></span></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->enables the specification of which of the approach is  taken to laying out a table</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{table-layout: auto} (default) (recalculate the row and  column and cell sizes based on their content)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{table-layout: fixed} (ignore any content and simply use  the height and width specified for rows and columns)</p>
<p><span style="font-size: 14pt">Reference:</span></p>
<p class="MsoNormal" style="text-align: justify">[1] www.westciv.com/style_master/academy/css_tutorial/introduction/index.html</p>
<p>[2] http://www.w3schools.com/css/css_font.asp</p>
<hr /><small>Copyright &copy; 2011<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small><img src="http://blog.chapagain.com.np/?ak_action=api_record_view&id=6&type=feed" alt="" />

<p><strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/pageispostback-property-a-solution-to-the-client-postback-problem/' rel='bookmark' title='Permanent Link: Page.IsPostBack property: A solution to the client postback problem'>Page.IsPostBack property: A solution to the client postback problem</a></li>
<li><a href='http://blog.chapagain.com.np/meta-tags/' rel='bookmark' title='Permanent Link: What are Meta-Tags? Full Description of Meta tags'>What are Meta-Tags? Full Description of Meta tags</a></li>
<li><a href='http://blog.chapagain.com.np/jquery-grey-out-background-and-preview-image-as-popup/' rel='bookmark' title='Permanent Link: jQuery: Grey out background and preview image as popup'>jQuery: Grey out background and preview image as popup</a></li>
<li><a href='http://blog.chapagain.com.np/how-to-get-html-source-code-of-a-website/' rel='bookmark' title='Permanent Link: How to get(view) html source code of a website'>How to get(view) html source code of a website</a></li>
<li><a href='http://blog.chapagain.com.np/how-to-setup-google-adsense-in-your-website/' rel='bookmark' title='Permanent Link: How to setup Google AdSense for your website'>How to setup Google AdSense for your website</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.chapagain.com.np/cascading-stylesheet-css-property-value-pairs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
