/**
 * @file
 * Page Styling
 *
 * Style the markup found in page.tpl.php. Also includes some styling of
 * miscellaneous Drupal elements that appear in the $content variable, such as
 * ul.links, .pager, .more-link, etc.
 */

/*
 * Body
 */

html,
body {
  background: #000;
  margin: 0;
  padding: 0;
}

#page {
}

/**
 * Dynamic Iframe Markup
 */
.dynamic-iframe {
	position: relative;
	width: 100%;
	height: 0;
	padding: 0;
	margin: 0;
}
.dynamic-iframe iframe {
	width: 100% !important;
	height: 100% !important;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * The skip-link link will be completely hidden until a user tabs to the link.
 * See the element-focusable rule in system.base.css.
 */

#skip-link {
  margin: 0;
}
#skip-link a,
#skip-link a:visited {
  display: block;
  width: 100%;
  padding: 2px 0 3px 0;
  text-align: center;
  background-color: #666;
  color: #fff;
}

/*
 * Header
 */
#browser-compatibility {
  color: #c34545;
  margin-left: auto;
  margin-right: auto;
  max-width: 1100px;
  padding: 10px;
  text-align: center;
}
#browser-compatibility a,
#browser-compatibility a:hover {
  color: #3d81be;
}
#header-container {
  position: relative;
  z-index: 5;
  overflow-x: hidden;
}
#header {
  position: relative;
  z-index: 15;
  padding-bottom: 25px;
}
#header-banner {
  position: absolute;
  z-index: 5;
  bottom: 0;
  width: 1500px;
  height: 195px;
  min-width: 1500px;
  max-width: none;
  left: 50%;
  margin-left: -750px;
  background-image: url('../images/header-banner@x1.jpg');
  background-repeat: no-repeat;
  -webkit-background-size: 1500px; 195px;
  -moz-background-size: 1500px; 195px;
  -o-background-size: 1500px; 195px;
  background-size: 1500px; 195px;
}
#header-satellite {
  position: absolute;
  z-index: 5;
  bottom: 10px;
  right: 10px;
  width: 420px;
  height: 84px;
  background-image: url('../images/satellite@x1.png');
  background-repeat: no-repeat;
  -webkit-background-size: 420px 84px;
  -moz-background-size: 420px 84px;
  -o-background-size: 420px 84px;
  background-size: 420px 84px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=70);
  opacity: 0.7;
}
#name-and-slogan { /* Wrapper for website name and slogan */
  position: relative;
  z-index: 10;
  float: left;
  clear: both;
  width: 350px;
}
#logo { /* Wrapping link for logo */
  display: block; /* LTR */
  margin: 0;
  padding: 0;
}
#logo img {
  vertical-align: bottom;
  width: 320px;
  height: 70px;
}
#site-name { /* The name of the website */
  display: none;
  /* margin: 0; */
  /* font-size: 2em; */
  /* line-height: 1.5em; */
}
#site-name a:link,
#site-name a:visited {
  color: #000;
  text-decoration: none;
}
#site-name a:hover,
#site-name a:focus {
  text-decoration: underline;
}
#site-slogan { /* The slogan (or tagline) of a website */
  margin: 0;
  color: #fff;
  font-size: 0.8em;
  font-weight: normal;
  font-family: "Futura", Arial, Sans-serif;
}
.region-header { /* Wrapper for any blocks placed in the header region */
  clear: both; /* Clear the logo */
}
div.contextual-links-wrapper a {
	line-height: 1.5em !important;
}


/*
 * Main (container for everything else)
 */

#main {
  position: relative;
  z-index: 10;
  background-color: #c7dcf6;
  background: -moz-linear-gradient(top, #c7dcf6 0%, #94b5e0 100%); 
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#c7dcf6), color-stop(100%,#94b5e0));
  background: -webkit-linear-gradient(top, #c7dcf6 0%,#94b5e0 100%);
  background: -o-linear-gradient(top, #c7dcf6 0%,#94b5e0 100%);
  background: -ms-linear-gradient(top, #c7dcf6 0%,#94b5e0 100%);
  background: linear-gradient(to bottom, #c7dcf6 0%,#94b5e0 100%);
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  border-radius: 15px;
  -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.7);
  -moz-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.7);
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.7);
  padding-bottom: 10px;
}

#main-container {
  position: relative;
  z-index: 10;
  top: -15px;
}

#content-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  height: 100%;
  width: 100%;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

#backdrop {
  background: #162b48;
  position: absolute;
  height: 100%;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  border-top: 1px solid #1f3c62;
}

#backdrop-gradient {
}

/*
 * Content
 */

#content {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  border: 1px solid #5978a0;
  background: #fff;
  padding: 10px;
}
#content a,
.sidebar a {
  color: #2f518f;
	white-space: pre-wrap;
}

.region-highlighted {
}

.breadcrumb { /* The path to the current page in the form of a list of links */
}
.breadcrumb ol {
  margin: 0;
  padding: 0;
}
.breadcrumb li {
  display: inline;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

h1.title, /* The title of the page */
h2.node-title, /* Title of a piece of content when it is given in a list of content */
h2.block-title, /* Block title */
h2.title, /* Comment section heading */
h2.comment-form, /* Comment form heading */
h3.title { /* Comment title */
  margin: 0.75em 0;
}

tr.even { /* Some tables have rows marked even or odd. */
  /* background-color: #eee; */ /* Drupal core uses a #eee background */
}

tr.odd {
  /* background-color: #eee; */ /* Drupal core uses a #eee background */
}

.tabs { /* See also the tabs.css file. */
}

.region-help { /* Help text on a page */
}

.more-help-link { /* Link to more help */
}

.region-content { /* Wrapper for the actual page content */
}

ul.inline { /* List of links generated by theme_links() */
  display: inline;
  padding: 0;
}
ul.inline li {
  display: inline;
  list-style-type: none;
  padding: 0 1em 0 0; /* LTR */
}

span.field-label { /* The inline field label used by the Fences module */
  padding: 0 1em 0 0; /* LTR */
}

.item-list .pager { /* A list of page numbers when more than 1 page of content is available */
  padding: 0;
}
.item-list .pager li { /* Each page number in the pager list */
  padding: 0 0.2em;
}

.feed-icon { /* The link to the RSS or Atom feed for the current list of content */
}

.more-link { /* Aggregator, blog, and forum more link */
}

/*
 * Sidebar Styles
 *
 * Remember to NOT add padding or margin to your .region-sidebar-first-container
 * and .region-sidebar-second-container (see the layout.css file.)
 */
.sidebar {
  border: 1px solid #2f518f;
  background: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  color: #000;
}

/*
 * First sidebar (on left in LTR languages, on right in RTL)
 *
 * Remember to NOT add padding or margin to your .region-sidebar-first-container
 * (see the layout.css file.)
 */

.region-sidebar-first-container {
}

/*
 * Second sidebar (on right in LTR languages, on left in RTL)
 *
 * Remember to NOT add padding or margin to your .region-sidebar-second-container
 * (see the layout.css file.)
 */

.region-sidebar-second-container{
}


/*
 * Page bottom
 */

.region-bottom { /* Wrapper for any blocks placed in the page bottom region */
}
#podaac-jpl-clearance {
	float: right;
	clear: both;
	color: #6ba5d9;
	margin-right: 10px;
	margin-bottom: 10px;
}
