﻿/*
OIT CSET Department Style Sheet
ASP.NET 2.0

Purpose:  Provides styles for tables, calendars, and other grid-like structures.
	Includes styles for fonts and links found within these structures.
*/


/* Style for the header of a grid. */
.gridHeader
{
	background-color: Navy;
	color: White;
	font-family: Verdana;
	font-weight: bold;
}


/* Style for the display of a standard grid row. */
.gridRow
{
	font-family: Verdana;
}


/* Style for the display of alternating grid rows. */
.gridRowAlternating
{
	background-color: #dedede;
	font-family: Verdana;
}


/* Style for the display of the selected grid row. */
.gridRowSelected
{
	background-color: #ccffcc;
	font-family: Verdana;
}


/* Style for the display of the grid footer. */
.gridFooter
{
	background-color: #6666ff;
	font-family: Verdana;
}


/* Style for the display of a label for a column. */
.columnLabel
{
	font-weight: bold;
	vertical-align: top;
}


/* Style for the display of the days of the active month in a Calendar control. */
.calThisMonthDay
{
	vertical-align: top;
}


/* Style for the display of the days of other months in a Calendar control. */
.calOtherMonthDay
{
	color: #333333;
	background-color: #C0C0FF;
	vertical-align: top;
}


/* Style for the display of a Calendar control title. */
.calTitle
{
	padding: 10px 5px 10px 5px;
	background-color: Navy;
	color: White;
	font-family: Verdana;
	font-weight: bold;
}


/* Style for the display of the days of the week in a Calendar control. */
.calDayHeader
{
	padding: 5px 5px 5px 5px;
	background-color: #9999ff;
	font-family: Verdana;
}


/* Style for the labels of a DetailsView control. */
.detailFieldHeader
{
	background-color: #6666ff;
	color: White;
	font-family: Verdana;
	font-weight: bold;
}


/* Style for the display of the sidebar of a Wizard control. */
.wizSidebar
{
    width: 150px;
    vertical-align: top;
}


/* Style for the display of steps in a Wizard control. */
.wizStep
{
    width: 100%;
}


/* Style for news items on a web page. */
.newsTable
{
	border: solid 2px Navy;
	position: relative;
	background-image: url(images/newsev/bar.gif);
	background-repeat: repeat-x;
	background-color: #E0E0E0;
	margin: 2ex 0ex 1ex 0ex;
	width: 100%;
}

/* Style for the main body text of news items on a web page. */
.newsBody
{
	padding: 1ex;
	border: solid 1px gray;
	background-color: White;
}


/* Style for the images in each news item on a web page. */
.newsImage
{
	float: right;
}