/*----------------------------------------------------------------------------------------------------------------------------------------------------
sidisinsane.css

	Description:		Horizontal-scrolling layout with fixed, tabbed header with research-form and departments.
	Project:		Sidisinsane
	Version:		1.1
	Last change:		2008-12-23
	Author:			Dirk Sidney Jansen [http://sidisinsane.com]
-----------------------------------------------------------------------------------------------------------------------------------------------------
TOC (Table of contents)

	I.		General settings
		I.1.		Resets, browser-corrections, defaults
		I.2.		Typography
		I.3.		Overrides (Overrides settings from imported CSS-Libs)
		I.4.		Common classes
	II.		Headquarter (Tabs- and departments-wrapper)
		II.1.		Research-form
		II.2.		Departments (Subdivisions of Headquarter)
		II.3.		Main Navigation
		II.4.		(Right-floating) Tabs
	III.		Content
		III.1.		Header (Headline, subline)
		III.2.		Main Content ("Frontpage")
		III.3.		Playground
		III.4.		About
		III.5.		Resume
		III.6.		The End
-----------------------------------------------------------------------------------------------------------------------------------------------------			
TEST-REPORT
	
	Mac OS:
	Firefox 3			Working!
	Firefox 2			Working!
	Safari 3			Working!
	Opera 9.5			Working!
	Chrome				Not tested!
	
	Windows OS:
	Firefox 3			Not tested!
	Firefox 2			Not tested!
	IE 8				Basically working!
	IE 7				Basically working!
	IE 6				Not tested!
	Chrome				Not tested!
----------------------------------------------------------------------------------------------------------------------------------------------------*/
@import "../lib/css/i18n.css";

/*
	I.		General settings
------------------------------------------------------------------------------------------------------*/
/*
	I.1.		Resets, browser-corrections, defaults
------------------------------------------------------------------------------------------------------*/
html, body {
	overflow: hidden; /* Gets rid of scroll-bars in IE (Setting overflow to html fixes bug in IE7)! */
	height: 100%; /* Fixes height for IE! */
	max-height: 100%; /* Fixes height for modern browsers! */
	width: 100%; /* Fixes width or IE(?) */
	max-width: 100%; /* Fixes width for modern browsers(?) */
}
html {
	font-size: 100.01%; /* Corrects font related browserbugs in IE, Opera and Safari. */
}
body {
	font-family: Times,"Time New Roman",serif;
	font-size: 16px;
	background: #FEFEFE;
}
/* Neutralizes vertical margin styling. */
html,body,
dl,dd,dt,
form,fieldset,label,input {
    padding: 0;
    margin: 0;
}
/* Neutralizes borders. */
img,fieldset,abbr,acronym {
	border: 0;
}
/* Neutralizes anchors. */
a {
	text-decoration: none;
	color: #000;
	cursor: pointer;
}
/* Remove dotted links */
a:focus {
    outline: none;
}

