@charset "UTF-8";
/* CSS Document */
/*this version uses absolute/relative positioning between the side columns and their respective faux column containers. */
/* se notes on min and max width above
/* the content is first in the markup followed by the two side columns*/
/* this "content-first" markup is good for accessability and search engine optimization */
body {
	text-align:center; /* centers the layout in IE */
	background-color: #1B465D;
	background-image: url(img_pres/foucault-pendulum-bg.jpg);
	background-repeat: repeat-x;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: 14px;
	line-height: 1.4;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	}
* {margin:0; padding:0;} /* removes defaults of all elements */
div#mainwrap {min-width:780px; max-width:1060px; /* sets the max and miin widths */
	margin-left:auto; margin-right:auto; /* centers the layout in SCBs */
	text-align:left; /* stops elements inheriting the body's text-center */
	border-style:groove;
	border-width:8px;
	border-color:#414958;}
div#header {
	background-image: url(img_pres/pendulum-bnr2.jpg);
	background-repeat: no-repeat;
	height: 144px;
	}
div#contentarea { background-color:#FFF; /* ensures bg is white if faux graphic doesn't load */
	background:url(img_pres/faux_left.gif) repeat-y top left; /* faux columns graphic left column */
	position:relative; /* set positioning context  for left sidebar div */
	}
div#contentarea2 {background-color:#FFF; /* ensures bg is white if faux graphic doesn't load */
	background:url(img_pres/faux_right.gif) repeat-y top right; /* faux columns graphic right column */
	position:relative; /* set positioning context  for right sidebar div */
	}
div#column1 {width:200px; /* left col width */
	position: absolute; /* contextual positioning in contentarea container */
	top:0px; left:0px; /*positions col within contentarea container */
	background-color: #1B465D;
 /* left col bg color - (change color to see divs is position : ) */
	overflow:hidden; /* prevents overlarge elements breaking out of column */
	}

div#column2 {background-color:#FFF; 
	margin:0 200px 0 200px; /* left and right margins to make room for sidebars */
	padding: 10px 0;

	}
div#column3 {
	width:200px;
	position:absolute;  /* contextual positioning in contentarea container */
	top:0px;
	right:0px; /*positions col within contentarea container */
	background-color:#DDD; /* left col bg color - (change color to see divs is position : ) */
	overflow:hidden; /* prevents overlarge elements breaking out of column */
	background-color: #1B465D;
	padding: 10px 0;
	font-size: 11px;
	text-align: left;
	}
div#footer {
	text-align:center;
	padding: 10px 0;
	background-color: #1B465D;
	} /* temp footer styles */

/* some basic styles for placeholder content */
h1 {
	text-align: center;
	font-size: 24px;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
h3 {
	font-size: 16px;
	text-align: center;
	color: #CB9E6E;
}	


/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
ul.nav {
	list-style: none; /* this removes the list marker */
	border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
}
ul.nav li {
	border-bottom: 1px solid #666; /* this creates the button separation */
}
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 5px 5px 5px 15px;
	display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	text-decoration: none;
	color: #CB9E6E;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	color: #FFF;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color:#414958;
	text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #4E5869;
	text-decoration: none;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}
img a:link {text-decoration:none;}
#photocredit {
	font-size:12px;
	font-style:italic;
	text-align: center;
}
div#column3 p {color: #FFF;}
div#column3 ul{
	list-style-type:circle;
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}
div#column3 li{
	color: #FFF;
}

/* here follows the brillant "no-extra-markup" clearing method devised by Tony Aslett - www.csscreator.com */
/* simply add the clearfix class to any container that must enclose floated elements */
/* read the details of how and why this works at http://www.positioniseverything.net/easyclearing.html */
.clearfix:after {
    content: ".";              /* the period is placed on the page as the last thing before the div closes */
	display: block;          /* inline elements don't respond to the clear property */ 
    height: 0;                  /* ensure the period is not visible */
    clear: both;               /* make the container clear the period */
    visibility: hidden;	     /* further ensures the period is not visible */
}

.clearfix {display: inline-block;}   /* a fix for IE Mac */

/* next a fix for the dreaded Guillotine bug in IE6 */
/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */
/* end of "no-extra-markup" clearing method */
#contentarea #contentarea2 #column2 p {
	text-align: left;
}



#column2 table {
	margin-left:auto; margin-right:auto;
	text-align: center;
	color: #1B465D;

}
#column2 td {
	padding:2;
}
#contact {
	color: #1B465D;
	margin-left:150px;
	margin-right:auto;
	text-align: left;
	line-height: 2.0;
}
#troubleshoot {
	list-style-position: outside;
	list-style-type: disc;
	text-align: left;
	margin-left: 48px;
}
div #column2 #manuals { text-align:center; }
