﻿/***For this to work change k2-header.php near botom of code.	 
*
*	wp_list_pages( $list_args );
*
*             to
*
*	//wp_list_pages( $list_args );
*	wp_list_pages( apply_filters('k2_menu_list_pages',
*	'sort_column=menu_order&depth=2&exclude=0&title_li=') );
*
*	If you want to remove pages enter pages ids into exclude (currently 0) seperated by commas.
*	To work with more than two levels change deph the desired length.
*
*	Author Name	: 	Daniel Morrison
*	Author Site	: 	http://danstech.wordpress.com/
*	Style Name	: 	Dropdown
*	Style URI	: 	http://danstech.wordpress.com/dropdown
*	Version		: 	0.5
*	Comments	: 	K2 Dropdown with one line of code
*	Tags		:   Read for activation info!
*/

/*Add Hover to Unsuported Browsers*/
body {
   behavior: url("hover.htc");
}

/*Fix White Menus*/    
ul.menu li.current_page_item ul a,
ul.menu li.current_page_ancestor ul a{
	background: #444444;
	color: #dddddd;
    }

ul.menu li.current_page_item ul a:hover,
ul.menu li.current_page_ancestor ul a:hover {
	background: #333333;
	color: #eeeeee;
}

/*Generated Code*/
.menu {
    position:relative;
    z-index:1;
    width:100%;
    }

.menu, .menu ul {
    float:left;
    list-style:none;
    padding:0;
    border:0px solid #aaa;
    margin:0;
    width:100%;
    }

.menu a {
    display:block;
    color:#dddddd;
    text-decoration:none;
    padding:0px 10px;
    }

.menu li {
    float:left;
    padding:0;
    }

.menu ul {
    position:absolute;
    left:-999em;
    height:auto;
    width:101px;
    font-weight:normal;
    margin:0;
    line-height:1;
    border:0;
    border-top:1px solid #666666;
    }

.menu li li {
    width:99px;
    border-bottom:1px solid #666666;
    border-left:1px solid #666666;
    border-right:1px solid #666666;
    font-weight:bold;
    font-family:verdana,sans-serif;
    }

.menu li li a {
    padding:4px 10px;
    width:80px;
    color:#dddddd;
    }

.menu li ul ul {
    margin:-21px 0 0 100px;
    }

.menu li:hover ul ul, .menu li:hover ul ul ul, .menu li:hover ul ul ul ul {
    left:-999em;
    }

.menu li:hover ul, .menu li li:hover ul, .menu li li li:hover ul, .menu li li li li:hover ul, .menu li.sfhover ul {
    left:auto;
    background:#444444;
    }