/* IMPORTANT !!!! ID-s (styles that begins with "#" (pound sign)) can be applied only once in the each page, while CLASS-es (styles that begins with "." (dot)) can be applied as many times as needed at each page 

Styles without "#" or "." before are regular HTML tags */
	body {background: #ABA8A8; color: #000; margin: 0; padding: 0;} /* sets background color (gray - #ABA8A8) for the whole page (needed for gray lines on the left and right side), text color (black - #000) */

  body, table, td, .bord_bott {font: 12px verdana,geneva,lucida,sans-serif;} /* sets default font family (font) and font size for the whole document - will be avoided in id called #navbar */

  .padd {padding: 5px;} /* sets padding of 5 pixels on every side */
	
  #page {padding: 0px 5px;} /* sets padding of the whole content indented 5px from left and right - shorthand used (0px stands for top and bottom, 5px for right and left) */

  .right, .right_bold {text-align: right;} /* aligns text to the right */
  
	#schin {position: absolute; top: 71px; left: 60px; width: 706px; z-index: 2;} /* positions "Schinderwies Productions" image at the 71px from the top, and 60px from the left browser window borders */
  
	#content {background: #fff;} /* sets white (#fff) background to the content area */
  
	#navbar {font: bold 14px arial,verdana,geneva,lucida,sans-serif; background: #000; color: #F8330B; letter-spacing: 2px; line-height: 140%; width: 175px;} /* applied to global navigation: FONT sets font properties, BACKGROUND sets background color to black (#000), COLOR sets font color to red (#F8330B), LETTER-SPACING sets spacing between letters (Netscape 4.x doesn't recognize this style), LINE-HEIGHT sets height of the each lin to 140% (creates more space between each navigatio link, WIDTH sets width of the navigation field*/
  
	h1 {font-size: 23px; font-weight: normal; margin-top: 5px;} /* sets H1's tag size to 23px, FONT-WEIGHT sets text appearance to normal (not-bolded), MARGIN-TOP sets top margin to 5px */
  
	h2 {font-size: 15px; font-weight: bold; padding-top: 10px;} /* same as H1 style above (FONT-WEIGHT is set to bold because NS 4.x will render it wiht normal weight) */
  
	h3 {font-size: 14px; padding-top: 3px;} /* similar to H1 and H2 tags */
  
	h4 {color: #800303; font: bold 14px arial,verdana,geneva,arial,lucida,sans-serif;} /* similar to H1 and H2 tags */
  
	.black {background: #000;} /* sets BACKGROUND to black (#000) */
  
	.bold, .right_bold, .u_album, .warn {font-weight: bold;} /* sets FONT-WEIGHT of all styles (in this case all of them are CLASS-es (.bold, .right_bold, .u_album, .warn)) */
  
	.padd_left {padding-left: 15px;} /* sets left padding to be 15px */
  
	.line_150 {line-height: 150%;} /* sets height of the line to 150% */
  
	#copy {font-size: 11px; color: #fff; background: #000; padding: 15px 0px 20px;} /* applied to black bottom box at the bottom with copyright and "E-mail Schinderwies" text; sets FONT-SIZE, FONT-COLOR, BACKGROUND to 11px, white, and black recursively. Also sets PADDING of the text to be 15px from the top, 0px left and right, and 20px from the bottom (text is centered later in the code with TEXT-ALIGN: CENTER property) */
  
	a:link, .short a:visited, .long a:visited {color: #130BB6;} /* sets default color of the link to blue (#130BB6), also sets ".short", and ".long" CLASS-es visited links color to blue */
  
	a:visited {color: #999;} /* sets visited link color to gray (#999) */
  
	a:hover, #navbar a {text-decoration: none;} /* sets decoration of the text to none when link is mouse-over-ed, and to every case of the link property (mouse-over-ed, visited, "click"-ed) in global navigation */
  
	a:active, #navbar a:hover, .red, .warn, #copy a {color: #F8330B;} /* sets color of the fonts to red(#F8330B) */
  
	#navbar a {color: #fff; display: block; padding-left: 5px;} /* setx link property of the NAVBAR ID (global navigation) */
  
	#artists_active {color: #fff; padding-left: 8px; font-weight: bold;} /* sets font color to white (#fff), padding 8px from left, and font weight to bold of artist name in global navigation */
  
	.artists_links {font-weight: normal; padding-left: 39px;} /* sets padding from left to 39px, to artists link in global navigation*/
  
	.floatimgleft {float: left;} /* makes text to float around picture at artists pages (text floats on the right side) */
  
	.table_padd {padding-bottom: 5px; font-size: 13px;} /* sets padding from the 15px from the bottom, and font size of the table that contains name of the artist on which page user is (at global navigation) */
  
	.bord_bott {border-bottom: solid; border-bottom-width: 1px; padding-bottom: 3px;} /* makes border at the bottom of the containing element, sets padding of 3px to the bottom */
  
	.bord_track_ns {border-bottom: dashed #000; border-bottom-width: 1px;} /* sets bottom border of the tracks */
  
	.padd_track {padding-left: 25px;} /* sets left padding of the track to the 25px*/
  
	.u_album {color: #800303; font-size: 14px;} /* sets color of the text under album picture (price and media type) to the burgundy (#800303) */
  
	.short {display: none;} /* doesn't shows "Read More" at artists pages link in NS4 */
  
	.long a {display: none;} /* doesn't shows "Hide" at artists pages link in NS4 */
  
	div .long {display: inline;} /* displays whole content of reviews in NS 4.x */
  
	.padd_top {padding: 15px 0px 5px;} /* sets padding to 15px from the top, 0px right and left, and 5px from the bottom */
  
	.gray_line {font-size: 7px;} /* makes gray line's, between content and bottom black box that contains copyright data, height of 7px */
  
	.bord_mid {padding-top: 10px;} /* makes top padding of 10px to the middle row on index.html page */
  
	.padd_bott {padding-bottom: 15px;} /* makes bottom padding of 15px */
  
	.nav_red_font {font: bold 15px arial,sans-serif;} /* make font in the global navigation active page link BOLD, 15px height, and Arial */
  
	.padd_home {padding: 2px 0px 1px;} /* padding for the "Listen", "Mail Order", and "More Information" field at home page */
  
	.red {font-style: italic;} /* makes fonts italic in CLASS called red*/
  
	.underline {text-decoration: underline;} /* underlines text */
  
	.center, #copy, .nav_center {text-align: center;} /* aligns text to center*/
  
	hr {color: #000;} /* sets color of the horizontal rule to black (#000) because it can be rendered gray in some browsers (what we do not want) */