/*
   basic.css
   HTTPDOCS
   
   Created by Christian Lund on 2007-10-28.
   Copyright 2007 Stilmark.com. All rights reserved.
*/

/*	Form
	Usage <form id='form'> 
*/

#form {
	margin: 0;
	padding: 0;
}

#form table, #form .field {
	width: 100%;
	font-family: Arial, Verdana, Helvetica, sans-serif;
    font-size: 10pt;
}

#form input, #form textarea, #form select {
	font-family: Arial, Verdana, Helvetica, sans-serif;
    font-size: 10pt;
	background-color: #fff;
	border: 1px solid #ccc;
	border-color: #aaa #ddd #ddd #aaa;
	padding: 1px 0px;
	color: #666;
	width: 99.3%;
	padding-left: 3px;
}

#form input.checkbox {
	border: 0px;
	width: auto;
}

#form select {
	padding-left: 0px;
	width: 100%;
}

#form input.submit {
	width: auto;
	border: 3px double #999;
	border-top-color: #ccc;
	border-left-color: #ccc;
	padding: 0.25em;
	background-color: #fff;
	color: #333333;
	font-size: 9pt;
}

#form input.submit:active {
	border: 3px double #ccc;
	border-top-color: #999;
	border-left-color: #999;
}

#form .form_text, #form .err_form_text, #form .form_tip {
	vertical-align: top;
	white-space: nowrap;
}

#form .form_tip {
	color: #777;
}

#form .err_form_text {
	color: #c00;
}

#form hr {
	color: #ccc;
	background-color: #ccc;
	height: 1px;
	border: 0;
}

#fieldBox {
	background-color: #f5f5f5;
}

#form h2 {
	color: #63CA4B;
}

#form div.fileinputs {
	position: relative;
}

#form input.file.hidden {
	position: relative;
	text-align: right;
	-moz-opacity:0 ;
	filter:alpha(opacity: 0);
	opacity: 0;
	z-index: 2;
}

#form div.fakefile {
	position: absolute;
	top: 0px;
	left: 0px;
	padding: 0;
	margin: 0;
	z-index: 1;
	width: 100%;
	white-space: nowrap;
}

#form div.fakefile input {
	float: left;
	margin-left: 0;
	width: 90%;
}

#form div.fakefile img {
	float: right;
}

/*	Table
	Usage <table id='table'> 
*/

#table {
	font-size: 10pt;
	width: 100%;
}

#table TD {
	padding: 5px 10px;
	border-bottom: 1px solid #ccc;
	border-left: 1px dotted #aaa;
}

#table A {
	color: #666;
}


#tableHeader {
	background-color: #444;
	color: #fff;
}

#tableHeader .current {
	background-color: #f90;
}

#tableHeader A {
	color: #fff;
	text-decoration: none;
}

#tableHeader A:hover {
	color: #fff;
	text-decoration: underline;
}

#table .rowBase {
	background-color: #fff;
	cursor: pointer;
}

#table .rowHover {
	background-color: #f5f5f5;
	cursor: pointer;
}