/* if desktop */
    .mobile_device_380px {
        display: none;
    }
    .mobile_device_480px {
        display: none;
    }


    /* if mobile device max width 380px */
    @media only screen and (max-device-width: 380px) {
        .mobile_device_380px{display: block;}       
        .desktop {display: none;}
    } 

    /* if mobile device max width 480px */
    @media only screen and (max-device-width: 480px) {
       .mobile_device_480px{display: block;}
       .desktop {display: none;}
    }

/* CSS Document */
.style1 {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 8px;font-weight: bold;color: #4B629C;}
.style3 {font-family: Verdana, Arial, Helvetica, sans-serif; font-size:10px; color:#FFFFFF}
.style4 {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: small;}
.style5 {font-family: Verdana, Arial, Helvetica, sans-serif; font-size:10px; text-transform: capitalize;}
.style5b {font-family: Verdana, Arial, Helvetica, sans-serif; font-size:24px; text-transform: capitalize;}
.style6 {font-family: Verdana, Arial, Helvetica, sans-serif;font-weight: bold;color: #4B629C;}
.style7 {font-family: Arial, Helvetica, sans-serif;	font-size: small;}
.style8 {font-family: Verdana, Arial, Helvetica, sans-serif;font-weight: bold;color: #FFFFFF}
.style8b {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 4px;font-weight: bold;color: #4B629C;}
.style9 {color: #FFFFFF}
#mobile
{
	font-size: 18px;
	font-family: Arial, Helvetica, sans-serif;
}

 #nav-menu ul
{
list-style: none;
padding: 0;
margin: 0;
}

#nav-menu li
{
float: left;
margin: 0 0.025em;
}

#nav-menu li a
{
	background: url(background.gif) #FFFFFF bottom left repeat-x;
	height: 4.1em;
	line-height: 2em;
	float: right;
	width: 7.9em;
	display: block;
	border: 0.1em solid #dcdce9;
	color: #0d2474;
	text-decoration: none;
	text-align: center;
	font-size: 14px;
	font-family: Arial, Helvetica, sans-serif;
}

#nav-menu li a:hover
{
text-decoration: underline;
}

/* Hide from IE5-Mac \*/
#nav-menu li a
{
	float: none;
	
}
/* End hide */

#nav-menu
{
	width:800px;
	height: 31px;
}

/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}
 
 
  /* Navbar container */
.navbar {
  overflow: hidden;
  background-color: #333;
  font-family: Arial;
}

/* Links inside the navbar */
.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 16px;
  border: 4px;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: blue;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
} 
 /* Style the navigation menu */
.topnav {
  overflow: hidden;
  background-color: #333;
  position: relative;
}

/* Hide the links inside the navigation menu (except for logo/home) */
.topnav #myLinks {
  display: none;
}

/* Style navigation menu links */
.topnav a {
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}

/* Style the hamburger menu */
.topnav a.icon {
  background: black;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

/* Add a grey background color on mouse-over */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Style the active link (or home/logo) */
.active {
  background-color: #4CAF50;
  color: white;
} 