@charset "UTF-8";
/* version 24th Jan 2021 PK*/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
	font-family: inherit;
	position: relative;
	right: auto;
	bottom: auto;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption,footer, header, hgroup, menu, nav, section {
	display: block;
	margin-right: 0 auto;
	margin-left: 0 auto;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* End of RESET section */

/* modified 21st January 2021 by PK*/

/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
.container {
	width: 60%;
	max-width: 1500px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
	min-width: 500px;/* a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. */
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
}

/* ~~ This is the layout information. ~~
1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.
*/

.content {
	padding: 10px 0;
}
body {
	overflow-x: hidden;
	background-color:rgb(255,255,255);
	font-family: Arial, Helvetica, sans-serif;
}
a {text-decoration:none; }
a:link {color:rgb(100,100,100); }
a:hover { color:rgb(200,200,200); }
a:visited { color:rgb(60, 60, 60); }

/* Fade in tabs */
@-webkit-keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}

.figure {
	margin: 10px 5px;
}

h6 {font-size:1.5vw;}

.name {
	display:block;
	position:relative;
	width:700px;
	color: rgb(255,255,255);
	top: 10px;
	bottom: 50px;
}
#navbar {
	display:block;
	position:relative;
	width:772px
	height:41px;
	top: 20px;
	font-size: 22pt;
	letter-spacing: 0.06em;
	color:rgb(150, 150, 150);
}
