/*
  Css for menu on top of exoplanet.eu
*/


/*Strip the ul of padding and list styling*/
ul.menu{
    list-style-type:none;
    margin:0;
    padding:0;
    float: right;
    /* position: absolute; */
}

/*Create a horizontal list with spacing*/
.menu li {
    display:inline-block;
    float: left;
    margin: 0;
}


/*Style for menu links*/
.menu a {display: block;
	 /* min-width:140px; */
	 height: 64px;
	 text-align: center;
	 line-height: 64px;
	 margin-right: 1px;
	 font-size: 12px;
	 color: #fff;
	 padding: 0 9px;
	 text-decoration: none;
	}

.menu a.menu_item_act, .menu li:hover, .menu a:hover{
    background: #333;
    color: #fff;
}


/*Style 'show menu' label button and hide it by default*/
.show-menu {
    /* font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; */
    text-decoration: none;
    background: url(../images/logo.png);
    background-repeat: no-repeat;
    text-align: center;
    padding: 10px 0;
    display: none;
}


/*Hide checkbox*/
#show-menu {
    display: none;
}

/*Show menu when invisible checkbox is checked*/
input[type=checkbox]:checked ~ .menu{
    display: block;
}

/*Responsive Styles*/
@media screen and (max-width : 760px){

    .top {height: 50px; padding:0;}
    .logo {display: none;}


    /*Make dropdown links appear inline*/
    ul.menu {
	/* position: static; */
	position: absolute;
	z-index: 100;
	display: none;
	width: 100%;
    }
    /*Create vertical spacing*/
    .menu li {	width: 100%;    }

    /*Make all menu links full width*/
    .menu ul li, .menu li a {
	height: 50px;
	line-height: 50px;
	margin: 0;
	background: url(../images/bg_menu.png)
    }

    .menu li:hover, .menu a:hover{
	background: #333;
	color: #fff;
    }

    .show-menu label{
	line-height: 50px;

    }

    /*Display 'show menu' link*/
    .show-menu {
	height: 50px;
	display: block;
	margin: 0;
	padding: 0;

    }
}
