@charset "utf-8";
/* CSS Document */

/* artist list */
.artists {
	font-style: italic;
   text-align: center;
   vertical-align: top;
}
.artists .title {
	text-decoration: underline;
   font-size: 1.2em;
}
.artists .name a {
	color: #d57e4d;
   font-size: 1.1em;
   text-decoration: none;
}
.artists .name a:hover {
	text-decoration: underline;
}
.artists .origin {
	color: #b29f84;
}
.artists {
	width: 450px;
   margin: auto;
}
.artists td {
	width: 50%;
}
/* artist profile */
.profile {
	display: none;
}
.profile table {
	margin-left: 25px;
   margin-bottom: 18px;
}
.profile table p {
	margin-left: 8px;
}
.profile .name {
   font-size: 1.2em;
   font-weight: bold;
}
.profile .title {
	color: #d57e4d;
   font-size: 1.1em;
   text-decoration: none;
}
.profile .origin {
	color: #b29f84;
}
.profile a {
	color: #d57e4d;
}
/* active profile */
.active {
	display: block;
}

/* links back to the artist list */
.backToArtists {
	margin-left: 18px;
   text-align: right;
   font-style: italic;
}
.backToArtists a {
   color: #b29f84;
}
