/* CSS Document */

/* ------------------------------- formatting ----------------------------- */

body {
	margin: 0;
	padding: 0;
	color: #FFFFFF;
	}

h1 {
	font: 120% Verdana, Arial, Helvetica, sans-serif;
	color: #000000;
	margin-top: 0px;
	}

#sub h2 {
	color: #663399;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 110%;
	font-weight: bold;
	padding-right: 10px;
	padding-left: 40px;
	padding-bottom: 5px;
	padding-top: 5px;
	margin: 0px 2px 0px 0px;
	background-image: url(images/head2img%20white.gif);
	background-position: left top;
	background-repeat: no-repeat;
	}

h2 {
	font: normal 110% Verdana, Arial, Helvetica, sans-serif;
	color: #000000;
	}

h3 {
	font: bold 90% Verdana, Arial, Helvetica, sans-serif;
	color: #000000;
	}	

h4 {
	font: bold 90% Verdana, sans-serif;
	color: #000000;
	margin-bottom: 2px;
	}

h5 {
	font: bold 80% Verdana, Arial, Helvetica, sans-serif;
	color: #000000;
	margin-top: 2px;
	}
	
p {
	font: 80% Verdana, sans-serif;
	}
	
/* new style for crumb menu created by AS */
#crumb{
	background-color: #9999CC;
	padding-top: 20px;
	padding-left: 10px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 70%;
	border-top: 1px solid #663399;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #663399;
	color: #FFFFFF;
	background-image: url(images/crumbPixels.gif);
	background-repeat: no-repeat;
	background-position: right;
	display: none;
	padding-bottom: 20px;
	height: 30px;
	margin: 20px;
}

#crumb a {
	color: #FFFFFF;
	text-decoration: none;
}
#crumb a:hover{
	color: #FF0000;
	text-decoration: underline;
}

/* new style for positioning banner created by AS*/

#logo{
	position: absolute;
	top: 30px;
	right: 0px;
}

#text p {
	font: 80% Verdana, sans-serif;
	}

#subExtra p {
	color: #666666;
	text-align: left;
	}
	
#footnav p {
	margin: 4px;
	text-align: center;
	}

a {
	color: #0000FF;		
	}
	
a:hover {
	color: #FF0000;	
	}

hr {
	color: #999999;
	height: 1px;
	}
	
a img {
	border: 0px none;
	display: block;			/* removes extra space underneath caused by default text-alignment */
	}



	

/* 

------------------------------- layout ----------------------------- 

Notes:

Do not mix px widths with % widths for margins, borders or padding because 
the total box width = set width + padding + border.  (It helps if you can add them together)

The box model hack is used to fix an bug in IE5-Win ...for an explanation from the guy that
wrote it go to http://www.tantek.com/CSS/Examples/boxmodelhack.html

IE6-Win will behave like IE5-Win  if you include <?xml version="1.0"?>  It is apparently
unneccessary so leave it out!

Left Col Widths:
 |  pad   |         width        |  pad   | 				
 ------------------------------------------					
 |   0    |          25%         |   0    |	
 
Center Margins:
 |  marg  |         width        |  marg  | 
 ------------------------------------------
 |   25%  |        (auto)        |   25%  |

Right Col Widths:
 |  pad   |         width        |  pad   | 				
 ------------------------------------------					
 |  1.5%  |          22%         |  1.5%  |				total width= 25%
 

*/

#banner {
	padding: 4px;
	background-color: #FFFFFF;
	}
	
#text {
	margin: 0px 5%; 
	padding: 1% 3%;
	background: #ffffff no-repeat center;
	color: #000;
	}

#left {
	position: absolute;
	padding: 0px;
	top: 122px;
	width: 20%;
	background: #9999CC;
	color: #FFFFFF;
	display: none;
	}

#leftExtra {
	width: 88%;
	padding: 10px 6% 40px 6%;
	background-image: url(images/pixelTrim.gif);
	background-repeat: no-repeat;
	background-position: bottom;
	display: inline;
	}




		
div#bannerContent {
	position: absolute;
	top: 10px;
	right: 0px;
	width: 80%;
	display: none;
	}

