/*
 * This is a wrapper for the default document.css.
 * It is used to theme the page. It changes color only.
 *
 * Belongs to the Pink theme.
 * 
 * $Id: document_pink.css 2602 2009-08-04 15:54:20Z rafi $
 */

@import url("document.css");

h1 {
	color: #800080;
	background-color: transparent;
}

h2 {
	color: #800080;
}

h3 {
	color: #800080;
}

h4 {
	color: #800080;
}

a {
	color: #800080;
	background-color: transparent;
}

a:visited {
	color: #806a80;
	background-color: transparent;
	text-decoration: underline;
}

a:active {
	color: #800080;
	background-color: transparent;
	text-decoration: underline;
}

a:hover {
	color: #800080;
	background-color: #FFFFC2;
}

/*
 * Links to external sites, ssl encrypted sites
 * and mail to links get a special icon.
 */
a.external:hover {
	color: #806a80;
	background-color: #FFFFC2;
}

a.secure:hover {
	color: #806a80;
	background-color: #FFFFC2;
}

a.mail:hover {
	color: #806a80;
	background-color: #FFFFC2;
}

a[href ^="http://"]:hover {
	color: #806a80;
	background-color: #FFFFC2;
}

a[href ^="https://"]:hover {
	color: #806a80;
	background-color: #FFFFC2;
}

a[href ^="mailto:"]:hover {
	color: #806a80;
	background-color: #FFFFC2;
}
/*
 * Plain links, no fancy stuff, no icons.
 */
a.plain:link {
	color: black;
	padding-right: 0;
	background-image: none;
	background-color: transparent;
	text-decoration: none;
}

a.plain:visited {
	color: black;
	padding-right: 0;
	background-image: none;
	background-color: transparent;
	text-decoration: none;
}

a.plain:active {
	color: black;
	padding-right: 0;
	background-image: none;
	background-color: transparent;
	text-decoration: none;
}

a.plain:hover {
	color: black;
	padding-right: 0;
	background-image: none;
	background-color: transparent;
	text-decoration: none;
}

