/*
ProductCart Shopping Cart Software, Copyright Early Impact LLC 2006, All Rights Reserved
Use this stylesheet to change the look of the default header and footer that ship with ProductCart
*/
html, body {
	margin: 0;
	padding: 0;
}

body {
	font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
	font-size: 11px;
	color: #333333;
	text-align: center;
	background-color: #000000;
}

/* TOP AREA of the page: store description, store name, search box, navigation */

		#pcHeader {
			width: 900px;
			height: 90px;
			margin-left: auto;
			margin-right: auto;
			margin-top: 5px;
			margin-bottom: 5px;
			padding: 0;
			background-color: #e5e5e5;
			font-size: 12px;
			color: #666666;
			border-collapse: collapse;
			border: 0;
		}
		
		#pcHeader td {
			padding: 3px;
			vertical-align: bottom;
		}
		
		#pcStoreDescription {
			border-bottom: 1px solid #FFFFFF;
			font-size: 13px;
			text-align: left;
		}
		
		#pcStoreName {
			font-size: 28px;
			font-weight: bold;
			text-align: left;
		}
		
		#pcStoreSearch {
			text-align: right;
		}
		
		#pcTopNav {
			border-top: 1px solid #FFFFFF;
			text-align: right;
		}
		
		#pcStoreSearch a {
			text-decoration: none;
			color: #999999;
			font-size: 11px;
		}
		
		#pcStoreSearch a:hover {
			color: #000000;
		}
		
		#pcTopNav ul {
			list-style: none;
			margin: 0;
		}
		
		#pcTopNav li {
			display: inline;
			padding-right: 10px;
		}
		
		#pcTopNav a:link, #pcTopNav a:visited {
			text-decoration: none;
			font-size: 14px;
			color: #999999;
		}
		
		#pcTopNav a:hover {
			color: #000000;
		}

/* End TOP AREA of the page */

/* MAIN AREA: three columns: left navigation, main content, login box etc.*/
	/* Define the wrapper and the three columns: */
	
		#pcMainArea {
			width: 900px;
			margin-left: auto;
			margin-right: auto;
			margin-bottom: 5px;
			padding: 0;
			border: 0;
			border-collapse: collapse;
		}
	
		#pcLeft {
			width: 180px;
			text-align: left;
			vertical-align: top;
		}
	
		#pcCenter {
			width: 520px;
			padding: 0 5px 0 5px;
			text-align: left;
			vertical-align: top;
		}
	
		#pcRight {
			width: 180px;
			text-align: left;
			vertical-align: top;
		}
		
		.pcColumnSpacer {
			width: 10px;
			background-image:url(images/dotted_spacer_vert.gif);
		}

	/* Define the left column */
	
		#pcLeft h3 {
			font-size: 13px;
			margin: 0;
			padding-bottom: 2px;
		}

		#pcLeftCatLinks {
			background-color: #99CCFF;
			padding: 5px 5px 1px 10px;
			margin: 0 0 5px 0;
		}
		
		#pcLeftPriceLinks {
			background-color: #E1E1E1;
			color: #999999;
			padding: 5px 5px 1px 10px;
			margin: 0 0 5px 0;
		}
		
		#pcLeftStoreLinks {
			background-color: #F5F5F5;
			color: #999999;
			padding: 5px 5px 1px 10px;
			margin: 0 0 2px 0;
		}
	
		#pcLeft ul {
			list-style-type: none;
			margin: 0 0 10px 5px;
			padding: 0;
		}
	
		#pcLeft li {
			margin: 2px 0 0 0;
		}
		
		#pcLeftCatLinks a:link, #pcLeftCatLinks a:visited {
			color: #0066CC;
			text-decoration: none;
		}
		
		#pcLeftCatLinks a:hover {
			color: #FFFFFF;
		}
		
		#pcLeftPriceLinks a:link, #pcLeftPriceLinks a:visited {
			color: #666666;
			text-decoration: none;
		}
		
		#pcLeftPriceLinks a:hover {
			color: #FF6600;
		}
		
		#pcLeftStoreLinks a:link, #pcLeftStoreLinks a:visited {
			color: #777777;
			text-decoration: none;
		}
		
		#pcLeftStoreLinks a:hover {
			color: #FF6600;
		}


	/* Define the right column */
	
		#pcShowCart {
			background-color: #FFFFAA;
			color: #666666;
			padding: 5px 5px 5px 10px;
			margin-bottom: 5px;
		}
	
		#pcCustomerLogin {
			background-color: #FFFFCC;
			color: #0066FF;
			padding: 5px 5px 1px 10px;
			margin: 0 0 5px 0;
		}
		
		#pcAffiliateLogin {
			background-color: #FFEE99;
			color: #0066FF;
			padding: 5px 5px 1px 10px;
			margin: 0 0 5px 0;
		}
		
		#pcRight h3 {
			font-size: 13px;
			margin: 0px;
			padding-bottom: 2px;
			color: #999999;
		}
	
		#pcRight ul {
			list-style-type: none;
			margin: 0 0 10px 5px;
			padding: 0;
		}
	
		#pcRight li {
			margin: 2px 0 0 0;
		}
		
		#pcCustomerLogin a:link, #pcCustomerLogin a:visited {
			color: #666666;
			text-decoration: none;
		}
		
		#pcCustomerLogin a:hover {
			color: #333333;
		}
		
		
		#pcAffiliateLogin a:link, #pcAffiliateLogin a:visited {
			color: #777777;
			text-decoration: none;
		}
		
		#pcAffiliateLogin a:hover {
			color: #000000;
		}

/* End MAIN AREA */

