/* Button definition, auto width */
.Button {
	font-size: 12px;
	line-height: 16px;
	font-weight: bold;
	text-decoration: none;
	color: #336699;
	border-width: 1px;
	border-style: solid;
	border-color: #cccccc;
	background-color: #eeeeee;
	padding: 0px 5px 1px 5px;
	width: auto;
	height: 15px;
	margin: 0px 1px 0px 1px;
	display: block;
	float: left;
}

a.Button:hover {
	color: black;
	border-color: #999999;
	text-decoration: none;
	background-color: #ffE600;
   cursor: hand;
}

/* List for scroll-bar lists, Dropdown for dropdowns */
.Dropdown, Select {
	font-size: 12px;
	font-weight: normal;
	color: black;
	padding-left: 0px;
	margin-left: 0px;
	margin-top: 2px;
	margin-bottom: 0px;
	background-color: #fafafa;
	border-width: 1px;
	border-style: solid;
	border-color: #cccccc;
}

/* Radio for radiobuttons, Checkbox for checkboxes */
.Radio, .Checkbox {
	font-size: 12px;
	font-weight: normal;
	color: black;
	padding-left: 2px;
	margin-left: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
	border-width: 0px;
	border-style: none;
	border-color: #cccccc;
	height: 17px;
}


/* Entry for regular entry fields, Entry2 for bigger Textareas */
.Entry1, .Entry2 {
	font-size: 12px;
	font-weight: normal;
	color: black;
	background-color: #fafafa;
	width: 200px;
	height: auto;
	margin: 0px;
	padding: 0px 1px 0px 1px;
	border-width: 1px;
	border-style: solid;
	border-color: #cccccc;
}
.Entry2 {
	width: 560px;
	height: 42px;
}

