/*
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
{
	div.layNav div.nav
	{
		margin-left:  auto;
		margin-right: auto;
	}
	
	div.layNav div.nav img.bullet
	{
		width:          9px;
		height:         9px;
		vertical-align: middle;
	}
	
	/* Navigation items *****************************/
	div.layNav div.nav a
	{
		color:           #fff;
		margin:          0 12px 0 8px;
		text-decoration: none;
	}
	
	div.layNav div.nav a.admin
	{
		color:           #fff;
		margin:          0 8px 0 12px;
		text-decoration: none;
	}
	
	div.layNav div.nav a:hover
	{
		color:           #c7d30c;
		text-decoration: none;
	}

	/* Dropdown menus *******************************/
	div.menu
	{
		position:    absolute;
		z-index:     100;
		width:       200px;
		font-size:   10px;
		line-height: 10px;
	}

	div.menu a
	{
		width:            auto;
		display:          block;
		padding:          5px;
		color:            #fff;
		text-decoration:  none;
		background-color: #648d63;
	}

	div.menu a:hover
	{
		color:            #fff !important;
		background-color: #4c5832; 
	}

	/* IE only hack - yay IE ************************/
	* html div.menu a
	{ 
		width: 100%;
	}
}