/* START Footer */
	
		#pcFooter {
			background-color: #FFFFFF;
			font-size: 11px;
			color: #666666;
			text-align: right;
			padding: 5px;
		}
		
		#pcFooter a:link, #pcFooter a:visited, #pcFooter a:hover {
			text-decoration: none;
			color: #666666;
		}
		
		#pcFooterSpacer {
			background-image:url(images/dotted_spacer_left.gif);
			height: 5px;
		}
	
/* END Footer */
/*Custom styles for Rock Band Roadie -----------------------------------------*/
		body{
			margin: 0 auto;
			background: #000000 url(images/website_background_001.jpg) repeat-x fixed bottom;
			color: #ffffff;
			font-family: Tahoma;
			text-align: center;
		}
		#all{
		  margin: 0 auto;
		  width: 900px;
		  text-align: left;
		}
		#header{
		  height: 152px;
		  background-image: url(images/rbr_header.jpg);
		}
		#topRBRMenu{
		  height: 31px;
		  width: 900px;
		  background-color: #000033;
		  margin: 0;
		  padding: 0;
		  text-align: left;
		  float: left;
		}
		#content{
		  padding: 5px;
		  background-image: url(images/rbr_content_bkgrd.jpg);
		}
		#footer{
		  clear: both;
		  height: 31px;
		  background-color: #000033;
		}
		#leftColumn{
		  float: left;
		  background-color: #000000;
		  padding: 5px;
		  width: 200px;
		  height: 663px;
		  margin: 5px;
		}
		#rightColumn{
		  float: right;
		  background-color: #000000;
		  padding: 5px;
		  width: 655px;
		  height: 663px;
		  margin: 5px 0 5px 0;
		}
		.clearAll{clear:both;}
		#leftNav{
		  margin: 30px 8px 20px 10px;
		}
		#productArea{
		  overflow: auto;
		  height: 660px;
		  width: 655px;
		  scrollbar-base-color: #000033;
		}
		.pSmallImageClass{
		  border: 4px solid #000033;
		  float: right;
		  margin: 20px;
		}
		.pItemTitle{
		  font-weight: bold;
		  font-size: 16px;
		  color: #0033CC;
		}
		.pItemTitle a{
		  font-weight: bold;
		  font-size: 16px;
		  color: #FFFF66;
		  text-decoration: none;
		}
		.pItemStats{
		  color: #FFFF99;
		  font-size: 12px;
		}
		.pFormClass{
		  clear: both;
		  padding: 10px;
		  font-size: 15px;
		  background-color: #000033;
		  margin-top: 20px;
		}
		.pFormClass a{
		  color: #3366FF;
		}
		/*a:link{
		  color: #00CC66;
		}
		a:hover{
		  color: #CCFFFF;
		}
		a:visited{
		  color: #FF9933;
		}
		a:active{
		  color: #3333CC;
		}*/
		.pImageMain{
		  float: right;
		  padding: 10px;
		  background: url(images/rbr_content_bkgrd.jpg) no-repeat scroll bottom;
		  margin: 10px;
		  /*border: 2px solid #000099;*/
		}
		.pDescriptionHeader{
		  width: 300px;
		  color: #3333CC;
		  font-weight: bold;
		  border-bottom: 1px solid #3333CC;
		  padding-bottom: 5px;
		  margin: 5px 0 20px 0;
		}
		.pSearchCriteria{
		  font-size:12px;
		}
		.pRowSpacer{
		  width: 650px;
		  height: 18px;
		  background: url(pRowSpacer_image.jpg) no-repeat scroll bottom;
		}
		.footerContent{
		  text-align: center;
		  font-size: 10px;
		  padding-top: 5px;
		}
		
		/*Styles for Product Display on ListItems Pages----------------------*/
		#pItemBoxAll{
		  padding: 0 10px;
		  padding-bottom: 20px;
		}
		.pItemCell{
		  width: 300px;
		  height: 220px;
		  float:left;
		  padding: 5px;
		  border: 1px dotted #990000;
		}
		.pItemPrice  {
		  color : #FF0000;
		  font-size : 16px;
		  font-family : Tahoma,Verdana,Arial;
		  font-weight: bold;
		  padding: 4px 4px 5px 15px;
		}
		#affiliateAds{
		  margin: 0 auto;
		  text-align: center;
		}
		.descriptor{
			padding: 20px;
			font-size: 12pt;
			font-weight: normal;
			
		}
/*Checkout Page -------------------------------------------*/
		.keepShop{
		  float: right;
		  text-align: right;
		  padding-right: 20px;
		}
		.checkOutHead{
		  line-height: 35px;
		  width: 325px;
		  background-color: #000033;
		  margin: 5px 0;
		  padding-left: 20px;
		}
		.floatR{
		  float: right;
		}
		.floatL{
		  float: left;
		}
		#affiliateAds{
		  margin-top: 100px;
		}
	/*Dean Guitar Styles */
	.deanDescAll{
		height:90px;
		padding:0pt;
		background-color: #000000;
		border: solid #999999 1px; 
	}
	.deanDescLeft{
		background:transparent url(http://www.siglermusic.com/images/dean/description_left.gif) no-repeat scroll;
		float:left;
		height:90px;
		font-family: Arial;
		font-style: italic;
	}
	.deanDescLeft p{
		margin: 20pt 40pt 0 40pt;
		font-size: 24pt;
		line-height: 24pt;
	}
	.deanDescRight{
		background:transparent url(http://www.siglermusic.com/images/dean/description_right.gif) no-repeat scroll;
		float:left;
		height:90px;
		width:89px;
	}
/*End Dean Guitar Styles*/

/*End Custom Styles-------------------------------------------------------*/