/*
 * Copyright (c) 2001 by TheBrain Technologies Corporation.
 * All rights reserved.
 *
 * This media and the ideas, specifications, and details incorporated
 * herein are the sole and exclusive property of TheBrain Technologies
 * Corporation ("TheBrain"). This media and its content shall be
 * treated as confidential and proprietary in nature and may not be
 * reproduced, in whole or in part, without prior written consent of
 * TheBrain.
 */

/*
DIV tags
*/

body {
	font-family: Arial;
	/* Arial Narrow; Comic Sans MS */
	background-color: #fff;
	color: #000;
	margin: 0px;
	border: 0px;
	padding: 0px;
	/* hide horizontal scroll and show vertical */
  overflow: -moz-scrollbars-vertical;
  overflow-x: hidden;
  overflow-y: scroll;
}

#content {
  position: relative;
  top: 0%;
  left: 0%;
  width: 100%;
	background-color: #fff; 
}

#autoHideDiv {
  position: absolute;
  top: 0%;
  left: 0%;
}

#plex, #plexBackground {
  /* plex should cover the entire area */
  /* top left corner at 0,0 simplifies positional logic */
  font-size: 12px;
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
/*
  border: 1px solid #ff0;
*/
}

#zoneLayoutReference {
  /* use this div to set the size and location of the plex */
  position: absolute;
  top: 0%;
  left: 0%;
  height: 100%;
  width: 100%;
  visibility: hidden;
}

#zoneLayout, #zoneLayoutReference {
  /* put background (wallpaper) settings here */
  /* do not attempt to position this div - it will be done automatically inside of zoneLayoutReference */
  /*
  background-image: url(logoGrad.jpg);
  background-color: #fff;
  */
}

#linkHelpDiv {
  font-size: 10px;
  border: 1px solid #000;
  background-color: #fff;
  color: #000;
}

.zone {
  border-collapse: collapse;
  border: 0px solid #f00;
}

#PINS, #PTL {
  /* do not attempt to position this div - it will be done automatically inside of zoneLayoutReference */
  /* these will automatically be placed at the top and bottom of the zoneLayout */
	position: absolute;
  height: 20px;
  /*
  background-color: #008;
  */
}
#PINS {
	/*
  border-bottom: 1px solid #fff;
  */
}
#PTL {
  /*
	border: 1px solid #fff;
	*/
}

#ACTIVE {
  position: absolute;
  top: 25%;
  left: 25%;
  width: 50%;
  height: 25%;
}

#CHILD {
	position: absolute;
  top: 53%;
  left: 0%;
  width: 100%;
  height: 47%;
}

#PARENT {
	position: absolute;
  top: 0%;
  left: 25%;
  width: 50%;
  height: 25%;
}

#JUMP {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 25%;
  height: 50%;
}

#SIBLING {
  position: absolute;
  top: 0%;
  left: 75%;
  width: 25%;
  height: 50%;
}

/*
Thought DIVS
*/

.thought, .thoughtBackground {
  position: absolute;
  padding: 2px;
  text-align: center;
  white-space: nowrap; /* prevents word wrapping of thoughts that are in the sibling zone */
  /*
	background-color: #000;
	*/
}

.thoughtBackground {
  opacity: 0.65;
  filter: alpha(opacity=65);
	background-color: #000;
	padding: 0px;
	/*
	background-image: url(otherBack2.gif);
	*/
}

.thought :link, .thought :visited {
	color: #fff;
	text-decoration: none;
}

.thought :hover {
  border: 1px solid #ff0;
}

.ACTIVE {
	color: #fff;
	font-weight: bold;
	border: 1px solid #0f0;
/*
	background-color: #00309B;
	background-image: url(activeBack.gif);
*/
}

.NEXT {
	font-weight: normal;
}

/*
make sure icons don't get outlined and don't highlight independently
*/


img, .thought a :hover  {
  border: 0px;
  padding: 0px;
/*
  padding-bottom: 3px;
  padding-right: 2px;
*/
  margin: 0px;
  vertical-align: middle;
}

/*
scrollbar divs
*/

.scrollLeft, .scrollRight, .scrollUp, .scrollDown {
  position: absolute;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 0px;
}

.scrollUp {
  background-image: url(up.gif);
  border-bottom: 1px solid #000;
}

.scrollDown {
  background-image: url(down.gif);
  border-top: 1px solid #000;
}

.scrollLeft {
  background-image: url(left.gif);
  border-right: 1px solid #000;
}

.scrollRight {
  background-image: url(right.gif);
  border-left: 1px solid #000;
}

.scrollHBar, .scrollVBar {
  position: absolute;
  border: 1px solid #000;
  /* if there is not background, IE won't let you click on it! */
  background-image: url(empty.gif);
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 0px;
}

.scrollHThumb, .scrollVThumb {
  position: absolute;
  border: 1px solid #000;
  background: #fff;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 0px;
}

