
/* divisions */
body{
	font-size:62.5%;
	font-family:'Arial';
	color:#333;
	line-height:2.2em;
	padding:0;
	margin:0;
	}
	#wrap {		
		margin:0 auto;
		width:100em;
	}
		#header {
			text-align:center;
		}
		#content {
			background:white;
		}
		#footer {
			margin-top:1em;
			text-align:center;
		}
.front p, hr {
	margin-left:2em;
	margin-right:2em;
}

/* fieldsets */	

fieldset, .form-text {
	border:1px solid #E6E6E6;
	background:#f6f6f6;
	padding:0.3em;
}
	
/* fonts */
body p, fieldset {
	font-size:1.7em;
	color:#616161;

}
h2 {
	font-size:1.2em;
}

/* inlines */
hr {
	border:0;
	border-top:0.1em solid #ccc;
	margin-bottom:1em;
}
.lead-in {
	font-size:1.2em;
	color:#919191;
	font-family:'Times New Roman';
}

/* headers */
h1 {
	margin-top:1.3em;
	font-size:3em;
}

/* links */
a:active, a:link {
	color:#0E4E8B;
	text-decoration:underline;
}
a img {
	border:0;
}
.edit-page {
	float:right;
	font-size:1.5em;
	text-align:center;
	background: white url('images/button.png') bottom left;
	padding:0.5em;
	border:1px solid #6F625D;
	font-size:1.3em;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}
/* images */
img {
	margin-bottom:0.5em;
}

/* tables */
table {
	border-collapse:collapse;
}
	table td {
		padding:1em;
		vertical-align:top;
		width:25em;
	}
		table td.text {
			vertical-align:middle;
			padding-left:2em;
		}





/*
** Collapsing fieldsets
*/
html.js fieldset.collapsed {
  border-bottom-width: 0;
  border-left-width: 0;
  border-right-width: 0;
  margin-bottom: 0;
  height: 1em;
}
html.js fieldset.collapsed * {
  display: none;
}
html.js fieldset.collapsed legend {
  display: block;
}
html.js fieldset.collapsible legend a {
  padding-left: 15px; /* LTR */
  background: url(/misc/menu-expanded.png) 5px 75% no-repeat; /* LTR */
}
html.js fieldset.collapsed legend a {
  background-image: url(/misc/menu-collapsed.png); /* LTR */
  background-position: 5px 50%; /* LTR */
}
/* Note: IE-only fix due to '* html' (breaks Konqueror otherwise). */
* html.js fieldset.collapsed legend,
* html.js fieldset.collapsed legend *,
* html.js fieldset.collapsed table * {
  display: inline;
}
/* For Safari 2 to prevent collapsible fieldsets containing tables from dissapearing due to tableheader.js. */
html.js fieldset.collapsible {
  position: relative;
}
html.js fieldset.collapsible legend a {
  display: block;
}
/* Avoid jumping around due to margins collapsing into collapsible fieldset border */
html.js fieldset.collapsible .fieldset-wrapper {
  overflow: auto;
}

/*
** Autocomplete styles
*/
/* Suggestion list */
#autocomplete {
  position: absolute;
  border: 1px solid;
  overflow: hidden;
  z-index: 100;
}
#autocomplete ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#autocomplete li {
  background: #fff;
  color: #000;
  white-space: pre;
  cursor: default;
}
#autocomplete li.selected {
  background: #0072b9;
  color: #fff;
}
/* Animated throbber */
html.js input.form-autocomplete {
  background-image: url(/misc/throbber.gif);
  background-repeat: no-repeat;
  background-position: 100% 6px; /* LTR */
}
html.js input.throbbing {
  background-position: 100% -14px; /* LTR */
}