/* The purpose of this file is to define a default set of link colors for the website & to control 'hover' behavior (if I decide to use hover) */
/* This whole thing could probably go in style.css */
/* footer links not included because both footer.css & footerInverse.css use the same style class name */
/* header.css style has link info */
/* MardiGras2007.php contains white-text A:hover. Need to move it here 11-12-07 */

/*	No longer used. Not only that, but gallery-black replaced it long ago 11-13-07 */
.enable-hover-for-black-links A {
	color: #000000;
}
*/

/* Doesn't change link color (except on IE in windows, where they show up blue), does nothing but mark space where I'd need to but gallery-black if I want to use it. Don't remove '.gallery a' even though it does nothing, or I might forget about it. */
/* Use website's default hover color */
.gallery a {
	 /* Uncommenting this didn't fix IE Wondows problem w/ group show's blue image frames */
/*	color: #7f3f32;*/
}
.gallery img {		/* Required by IE on windows */
	border-color: #7f3f32;	/* Need to respecify default link color */
}
/* 'gallery-black' needs to be defined after 'gallery' for text colors to be black. I have no idea why 11-13-07 */
/* Make a <div> (or some other type of container) of this class to change default <a> color. It will enable 'hover' to work in IE when default link color (blue) is not desired */
/* Change color of gallery links from default <a> color to black */
.gallery-black a {		/* Use website's default hover color */
	color: #000000;
}
.gallery-black img {		/* Required by IE on windows */
	border-color: #000000;
}

/* DEFAULT LINK COLOR */
/* This group is used by every file with links (I think) */
a { 
/*	color: rgb(127, 63, 50);*/
	color: #7f3f32; /* same as 'rgb' above, converted to hexidecimal */
}

/* Tried to fix IE on windows. Doesn't work. Put <IMG>s inside 'gallery' instead
a img { 	
	color: #7f3f32;
}*/

a:link { 
}
a:active { 
}
a:hover { 
}
a:visited { 
}
:target { 				/* This only works on Firefox & Safari */
	border: solid thin #880000;
	background-color: #FFCCCC;
}
#schedule:target {
	border: 0; 
	background-color: transparent;
}

.fake-link {
	text-decoration: underline;
	color: #7f3f32;
}

.blank:target {			/* 3-9-9 This will probably only be used for photo galleries */
	border: none;
/*	background-color: transparent;*/
	background-color: white;
}

.blank {			/* 3-9-9 This will probably only be used for photo galleries */
/*	border: none;
	background-color: white;*/
}


/* END default link color */

/* Used by every file that uses menuStripe.php */
.stripe-text:link { 
	color: #FFFFFF; 
}
.stripe-text:visited {  
	color: #FFFFFF; 
}

/* Can be used to make text links with areas that have a dark background. (Currently used in calendar 11-12-07) */
.white-link {
	color:	white;
}

/* Do I use this? */
.black-frame {
	border-color: #000000; 
}
