/*

CHIP: Code Highlighting in PHP.

Copyright (c) 2004-2005 Ewan Mellor <chip@ewanmellor.org.uk>.  All rights
reserved.

*/


body { background-color: white; color: black; font-family: sans-serif; }

.chip-normal { background-color: white; }

/* The class for line numbers.  We just call this 'l' because it saves 10% of
   the file size in some cases to use a short name over a more descriptive
   one.
 */
.l
{
  background-color: white;
  color: rgb(100, 100, 100);
  border-right: solid rgb(230, 230, 230) 1px;
  padding-right: 1em;
  margin-right: 0.4em;
}

.chip-embedded-1 { background-color: rgb(250, 250, 230); }
.chip-embedded-2 { background-color: rgb(255, 245, 250); }

.chip-comment { color: purple; }
.chip-keyword { color: rgb(205, 0, 0); }
.chip-inCommentKeyword { color: rgb(205, 0, 0); }
.chip-string { color: green; }
.chip-variable { color: rgb(0, 0, 205); }

.chip-attribution
{
  margin-top: 10em;
  text-align: center;
}

.chip-bottomlink
{
  text-align: right;
}

.chip-breadcrumbs
{
  font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
  letter-spacing: .1em;
}

.chip-breadcrumbArrow
{
  font-family: Arial, Helvetica, sans-serif;
  font-size: small;
}

@media screen
{
  .chip-breadcrumbs
  {
    position: fixed;
    overflow: hidden;
    left: 0;
    top: 0;
    width: 99%;
    padding: 0.5ex 0 1.5ex 0.5em;
    margin: 0;
    background: white;
    page-break-after: avoid;
  }

  .chip-toplink
  {
    position: fixed;
    overflow: hidden;
    text-align: right;
    width: 50%;
    right: 0;
    top: 0;
    padding: 0.5ex 0.5em 1.5ex;
    margin: 0;
    page-break-after: avoid;
  }

  .chip-breadcrumbSkipper
  {
    width: 100%;
    height: 4ex;
    page-break-after: avoid;
  }


}


a:link {
  color: rgb(0, 20, 60);
  text-decoration: none;
}

a:visited {
  color: rgb(0, 20, 60);
  text-decoration: none;
}

a:hover {
  color: blue;
}

.chip-comment a:link {
  color: purple;
  text-decoration: underline;
}

.chip-comment a:visited {
  color: purple;
  text-decoration: underline;
}

.chip-comment a:hover {
  color: blue;
}


