/*  
Theme Name: Cello
Theme URI: http://drollic.net/
Description: Custom theme created for Gustavo Tavares's website, based on the Wordpress template "default" by Michael Heilemann.
Version: 1.0
Author: Linn Farley
Author URI: http://drollic.net/

	Cello v1.0
	 http://drollic.net/

*/

/*** MAIN DIVS ***/

body {
	font-size: 10pt;
	font-family: 'Trebuchet MS', Verdana, Arial, Sans-Serif;
	background: #FBFBE3;
	color: #120200;
	text-align: center;
	margin: 0 0 20px 0;
	padding: 0; 
	}

#page {
	background: #FFFFFF;
	text-align: left;
	margin: 20px auto 5px auto;
	padding: 0;
	width: 760px;
	border: 5px solid #ffffff;
	}

#header {
	background: #FFFFFF url('images/header.jpg') no-repeat bottom center;
	margin: 0; 
	padding: 0; 
	height: 73px; 
	width: 758px;
	}

#headerimg 	{ 
	margin: 0; 
	height: 73px; 
	/* width: 740px; */
	margin: 0;
	width: 100%;
	} 

#sidebar {
	background: #FFFF66;
	padding: 0;
	margin: 5px 0;
	width: 758px;
	}

#container {
	background: #FFFFFF url('images/bg.gif') repeat-y top left;
	}

#sidebarimage {
	background: #000000 url('images/sidebar.jpg') no-repeat top left;
	float: left;
	width: 150px;
	height: 382px;
	}

.narrowcolumn {
	line-height: 1.4em;
	float: right;
	padding: 0;
	margin: 0 2px 0 5px;
	width: 600px;
	}

.post {
	margin: 0;
	text-align: justify;
	}

.post hr {
	display: block;
	}

#bottom {
	padding: 0;
	margin: 0 auto 0 auto;
	width: 760px;
	clear: both;
	}

#footer {
	background: #FBFBE3;
	font-size: 7pt; 
	padding: 0;
	margin: 0 auto 0 auto;
	width: 760px;
	clear: both;
	}

#footer p {
	margin: 0;
	padding: 0;
	text-align: right;
	}

#splash {
	margin: 20px auto 20px auto;
	text-align: center;
	}

/*** NAVIGATION BAR ***/

ul.nav, .nav ul {
	margin: 0;
	padding: 0;
	cursor: default;
	list-style-type: none;
	display: inline;
	}

ul.nav {
	display: table;
	width: 100%;
	table-layout: fixed;
	}

ul.nav>li {
	display: table-cell;
	position: relative;
	padding: 2px 6px;
	}

ul.nav li>ul {
/*Make the sub list items invisible*/
	display: none;
	position: absolute;
	max-width: 40ex;
	margin-left: -6px;
	margin-top: 2px;
	}

ul.nav li:hover>ul {
/*When hovered, make them appear*/
	display : block;
	}

.nav ul li a {
/*Make the hyperlinks as a block element, sort of a hover effect*/
	display: block;
	padding: 2px 10px;
	}

/* Menu colors */

ul.nav, .nav ul, .nav ul li a {
	background-color: #FFFF66;
	color: #120200;
	}

ul.nav li:hover, .nav ul li a:hover {
	background-color: #FFFFCC;
	color: #120200;
	}

ul.nav li:active, .nav ul li a:active {
	background-color: #FFFFCC;
	color: #120200;
	}

ul.nav, .nav ul{
	border: 0;
	}

.nav a {
	text-decoration: none;
	}

/*** HEADINGS AND LINKS ***/

h1, h2, h3 {
	font-family: 'Trebuchet MS', 'Lucida Grande', Verdana, Arial, Sans-Serif;
	font-weight: bold;
	}

h1 {
	font-size: 4em;
	text-align: center;
	padding-top: 70px;
	margin: 0;
	}

h2 {
	font-size: 1.6em;
	margin: 30px 0 0;
	}

h3 {
	font-size: 1.3em;
	color: #003300;
	margin: 10px 0 0 0;
	}

code {
	font: 1.1em 'Courier New', Courier, Fixed;
	}

acronym, abbr, span.caps {
	font-size: 0.9em;
	letter-spacing: .07em;
	cursor: help;
	border-bottom: 1px dashed #999;
	}

a:link, a:visited {
	color: #003300;
	text-decoration: none;
	}

a:hover, a:active {
	color: #120200;
	text-decoration: none;
	}

#container a:hover, a:active {
	color: #120200;
	text-decoration: underline;
	}

.narrowcolumn a:hover, a:active {
	color: #120200;
	text-decoration: underline;
	}

#footer a:hover, a:active {
	color: #120200;
	text-decoration: underline;
	}

blockquote {
	margin: 15px 30px 0 10px;
	padding-left: 20px;
	border-left: 5px solid #ddd;
	}

blockquote cite {
	margin: 5px 0 0;
	display: block;
	}

.center {
	text-align: center;
	}

hr {
	display: none;
	}

.highlight {
	color: #003300;
	font-weight: bold;
	}

/*** IMAGES ***/

p img {
	padding: 0;
	max-width: 100%;
	}

/*	Using 'class="alignright"' on an image will (who would've
	thought?!) align the image to the right. And using 'class="centered',
	will of course center the image. This is much better than using
	align="center", being much more futureproof (and valid) */

img.centered {
	display: block;
	margin-left: auto;
	margin-right: auto;
	}

img.alignright {
	padding: 4px;
	margin: 0 0 2px 7px;
	display: inline;
	}

img.alignleft {
	padding: 4px;
	margin: 0 7px 2px 0;
	display: inline;
	}

.alignright {
	float: right;
	}

.alignleft {
	float: left
	}

a img {
	border: none;
	}

/*** LISTS ***/

html>body .entry ul {
	margin-left: 0px;
	padding: 0 0 0 30px;
	list-style: none;
	padding-left: 10px;
	text-indent: -10px;
	} 

html>body .entry li {
	margin: 7px 0 8px 10px;
	}

.entry ul li:before {
	content: "\00BB \0020";
	}

.entry ol {
	padding: 0 0 0 35px;
	margin: 0;
	}

.entry ol li {
	margin: 0;
	padding: 0;
	}

.postmetadata ul, .postmetadata li {
	display: inline;
	list-style-type: none;
	list-style-image: none;
	}