/* CSS Document for Catalog Page */
/* NOTE: how to create these 1 pixel high background images:
1st) I opened images/NewReleasesPage/innertable_18.gif in photoshop
2nd) I enlarged this image
3rd) I selected (with the box select tool) the bottom part of the image such that it was 1 pixel high
4th) I copied the selection (using the Edit menu)
5th) I created a new window (using the File menu) -- somehow Photoshop smartly made the new window the same dimentions as the selection size
6th) I selected the new window, and then simply choose 'paste' from the Edit menu: this pasted in the 1 pixel high, 48 pixel wide selection that I then used 
     as the background image, /images/NewReleasesPage/bkg_leftTitle.gif
*/#bkgLeft {
background-image:url(../images/newreleases/bkg_leftTitle.gif);
background-repeat:repeat-y;
vertical-align:top;
}
#bkgLeftRightSide {
background-image:url(../images/newreleases/bkg_left_rightside.gif);
background-repeat:repeat-y;
vertical-align:top;
}
#bkgRight {
background-image:url(../images/newreleases/bkg_rightTitle.gif);
background-repeat:repeat-y;
vertical-align:top;
}
#bkgRight_RightSide {
background-image:url(../images/newreleases/bkg_right_rightside.gif);
background-repeat:repeat-y;
vertical-align:top;
}
/* inner table should be as wide as the main table (see global.css */
table.inner {
	width: 100%; 
	background-color: #FFFFCC;
	border-collapse:collapse; /* force firefox to make cells share borders, the default w/IE */
	text-align:left; /* left adjusts text within the table */
}
/* decendent/contextual selector: applies to td tag in table that have class="inner" */
table.inner td {vertical-align:top}

/* structure album cover and description in a 2-column layout */

/* styles the album covers */
.albumcover {
	height: 124px;
	width: 125px;
	margin: 5px;
}

/* styling the hyperlinks -- MAINTAIN THIS ORDER */
A:link, A:visited {
	color: #CC0033;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bolder;
} 
A:hover {
	color: #CC0033;
	text-decoration: underline;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bolder;
} 


/* styling the hyperlinks -- MAINTAIN THIS ORDER */
A.none:link, A.none:visited {
	color: #CC0033;
	text-decoration: none;
    font-weight: bolder;
    font-size:inherit;
    font-family:inherit;
} 
A.none:hover {
	color: #CC0033;
	text-decoration: underline;
	font-weight: bolder;
} 
/* NOTE: .leftColum + .rightColumn area (i.e., width + horizontal padding, margins) can't be greater than 345px, the width of the entire content area */
.leftColumn {
	float: left;
	width: 130px;
	margin-top: 10px;
	margin-left: 10px;
}
.rightColumn {
	padding-top: 12px;
	margin-right: 10px;
	margin-left: 150px;
}
#footer {
	clear: both;
	width: 326px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 0px;
}
hr {
	height:1px;
	width:98%;
	background:#E5A750;
	color: #E5A750;
	margin-left: 15px;

   }
#news {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
	margin: 0;
}
