/*
 *  Common styles for Surveillance Nation Across Pages....
 */

 /*
  * Site-wide parameters:
  */
  body {
    font-family: Verdana,Tahoma,Arial,sans-serif;
  }
  
 /* Styles for the Banner... */
.banner {
  display: grid;
  grid-template-columns: 300px 1fr 300px;
  background-color: rgb( 204, 204, 255);
  padding: 10px;
  border-radius: 5px;
 }
.iflag {
  width: 300px;
}
.banner-h1 {
  font-size: 24px;
  margin-top: 5px;
  text-align: center;
  font-weight: bold;
}
.banner-h2 {
  font-size: 20px;
  padding-left: 12px;
  color: #0000ff;
  text-align: center;
  font-weight: bold;
}

/*
 *  Now the Page Header
 */
.page_hdr {
  font-size: 20px;
  padding-left: 12px;
  text-align: center;
  font-weight: bold;

}

/*
 *  Navigation panel on the left...
 */
.nav_pan {
  clear: left;
  float: left;
  width: 150px;
  margin: 0 0 10px 0;
  padding: 0;
  font-size: 0.9em;
}
/*
 *  Navigation panel title:
 */
.nav_hdr {
  text-align: center;
  font-size: 1.2em;
  font-weight: bold;
  color: #9832f8;
}
/*  Ref for text mention */
.nav_ref {
  font-weight: bold;
  color: #9832f8;
}
/*
 *  Each destination link is a subdirectory,
 *  organized as an unordered list...
 */
.nav_ul {
  list-style: none;
  width: 140px;
  margin: 0 0 20px 10px;
  padding: 0;
  font-size: 0.9em;
}
.nav_li {
  margin-bottom: 4px;
}
.nav_li a {
  font-weight: bold;
  text-decoration: none;
  color: #9832f8;
  display: block;
  padding: 6px 0 6px 10px;
  background: #f4f4f4;
  border-left: 4px solid #9832f8;
  border-radius: 4px;

}
.nav_li a:hover {
  background: #eaeaea;
  color: #0000ff;
  border-left: 4px solid #0000ff;  
}

/*
 *  News and Announcements under the navigation list...
 */
 .news_ann {
    margin: 10px 0 10px 0;
    padding: 10px;
    width: 130px;
    color: #505050;
    background-color: #f4f4f4;
    border-radius: 4px;
    line-height: 1.3em;
 }

 /*
  *  Change log styling...
  */
.change_log dt {
  font-weight: bold;
  color: #0000ff;
  margin: 10px 20px 0px 20px;
}
.change_log dd {
  padding: 5px 10px 0px 10px;
}

/***********************************************************************************************************
 *  Content on the right...
 ***********************************************************************************************************/
 .content {
    margin: 0 10px 20px 160px;
    border-left: 1px solid #d0d0d0;
    border-right: 1px solid #d0d0d0;
    padding: 0 10px 0 10px;
    line-height: 1.2em;
    text-align: left;
 }

 .content h3 {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 5px;
 }

 .content a:hover {
    color: #000099;
    text-decoration: underline;
 }

 .content img {
    padding: 1px;
    display: inline;
    background: #cccccc;
    border: 4px solid #f0f0f0;
 }

 .left {
    margin: 10px 10px 5px 0;
    float: left;
 }

 .right {
    margin: 10px 0 5px 10px;
    float: right;
 }

 /*
  * Image css
  */
  .c_image {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }