/* Index page navigation bar CSS
-------------------------------------------------- */
.nav_wrap {
  background-color: #2c5c84;
  -moz-box-shadow:    0px 0px 1px 2px rgba(0,0,0,.3);
  -webkit-box-shadow: 0px 0px 1px 2px rgba(0,0,0,.3);
  box-shadow:         0px 0px 1px 2px rgba(0,0,0,.3);
}
.navbar-default
.navbar-nav>.active>a,
.navbar-default
 .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>.active>a:focus {
  color: #fff;
  background-color: #4e89bd;
}

.navbar-default .navbar-nav>li>a {
  color: #fff;
}

.navbar-nav {
  float: right;
  margin: 0;
}

.navbar-default .navbar-nav>li>a:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
}

.navbar-default {
  border: none;
}

/*--------------General------------*/
a {
  color: #2c5c84;
}

a:hover,
a:focus {
  color: #031d80;
}

.main_container {
  width: 100%;
  padding-top: 30px;
}
/*Home Page
---------------------------------------*/
/*---------------Main Picture----------*/
.main_pic {
  height:200px;
  background: url('../img/main_pic.png');
  background-size: 100%;
  background-repeat: none;
  background-attachment: fixed;
}
/*--------------Main Area--------------*/
.main_area {
  background-color: #fff;
  margin-top: -11em;
  margin-bottom: 1em;
  -moz-box-shadow:    4px 4px 4px 2px rgba(0,0,0,.1);
  -webkit-box-shadow: 4px 4px 4px 2px rgba(0,0,0,.1);
  box-shadow:         4px 4px 4px 2px rgba(0,0,0,.1);
}

.container.subpage {
  margin-top: 50px;
  padding: 0 15px;
}

.tab-subpage-heading {
  padding-top: 120px;
  margin-top: -70px;
}

.main-top, .main_middle, .main_bottom {
  height: 100%;
  width: 80%;
  position: relative;
  margin: 0 auto;
  padding-top: 1em;
}

.main_middle {
  border-top: 1px solid #ccc;
  /*border-bottom: 1px solid #ccc; */
}
/*--------------Circles---------------*/
#circles {
  position:relative;
  padding-top:100;
  padding-left: 4%;
  width: 300px;
  height: 300px;
}
.circle_mc, .circle_code, .circle_sci {
  z-index: 10;
  position: absolute;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  width: 45%;
  height: 45%;
  color: #fff;
  -webkit-transition: opacity 500ms;
  -moz-transition: opacity 500ms;
  -o-transition: opacity 500ms;
  transition: opacity 500ms;
}
.circle_mc:hover,
.circle_code:hover,
.circle_sci:hover {
  opacity: 1;
  z-index: 11;
  cursor: pointer;
}
.circle_text {
  margin-top: 30%;
  display: table;
  width: 100%;
}
.circle_mc>.circle_text {
  margin-top: 40%;
}

.circle_text h4 {
  display: inline-block;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  font-size: 15px;
  line-height: 15px;
  font-family: Helvetica;
  font-weight: 400;
}

.circle_mc {
  background-color: #cfc091;
  margin-top: 44%;
  margin-left: 62%;
}
.circle_code {
  background-color: #9b9a67;
  margin-top: 44%;
  margin-left: 23%;
}
.circle_sci {
  background-color: #a79d95;
  margin-top: 11%;
  margin-left: 42%;

}

.c-desc {
  padding-top: 5px;
  padding-left: 10em;
  padding-right: 6em;
  color: #4d4d4d;
  font-size: 16px;
  line-height: 28px;
  font-weight: 300;
  position: relative;
}

.transparent {
  /* IE 8 */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";

  /* IE 5-7 */
  filter: alpha(opacity=70);

  /* Netscape */
  -moz-opacity: 0.7;

  /* Safari 1.x */
  -khtml-opacity: 0.7;

  /* Good browsers */
  opacity: 0.7;
}


/* circle description
------------------------------------ */

#circles_description {
  padding-top: 2.5em;
  padding-left: 10em;
  padding-right: 6em;
  color: #4d4d4d;
  font-size: 16px;
  line-height: 28px;
  font-weight: 300;
  position: relative;
}

.cover {
  z-index: 12;
}
/* Overview
----------------------------------- */

.main_link {
  color:#4e89bd;
}

.main_link > a:hover {
  color:red ;
}

h2 {
  color:#4e89bd;
  font-size: 24px;
}

.overview>p {
  color: #4d4d4d;
  font-size: 16px;
  line-height: 28px;
  font-weight: 300;
}


/*--------------ScrollSpy---------*/

.scrollArea {

  position: relative;
  overflow: auto;
  background-color: #fff;
  padding:20px 80px;
}
/*--------------Tabs-------------*/
.nav {
  border: none;
}

.content-menu {
  display: block;
  position: fixed;
  top: 50px;
  z-index: 10;
  background-color: #fcfcfc;
  -moz-box-shadow:    2px 2px 2px 1px rgba(0,0,0,.1);
  -webkit-box-shadow: 2px 2px 2px 1px rgba(0,0,0,.1);
  box-shadow:         2px 2px 2px 1px rgba(0,0,0,.1);
  color: #2c5c84;
  padding-top: 1.2em;
  padding-bottom: 1.2em;
  transition: top 0.2s ease-in-out;
}

