body
{
	color: rgb(4, 4, 4); /* Almost black */
	background-color: rgb(252, 251, 246); /* Very light yellow */
}

/* ============================== General Link Properties ================================= */

/* Canonical order: L V F H A */

a:link
{
	color: rgb(0, 39, 98); /* Dark blue */
}

a:visited
{
	color: rgb(40, 77, 140); /* Lighter blue */
}

a:focus,
	a:hover,
	a:active
{
	color: rgb(203, 73, 2); /* UTA orange */
}

/* ============================= Headers (And Header-like Elements) ========================= */

/* 
	p.tagline: This is a tagline that appears most prominently on the home page.
	
	H1 (within div#content): Primary headers -- typically a page title -- within the main content area
	
	H2 (within div#content): These are secondary headers within the main content area
	
	H3 (within div#secondary-navigation): These represent the headers within the secondary-navigation area.
		
	H5 (with div.secondary-content-section): This is the primary header within a secondary-content section.
	
	H6: These are the sub-headers within the secondary-content section,
		such as "Summer Catalog Now Available!"
*/

/* 
	H1 (within div#content): Primary headers -- typically a page title -- within the main content area
	H2 (within div#content): These are secondary headers within the main content area 
	p.tagline: a bit of text that visually resembles a header but isn't actually one) 
*/
div#content h1,
	div#content h2,
	div#content p.tagline
{
	color: rgb(0, 39, 98); /* Dark blue */
}

/* H2 (within div#content): These are secondary headers within the main content area */
div#content h2
{}

	/* H2 within a div.primary-and-secondary-content-section section is slightly different */
	div#content div.primary-and-secondary-content-section h2
	{
		color: rgb(4, 4, 4); /* Almost black */
	}


/* H3: These represent the headers within the secondary-navigation area. */
div#secondary-navigation h3
{
	color: white;
	background-color: rgb(203, 73, 2); /* UTA orange */
	
	border-bottom-color: rgb(144, 54, 5); /* Burnt orange */
}

	div#secondary-navigation h3 a
	{
		color: white;
	}

/* H5: These are the main headers within the secondary-content section  */
div.secondary-content-section h5
{
	color: rgb(0, 39, 98); /* Dark blue */
	background-color: rgb(202, 202, 202); /* Light gray */
	
	border-bottom-color: rgb(115, 130, 152); /* Dusty blue */
}

/* ============================ Layout Container Elements ================================= */

div#page div#content-and-search-and-secondary-navigation
{
	background-color: white;
}

/* ===================================== Primary Navigation ==================================== */

div#page-head ul#primary-navigation
{
	background-color: rgb(203, 73, 2); /* UTA Orange */
	
	border-top-color: rgb(144, 54, 5); /* Burnt orange */
}

	/* Canonical order: L V F H A */
	ul#primary-navigation li a:link,
		ul#primary-navigation li a:visited
	{
		color: white;
	}
	
	ul#primary-navigation li a:focus,
		ul#primary-navigation li a:hover,
		ul#primary-navigation li a:active
	{}


	/* Current-section highlighting? */
	body ul#primary-navigation li#register-now-primary-navigation-item a:link,
		body ul#primary-navigation li#register-now-primary-navigation-item a:visited
	{
		color: rgb(7, 190, 251); /* Cyan */
	}
	
	
/* ================================= Content bits =============================== */


/* =============== Tabular Data ======================= */

/* AceWeb canonically uses "awTable" for its tables,
	but data-table is included too in case the class name
	for tabular data is later able to be changed. */
div#content table.data-table,
	div#content table.form-table,
	div#content table.awTable
{
	border-color: rgb(206, 200, 166); /* Light brown */
} 

	/* These are the thead-cell properties -- or what /would have been/
		thead cells if AceWeb could create semantic tables */
	div#content table.data-table thead td,
		div#content table.data-table thead th,
		div#content table.awTable th
	{
		color: white;
		background-color: rgb(0, 39, 98); /* Dark blue */
	} 
	
	/* These are the tbody-cell properties -- or what /would have been/
		tbody cells if AceWeb could create semantic tables */
	div#content table.data-table tbody th,
		div#content table.data-table tbody td,
		div#content table.form-table td,
		div#content table.form-table th,
		div#content table.awTable td
	{
		border-color: rgb(230, 222, 209); /* Very light brown */
	}
	
	/* Odd row properties */
	div#content table.data-table tbody tr.odd td,
		div#content table.data-table tbody tr.odd th,
		div#content table.awTable tr.awAltRow td
	{
		background-color: transparent;
	}
	
	/* Even row properties */
	div#content table.data-table tbody tr.even td,
		div#content table.data-table tbody tr.even th,
		div#content table.awTable tr td,
		div#content table.form-table tr th,
		div#content table.form-table tr td
	{
		background-color: rgb(206, 200, 166); /* Light brown */
	}
	
	
	.awStepDone {background-color: #002762;}
	.awStepNot {background-color: #f9f6ed;}
