/*
 * I wish I was a digital artist, but, in fact, I'm not.
 *
 * Great designers create, poor designers blatantly copy, so/so designers, well, 
 * "cite". Up to you to decide in which category I belong :-)
 *
 * Anyway, citations or blatant steals, here are the site that influenced me:
 *
 *  1) http://www.stupidfool.org/ -> an *awesome* example of how a web page
 *     should be designed. I generally like Movable Type blogs because they
 *     are used by people who care about readability of their text. Using
 *     the correct fonts, giving the proper "air" (read: space) between
 *     paragraphs and the like. And this comes straight fromt the people who
 *     designed the tool. I seriously thought about using it, but I'm too
 *     "hacker inside" and proud of my work on Cocoon to use another publishing
 *     system so I wrote Linotype.
 * 
 *  2) http://www.x180.org/ -> Dundan's blog. another example of readability
 *     clean design and well balanced space. To be honest, not much is
 *     really 'cited' from his stylesheets or web design, if not the 
 *     general philosophy of 'cut the crap' which I find refreshing in
 *     today's web where screen space feels like land to conquer pixel by pixel.
 *
 *  3) http://daringfireball.net/ -> hypertext has great potentials, but 
 *     most bloggers don't understand how visually aggressive (and distracting)
 *     those scattered underlined blue single words can be. Some try to lower
 *     this visual and cognitive aggression by removing the visual semantics
 *     of color keying or the use of underline and move onto a mouseover.
 *     One step up and two steps back: mouseover removes the hyperlink
 *     information from the visual semantics realms into a mixted bidimensional
 *     space of vision associated to motion, failing completely to provide a 
 *     'block overview' that is normally done when you are "eye scanning"
 *     a block of text to see if something interests you or not. This site
 *     concentrates a lot in making hyperlinks readable, coherent and meaningful
 *     without attacking your ability to read the text sequentially.
 *
 *  So, as you see, a lot of effort has been put into this stylesheet by 
 *  many different people. If you use it, please, at least cite us in the 
 *  stylesheet comments :-)
 *
 *  Stefano.
 *
 */
 
/* ----------------------------- Global Definitions -------------------- */

body {
	color: #333;
	background-color: white;
	margin:20px;
	padding:0px;
	font:11px verdana, arial, helvetica, sans-serif;
}

#sidebar {
	/*background-color: #FFFFF0;*/
	position:absolute;
	width:150px;
	top:80px;
	left:20px;
	/*border:1px dashed #ccc;*/
	background-color:#eee;
	padding:10px;
	z-index:2;

/* Here is the ugly brilliant hack that protects IE5/Win from its own stupidity. 
Thanks to Tantek Celik for the hack and to Eric Costello for publicizing it. 
IE5/Win incorrectly parses the "\"}"" value, prematurely closing the style 
declaration. The incorrect IE5/Win value is above, while the correct value is 
below. See http://glish.com/css/hacks.asp for details. */
	voice-family: "\"}\"";
	voice-family:inherit;
	width:128px;
}/* I've heard this called the "be nice to Opera 5" rule. Basically, it feeds correct 
length values to user agents that exhibit the parsing error exploited above yet get 
the CSS box model right and understand the CSS2 parent-child selector. ALWAYS include
a "be nice to Opera 5" rule every time you use the Tantek Celik hack (above). */
body>#navAlpha {width:128px;}
	


#article {
  position: relative;
  width: 800px;
  height: auto;
  margin: 0px 20px 20px 170px;
  border:1px #ccc;
  padding-bottom: 100px;
}

#notes {
  position:relative; /* Position is declared "relative" to gain control of stacking order (z-index). */
  width:auto;
  min-width:120px;
  margin:0px 350px 20px 0px;
 /* border:1px solid #eee;*/
  background-color:white;
  padding:10px;
  z-index:3; /* This allows the content to overlap the right menu in narrow windows in good browsers. */
  
}

#notes p.title { 
  font-size: 16px;
  color: #700000;
}

#notes p.author {
  font-size: 12px;
  color: #703800;
}

#notes a.web {
  color: #703800;
}

#notes a.local {
  color: #703800;
}

#comments { 
  border-top: 1px dashed #700000;
}

#links {
  position:absolute;
  top: 5px;
  right:20px;
  /*	border:1px dashed #ccc;*/
  border-left:1px dashed #700000;
/*  background-color:#eee;*/
  padding:10px;
  padding-left: 20px;
  z-index:1;
  /* Again, the ugly brilliant hack. */
  voice-family: "\"}\"";
voice-family:inherit;
width:280px;
}
/* Again, "be nice to Opera 5". */
body>#navBeta {width:280px;}

#links p { 
  line-height: 18px;
}

h1 {
  margin:0px 0px 15px 170px;
  padding:0px;
  font-size:28px;
  font-weight:900;
  color:#ccc;
}
h2 {
  font:bold;
  font-family: verdana, arial, helvetica, sans-serif;
  font-size: 12px;
  margin:5px 5px 1px 0px;
  color: #700000;
}
p {
  font:11px/20px verdana, arial, helvetica, sans-serif;
  margin:0px 0px 10px 0px;
  padding:4px;
  color: #333;
}
.Content>p {margin:0px;}
.Content>p+p {text-indent:30px;}

i { 
  font-size: 11px;
  color: #703800;
}

a {
  color:#700000;
  font-size:11px;
  font-family:verdana, arial, helvetica, sans-serif;
  font-weight:600;
  text-decoration:none;
}
a:link {color:#700000;}
a:hover {background-color:#eee;}
  
#footer { 
  font-size: 10px;
  text-align: center;
  margin: 200px 20px 10px 20px;
}

td { 
  font-size: 11px;
  border-top: 1px dashed #700000;
  border-left: 1px dashed #700000;
  padding: 5px 5px 5px 5px;
}

tr.oss{ 
  color: black;
}

h3 { 
  margin: 5px 0px 5px 5px;
}

table { 
  border-bottom: 1px dashed #700000;
  border-right: 1px dashed #700000;
/*  border-top: 1px dashed #700000;
  border-left: 1px dashed #700000;*/
}