/* basic.css // typography and whatnot */

/************* reset whitespace for entire document */

* {
    padding: 0;
    margin: 0;
}

html, body {
    padding: 0;
    margin: 0;
    height: 100%;
    background-color: #a6a6a6;
}


/********** sensible basic typography that scales well
	and is consistently sized in all major browsers */

body {
    color: #fffdf2;
	/* font-size for IE */
    font-size: 80%;
    font-family: "Lucida Sans",geneva,tahoma,sans-serif;
}

/* change apparent font size for non-IE browsers here */
html > body {
    font-size: 13px;
}
   
h1, h2, h3, h4, h5, h6 {
    clear: both;
    margin-bottom: 0.3em;
    text-transform: lowercase;
	width: auto;
}

h1 {
    font-size: 2.7em;
}

#index h1 {
	font-size: 1em;
}

h2 {
    font-size: 2.3em;
}

h3 {
	font-size: 2.0em;
}

h4 {
	font-size: 1.7em;
}

p + h1, p + h2, p + h3, p + h4, p + h5, p + h6 {
    margin-top: 1em;
}

p {
    line-height: 1.7em;
    margin-bottom: 1em;
    font-size: 1em;
}

#footer p {
	line-height: 0.5em;
}


label {
    font-size: 1em;
}

#work label {
	color: #123456;
	font-size: 0.9em;
	font-weight: bold;
	display: block;
	font-size: 0.85em;
}

.workblurb label {
	color: #fffdf2;
}

form label {
    float: left;
    width: auto;
    padding: 0;
}

.req {
    font-weight: bold;
}

.form-error {
    font-weight: bold;
    color: #434343;
    background-color: #e9e9e9;
    padding: 2px;
    font-size: 0.9em;
}

li {
    list-style-type: none;
	line-height: 1.3em;
    margin: 0 0 0.425em 0;
}

.projectinfo li {
	margin: 0;
	padding: 0 1.7em 1.7em 0;
	/*line-height: 1.7em;*/
}

.submenu li.selected {
	font-weight: bold;
}

acronym {
    border-bottom: 1px dotted #fffdf2;
}

small {
	font-size: 0.8em;
	line-height: 1.3em;
}

sup {
	color: #3174c6;
	font-weight: bold;
}


/******************************************** anchors */

a {
    text-decoration: none;
    font-weight: bold;
}

p a:link, .submenu a:link, .workinfo a:link {
    color: #3176c4;
}

p a:visited, .submenu a:visited, .workinfo a:visited {
    color: #3d3d3d;
	/*color: #0b1a3f;*/
}

p a:hover, .submenu a:hover, .workinfo a:hover {
    color: #fffdf2;
    background-color: #3176c4;
    padding: 1px;
}

p a:active, .submenu a:active, .workinfo a:active {
    color: #fffdf2;
    background-color: #3176c4;
}


/********************************************* images */

img {
    border: none;
    margin: 0;
	padding: 0;
	width: auto;
	float: none;
}

.sidebar img {
    background-color: #a6a6a6;
    vertical-align: middle;
	float: none;
}

.img-inline:hover {
    padding: 0 !important;
}

h1 + img {
    margin-top: -15px;
}

p img {
	clear: both;
}


/*************************************** form styling */

form {
    padding-top: 2.5em;
    width: 100%;
    clear: both;
}

textarea, input {
    font-family: "Lucida Sans",geneva,tahoma,sans-serif;
}

fieldset {
    border: none;
    width: auto;
    padding: 7px 0 15px 0;
    margin-top: 5px;
    border-top: 1px dotted #888888;
    
}

fieldset.submit {
    border: none;
    margin: 0;
    padding: 0;
}

input, textarea {
    background-color: #888888;
    border: none;
    color: #fffdf2;
    padding: 5px;
    font-size: 0.8em;
}

textarea, input {
    width: 265px;
    float: right;
}

textarea {
    height: 200px;
}

input:hover, textarea:hover {
    background-color: #7D8FA5;
}

input:focus, textarea:focus {
    border: 1px solid #d6d6d6;
    background-color: #7D8FA5;
}

input#send {
    width: auto;
    float: right;
    margin-right: 229px;
    padding: 0;
    background-color: #a6a6a6 !important;
}

input#send:focus {
    border: none;
}
