/*
Cascading style sheet for Oregon Healthcare Careers
--
notes:
always uses pixels (px), they are the only measurement that
is even remotely consistant across platforms and browsers.
*/


/* those pretty headers (if you have georgia, if not then you see times, which just doesn't look that great) */
.head
	{
	font: italic 18px Georgia, "Times New Roman", Times, serif;
	}

/* basic subhead present on most pages */
.subhead
	{
	font: italic bold 14px Arial, Helvetica, sans-serif;
	}

/* main copy text used throughout the site */
.copy
	{
	font: 14px Arial, Helvetica, sans-serif;
	}

/* copybold is used in the glossary.html file */
.copybold
	{
	font: italic 14px Arial, Helvetica, sans-serif;
	}

/* acts as a sub-sub heading */
.copyboldgray
	{
	font: italic bold 14px Arial, Helvetica, sans-serif;
	color: #666666;
	}

/* red salary information on the jobs pages */
.salary
	{
	font: 12px Arial, Helvetica, sans-serif;
	color: #990000;
	}

/* for the copyright text at the bottom */
.rights
	{
	font: 10px Arial, Helvetica, sans-serif;
	color: #666666;
	text-decoration: none;
	}

.dev
	{
	font: 10px Arial, Helvetica, sans-serif;
	color: #000000;
	text-decoration: none;
	}

/* for the dark red "Job Opportunities" in the hospitals.html file */
.jobs
	{
	font: 14px Arial, Helvetica, sans-serif;
	color: #990000;
	}

/* on longer pages there is an anchor at the top, this is for the linked "back to top" text on those pages */
.bk2top
	{
	font: 12px Arial, Helvetica, sans-serif;
	color: #003399;
	text-decoration: none;
	}

/* this are the linked text styles */

a.career:link
	{
	color: #003399;
	}

a.career:visited
	{
	color: #666666;
	}

a.career:hover
	{
	color: #0033CC;
	}

a.career:active
	{
	color: #990000;
	}

/* for the alphabet on the glossary page */
a.bet:link
	{
	color: #003399;
	text-decoration: none;
	}

a.bet:visited
	{
	color: #666666;
	text-decoration: none;
	}

a.bet:hover
	{
	color: #0033CC;
	text-decoration: underline;
	}

a.bet:active
	{
	color: #990000;
	text-decoration: underline;
	}

/* for the Oregon Association of Hospitals and Health Systems text in the copyright */
a.s:link
	{
	text-decoration: none;
	color: #666666;
	}

a.s:visited
	{
	text-decoration: none;
	color: #666666;
	}

a.s:hover
	{
	text-decoration: underline;
	color: #0033CC;
	}

a.s:active
	{
	text-decoration: none;
	color: #660000;
	}

/* for the developed and designed by links at the bottom of the menu.html file (left frame) */
a.dev:link
	{
	text-decoration: none;
	color: #000000;
	}

a.dev:visited
	{
	text-decoration: none;
	color: #000000;
	}

a.dev:hover
	{
	text-decoration: underline;
	color: #003399;
	}

a.dev:active
	{
	text-decoration: underline;
	color: #990033;
	}

/* end of file */

