body {
	font-family: Arial, Helvetica, sans-serif;
	background-image: url(images/bkgd-striped.gif);
}
table {
	width: 740px;
	border: thin solid #BF9AE1;
}
img.centerimage {
	display: block;
	margin-right: auto;
	margin-left: auto;
}

#form1 #formtable {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.formfield {
	background-color: #F8F0FF;
	width: 530px;
	margin-bottom: 12px;
	float: right;
	overflow-y: hidden;
}
#formtable td {
	vertical-align: top;
}

.formbutton {
	background-color: #E8CEFF;
	color: #3B0270;
	font-weight: bold;
}
#menubar {
	background-color: #B79DD0;
	width: 660px;
	margin-left: 30px;
}
.normalize {
	width: 660px;
	margin-left: 30px;
}
#formtable label {
	line-height: 25px;
}
.noborder {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

#facebook {
	font-size:12px;
	position:relative;
	float:left;
	z-index:100;
	width:104px;
	text-align:right;
	margin-left: 10px;
}

/*thanks to http://www.boutell.com/newfaq/creating/border.html*/
#facebook img {
border-style:none;
}


/*to get the boxes next to each other you could use
- absolute positioning -- but that wouldn't work with my Template (we can't be sure where the footer will start in a Template)
- relative positiing plus floats

But with floats, you can't use LEFT to move in the from the left, so I'm using MARGIN-LEFT

The basic idea is
TABLE-PADDING + MARGIN-LEFT + WIDTH-OF-FOOTER + WIDTH-OF-FACEBOOK + MARGIN-RIGHT + PADDING = 740
          P+L+F+B+R+P = 740
		  2P+L+F+B+R = 740
		  12+L+F+B+R = 740
		  L+F+B+R = 728
WIDTH-OF-FOOTER + WIDTH-OF-FACEBVOOK = 660
          F=660-B
		  L+F+B+R = 728
		  L+(660-B)+B+R = 728
		  L+R=68
		  L=68-R
where MARGIN-LEFT = WIDTH-OF-FACEBOOK + MARGIN-RIGHT
          L=B+R
		  B+R = 68-R
		  


*/


#footer {
float:left;
width:440px;
margin-left:138px;
}

.center {
text-align:center;
}

