

/*************Begin NavBar Nav***********/

/*Contains the navigation 
Give a width and a right border
and float it to the left */
#navBar {
	border-bottom: 1px dashed #94947B;
	border-right: 1px dashed #94947B;
	width: 140px;
	float: left;
	background-color: transparent;
}

/* reset the padding */
#navMain {
	padding: 0px;
}

/* reset the padding 
padding + width = navBar width
*/
#subNav-adminSetup {
	padding: 0px 0px 0px 20px;
	border-top: 1px dashed #333333;
	width: 120px;
}

/* reset the padding
leave the display as inline. uncomment out
the display block to see bullets in the subnav */
#navBar li {
	margin: 2px 0px 1px 0px;
	/*display: block;*/
	list-style-type: none;
}

/* 
Setup the diplay as block
padding + width = navBar width */
#navBar a {
	display: block;
	padding: 2px 2px 2px 10px;
	border-bottom: 0px solid #333333;
	width: 128px;
}


/***************End NavBar Nav ***************/


/***************Begin Content ***************/
/* push the content over to avoid the nav */
#contentWrapper {
	margin-left: 140px
}

/* reset the main margins */
#contentMain {
	margin: 5px 10px 5px 15px;
}

/***************End Content ***************/







