@charset "UTF-8";
/*
 * IronShark Entertainment
 * (X)HTML/CSS Framework Beta
 * form.css
 */
 
/* ============================================================================================== */
/* ==================================================// Tables Formatting (Tabellen Formatierung) */
/* ============================================================================================== */
div.tableFrame {
    background-color:#e5e5e5;
}
table.table {
    width:100%;
}
    table.tableSmall {
        width:100%;
    }
    table.tableSmall tr td {
        background-color:#FFF;
    }
table.table tr {
    
}
table.table tr.error td {
    background-color:#ffcccc;
}
table.table tr th {
    text-align:center;
    font-size:10px;
    line-height:12px;
}
table.table tr td {
    background-color:#FFF;
    padding:3px 5px;
}

/* ============================================================================================== */
/* ================================================// Formular Formatting (Formular Formatierung) */
/* ============================================================================================== */

/* -------------------------------------------------------------------------------------// submit */
input.submit {
    font-size:12px;
    line-height:16px;
	color:#FFF;
	background:#777;
	border-width:1px 12px;
	border-style:solid;
	border-color:#777;
}
input.submit:hover {
	color:#FFF;
	background:#000;
	border-color:#000;
}

/* -------------------------------------------------------------------------------------// button */
a.button:link, 
a.button:visited	{
    text-decoration:none;
    color:#FFF;
}
a.button:hover, 
a.button:active	{text-decoration:none;}
a.button {
    font-size:12px;
    line-height:16px;
	background:#777;
	border-width:3px 12px;
	border-style:solid;
	border-color:#777;
}
a.button:hover {
	color:#FFF;
	background:#000;
	border-color:#000;
}

/* --------------------------------------------------------------------------------------// input */
input.text, 
input.file, 
select.select, 
textarea.textarea {
	font-size:12px;
	line-height:16px;
	background:#FFF;
	border-width:1px;
	border-color:#C0C0C0;
	border-style:solid;
	font-family:Arial, Helvetica, sans-serif;
	width:99.9%;
}
input.checkbox {
	margin:0px;
	padding:0px;
}
input.radio {
	margin:0px;
	padding:0px;
}

select.selectSmall {
	font-size:10px;
	line-height:12px;
	background:#FFF;
	border-width:1px;
	border-color:#E3E3E3;
	border-style:solid;
	font-family:Arial, Helvetica, sans-serif;
	width:99.9%;
}


/* ------------------------------------------------------------------------------------// focused */
input.text:focus, 
input.file:focus, 
select:focus, 
textarea:focus,
input.filter:focus {
	background:#FFF;
	border-color:#777;
}

/* -----------------------------------------------------------------------------------// disabled */
input[disabled="disabled"], 
select[disabled="disabled"], 
textarea[disabled="disabled"] {
	color:#C0C0C0;
	background-color:#C0C0C0;
}

/*
 * 
 */