/*==============================
// typical.css
// Written by Andy Konwinski
// this is a css for the generic non-homepage styles,
// see common.css for the styles that all pages share
===============================*/

form {
  margin-top: 0; /* to alleviate the extras space that is happening on the forms */
}

#pagetitle {
  font-size: 1.3em;
  font-weight:900;
  text-align: right;
  padding-top: 95px;
  padding-right: 18px;
  margin: 0;
  color: #DDDDDD;
  text-transform: Capitalize;
}

#content1 {
  background-color: #AAB3C3;
  min-height: 407px;
  padding: 10px;
}

/*==============================
// The following is a standard box used
// to divide up content on pages */
.basic-box {
	position: relative;
	margin: 10px auto 0px; /* don't add a bottom border, It breaks things in IE, creating an inexplicable white space under the content1 div */
	width: 80%; 
	padding: 5px;
	background-color: #BAC3D3;
	border:1px solid #DDE3F3;
}

.basic-box-header {
/*	background-color: #CCCCCC;*/
	font-weight: bold;
	font-size: 1.2em;
	text-align: center;

}

