/* Stylesheet for Dundee Satellite Receiving Station */

/* from NEODAAS CSS ============================================================== */

html {
  /* overflow: scroll; does the same as -moz-scrollbars-vertical, but
   makes the scroll bars appear on both horizontal and vertical axis */
  /*overflow-y: scroll;*/
  overflow: scroll; /* overflow-y replaced by overflow, as overflow-y was invalid css 2 */
}

body {
  font-family: verdana, arial, helvetica, sans-serif;
  font-size: 10pt;
  background-color: #fff;
  color: #000;
  padding: 0em 1em; /* edited for dundee */
  margin-top:1em;
  margin-bottom:1em;
  width: 950px;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  /* Makes Mozilla vertical scrollbar always present,
  but fails validation. Also prevents horizontal scrollbar
  from appearing (Is there a -moz-scrollbars-horizontal?).
  overflow:  -moz-scrollbars-vertical; */
}

/* added for dundee - for small popup windows etc */
body.variablewidth
{
  width: auto;
  margin: 0px;
}

/** LINKS **/
a {
  color: #1024AD; /* changed for dundee; changed again was 1042AD */
}

a:link {
  color: #1024AD; /* added for dundee; changed again was 1042AD */
  text-decoration: none;
}

a:visited {
  color: #5863ad; /* added for dundee */
  text-decoration: none;
}

a:hover {
  color: #1024AD; /* changed for dundee; changed again was 1042AD */
  background-color: silver; /* added for dundee */
  text-decoration: none;
}

/* imagelink class is for anchor tags surrounding an img tag - to work around IE8 bug */
a.imagelink:hover {
  background-color: transparent;
}

/** TEXT STYLES **/
h1 {
  display: block;
  border-bottom: 1px solid #aaa;
  padding: 0;
  padding-bottom: 3px;
  margin: 0px;
  margin-top: 3px; /* jon: added top margin */
  margin-bottom: 15px;
  font-size: 120%;
}

h2 {
  display: block;
  border-bottom: 1px solid #aaa;
  padding: 0;
  padding-bottom: 3px;
  margin: 3px 0px 15px 0px; /* jon: added top margin */
  font-size: 110%;
}

h3 {
  font-size: 105%;
  display: block;
  padding: 0;
}

h4 {
  font-size: 100%;
  padding: 0;
  margin: 0;
}

/** LISTS **/
ul {
  font-size: 10pt; /* jon: added because lists were defaulting to larger size */
  list-style: square;
  margin-left: 1em;
  padding-left: 1em;
}

ol { 
   font-size: 10pt; /* jon: added because lists were defaulting to larger size */
}

dt {
   font-size: 10pt; /* jon: added because lists were defaulting to larger size */
}

dd {
   font-size: 10pt; /* jon: added because lists were defaulting to larger size */
}
/* =============================================================================== */

p
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10pt;
	margin: 1em 0;
}

td,th,table
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10pt;
	text-align: left;
}

table
{
	width: 100%;
	border-collapse: collapse;
}

img {
	border: none;
}

hr {
	color: #aaa;
	background-color: #aaa;
	height: 1px;
	border-width: 0px;
	margin: 5px 0px;
}

/* MENU - for extra menu bar below the banner */
ul.menu
{
	list-style: none;
	width: 950px;
	padding: 5px 0px;
	margin: 0px 0px 1px 0px;
	text-align: center;
	background-color: #06174A;
	color: white;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

/* forces the list to be inline */
ul.menu li
{
	padding: 5px 0px;
	display: inline;
	margin: 0px;
	border-right: 1px solid #fff;
}

/* for each button in the bar */
ul.menu li a
{
	padding: 5px 1em;
	color: white;
	background-color: #06174A;
}

/* for highlighed button on the bar */
ul.menu li.current
{
	padding-left: 1em; /* provide same left and right padding as ul.menu li a since for "current" item there will be no <a> tag */
	padding-right: 1em;
	background-color: #006699;
}

/* for last button in the bar */
ul.menu li.final
{
	border-right: none;
}

/* for links on all buttons on the bar */
ul.menu li a:link
{
	color: white;
}
ul.menu li a:visited
{
	color: white;
}
ul.menu li a:hover
{
	color: #06174A;
	background-color: #eeeeee;
}

/* for the content wrapper div */
#content
{
    width: 950px;
	margin-top: 7px;
}

#content.variablewidth
{
	width: auto;
}

/* for the visible footer div */
#footer
{
    width: 950px;
	clear: both;
	min-height: 100px;
	padding: 10px 0px 5px 0px;
	text-align: center;
}

/* for alternate list rows, table rows and other elements requring alternate bg color */
.altbg
{
	background-color: #eeeeee;
}

/* How to add a tool-tip to a link */
/* Surround the <a with a <p or a <div which is of class "useToolTips" */
/* Then put the tip text inside a <span which is inside the <a */
/* If you want a tool tip but not a link then see below. */
.useToolTips a:visited span { display: none; } /* Hide tip by default */
.useToolTips a:active  span { display: none; } /* Hide tip by default */
.useToolTips a:link    span { display: none; } /* Hide tip by default */
.useToolTips a:hover   span                    /* Show tip when hover */
{
	position: absolute;
	margin: 15px 0px 0px 20px;
	background-color: #F5F5DC;
	max-width: 270px;
	padding: 2px 10px 2px 10px;
	border: 1px solid #C0C0C0;
	font: normal 12px/14px verdana;
	color: #000;
	text-align: left;
	display: block;
}

/* If you want a tooltip but not a link then use href=# and class=notlink */
/* Used to describe AVHRR, MODIS etc. acronyms on the home page. */
/* These colours must match those defined in body above. */
/* NOTE: Can use HTML <acronym> tag for this purpose instead. */
.notlink:visited,.notlink:link,.notlink:hover,.notlink:active { text-decoration: none; color:black; background-color: white; }


/* These two classes position something top-left. */
/* Used to overlay a grid onto an image like this: */
/* <p class=rel><img src=ch4><span class=abs><img src=grid></span></p> */
.posRelTopLeft { position: relative; top: 0px; left: 0px; }
.posAbsTopLeft { position: absolute; top: 0px; left: 0px; }


/* Pop-up window of size 250 pixels. */
/* This class is used in a span at the point where a pass area */
/* image is to be popped up. See filesorder.c */
.popupPassArea
{
	position: absolute;
	width: 250px;
	height: 250px;
	display: none;
	background-image: none;
}


