/*--------------------------------------------------------------
 Application.css
 Imports all stylesheets; sets defaults for bare elements
 --------------------------------------------------------------*/

@import 'layout.css';
@import 'content.css';
@import 'syntax.css';
@import 'local.css';

@media print { #sidebar { display: none; }
               #content { float: none; width:90%; }
               #content pre { color: #000; background: #eee; }
               #content form.comments { display:none; } }

body {
	background-color: #333337;
	font: normal 12px "lucida grande", verdana, arial, helvetica, sans-serif;
}

div#logo {
  border: none;
  text-align: left;
  border:1px white solid;
  width:  300px;
  height: 128px;
}

input,
textarea { font: normal 12px "bitstream vera sans", verdana, sans-serif; }

abbr  { border: none; }
cite  { font-style: normal; }
a img { border: none; padding: 0; margin: 0; }

a:link,  a:visited { color: orange; }
a:hover, a:active  { color: orange; }

/* http://longren.org/2006/09/27/wrapping-text-inside-pre-tags */
pre {
  white-space: pre-wrap;
  white-space: -moz-pre-wrap !important;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word;
}

div.code {
  margin:     5px;
  padding:    10px;
  width:      480px;
  height:     20px;
  color:      #9ed062;
  border:     1px #636367 dashed;
  background: #434347;
  overflow:   none
 }
 span.token {
  color: #099;	
 }	
 span.method {
	color: #fff;
 }
 span.symbol {
	color: #f00;
 }