@charset "UTF-8";
body  {
	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-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-image: url(../images/17.png);
}
#container #menubar {
	height: 150px;
	width: 400px;
	margin-right: auto;
	margin-left: 400px;
	margin-top: 25px;
	float: left;
	
}
.twoColFixRt #container #rtCol {
	width: 300px;
	float: right;
	clear: none;
	height: 600px;
}
.twoColFixRt #container #rtCol #list {
	height: 300px;
	margin-top: 20px;
	padding-left: 20px;
	width: 225px;
}
#menubar #leftIcon {
	float: left;
	height: 110px;
	width: 130px;
}
#menubar #centerIcon {
	float: left;
	height: 110px;
	width: 150px;
}
#menubar #rightIcon {
	float: left;
	height: 110px;
	width: 115px;
}
#menubar #invite {
	float: left;
	height: 20px;
	width: 130px;
	color: #FFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-align: center;
}
.twoColFixRt #container {
	width: 1280px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	height: 768px;
	margin-top: 13px;
	margin-bottom: 0;
	background-image: url(../images/new-bkgnd2.jpg);
	margin-right: auto;
	margin-left: auto;
	/*-moz-border-radius: 7px;
	/*-webkit-border-radius: 7px;
	/*background: -webkit-gradient(linear, 0% 0%, 0% 40%, from(#EEE), to(#FFF)); 
	background: -moz-linear-gradient(0% 40% 90deg,#FFF, #EEE);*/ 
	-webkit-box-shadow:0px 0 15px #000;
	-moz-box-shadow:0px 0 15px #000;
	box-shadow:0px 0 20px #000;
}
#menubar #guest {
	width: 140px;
	float: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFF;
	text-align: center;
}
#menubar #map {
	width: 115px;
	float: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFF;
	text-align: center;
}
.twoColFixRt #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 250px;
	height: 500px;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 10px;
	clear: left;
}
#sidebar1 #guestbook {
	height: 300px;
}
#guestbook #viewGuestbook {
	float: left;
	height: 300px;
	clear: left;
}
#content {
	height: 350px;
	width: 550px;
	margin-left: 400px;
	margin-top: 220px;
	float: left;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.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;
}
