/*
 eBook call out styling
*/
DIV.callout DIV.tip, DIV.callout DIV.protip, DIV.callout DIV.note, DIV.callout DIV.important {
	background-repeat: no-repeat;
	min-width: 80px;
	min-height: 70px;
	float: left;
}

DIV.callout {
	margin: 10px 20px;
	border-top: 1px solid #ff4305;
	border-bottom: 1px solid #ff4305;
	background-color: #fff3d1;
	min-height: 70px;
}

DIV.callout DIV.tip {
	background-image: url(../images/ps/bubble-tip.png);
}


DIV.callout DIV.protip {
	background-image: url(../images/ps/bubble-protip.png);
}

DIV.callout DIV.note {
	background-image: url(../images/ps/bubble-note.png);
}

DIV.callout DIV.important {
	background-image: url(../images/ps/bubble-important.png);
}

DIV.listing img, DIV.callout img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

DIV.listing p, DIV.callout p {
	margin: 6pt;
}

/*
Inline PowerShell code
*/
DIV.listing {
	margin: 10px 20px;
}

DIV.pscode {
  white-space: pre;
	margin: 10px 20px;
  padding: 0pt;
	font-family: "Courier New", monospace, "Lucida Console", Courier;
}

DIV.psoutput {
  white-space: pre;
	margin: 10px 20px;
  padding: 8px 12px;
	font-family: "Courier New", monospace, "Lucida Console", Courier;
  font-style: italic; 
  color: #333333; 
}

DIV.pserror {
  white-space: pre;
	margin: 10px 20px;
  padding: 8px 12px;
	font-family: "Courier New", monospace, "Lucida Console", Courier;
  font-style: italic; 
  font-weight: bold;
  color: #ff0000; 
}

DIV.pscode SPAN.var { color: #800080; }
DIV.pscode SPAN.comment { color: #008000; }
DIV.pscode SPAN.datatype { color: #0000ff; }
DIV.pscode SPAN.string { color: #800000; }
DIV.pscode SPAN.herestring { color: #0000ff; }
DIV.pscode SPAN.keyword { color: #0000ff; }
DIV.pscode SPAN.optional { color: #0000ff; }
DIV.pscode SPAN.verbnoun { color: #5f9ea0; }
DIV.pscode SPAN.namespace { color: #8b4513; }
DIV.pscode SPAN.method { color: #8b4513; }
DIV.pscode SPAN.modifier { color: #5f9ea0; }
DIV.pscode SPAN.op { color: #ff0000; }


/* backwards compatibility with PREs */
DIV.listing .var { color: #800080; }
DIV.listing .comment { color: #008000; }
DIV.listing .datatype { color: #0000ff; }
DIV.listing .string { color: #800000; }
DIV.listing .herestring { color: #0000ff; }
DIV.listing .keyword { color: #0000ff; }
DIV.listing .optional { color: #0000ff; }
DIV.listing .verbnoun { color: #5f9ea0; }
DIV.listing .namespace { color: #8b4513; }
DIV.listing .method { color: #8b4513; }
DIV.listing .modifier { color: #5f9ea0; }
DIV.listing .op { color: #ff0000; }
DIV.listing .error { color: #ff0000; font-weight: bold; }
DIV.listing .output { color: #333333; font-style: italic; padding:8px 12px; }
DIV.listing pre {
	font-family: Courier New, monospace;
}



/*
Other   
*/
p.caption {
	text-align: center;
}

SPAN.keystroke {
	color: #0000ff;
	white-space: nowrap;
}

table.fancy1 {
	border-collapse: collapse;
	border: 1pt solid #ff4305;
	margin: 0pt auto;
}

table.fancy1 tr.head, table.fancy1 tr.head td {
	color: #ff4305;
	font-weight: bold;
	border-top: 1pt solid #ff4305;
	border-bottom: 1pt solid #ff4305;
}

table.fancy1 tr.odd, table.fancy1 tr.odd td {
	background-color: #f9f9f9;
}

table.fancy1 tr.even, table.fancy1 tr.even td {
	background-color: #ffffff;
}

table.fancy1 tr td {
	padding: 4pt 8pt;
	font-size: 80%;
	border-right: 1pt solid #ff4305;
	border-left: 1pt solid #ff4305;
}

/*
Block PowerShell code
*/
DIV.codeblock 
{
  overflow: auto;
  padding: 5px 3px;
  margin: 0px;
  color: #000;
  border: 2px solid #ddd;
  display: block;
}

ol.ps1, ol.csharp, ol.vb, ol.xml, ol.plaintext {
  font-family: Verdana,Arial,Helvetica,sans-serif;
  display: list-item;
  list-style-type: decimal;
  color: #008080;
  font-size: 0.8em;
}

ol.ps1 li.odd, ol.csharp li.odd, ol.vb li.odd, ol.xml li.odd, ol.plaintext li.odd {
  list-style-position: outside;
  background-color: #fbfbfb;
  padding: 2px;
  line-height: 1.4em;
}

ol.ps1 li.even, ol.csharp li.even, ol.vb li.even, ol.xml li.even, ol.plaintext li.even {
  list-style-position: outside;
  padding: 2px;
  line-height: 1.4em;
}

ol.ps1 .line, ol.csharp .line, ol.vb .line, ol.xml .line, ol.plaintext .line {
    color: #000;
    font-size: 1.0em;
    white-space:nowrap;
}

ol.xml .line 
{
    color: #00f;
}

ol.ps1 .space, ol.csharp .space, ol.vb .space, ol.plaintext .space {
    font-size: 0.6em;
}

ol.ps1 .var { color: #800080; }
ol.ps1 .comment { color: #008000; }
ol.ps1 .datatype { color: #0000ff; }
ol.ps1 .string { color: #800000; }
ol.ps1 .herestring { color: #0000ff; }
ol.ps1 .keyword { color: #0000ff; }
ol.ps1 .optional { color: #0000ff; }
ol.ps1 .verbnoun { color: #5f9ea0; }
ol.ps1 .namespace { color: #8b4513; }
ol.ps1 .method { color: #8b4513; }
ol.ps1 .modifier { color: #5f9ea0; }
ol.ps1 .op { color: #ff0000; }

ol.csharp .keyword { color: #0000ff; }
ol.csharp .string { color: #a31515; }
ol.csharp .comment { color: #008000; }
ol.csharp .summary { color: #808080; }

ol.vb .keyword { color: #0000ff; }
ol.vb .string { color: #a31515; }
ol.vb .comment { color: #008000; }
ol.vb .summary { color: #808080; }

ol.xml .comment { color: #008000; }
ol.xml .cdata { color: #808080; }
ol.xml .elem { color: #a31515; }
ol.xml .attr { color: #ff0000; }
ol.xml .quote { color: #000000; }

