/*
Name:        nav.css
Author:      Kyle Brickman
Description: CSS navigation definitions
Created:     10 September 2009
Notes:       This file should contain ONLY definitions for what appears the main site navigation
*/

@media all
{
	/* Dropdown menus *******************************/
	.menu_leaders,
	
	.menu_about_us,
	.menu_contact,
	.menu_members,
	.menu_communications,
	.menu_stewards,
	.menu_newsroom,
	.menu_legislative,
	.menu_union_business
	{
		position:    absolute;
		z-index:     100;
		width:       200px;
		font-size:   11px;
		line-height: 11px;
	}
	
	.menu_leaders		 a,
	
	.menu_about_us       a,
	.menu_contact        a,
	.menu_members        a,
	.menu_communications a,
	.menu_stewards       a,
	.menu_newsroom       a,
	.menu_legislative    a,
	.menu_union_business a
	{
		width:            auto;
		display:          block;
		padding:          5px;
		color:            #fff;
		text-decoration:  none;
		text-align:       left;
	}
	
	.menu_leaders		 a:hover,
	
	.menu_about_us       a:hover,
	.menu_contact        a:hover,
	.menu_members        a:hover,
	.menu_communications a:hover,
	.menu_stewards       a:hover,
	.menu_newsroom       a:hover,
	.menu_legislative    a:hover,
	.menu_union_business a:hover
	{
		color:            #fff;
	}

	.menu_leaders		 a { background-color: #5a4297; }

	.menu_about_us       a { background-color: #073c61; }
	.menu_contact        a { background-color: #a6850e; }
	.menu_members        a { background-color: #44b123; }
	.menu_communications a { background-color: #7c0b0f; }
	.menu_stewards       a { background-color: #acb637; }
	.menu_newsroom       a { background-color: #acb637; }
	.menu_legislative    a { background-color: #7e7e7e; }
	.menu_union_business a { background-color: #1189a3; }

	.menu_leaders		 a:hover { background-color: #46356d; }

	.menu_about_us       a:hover { background-color: #062842; }
	.menu_contact        a:hover { background-color: #6f5a0a; }
	.menu_members        a:hover { background-color: #347f1f; }
	.menu_communications a:hover { background-color: #580709; }
	.menu_stewards       a:hover { background-color: #828933; }
	.menu_newsroom       a:hover { background-color: #828933; }
	.menu_legislative    a:hover { background-color: #696969; }
	.menu_union_business a:hover { background-color: #0b5d70; }

	/* IE only hack - yay IE ************************/
	* html .leaders        a,
	* html .about_us       a,
	* html .contact        a,
	* html .members        a,
	* html .communications a,
	* html .stewards       a,
	* html .newsroom       a,
	* html .legislative    a,
	* html .union_business a
	{ 
		width: 100%;
	}
}
