/* College of Engineering Redesign CSS Document */
/* Print Style Sheet Version 1.0                */

/*remove the elements we don't want to print*/
#navbar, #searchBox, #subnav, #footer, .hide {
	display: none;
}

/* get rid of the body bg, change the font and size to be print friendly*/
body {
	background: none;   
	font-family: Futura Bk, Verdana, Arial, Helvetica, sans-serif;
	font-size: 12pt;
}

/*let the wrapper take the available room*/
#wrapper {
	width: auto;
}

/*then center the content within the wrapper*/
#mainCol, #content, #contentSubnav {
	margin: 0 auto;
	width: 7in;
	float: none;
}

/*restyle the header*/
#header {
	margin: 0 auto;
	padding: 0;
	width: 7in;
	height: 91px;
	background: #999 url(/images/header.jpg) no-repeat 0 0;
}

/* refloat the feature articles in the content area*/
/* Left Aligned */

div.featureLeft {
	float: left;
	padding: 4px;
	margin: 0 10px 4px 0;
}
div.featureLeft img {
	border: 1px solid;
	border-color: #000;
}

/* Right Aligned */

div.featureRight {
	float: right;
	padding: 4px;
	margin: 0 0 4px 10px;
}
div.featureRight img {
	border: 1px solid;
	border-color: #000;
}

/* refloat the default float styles in the content area*/
.floatLeft {
	float: left;
}
.floatRight {
	float: right;
}

/* restyle the image in the content area*/
.photo {
	margin: 5px;
	padding: 4px;
	border: 1px #000 solid;
}

/*set the print header to display block - provides a heading for our printed page*/
#content .printheader {
	display: block;
	margin-bottom: 25px;
}



