@CHARSET "UTF-8";
/*******************************************************************************
 * overlabels.css
 *
 * This file contains styles for floating labels above their respective form
 * elements.
 *
 * In order for this to work, both label and element must be contained in some
 * element (a div, li etc) which is of the class "overlabel_container". The
 * label must be of the class "overlabel" and the element of the class
 * "underinput".
 *
 * Author: William Madden
 *
 * Copyright (c) JB Interactive, 2008
 ******************************************************************************/

.overlabel {
	position: absolute;
	z-index: 1;
	width: 200px;
	line-height: 19px;
	text-align: left;
	padding-left: 4px;
	top: 0;
	color: #999;
	display: none;
}

.underinput {

}

.overlabel_container {
	float: left;
	position: relative;
}