<dtml-comment>
CSS for CPSDocument (for layouts and for specific documents)
$Id: document.css.dtml 48681 2006-08-31 12:42:00Z ogrisel $
</dtml-comment>

/* DTML instructions to set caching headers.
<dtml-let last_modified="_.DateTime()-14" expires="_.DateTime()+1">
<dtml-call "REQUEST.RESPONSE.setHeader('Content-Type', 'text/css')">
<dtml-call "REQUEST.RESPONSE.setHeader('Last-Modified', last_modified.toZone('GMT').rfc822())">
<dtml-call "REQUEST.RESPONSE.setHeader('Cache-Control', 'max-age=36000, must-revalidate')">
<dtml-call "REQUEST.RESPONSE.setHeader('Expires', expires.toZone('GMT').rfc822())" >
</dtml-let>

<dtml-with stylesheet_properties>
*/

<dtml-var schemas.css>

<dtml-comment>
The "documentFields" class is used to group together the fields pertaining to a
document. This is a stricter grouping scheme than the one defined by the
"group" class.
</dtml-comment>
.documentFields {
  border: <dtml-var groupBorder>;
  margin: 0em 0 1em 0;
  padding: 0em;
}

table.layoutDefault {
  width: 100%;
  border-spacing: 0;
}

table.layoutDefault td {
  padding-left: 0;
  padding-right: 0;
}


<dtml-comment>
Class for positioning document elements.
</dtml-comment>

.dright {
  float: right;
  text-align: right;
  padding-left: 1em;
  padding-bottom: 1em;
}

.dleft {
  float: left;
  padding-right: 1em;
  padding-bottom: 1em;
}

.dcenter {
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  padding-bottom: 1em;
}

.dborderEdit{
  border: 1px solid #000000;
  padding: 10px;
  background-color: #eaeaea;
}

fieldset.widget {
  border: none;
  margin: 0;
  padding: 0;
  padding-bottom: 0.5em;
}

.ddefault {
  padding-bottom: 1em;
}


div.dflush {
  clear: both;
}

div.dcolleft {
  width: 48%;
  padding-bottom: 1em;
}

div.dcolright {
  clear: right;
  float: right;
  width: 48%;
  padding-bottom: 1em;
}


div.dtitle, div.dtitle2, div.dtitle3, div.dtitle4, div.dtitle5, div.dtitle6 {
  color: <dtml-var headingFontColor>;
  background-color: transparent;
  font: <dtml-var headingFont>;
  margin: 0;
  padding-top: 0.5em;
}

div.dtitle {
  font-size: <dtml-var headingSize1>;
  border-bottom: 1px solid <dtml-var mainTabBorderColor>;
  margin-bottom: 0.5em;
}
div.dtitle2 {
  font-size: <dtml-var headingSize2>;
  border-bottom: 1px solid <dtml-var mainTabBorderColor>;
  margin-bottom: 0.5em;
}
div.dtitle3 {
  font-size: <dtml-var headingSize3>;
  border-bottom: 1px solid <dtml-var mainTabBorderColor>;
}
div.dtitle4 {
  font-size: <dtml-var headingSize4>;
  border-bottom: 1px solid <dtml-var mainTabBorderColor>;
  font-weight: bold;
}
div.dtitle5 {
  font-size: <dtml-var headingSize5>;
  border-bottom: 1px solid <dtml-var mainTabBorderColor>;
  font-weight: bold;
}
div.dtitle6 {
  font-size: <dtml-var headingSize6>;
  border-bottom: 1px solid <dtml-var mainTabBorderColor>;
  font-weight: bold;
}

div.dcontent {
  font-size: 100%;
}
div.dcontent p {
  text-align: left;
}

div.ddescription {
  font-style: italic;
  font-size: 100%;
}

.dlabel {
  font-weight: bold;
  font-size: 100%;
}

.dbold {
  font-weight: bold;
}

.publicationDate {
  color: #777777;
  font-weight: bold;
  font-size: <dtml-var headingSize5>;
}

.photoWidget {
  text-align: center;
  padding: 0.5em;
}

.photoWidget p {
  display: inline;
  text-align: left;
}

.photoWidget span {
  vertical-align: top;
  display: table-cell;
  display: inline-table;
  display: inline-block;
  font-size: 95%;
}

#ajax_psm {
  background: #ffac0b;
  color: white;
  position: absolute;
  z-index:500;
  padding: 8px;
  border: 1px solid black;
}

hr.faqBorder {
  border:#999999 1px dotted
}

div.faqResponse {
  padding-top:1em;
}

.faqResponseElement {
  padding-left: 0px! important;
}

/* hack for IE6 bugs */
/* Hides from IE5-mac \*/
* html div.dleft {height: 1%}
* html .ddefault {height: 1%}
* html div.dcolleft {height: 1%}
* html div.dcolright {height: 1%}
/* End hide from IE-mac */

/*
</dtml-with>
*/