/**
 * Plugin Name: 	GUM: Custom Menu Shortcode
 * Plugin URI: 		http://groundupmedia.com
 * Description: 	Creates custom menu shortcodes for your theme.
 * Author:			GroundUp Media - Jayson T. Cote'
 * Author URI: 		http://www.groundupmedia.com
 *
 * Version: 		1.0
 * License: 		GPLv2
 * Copyright:		2015 GroundUp Media (http://groundupmedia.com)
 *
 * This program is free software; you can redistribute it and/or modify it under the terms of the GNU 
 * General Public License version 2, as published by the Free Software Foundation.  You may NOT assume 
 * that you can use any other version of the GPL.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without 
 * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 *
 */
 
.gum-custom-menu-container:before {
	content: " ";
    display: table;
}

.gum-custom-menu-container:after {
	clear: both;
	content: " ";
    display: table;
}

.gum-custom-menu-container {
	-webkit-backface-visibility: hidden;
	position: relative;
	top: -9rem;
}

ul.gum-shortcode-menu {
	background: #fff;
    margin: 0 auto;
    padding: 8px;
    text-align: center;
    max-width: 75%;
	
}

ul.gum-shortcode-menu > li {
	list-style-type: none;
}

ul.gum-shortcode-menu .menu-item {
    display: inline-block;
    padding: 0;
    text-align: left;
}

.gum-shortcode-menu .menu-item a {
    border: none;
    color: #555;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    margin: 0 4px 0 0;
    padding: 4px;
}

.gum-shortcode-menu .menu-item a:hover, 
.gum-shortcode-menu .current-menu-item > a, 
.gum-shortcode-menu .sub-menu .current-menu-item > a:hover {
    border-color: #e7417a;
    border-style: solid;
    border-width: 0 0 2px;
    border-radius: 0;
}
