/* Layout adapted from from Position is Everything at http://www.positioniseverything.net/piefecta-rigid.html */
body {
	background-color:#708090;
	color: #000; 
	font-family: Verdana,sans-serif; 
	margin-top: 15px;
}

html, body {
	margin: 0; 
	padding: 0; 
	border: 0;
}

body {
	margin: 30px 0;
}

p  {
	margin: 6px 0; 
	padding: 0 6px;
}

.clear { 
	clear: both; 
}

a {
	text-decoration: none; 
}

.alignright {
	margin-top: 0; 
	text-align: right; 
	clear: both;
}

.small {
	font-size: .9em;
}

.wide {
	width: 100%; 
}

.wide p {
	margin: 0; 
	padding: 5px; 
	position: relative;
}

.top {
	border-bottom: 1px solid #000;
	font-size: 1.6em;
	font-weight: bold;
	text-align: center;
	height:75px;
}

.top a {
	color: black; 
}

.bottom {
	border-top: 1px solid #000; 
	position: relative;
	text-align: center;
}


.to-right {
	float: right;
}

.to-left {
	float: left;
}

#tagContent {
	padding-left: 8px;
}
#tagCloud {
	margin-top: 20px;
	padding-left: 30px;
	padding-right: 30px;
}
.tagCloud1 {
	font-size: 26pt;
}
.tagCloud2 {
	font-size: 24pt;
}
.tagCloud3 {
	font-size: 22pt;
}
.tagCloud4 {
	font-size: 20pt;
}
.tagCloud5 {
	font-size: 18pt;
}
.tagCloud6 {
	font-size: 16pt;
}
.tagCloud7 {
	font-size: 14pt;
}
.tagCloud8 {
	font-size: 12pt;
}
.tagCloud9 {
	font-size: 10pt;
}
.tagCloud10 {
	font-size: 8pt;
}


/*XXXXXXXXXXXXXXXXX Primary layout rules XXXXXXXXXXXXXXXX*/

/******************************************************************************** 
To adjust the side col widths, or the vertical col dividers, a certain set of values must be changed
all at the same time and by exact amounts or problems will result. Each of these group's member values
have been marked off with comments that start with "Critical...". For example, if the left col width needs
to be changed then all the values marked "Critical left col dimension value" MUST have their pixel values
altered by the same amount. Certain of these left col width values are marked "(moves inversely)", and 
these get changed by the same pixel amount but inversely to the other values. So if margin-left on .outer
is increased by 10px, then the width of .outer must decrease by 10px, and so on.

To change the width of the entire layout, .wrapper, .outer, .float-wrap, and .center all get changed together,
and only after that is it safe to change col or divider widths. Remember, even one small mistake will degrade or 
even break the layout, so be very careful! it's possible to "loosen" the layout so small errors aren't so messy,
but then it becomes hard to finely control text spacing. 

For spacing within the cols, it's best to apply margins on content elements inserted into the cols, 
because padding directly on those col elements will change their widths, breaking the layout. 

Certain hiding hacks have been used extensively in this layout, so here is a quick explaination of them.

The Tan hack:

* html .anyelement {rules read only by IE/Win and IE/Mac}

The Mac-hack:  (first the active comment you are reading now must be closed...) */

/* \*/

/* */

/*...Back in comment mode now. Anything between those two comment lines will be hidden from 
IE/Mac. Don't use any comments within this hack or it will close prematurely and IE/Mac will begin 
reading before it should.

The above two hacks are combined so as to feed rules only to IE/Win. Proper use of backslash escape 
characters inside property names used in the Holly hack can further segregate rules to be read by only 
IE6 from rules for IE5.x/Win. 

These hiding hacks, along with several other fixes, make possible this formerly impossible layout.
It is highly unlikely that new browsers will have any problem with these valid hiding hacks, and 
Microsoft does not plan any browser changes soon that would alter the proper operation of the layout.
********************************************************************************/


.wrapper {
margin: 0 auto;
width: 950px;
text-align: left;
/*background: url(images/pr-background.jpg) repeat-y;*/
border: 1px solid #000;
}

