@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: #903;
	background: #F99;
	font: 16px/1.25em "Century Gothic", Arial, sans-serif;
}
p {
	font: 85% "Trebuchet MS", Arial, Helvetica, sans-serif;
}
a img {
	border: none;
}
#wrapper {
	background: url(image/bottom_pink2.jpg) no-repeat center bottom;
	margin: 0px auto 15px;
	width: 1000px;
	position: relative;
	padding-bottom: 10px;
}
#container {
	background: url(image/body_back_pink_long.jpg) repeat-y;
	text-align: left; /* this overrides the text-align: center on the body element. */
	border-top: none;
	border-right: none;
	border-bottom: none;
	border-left: none;
	padding-right: 9px;
	padding-left: 9px;
} 
#container .overhang {
	position: absolute;
	left: -52px;
	top: 0px;
}
#container #footer .overhang {
	background: url(image/sm_wp_png.png) no-repeat;
	height: 100px;
	width: 84px;
	left: 930px;
	top: 8px;
	position: relative;
}

#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 */
	color: #36F;
} 
#mainContent img {
	background: left center;
	padding: 0px;
}


#header {
	background: #FFF;
	padding: 40px 0 20px 150px;  /* 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. */
	font: 16px "Century Gothic", Arial, sans-serif;
	color: #F33;
} 

#sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 184px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 20px;
	background: url(image/corner_tl.gif) no-repeat;
	color: #F66;
	font-family: "Century Gothic", Arial, sans-serif;
}
#sidebar1 p {
	letter-spacing: 0.18em;
	font: 80%/1.5em "Century Gothic", Arial, sans-serif;
}
#sidebar1 a {
	color: #F66;
	text-decoration: none;
}

#sidebar1 ul {
	font: 11px/1.25em "Century Gothic", Arial, sans-serif;
	margin-top: -1em;
	letter-spacing: 0.15em;
}
#sidebar1 a:hover {
	color: #903;
	text-decoration: none;
}

#welcome .welcome, #savedate .savedate, #ph .ph, #anime .anime,  #events .events, #venue .venue, #accommodations .accommodations, #gifts .gifts, #guestbook .guestbook, #weather .weather, #ceremony .ceremony  {
	color: #903;
	font-weight: bold;
}

#footer {
	padding: 70 0px 30; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFF url(image/corner_br.gif) no-repeat right top;
	position: relative;
} 
#footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: left;
	padding: 0;
}
.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;
}
#mainContent table {
	font-size: 90%;
}

