/*! 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 lists
companion files: lists.css / listsTheme.css
companion files: listsRTL.css / listsThemeRTL.css*/
/*** L I S T S ***/ 
/*use in conjuction with sections if you want a more complex list*/

ul.lotusList {
  clear:both;
  overflow:hidden;
  margin:0;
  padding:0;
  list-style-type:none
}

.lotusui ul.lotusMeta {
  font-size:1em
} /*lists that have meta text use normal text size but meta color*/

ul.lotusList ul {
  list-style-type:none
} /*makes sure all nested lists don't have bullets, even though we don't typically nest these straight lists*/

ul.lotusList li {
  margin:1px 0;
  padding:3px 2px;
  clear:both;
  zoom:1
}

ul.lotusEditable li {
  text-align:right;
  overflow:hidden
} /*use this class in combination with list class - allows you to put a delete button on a list item*/

ul.lotusList li.lotusSelected {
  background-color:#eee
}

ul.lotusList li.lotusSelected a {
  text-decoration:none;
  color:#000;
}

ul.lotusList img.lotusLeft {
  margin-right:3px
}

ul.lotusList div p {
  margin-top:3px;
  margin-bottom:0
} /*second line of data*/

.lotusImagesOff .lotusEditable .lotusDelete img {
  display:none
}

/*styles for a definitions list*/
dl.lotusList dt {
  padding:3px 10px;
  margin:10px 0 0 0;
  font-size:1.1em
}

dl.lotusList dd {
  margin:0;
  padding:5px 10px
}






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