/*This design was orginally culled of the site www.bluerobot.com . That site has
* an 3 simple layouts for sites this is taken from the third
*layout. I've modified it a bit to suit my requirements
*
*Reuben Cornel
*/
body {
        color:#333;
        background-color:white;
        margin:20px;
        padding:0px;
        font:14pt verdana, arial, helvetica, sans-serif;
        }
h1 {
        margin:0px 0px 15px 0px;
        padding:0px;
        font-size:20pt;
        font-weight:900;
/*        color:#ccc;*/
        }
h2 {
        font:bold 14pt verdana, arial, helvetica, sans-serif;
        margin:0px 0px 5px 0px;
        padding:0px;
        }
p {
        font:12pt helvetica;/* verdana, arial, helvetica, sans-serif;*/
        margin:0px 0px 16px 0px;
        padding:0px;
        }
.Content>p {margin:0px;}
.Content>p+p {text-indent:30px;}

a {
	
        color:#09c;
        font-size:10pt;
        font-family:verdana, arial, helvetica, sans-serif;
        font-weight:600;
        text-decoration:none;
        }
a:link {

	color:#09c;}

a:visited {color:#09c;}
/*a:hover {background-color:#eee;}*/
a:hover {background-color:#b8b8bc;}  

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

#navAlpha {

        position:absolute;
/*        width:150px;*/
        font-size: 14pt;
	width: auto;
	text-align:center;
        top:130px;
        left:20px;
        border:1px dashed black;
        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;}
                
#navBeta {
        position:absolute;
        font-size: 14pt;
/*        width:190px;*/
	width:auto;
        top:130px;
        right:20px;
        border:1px dashed black;
        background-color:#eee;
        padding:10px;
        z-index:1;
/* Again, the ugly brilliant hack. */
        voice-family: "\"}\"";
        voice-family:inherit;
        width:168px;
        }
/* Again, "be nice to Opera 5". */
body>#navBeta {width:168px;}



#navCode {
        position:relative;
        font-size: 12pt;
/*        width:190px;*/
	width:auto;
        border:1px dashed black;
        background-color:#eee;
        padding:10px;

        z-index:1;
/* Again, the ugly brilliant hack. */
        voice-family: "\"}\"";
        voice-family:inherit;
/*        width:00px;*/
        }
/* Again, "be nice to Opera 5". */
/*body>#navCode {width:300px;}*/













#Header {
        margin:50px 0px 10px 0px;
        padding:17px 0px 20px 20px;
        /* For IE5/Win's benefit height = [correct height] + [top padding] +
[top and bottom border widths] */
        height:33px; /* 14px + 17px + 2px = 33px */
        border-style:solid;
        border-color:black;
        border-width:1px 0px; /* top and bottom borders: 1px; left and right
borders: 0px */
        line-height:11px;
        background-color:#eee;

/* 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;
        height:14px; /* the correct height */
        }
/* 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). */


a.info{
    position:relative; /*this is the key*/
    z-index:24; background-color:#ccc;
    color:#000;
    text-decoration:none;
}

a.info:hover{z-index:25; background-color:#ff0}

a.info span{display: none;}

a.info:hover span{ /*the span will display just on :hover state*/
    display:block;
    position:absolute;
    top:2em; left:2em; width:15em;
    border:1px solid #0cf;
    background-color:#ffe; color:#000;
    text-align: center;
    }






body>#Header {height:14px;}
