/* CSS Document */

@charset "iso-8859-1";

/*******************************************************************************
*  skidoo_too.css : 2005.08.29
* -----------------------------------------------------------------------------
*  A remake of the skidoo layout with the middle column appearing first in
*  source ordering.
*******************************************************************************/

/* begin with generic selectors so that they can be overridden if needed
 * by classes deeper in the stylesheet
 */
.clear
{
	clear: both;
	padding-bottom: 1px;	/* for Gecko-based browsers */
	margin-bottom: -1px;	/* for Gecko-based browsers */
}
.hide
{
	display: none !important;
}
.inside
{
	/* glitch in IE caused by vertical padding in this class, so 0 padding is
	 * set here and those blocks that need the vertical padding must be 
	 * applied to the parent element. the purpose of this class is to provide
	 * horizontal padding without using hacks to get around IE's broken box 
	 * model. so it's okay to apply vertical padding to the parent element, 
	 * just not horizontal padding.
	 */
	padding: 0 0em;
}

/* margin values and font sizes for headings, and margins on paragraphs
 * and lists are not consistent across browser platforms. to achieve a
 * consistent look we need to explicity set these values here. it may
 * seem an odd way to declare the margins like this but you never
 * know what kind of horizontal padding a browser may be using on an
 * element, and I only want to change the vertical padding.
 *
 * pixels are used here, rather than ems, because I want a consistent
 * margin on the different headings. if I use ems, 1em for an h1 element
 * is much larger than 1em on an h6 element. I don't wnat this.
 *
 * salt to taste
 */
ul, ol, dl, p, h1, h2, h3, h4, h5, h6
{
	margin-top: 14px;
	margin-bottom: 14px;
	padding-top: 0;
	padding-bottom: 0;
}
h1
{
	font-size: 220%;
	
}
h2
{
	font-size: 190%;
	
}
h3
{
	font-size: 160%;
}
h4
{
	font-size: 130%;
}
h5
{
	font-size: 100%;
}
h6
{
	font-size: 70%;
}

p
{
	font-size: 80%;
}

/* alter some HTML elements' default style
 */







/* now we craft the core layout of the page. this includes positioning and
 * gutter space. colors and fonts should not come into play at this point.
 * when defining a border, default its color to white which is probably
 * the safest thing to do.
 */
body
{
	margin: 0px 0%;	/* margin instead of padding for the gutterspace around 
	 			   the layout because IE breaks the layout when 
	 			   horizontal padding is applied to the body element.
	 			   % over pixels for that horizontal gutterspace so that
	 			   it automatically goes below 20px on low-res browsers
	 			   to create more space for the content. */
	font-size: 100.1%;	/* resolve some font size issues in some layouts for
				   some browsers. (in other words, i got no clue.) */
}
#pageWrapper
{
	border: solid 0px #fff;
	border-width: 0 0px;
	min-width: 40em;	/* IE doens't understand this property. EMs are used
				   so that as the font size increases, the proportional
				   limitations (min-width) increase with it, rather
				   than creating a middle column that can only fit
				   3 or 4 characters in it. */
	width: auto;
}
* html #pageWrapper
{
	/* \*/
		word-wrap: break-word;
	/* invalid CSS but keeps IE from breaking horribly under narrow viewports */
}
#masthead
{
	
	
}
#masthead h1
{
	padding: 0;
	margin: 0;
}
#outerColumnContainer
{
	/* reserves space for the left and right columns. you can use either
	 * padding, margins, or borders, depending on your needs. however you
	 * can use the border method to create a background color for both left
	 * and right columns
	 */
	border-left: solid 16em #fff;
	border-right: solid 3em #fff;

}
#innerColumnContainer
{
	border: solid 1px #fff;
	border-width: 0 1px;
	margin: 0 -1px;		/* compensate for the borders because of
				   100% width declaration */
	width: 100%;
	z-index: 1;

}
#leftColumn, #middleColumn, #rightColumn, * html #SOWrap
{
	overflow: visible;	/* fix for IE italics bug */
	position: relative;	/* fix some rendering issues */
}
#SOWrap
{
	float: left;
	margin: 0 -1px 0 0;
	width: 100%;
	z-index: 3;
	

}
#middleColumn
{
	float: right;
	margin: 0 0 0 -1px;
	width: 100%;
	z-index: 5;
	
	
		
}
#leftColumn
{
	float: left;
	margin: 0 1px 0 -16em;
	width: 16em;
	z-index: 4;
}
#rightColumn
{
	float: right;
	width: 3em;
	margin: 0 -3em 0 1px;
	z-index: 2;
}
#footer
{
	
	padding: 0.5em;
}