* html .wrapper {   /*** IE5.x/win box model fix ***/
width: 952px;
wid\th: 950px;
}

.outer {
position: relative; /*** IE needs this or the contents won't show outside the parent container. ***/
margin-left: 200px;    /*** Critical left col dimension value ***/
width: 622px;   /*** Critical left and right col/divider dimension value (moves inversely) ***/
background: #fff;  /*** Sets background of center col***/
border-left: 1px solid #000;   /*** Critical left divider dimension value ***/
border-right: 1px solid #000;   /*** Critical right divider dimension value ***/
}

* html .outer {   /*** IE5.x/win box model fix ***/
width: 624px;   /*** Critical left and right col/divider dimension value (moves inversely) ***/
wid\th: 622px;   /*** Critical left and right col/divider dimension value (moves inversely) ***/
}

.float-wrap {
float: left;
width: 622px;   /*** Critical left and right col/divider dimension value (moves inversely) ***/
margin-right: -1px;   /*** Static fix ***/
}

.content {
float: right;
width: 622px;   /*** Critical left and right col/divider dimension value (moves inversely) ***/
margin-bottom: -1px;   /*** Fixes a variance in IE/win for the green AP bottom boxes ***/
/* \*/
margin-left: -1px; 
/* Hidden from IE-mac */
}

.left {
position: relative; /*** IE needs this or the contents won't show outside the parent container. ***/
width: 202px;    /*** Critical left col/divider dimension value ***/
margin-left: -201px;    /*** Critical left col/divider dimension value ***/
}

* html .left {
float:left;	
}

*>html .left {width:151px;}   /*** Fix only for IE/Mac ***/

.container-left {
width: 200px;    /*** Critical left col dimension value ***/
padding-bottom: 110px;   /*** To keep content from going underneath the AP bottom boxes ***/ 
}

.right {
float: left; 
position: relative; /*** IE needs this or the contents won't show outside the parent container. ***/
width: 128px;    /*** Critical right col/divider dimension value ***/
margin-right: -126px;    /*** Critical right col/divider dimension value ***/
margin-left: -1px;   /*** Static fix ***/
}

/* \*/
* html .right {
margin-left: 0px; 
margin-right: -500px; 
mar\gin-right: -128px;
}
/* */

/*** These commented-out rules below are there to explain the "Critical" info 
	for the rules above, because comments must not appear within the Mac-hack.
	The "rules" below are not active, they are just for teaching purposes. ***/

/*
* html .right {
margin-left: 0px;    *** Critical right divider dimension value ***
margin-right: -500px;    *** IE5.x/win fix, must be above a critical number, but very high values appear okay ***
mar\gin-right: -152px;    *** Critical right col/divider dimension value ***
}
*/


.container-right { 
/* \*/width: 126px;/* Hidden from IE-Mac */   /*** Critical right col dimension value ***/
margin-left: 3px;    /*** Critical right divider dimension value ***/
padding-bottom: 110px;   /*** To keep content from going underneath the AP bottom boxes ***/
}

/* \*/
* html .container-right {
fl\oat: right;
margin-left: 2px; 
mar\gin-left: 0px; 
}
/*** Static fixes ***/

/*** Below is the Holly hack, and if IE/Win shows bugs it's a good idea to apply this hack to 
	different elements and see if that fixes the problem. Sometimes it may be necessary 
	to use "position: relative;" on certain elements, but it's hard to tell in advance which 
	elements will need such fixes. Here it prevents IE5/Win from clipping the left ends 
	of the headings. ***/
/* \*/
* html h2 {height: 1%;}
/* */


/*** This is a fix for IE5/Win at the largest text size setting. ***/
/* \*/
* html .left {margin-right: -3px;}
/* */


.italics-test, .italics-test-side {
font-style: italic; 
text-align: justify; 
background: #ccd;
border: 1px solid red;
}