#bannerContent h2, #bannerContent p {
	display: inline;
	margin-right: 0.5em;
	}
	
	#sub {
	position: absolute;
	width: 14.9%;
	overflow: hidden;
	margin-left: 80%;
	padding: 0px 1.5%;
	top: 128px;
	background-color: #FFFFFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 80%;
	border: 2px solid #9999CC;
	display: none;
	}

#subExtra {
	position: absolute;
	width: 14.9%;
	margin-left: 80%;
	padding: 5px 1.5%;
	text-align: center;
	border: 2px solid #9999CC;
	top: 400px;
	display: none;
	}
	
	
	#subExtra h2 {
	color: #9999CC;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 110%;
	font-weight: bold;
	padding-right: 10px;
	padding-left: 10px;
	padding-bottom: 5px;
	padding-top: 5px;
	margin: 0px 2px 0px 0px;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #9999CC;
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #9999CC;
	}
	


#footnav {
	clear: both;
	border-top: 1px solid #5C6F90;
	border-bottom: 1px solid #5C6F90;
	background-color: #9999CC;
	color: #FFFFFF;
	text-align: center;
	font-weight: bold;
	background-image: url(images/footnavPixels.gif);
	background-repeat: no-repeat;
	background-position: right;
	display: none;
	}



/* 

-------------------------------- Navigation ------------------------------ 

List tips courtesy of A List Apart: http://www.alistapart.com/stories/taminglists/

*/


ul#mainnav {
	list-style: none;
	margin: 0px;
	padding: 0px;
	background-color: #D6D6D6;
	}
		
ul#mainnav li {
	display: block;
	border-top: 1px solid #A5B5C6;
	}

ul#mainnav li a {
	display: block;
	margin: 0px 0px 0px 0px;
	padding: 6px 6%;
	background-color: #663399;
	font: bold 80%/1.5 verdana, sans-serif;
	text-decoration: none;
	width: 88%;
	color: #FFFFFF;
	}

ul#mainnav li a:hover {
	background-color: #9999CC;
	color: #eee;
	}
	

	
div#bannerContent ul {
	position: absolute;
	right: 0px;
	list-style: none;
	margin: 0px 0px 40px;
	}
div#bannerContent ul li {
	display: inline;
	padding: 0 0.5em;
	border-left: 1px solid #34339B;
	}
div#bannerContent ul li.first {
	border-left: 0px none;
	}
div#bannerContent ul li a {
	font: 0.7em/1 verdana, sans-serif;
	}

div#bannerContent form {
	position: absolute;
	right: 0px;
	top: 55px;
	margin: 0px;
	display: none;
	}
