@charset "utf-8";
/* CSS Document */

/*Colors

Grey background: #52514D
Orange Boxes: #F19203
Brown Boxes: #BC976F
Yellow Text: #FFFF00
 
*/


body {
	background-color:#DADADA;
	background-image:url(../images/newleaf/bg-gradient.jpg);
	background-repeat:repeat-x;
}

/* ********** Primary layout elements ***************** */

/*This is to keep the absolutly positioned left bar from running off the screen*/ 
#container {
	width:800px;
	margin-left:auto;
	margin-right:auto;
	padding-left:150px;
}

/* The visible grey box */
#main {
	width:800px;
	height:800px;
	margin-left:auto;
	margin-right:auto;
	background-color:#52514D;
	position:relative;
}
	/*The corners for the main box */
	#topleft {
		position:absolute;
		left:0px;
		top:0px;
	}
	#topright {
		position:absolute;
		right:0px;
		top:0px;
	}
	#bottomright {
		position:absolute;
		right:0px;
		bottom:0px;
	}
	#bottomleft {
		position:absolute;
		left:0px;
		bottom:0px;
	}

/* The primary title bar container */
#titleBar {
	/*background-color:#F19203;*/
	background-image:url(../images/newleaf/titleBox.gif);
	background-repeat:no-repeat;
	width:760px;
	height:125px;
	margin-left:auto;
	margin-right:auto;
	margin-top: 15px;
	padding-top:5px;
	position:relative;
}
	/* The container the contains the nav elements */
	#menuBox {
	position:absolute;
	bottom:19px;
	right:12px;
	width: 450px;
	height: 38px;
	text-align:right;
	z-index:5;
	box-sizing:border-box;
	}
		/* The Nav Graphics */
		.menuItem {
			padding:0;
			margin:0;
		}
		
	#NLIlogo {
		margin-left:15px;
		margin-top: 5px;
		width: 134;
		height: 100; 
	}
	
	#NLtitle {
		margin-left: 15px;
		margin-bottom:40px;
	}

/* The extended left graphic */
#leftBar {
	background-image:url(../images/newleaf/leftBar.gif);
	background-repeat:no-repeat;
	position:absolute;
	width: 200px;
	height: 550px;
	left: -150px;
	top: 170px;
}

/* The left bar containter */
	#leftBarContent {
		position:relative;
		width: 170px;
		height: 527px;
		padding:4px;
	}
	
/*Box Headers*/
h1{
	font-family:Georgia, "Times New Roman", Times, serif;
	color:#FFFF00;
	font-weight:bold;
	font-size:large;
	text-align:center;
	padding-top:5px;
}

h2 {
	font-family:Georgia, "Times New Roman", Times, serif;
	color:#FFFF00;
	font-weight:normal;
	font-size:medium;
	text-align:center;
	padding-top:5px;
}

a {
		color:#330000;
}

/*No border around images*/
img {
	border:none;
}