@charset "UTF-8";

html { 
  background: url(images/P8220001_luminous.gif) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
body {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	font: 1em 'Droid Serif', serif;
	}
#main h1, #sidebar h1, #full h1, #main h2, #sidebar h2, #full h2 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	color: #6b97ff;
	font-size: 1.3em;
	border-bottom: 1px solid #aaa;
	padding-bottom: 0.5em;
}
h2 {
	font-weight: normal;
}
p {
	font-size: .9em;
}
a {
	text-decoration: none;
}
a:link, a:visit {
	color: #0049de;
} 
a:hover, a:active, a:focus {
	color: rgba(210,5,145,1)
} 
object {
	height: 0px;
}
#container {
	position: relative;
	z-index: 1;
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto 0 20px; /* the auto margins (in conjunction with a width) center the page */
	padding: 0px;
	text-align: left; /* this overrides the text-align: center on the body element. */

}
.home #container {
	position: relative;
	z-index: 1;
	margin: 0 auto 0 20px; /* the auto margins (in conjunction with a width) center the page */
	padding: 0px;
	text-align: left; /* this overrides the text-align: center on the body element. */

	width: 900px;
}
.home #header {
	width: 920px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
}
#header, #footer {
	background: rgba(210,5,145,1);
	background: -moz-linear-gradient(top, rgba(210,5,145,1) 0%, rgba(197,19,31,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(210,5,145,1)), color-stop(100%, rgba(197,19,31,1)));
	background: -webkit-linear-gradient(top, rgba(210,5,145,1) 0%, rgba(197,19,31,1) 100%);
	background: -o-linear-gradient(top, rgba(210,5,145,1) 0%, rgba(197,19,31,1) 100%);
	background: -ms-linear-gradient(top, rgba(210,5,145,1) 0%, rgba(197,19,31,1) 100%);
	background: linear-gradient(to bottom, rgba(210,5,145,1) 0%, rgba(197,19,31,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d20591', endColorstr='#c5131f', GradientType=0 );
	color: #fff;
}
#header {
	height: 200px;
	margin: 0px 0px 10px;
	-webkit-border-bottom-right-radius: 1em;
	-webkit-border-bottom-left-radius: 1em;
	-moz-border-radius-bottomright: 1em;
	-moz-border-radius-bottomleft: 1em;
	border-bottom-right-radius: 1em;
	border-bottom-left-radius: 1em;
}
#header #logo {
	margin: 3.5em 1.4em 1.5em;
}
#header ul, #footer ul {
	margin: 0;
	padding: 0 1.5em;
	list-style: none;
	text-transform: capitalize;
	line-height: 1.7em;
} 
#header li, #footer li {
	float: left;
	padding-right: 0.3em;
	display: block;
} 
#header li a, #footer li a {
	color: #000;
	text-decoration: none;
	font-weight: bold;
} 
#header li a:hover, #header li a:active, #header li a:focus,
#footer li a:hover, #footer li a:active, #footer li a:focus {
	color: #fff;
}
.bio #bio a, .scores #scores a, .video #video a, .bonnie #bonnie a, .links #links a, .contact #contact a, .photos #photos a, .albums #albums a {
	color: #6b97ff;
}

#main, #sidebar, #full {
	margin: 0 0 1em;
	padding: 15px 20px 20px;
	background: #fff;
	border: solid 1px #ddd;
	-webkit-border-radius: 1em;
	-moz-border-radius: 1em;
	border-radius: 1em;
	min-height: 325px;
} 
#main {
	width: 490px;
} 
#sidebar {
	float: right; /* since this element is floated, a width must be given */
	width: 196px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
}
#full {
	width: 738px;
	min-height: 600px;
} 
#footer {
	background: #c5131f;
	-webkit-border-radius: 1em;
	-moz-border-radius: 1em;
	border-radius: 1em;
	height: 50px;
} 
#footer ul {
	padding: 0.5em 1.5em 2em;
} 

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
	margin-bottom: 8px;
}

/*REVIEWS*/
.review {
	color: #000;
	line-height: 1.2em;
	padding: 0 0 0 1.5em;
	width: 200px;
	float: left;
}
.review h3 {
	font-weight:bold;
	font-size: 1.1em;
	color: #000;
}
.review p {
	font-style:italic;
}
.review p.reviewer {
	font-style:italic;
	font-weight:bold;
	margin-bottom: 1.5em;
}

/*SHOPPING CART*/
#cart {
	z-index:2;
	padding: 0;
	position: fixed;
	margin-top: -1px;
	margin-right: -1px;
	text-align: right;
	right: 0px;
}
 
/*MUSIC*/
.musicSample {
	width: 230px;
	margin: 5px 20px 5px 0;
	display: inline-block;
	padding: 0;
}
.musicSample:nth-child(odd) {
	margin: 5px 0;
}
#sidebar .musicSample {
	width: 190px;
	margin: 5px 0;
}
.scores #container #main #mainContent .musicSample a {
	font-weight: bold;
	color: #FF0000;
	text-transform: uppercase;
}
.scores #container #main #mainContent .musicSample a:hover {
	font-weight: bold;
	color: #FFFFFF;
	background: #FF0000;
}
.award {
	font-size: 0.7em;
	color: #C93;
	text-align: center;
	width: 130px;
	margin: 0;
	float: right;
}
/*SOCIAL MEDIA*/
.social {
	position: fixed;
	left: 20px;
	bottom: 15px;
}

.social a img{
opacity:0.6;
filter:alpha(opacity=60); /* For IE8 and earlier */
}
.social a img:hover{
opacity:0.8;
filter:alpha(opacity=80); /* For IE8 and earlier */
}