﻿/* Positioning */
.Back {
	float: left;
	}
	
.Forward {
	float: right;
	}

.Left {
	text-align: left;
	}
	
.Right {
	text-align: right;
	}

.Center {
	text-align: center;
	}

.ClearBoth {
	clear: both;
	}

.Hidden {
	display: none;
	}

/* Form Display */
.InputWrapper {
	padding-bottom: 5px;
	display: block;
	}
	
.InputLabel {
	width: 140px;
	padding: 4px 10px 0px 0px;
	text-align: right;
	}

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;
	}

.InputFieldTextbox {
	width: 200px;
	}

/* Other */
.StatusGreen {
	border: 1px solid #00CC33;
	background: #DFFFE4 url(Images/Icons/Alert.gif) 10px center no-repeat;
	color: #019E28;
	padding: 10px 10px 10px 35px;
	margin-bottom: 10px;	
	}

.StatusSuccessful {
	border: 1px solid #00CC33;
	background: #DFFFE4 url(Images/Icons/Successful.gif) 10px center no-repeat;
	color: #019E28;
	padding: 10px 10px 10px 35px;
	margin-bottom: 10px;	
	}

.StatusWarning {
	border: 1px solid #E60000;
	background: #FFE8E8 url(Images/Icons/Warning.gif) 10px center no-repeat;
	color: #E60000;
	padding: 10px 10px 10px 35px;
	margin-bottom: 10px;	
	}
	
.Developer {
	border: 1px solid #0099FF;
	background: #E8F7FF url(Images/Developer/Tools.png) no-repeat 8px top;
	padding: 25px 10px 10px 10px;
	margin: 10px;
	}

.Administration {
	border: 1px solid #00CC33;
	background: #DFFFE4;
	padding: 10px;
	margin: 0px 0px 10px 0px;
	color: #019E28;
	}

.Administration a {
	color: #019E28;
	}

.Administration ul, .Administration li {
	padding: 0px;
	margin: 0px;
	list-style: none;
	display: inline;
	}

.Administration li {
	padding-right: 15px;
	}

/* Spacing */
.SpacingTop10 {
	margin-top: 10px;
	}