p.fontsize-set
{
	text-align: center;
}
p.fontsize-set img
{
	border-width: 0;
}

/* vertical navigation stuff. mostly exactly as seen in the vnav.css styleheet
 * in the original skidoo layout.
 */

* html .vnav ul li a/* hide from IE5.0/Win & IE5/Mac */
{
	height: 0.01%;
}
* html .vnav ul
{
	position: relative;	/* IE needs this to fix a rendering problem */
}

/* horizontal navigation elements. create a DIV element with the class hnav
 * and stick one unordered list inside it to generate a horizontal menu.
 */
.hnav
{
	border-bottom: solid 1px #fff;
	text-align: center;
	
}
.hnav, .hnav ul li a
{
	/* need to middor veritcal padding on .hnav and child anchor elements
	 * because the anchors are _not_ block elements. since they are not
	 * block elements web browsers will not expand .hnav to contain them
	 * even with the extra padding. by applying the same padding to both
	 * the parent .hnav _looks_ like its containing the child anchor
	 * elements. 
	 */
	padding-top: 7px;
	padding-bottom: 7px;
}
.hnav ul, .hnav ul li
{
	display: inline;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.hnav ul li a
{
	margin: 0 -1px 0 0;
	padding-left: 10px;
	padding-right: 10px;	/* short-hand padding attribute would overwrite
				   top/bottom padding set in a previous rule */
	border-left: solid 0px #000;
	border-right: solid 0px #000;
	white-space: nowrap;
}
.hnav ul li a:link, .hnav ul li a:visited, .hnav ul li a:active, .hnav ul li a:hover
{
	text-decoration: none;
}
.hnav ul li span.divider
{
	display: none;
}
* html .hnav ul li, * html .hnav ul li a
{
	width: 1%; /* IE/Mac needs this */
	display: inline-block;	/* IE/Mac needs this */
	/* \*/
		width: auto;
		display: inline;
	/* reset above hack */
}
* html .hnav, * html .hnav ul a
{
	/* \*/ height: 0.01%; /* hasLayout hack to fix render bugs in IE/Win. 
				 IE/Mac will ignore this rule. */
}
* html .HNAV
{
	padding: 0;	/* IE5/Win will resize #hnav to fit the heights of its
			   inline children that have vertical padding. So this
			   incorrect case selector hack will be applied only by
			   IE 5.x/Win */
}

/* everything below this point is related to the page's "theme" and could be
 * placed in a separate stylesheet to allow for multiple color/font scemes on
 * the layout. you should probably leave a default theme within this stylesheet
 * just to be on the safe side.	
 */
#pageWrapper, #masthead, #innerColumnContainer, #footer, .vnav ul, .vnav ul li, .hnav, .hnav ul li a
{
	border-color: #ffffff;
}
html, body
{
	/* note that both html and body elements are in the selector.
	 * this is because we have margins applied to the body element
	 * and the HTML's background property will show through if
	 * it is ever set. _DO_NOT_ apply a font-size value to the
	 * html or body elements, set it in #pageWrapper.
	 */
	background-color: #ffffff;
	color: #000;
	font-family: verdana, arial, helvetica, sans-serif;
	
}
#pageWrapper
{
	font-size: 80%;	/* set your default font size here. */
}

#masthead
{
color: #000000;
background-color: #D4DFEF;
height: 135px;
background-image: url(images/logo-short-toombul.jpg);
background-repeat: no-repeat;



}

#right-logo
{

float: right;
margin: 0px;
height: 135px;
width: 700px;
background-color: transparent;
background-image: url(images/top-logo-light.jpg);
background-repeat: no-repeat;

}

.hnav
{
	background-color: #2955ac;
	color: #fff;
	margin-bottom: 20px;
}


/* this is the top navbar */

#navcontainer
{
overflow:hidden;
height: 25px;
}

#nav {
margin: 0;
padding: 0;
 background-color: #2955ac;
width: 100%;

}

