/* villabeige.com: base.css */

/* the following lines attempt to clear the css palette */

a, abbr, acronym, address, applet, area, b, base, basefont, bdo, big, blockquote, body, br, button, caption, cite, code, col, colgroup, dd, del, dfn, dir, div, dl, dt, em, fieldset, h1, h2, h3, h4, h5, h6, head, hr, html, i, iframe, img, input, ins, isindex, kbd, label, legend, li, link, map, menu, meta, noframes, noscript, object, ol, optgroup, option, p, param, q, s, samp, script, select, small, span, strike, strong, style, sub, sup, table, tbody, td, textarea, tfoot, th, thead, title, tr, tt, u, ul, var {
	margin: 0;
	padding: 0;
	border: none;
	text-decoration: none;
	list-style: none;
	font-style: normal;
	font-weight: normal;
	color: black;
	background-color: transparent;
}

q:before, q:after {
	content: "";
}

/* standard HTML tags */

body {
	font-family: "Lucida Grande", Lucida, Verdana, sans-serif;
	font-size: small;
	line-height: 1.3;
	background-color: #E7E0D3; 
}

h1 {
	font-size: 160%;
	margin-top: 10px;
	margin-bottom: 10px;
}

h1.headline{
	margin-top: 0;
}

h2 {
	font-size: 150%;
	margin-top: 10px;
	margin-bottom: 10px;
}

h2.headline{
	margin-top: 0;
}

h3 {
	font-size: 140%;
	margin-top: 10px;
	margin-bottom: 10px;
}

h3.headline{
	margin-top: 0;
}

h4 {
	font-size: 130%;
	margin-top: 10px;
	margin-bottom: 10px;
}

h4.headline{
	margin-top: 0;
}

h5 {
	font-size: 120%;
	margin-top: 10px;
	margin-bottom: 10px;
}

h5.headline{
	margin-top: 0;
}

h6 {
	font-size: 110%;
	margin-top: 10px;
	margin-bottom: 10px;
}

h6.headline{
	margin-top: 0;
}

a{
	color: black;
}

a:hover {
	text-decoration: underline;
}

p {
	margin-bottom: 10px;
}

ol {
	
}

ol li{
	
}

ul {
}

ul li{
}

strong {
	font-weight: bold;
}

em {
	font-style: italic;
}

input{
	background-color: white;
}

textarea{
	background-color: white;
}

select{
	background-color: white;
}

/* attribute selectors do not work on IE6 */

input[type="text"] {
	border: 1px black solid;
}

input[type="password"] {
	border: 1px black solid;
}

/* this is a fix for IE6 see above, put input[type=text] in this class */

input.tinput {
	border: 1px black solid;
}

textarea {
	border: 1px black solid;
}

select {
	border: 1px black solid;
}

button {
	border: 2px gray outset;
	padding: 2px;
	background-color: white;
}

button:hover {
	color: blue;
}

button:active {
	border: 2px gray inset;
	color: blue;
}

/* handy classes */

.hidden {
	display: none;
}

.centered {
	text-align: center;
}

.bold {
	font-weight: bold;
}

.right{
	text-align: right;
}

.base {
	clear: both;
}

.comment{
	background-color: #fcffb4;
}

/* site specific stuff below */

#container{
	width: 1024px;
	background-color: #ddd4b9;
	margin: 10px auto;
}

/* header */

#header{
	background: white url(/media/uploads/logo.gif) no-repeat 5px 5px;
	height: 110px;
	padding: 5px;
}

/* language selection */

ul#languages{
	float: right;
}

ul#languages li{
	list-style-type: none;
	margin: 0;
	float: left;
	display: inline;
}

span.lang_sep{
	padding-right: 5px;
	padding-left: 5px;
}

/* menu */
ul#menu{
	background-color: #b69c7c;
	float: left;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 10px;
	width: 1014px;
}

ul#menu li{
	float: left;
	display: inline;
	padding-right: 20px;
}

ul#menu li a{
	font-weight: bold;
}

ul#menu li a:hover{
	text-decoration: none;
	color: white;
}

/* content */
#content{
	clear: both;
	padding: 10px;
}

.crumbs{
	font-size: 80%;
}

.recently {
	font-size: 80%;
}

/* object edit */

table.objedit {
	border-collapse: collapse;
}

table.objedit tr th {
	font-weight: bold;
	text-align: right;
	vertical-align: top;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-right: 5px;
}

table.objedit tr th label.required_field_label{
	font-weight: bold;
}

table.objedit tr th label.field_label{
	font-weight: normal;
	font-style: normal;
}

table.objedit tr td {
	padding-top: 5px;
	padding-bottom: 5px;
}

table.objedit tr td {
	width: 310px;
}

table.objedit tr td input {
	width: 300px;
}

table.objedit tr td textarea {
	width: 300px;
}


table.objedit tr td select {
	width: 300px;
}

/* form errors */
ul.errorlist{
	
}

ul.errorlist li{
	color: red;
}

td.field_errors{
	color: red;
	font-weight: bold;
}

td.error_field input{
	background-color: #fcffb4;
}

td.error_field select{
	background-color: #fcffb4;
}

#footer{
	clear: both;
	background-color: white;
}

#footer ul{
	background-color: white;
	padding-left: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
	float: left;
	width: 1014px;
}

#footer ul li{
	float: left;
	padding-right: 20px;
}

p#copy{
	margin: 0;
	font-size: x-small;
	padding-left: 10px;
	color: #b69c7c;
}

p#credit{
	margin: 0;
	font-size: x-small;
	background-color: #E7E0D3;
	text-align: right;
}

p#credit a{
	color: #f8f8fa;
}
