table {
	border-bottom: 1px solid #999;
	border-left: 1px solid #999;
}
table td, table th {
	border-right: 1px solid #999;
	border-top: 1px solid #999;
}
table th {
	text-align: left;
	background-color: #ddd;
}
table td, table th {
	padding-left: 5px;
	padding-right: 5px;
}
table td a {
	color: black;
	font-size: 0.9em;
}
table .odd {
	background-color: #eee;
}
.clear {
  clear: both;
  height: 0;
  overflow: hidden;
}

#container {
  width: 75%;
  margin: 0 auto;
  background-color: #FFF;
  padding: 20px 40px;
  border: solid 1px black;
  margin-top: 20px;
}

#flash_notice, #flash_error {
  padding: 5px 8px;
  margin: 10px 0;
}

#flash_notice {
  background-color: #CFC;
  border: solid 1px #6C6;
}

#flash_error {
  background-color: #FCC;
  border: solid 1px #C66;
}

.fieldWithErrors {
  display: inline;
}

#errorExplanation {
  width: 400px;
  border: 2px solid #CF0000;
  padding: 0px;
  padding-bottom: 12px;
  margin-bottom: 20px;
  background-color: #f0f0f0;
}

#errorExplanation h2 {
  text-align: left;
  font-weight: bold;
  padding: 5px 5px 5px 15px;
  font-size: 12px;
  margin: 0;
  background-color: #c00;
  color: #fff;
}

#errorExplanation p {
  color: #333;
  margin-bottom: 0;
  padding: 8px;
}

#errorExplanation ul {
  margin: 2px 24px;
}

#errorExplanation ul li {
  font-size: 12px;
  list-style: disc;
}
#admin-navi {
	float: right;
	font-size: 12px;
	color: black;
}

/* -------------------------------------------------------------------------------------------------

It's *strongly* suggested that you don't modify this file.  Instead, load a new stylesheet after
this one in your layouts (eg formtastic_changes.css) and override the styles to suit your needs.
This will allow you to update formtastic.css with new releases without clobbering your own changes.

This stylesheet forms part of the Formtastic Rails Plugin
(c) 2008 Justin French

--------------------------------------------------------------------------------------------------*/


