/**
 * CSS added for WordPress plugins admin page for settings links for plugin
 *
 * @since 1.3.0
 * @updated 1.3.0
 * @access private
 * @author Brian Novotny
 * @website http://creative-software-design-solutions.com
*/

ul.settings_menu ul 
{
background: #33ffff; 
background: linear-gradient(top, #33ffff 0%, #66ffff 100%);  
background: -moz-linear-gradient(top, #33ffff 0%, #66ffff 100%); 
background: -webkit-linear-gradient(top, #33ffff 0%,#66ffff 100%); 
box-shadow: 0px 0px 9px rgba(0,0,0,0.15);
padding: 0 2px;
border-radius: 10px;  
list-style: none;
position: relative;
display: none;
}

ul.settings_menu li:hover ul
{
display: block;
}

/*
ul.settings_menu ul:after 
{
	content: ""; 
	clear: both; 
	display: block;
}
*/

ul.settings_menu ul li
{
    clear: left;
}

ul.settings_menu ul li:hover 
{
	/*background: #4b545f;
	
	background: linear-gradient(top, #4f5964 0%, #5f6975 40%);
	background: -moz-linear-gradient(top, #4f5964 0%, #5f6975 40%);
	background: -webkit-linear-gradient(top, #4f5964 0%,#5f6975 40%);
	
	*/
	
	background: #000099;
	background: linear-gradient(top, #000099 0%, #0000ff 40%);
	background: -moz-linear-gradient(top, #000099 0%, #0000ff 40%);
	background: -webkit-linear-gradient(top, #000099 0%,#0000ff 40%);
}

ul.settings_menu ul li:hover a 
{
	color: #fff;
	
}

ul.settings_menu ul li a 
{
	display: block; 
	padding: 2px 2px;
	color: #000000;
	font-weight: 700;
	text-decoration: none;
	
}

ul.settings_menu ul ul 
{
	background: #5f6975; 
	border-radius: 0px; 
	padding: 0;
	position: absolute; 
	top: 100%;
	display: inline-table;
	float: left;
}

ul.settings_menu ul ul li 
{
	float: left; 
	border-top: 1px solid #6b727c;
	border-bottom: 1px solid #575f6a;
	position: absolute;
	display: inline-table;
	
}

ul.settings_menu ul ul li a 
{
	padding: 2px 2px;
	color: #fff;
}	

ul.settings_menu ul ul li a:hover 
{
	background: #0000cc;
}

ul.settings_menu ul ul li:hover 
{
	background: #0000cc;
}