/*	WinPSP.com Cascading Style Sheets
 *
 *	Author: Keith Michaels
 *	Created: 28 October 2002
 *
 *	Menu concept (and some code) borrowed from
 *	Eric Meyer's excellent "css/edge" page:
 *	http://www.meyerweb.com/eric/css/edge/
 *
 */

@import "common.css";

div.shadow {
   position: relative;
   width: 210;
   background-color: #999;
   margin-left: 10px;
}

div.menu {
   position: relative;
   border: 1px #444 solid;
   background-color: #eee;
   top: -5px;
   left: -5px;
}

div.menu a {
   display: block;
   margin: 0;
   padding: 0.33em;
   border-bottom: 1px solid #88b;
   letter-spacing: 1px;
   text-align: right;
   font-weight: bold;
   text-decoration: none;
}

div.menu a:link {
   color: #449;
   border-right: 5px solid #449;
}

div.menu a:visited {
   color: #557;
   border-right: 5px solid #335;
}

div.menu a:hover {
   color: #fff;
   background-color: #79e;
   border-bottom: 1px solid #111;
   text-decoration: underline;
}

div.menu p.title {
   text-align: center;
   font-size: 1.6em;
   margin: 0;
   padding: 2px;
   font-weight: bold;
   background-color: #55b;
   color: #fff;
   border-top: 1px solid #335;
   border-bottom: 1px solid #557;
}

div.menu a img {
   padding-left: 6px;
}
