﻿/* 
 * File: Form.css
 * Purpose: Styles defined here are used to format forms.
 * Author: Monish Nagisetty
 * Date: 06/06/2006
*/

/* General Form Styles */
.Form fieldset
{
    padding: 10px 0px 10px 10px;
}

.Form input:submit
{
    border-width: 1px;
    width: 50px;
}

.Form fieldset.ValSummary
{
    padding: 0px 0px 0px 0px;
    display: inline;
    color: #FF0000;
    border-width: 0px;
}

.Form fieldset.StatusSummary
{
    padding: 0px 3px 0px 3px;
    display: inline;
    color: White;
    background-color: Green;
    border-width: 0px;
}

.Form fieldset div.help
{
    float: right;
    width: 200px;
    height: auto;
    margin: 0px 0px 10px 10px;
    padding: 5px;
    border: 1px solid #0077AA;
    background-color: #ffffff;
    color: #666666;
    font-size: smaller;
    position: relative;    
}

.Form fieldset div.help h4
{
  padding: 3px 0px 3px 3px;
  border: 2px inset #0077AA;
  color: #0077AA;
  font-size: 110%;   
}

.Form fieldset legend
{
    padding: 5px 5px 5px 5px;
    font-size: 120%;
    font-weight: bold;
    color: #0046D5;    
}

.Form fieldset div
{
    margin: 10px 0px 0px 5px;
	clear: left;
	padding: 1px 3px;
	display: block;
	margin: 5px 0px 0px 0px;    
}

.Form fieldset div label
{
    display: block;
    float: left;
    width: 60px;
    padding: 3px 5px;
    margin: 0px 0px 5px 0px;
    text-align: right;
    font-weight: bold;
}

.Form fieldset div.Optional label
{
    font-weight: normal;
}

  

#MediumWidth fieldset div label
{
    width: 160px;
}

#FullWidth fieldset div label
{
    width: 200px;
}

fieldset.Questions div label,
.ChoiceList tr td label
{
    float: none;
    font-weight: normal;
    margin: 0px 0px 0px 0px;
    display: inline;
}


.Form fieldset div span
{
	display: inline-block;
	margin-top: 3px;
}

.Form fieldset div textarea
{
	width: 450px;	
	height: 64px;
}

.Form fieldset div input:text
{
    width: 10px;   
}

.ListGrid table
{
	width: 100%;
}

.ListGrid div
{
	width: 100%;
}

.ListGrid div span
{
	padding: 0px 5px 0px 5px;
}

.Grid
{
    border: outset 1px Gray;
    width: 100%;
}

.Grid tr.HdrRow
{  
	background-color: #C0C0C0;
	font-weight: bold;
	text-align: left;
    font-size: 130%;
}

.Grid tr td
{
	padding: 8px 2px 5px 2px;
	border-bottom: solid 1px Gray;
}

.Grid tr td.CtrCol
{
	text-align: center;
}

.Current
{
    color: Gray;
    font-weight: bold;
}

.Available,
.Success
{
    color: Green;   
    font-weight: bold;
}

.Future
{
    color: Blue;
    font-weight: bold;
}

.Past,
.Locked,
.Failure
{
    color: Red;
    font-weight: bold;
}

.Panel
{
    width: 100%;
}

