/*
Derivative of Wordpress theme Benevolence (http://www.thoughtmechanics.com/blog/2005/01/03/benevolence/)
since that is what the blog uses
*/

/* NOTE: created as fixed-width site of 699 px (width of masthead image I inherited, adjusted by 1px for even thirds: 233 */

/* text formatting styles */
body {
	position: relative;
	background: #666;
	height: 100%;
	font-family: Arial, Helvetica, Sans;
	text-align:left;
	color:#000;
	font-size: 10pt;
	margin:  0px;
	padding: 0;
	text-align: left;
}

h1 {
	font-size: 26px;
	color: #0096E6;
	font-weight: bold;
	text-align: left;
	margin: 0px;
	padding: 0px;
	padding-left: 4px;
	padding-top: 4px;
}
h2 {
	font-size: 16px;
	color: white;
	font-weight: normal;
	text-align: left;
	background-color: #3D4B61;
	padding: 4px;
	margin: 0px;
}
h2.gallery {
	margin-bottom: 0px;
}

p {
	font-size: 12px;
	text-align: left;
	padding-left: 9px;
}

a {
	text-decoration: none;
	color: #0096E6;
}

#footer {
	font-size: 10px;
}

/* layout styles */
#wrapper {
	position: relative;
	height: 100%;
	width: 699px;
	border-left: 10px solid #666;
	border-right: 10px solid #666;
	margin: 0 auto;
	background-color: #FFF;
}

#clear {
	display: block;
	clear: both;
}

#vspace {
	width: 100%;
	height: 10px;
}

/* TS logo */
#masthead {
	position: relative;
	top: 0px;
	background: url('/imgz/masthead.jpg');
	width: 699px;
	height: 225px;
	margin: 0px;
	margin-top: 0px;
}

/* php blob to pull flickr photos */
#media {
	border: none;
	margin: 0;
}

div.mediablob {
	float: left;
	width: 233px;
	height: 160px;
	border: none;
}

/* brief nav into site */
#navbar {
	height: 24px;
	margin: 0px;
	padding: 0px;
	background-color: #3D4B61;
}

.navelement {
	float: right;
	margin: 0px;
	padding: 0px;
	font-size: 18px;
	color: #FFFFFF; 
	margin-left: 5px;
	margin-right: 5px;
}
a.navelement {
	text-decoration: none;
}
a.navelement:hover, 
a.navelement:active {
	color: #F28D00;
}

#modules {
	/* does anything here actually have an impact? */
}

/* 3-across module sizing calc:
 * total for each is 233px (699 full width)
 * 2px for hairlines separating columns
 * 4px right side padding each column
 * content is (699-2-(3*4))/3 =  228.33
 */
/* module to display what's new, coming up - on left */
#leftcol {
	float: left;
	margin: 0px;
	padding: 0px;
	padding-right: 4px;
	border: none;
	width: 228px;
}

/* module to display latest press and projects - in center */
#centercol {
	float: left;
	margin: 0px;
	padding: 0px;
	padding-right: 4px;
	border-left: 1px solid #3D4B61;
	border-right: 1px solid #3D4B61;
	width: 229px;
}

/* divider between press and projects in center column */
#centerrule {
	border: 0px;
	padding: 0px;
	margin:0px;
	border-top: 1px solid #3D4B61;
	width: 100%;
}

/* module to preview and link to school diaries - on right */
#rightcol {
	float: right;
	margin: 0px;
	padding: 0px;
	padding-right: 4px;
	border: none;
	width: 228px;
}

