﻿/*
OIT CSET Department Style Sheet
ASP.NET 2.0

Purpose:  Provides styles for links found throughout the website.
*/


/* Style for clicking and displaying standard anchor tag links. */
A:active, A:visited, A:link
{
}


/* Style for hovering over standard anchor tag links. */
A:hover
{
	text-decoration: underline;
}


/* Style for clicking and displaying the left-menu links. */
A.leftMenu:active, A.leftMenu:visited, A.leftMenu:link
{
	display: block;
	width: 100%;
	height: 100%;
	color: #333333;
	text-decoration: none;
}


/* Style for hovering over the left-menu links. */
A.leftMenu:hover
{
	display: block;
	background-color: White;
	color: #333333;
	text-decoration: none;
}


/* Style for clicking and displaying the top-menu links. */
A.topMenu:active, A.topMenu:visited, A.topMenu:link
{
	color: White;
	font-weight: bold;
	text-transform: capitalize;
	text-decoration: none;
}


/* Style for hovering over the top-menu links. */
A.topMenu:hover
{
    color: White;
    font-weight: bold;
    padding-left: 5px;
    width: 87px;
    text-transform: capitalize;
    text-decoration: underline;
    background-color: Transparent;
}


/* Style for clicking and displaying "dead" (unselectable) menu links. */
A.deadMenu:active, A.deadMenu:visited, A.deadMenu:link
{
	display: block;
	width: 100%;
	height: 100%;
	color: #000000;
	text-decoration: none;
}


/* Style for hovering over the "dead" (unselectable) menu links. */
A.deadMenu:hover
{
	display: block;
	color: #000000;
	text-decoration: none;
	background-color: Transparent;
}


/* Style for clicking and displaying over the root-level menu links. */
A.rootMenu:active, A.rootMenu:visited, A.rootMenu:link
{
	color: Black;
	text-decoration: none;
}


/* Style for hovering over the root-level menu links. */
A.rootMenu:hover
{
	color: Black;
	background-color: White;
	text-decoration: none;
}


/* Style for marquee links. */
.marquee A:active .marqueeTitle, .marquee A:active .marqueeSub,
.marquee A:visited .marqueeTitle, .marquee A:visited .marqueeSub,
.marquee A:link .marqueeTitle, .marquee A:link .marqueeSub
{
	text-decoration: none;
}


/* Style for marquee links. */
.marquee A:hover .marqueeTitle, .marquee A:hover .marqueeSub
{
	text-decoration: none;
}


/* Style for the links in a grid header. */
.gridHeaderLink A:active, .gridHeaderLink A:visited, .gridHeaderLink A:link,
	.gridHeaderLink A:hover
{
	color: White;
	background-color: Transparent;
}


/* Style for clicking, displaying, and hovering over links at the bottom of GridViews. */
A.gridFooterLink:active, A.gridFooterLink:visited,
A.gridFooterLink:link, A.gridFooterLink:hover
{
    color: White;
	background-color: Transparent;
}


/* Style for the display of the links for days of the active month in a Calendar control. */
A.calThisMonthDay:active, A.calThisMonthDay:visited, A.calThisMonthDay:link,
	A.calThisMonthDay:hover
{
	color: Blue;
}


/* Style for the display of the links for days of other months in a Calendar control. */
A.calOtherMonthDay:active, A.calOtherMonthDay:visited, A.calOtherMonthDay:link,
	A.calOtherMonthDay:hover
{
	color: Navy;
}

A.loginView:active, A.loginView:visited, A.loginView:link
{
    color: White;
    text-decoration: none;
    text-transform: capitalize;
}

A.loginView:hover
{
    color: White;
    text-decoration: underline;
    text-transform: capitalize;
}