﻿/*Strip the ul of padding and list styling*/
#menu_banner {
/*	background-color: #000099;*/
/*    background-color: #0404bf;*/
    background-color: #26BAC9;
	height: 50px;
/*	height: 40px;*/
}
#themenu {
	text-align: center;
	font-size: 110%;
    height: 30px;
    line-height: 30px;
    position: relative;
   	z-index: 2;
   	
	margin-left: auto;
	max-width: 805px;
	margin-right: auto;
}
#themenu ul {
    list-style-type:none;
    margin:0;
    padding:0;
    position: absolute;
}
/*Create a horizontal list with spacing*/
#themenu ul li {
    display:inline-block;
    float: left;
    margin-right: 1px;
}
/*Style for menu links*/
#themenu ul li a {
    display:block;
    min-width:160px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-family: Arial, Avenir, Calibri, Verdana, Geneva, sans-serif;
    color: #fff;
/*    background: #0404bf;*/
    background: #26BAC9;
    text-decoration: none;
}
#themenu ul li ul li a {
	text-align: left;
	font-size: 100%;
}
/*Hover state for top level links*/
#themenu ul li:hover a{
/*    background: #000099;*/
    background: #0AB2C3;
/*	color: #FFD700;*/
	color: #FFFFFF;
}
/*Style for dropdown links*/
#themenu ul li:hover ul a {
/*    background: #0404bf;*/
    background: #26BAC9;
    height: 40px;
    line-height: 40px;
}
/*Hover state for dropdown links*/
#themenu ul li:hover ul li a {
/*    background: #000099;*/
    background: #F6F6F6;
/*    color: #fff;*/
    color: #000000;
/*    border-top: 1px #0404bf solid;*/
    border-top: 1px #F6F6F6 solid;
}
/*When hovering drop down menu, 2nd etc links show light blue and golden text */
#themenu ul li:hover ul a:hover {
/*  background: #0404bf;*/
    background: #26BAC9;
/*	color: #FFD700;*/
	color: #FFFFFF;
}
/*Hide dropdown links until they are needed*/
#themenu ul li ul {
    display: none;
}
/*Make dropdown links vertical*/
#themenu ul li ul li {
    display: block;
    float: none;
}
/*Prevent text wrapping*/
#themenu ul li ul li a {
    width: auto;
    min-width: 100px;
    padding: 0 20px;
}
/*Display the dropdown on hover*/
#themenu ul li a:hover + .menu_hidden, #themenu ul li .menu_hidden:hover, #themenu ul li ul li .menu_hidden:hover {
    display: block;
}
/*Style 'show menu' label button and hide it by default*/
.show-menu {
    font-family: Arial, Avenir, Calibri, Verdana, Geneva, sans-serif;
    text-decoration: none;
    color: #fff;
/*    background: #0404bf;*/
    background: #26BAC9;
    padding: 10px 0;
    display: none;
}
/*Down arrow on menu*/
.menu_arrow {
	border: solid #ffffff;
	border-width: 0 3px 3px 0;
	display: inline-block;
	padding-top: 3px;
	padding-left: 6px;
	padding-bottom: 6px;
	padding-right: 3px;
	margin-bottom: 3px;
}
.menu_down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
/*To make down arrow look golden when hovering*/
#themenu ul li:hover .menu_arrow{
/*	border-color: #FFD700;*/
	border-color: #FFFFFF;
}
.menu_timezones {}
.menu_timezones2 {
	min-width: 290px;
}
.menu_zone_exp {
	font-size: 14px;
	float: right;
}
.menu_timezones3 {
	min-width: 300px;
}
.menu_clocks {
	min-width: 160px;
}
/*Hide checkbox*/
/*input[type=checkbox]{
    display: none;
}*/
/*Show menu when invisible checkbox is checked*/
/*input[type=checkbox]:checked ~ #menu_invisible{
    display: block;
}*/
/*Hide checkbox*/
input[type=checkbox]#show-menu{
    display: none;
}
/*Show menu when invisible checkbox is checked*/
input[type=checkbox]#show-menu:checked ~ #menu_invisible{
    display: block;
}
/*Responsive Styles*/
@media screen and (max-width : 860px){
    /*Make dropdown links appear inline*/
	#themenu ul {
        position: static;
        display: none;
    }
    /*Create vertical spacing*/
/*	#themenu ul li {*/
	#themenu ul li {
/*        margin-bottom: 1px;*/
        border-top: 1px #ffffff solid;
    }
    /*Make all menu links full width*/
	#themenu ul li, li a {
        width: 100%;
    }
    /*Display 'show menu' link*/
    .show-menu {
        display:block;
    }
}