
/*

Base
---------------------------------------------------------------------------------------------------*/

body {
  margin: 0;
  padding: 0;
  
  font: 12px 'Lucida Grande', Verdana, Arial, Helvetica, sans-serif;
	line-height: 16px;
	color: #000;
}

ul {
	list-style-type: none;
}

a {
  text-decoration: underline;
  border: none;
	outline: none;
  color: #006;
}

a:hover, a:active {
  text-decoration: none;
  color: #000;
}

table {
  margin: 0;
  padding: 0;
  
  background: #333;
}

td {
  margin: 0;
  padding: 0 4px 0 4px;
  
  background: #FFF;
}

th {
  margin: 0;
  padding: 0 4px 0 4px;
  
  background: #EEE
}

label {
	font-weight: bold;
}

input[type='text'], input[type='password'], input[type='checkbox'], select, textarea {
  border: 1px solid #DDD;
  border-top: 1px solid #AAA;
  border-left: 1px solid #AAA;
  font-size: 100%;
  padding: 2px;
}

textarea.short-text {
  height: 200px;
}

.clear {
	clear: both;
}


/*

Content
---------------------------------------------------------------------------------------------------*/

#content {
  padding: 20px;
}


