/*! Licensed Materials - Property of IBM.
    (c) Copyright IBM Corporation 2001, 2009.  All Rights Reserved.
    U.S. Government Users Restricted Rights:  Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
This CSS was built on April 30 2010. (version: OneUI-2.1.0_149_20100430-1512)
these are the styles for buttons
companion files: buttons.css / buttonsTheme.css
companion files: buttonsRTL.css / buttonsThemeRTL.css*/
/*** B U T T O N S ***/

/*common button styles*/
/*all buttons*/
.lotusBtn a, .lotusBtn a:visited, input.lotusBtn, button.lotusBtn, input.lotusFormButton, button.lotusFormButton, .lotusBtnImg {
  background-color:#f1f1f1;
  background-image:-moz-linear-gradient(top, #ffffff 0%, #ebebeb 100%);
  background-image:-webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#ebebeb));
  background-position:top left;
  color:#000;
}

.lotusBtn, .lotusFormButton, .lotusBtnImg {
  font-weight:bold;
  text-align:center !important;
  border:1px solid #aaa;
}

.lotusBtn a, input.lotusBtn, button.lotusBtn, .lotusFormButton {
  font-size:.9em;
  line-height:1.7em;
}

/*all buttons created using an input or button tag*/
input.lotusBtn, button.lotusBtn, input.lotusFormButton, button.lotusFormButton {
  padding:2px 7px 3px 7px;
  cursor:pointer
}

.lotusui_ie button.lotusBtn, .lotusui_ie input.lotusBtn, .lotusui_ie .lotusFormButton {
  padding:0 1px 1px 1px
}

/*all buttons created from a link*/
.lotusBtn a, .lotusBtn a:visited {
  display:block;
  text-decoration:none;
  border-width:0 1px 1px 1px;
  border-style:solid;
  border-color:#dedede;
} /*span buttons have an inside border*/

span.lotusBtn a:hover, span.lotusBtn a:focus, span.lotusBtn a:active {
  text-decoration:none;
} /*gets rid of underline on button hover*/

/*image buttons - an imput type=image wrapped with a span or an img wrapped with a link*/
.lotusBtnImg {
  display:-moz-inline-box;
  display:inline-block;
  padding:0;
  vertical-align:middle;
  line-height:1em
} /*default padding, which makes a 16 pixel icon if the image uses the default image size*/

.lotusBtnImg img, .lotusBtnImg input {
  margin:0;
  padding:0;
  width:16px;
  height:16px;
  background-repeat:no-repeat;
  vertical-align:middle/*fixes IE6*/
} /*default margin, padding and size*/

.lotusImagesOff .lotusBtnImg img, .lotusImagesOff .lotusBtnImg input {
  display:none
}

/*specific button styles*/
/*default buttons*/
/*put the lotusBtn class on either a span around a link or on an input button*/
span.lotusBtn {
  margin-right:5px;
  display:-moz-inline-box/*for FF2*/;
  display:inline-block;
}

span.lotusBtn a {
  padding:1px 10px 1px 10px;
  white-space:nowrap;
}

input.lotusBtn, button.lotusBtn {
  margin-right:5px;
}

.lotusui_ie6 span.lotusBtn img {
  margin: .6em 0 .6em 0
} /*need this for button with drop-down arrow to look okay in IE6*/

/*form buttons*/
input.lotusFormButton, button.lotusFormButton {
  margin-right:5px;
  font-size:.9em
}

.lotusDashboardSearch input.lotusFormButton {
  margin-top:20px;
  font-size:.9em
}

/*disabled buttons*/
.lotusBtnDisabled, .lotusBtnDisabled a {
  cursor:default !important
}

/*for high contrast mode*/
.lotusImagesOff .lotusBtnDisabled {
  opacity:.5;
} 

.lotusui_ie .lotusImagesOff .lotusBtnDisabled {
  filter:alpha(opacity=50);
} 

/*miscellaneous*/
.lotusBtnContainer {
  margin-bottom:0;
  padding-bottom:0;
  white-space:nowrap;
} /*put this around a bunch of "link" buttons*/

.lotusBtnDivider {
  border-bottom:1px solid #e0e0e0;
  padding-bottom:5px
} /*add this as an additional class when you need a bottom divider for the buttons*/

/*generic/common buttons*/
/*put the style on the wrapper a or span along with the lotusBtnImg class*/
.lotusAdd {
  font-size:1.5em;
}

.lotusAdd img {
  background-image:url(../../images/lotusSprite-8bit.png);
  background-position:0 -2095px
}

.lotusClose img {
  background-image:url(../../images/lotusSprite-8bit.png);
  background-position:0 -2263px
}

/*hover states*/
.lotusBtn:hover, .lotusBtn:focus, .lotusBtn:active {
  border-color:#666;
}

.lotusBtnDisabled {
  border-color:#ccc !important;
} /*we don't want disabled button border color to change on hover*/

.lotusBtnDisabled a, .lotusBtnDisabled a:visited, input.lotusBtnDisabled, button.lotusBtnDisabled {
  color:#b0b0b0 !important;
  background-color:#eee;
}






/***********************************************************/