/*
Skin Name: littlejames
Skin URI: http://littlejames.net/sandbox-skins/
Version: 0.2
Description: littlejames.net custom sandbox skin
Author: James Kruth
Author URI: http://littlejames.net/
Global Navigation: Y
*/
/* import the default style */
@import url('../style.css');
/* don't display global nav */
div#globalnav, p.access { 
        display: none;
}
/* set the overall width and center */
div#wrapper {
        width: 800px;
        margin: 0 auto;
}
/* Size the content container and put it on the left */
div#container {
        float: left;
	 width: 600px;
}
/* sidebars on the right */
div.sidebar {
        float: right;
        overflow: hidden;
        width: 180px;
}
/* make sure nothing is to the right of the secondary sidebar */
div#secondary {
        clear: right;
}
/* no elements to either side */
div#footer {
        clear: both;
}
/* take care of font face and colors */
body {
        font-family: Georgia, Utopia, "Times New Roman", Times, serif;
        color: black;
        background-color: white;
}
a:link, a:visited {
        color: #0000bb;
}
a:hover, a:active, form#commentform span.req-field {
        color: #bb0000;
}
abbr, acronym {
        /* should match the a:link and a:visited */
        border-color: #0000bb;
}
blockquote {
        border-color: #f0f0f0;
}
/* take care of code/pre blocks - we use a better fontface if available, and
   also take care of the look of the box - at some point it may make sense
   to only use code, and forget about pre for most things - at this point
   wordpress screws up code blocks, but leaves pre blocks alone */
code, pre {
        font-family: "Andale Mono", "Courier New", Courier, monospace;
        font-size: 85%;
	padding: 1em;
        margin: 0 3em; /* this makes it look more like a blockquote */
	border: 1px dashed black;
	background-color: #f8f8f8;
	line-height: 1.1em;
        white-space: pre; /* make code block act like pre */
}