
/* GENERAL Styles 
----------------------------*/
html {
  font-size: 62.5%; /* For convenience = 10px unresized */
}

body {
  font-size: 1.4em;
  color: #333;
}

body, caption, th, td, input, textarea, select, option, legend, fieldset {
	font-family:  museo-sans, sans-serif;
	font-weight: 300;
}


a:link, a:visited {
  color: #f08e29;
  text-decoration:none;
  -moz-transition-duration: 0.1s;
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
}

a:hover, a:active {
  text-decoration:underline;
}

/* Titles  */

h1 {
  font-size: 30px; 
	line-height:1.3em;
	margin-bottom:0.5em;
	margin-top:0pt;
	color: #f39531;
	font-weight: 700;
}

.front h1 {
  padding-top: 20px;
}

h2 {
  font-size: 18px; 
	line-height:1.3em;
	margin-bottom:0.5em;
	margin-top:0pt;
	color: #333;
	font-weight: 500;
}
 
/* Paragraph Styles */

.node p {
  margin: 1em 0;
}

/* List Styles  */

ul, ol {
  margin-left: 0;
  padding-left: 2em;
}

/* Table Styles  */

table {
	width: 99%;
}
tr.even td, tr.odd td {
	padding: 10px 5px;
}
tr.even {
	background-color: #F9F9F9;
}
tr.odd {
	background-color: #fff;
}

/* Code */

pre, code {
	background-color:#efefef;
	display:block;
	padding:5px;
	margin:5px 0;
	border:1px solid #aaa;
  font-family: "Bitstream Vera Sans Mono", "Courier New", monospace;
}

/* List Styles */

ul          { list-style-type: disc; }
ul ul       { list-style-type: circle; }
ul ul ul    { list-style-type: square; }
ul ul ul ul { list-style-type: circle; }
ol          { list-style-type: decimal; }
ol ol       { list-style-type: lower-alpha; }
ol ol ol    { list-style-type: decimal; }

/* Abbreviation */

abbr {
  border-bottom: 1px dotted #666;
  cursor: help;
  white-space: nowrap;
}

/* Date-based "abbreviations" show computer-friendly timestamps which are not
   human-friendly. */

abbr.created {
  border: none;
  cursor: auto;
  white-space: normal;
}

/* User Interface Styles 
---------------------------- */

.resizable-textarea textarea {
	font-size:14px!important;
}
.messages {
	padding: 10px;
	margin: 10px 0;
	border: 1px solid #04a107;
	color: #04a107;
	background-color: #edffed;
}
form{
	margin:10px 0;
}


