 @charset "UTF-8";

/* Page Title */



html  { width:100%; height:100%; padding:0px; margin:0px; }

 header {width:100%; float:left; background-color:#fff; box-shadow:0px 2px 3px #ddd;;  margin-bottom:20px; }
#header   {width:90%;  margin:0 auto; box-sizing:border-box; } 
#header   .util   {width:100%; height:55px; float:left; text-align:right; }
 #header  .util  li   {display:inline-block; padding:20px 0px 0px 10px;}  
#header .util li a { letter-spacing:0.5px !important;  color:#666 !important;   font-size:13px; line-height:1em;    font-weight:300;  }

#header      .logo        {float:left;   position:relative;  margin-top:-17px; width:120px;  }

#header .top_login_wrap {width:200px; float:right; }
#header .top_login_wrap  a {width:49%; ; margin-left:-1px; float:left; background-color:#0b93e2; border:1px solid #0b93e2; text-align:center; font-size:15px; color:#fff; font-weight:400; margin-top:10px; line-height:37px; box-sizing:border-box; margin-left:1%;   transition: background-color 0.3s ease-in;}
#header .top_login_wrap  a:nth-child(2) {background-color:#1f2b4f; border:1px solid #1f2b4f; }
#header .top_login_wrap  a:hover {border:1px solid #0d99fc; color:#0d99fc; background-color:#fff; }
#header .top_login_wrap  a:nth-child(2):hover {border:1px solid #333; color:#333; background-color:#fff; }


nav  {width:50%; min-width:500px;margin-right:50px; float:right; text-align:right;  margin-top:0px;  height:77px;}

 
 nav {   }
 nav a:link		{text-decoration:none; color:#333;}
 nav a:visited	{ text-decoration:none; color:#333;}
 nav a:hover		{ text-decoration:none; color:#0066b3;}
 nav a:active	{text-decoration:none; color:#0066b3;}

nav ul {
  font-size: 0;
  margin: 0;
  padding: 0;

}

nav ul li {
  display: inline-block;  
  position: relative; width:20%; text-align:center;
  background:url('/common/img/common/dotted.png') no-repeat right;
 }

nav ul li:last-child {
  background:none;
}


nav ul li a {
  color: #fff  ;
  font-weight:600;
  display: block;
  font-size: 20px;
  padding: 10px 0px;
  
  transition: 0.3s linear;
}

nav ul li:hover { }

nav ul li ul {
  border-bottom: 1px solid #0066b3;
  display: none;
  position: absolute;
   z-index:999999;
  width:100%;
}

nav ul li ul li {
  border-top: 1px solid #fff;  
  display: block; width:100%; 
}

nav ul li ul li:first-child { border-top: none; }

nav ul li ul li a {
  background: #f9f9f9;
  display: block;
  font-size:15px; font-weight:400; color:#777 !important;
  padding: 10px 14px;
}

nav ul li ul li a:hover { background: #0066b3; color:#fff !important; }

nav .fa.fa-angle-down { margin-left: 6px; }
 

 
   
     


.footer        {width:100%; min-width:1200px; background-color:#fff; border-top:1px solid #ddd; float:left;    padding:35px 0;  margin-top:70px;}
.footer  .footer_in  {width:1200px; margin:0 auto; }
.footer   img   {float:left; margin-top:5px;}
 
 .footer   .copy     {font-size:0.95em; font-weight:500; color:#777; line-height:1.4em;   width:100%; float:left; text-align:center; }
 .footer   .copy   span    {color:#999; font-weight:300;  font-size:0.9em; line-height:2em; letter-spacing:0.2px !important;  }
 




 /**
 * Tooltip Styles
 */

/* Add this attribute to the element that needs a tooltip */
[data-tooltip] {
  position: relative;
  z-index: 2;
  cursor: pointer;
}

/* Hide the tooltip content by default */
[data-tooltip]:before,
[data-tooltip]:after {
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  pointer-events: none;
}

/* Position tooltip above the element */
[data-tooltip]:before {
  position: absolute;
  bottom: 150%;
  left: 50%;
  margin-bottom: 5px;
  margin-left: -80px;
  padding: 20px;
  width: 300px;
  border-radius: 3px;
  background-color: #000;
  background-color: hsla(0, 0%, 20%, 0.9);
  color: #fff;
  content: attr(data-tooltip);
  text-align: center;
  font-size: 15px;
  line-height: 1.4;
}

/* Triangle hack to make tooltip look like a speech bubble */
[data-tooltip]:after {
  position: absolute;
  bottom: 150%;
  left: 50%;
  margin-left: -5px;
  width: 0;
  border-top: 5px solid #000;
  border-top: 5px solid hsla(0, 0%, 20%, 0.9);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: " ";
  font-size: 0;
  line-height: 0;
}

/* Show tooltip content on hover */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

 