* {
	margin:0;
	padding:0;
}
body  {
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	background: #fff 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: #fff;
}
a {
	color:#fdff44;
	text-decoration:underline;
}
a:hover {
	color:#fdff44;
	text-decoration:none;
	font-weight:bold;
}
#wrapper {
	background:url(../images/bodyPic.png) top right no-repeat;
	width:100%;
	height:752px;
}
#container { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 20px; /* the auto margins (in conjunction with a width) center the page */
	padding:10px;
	border: 6px solid #fff;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#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. */
} 
#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 */
	font-size:32px;
}
#mainContent { 
	margin: 0 250px 0 0; /* the right margin on this div element creates the column down the right 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 { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	color:#000000;
	text-align:center;
} 
#footer a {
	color:#000000;
}
#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 */
}
.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: right; 
	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: 29px;
	font-size: 14px;
	font-weight: bold;
	padding-left: 25px;
	padding-top: 10px;
	color: #000;
	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: 2px;
	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
}