/* resets */
ul, body { 
	margin:0;
	padding:0;
}

/* divisions */
body {
	font-size:62.5%;
	font-family:'Times New Roman';
	background:#D3D3D3;
	color:#333;
	margin:7.3em 1em 1em 1em;
	}
	#wrap {		
		margin:0 auto;
		width:88em;
	}
		#header {
			text-align:center;
		}
		#sidebar {
			width:20em;
			float:right;	
		}
			#sidebar img {
				border:0;
			}
		#content {
			padding:1em;
			margin:0 0 0 2em;
			width:64em;
			-moz-border-radius: 0.5em;
			-webkit-border-radius: 0.5em;
			background:white;
			float:right;
			font-size:1em;
			
		}
		#footer {
			clear:both;
			padding-top:1em;
			text-align:right;
		}
	
/* fonts */
body p {
	font-size:1.4em;
}
table td {
	font-size:1.3em;
}
thead {
	font-size:1.5em;
}
body, .form-text, textarea, .text {
	font-family: Arial, Verdana;
}

/* inlines */
hr {
	border:0;
	border-top:0.1em solid #ccc;
}

/* fieldsets */	
fieldset, .form-text {
	border:1px solid #E6E6E6;
	background:#f6f6f6;
	padding:0.3em;
}

/* links */
.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;
}

/* content links */

a:active, a:link {
	color:#0E4E8B;/*#005FA9;*/
	text-decoration:underline;
}
a img {
	border:0;
}

/* images */
td img {
	text-align:center;
}

/* tables */
table {
	border-collapse:collapse;
	margin-bottom:1em;
}
	thead {
		background:#4A4A4A;
		color:white;
		text-align:center;
	}
	table th {
		padding:.5em;
	}
	table td {
		border:0.1em solid #DFDFDF;
		padding:1em;
		vertical-align:top;
	}
		table tr.even {
			background:#EBEDEF;
		}
		table td.last {
			border-right:0;
		}
		
/* lists */
#content ul {
	margin-left:2em;
}
	#content li {
		font-size:1.5em;
		margin-bottom:0.2em;
		font-size:1.2em !important;
	}

#sidebar ul {
	list-style:none;
	margin-top:2em;
}
	#sidebar li {
		font-size:1.5em;
		border-top:1px solid #ccc;
		padding:0.3em;
	}
	.active {
		font-weight:bold;
	}
		#sidebar li a {
			text-decoration:none;
			color:#333;
		}
table ul {
	list-style:none;
}
	table li {
		border-top:1px solid #DFDFDF;
		padding:0.3em;
	}		





/*
** 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 */
}

