/*-- --------------------------------------------------------------------
//  Godfrey D. Watson  (gdw)
//  CIS 380 WW
//  Assignment Midterm 1 
//  style.css
//  2009-10-05 1717
//
//  Christopher Robinson's css style sheet
---- ---------------------------------------------------------------- -*/

/*-- --------------------------------------------------------------------
//  REVISION HISTORY:
//  2009-11-02 1703  gdw Added header_postcard for the Postcard.
//                       Also added formatting for textarea.
//  2009-10-24 1820  gdw Added formating for input and input text box. 
//                       Tested with IE, Netscape, Firefox.
//  2009-10-24 1742  gdw Remove border-bottom and changed border-right 
//                       to border.  The border-bottom didn't work with
//                       Firefox browser.
//  2009-10-23 1449  gdw Add border-bottom to navigation.
//  2009-10-05 1717  gdw Initial creation from Christopher Robinson's
//                       css style sheet.
---- ---------------------------------------------------------------- -*/

/*
	Author	:	Christopher Robinson
	Email		:	christopher@edg3.co.uk
	Website	:	http://www.edg3.co.uk/
*/
* {
	border:0;
	margin:0;
	padding:0;
}

/* general */
a {
	color:#777;
	text-decoration:none;
}

a:hover {
	color:#333;
	text-decoration:none;
}

/* body */
body {
	background:#fafafa;
	color:#555;
	font:0.8em Arial, Helvetica, "bitstream vera sans", sans-serif;
}

/* header */
#header {
	border-bottom:1px solid #999;
	height:80px;
	margin:0 auto;
	width:751px;
}
#header h1 {
	color:#888;
	font-size:300%;
	letter-spacing:-3px;
	text-align:right;
	padding:5px;
	margin-bottom:-20px;
}
#header h2 {
	color:#CCC;
	font-size:200%;
	letter-spacing:-2px;
	text-align:right;
}#header h3 {
	color:#0CCC;
}

#header_postcard {
	border-bottom:1px solid #999;
	height:80px;
	margin:0 auto;
	width:751px;
}
#header_postcard h1 {
	color:#888;
	font-size:300%;
	letter-spacing:-3px;
	text-align:left;
	padding:5px;
	margin-bottom:-20px;
}


/* form input */
input
{
        border: 1px solid #999;
}
.text input
{
        border: 1px solid #999;
}
textarea
{
        border: 1px solid #999;
}
.text textarea
{
        border: 1px solid #999;
}


/* navigation */
#navigation {
	background:#fafafa;
	border:1px solid #999;
	margin:0 auto;
	width:750px;
	height:40px;
	list-style:none;
}
#navigation li {
	border-left:1px solid #999;
	float:left;
	width:149px;
	list-style:none;
}
#navigation a {
	color:#555;
	display:block;
	line-height:40px;
	text-align:center;
}
#navigation a:hover {
	background:#e3e3e3;
	color:#555;
}
#navigation .active {
	background:#e3e3e3;
	color:#777;
}

/* content */
#content {
	height:auto;
	margin:0 auto;
	padding:0 0 20px;
	width:751px;
}
#content h1 {
	border-bottom:1px dashed #999;
	font-size:1.8em;
	padding:20px 0 0;
}
#content p {
	padding:20px 20px 0;
}

/* footer */
#footer {
	border-top:1px solid #999; 
	height:50px;
	margin:0 auto;
	padding:10px;
	text-align:center;
	width:751px;
}

/* Added by Larry Ullman: */
.error {
	font-weight: bold;
	color: #C00
}
