/*!
 * jquery.ui.potato.menu
 * 
 * Copyright (c) 2009-2011 makoto_kw, http://www.makotokw.com
 * Licensed under the MIT license.
 * 
 * @author makoto_kw
 * @version 1.2
 */

.potato-menu {
	margin:0;
	padding:0;
	width:auto;
	height: 20px;
	list-style:none;
	text-align:center;
	background: #ffffff;
	

}
/*
.potato-menu:after {
	content: " ";
	display: block;
	visibility: hidden;
	clear: both;
	height: 0.1px;
	font-size: 0.1em;
	line-height: 0;
}*/


/* All Menu Items */
.potato-menu .potato-menu-item {
	width:230px;
	padding: 5px;
	position:relative;
	list-style:none;
	/*list-style-position:outside;*/
	display:inline;
	margin:0;
	float:left;
	/*background: #ffffff;*/
	
	
	
}

.potato-menu .potato-menu-item a {
	display:block;
	text-decoration:none;
	white-space:nowrap;
	outline:0;
}


/* Active Menu Items */
.potato-menu-hover {
    background: #ffffff;
}


/* All MenuSubGroups */
.potato-menu .potato-menu-group {
	font-size:14px;
	margin:0;
	padding: 0px;
	-webkit-padding-start:0;
	-webkit-padding-end:0;
	position:absolute;
	display:none;
	z-index:1000;
	background: #ffffff;
	/*border: 1px #cccccc solid;*/
	
	/*	CSS3 drop shadow */
	-moz-box-shadow: 0px 3px 4px #042656;
	-webkit-box-shadow: 0px 3px 4px #042656;
	box-shadow: 0px 3px 4px #042656;
	
	/* IE Drop Shadow */
	/*filter: 
        progid:DXImageTransform.Microsoft.Shadow(color=#eeeeee,direction=0,strength=3)
        progid:DXImageTransform.Microsoft.Shadow(color=#dddddd,direction=90,strength=5)
        progid:DXImageTransform.Microsoft.Shadow(color=#dddddd,direction=180,strength=5)
        progid:DXImageTransform.Microsoft.Shadow(color=#eeeeee,direction=270,strength=3);*/
	
	/* CSS3PIE Fix for Internet Explorer */
	behavior: url(http://www.seaquarium.co.uk/js/css3pie/PIE.htc);
}


/* MenuItems on Vertical Menu*/
.potato-menu-vertical .potato-menu-item {
}

potato-menu-vertical .potato-menu-item a {
}


/* MenuItems on Horizontal Menu */
potato-menu-horizontal .potato-menu-item {
}

.potato-menu-horizontal .potato-menu-item a {
}


/* MenuItems that has MenuSubGroup to bottom or top */
li.potato-menu-has-vertical > a {
    /*background: #ffffff;*/
}


/* MenuItems that has MenuSubGroup to left or right */
li.potato-menu-has-horizontal > a {
    background: #ffffff;
}