/* ---------------------dont need this stuff - removed from high up   ------------------

#bio {
	float: right;
	width: 30%;
	padding: 1%;
	border: 4px dotted #5C6F90;
	color: 5C6F90;
	font-size: 0.7em;
	}

--------------------- Feature Image and Transparency Trick --------------- 


#featureimg {
	margin: 0px 25% 0px 170px;
	height: 250px;
	background: #153976 url(images/sky.jpg) no-repeat right top;
	text-align: center;
	border-top: 1px solid #A5B5C6;		
	}
	
#mstrans {
	margin: 200px auto 0px auto;
	width: 140px;
	height: 30px;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/footbag.png');
	border: 0px solid pink;
	}
	
#mstrans img {
	filter: Alpha(opacity=0);	
	border: 0px solid cyan;
	}
  
 
.textbox {					
	padding: 4px;
	font:  small verdana, sans-serif;
	color: #000;
	background-color: #fff;
	border: 1px solid #000;
	}

.button {
	padding: 2px;
	font: bold small verdana, sans-serif;
	color: #fff;
	background-color: #5C6F90;
	border: 1px solid #000;
	}

.latestarticle {
	margin-bottom: 0px;
	}
	
.headshot {
	display: inline;
	float: left;
	margin: 0px 0.5em 0.5em 0px;
	}
	
p.latestarticle a {
	clear: right;
	font: bold small Verdana, sans-serif;
	}

.date {
	display: block;
	text-align: right;
	color: #A5B5C6;
	font: x-small Verdana, sans-serif;
	}

.author {
	display: block;
	color: #5C6F90;
	font: x-small /2 Verdana, sans-serif;
	}

.blurb {
	margin: 0px 0px 1em 55px;
	}

p.crumbtrail {
	margin: 10px 28% 0px;
	font-size: x-small;
	} 
  
  #articlesponsor {
	position: absolute;
	width: 21.9%;
	height: 251px;
	margin-left: 75%;
	padding: 10px 1.5%;
	top: 150px;
	text-align: center;
	}
  
  
  ul#mainnav ul.subnav {
	margin: 0px;
	list-style: none;
	padding: 0px;
	border: 0px solid pink;
	}

ul#mainnav ul.subnav li {
	border-top: 0 none;
	border: 0px solid green;
	padding-left: 1.5em;
	}

ul#mainnav ul.subnav li a {
	padding: 1%;
	margin: 0px;
	font: bold 0.7em /1.5 verdana, sans-serif;
	color: #5C6F90;
	background-color: transparent;
	border: 0px solid yellow;
	}

ul#mainnav ul.subnav li a:hover {
	color: #43616B;
	background-color: transparent;
	text-decoration: underline;
	}
 
 div#sub p.row {
	width: 100%;
	margin: 0px 0px 1em 0px;
	}

div#sub p.row span.leftcol {
	float: left;
	color: #D6D6D6;
	}
	
div#sub p.row span.rightcol {
	width: 70%;
	float: right;
	}
	
div#sub p.row span.rightcol a {
	color: #D6D6D6;
	font-weight: bold;
	}
	
div#sub p.row span.rightcol a:hover {
	color: #A4B5C5;
	}
	
.spacer {
	display: block;
	height: 1px;
	font: 1px /1 sans-serif;
	clear: both;
	}
 
 
  
  
*/
#footnav a {
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
	text-align: center;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 70%;
}
#footnav a:hover {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 70%;
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: underline;
	text-align: center;
}
#text ul {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 80%;
}
.floatRight {
	float: right;
	border: none;
}
.floatLeft {
	float: left;
	border: none;
	padding-right: 10px;
}
.alignRight {
	text-align: right;
}
.alignCentre {
	text-align: center;
}
.alignLeft {
	text-align: left;
}
ol {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 80%;
}

/* styles for tables */
.data {
	padding: 3px;
	font-size: 80%;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	border-top-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-left-style: solid;
	border-top-color: #CCCCCC;
	border-bottom-color: #CCCCCC;
	}

.datatd{
	padding: 3px;
	border-right: 1px solid #CCCCCC;
	border-bottom: 1px solid #CCCCCC;
}

.dataHeaders{
	color: #663399;
	text-align: left;
	background-color: #9999CC;
	vertical-align: top;
	padding: 3px;
	width: 20%;
	border-right: 1px solid #CCCCCC;
	border-bottom: 1px solid #CCCCCC;
}

.dataDegrees{
	border: 1px solid #000099;
	padding: 3px;
	vertical-align: top;
}
.photos {
	float: left;
}
.fRightPurple {
	border: 2px solid #9999CC;
	float: right;
	padding-left: 10px;
}
.fLeftPurple {
	float: left;
	border: 2px solid #9999CC;
	margin-right: 10px;
}
/*styles for adding pics to rh column*/

#subExtraResearch {
	position: absolute;
	width: 14.9%;
	margin-left: 80%;
	padding: 5px 1.5%;
	text-align: center;
	border: 2px solid #9999CC;
	top: 400px;
	display: none;
	}
	
	#subExtraUndergrad {
	position: absolute;
	width: 14.9%;
	margin-left: 80%;
	padding: 5px 1.5%;
	text-align: center;
	border: 2px solid #9999CC;
	top: 400px;
	display: none;
	}
	
	#subExtraPhd {
	position: absolute;
	width: 14.9%;
	margin-left: 80%;
	padding: 5px 1.5%;
	text-align: center;
	border: 2px solid #9999CC;
	top: 350px;
	display: none;
	}
	
	#subExtraDocprog{
	position: absolute;
	width: 14.9%;
	margin-left: 80%;
	padding: 5px 1.5%;
	text-align: center;
	border: 2px solid #9999CC;
	top: 370px;
	display: none;
	}
	
	#subExtraMasters {
	position: absolute;
	width: 14.9%;
	margin-left: 80%;
	padding: 5px 1.5%;
	text-align: center;
	border: 2px solid #9999CC;
	top: 370px;
	display: none;
	}
#content {
	margin: 0px;
	padding: 10px;
}
#text li {
	padding-top: 3px;
	padding-bottom: 3px;
}
