/* CSS Length and Size values can be specified in % OR in the following units : 
								pt		:	points			:	72 pts to an inch
								em		:	ems				:	width & height of capital M in current font
								ex		:	exs				:	height of lowercase x in current font
								pc		:	picas			:	6 pcs to an inch, 1 pc = 12 pts
								px		:	pixels			:	typically 72 to 90 px per inch
								in		:	inches			:	1 inch to an inch
								mm		:	millimeters		:	25.4 mm to an inch
								cm		:	centimeters		:	2.54 cm to an inch
  Size keywords include :  [ xx-small | x-small | small | medium | large | x-large | xx-large ] 
*/

* {
	margin:0;
	padding:0;
	border:none;
	z-index:0;
}

html, body {
	height:100%;
}

body {
	font-family:arial, sans-serif;
	color:#000;
	font-size:82%;
	background:#C6C1D7; /* was a brownish color as #DBC880;  then changed to greenish #82A776 then to purplish #D2C1D7 */ 
}

#header {
	position:fixed; /* fixed | relative */
	top:0em;
	left:0em;
	z-index:99;
	width:100%;
	height:4.5em; /* was 6em */ 
	margin:0px;
	padding:0.5em;
	color: #FFF;
	font-weight:bold;
	text-align:center; /* left | right | center | justify */ 
	line-height:150%;
	background-color:#496440;
	/*background-image:url('/cgi-bin/viewer.pl?file=/var/www/main/html/topbar.jpg'); */
}


/*  FROM http://davidchambersdesign.com/css-fixed-position-headers/ 
	This approach adds top padding (equal to the height of the header) to each of the block-level elements in the content area. 
	This ensures that elements are in the correct position when jumped to using #id.
*/
/* h1, p
{
	padding-top: 6em;
	margin-bottom: -6em;
}
*/
/* This approach introduces meaningless markup. Each of these divs is offset by the height of the header, ensuring that the element of interest is not obscured by the header. */
div.id
{
	position: relative; /* fixed | relative */
	top: -7em;
}


#clearheader {
	height:6em;
	clear:both; /* none | left | right | both | inherit */ 
}

#outer{
	min-height:100%;
	margin-left:200px;
	margin-right:200px;
	margin-bottom:-1em;
	margin-top:-6em;
	background:#FFF;
}

#left, #right {
	/*position:relative;*/
	width:200px;
	text-align:center;
}

#left {
	position:relative;
	float:left;
	z-index:100;
	margin-left:-199px;
	left:-1px;
}

#right {
	float:right;
	position:fixed;
	margin-right:-199px;
	right:-1px;
}

#middle {
	width:95%;
	float:left;
	position:relative; /* fixed | relative */
	z-index:1;
	margin-left:0;
	margin-right:0;
	padding-left:2em;
	padding-right:-4em;
}

p {
	padding: 1em 1em 0 1em; /* -top -right -bottom -left */ 
}

ul {
	margin-top:1em;
	margin-left:2em;
	list-style-type:square; /* disc | circle | square | decimal | decimal-leading-zero | lower-roman | upper-roman | lower-greek | lower-latin | upper-latin | armenian | georgian | lower-alpha | upper-alpha | none | inherit */ 
}

#clearfooter {
	clear:both; /* none | left | right | both | inherit */ 
	height:1em;
}

#footer {
	position:fixed; /* fixed | relative */
	bottom:0px;
	left:0px;
	width:100%;
	height:1em;
	/*line-height:100px; /* px | em */
	clear:both;
	z-index:98;
	background-color:#496440;
	border-top:1px solid #aaaaaa;
	padding:2px;
	font-size:smaller;
	/*font-weight:bold; */
	/*text-align:center; */
	color: #FFF;
}
.cleared {
	clear:both; /* none | left | right | both | inherit */ 
}
.hidden {
	display:none;
}
.centered {
	text-align:center; /* left | right | center | justify */ 
	margin-left:auto;
	margin-right:auto;
}
.right {
	text-align:right; /* left | right | center | justify */ 
}
.bigger {font-size: larger}