ul#nav, ul#nav li {
margin: 0;
padding: 0;
list-style-type: none;
white-space: nowrap;
float: left;
}

ul#nav {
position: relative;
height: 25px;
}

ul#nav li {

font-family: verdana, arial, sans-serif;
font-size: 12px;
font-weight: bold;
margin: 0;
padding-top: 5px;
padding-bottom: 8px;
padding-left: 0;
padding-right: 0;
 background-color: #2955ac;
}

ul#nav li a:link, ul#nav li a:visited, ul#nav li a:active {
margin: 0;
padding-top: 5px;
padding-bottom: 8px;
padding-left: 15px;
padding-right: 15px;
color: #47cba5;
text-decoration: none;
border-right: 1px #ffffff solid;
font-size: 12px;
}

ul#nav li a:hover {
color: #2955ac;
background-color: #42af90;
margin: 0;
padding-top: 5px;
padding-bottom: 8px;
padding-left: 15px;
padding-right: 15px;
font-size: 12px;
}


#outerColumnContainer
{
	border-left-color: #ffffff;	/* left column background color */
	border-right-color: #ffffff;	/* right column background color */
	background-color: #fff;		/* set the background color for the
					   middle column here */
}

h1, .heading1 {
	color: #FFF;
	font-size: 12px;
	font-weight: bold;
	margin: 0px;
	padding: 3px;
  background-color: #2955ac;
}

h2, .heading2 {
		color: #ffffff; 
	font-size: 12px;
	font-weight: bold;
	margin: 0px;
	padding: 3px;
  background-color: #2955ac;

}


.resulttable {

}

.resulttable a:link { color: #2955ac; 
text-decoration: underline; 
font-weight: bold;}

.resulttable a:visited { color: #2955ac;
text-decoration: underline; 
font-weight: bold;
}

.resulttable a:hover, .resulttable a:active
{
color: #0C2D5A;
text-decoration: none;
font-weight: bold;
}

.artist-table a:link, .artist a:link { color: #2955ac; 
text-decoration: underline; 
font-weight: bold;}

.artist-table a:visited, .artist a:visited { color: #2955ac;
text-decoration: underline; 
font-weight: bold;
}

.artist-table a:hover, .artist a:hover, .artist-table a:active, .artist a:active
{
color: #0C2D5A;
text-decoration: none;
font-weight: bold;
}

table {
 font-size: 80%;
}

/* Show only to IE PC \*/
* html .boxhead h2 {height: 1%;} /* For IE 5 PC */

.sidebox {
	margin: 0 auto; /* center for now */
	width: 160px; /* ems so it will grow */
	background-color: #D4DFEF;
line-height: 1.5em;


}
.boxhead {
	
margin: 0;
	padding: 0;
	text-align: center;
}
.boxhead h2 {

	margin: 0;
	padding: 7px 20px 5px;
	color: #ffffff; 
	font-weight: bold; 
	font-size: 11px; 
	line-height: 1em;
	background-color: #2955ac;

	
}
.boxbody {
	
	margin: 0;
	padding: 5px 16px 21px;
	font-size: 10px;
}

.box {
	margin: 0 auto; /* center for now */
	width: 160px; /* ems so it will grow */
	background-color: #D4DFEF;
line-height: 1.5em;


}
.box_title {
	
margin: 0;
	padding: 0;
	text-align: center;
}
.box_title h2 {

	margin: 0;
	padding: 7px 20px 5px;
	color: #ffffff; 
	font-weight: bold; 
	font-size: 11px; 
	line-height: 1em;
	background-color: #2955ac;
	

	
}
.box_text {
	
	margin: 0;
	padding-bottom: 5px;
	
}

.box ul li {

margin-left: 10px;
line-height: 1.5em; 
text-decoration: none;
font-weight: normal;
list-style-type: none;


}

