@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #FFF; /*#666666;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}

* {
	margin:0; 
	padding:0;
	} 

.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}


div#header {
	width: 100%;
	font-size: 24px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-style: italic;
	color: #F3F0BB;
	background-color: #523857;
	text-align: center;
	background-image: none;
	height: 110px;
	padding: 15px 0px 0px 0px;
	border: 1px solid #523857;
} 

div#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0 2% 0;
}
	
/* the horizontal menu starts here */
div#listmenu * {
	z-index: 10;
	}

div#listmenu {
	width:100%; 						/* makes the div full width */
	float:left; 						/*makes the div enclose the list */
	/*border-top: 2px solid #2E3640;*/		/* draws line on top edge of div */
	border-bottom: 1px solid #000;		/* draws line on bottom edge of div */
	font-size: .7em;					/* Sets font size */
	background-color: #F3F0C8;			/* colors the div */
	padding: 0 17%;
	}
	
div#listmenu ul {
	margin: auto;					/* indents ul from edge of container  0 2% 2% 2% */
	}
	
div#listmenu li {
	float:left;							/* causes the list to align horizontally instead of stack */
	position:relative; 					/* positioning context for the absolutely positioned drop-down */
	list-style-type:none;				/* removes the bullet off each list item */
	background-color: #F3F0C8; 			/*sets the background of the menu items */
	/*border-right:1px solid #2E3640; */	/* creates dividing lines between the li elements */
	/*border-bottom:1px solid #2E3640; */
	width: 8em;
	text-align:center;
	}
	
div#listmenu li:first-child {
	/*border-left:1px solid #2E3640; */			/*the first vertical line on the menu */
	}
	
div#listmenu li:hover { 
	background-color: #523857;
	color:#FFF;
	}
	
div#listmenu a {
	display: block;
	/*padding: 0 10px;*/					/*creates space each side of menu item's text */
	text-decoration: none;	 			/* removes the underlining of the link */
	color: #000;					/* sets the type color */
	}
	
div#listmenu a:hover {
	color: #FFF;
	}
						/* the horizontal menu ends here */
						
						/* the drop-down starts here */
div#listmenu ul li ul {
	margin: 0;
	position:absolute; 	/* positions the drop-down ul in relation to its relatively positioned li parent */
	width: 100%; 		/*sets the width of the menu - in combo with the li's 100% width, makes the menu stack*/
	left:-1px; 			/*aligns the drop exactly under the menu */
	}
	
div#listmenu ul li ul li {
	width:100%; 						/* makes the list items fill the list container (ul) */
	border-left:1px solid #2E3640; 		/*  three sides of each drop-down item */
	border-bottom:1px solid #2E3640;
	border-right:1px solid #2E3640;
	}
	
div#listmenu ul li ul li:first-child {
	border-top:1px solid #2E3640; 		/*the top edge of the dropdown */
	}
										/* make the drop-down display as the menu is rolled over */
div#listmenu ul li ul {
	display:none;
	} 									/* conceals the drop-down when menu not hovered */
	
div#listmenu ul li:hover ul {
	display:block;
	} 									/* shows the drop-down when the menu is hovered */

body div#listmenu ul li ul li ul {
	visibility: hidden;
	top: -1px;
	left: 8em;
	} 									/* conceals the drop-down when menu not hovered */
	
div#listmenu ul li ul li:hover ul {
	visibility:visible;
	} 							

/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/
.twoColElsLtHdr #container { 
	width: 774px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	/*border: 3px solid red;*/
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColElsLtHdr #sidebar1 p" rule.
*/
.twoColElsLtHdr #sidebar1 {
	float: left;
	width: 16%; /* since this element is floated, a width must be given 16% 134px */
	background: #EBEBEB; /* top and bottom padding create visual space within this div */
	font-weight: bold;
	padding-left: 4px;
	position:relative;
	font-size:1em;
}

.objective {
	position:absolute;
	top:0em;
}

.education {
	position:absolute;
	top:10em;
}

.summary {
	position:absolute;
	top:22.5em;
}

.studteach {
	position:absolute;
	top:41em;
}

.preintern {
	position:absolute;
	top:83em;
}

.work {
	position:absolute;
	top:90.5em;
}

.profdev {
	position:absolute;
	top:140em;
}

.honors {
	position:absolute;
	top:151.5em;
}

.volunteer {
	position:absolute;
	top:160em;
}

/*.twoColElsLtHdr #sideContainer h3 {
	font-size:120%;
}*/

/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
.twoColElsLtHdr #mainContent {
	/*float:left;*/
	/*border: 2px solid black;*/
	margin-left: 18%;
	width: 80%; /*;620px*/
	padding: 0 1% 0 2%; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
	line-height:1.4;
} 

.twoColElsLtHdr #mainContent em {
	font-weight: 600;
	font-style:normal;
	font-size:1em;
}

.twoColElsLtHdr #mainContent hr {
	height: 1px;
	width: 75%;
	border: 1px solid #000;
	margin:auto;
	background-color:#000;
}


.twoColElsLtHdr #mainContent ul {
	list-style-type: none;
	text-indent: 0px;
}

.twoColElsLtHdr #mainContent li {
	/*padding-left:12px;*/
	margin-left: 30px;
}

div#bottom {
	width: 774px;
	/*border-bottom: 2px solid #2E3640;*/
	margin: 0 auto;
	}

div#footer {
	font-size: 0.75em;
	margin: 0 auto;
	padding: 2% 1%;	
	text-align: center;
	}
	
div#footer UL {
	margin: 2px 0px;
	}
	
div#footer LI {
	display: inline; 
	border-left: 1px solid #2E3640;
	}

div#footer LI:first-child {
	border-left: none; 
	}
/*div#footer LI:unknown {
	border-left: 0px
	}*/
	
div#footer UL LI{
	color: #2E3640;
	padding-right: 7px;
	padding-left: 7px;  
	color: #523857;	
	}
	
div#footer UL LI a {
	text-decoration: underline;
	color: #2E3640;
	}
	
div#footer UL LI a:hover {
	background-color: #523857;
	color:#FFF;
	}
	
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}