#hcard-Gary-Grossman
{
	width:25em;
	margin-left:auto;
	margin-right:auto;
}

.vcard {
	margin: 5px 10px;
}

.vcard .photo {
	float: right;
	margin: 4px 0 0 0;
	padding: 2px;
	border: 1px solid #ddd;
}

.vcard h1 {
	margin: 0;
	padding: 0;
	font-size: 185%;
}

.vcard h2 {
	margin: 0;
	padding: 0;
	font-size: 100%;
	font-weight: normal;
	color: #666;
}

td.f {
	width: 75px;
	padding-right: 5px;
	vertical-align: top;
	text-align: right;
	font-weight: bold;
}

td.v {
	vertical-align: top;
}

tr.spacer {
	height: 10px;
	font-size: 0px;
}

.badge
{
	text-align: right; /* left | right | center | justify */ 
	font: 9px Geneva, Verdana, sans-serif; 
	padding: 0 1.0em 1px 0; 
	border: 1px solid #000; 
	background: #496440; 
	color: #fff; text-decoration: none;
	white-space:nowrap;
}


#nav {
	width:145px;
	position:fixed;
	float:left;
	left: 0px;
	top:125px;
}

#navbar {
	font-family:Arial, Helvetica, sans-serif;
}

#navbar ul { 
	list-style-type: none; /* disc | circle | square | decimal | decimal-leading-zero | lower-roman | upper-roman | lower-greek | lower-latin | upper-latin | armenian | georgian | lower-alpha | upper-alpha | none | inherit */ 
	list-style-image: none;
	/*width:135px;*/
	float:left;
	margin:0px;
	padding:0px;
}

#navbar li {
	list-style-type: none; /* disc | circle | square | decimal | decimal-leading-zero | lower-roman | upper-roman | lower-greek | lower-latin | upper-latin | armenian | georgian | lower-alpha | upper-alpha | none | inherit */ 
	list-style-image: none; 
	clear:both; /* none | left | right | both | inherit */ 
	text-align:right; /* left | right | center | justify */ 
	padding-top:2px;
	padding-bottom:0px;
	text-transform:uppercase;
	font-size:.85em;
	font-weight:normal;
	letter-spacing:.1em;
	width:135px;
	margin-left:0px;
	margin-top:0px;
	margin-bottom:0px;
}

#navbar a {
	display: block;
	width: 14em;
	height: 1em;
	text-align: center;
	text-decoration:none;  /* none | underline | overline | line-through | blink */ 
	color: #496440; /* was #3366ff; then #496440; */
	padding-top: 3px;
	padding-bottom: 3px;
	background: #eeeeee;
	border: solid 1px #666666;
}
#navbar a:active, a:hover {
	background: #99ccff;
}

table.presentations
{
	margin:1em;
	border-style:none; /* none | dotted | dashed | solid | double | groove | ridge | inset | outset */ 
	border-collapse:collapse; /* collapse | separate | inherit */ 
	border-spacing:10px; 
}
td.presentations 
{
	padding:1em;
	vertical-align:top; /* baseline | bottom | middle | top | sub | super | text-top | text-bottom | <length> | <percentage> */ 
}
div.presentation
{
	text-decoration:none; /* none | underline | overline | line-through | blink */ 
	text-transform:none; /* capitalize | uppercase | lowercase | none */ 
	font-style: italic; /* normal | italic | oblique | inherit */ 
	font-weight: bold; /* bold | bolder | lighter | inherit | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900 */ 
	font-variant: small-caps; /* normal | small-caps | inherit */ 
}

a.license:link {color: #ffffff; text-decoration: none; }
a.license:active {color: #ffffff; text-decoration: none; }
a.license:visited {color: #ffffff; text-decoration: none; }
a.license:hover {color: #ff0000; text-decoration: none; }

.backtotop
{
	text-align:left; /* left | right | center | justify */ 
	font-style: italic; /* normal | italic | oblique | inherit */ 
	font-size:smaller; 
}

#addthisbutton
{
	position:fixed;
	bottom:1px;
	right:5px;
	z-index:99;
}