/*
	I.2.		Typography
------------------------------------------------------------------------------------------------------*/
/* Line-heights */
h1,h2,h3,h4 {
	line-height: 1em;	
}
p {
	line-height: 1.4em;
}
/* Headlines */
h1 {
	position: relative;
	margin: 0;
	text-transform: lowercase;
	font-family: Verdana,Arial,"Helvetica Neue",Helvetica, sans-serif;
	font-size: 2.25em; /* 16 x 2.25 = 36 */
	font-weight: 900;
	letter-spacing: -.01em;
	color: #1C1F19;
}
/* Sublines */
h2,dt {
	margin: 0;
	text-transform: uppercase;
	font-family: Times,"Time New Roman",serif;
	font-size: 1.5em; /* 16 x 1.5 = 24 */
	font-weight: 100;
	letter-spacing: .2em;
	color: #1C1F19;
}
/* Titles */
h3 {
	margin: 1em 0 1em 0;
	font-family: Times,"Time New Roman",serif;
	font-size: 1.125em; /* 16 x 1.125 = 18 */
	font-weight: 700;
	letter-spacing: .05em;
}
h4 {
	margin: 0;
	text-transform: lowercase;
	font-family: Times,"Time New Roman",serif;
	font-variant: small-caps;
	font-weight: 500;
	letter-spacing: .1em;
}
/* Copytext */
p {
	margin-bottom: 1em;
	line-height: 1.4em;
	font-size: 1em;  /* 16 x 1 = 16 */ 
}
/* Semantic enhancements */
em,strong {
	font-weight: 900;
	letter-spacing: .1em;
}
b {
	font-weight: 700;
}
sup {
	font-variant: small-caps;	
}
/* Javascript deactivated */
noscript p {
	background: #FEFF8F;
	margin: 0;
	padding: 1em;	
}
noscript p a {
	font-weight: 700;
	letter-spacing: .1em;	
}
noscript p a:hover {
	text-decoration: underline;	
}
/*
	I.3.		Overrides (Overrides settings from imported CSS-Libs)
------------------------------------------------------------------------------------------------------*/
blockquote {
	width: 25em;
	margin: 0 auto 0 auto;
	padding: 1em 0 0 0;
	overflow: auto;
	font-family: Times,"Time New Roman",serif;
	font-size: 2.25em; /* 16 x 3 = 48 */
	font-weight: 900;
	color: #839074;
	text-align: left;
}
	blockquote[cite]:after {
		margin: 0;
		font-family: Times,"Time New Roman",serif;
		font-size: .6em;
		content: attr(cite);
		color: #849174;
	}
	[lang] q:before,[lang] blockquote p:before,
	[lang] blockquote p q q:before, blockquote[lang] p q q:before, 
	[lang] q:after,[lang] blockquote p:after,
	[lang] blockquote p q q:after, blockquote[lang] p q q:after, 
	[lang] q q:before,[lang] blockquote p q:before, 
	blockquote[lang] p q:before, 
	[lang] q q:after,[lang] blockquote p q:after, 
	blockquote[lang] p q:after {
		line-height: 1em; /* Makes sure Opera doesn't cut off quotes on top. */
		font-family: Times,"Time New Roman",serif;
		color: #849174;
	}


/*
	I.4.		Common classes
------------------------------------------------------------------------------------------------------*/
.irony,.definition,.info {
	color: #849174;	
}
a.definition {
	margin: 0 0 0 -.35em;	
}
a.definition:hover {
	color: #FEFF8F;
}

.fn {
	white-space: nowrap;	
}

/*
	II.		Headquarter (Tabs- and departments-wrapper)
------------------------------------------------------------------------------------------------------*/
#headquarter-wrap {
	overflow: visible; /* Since the container is set to a fixed height, make sure the overflow is visible. */
	height: 15%; /* Makes sure total height adds up to 100% for IE. (For horizontal-scrolling layout with fixed headquarter.) */
	max-height: 15%; /* Makes sure total height adds up to 100% for modern browsers. (For horizontal-scrolling layout with fixed headquarter.) */
	min-height: 15% !important; /* Makes sure total height adds up to 100% for modern browsers. (For horizontal-scrolling layout with fixed headquarter.) */
	margin: 0; /* Resets all margins. */
	padding: 0; /* Resets all paddings! */
}
	#headquarter {
		position: relative; /* Enables z-index. */
		overflow: hidden; /* Use auto, hidden or scroll to clear floats. */
		width: 100%; /* Set width to trigger "hasLayout" in IE lt 7. */
		margin: 0; /* Resets all margins. */
		padding: 0; /* Resets all paddings! */
		z-index: 100; /* Makes sure layer is always up front. */
		border-bottom: .5em solid #849174;
		background: #FFF url(../lib/img/patterns/daydreamer_light.png) 0 0;
	}
