/* =============== id ==================================================*/

#container
{
    margin-left: 90px;
    width: 800px;
    z-index: 0; 
}


#banner
{
    width: 800px;  height: 120px;
}

#banner>img
{
    width: 800px;  height: 120px;
}
 
#menubar
{
    margin-top: -5px;
    font:  0.8em Verdana, Arial, Helvetica, sans-serif;  
}

#thin_header
{
    background-color:#FFE7C6; 
    height: 2.5em; 
    padding: .3em 0em; 
    text-align: center;
}
 
#nav
{
	list-style:none;
	font-weight:bold;
	margin-bottom:10px;
	float:left;
	width:100%;
}

#nav li
{
	float:left;
	margin-right:10px;
	position:relative;
} 

#nav a
{
	display:block;
	padding:5px;
	color: #FF9966;
	background: #FFEECC;
	text-decoration:none;
}  

#nav a:hover
{
	color: blue;
}
   
/*--- DROPDOWN ---*/ 

#nav ul
{
  padding:0;
	background: #FFF;   /* don't show text in between menu choices */
	list-style:none;
	position:absolute;
	left:-9999px; /* Hide off-screen when not needed */
}

#nav ul li
{
padding: 0; margin: 0;
border-top: 2px solid white;
float:none;
}


#nav ul a
{
	white-space:nowrap; /* Stop text wrapping and creating multi-line dropdown items */
}

#nav li:hover ul
{ /* Display the dropdown on hover */
    left:0; /* Bring back on-screen when needed */
    position: absolute;
    z-index: 100;  
}

#nav li:hover a
{ /* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
}

#nav>li:hover>a
{    /* this is just for the top link */
	background: #AAAAFF;
	color: blue;
}

#nav li:hover ul a
{ /* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
	text-decoration:none;
}

#nav li:hover ul li a:hover
{ /* Here we define the most explicit hover states--what happens when you hover each individual link. */
	background: #AAAAFF;
}
 
#content
{
    width:720px;
    background-color: #FFFFFF;
    padding: 20px 40px;
}
 
/* =============== class ==================================================*/

.author
{
    width: 200px;
    float:right; 
    margin: 10px;
    padding: 10px;
    border: 1px solid black;
}

.aquote
{
    font: italic small 1em "Times New Roman", Times, Georgia serif;
    font-style:italic;
    margin: 10px 40px;
}

.right
{
    text-align: right;
} 

.left
{
    text-align: left;
} 

.title 
{
    color: black; 
    font: bold 1em Verdana, Arial, Helvetica, sans-serif;
    text-align: center
}

.col1
{
    margin-top: 40px;
    width: 150px;
    float: left;
}

.col2
{
    width: 300px;
    float: left;
}

.col3
{
    margin-top: 40px;
    margin-left: 30px;
    width: 150px;
    float: left;
}

.center
{
    margin-left: auto;
    margin-right: auto;
    width: auto;
}

.floatleft
{
    float: left;
}

.float_left > img
{
    float:left;
}

.float_right > img
{
    float: right;
}
 

.holymother
{
    position: absolute;
    padding: 5px;
    border: 1px dashed gray;
    top: 65;
    left: 260px; /*position where enlarged image should offset horizontally */
}

.picture_list_list img
{
    height: 160px;
    width: 120px; 
    float: left; 
    margin-right: 30px;
}


.picture_list_list ul li
{
    list-style-type: none; 
    font-weight: bold
}


.picture_list_list ul li ul li
{
    list-style-type: circle; 
    font-weight: normal;
    margin-left: 130px; 
}

/* =============== element ==================================================*/

body
{
    background-color: #FF9966;
}


h1, h2, h3 
{
    color: #FF6600; 
    font: bold 1em Verdana, Arial, Helvetica, sans-serif;
}
  
h2
{
    font-size: .8em;
}
  
h3
{
    font-size: .7em;
}

a {text-decoration:none;}
a:link {color: blue;} 
a:visited {color: purple;}
a:hover {color: red; background: silver;}

p
{
    font: .8em Verdana, Arial, Helvetica, sans-serif;
    line-height: 1.4em;
}


/*---------- bubble tooltip -----------*/
a.tt{
    position:relative;
    z-index:24;
	font-weight:bold;
    text-decoration:none;
}
a.tt span{ display: none; }

/*background:; ie hack, something must be changed in a for ie to execute it*/
a.tt:hover{ z-index:25;}
a.tt:hover span.tooltip{
    display:block;
    position:absolute;
    top:10px; left: 20px;
	padding: 15px 0 0 0;
	width:200px;
	color: red;
    text-align: center;
	filter: alpha(opacity:90);
	KHTMLOpacity: 0.90;
	MozOpacity: 0.90;
	opacity: 0.90;
}
a.tt:hover span.top{
	display: block;
	padding: 30px 8px 0;
    background: url(bubble.gif) no-repeat top;
}
a.tt:hover span.middle{ /* different middle bg for stretch */
	display: block;
	padding: 0 8px; 
	background: url(bubble_filler.gif) repeat bottom; 
}
a.tt:hover span.bottom{
	display: block;
	padding:3px 8px 10px;
	color: #548912;
    background: url(bubble.gif) no-repeat bottom;
}

