/*
Example:

<LINK href="/toolbar.css" type="text/css" rel="stylesheet" />

<DIV class="Toolbar Blue">
<DIV class="ToolbarPanel">
Actions:  <A href="about:blank">Walk</A> <A href="about:blank">Run</A> <A href="about:blank">Jump</A>
</DIV>
</DIV>
*/



*.Toolbar {
	display: block;

	font-family: "Tahoma", sans-serif;
	font-size: medium;

}
/* The relative positioning ensures that the contents are still readable in Internet Explorer with font DPI != 96 and ClearType. */
*.Toolbar DIV.ToolbarPanel {display: block;  position: relative;  margin: 0.2em;  background-color: transparent;}
*.Toolbar A:link, *.Toolbar A:visited {display: -moz-inline-box;  display: inline-block;  vertical-align: middle;  padding: 0.4em ;  background-color: transparent;  color: #FFFFFF;  text-align: center;  text-decoration: none;}
*.Toolbar A:hover, *.Toolbar A:focus, *.Toolbar A:active { background-color: transparent;  color: #FFFFFF;  text-decoration: underline;}

/* Firefox remembers how to display a table. */
TABLE.Toolbar {display: table;}
/* Although relative positioning takes effect on table rows, it interferes with block links. */
TABLE.Toolbar TBODY.ToolbarPanel TH, TABLE.Toolbar THEAD.ToolbarPanel TH, TABLE.Toolbar TFOOT.ToolbarPanel TH,
	TABLE.Toolbar TBODY.ToolbarPanel TD, TABLE.Toolbar THEAD.ToolbarPanel TD, TABLE.Toolbar TFOOT.ToolbarPanel TD {position: relative;}
TABLE.Toolbar TR A:link, TABLE.Toolbar TR A:visited {display: block;}



/* Standard. */
*.Toolbar {border-top: 0.0625em  #EAE8E4;  border-bottom: 0.0625em  #DBD8D1;   color: #FFFFFF; }
*.Toolbar A:link, *.Toolbar A:visited { background-color: transparent;  color: #FFFFF;}
*.Toolbar A:hover, *.Toolbar A:focus, *.Toolbar A:active {background-color: #FFFFFF;  color: #003366;}

