/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements.  See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License.  You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
.forms-tab {
    background-color: white;
    border: 1px solid black;
    border-bottom-width: 0px;
    padding: 2px 1em 2px 1em;
    margin-right: 5px;
    position: relative;
    text-decoration: none;
    top: -1px;
    z-index: 1;
    cursor: pointer;
}

.forms-tab.forms-activeTab {
    font-weight: bold;
    padding-top: 5px;
    cursor: default;
    z-index: 3;
}

.forms-tabContent {
    background-color: white;
    border: 1px solid black;
    padding: 1em;
    position: relative;
    z-index: 2;
}

.forms-validation-errors {
}

.forms-validation-error {
}

.forms-field-required {
	color:blue;
    font-weight: bold;
}

.forms-doubleList select {
    width: 150px;
}

.forms-doubleList input {
    width: 40px;
}

/* Style for drag'n drop indicator */
.forms-dropIndicator {
	border-top: 4px solid black;
}

.forms-row-hover {
	background-color:#F0F0F0;
}

.forms-row-selected {
	background-color: rgb(56,117,215); /* Mac highlight color */
	color: white;
}

.forms-row-hover.forms-row-selected {
	background-color: rgb(86, 147, 245);
	color: white;
}