/*
################################################################################
## styles
################################################################################
*/

/* ### style - paragraph bodytext ### */
p.bodytext {

}

/* ### style - paragraph minimal ### */
p.minimal,
p.minimal * {
  /* css cellspacing="0" equivalent, http://www.w3.org/TR/CSS2/tables.html */
  /* http://stackoverflow.com/questions/430485/ie-css-bug-table-border-showing-div-with-visibility-hidden-position-absolute */
  margin: 0px;
  padding: 0px;
  border: 0px none white;
}

/* ### style - paragraph legal ### */
p.legal {
  margin-top: 0px;
  vertical-align: top;
}

/* ### style - paragraph in menu item ### */
p.menu-item {
  margin: 0px;
  padding: 0em 0ex 0em 3ex;
  font-size: 100%;
  font-weight: 600;
  line-height: 1.7em; /* 2em; */
  white-space: nowrap;
  background-color: transparent; /* #CCDDFF; */
  background-image: url(../media/images/bullet_arrow);
  background-repeat: no-repeat;
  background-position: 0ex 0.5em;
  /* border-width: 0px 0px 1px 1px; */
  border-style: solid;
  /* border-color: #666666; */ /* #9e5010; */
  border-color: #BBBBBB #DDDDDD #666666 #666666;
  border-width: 1px;
  color: #444444;
}

/* ### style - inline-image ### */

img.inline,
div.inline-image {
  display: inline;
  float: right;
  clear: right;
  /* no bottom margin and padding needed since the image fades into the background color */
  margin: 0.5em 0.5ex 0em 0.5ex;
  padding: 0.5em 0.5ex 0em 0.5ex;
  background-color: white;
}

/* ### style - table minimal ### */

table.minimal,
table.minimal * {
  /* css cellspacing="0" equivalent, http://www.w3.org/TR/CSS2/tables.html */
  /* http://stackoverflow.com/questions/430485/ie-css-bug-table-border-showing-div-with-visibility-hidden-position-absolute */
  border-collapse: collapse;
  margin: 0px;
  padding: 0px;
  border: 0px none white;
  background-color: transparent;
}

/* ### style - table style-1 (http://www.w3.org/TR/CSS21/tables.html) ### */

table.style-1,
table.contenttable {
  margin: 1em 0ex;
  padding: 0ex;
  width: 98.5%;
  font-size: 100%;
  border-width: 2px;
  border-style: solid;
  border-color: #002D8F;
}

table.style-1,
table.contenttable tr {
  /* separate each row with a soft dashed line */
  border-bottom: 1px dashed silver;
}

table.style-1,
table.contenttable th {
  white-space: nowrap;
  background-color: transparent /* #ebefff */;
  border-right: 1px solid #002D8F;
  border-bottom: 1px solid #002D8F;
}

table.style-1,
table.contenttable td {
  /* width: 100%; */
  white-space: normal;
  vertical-align: top;  
  border-right: 1px solid #CCDDFF;
}

/*
table.style-1,
table.contenttable td:first-child {
  width: auto;
  white-space: nowrap;
  background-color: #002D8F;
  color: white;
  font-weight: bolder;
  border-right: 1px solid #002D8F;
}
*/

/* ### style - unordered lists (http://www.w3.org/TR/CSS21/generate.html#lists) ### */

ul.level-1,
ul.level-2,
ul.level-3,
ul.level-4 {
  list-style-image: url(../media/images/bullet_disc);
}

ul.level-1 {
  margin-left: 0ex;
}

ul.level-2 {
  margin-left: 2ex;
}

ul.level-3 {
  margin-left: 4ex;
}

ul.level-4 {
  margin-left: 6ex;
}

/* ### style - ordered lists (http://www.w3.org/TR/CSS21/generate.html#lists) ### */

ol.level-1 {
  margin-left: 3ex;
}

ol.level-2 {
  margin-left: 6ex;
}

ol.level-3 {
  list-style-type: lower-latin;
  margin-left: 9ex;
}

ol.level-4 {
  margin-left: 12ex;
  list-style-type: lower-roman
}



