	/*Set elements to include total dimensions when setting width and height*/
		html {box-sizing: border-box} /*sets top level to border box-sizing*/
		*{box-sizing:inherit} /* sets all elements except pseudo elements to inherit setting from parent*/
	
	/*Default formatting*/
		ul { list-style:none; width: 100%; padding:0; margin:0}
		li {padding: 0em 0em; margin: 0.3em} 
		a {color:#000000; text-decoration:none}
	
	/*Format logos*/
		.sclogo {border: 0; vertical-align: middle; width:95%; max-width: 3.3em; min-height:3.4em}	
		.dept-title {border: 0; vertical-align:middle; width:95%; max-width: 28.7em; min-height:2.75em}
	
	/*Format divs for menu columns */	
		#menu-col1, #menu-col2, #menu-col3, #menu-col4{ padding: 0em 0em; margin: 0 ; width:25%; min-width:18em; float:left; text-align:center;}
	
	/*Format footer divs containing portraits*/
		.portrait-panel {	width:33%; 
							min-height:11em; 
							line-height:11em; 
							float:left; 
							text-align:center;
						}
		.portrait	{
							border:5px ridge; 
							vertical-align: middle; 
							width:90%; 
							max-width:7.1em
						}
								
	/* Format footer divs containing nameplates*/
		.nameplate	{ width:33%; min-height:2.25em; float:left; text-align:center; }
	
	/* Define specific properties for nameplate*/
		.nameplate li 
			{display: inline-block; width:30%; max-width:7.1em; min-width:6em; border:4px ridge }
			
	/* Define common menu properties*/
		.menu li,  .list li
			{
			display: inline-block;	/*forces it to obey text formatting commands*/
			width: 85%;				/*use 85% of width of the parent division*/
			min-width: 15em;		/*Prevents the li container shrinking less than text inside*/
			height:1.8em;			/*sets the height of the block*/
			line-height:1.6em; 		/*sets the total line height of the text including spaces equal to block height to vertically centre text*/
			border: 2px ridge;
			}
			
		.menu a{ display: inline-block; width:100% }
		
/* set div types*/	
	.full-width{width:100%; min-width:20em; float:left} 