.box ul {
margin-left: 10px;
padding: 0px;
}

.box ul li a:link, .box ul li a:visited, .box ul li a:active{
text-decoration: none;
font-weight: normal;

}

.box ul li a:hover {
text-decoration: none;
font-weight: normal;

}


.boxbody img {
border: 1px solid #000000;
}

.sidebox ul li a:link, .sidebox ul li a:visited, .sidebox ul li a:active{
text-decoration: none;
font-weight: bold;
color: #2955ac;

}

.sidebox ul li a:hover {
text-decoration: none;
font-weight: bold;
color: #0C2D5A;
text-decoration: underline;

}

.sidebox  a:link, .sidebox  a:visited, .sidebox  a:active{
text-decoration: underline;
font-weight: bold;
color: #2955ac;



}

.sidebox  a:hover {
text-decoration: none;
font-weight: bold;
color: #0C2D5A;
text-decoration: none;

}

.sidebox ul li {
list-style-type: none;
margin: 0;
line-height: 2.1em; 
text-decoration: none;
font-weight: bold;
color: #044242;

}

.sidebox ul {
margin-left: -10px;
padding-left: 0px;
margin-top: 0px;
margin-bottom: 0px;

}

a:link { color: #0C2D5A; 
text-decoration: underline; 
font-weight: bold;}

a:visited { color: #0C2D5A;
text-decoration: underline; 
font-weight: bold;
}

a:hover, a:active
{
color: #2955ac;
text-decoration: none;
font-weight: bold;
}

.hnav ul li a:link, .hnav ul li a:visited
{
	background-color: #2955ac;
	color: #47cba5;
	font-weight: bold;
	font-size: 11px;
}
.hnav ul li a:hover
{
	background-color: #42af90;
	color: #2955ac;
	font-weight: bold;
	font-size: 11px;
}

.colheading {
text-decoration: none;
font-style: normal;
font-weight: bold;
color: #000000;
}

.catnum {
text-decoration: none;
font-style: normal;
color: #606060;
}

.money {
text-decoration: none;
font-style: italic;
font-weight: bold;
color: #33302B;

}

.evenrow {
   border: none;


}

.oddrow {
  border: none;
  
}

.pointer, hilite{
  color: #2955ac;
  
}

.tracklist {
    padding-left: 20px;
}


.track {
    font-size: x-small;
    display: list-item;
    list-style-type: square;
}



.outer {
 background-color: #ffffff;



}



.header {
  background-color: ##2955ac;
 color: #ffffff;
 font-size: 11px;
font-weight: bold;

}

.price {
 
 color: #4C4B4B;
 
}


.grey{
  		color: #ffffff; 
	font-size: 11px;
	font-weight: bold;
	margin: 0px;
	padding: 3px;
  background-color: #2955ac;

}


.blue {
font-weight: bold;
}


#search_form{
	float: right;
width: 200px;
height: 126px;
top: 30px;

}


.option, select, input, textarea {
	font-size: 11px;
font-family: Verdana, Arial, Helvetica, sans-serif;
color: #000000;

background-color: #ffffff;
border: 1px solid #000000;
margin: 0;
	padding: 0;
font-weight: bold;

}

select.dropdown {
	font-size: 11px;
background-color: #ffffff;
border: 1px solid #000000;
margin: 0;
	padding: 0;


}

input.searchbutton {
background-color: #ffffff;
border: 1px solid #000000;
font-size: 11px;
height: 16px; 

}

input.txtfield {
background-color: #ffffff;
border: 1px solid #000000;
font-size: 11px; 
height: 16px;
}


img {
border: none;
}


#rightColumn .inside
{
	/* if you apply a font size to just #rightColumn, then its width,
	 * which is specified in EMs, will also be affected. you don't want
	 * that. so apply font size changes to the .inside element which exists
	 * inside underneath all three columns
	 */
	font-size: 85%;
}
#rightColumn .inside .vnav
{
	font-size: 85%;
}
#footer
{
	
	color: #666666;
	text-align: center;
}

/******************************************************************************/

