fieldset .product {
	border:1px solid #cfcfcf;
	padding: 10px 10px 10px 20px;
	margin-bottom: 20px;
}

legend {
	padding: 0.2em 0.5em;
	font-size:90%;
	text-align:right;
	font-weight: bold;
}

.product input, .product textarea, .product select {
	margin-right: 20px;
	margin-left: 10px;
}

.lilacButton{
	float: right;
	padding: 5px 10px 5px 10px;
	margin: 0px 10px 0px 10px;
	border: 1px solid #c3c3c3;
	background: #f3f3f3;
	text-decoration: none;
}

.lilacButton:hover{
	text-decoration: none;
}

.ui-autocomplete {
	max-height: 100px;
	overflow-y: auto;
	background: #fff;
	/* prevent horizontal scrollbar */
	overflow-x: hidden;
	border: 1px solid black;
    color: #000;
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 50px;
}
/* IE 6 doesn't support max-height
* we use height instead, but this forces the menu to always be this tall
*/
* html .ui-autocomplete {
	height: 100px;
}

#sortable{
	list-style-type: none;
	margin: 0;
	padding: 0;
	width: 600px;
}

#sortable li{
	margin: 0 5px 5px 5px;
	padding: 5px;
	font-size: 1.2em;
	/*height: 1.5em;*/	
}

html>body #sortable li {
	/*height: 1.5em;
	line-height: 1.2em;*/
}

.ui-state-highlight {
	height: 1.5em;
	line-height: 1.2em;
}

.ui-sortable-handle {
	border: 1px solid #aaa;
	border-radius: 5px;
}

/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
 
    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
}

div.formElement div.element{
	display: inline-block;
}

div.formElement div.label{
	display: inline-block;
	width: 200px;
	padding-right: 10px;
	text-align: left;
}

div.formElement div.error{
	text-align: left;
	padding-left: 110px;
	color: #ff0000;
}

input{
	border-radius: 4px;
	border: #929292 solid 1px;
	background-color: #fafafa;
	margin: 3px;
	padding: 5px;
}