@charset "utf-8";
body {
	background: #9ab3c7;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
}
 
 
 #container {
	width: 1000px;
	margin: 0 auto;
	background: #FFFFFF;
}
 #header {
	padding: 0 10px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	height: 75px;
}
 #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 0px;
}

.clearfloat {
	margin: 0px;
	clear: both;
	height: 0px;
}

#schoolTitle {
	width: 1000px;
	font-size: 200%;
}
#rcsdUpdates {
	height: 50px;
	width: 250px;
	font: bold 80% Verdana, Arial, Helvetica, sans-serif;
	float: right;
	text-align: center;
	padding-top: 5px;
	background: #FFFFFF;
	position: relative;
	top: -150px;
	border: 2px solid #000000;
}

#teacherName {
	width: 500px;
	padding-top: 5px;
	padding-left: 20px;
	
	padding-bottom: 5px;
	position: relative;
	top: -25px;
}
 
 
 
#mainContent {
	background: #FFFFFF;
	padding-right: 25px;
	padding-left: 20px;
	border-top: 2px solid #666666;
	position: relative;
	top: -50px;
}



#mainContent h1 {
	font-size: 125%;
}
#mainContent        h2   {
	font-size: 125%;
	text-align: center;
}

 #footer {
	padding: 0 10px;
	text-align: center;
	position: relative;
	top: -100px;
}
 #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

div#listmenu {
	margin-left: 0px;
	margin-top: 0px;
	padding-top: 10px;
	padding-left: 40px;
	width: 1000px;
	position: relative;
	top: -50px;
	font-family: Arial, Helvetica, sans-serif;
	float: left;
	
	}
div#listmenu ul {
	margin-left: 0px;



	}
div#listmenu li {
	list-style-type:none;
	background: #9bb4c7 url(http://www.rcsd.ms/Template_images/misc/curve.gif) no-repeat left top;
	border-right: 4px solid #FFFFFF;
	float: left;
	}
	
/*
	div#listmenu li:first-child {
	border-left-width: 4px;
	border-left-style: solid;
	border-left-color: #6699CC;
	}
*/
div#listmenu li:hover {


	}
div#listmenu a {
	display:block; /*creates space each side of menu item's text */
	text-decoration:none;
	padding-right: 25px;
	color: #000000;
	padding-left: 25px;
	font-weight: bold;
	padding-top: 2px;
	}
div#listmenu a:hover {
	color:#E60000;
	background: url(http://www.rcsd.ms/Template_images/misc/curve.gif) no-repeat left top;
	}