/*
	II.1.		Research-form
------------------------------------------------------------------------------------------------------*/
#headquarter form {
	overflow: hidden; /* Use auto, hidden or scroll to clear floats. */
	width: 100%; /* Set width to trigger "hasLayout" in IE lt 7. */
	margin: 0; /* Resets all margins. */
	padding: 0; /* Resets all paddings! */
	font-family: Verdana,Arial, "Helvetica Neue", Helvetica, sans-serif;
	font-size: .8em;
	background: #839074 url(../lib/img/patterns/daydreamer.png) 0 0;
}
	#headquarter fieldset {
		float: left;
		display: inline;
		margin: 1em .25em 1em 1em; /* Resets all margins. */
		padding: 0; /* Resets all paddings! */
		border: none;
	}
		#headquarter legend {
			display: none;
			visibility: hidden;
		}
		/* Label is set not to display with javascript, but will still show if javascript is turned off. */
		#headquarter label {
			width: 15em;
			text-align: right;
			margin: 0 1em 0 0;	
		}
		/* Input-field */
		#headquarter input  {
			width: 15em;
			line-height: 1em;
			margin: 0; /* Resets all margins. */
			padding: .1em .5em .1em .5em; /* Use paddings to get vertically aligned text in Firefoy as well! */
			font-family: Verdana,Arial, "Helvetica Neue", Helvetica, sans-serif;
			font-size: 1em;
			text-transform: lowercase;
			font-variant: small-caps;
			background: #FEFF8F;
			border: .3em solid #FFF;
			border-radius: .3em;-moz-border-radius: .3em;-webkit-border-radius: .3em;-khtml-border-radius: .3em;
			background-clip: border;-webkit-background-clip: border;-moz-background-clip: border;-khtml-background-clip: border;
		}
		#headquarter input:focus {
			background: #FFF;
			text-transform: none;
			font-variant: normal;
			border: .3em solid #D22527;
			color: #000;
		}
		/* Select-field */
		#headquarter select {
			line-height: 1em;
			margin: 0 0 0 .25em; /* Resets all margins. */
			padding: 0 0 0 .5em; /* Use paddings to get vertically aligned text in Firefoy as well! */
			font-family: Verdana,Arial, "Helvetica Neue", Helvetica, sans-serif;
			font-size: 1em;
			text-transform: lowercase;
			font-variant: small-caps;
			background: #FEFF8F;
			border: .3em solid #FFF;	
			border-radius: .3em;-moz-border-radius: .3em;-webkit-border-radius: .3em;-khtml-border-radius: .3em;
			background-clip: border;-webkit-background-clip: border;-moz-background-clip: border;-khtml-background-clip: border;
			
		}
		#headquarter select:focus {
			border: .3em solid #D22527;
			color: #000;
		}
			#headquarter optgroup {
				margin: 1em .5em 1em .5em;
				text-transform: none;
				font-variant: normal;
			}
			#headquarter optgroup option {			
				line-height: 1.6em;
				text-transform: none;
				font-variant: normal;
			}
				#headquarter option {
					padding: 0 1em 0 1em; /* Resets all vertical paddings and adds horizontal paddings! */
					color: #000;
					background: transparent;		
					text-decoration: none;
					letter-spacing: normal;
					font-weight: normal;
					background: url(http://fam-fam-icons-on-rails.googlecode.com/svn/trunk/icons/bullet_toggle_plus.png) no-repeat 100% 50%;
				}
				#headquarter option:hover {
					color: #FFF;
					background: #463B37 url(http://fam-fam-icons-on-rails.googlecode.com/svn/trunk/icons/bullet_toggle_plus.png) no-repeat 100% 50%;	
				}
/*
	II.2.		Departments (Subdivisions of Headquarter)
------------------------------------------------------------------------------------------------------*/
#departments {
	/*clear: both;*/
	overflow: hidden; /* Use auto, hidden or scroll to clear floats. */
	width: 100%; /* Set width to trigger "hasLayout" in IE lt 7. */
	background: transparent; /* Usually this would be set to tabs background. */
	margin-bottom: 1.4em; /* Set to tab-height when navi is positioned absolute! */
}
	#departments div,#departments dl {
		margin: 1em;
		padding: 1em;
		background: #839074 ;
		color: #FFF;
		border: 1px solid #FFF;	
	}
	#departments .inactive {
		opacity: .25; /* Standard: FF gt 1.5, Opera, Safari */
		filter: alpha(opacity=25); /* IE lt 8 */
		-ms-filter: "alpha(opacity=25)"; /* IE 8 */
		-khtml-opacity: .25; /* Safari 1.x */
		-moz-opacity: .25; /* FF lt 1.5, Netscape */		
	}
		#departments dt {
			display: block;
			margin: 0 0 .5em 0;
			color: #FFF;
		}
		#departments a {
			color: #FFF;
		}
		#departments a:hover {
			color: #000;
			background: #FFF url(../lib/img/patterns/daydreamer_light.png) 0 0;
		}
		#departments img {
			margin: 0 .5em 0 0;	
		}
		#departments ul {
			list-style-type: none;
			padding: 0;
			margin: 0;		
		}
			#departments li,#departments dd {
				line-height: 1.6em;	
			}
				#departments li a,#departments dd a {
					display: block; /* Makes sure that item stretches over the entire width set in the ul-element. */
					outline: none; /* Removes dotted lines in Firefox. */
				}			
				#departments li a:hover {
					color: #000;	
				}
					#departments li a img {
						display: inline;
						border: none;
						margin: 0 .5em 0 1em;
						line-height: 1.6em;
						opacity: .75; /* Standard: FF gt 1.5, Opera, Safari */
						filter: alpha(opacity=75); /* IE lt 8 */
						-ms-filter: "alpha(opacity=75)"; /* IE 8 */
						-khtml-opacity: .75; /* Safari 1.x */
						-moz-opacity: .75; /* FF lt 1.5, Netscape */	
					}
					#departments li a:hover img {
						opacity: 0; /* Standard: FF gt 1.5, Opera, Safari */
						filter: alpha(opacity=0); /* IE lt 8 */
						-ms-filter: "alpha(opacity=0)"; /* IE 8 */
						-khtml-opacity: .0; /* Safari 1.x */
						-moz-opacity: .0; /* FF lt 1.5, Netscape */		
					}
