* {
	margin:0;
	padding:0;
}
body  {
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	background: url(../images/bodyBackground.jpg) left top repeat-x;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	font-weight: bold;
}
a {
	color:#991f2b;
	text-decoration:underline;
}
a:hover {
	color:#000000;
	text-decoration:none;
	font-weight:bold;
}
h1 {
	color:#991f2b;
}
h4 {
	color:#7f7c19;
}
.headerBody h2 {
	color:#FFFFFF;
	padding:20px;
	font-size:48px;
}
.headerBody p {
	color:#FFFFFF;
	padding:0 20px;
}
#container {
	width: 900px; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 
#header { 
	background: #DDDDDD; 	
} 
#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: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#mainMenu {
	height:92px;
	width:900px;
	background:url(../images/menuBackground.jpg) left top no-repeat;
}
#mainMenu #menu {
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 0;
	padding-left: 10px;

}
#mainMenu .buttonPosition {
	background-position: -20px40px;
}
#mainMenu ul {
	list-style:none;
	margin:0;
	padding:0;
}
#mainMenu li {
	float:left;
	width:144px;
	
	margin:0;
	padding:0;
	text-align:center;
}
#mainMenu li a {
	display:block;
	padding:5px 5px;
	height:100%;
	color:#FFF;
	text-decoration:none;
	border-right:1px solid #FFF;
}
#mainMenu li a:hover, li a:focus, li a:active {
	background-position:-150px 0;
}
#mainMenu #menu a {
	background:url(../images/bg.jpg) repeat -20px 35px;
}
.headerBody {
	height:250px;
	width:900px;
	background-image: url(../images/headerBackground.png);
	background-repeat: no-repeat;
	background-position: left top;
}
#mainContent {
	margin-top: 0px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 5px;
	padding-top: 0;
	padding-right: 5px;
	padding-bottom: 0;
	padding-left: 5px;
} 
#mainContent1 { 
	margin: 15px 0 0 15px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 

#footer {
	background: url(../images/footerBackground.png) left top no-repeat;
	height:73px;
	width:900px;
	text-align:center;
	margin-bottom:10px;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
} 
#footer p {
	color:#FFFFFF;
	padding:20px;
}
#footer a {
	color:#FFFFFF;
}
#footer a:hover {
	color:#FFFFFF;
	font-weight:normal;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColElsRtHdr #sidebar1 p" rule.
*/
#sidebar1 {
	float: left; 
	width: 215px; /* since this element is floated, a width must be given */
	padding: 15px 0; /* top and bottom padding create visual space within this div */
}
#sidebar1 p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}

h3 {
	margin:0;
	padding:0;
}
#sidebar1 h3 {
	width: 190px;
	height: 36px;
	font-size: 14px;
	font-weight: bold;
	padding-left: 25px;
	padding-top: 10px;
	color: #ffffff;
	background: url(../images/title.png) no-repeat;
}
.title_back ul {
	margin:0;
	padding:0;
}
#sidebar1 ul {
	list-style: none;
	margin-bottom: 10px;
	padding-top: 10px;
}

#sidebar1 .title_back {
	background: url(../images/title_back.png) no-repeat top;
}

#sidebar1 li  {
	padding: 7px;
	padding-left: 20px;
}
.bot {
	padding: 10px;
}

#calendar {
	padding: 20px 10px 20px 10px;
}

#calendar table {
	width: 100%;
	text-align: center;
}
#calendar tbody td {
	border: 1px solid #F1F1F1;
}
#calendar #prev {
	text-align: left;
}
#calendar tfoot a {
	text-decoration: none;
	font-weight: bold;
}
#calendar #now {
	background: #696969;
	border: 1px solid #ff0000;
	font-weight: bold;
	color: #ffffff
}