/* NORMALIZE AND RESET - obviously inspired by Yahoo's reset.css, but scoped to just form.formtastic
--------------------------------------------------------------------------------------------------*/
form.formtastic, form.formtastic ul, form.formtastic ol, form.formtastic li, form.formtastic fieldset, form.formtastic legend, form.formtastic input, form.formtastic textarea, form.formtastic select, form.formtastic p { margin:0; padding:0; }
form.formtastic fieldset { border:0; }
form.formtastic em, form.formtastic strong { font-style:normal; font-weight:normal; }
form.formtastic ol, form.formtastic ul { list-style:none; }
form.formtastic abbr, form.formtastic acronym { border:0; font-variant:normal; }
form.formtastic input, form.formtastic textarea, form.formtastic select { font-family:inherit; font-size:inherit; font-weight:inherit; }
form.formtastic input, form.formtastic textarea, form.formtastic select { font-size:100%; }
form.formtastic legend { color:#000; }


/* FIELDSETS & LISTS
--------------------------------------------------------------------------------------------------*/
form.formtastic fieldset { }
form.formtastic fieldset.inputs { }
form.formtastic fieldset.buttons { padding-left:25%; }
form.formtastic fieldset ol { }
form.formtastic fieldset.buttons li { float:left; padding-right:0.5em; }

/* clearfixing the fieldsets */
form.formtastic fieldset { display: inline-block; }
form.formtastic fieldset:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
html[xmlns] form.formtastic fieldset { display: block; }
* html form.formtastic fieldset { height: 1%; }


/* INPUT LIs
--------------------------------------------------------------------------------------------------*/
form.formtastic fieldset ol li { margin-bottom:1.5em; }

/* clearfixing the li's */
form.formtastic fieldset ol li { display: inline-block; }
form.formtastic fieldset ol li:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
html[xmlns] form.formtastic fieldset ol li { display: block; }
* html form.formtastic fieldset ol li { height: 1%; }

form.formtastic fieldset ol li.required { }
form.formtastic fieldset ol li.optional { }
form.formtastic fieldset ol li.error { }
  

/* LABELS
--------------------------------------------------------------------------------------------------*/
form.formtastic fieldset ol li label { display:block; width:25%; float:left; padding-top:.2em; }
form.formtastic fieldset ol li li label { line-height:100%; padding-top:0; }
form.formtastic fieldset ol li li label input { line-height:100%; vertical-align:middle; margin-top:-0.1em;}


/* NESTED FIELDSETS AND LEGENDS (radio, check boxes and date/time inputs use nested fieldsets)
--------------------------------------------------------------------------------------------------*/
form.formtastic fieldset ol li fieldset { position:relative; }
form.formtastic fieldset ol li fieldset legend { position:absolute; width:25%; padding-top:0.1em; }
form.formtastic fieldset ol li fieldset legend span { position:absolute; }
form.formtastic fieldset ol li fieldset ol { float:left; width:74%; margin:0; padding:0 0 0 25%; }
form.formtastic fieldset ol li fieldset ol li { padding:0; border:0; }


/* INLINE HINTS
--------------------------------------------------------------------------------------------------*/
form.formtastic fieldset ol li p.inline-hints { color:#666; margin:0.5em 0 0 25%; }


/* INLINE ERRORS
--------------------------------------------------------------------------------------------------*/
form.formtastic fieldset ol li p.inline-errors { color:#cc0000; margin:0.5em 0 0 25%; }
form.formtastic fieldset ol li ul.errors { color:#cc0000; margin:0.5em 0 0 25%; list-style:square; }
form.formtastic fieldset ol li ul.errors li { padding:0; border:none; display:list-item; }


/* STRING & NUMERIC OVERRIDES
--------------------------------------------------------------------------------------------------*/
form.formtastic fieldset ol li.string input { width:74%; }
form.formtastic fieldset ol li.password input { width:74%; }
form.formtastic fieldset ol li.numeric input { width:74%; }


/* TEXTAREA OVERRIDES
--------------------------------------------------------------------------------------------------*/
form.formtastic fieldset ol li.text textarea { width:74%; }


/* HIDDEN OVERRIDES
--------------------------------------------------------------------------------------------------*/
form.formtastic fieldset ol li.hidden { display:none; }


/* BOOLEAN OVERRIDES
--------------------------------------------------------------------------------------------------*/
form.formtastic fieldset ol li.boolean label { padding-left:25%; width:auto; }
form.formtastic fieldset ol li.boolean label input { margin:0 0.5em 0 0.2em; }


/* RADIO OVERRIDES
--------------------------------------------------------------------------------------------------*/
form.formtastic fieldset ol li.radio { }
form.formtastic fieldset ol li.radio fieldset ol { margin-bottom:-0.6em; }
form.formtastic fieldset ol li.radio fieldset ol li { margin:0.1em 0 0.5em 0; }
form.formtastic fieldset ol li.radio fieldset ol li label { float:none; width:100%; }
form.formtastic fieldset ol li.radio fieldset ol li label input { margin-right:0.2em; }


/* CHECK BOXES (COLLECTION) OVERRIDES
--------------------------------------------------------------------------------------------------*/
form.formtastic fieldset ol li.check_boxes { }
form.formtastic fieldset ol li.check_boxes fieldset ol { margin-bottom:-0.6em; }
form.formtastic fieldset ol li.check_boxes fieldset ol li { margin:0.1em 0 0.5em 0; }
form.formtastic fieldset ol li.check_boxes fieldset ol li label { float:none; width:100%; }
form.formtastic fieldset ol li.check_boxes fieldset ol li label input { margin-right:0.2em; }



/* DATE & TIME OVERRIDES
--------------------------------------------------------------------------------------------------*/
form.formtastic fieldset ol li.date fieldset ol li,
form.formtastic fieldset ol li.time fieldset ol li,
form.formtastic fieldset ol li.datetime fieldset ol li { float:left; width:auto; margin:0 .3em 0 0; }

form.formtastic fieldset ol li.date fieldset ol li label,
form.formtastic fieldset ol li.time fieldset ol li label,
form.formtastic fieldset ol li.datetime fieldset ol li label { display:none; }

form.formtastic fieldset ol li.date fieldset ol li label input, 
form.formtastic fieldset ol li.time fieldset ol li label input, 
form.formtastic fieldset ol li.datetime fieldset ol li label input { display:inline; margin:0; padding:0;  }


/* -------------------------------------------------------------------------------------------------

Load this stylesheet after formtastic.css in your layouts to override the CSS to suit your needs.
This will allow you to update formtastic.css with new releases without clobbering your own changes.

For example, to make the inline hint paragraphs a little darker in color than the standard #666:

form.formtastic fieldset ol li p.inline-hints { color:#333; }

--------------------------------------------------------------------------------------------------*/


body {
	width: 800px;
	font-family: Verdana, Arial, sans-serif;
	margin-left: 30px;
	margin-top: 20px;
}
#logo {
	font-size: 30px;
	color: #946124;
	height: 50px;
}
#logo a {
	color: #946124;
	text-decoration: none;
}
#pagecontent {
}
#pagecontent .text-block {
	font-size: 15px;
	padding-top: 0px;
	color: #777;
}
#navileft {
	float: left;
	width: 270px;
}
#navileft ul li.title a {
	color: #499e4b;
	text-decoration: none;
}
#content {
	float: right;
	width: 520px;
	margin-bottom: 20px;
}
#navileft ul {
	margin: 0;
	padding: 0;
	font-size: 14px;
	// border: 1px solid #999;
}
#navileft ul li {
	//border: 1px solid #999;
	list-style: none;
	list-style-position: outside;
	padding: 0;
	padding-bottom: 3px;
	margin: 0;
}
#navileft ul li.title {
	margin-top: 10px;
	margin-bottom: 5px;
	color: #499e4b;
	font-size: 18px;
	font-weight: 600;
}
#navileft li p {
	margin: 0px;
	padding-left: 10px;
	font-size: 0.85em;
	color: #777;
}
#navileft li.space-before {
	padding-top: 10px;
}
#navileft li a {
	color: black;
	// text-decoration: none;
}
#navileft li.link {
	// font-weight: 600;			
}
#navileft li.item {
	font-size: 0.90em;
	padding: 0px;
}
#footer {
	text-align: right;
	color: #499e4b;
	font-size: 18px;
}
#footer a {
	color: #499e4b;
	font-weight: 500;
	text-decoration: none;
}
div {
	/* border: 1px solid darkgrey; */
}
.overview-item {
	float: left;
	/* border: 1px solid #999; */
	width: 150px;
	height: 150px;
	padding: 5px;
	margin: 5px;
}
.overview-item h3 {
	color: #499e4b !important;
	font-size: 0.8em !important;
	margin: 0px;
}
.overview-item h3 a {
	color: #499e4b;
	text-decoration: none;
}

