/*Removing any margins at the top level so it fits in the layout*/
#masterLocalNavigation div
{
	margin: 0px !important;
}

/* OOTB Nav Holder div */
#masterLocalNavigation .ms-core-listMenu-verticalBox {
	width: 224px;
	
	margin: 0px !important;
	padding: 0px;
}

/*
-----------------------------------------------------------------------------------------------------------
LINKS
-----------------------------------------------------------------------------------------------------------
*/

/*Removing any margins at the list level, and hiding list bullets */
#masterLocalNavigation ul.static
{
	padding: 0px !important;
	list-style: none;
}

/* Containing <li> tag for links */
#masterLocalNavigation .ms-core-listMenu-verticalBox li.static {
	margin: 0px !important;
}

/*
LINKS
-----------------------------------------------------------------------------------------------------------
*/

/*TOP LEVEL ITEMS

/* Create bullets before links */
#masterLocalNavigation div.ms-core-listMenu-verticalBox > ul > li.static > a.static:before
{
	content: url("bullet.png");; /* Insert content that looks like bullets */
    padding-right: 10px;
}

/* Default nav item state */
#masterLocalNavigation div.ms-core-listMenu-verticalBox > ul > li.static > a.static
{
	width: 209px;
	
	margin-left: 16px;
    text-indent: -16px;
	
	margin-right: 0px;
	margin-top: 0px;
	margin-bottom: 10px;
	
	padding-left: 0px;
	padding-right: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
	
	border-bottom: 1px solid white;
	
	font-family: Verdana;
	font-size: 12px;
	color: rgb(64,71,78);
}

/* Hover state for nav items (includes selected nav item) */
#masterLocalNavigation div.ms-core-listMenu-verticalBox > ul > li.static > a.static:hover {
	background-color: white;
	text-decoration: underline;
}

/* Selected state for nav item */
#masterLocalNavigation div.ms-core-listMenu-verticalBox > ul > li.static > a.selected {
	background-color: white;
	text-decoration: none;
}

/*SECOND LEVEL ITEMS*/

/* Create bullets before links */
#masterLocalNavigation .ms-core-listMenu-verticalBox li.static > ul > li.static > a.static:before
{
	content: url("bullet2.png");; /* Insert content that looks like bullets */
    padding-right: 10px;
}

/* Default nav item state */
#masterLocalNavigation .ms-core-listMenu-verticalBox li.static > ul > li.static > a.static
{
	width: 209px;
	
	margin-left: 32px;
    text-indent: -32px;
	
	margin-right: 0px;
	margin-top: 0px;
	margin-bottom: 10px;
	
	padding-left: 0px;
	padding-right: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
	
	border-bottom: 1px solid white;
	
	font-family: Verdana;
	font-size: 12px;
	color: rgb(64,71,78);
}

/* Hover state for nav items (includes selected nav item) */
#masterLocalNavigation .ms-core-listMenu-verticalBox li.static > ul > li.static > a.static:hover {
	background-color: white;
	text-decoration: underline;
}

/* Selected state for nav item */
#masterLocalNavigation .ms-core-listMenu-verticalBox li.static > ul > li.static > a.selected {
	background-color: white;
	text-decoration: none;
}

/*
HEADINGS
-----------------------------------------------------------------------------------------------------------
*/

/* Default nav item state */
#masterLocalNavigation .ms-core-listMenu-verticalBox li.static > span.static
{
	width: 205px;
	
	margin-left: 0px;
	margin-right: 0px;
	margin-top: 20px;
	margin-bottom: 10px;
	
	padding-left: 0px;
	padding-right: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
	
	border-bottom: 1px solid white;
	
	font-family: Verdana;
	font-size: 13px;
	font-weight: bold;
	color: rgb(0,91,141);
}

/*
-----------------------------------------------------------------------------------------------------------
EDIT LINKS
-----------------------------------------------------------------------------------------------------------
*/

#masterLocalNavigation .ms-navedit-editLinksIconWrapper
{
	display: none;
}

#masterLocalNavigation .ms-listMenu-editLink 
{
	display: none;
}

/*
-----------------------------------------------------------------------------------------------------------
SITE CONTENTS
-----------------------------------------------------------------------------------------------------------
*/

/*Hiding spacer*/
#masterLocalNavigation hr{
	display: none;
}

/*Hiding the Site Contents Link*/
#masterLocalNavigation #ctl00_PlaceHolderLeftNavBar_PlaceHolderQuickLaunchBottom_idNavLinkViewAllV4
{
	display: none;
}