/*
	II.3.		Main Navigation
------------------------------------------------------------------------------------------------------*/
#navi {
	/*float: left;*/
	position: absolute;
	bottom: 0;
	left: 0;
	display: inline;
	overflow: hidden;
	margin: 0;
	padding: 0;
	z-index: 200;
}
	#navi li {
		display: inline;
		float: left;
		margin: 0;
		line-height: 1.4em;
		text-transform: lowercase;
		font-family: Times,"Time New Roman",serif;
		font-variant: small-caps;	
	}
		#navi li a {
			position: relative;
			display: block;
			margin: 0;
			padding: 0 1em 0 1em; /* Resets all vertical paddings and adds horizontal paddings! */
			font-weight: 100;
			color: #000;
		}
		#navi li a:hover,#navi a.active {
			font-weight: 900;
			letter-spacing: .2em;
		}
		#navi a.active {
			margin: 0;
			padding: 0 1em 0 1em; /* Resets all vertical paddings and adds horizontal paddings! */
		}
		#navi li.lang {
			font-size: 70%;
			line-height: 2em;
			font-weight: 700;	
			margin: 0; /* Resets all vertical paddings and adds horizontal paddings! */
			color: #000;
			padding: 0 .5em 0 .5em; /* Resets all vertical paddings and adds horizontal paddings! */
			background: #FFF;
		}
		#navi li.lang a {
			position: relative;
			display: block;
			margin: 0;
			padding: 0;
			line-height: 2em;
			font-weight: 700;
			color: #839074;
		}
		#navi li.lang a:hover {
			letter-spacing: normal;	
			color:#000;
		}

/*
	II.4.		(Right-floating) Tabs
------------------------------------------------------------------------------------------------------*/
ul#tabs {
	overflow: hidden; /* Use auto, hidden or scroll to clear floats. */
	/*float: right;*/
	position: absolute;
	right: 0;
	bottom: 0;
	display: inline;
	margin: 0; /* Resets all margins. */
	padding: 0; /* Resets all paddings! */
	list-style-type: none; /* Hides list-bullets. */
	text-transform: lowercase;
	font-family: Times,"Time New Roman",serif;
	font-variant: small-caps;
}
	#tabs li {
		float: right;
		display: inline; /* Fixes IE Double Margin Float Bug (Applied margin in float direction doubles).*/
		margin: 0 0 0 .2em; /* Sets margin opposite to float-direction an reset all margins. */
		padding: 0; /* Resets all paddings! */
		line-height: 1.4em;
	}
		#tabs li.active {
			padding: 0 .5em 0 .5em; /* Resets all vertical paddings and adds horizontal paddings! */
		}
		#tabs li a {
			display: block; /* Makes sure that item stretches over the entire width set in the ul-element. */
			outline: none; /* Removes dotted lines in Firefox. */
			padding: 0 .5em 0 .5em; /* Resets all vertical paddings and adds horizontal paddings! */
			line-height: 1.4em;
			color: #FFF;
			background: #839074; /* Usually this would be set to departments background. */		
			text-decoration: none;
			letter-spacing: .05em;
			font-weight: 300;
		}
		#tabs li a.active {
			padding: 0 .5em 0 .5em; /* Resets all vertical paddings and adds horizontal paddings! */
			font-weight: 900;
			letter-spacing: .2em;
			color: #463B37;
			background: transparent;
		}
		#tabs li a:hover {
			color: #463B37;
			background: transparent;
		}


