/*hide everthing with class .hideForPrint - name of this cssClass is read from JavascriptDependencies.cs - see HideForPrintCssClass const*/

.hideForPrint {
  display: none;
  opacity: 0;
}
/*hide header*/

#hd * {
  display: none;
}
.yui-gf .yui-u {
  width: 96% !important;
}
.pageContent {
  width: 100%;
  border-width: 0px !important;
}
.ui-widget-content {
  border-width: 0px !important;
}
input,
textarea,
select {
  border-width: 0px;
}
/*show content in hidden tabs (used eg in person detail) - override default display:none*/

.pageContent .ui-tabs .ui-tabs-hide {
  display: block !important;
}
/*This is not nice. It would be better to add .hideForPrint to ImageFileField.cs, but currently I dont know how to do it without the risk of breaking something*/

.FileImageField input,
.FileField input {
  display: none;
}
/*hide lookupfields hint*/

input.defaultText {
  display: none;
}
/*prevent breaking paragraphs accross multiple pages - works only in Opera*/

div.group {
  page-break-inside: avoid;
}
div.personComments {
  border: 0px;
}
div.personComments textarea,
div.personComments input {
  display: none;
}
#nav-content.ui-tabs-panel {
  border-width: 0px !important;
}
/*hide footer*/

#copyright {
  display: none;
}
/*hide notification container*/

#notification-container {
  display: none;
}
/*badge template editor*/

.templateList #templates tr.dataRow td.chbx.checked:before {
  content: "X";
}
.templateList .mainHeader th.filterCheckbox.chckStateChecked i:before {
  content: "X";
}
.templateList .mainHeader th.filterCheckbox.chckStateUnchecked i:before {
  content: "-";
}
