@charset "utf-8";
/* 
Style sheet to describe the lefthand (level 2 and 3) navigation components. 
Project: Village of Petitcodiac
Date: June 2009
Version 1.0
*/

/*Style for the outer container of the level 2 and 3 navigation components*/
.level2NavDiv {
	padding-left:10pt; 
	padding-right:10pt;
}

/*Style for hyperlinks that are located in the outer container of the level 2 and 3 navigation components*/
.level2NavDiv a {
	text-decoration: none;
}

/*Style for hyperlinks that are located in the outer container of the level 2 and 3 navigation components, when a mouse hovers over the hyperlink*/
.level2NavDiv a:hover {
	background-color: #6e0000;
	color: #ffe597;
}

/*Style for unordered lists for level 2 navigation items that are located in the outer container of the level 2 and 3 navigation components*/
.level2NavDiv ul {
	/*Set the margin and padding on the left to 0 since we do not want the level 2 navigation
	lable to be indented*/
	margin-left:0;
	padding-left:0;
	list-style: none;
}

/*Style for list items in the unordered lists for level 2 navigation items that are located in the outer container of the level 2 and 3 navigation components*/
.level2NavDiv ul li {
	font-size: 100%;
	font-weight: bolder;
	color: #6e0000;		
}

/*Style for unordered lists for level 3 navigation items that are located in the outer container of the level 2 and 3 navigation components*/
.level2NavDiv ul li ul {
	padding-left: 0pt;
	
	/*Set the left margin positive, with an absolute value > the absolute value of text-indent
	to force any list items that wrap to indent deeper than the first line of the list item*/
	margin-left: 25pt;
	text-indent: -20pt;
	list-style-type:none;	
}

/*Style for list items in the unordered lists for level 3 navigation items that are located in the outer container of the level 2 and 3 navigation components*/
.level2NavDiv ul li ul li {
	font-size: 90%;
	font-weight:normal;
	color: #6e0000;	
}





