﻿/* bof template 

.Forward {
	float: right;
    }
	
.Back {
	float: left;
    }

.ClearBoth {
	clear: both;
    }

.Inline {
	display: inline;
	}

.Hidden {
	display: none;
	}

.Left {
	text-align: left;
	}
	
.Center {
	text-align: center;
	}

.Right {
	text-align: right;
	}

.Block {
	display: block;
	}

.Proper {
	text-transform: capitalize;
	}

input, select {
	font-size: 100%;
	}
*/
.InputWrapper {
	padding-bottom: 5px;
	display: block;
	text-align: left;
	}
	
.InputLabel {
	width: 100px;
	padding: 4px 10px 0px 0px;
	text-align: right;
	float:left;
	}

span.InputLabel { /* Composite control uses Spans not Divs. Must enforce Block display to instantiate width. */
	display: block;
	float: left;
	}

.InputFieldLabel {
	padding: 4px 10px 0px 0px;
	display: block;
	}

.InputField {
	width: 160px;
	
	}
	
.InputImage {
	padding-left: 90px;
	position: relative;
	z-index: 0;
	}

.InputImage:hover {
	z-index: 100;
	}

.InputImage span {
	visibility: hidden;
	position: absolute;
	padding: 2px;
	border: 2px solid #ABA79C;
	background: #DFDAC9;
	}

.InputImage:hover span {
	visibility: visible;
	top: 20px;
	left: 200px;	
	}
