/* main bar, 100% width */
#network-bar
{
	background: #222;
	padding: 10px 0;
	text-align: center;
}

/* inner bar. used for centering in browser. 
	adjust width to equal width of site. */
#network-bar-inner
{
	margin: 0 auto;
	text-align: left;
	width: 960px;
}

/*** top level list ***/
/* reset lists */
#network-bar ul,
#network-bar li
{
	list-style: none;
	margin: 0;
	padding: 0;
}

/* site list items */
#network-bar li
{
	display: block;
	float: left;
	margin: 0 10px 0 0;
	position: relative;
	z-index: 9999;
}

/* site links */
#network-bar a
{
	color: #f0f0f0;
	display: block;
	padding: 6px 12px;
	text-decoration: none;
	
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

#network-bar a img { display: block; }

#network-bar li.netbar-more a
{
	background: url('icons/arrow.png') no-repeat right center;
	padding-right: 14px;
}

#network-bar li.netbar-more li a { background-image: none; }

/* site links on hover */
#network-bar a:hover 
{ 
	background: #555; 
	border-bottom: none;
}

/* current site link 
   adds border and decreases padding by 1px (around).
   decreasing padding keeps sites lined up. */
#network-bar a.netbar-current 
{ 
	background: url("icons/notch.png") no-repeat scroll center bottom #555;
	font-weight: bold;
}

/* custom styling example */
#network-bar li.netbar-item-0 a:hover {}
#network-bar li.netbar-item-1 a:hover {}
#network-bar li.netbar-item-2 a:hover {}
#network-bar li.netbar-item-3 a:hover {}

/* dropdowns */
#network-bar li ul
{
	background: #333;
	border-top: 1px solid #666;
	border-bottom: 1px dotted #444;
	display: none;
	float: none;
	height: auto;
	left: 0;
	margin: 0;
	position: absolute;
	top: 31px;
	z-index: 9999;
	width: 220px;
}

#network-bar li li
{
	float: none;
	font-size: 11px;
	margin: 0;
	padding: 0;
	position: relative;
}

#network-bar li li a
{
	border: none;
	border-top: 1px dotted #444;
	cursor: pointer;
	float: none;
	height: auto;
	line-height: 1.5;
	padding: 6px;

	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}



#network-bar li li a:hover
{
	background-color: #000;
}

#network-bar li li a:active,
#network-bar li li a:focus
{
	line-height: 1.5;
}

#network-bar li li ul
{
	border-top-width: 2px;
	border-left: 1px dotted #444;
	border-right: 1px dotted #444;
	left: 160px;
	top: 0;
}

#network-bar p
{
	float: right;
	margin: 0;
	font-family: sans-serif;
}

#network-bar p a { color: #666; }

/* ie6 fixes */
* html #network-bar a { float: left; }
* html #network-bar ul li,
* html #network-bar ul li li a,
* html #network-bar ul li ul { zoom: 1; }

/* clearfix */
#network-bar:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
	}
* html #network-bar             { zoom: 1; } /* IE6 */
*:first-child+html #network-bar { zoom: 1; } /* IE7 */
