/*
Name:        misc.css
Author:      Kyle Brickman, Kurt Jull
Description: CSS miscellaneous definitions
Created:     24 March 2009
Notes:       This file should contain ONLY definitions for miscellaneous items
*/

@media all
{
	/* Miscellaneous ********************************/
	table.basic
	{
		margin:  0px;
		padding: 0px;
		width:   100%;
	}
	
	table.basic1
	{
		margin:  0px;
		padding: 0px;
		width:   250px;
		margin-left:67px;
	}
	
	table.basic2
	{
		margin:  0px;
		padding: 0px;
		width:   912px;
		text-align:center;
		
	}
	
	table.basic4
	{
		margin:  0px;
		padding: 0px;
		width:   500px;
		text-align:center;
		border: 1px solid #87b93c;
	} 
	
	/* Padding one-offs *****************************/
	.pad
	{
		padding: 10px;
	}
	
	/* Tooltips *************************************/
	div.tooltip
	{
		position: absolute;
		display:  none;
		width:    300px;
		padding:  3px;
		z-index:  30;
	}
	
	table.tooltip
	{
		border-collapse:  collapse;
		background-color: #ebebeb;
		border:           1px solid #000;
		color:            #333;
		height:           100%;
		width:            100%;
		margin:           0px;
		padding:          0px;
	}
	
	
	/* List layout **********************************/	
	td.listHeader
	{
		padding:          3px;
		font-weight:      bold;
		background-color: #dedede;
	}
	
	td.listItem
	{
		padding:       3px;
		border-bottom: 1px solid #dedede;
	}
	
	td.listItemTop
	{
		padding:    3px;
		border-top: 1px solid #dedede;
	}
	
	td.listSubItem
	{
		padding: 3px 3px 3px 24px;
	}
	
	div.listBack
	{
		float: left;
	}
	
	div.listAdd
	{
		float: right;
	}
	
	img.standard
	{
		width:          13px;
		height:         13px;
		vertical-align: middle;
	}
	
	ul.sortable
	{
		margin:     0;
		padding:    0;
		list-style: none;
	}
	
	ul.sortable li.item
	{
		padding:    3px;
		border-top: 1px solid #dedede;
		padding-left: 13px;
	}
	
	/* Form layout **********************************/	
	td.formHeader
	{
		text-align:       center;
		padding:          3px;
		font-weight:      bold;
		background-color: #dedede;
	}
	
	td.formHeader1
	{
		text-align:       center;
		padding:          3px;
		font-weight:      bold;
		background-color: #87b93c;
	}
	
	td.formHeader2
	{
		text-align:       center;
		padding:          3px;
		font-weight:      bold;
		background-color: #eee;
	}
	
	td.formToolbar
	{
		text-align:       left;
		padding:          3px;
		background-color: #dedede;
	}
	
	td.formLabel
	{
		text-align:       right;
		padding:          3px;
		width:            12%;
		background-color: #eee;
		white-space:      nowrap;
	}
	
	td.formField
	{
		padding:          3px;
		width:            88%;
		background-color: #fff;
	}
	
	td.formField2
	{
		padding:          3px;
		width:            88%;
		background-color: #eee;
	}
	
	td.leftText
	{
		text-align:left;
	}
	
	td.formFieldHalf
	{
		padding: 3px;
		width:   38%;
	}
	
	/* Form inputs **********************************/	
	input.large, select.large
	{
		width: 350px;
	}
	
	input.medium, select.medium
	{
		width: 175px;
	}
	
	input.small, select.small
	{
		width: 85px;
	}
	
	input.tiny, select.tiny
	{
		width: 40px;
	}
	
	input.save
	{
		float: right;
		width: 150px;
		font-size: 10px;
	}
	
	input.back
	{
		float: left;
		width: 150px;
		font-size: 10px;
	}
	
	/* Calendar *************************************/
	td.calDay
	{
		width:      14%;
		border:     1px solid #87b93c;
		text-align: center;
	}
	
	td.calDate
	{
		height: 80px;
		width:      14%;
		border:     1px solid #87b93c;
		vertical-align: top;
	}
	
	td.calEvent
	{
		font-size: 11px;
		border-bottom: 1px dotted #dedede;
	}
}