/*** The following fixes prevent justified italic text from destroying the layout in IE/win.
	The problem is that those properties together make IE force the container wider,
	which in this type of floated layout causes a float drop. 	Pre-IE6 gets "width: 100%" 
	and "overflow: hidden", while IE6 gets "width: auto" and "overflow: visible, which 
	is the default, but explicitly stating it seems to keep IE6 happy. IE6 also needs
	to see the "height: 1%" to give it some kind of box dimension. Browser coddling 
	we call it. Finally, Bruno found that "word-wrap: break-word;" disarranged the 
	justified text in IE5.5 and 6, so it is defaulted to "normal" for this text.
	If you don't need justified and italicized text then forget all these fixes ***/

/* \*/
* html .italics-test, * html .italics-test-side {
overflow: hidden;
width: 100%;
o\verflow: visible;
w\idth: auto;
hei\ght: 1px;
}
/* */

/*** All the IE fixes that are inside separate "Mac-hacks" may be grouped 	within 
	just one Mac-hack for convenience if desired. However, each fix must come 
	later than the rule it is fixing or the fix itself will be overridden. ***/


.content {
	padding-top: 6px;
}

.container-right {
	background-color: white;
	padding-left:0px;
}


.container-left {
	background-color: white;
}


.wrapper {
	background-color: white;
}

.imageComparison {
	border: 1px solid black;
	padding: 1px;
	width: 406px;
	margin: 1px 8px 4px 6px;
	display: inline;
	background-color: #ddd;
}

.other-image {
	border: 1px solid black;
	padding: 1px;
	width: 406px;
	margin: 1px auto 4px auto;
	display: block;
	background-color: #ddd;
	text-align: center;
}

.content P.caption {
	font-size: 9pt;
	margin: 8px 3px 3px 3px; 
	padding: 0px;
}

.ilink img {
	border:0
}


.content p {
	font-size: 10pt;
	line-height: 1.3em;
	margin: 0px 0px 12px 0px; 
	padding: 0 6px;
}

p.siteDescription {
	font-size: 8pt;
	font-style: italic;
	padding: 3px 10px 0px 20px;
}

p.postTitle {
	font-size: 14pt;
	font-weight: bold;
}

div.search {
	padding: 0px 0px 0px 20px;
	font-size: 8pt;
}

div.search p {
	padding: 3px 0px 2px 0px;
	margin: 0px;
}


.dotline {
	border-bottom:1px dotted black;
	margin: 25px 100px;
	clear: both;
}

.content p.short-entry {
	margin-bottom: 6px;
}


h3.search-results-header {
	font-size: 12pt;
	padding-left: 25px;
}

#comments {
	margin-left: 10px;
	margin-bottom: 20px;
}

.comment-content {
	margin-left: 40px;
	margin-right: 40px;
}

p.comment-footer {
	font-style: italic;
	font-size: 8pt;
	color: #999999;
}

.search-screen-search-form {
	margin-left: 10px;
}

.sidebar-links P {
	margin-top: 3px;
	margin-bottom: 0px;
}


.comments-open-header {
	border-bottom: 1px solid #333333;
	color:#333333;
	font-size: medium;
	font-weight: bold;
	margin: 0pt 0pt 10px;
	padding: 3px;
	text-align:left;
}

.comments-open-content label {
	width: 120px;
	float: left;
	clear: left;
}

.comments-open-content .comment-box-label {
	width: 350px;
}

.comments-open-content p {
	margin-bottom: 6px;
}




.navHeader {
	background-color: #AAbbcc;
	padding: 3px 3px 3px 6px;
	margin: 15px 0px 1px 0px;
	text-transform: uppercase;
	letter-spacing: 0.31em;
	font-size: 8pt;

}

.navLink {
	color: black;
	font-size: 10pt;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 20px;
}
.kmlLink {
	color: black;
	font-size: 6pt;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	top: -1px;
	position: relative;
}
.rssLink {
	color: black;
	font-size: 10pt;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 5px;
}
.rssIcon {
	margin-left: 20px;
}



.navLink:hover {
	color: blue;
}
.kmlLink:hover {
	color: blue;
}

