/*==================================================*
 $Id: buttonstyle.css,v 1.1 2002/11/26 02:37:45 pat Exp pat $
 Copyright 2002 Patrick Fitzgerald, pat@barelyfitz.com
 For more documentation and examples, visit:
 http://www.barelyfitz.com/webdesign/articles/list-menu-buttons/

 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation; either version 2 of the License, or
 (at your option) any later version.

 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.

 You should have received a copy of the GNU General Public License
 along with this program; if not, write to the Free Software
 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *==================================================*/

/*
 * Horizontal Button Style
 */

.hbutton {
 font-size: 10px;
 line-height: 24px;
 margin: 0;
 border: 0;
 padding: 0;
}
.hbutton UL,
.hbutton LI {
 display: inline;
 list-style-type: none;
 margin: 0;
 border: 0;
 padding: 0;
}
.hbutton A {
 margin: 0;
 padding: 2px;
 color: ligthblue;
 text-decoration: none;
 font-weight: normal;
 font-size: 10px;
}
.hbutton A:link,
.hbutton A:visited {
 border: 1px outset;
 background: #dddddd;
 color: ligthblue;
}
.hbutton A:hover {
 background: #eeeeee;
 color: ligthblue;
 text-decoration: none;
}
.hbutton A:active {
 border: 1px inset;
 background-color: #cccccc;
}

/*
 * Vertical Button Style
 */

.vbutton {
 margin: 0;
 border: 0;
 padding: 0;
 font-size:middle;
/*  font-size: 10px;*/
 line-height: normal;
}
.vbutton UL,
.vbutton LI {
 display: inline;
 margin: 0;
 border: 0;
 padding: 0;
}
.vbutton A {
 display: block;
 white-space: normal;
# width: 190px;
 width: auto;
 padding: 0;
 color: ligthblue;
 text-decoration: none;
 font-weight: normal;
/* font-size: 10px; */
 font-size:middle;
 
}
.vbutton A:link,
.vbutton A:visited {
 border: 1px outset;
 background: #EBEB30;
 color: ligthblue;
}

.vbutton A:hover {
 background: #aBaB30;
 color: red;
 font-weight:bold
 text-decoration: none;
}
.vbutton A:active {
 border: 1px inset;
 background-color: #000000;
}

/* Nested list items */

.vbutton UL A:link,
.vbutton UL A:visited {
 background: #cccccc;
 color: ligthblue;
 border: 1px solid ligthblue;
 border-top: 0;
 margin-left: 4px;
 margin-right: 0;
 width: 116px;
}
.vbutton UL A:hover {
 background: white;
 color: ligthblue;
 text-decoration: none;
}
.vbutton UL A:active {
 background: #bbbbbb;
 border: 1px inset;
}
