/* Rounded corners inspired by http://virtuelvis.com/gallery/css/rounded/ */

body {
  font-size: 10pt;
  margin-left: 15%;
  margin-right: 15%;
  font-family: sans-serif;
  background-image: url(images/linbit-logo-rotated-subdued.png);
  background-repeat: no-repeat;
  background-position: 10px 10px;
  background-attachment: fixed;
  /* This is needed so that the linbit logo is "behind" the links. */
  z-index: -10;
}

.legalnotice, .footnote {
  font-size: 8pt;
}

/* Notes, warnings, and cautions get a light grey background, with large rounded corners */
.note, .warning, .caution, .important, .tip { 
  background: #d3d3d3;
  border-radius: 30px;
  -moz-border-radius: 30px;
  padding: 10px;
  margin-right: 0px !important;
}

/* programlistings and screen dumps get a light grey background, with small rounded corners. */
.screen, .programlisting {
  background: #f7f5f2;
  border-radius: 15px;
  -moz-border-radius: 15px;
  padding: 5px;
  margin-left: 2px;
  padding-left: 2px;
  border-left: 1px solid #ff6600;
}

/* Captions get a small top margin so they are not too close to the image. */
.caption {
  margin-top: 10px;
  font-size: 8pt;
}

/* Tables get thin borders and headers with a light grey background */
.table table, .informaltable table {
  border-collapse: collapse;
}

.table table th, .informaltable table th { 
  background-color: #d3d3d3;
  border: 1px solid grey;
}

.table table td, .informaltable table td { 
  border: 1px solid grey;
}


.guimenu, .guimenuitem, .guibutton, .guilabel {
  font-weight: bold;
  background-color: #d6d3ce;
}

/* For links, we use LINBIT orange and grey */
a:link { 
  font-weight: bold;
  color: #fa8522;
}
a:hover { 
  font-weight: bold;
  color: grey; 
}
a:visited { 
  color: grey; 
}

.dontreport {
	max-width: 40em;
	margin: 0 auto;
}