img.geIcon {
	position:relative;
	top: 4px;
}
img.cameraIcon {
	position:relative;
	top: 3px;
}


p.compSubhead {
	margin:-4px 0px 0px 0px;
	padding:0;
	font-size:8pt;
	text-align:center;
}

.imageSeries {
	width: 565px;
	margin: 25px auto 20px auto;
	padding: 0px 0px 0px 0px;
}

img.seriesImage {
	padding: 0px 10px 0px 10px;
}

div.seriesImageDiv {
	float: left;
	margin-bottom: 30px;
	width: 280px;
	text-align: center;
}

.entry {
	padding: 0px 25px 30px 25px;
	clear: both;
}

div.frontImage {
	padding: 3px 8px 3px 8px;
}

img.frontImage {
	max-width: 150px;
}



.module-list-item {
	margin-bottom: 6px;
	font-size: 10pt;
	line-height: 110%;
	text-decoration: none;
}

h3.entry-header {
	margin: 5px 0px 5px 0px;
}

p.entry-footer {
	margin-top: 6px;
	margin-bottom: 6px;
	font-size: 8pt;
}

p.entry-tags {
	margin-top: 6px;
	margin-bottom: 6px;
	font-size: 8pt;
}

.mapClass {
	width: 500px;
	height: 550px;
	margin: 0 auto;
	border: solid 1px black;
}

a.navLink {
	padding: 0px 0px 0px 0px;
}

p.recent-entry {
	font-size: 10pt;
	margin: 4px 0px 3px 20px;
}

p.recent-comment {
	font-size: 8pt;
	margin: 4px 0px 10px 20px;
}

.h2about {
	margin-left: 10px;
	font-size: 12pt;
}

.content p.pabout {
	margin-left: 30px;
	margin-right: 20px;
}

p.compSubhead .shownAbove {
	font-size: 7pt;
}

div.sectionBreak {
	clear:both;
	margin-bottom: 30px;
}



/*--------------------------------------------------
  REQUIRED to hide the non-active tab content.
  But do not hide them in the print stylesheet!
  --------------------------------------------------*/
.tabberlive .tabbertabhide {
 display:none;
}

/*--------------------------------------------------
  .tabber = before the tabber interface is set up
  .tabberlive = after the tabber interface is set up
  --------------------------------------------------*/
.tabber {
	display:none;
}
.tabberlive {
	width: 514px;
	height: 550px;
	margin: 20px auto;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
 margin:0;
 padding: 4px 0px 3px 0px;
 border-bottom: 1px solid #778;
 font: bold 12px Verdana, sans-serif;
}

ul.tabbernav li
{
 list-style: none;
 margin: 0;
 display: inline;
}

ul.tabbernav li a
{
 padding: 3px 0.5em;
 margin-left: 3px;
 border: 1px solid #778;
 border-bottom: none;
 background: #DDE;
 text-decoration: none;
}

ul.tabbernav li a:link { color: #448; }
ul.tabbernav li a:visited { color: #667; }

ul.tabbernav li a:hover
{
 color: #000;
 background: #AAE;
 border-color: #227;
}

ul.tabbernav li.tabberactive a
{
 background-color: #fff;
 border-bottom: 1px solid #fff;
}

ul.tabbernav li.tabberactive a:hover
{
 color: #000;
 background: white;
 border-bottom: 1px solid white;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
 padding:5px;
 border:1px solid #aaa;
 border-top:0;

 /* If you don't want the tab size changing whenever a tab is changed
    you can set a fixed height */

 /* height:200px; */

 /* If you set a fix height set overflow to auto and you will get a
    scrollbar when necessary */

 /* overflow:auto; */
}

/* If desired, hide the heading since a heading is provided by the tab */
.tabberlive .tabbertab h2 {
 display:none;
}
.tabberlive .tabbertab h3 {
 display:none;
}

/* Example of using an ID to set different styles for the tabs on the page */
.tabberlive#tab1 {
}
.tabberlive#tab2 {
}
.tabberlive#tab2 .tabbertab {
 height:200px;
 overflow:auto;
}


