/* end import/hide */
/* ------------------------------------------------------------

    Title:		Desktop Background
	Info:		This stylesheet is built for my desktop background, which I released to the public on 2007/10/14. Look & Learn. It's based upon my default stylesheet, so there is more code than necessary.
    Author:		nicmyers@w3designs.net
    Created:	2007/08/09
	Updated:	2007/10/14
	Version:	1.5

Table of Contents
	* Reset CSS: Reset margins & padding to remove cross browser consistancy problems. Based on global whitespace reset(http://leftjustified.net) undohtml.css (http://tantek.com) and the Yahoo YUI.
	* Global Styles: body, paragraphs, basic link.
	* Navigation
	* Typography
	* Forms
	* Hacks, Etc

------------------------------------------------------------ */

/* =Reset CSS
------------------------------------------------------------ */
body,html,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td { margin: 0; padding: 0; }
address,caption,cite,code,dfn,em,strong,th,var{ font-style: normal; font-weight: normal; }
h1,h2,h3,h4,h5,h6,pre,code { font-size:100%; font-weight:normal; }
img, fieldset, a img,:link img,:visited img { border: 0; }
ul,ol, dl { list-style: none; }

/* =Global Styles
------------------------------------------------------------ */
html, body {
   height: 100%;
	}
body {
	margin: 0;
	padding: 0;
	font-family: Helvetica, sans-serif;
	font-size: small;
	color: #747474;
	background: #000 url(../img/bg.jpg) no-repeat top left; /* Change this if you want to switch backgrounds */
	}
/* links */
a:link, a:visited {
	text-decoration: none;
	}
a:hover {
	text-decoration: underline;
	}
	
/* =Navigation
------------------------------------------------------------ */
/* This controls the style of the links, modify as you see fit. */
#links {
	margin: 20px 0 0 80px;
	padding: 0;
	width:205px;
	font-family: Helvetica, sans-serif;
	font-weight: bold;
	font-size: 95%;
	}
#links ul {
	list-style-type: none;
	width: 205px;
	} 
#links li {
	border-bottom: 1px dotted #141414;
	border-width: 1px 0;
	margin: 0px 0;
	}
#links li a { 
	color: #585858;
	display: block;
	font: bold 90% Helvetica, sans-serif;
	padding: 5px;
	text-decoration: none;
	}
 * html #links li a {  /* make hover effect work in IE */
	width: 195px;
	}
#links li a:hover {
	background: #141414;
	color: #ffffff;
	}
#links a em { 
	color: #333;
	display: block;
	font: normal 85% Verdana, Helvetica, sans-serif;
	line-height: 125%; 
	}
#links a span {
	color: #125F15;
	font: normal 70% Verdana, Helvetica, sans-serif;
	line-height: 150%;
	}
	
/* =Typography
------------------------------------------------------------ */
strong { font-weight:bold; }
em { font-style:italic; }
i { display:none; }
p {	margin: 2px 0 2px 5px;}

/* =Forms
------------------------------------------------------------ */
input {
	background: #585858 url(../img/search.gif) 0 0 no-repeat;
	border: 1px solid #141414;
	margin: 2px 5px 5px 5px;
	width:180px;
	padding: 0 0 0 15px;
	}

/* =Hacks, Float Clearing, & Special
------------------------------------------------------------ */
a img {
	border: none;
	}

/* ------------------------------------------------------------
    Title:		IE Bug Smashing Stylesheet
------------------------------------------------------------ */
/* Font-size keyword fix for ie5/win */
body {
	font-size: x-small; /* ie5/win */
  	voice-family: "\"}\""; 
  	voice-family: inherit;
  	font-size: small;
	}       
html>body { /* be nice to Opera */
	font-size: small;
	}

