/**********************************
 * Designed by: Daniel Rothenberg
 *              dar256@cornell.edu
 *
 * Date: 11/20/2009
 * Version: 1.0
 **********************************/
 
/* Imports */
/*@import url("reset.css")*/

/* HTML5 Tags */
header, section, footer, aside, nav, article, figure {
	display: block;
}

/*** Main body elements (GLOBAL) ***/
body {
	background: #3a4146;
	margin-top: 60px;
	padding: 0;
	font-family: Verdana;
	color: #000;
	text-decoration: none;
	word-spacing: 0em;
	text-align: left;
	letter-spacing: .3px;
	line-height: 1.2em;
	font-size: 1.15em;
}

/* Headings */
h2, h3, h4 {
	color: #c30005;
	margin-bottom: 10px;
	margin-top: 10px;
}

/* Anchors */
a { color: #c30005; }
a:hover { color: #c30005; }

/* Other */
dt { color: #c30005; }
dd { font-style: italic; }
hr { background-color: #3a4146; height: 10px; width: 550px; }

/**** Layout ****/
.body { 
	margin: 0 auto;
	width: 800px;
}

/**** Header ****/
#banner {
	margin: 0 auto;
	background: #3a4146;
}
#banner h1 {
	color: #fff;
	text-shadow: none;
	font-weight: bold;
	padding-bottom: 20px;
	text-align: right;
	text-shadow: 2px 2px 2px #000;

}


/**** Main Content ****/
#main {
	display: table;
	background: #fff;
	font-size: .8em;
	line-height: 20px;
	
	border-top-left-radius: 50px;
	-moz-border-radius-topleft: 50px;
	-webkit-border-top-left-radius: 50px;
	
	border-bottom-right-radius: 50px;
	-moz-border-radius-bottomright: 50px;
	-webkit-border-bottom-right-radius: 50px;
}
#content {
	display: table-cell;
	width: 75%;
	margin: 0 10px 0 10px;
	padding: 20px 20px 20px 20px;
}
#sidebar {
	display: table-cell;
	margin: 0 10px 0 10px;
}
#sidebar nav li {
	background: #3a4146;
	list-style: none;
	margin: 10px 0 10px 0;
	line-height: 30px;
	text-align: center;
}
#sidebar nav a {
	color: #FFF;
	font-size: 20px;
	font-weight: bold;
	text-decoration: none;
}
#sidebar nav a:hover {
	color: #c30005;
	text-shadow: 2px 2px 2px #000;
}
#sidebar nav li#active {
	background: #FFF;
	text-shadow: 1px 1px 1px #000;
	border-bottom-right-radius: 50px;
	-moz-border-radius-bottomright: 50px;
	-webkit-border-bottom-right-radius: 50px;}
#sidebar nav li#active a { color: #c30005; }

/**** Social Networking Stuff ****/
#sidebar #bookmarks ul {
	list-style: none;
}
#sidebar #bookmarks li {
	display: inline;
	float: right;
}
#sidebar #bookmarks li a img {
	border: 0;
}

/**** Tweet ****/
#tweet {
	display: table;
	margin: 0 auto;
	color: #fff;
	font-size: 12px;
	line-height:15px;
	
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}
#tweet header {
	display: table-cell;
	padding-left: 20px;
	text-align: left;
}
#tweet header h3 {
	color: #fff;
}
#tweet #tweets {
	display: table-cell;
	width: 80%;
	text-align: right;
	padding-right: 50px;
}
#tweet #tweets #twitter_update_list {
	overflow: hidden;
	height: 40px;
}
#tweet #tweets li {
	list-style: none;
	margin: 10px 0 12px 0;
	
}

/**** Footer ****/
#foot {
	font-size: 14px;
	color: #fff;
	text-align: left;
	
}
#foot #django {

}
#foot #social {
	display: inline;
}
#foot #social ul {
	list-style: none;
	margin: 0 auto;
}
#foot #social li {
	display: inline;
}
#foot #social li a img {
	border: 0;
}

/* Page title element */
#page_title { background: #3a4146; text-align: right; }
#page_title h1 { color: #FFF; font-size: 44px; font-weight: bold; }

/* Additional, useful elements */
.red { color: #c30005; }
.gray { color: #3a4146; }
.dead { background: #3a4146; }