.tab-item {
  font-size: 14px;
  padding: 0 2.0em;
}
.tab-item > a.active {
  font-weight: 300;
  color: #7dbdc0;
}
.tab-item>a:hover {
  text-decoration: none;
  color: #031552;
}

.tab-item-sep {
  border-right: 1px solid #ccc;
}

.tab-item > a:focus {
  outline: none;
  text-decoration: none;
}

dt {
  margin-top: 10px;
}

.tab-content-details {
  color: #4d4d4d;
  font-size: 16px;
  line-height: 28px;
  font-weight: 300;
}

.font-16 {
  font-size: 16px;
}


/*About Page
---------------------------------------*/
.about-area {
  position: relative;
  padding: 50px 120px 10px;
  margin-bottom: 30px;
}

.about_list {
  color: #4d4d4d;
  font-size: 15px;
  line-height: 28px;
  font-weight: 300;
}


.about_link {
  color:#4e89bd ;
}

.anchor {
  padding-top: 110px;
  margin-top: -100px;
}


.tab-content-subtitle {
  color:#2c5c84;
  font-weight: bold;
}
/*People Page
-------------------------------------------------- */

.dropshadow {
  background-color: #fff;
  -moz-box-shadow:    3px 3px 3px 2px rgba(0,0,0,.1);
  -webkit-box-shadow: 3px 3px 3px 2px rgba(0,0,0,.1);
  box-shadow:         3px 3px 3px 2px rgba(0,0,0,.1);
}
.people-area {
  position: relative;
  padding: 50px 45px 10px;
  margin-bottom: 30px;
}
.people-container {
  padding: 1.2em 1.8em;
  margin: 1em 0;
}
.people-title {
  color:#2c5c84;
  padding-bottom: 7px;
}
.portrait {
  width: 12em;
  height: 12em;
  border-radius: 50%;
}
.vertical-center {
  display: table-cell;
  vertical-align: middle;
}
.people-pic {
  padding-left: 1em;
  display: table;
}

.people-description {
  display: table;
  padding-right: .5em;
}

.people-description>p {
  color: #4d4d4d;
  font-size: 14px;
  line-height: 23px;
}
/*----Hide/Show Nav When Scroll Down/Up----*/

.nav-up {
  top: -15px;
}
.nav-down {
  top: 50px;
  z-index: 10;
}

/* Publication Page
-------------------------------------------------- */
.publications-area {
  position: relative;
  padding: 50px 45px 10px;
  margin-bottom: 30px;
}
.publication-list {
  padding-left:20px;
  font-size: 16px;
  line-height: 30px;
}

div div.publication-list:nth-of-type(odd) {
  border-left: 5px solid #2c5c84;
}

div div.publication-list:nth-of-type(even) {
  border-left: 5px solid #999;
}

.publication-title {
  font-weight: bold;
  margin-bottom:2px;
}

.publication-detail {
  font-style: oblique;
}

/* Software Pages
------------------------------------------ */
.software-area {
  position: relative;
  padding: 50px 45px 10px;
  margin-bottom: 30px;
}


/*Links Page
-------------------------------------------------- */

.links-area {
  position: relative;
  padding: 25px 120px 10px;
  margin-bottom: 30px;
}

/*Contact Page
-------------------------------------------------- */

.contact-area {
  position: relative;
  padding: 25px 120px 10px;
  margin-bottom: 30px;
}



/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}
body {
  /* Margin bottom by footer height */
  margin-bottom: 150px;
  background-color: #eff0f1;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100px;
  background-color: #2c5c84;
}

.footer_left,.footer_right {
  margin-top: 1.2em;
}

.footer_left, .footer_mid {
  display: table;
  height: 70px;
}
.table-cell {
  display: table-cell;
  vertical-align: middle;
}
address {
  padding-left: 24px;
  margin-bottom: 20px;
  color:#fff;
  line-height: 21px;
  font-weight: 300;
}
.footer_img {
  display: inline-block;
  margin-right: 40px;
}
.footer_img img {
  height: 40px;
}
.footer_mid {
  margin-top: 1.5em;
  padding-right: 20px;
}
.footer_mid p {
  color: #f7f7f7;
  font-size: 14px;
  font-weight: 300;
}
.footerButtonWrap {
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 999;
}
.findOutMoreButton>.btn {
  border-radius: 50%;
  border: none;
  width: 42px;
  height: 42px;
  padding:0;
  text-align: center;
  -moz-box-shadow:    1px 1px 2px 1px rgba(0,0,0,.1);
  -webkit-box-shadow: 1px 1px 2px 1px rgba(0,0,0,.1);
  box-shadow:         1px 1px 2px 1px rgba(0,0,0,.1);
}
.findOutMoreButton>.btn:focus {
  outline: none;
}
.glyphicon {
  color: #999;
}
.popover {
  position: fixed;
}
.popover-inner {
  width: auto;
}
.popover-title {
  font-weight: 500;
  color: #333;
}
.popover-content {
  padding: 0;
}
/* Custom page CSS
-------------------------------------------------- */
/* Not required for template or sticky footer method. */

body > .container {
  padding: 28px 15px 0;
}

.footer > .container {
  padding-right: 15px;
  padding-left: 15px;
}

code {
  font-size: 80%;
}

.nav-tabs > .active > a,
.nav-tabs > .active > a:hover,
.nav-tabs > .active > a:focus {
  outline: none;
}

.active > a,
.active > a:hover,
.active > a:focus {
  outline: none;
}

@media (min-width:1200px) {.container{width:1070px}}
