@media screen{

    /* Wrapper */
	/* Blue Theme
    #newMenu {
        display: block;
        background:rgb(102,153,204);
		/*text-align: center;*/
        /*float:right;*/
    /*}*/

	/* Green Theme */
    #newMenu {
        display : block;
		background-color : rgba(51,51,51,1);
		font-family : 'Titillium Web', sans-serif;
        font-size :14px;
        font-weight : 300;

    }

    #newMenu ul {
        margin: 0;
        padding:0;
        list-style: none;
    }

	/* Blue Theme */
	/*
    .localMenu a {
        display:block;
        background:rgb(102,153,204);
        color:#fff;
        text-decoration: none;
        padding: .4em 1.2em;
        /*text-transform: uppercase;*/
      /*  font-size: 8pt;
        position: relative;
        letter-spacing: 0.06em;
    }
	*/

	/* Green Theme */
    .localMenu a {
        display:block;
		background-color: rgba(51,51,51,1);
		color: rgba(255,255,255,0.75);
        text-decoration: none;
        padding: .4em 1.2em;
        font-size: 8pt;
        position: relative;
        letter-spacing: 0.06em;
    }

    .localMenu{
        vertical-align: top;
        display: inline-block;
    }

    .localMenu li{
		position : relative;}

    .localMenu > li {
        float : left;
    }

    .localMenu > li{
        border-right : 1px solid white;
    }

	/* Blue Theme
    .localMenu li:hover > a {
        color:#333333;
    }
	*/

	/* Green Theme */
    .localMenu li:hover > a {
		color : rgba(120,190,32,1)
    }

	/* Blue Theme
    .localMenu li li:hover > a {
        /*background-color:#DDD;*/
        /*background-color: #ffe45c;
    }
	*/

	/* Green Theme */
    .localMenu li li:hover > a {
		background-color: rgba(0,0,0,1);
    }

    /* Undermeny posisjonering */

	/* Blue Theme */ 
	/*
    .localMenu ul {
        position: absolute;
        white-space: nowrap;
        border-bottom: 4px solid #ccc;
        border-top: 1px solid #ccc;
        border-radius:0px 0px 5px 5px;
        z-index: 1;
        left: -99999em;
    }

    .localMenu .localSeparator{
        height:1px;
        background-color: #ccc;
    }

    .localMenu > li:hover > ul {
        left: auto;
        padding-top: 5px;
        min-width: 100%;
    }
	*/

	/* Green Theme */
    .localMenu ul {
        position : absolute;
        white-space : nowrap;
        border-bottom : 4px solid rgba(120,190,32,1);
        border-top : 1px solid rgba(120,190,32,1);
        border-radius :0px 0px 5px 5px;
        z-index : 1;
        left : -99999em;
    }

    .localMenu .localSeparator{
        height :1px;
        background-color : rgba(120,190,32,1);
    }

    .localMenu > li:hover > ul {
        left : auto;
        padding-top : 5px;
        min-width : 100%;
    }
}

@media print{
    #newMenu{
        display:none;
    }
}