/* CSS Document  
to Create consistant link display over whole site.

Note: a:hover MUST come after a:link and a:visited in the CSS definition in order to be effective!!

Note: a:active MUST come after a:hover in the CSS definition in order to be effective!!
a:link
a:visited
a:hover
a:active

Note: Pseudo-class names are not case-sensitive.*/
a {text-decoration:none;}
.outline_box a{ font-weight:normal;text-decoration: underline;
}

a:link {/*
    for links on a White Background
*/
	text-decoration:none;
	color: #888;
}

#linecard  a:link,.outline_box a:link, a:link.outline_box {
	color:#3d73a9;
	font-weight:bold;
	text-decoration: underline;
}
#linecard  a:visited,.outline_box a:visited, a:visited.outline_box {
	color:#87ADD3;
	font-weight:bold;
	text-decoration: underline;
}
#linecard a.small:link {
font-size:.9em;
font-weight:normal;}

p a:link{
	text-decoration:underline;
	color: #0000FF;}

#companies a:link, #utiliies a:link {
	color:#315C88;
	padding-bottom: 1.2em;
	margin-bottom: 2em;
	font-size: 1em;
}
a:visited, #companies a:visited {
	color:#B5B5B5;
	font-weight:inherit;
	text-decoration:inherit;
}
a:hover, #companies a:hover, #linecard a:hover {
	color:#c30;
	font-weight:inherit;

}
a:active, #companies a:active #linecard a:active{
	color:#c30;
	font-weight:inherit;
	text-decoration:inherit;
}

/*
	for LINKS on Red  Background links 
	
*/
.red_bg a:link {/*
	for LINKS on Red  Background links */
	color: #EAEAEA;/* margin:0;*/
}
.red_bg a:visited {/*
	for LINKS on Red  Background links */
	color:#D5D5D5;
}
.red_bg a:hover,
.red_bg a:focus,
.red_bg a:active {/*
	for LINKS on Red  Background links */
	color:#fff;
}