/*
	III.		Content
------------------------------------------------------------------------------------------------------*/
#content-wrap {
	overflow: auto; /* Enable manual scrolling incase javascript is disabled! */
	position: relative; /* Set position to fix animated scroll bug in IE! */
	height: 85%; /* Makes sure total height adds up to 100% for IE. (For horizontal-scrolling layout with fixed headquarter.) */
	max-height: 85%; /* Makes sure total height adds up to 100% for modern browsers. (For horizontal-scrolling layout with fixed headquarter.) */
	width: 100%; /* Makes sure container fills total with of screen for IE! */
	max-width: 100%; /* Makes sure container fills total with of screen for modern browsers! */
}
	#content {
		position: relative; /* Make parent just incase you want to position content absolute. */
		width: 1000em; /* Set width (much) wider than content for IE! */
		min-width: 1000em !important; /* Set width (much) wider than content for modern browsers! */
	}
/*
	III.1.		Header (Headline, subline)
------------------------------------------------------------------------------------------------------*/
#header {
	width: 70em;
	margin: 0 0 2em 0;
	text-align: left;
}
/*
	III.2.		Main Content ("Frontpage")
------------------------------------------------------------------------------------------------------*/
#home {
	float: left;
	width: 70em;
	margin: 0 10em 0 0;
	overflow: hidden;
	padding: 2em;
	text-align: center;
}
/*
	III.3.		Playground
------------------------------------------------------------------------------------------------------*/
#playground {
	float: left;
	margin: 0 10em 0 0;
	padding: 2em;	
}
	#playground #introduction,#playground .showcase {
		float: left;
		width: 54em;
		padding: 0 2em 0 2em;
		text-align: justify;	
	}
	#playground .content {
		margin-top: 2em;	
	}
	#playground p a:hover {
		text-decoration: underline;	
	}
.subnavi {
	height: auto;
	overflow: hidden;
	margin: 1em 0 1em 0;
	padding: 0;
	list-style-type: none;
}
.showcase .subnavi {
	text-align: right;
}
	.subnavi li {
		margin: 0;
		line-height: 1.4em;
		text-transform: lowercase;
		font-family: Times,"Time New Roman",serif;
		font-variant: small-caps;	
	}
		.subnavi li a {
			position: relative;
			display: block;
			margin: 0;
			padding: 0 1em 0 1em; /* Resets all vertical paddings and adds horizontal paddings! */
			font-weight: 100;
			color: #000;
		}
		#introduction .subnavi li a:before {
			margin: 0 .5em 0 0;
			content: "\002A";
			color: #839074;
		}
		.subnavi li a:hover,.subnavi a.active,#introduction .subnavi li a:hover:before {
			font-weight: 900;
			letter-spacing: .2em;	
			text-decoration: none;
			color: #FFF;
			background: #839074;
		}
		.subnavi a.active {
			margin: 0;
			padding: 0 1em 0 1em; /* Resets all vertical paddings and adds horizontal paddings! */
		}
/* 1. Wrapping Container */
div.img-wrap {
	float: left;
	position: relative; /* Make parent, so inner-boxes can be positioned absolute within the container. */
	height: 256px; /* Set a fix height that defines the cropped area. */
	width: 256px;
	margin: 0 1em 1em 0;
	padding: 0; /* Reset all paddings! */
	background: #849174;
	border: 1px solid #FFF;
}

/* 2. Inner Boxes */
.img-wrap div {
	position: absolute; /* Makes sure the wrapper-container doesn't expand. */
	width: 256px;
	margin: 0; /* Reset all margins! */
	padding: 0; /* Reset all paddings! */
}
	/* Image-Box */
	.img-box {
		overflow: hidden;
		left: 0;
		top: 0;
		width: 256px;
		height: 256px; /* Set to wrapper-container height. */
	}
		/* "Cropped" Image */
		.img-box img {
			margin: 0; /* Position image by applying negative margins to show different areas. */
			z-index: 1;	 /* Just to make sure the layer is way in the back ... */
		}
	/* Text-Box */
	.txt-box {
		overflow: hidden; /* Has no effect on IE 6 and IE 7 */
		bottom: 0; /* Set to image-box width. */
		left: 0;
		width: 256px;
		height: 56px;
		margin: 0;
		padding: 0;
		text-align: center;
	}
	.txt-box a {
		display: block;
		width: 256px;
		height: 56px;
		line-height: 2em;
		padding: 0;
		margin: 0;
		opacity: .75; /* Standard: FF gt 1.5, Opera, Safari */filter: alpha(opacity=75); /* IE lt 8 */-ms-filter: "alpha(opacity=75)"; /* IE 8 */-khtml-opacity: .75; /* Safari 1.x */-moz-opacity: .75; /* FF lt 1.5, Netscape */
		color: #FEFF8F;
		background: #849174;
	}
	.txt-box a:hover {
		opacity: 1; /* Standard: FF gt 1.5, Opera, Safari */filter: alpha(opacity=100); /* IE lt 8 */-ms-filter: "alpha(opacity=100)"; /* IE 8 */-khtml-opacity: 1; /* Safari 1.x */-moz-opacity: 1; /* FF lt 1.5, Netscape */	
		color: #FFF;
	}
