/*----------------------------------------------------------------------
						[Common Styles Stylesheet]

[Table of Contents]

1. Block Display
2. Links using Images / a img
3. Menu / #menu
	3.1 Menu Position / #navigation
		3.1.1 Menu Unordered Lists / #navigation ul
		3.1.2 Menu List Items / #navigation li
		3.1.3 Menu Unordered List, List Items / #navigation ul li
		3.1.4 Menu Unordered List, List Items, Links / #navigation ul li a
		3.1.5 Menu Unordered List, List Items, Links, Mouse Over, Selected / #navigation ul li a:hover, #navigation ul li a.selected

[Colour Codes]
	Menu List Items, Item Links: text #E58100 (orange)
	Menu List Item Links: mouse over text, #A13F03 (brown)
----------------------------------------------------------------------*/

@charset "utf-8";
/* CSS Document */

/*@import url("ilnv_contentstyles.css");*/

.block {
	display: block;
}
a img {
	border :none;
}


/* navigation  */
#menu{
	float: left;
	width: 230px;
	background: url(../../_sharedimg/menu_bg.gif) no-repeat top left;
	margin: 0px 0px 0px 1px;
	display:inline;
	list-style-type: none;
}

	#navigation {
		margin: 0;
		list-style-type: none;
	}

		#navigation ul {
			float:left;
			list-style: none;
			height: auto;
			padding: 0 0 4px 0px;
/*			padding: 0 0 20px 4px;
			border:1px solid red;
*/	
			margin: 0;
		}
		
		#navigation li {
			float: left;
			width: 216px;
			background:url(../../_sharedimg/menu_nav_sep.gif) no-repeat bottom left;
			padding: 1px 0px 1px 0px;
			margin: 0;
		}
			
		#navigation ul li {
			color: #E58100;
			padding: 2px 0px 4px 45px;
			margin:0px;
			background: left top url(../../_sharedimg/menu_li.gif) no-repeat;
			width: 178px;
		}
		
		#navigation ul li a {
			font-weight: bold;
			color: #E58100;
		}
		#navigation ul li a:hover,
		#navigation ul li a.selected {
			color: #A13F03;
		}
		