#content h3 {
	color: #499e4b;
	font-size: 18px;
	margin-top: 10px;
}
#content h4 {
	color: #499e4b;
	font-size: 16px;
	margin-top: 10px;
	margin-bottom: 0px;
}

.content table,
.content td,
.content th {
	border: 0;
	font-size: 0.95em;
}
.content a {
	color: black;
}
.content input[type=text] {
	border: 1px solid darkgrey;
	font-size: 1.1em;
	width: 300px;
}
.content input.cnt_field {
	width: 30px;
}
.content div.register input {
	border: 1px solid darkgrey;
	font-size: 1.1em;
	width: 200px;
}
.content div.register label {
	display: block;
	float: left;
	width: 200px;
}
.content div.register fieldset {
	border: 1px solid #999;
	font-size: 14px;
	width: 450px;
}
.content div.register legend {
	color: #499e4b;
	font-size: 16px;
	margin-top: 10px;
	margin-bottom: 0px;
	font-weight: 600;
}

#shop-element {
}
#shop-element .shopping .item {
	font-size: 0.8em;
}
#shop-element .picture {
	float: left;
	margin-right: 15px;
}
#shop-element .shopping a {
	color: black !important;
}
#shop-element .shopping .item input[type="submit"] {
	margin-left: 55px;
	border: 1px solid darkgrey;
	font-size: 1.1em;
}
#shop-element .shopping .item input[type="text"] {
	border: 1px solid darkgrey;
	font-size: 1.1em;
}

div .errors {
	border: 2px solid red;
}

div .errors div.title {
	background-color: red;
	color: white;
	padding: 2px;
}

.errors ul {
	margin-top: 4px;
	margin-bottom: 4px;
	padding-left: 10px;
	list-style: none outside;
}

ul.error li {
	margin: 20px;
	background-color: white !important;
}