/*
	III.4.		About
------------------------------------------------------------------------------------------------------*/
#about {
	float: left;
	width: 54em;
	margin: 0 10em 0 0;
	padding: 2em 10em 0 10em;	
}
	#about dd + dt {
		margin: 2em 0 .5em 0;
	}
	#about dd {
		line-height: 2.1em;
	}
	.ipa {
		font-size: 200%;	
	}
	#about ol {
		margin: 0;
		padding: 0;
		list-style-position: inside;	
	}
/*
	III.5.		Resume
------------------------------------------------------------------------------------------------------*/
#resume {
	float: left;
	width: 54em;
	margin: 0 10em 0 0;
	padding: 2em;	
}
/* hresume */
/* hide single microformat items */
.hresume .coord,.hresume .honorific-prefix,
.hresume .nick-name,.hresume .tel .type {
	display: none;
	visibility: hidden;
}
.hresume .photo {
	float: left;
	margin: 0 1em 1em 0;
}
.hresume .rating {
	margin: 0 0 0 1em;
	color: #839074;
	font-style: italic;	
}
.hresume .date-box {
	margin: 0 1em 0 0;
	color: #839074;	
}

/* hResume "kwicks" styles */
.hresume {
	list-style: none;
	position: relative;
	margin: 0;
	padding: 0;
	text-align: left;
}
	.hresume a:hover{
		color: #000;
		text-decoration: underline;	
	}
	.hresume li {
		display: block;
		overflow: hidden;
		width: 12em;
		height: 5em;
		min-height: 5em !important;
		padding: 0;
		cursor: pointer;
		color: #FFF;
		background: #839074;
	}
	.hresume li.active {
		height: auto;
		width: 12em;
		color: #000;
		background: transparent;		
	}
		.hresume li dl {
			margin: .5em;
			line-height: 1.6em;	
		}
		.hresume li.education dd,.hresume li.work dd,.hresume li.military dd {
			line-height: 1em;	
		}
		.hresume li.education .title,.hresume li.military .title {
			color: #839074;
			font-style: italic;	
		}
		.hresume li.work .title {
			font-weight: 700;
			letter-spacing: .05em;	
		}
			.hresume li dt {
				margin-bottom: 1em;	
			}
			.hresume li.education dd,.hresume li.work dd {
				margin-bottom: .5em;	
			}
			.hresume li dl dt {
				font-size: .8em; /* Shrinks titles when kwicks is in inactive state. */	
				font-weight: 700;
				letter-spacing: .05em;
				color: #FFF;
			}
			.hresume li.active dl dt {
				font-size: 1.125em; /* Brings titles back to normal size when kwicks is in active state. */
				font-weight: 700;
				letter-spacing: .05em;
				color: #000;
			}
			.hresume li dl dd {
				display: none; /* Hides content when kwicks is in inactive state. */	
			}
			.hresume li.active dl dd {
				display: block; /* Shows content when kwicks is in active state. */	
			}
				.hresume dl dd p {
					margin: 0 0 1em 0;	
				}
				.hresume dd dl {
					margin: 0 0 0 1em;	
				}
				.hresume li.education dd dl {
					margin: 0;	
				}
					.hresume li dl dd dt {
						margin-bottom: .5em;
						font-size: 1em; /* 16 x 1 = 16 */
						font-weight: normal;
						letter-spacing: normal;
						text-transform: none;
						font-variant: normal;
					}
					.hresume li.personal dd dl dt {
						display: inline;
						float: left;
					}

/*
	III.6.		The End
------------------------------------------------------------------------------------------------------*/
#end {
	position: absolute;
	top: 10em;
	right: 2em;	
}