/*****************************************************************************************/
/* 
	Control Left navigation CSS properties
*/
/*****************************************************************************************/

/* navigation Link properties */

a.LeftNavigationLink
{
	color: #000033;
    text-decoration: none;	
}

a.LeftNavigationLink:hover
{
    color: #777777;
    text-decoration: underline;
}

@media print
{
	a.LeftNavigationLink
	{
		display: none;
	}
	
	a.LeftNavigationLink:hover
	{
		display: none;
	}	
}

/*****************************************************************************************/

/*
	Div that wraps all the left hand nav junk
*/

.LeftNavigationMenu
{
	/*margin: 2px;*/
	background-color: #dfd0d7;
	height: 400px;
	
    background-image: url(../../Images/MainLayout/MenuBackground.jpg);
    background-position: left bottom;
    background-repeat: repeat-x;
    
	padding-left: 5px;
	padding-top: 5px;    
}

@media print
{
	.LeftNavigationMenu
	{
		display: none;
	}
}

/*****************************************************************************************/


