/*
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 *******************************/
	div.menu
	{
		position:    absolute;
		z-index:     100;
		width:       200px;
		font-size:   11px;
		line-height: 11px;
	}

	div.menu a
	{
		width:            auto;
		display:          block;
		padding:          5px;
		color:            #fff;
		text-decoration:  none;
		text-align:       left;
		background-color: #65161c;
	}

	div.menu a:hover
	{
		color:            #fff;
		background-color: #93161c; 
	}

	/* IE only hack - yay IE ************************/
	* html div.menu a
	{ 
		width: 100%;
	}
}
