/* GENERAL STYLES */
/*
====================================================
Start Link styles
====================================================
*/

a {
	color:black;
	text-decoration:underline;
}
#bm{
	text-decoration:none;
}
/*
===================================================================
This rule looks at the href in all a tags that end in .gif and .jpg
===================================================================
*/
a[href$='.gif'] , a[href$='.jpg']
{
	background-image:url(/media/static/picture.png);
	background-repeat:no-repeat;
	background-position:top left;
	padding-left:18px;
}
/*
=================================================================================================
This rule looks at the href in all a tags that start with http:// - basically all external links
=================================================================================================
*/
a[href^='http://']
{
	background-image:url(/media/static/out.png);
	background-repeat:no-repeat;
	background-position:top right;
	padding-right:18px;
	padding-left:0px;
}
/*
===================================================================================================This rule looks at the href in all a tags that start with http://www.liveandworkin.eu (My domain)
and then removes the background image set in the previous rule
===================================================================================================
*/
a[href*='liveandworkin.eu']
{
	background:none;
	padding-left:0px;
	padding-right:0px;
}
a[href='#top']{
	background-image:url(/media/static/up.png);
	background-repeat:no-repeat;
	background-position:top right;
	padding-right:15px;
	float:right;
	text-decoration: none;
}
/*
==================================================================
This rule looks at the href in all a tags that start with mailto:
==================================================================
*/
a[href ^="mailto:"]
{
	background-image:url(/media/static/email.png);
	background-repeat:no-repeat;
	background-position:top left;
	padding-left:18px;
}
.out {
	background-image:url(/media/static/picture.png);
	background-repeat:no-repeat;
	background-position:top left;
	padding-left:18px;
	color:yellow;
	background-color:red;
}


/* EDITOR PROPERTIES */
