BODY
{
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #000000 url(../assets/images/bg.jpg) repeat-x;
	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;
}
.capitalCSS #container
{
	width: 1000px;
/*using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar*/
	margin: 0 auto 5px;
/*the auto margins (in conjunction with a width) center the page*/
	border: 1px solid #BBB;
	text-align: left;
/*this overrides the text-align: center on the body element.*/
	color: #FFFFFF;
}
.UKsongs TD
{
	font-family: Tahoma;
}
SELECT#strSearchCat
{
	width: 600px;
}
#oldNews H2
{
	font-size: 11pt;
	font-weight: bold;
	display: inline;
}
#oldNews
{
	float: right;
	width: 170px;
	padding-left: 5px;
	margin-left: 5px;
	margin-bottom: 5px;
	padding-bottom: 10px;
	text-align: center;
	border: 1px solid #B7ADAD;
	padding-top: 10px;
	padding-right: 5px;
}
.cartRight
{
	width: 70px;
	float: left;
	color: #FFFFFF;
	font-size: 10pt;
	margin-right: 1px;
}
.cartLeft
{
	width: 71px;
	float: left;
	color: #FFFFFF;
	font-size: 10pt;
	padding-left: 4px;
	border-left: 1px solid #FFFFFF;
	margin-left: 2px;
	font-weight: bold;
}
#resultTable
{
	border-left: 1px solid #FFFFFF;
	border-right: 1px solid #FFFFFF;
}
.resultBody
{
	font-size: 8pt;
	font-family: Verdana;
	border-bottom: 1px solid #FFFFFF;
	padding-top: 4px;
	padding-bottom: 4px;
}
.resultHeader
{
	font-weight: bold;
	color: #000000;
	font-size: 8pt;
	background-image: url(/assets/images/topbar.png);
	height: 20px;
	background-position: -16px 0px;
}
#catCol
{
	float: left;
	width: 236px;
	margin-right: 5px;
	margin-bottom: 10px;
	border: 1px solid #FFFFFF;
	text-align: center;
}
.capitalCSS #header
{
	padding: 120px 0px 0;
/*this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding.*/
	width: 1000px;
	color: #DCD9D9;
	background-image: url(/Assets/images/logo2.png);
	background-position: left top;
	background-repeat: no-repeat;
	position: relative;
}
#cart
{
	position: absolute;
	top: 57px;
	right: -1px;
	width: 150px;
	background-repeat: no-repeat;
	background-position: left top;
}
#cartHead
{
	background-image: url(/usermods/img/cartHeader.png);
	height: 30px;
}
.capitalCSS #header H1
{
	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*/
	padding: 10px 0;
/*using padding instead of margin will allow you to keep the element away from the edges of the div*/
}
.capitalCSS #sidebar1
{
	float: left;
/*since this element is floated, a width must be given*/
	width: 205px;
/*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
the background color will be displayed for the length of the content in the column, but no further*/
	padding: 15px 10px 15px 20px;
	font-size: 10pt;
}
#sidebar1 IMG
{
	padding-bottom: 0;
	padding-top: 0;
	margin-bottom: 0px !important;
	margin-top: 0;
	margin-bottom: -3px;
}
.capitalCSS #mainContent
{
	margin: 0 0 0 0px;
/*the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.*/
	padding: 0 10px 0 0px;
/*remember that padding is the space inside the div box and margin is the space outside the div box*/
	font-size: 10pt;
	color: #FFFFFF;
	overflow: visible;
	width: 739px;
	float: right;
}
#ddHeader
{
	text-align: center;
	padding-top: 15px;
}
DIV#Header404 H1
{
	font-size: 14pt;
}
DIV#Header404
{
	float: left;
	width: 730px;
	text-align: center;
	margin-top: 10px;
}
#frontPage
{
	border: 1px solid #CBCBCB;
	width: 731px;
	margin-bottom: 10px;
	margin-top: 10px;
	padding: 5px;
}
#checkoutH_L UL LI
{
	padding-bottom: 10px;
}
#checkoutH_L UL
{
	list-style: none;
	padding-left: 0;
	margin-left: 0;
}
#newsDate
{
	font-size: 15pt;
	font-weight: bold;
	padding-bottom: 10px;
	color: #A7B3F0;
}
#newsBody
{
	overflow: hidden;
	width: 750px;
	padding-left: 0px;
	margin-left: 0px;
	padding-right: 10px;
}
#mainContent TABLE
{
	color: #FEFEFE;
	font-size: 10pt;
	font-family: Verdana;
}
#recBox
{
	float: left;
	width: 745px;
}
#rightCol
{
	float: left;
	width: 490px;
}
#prodDetails
{
	float: left;
	width: 400px;
}
#mainContent B
{
	color: #FFFFFF;
}
#floatingImage
{
	float: right;
	width: 200px;
}
.capitalCSS #footer
{
	padding: 10px 0px 0;
/*this padding matches the left alignment of the elements in the divs that appear above it.*/
	color: #FFFFFF;
	clear: both;
}
.capitalCSS #footer P
{
	margin: 0;
/*zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs*/
	padding: 10px 0;
/*padding on this element will create space, just as the the margin would have, without the margin collapse issue*/
	color: #FFFFFF;
}
.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;
}
.clearfloat
{
/*this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float*/
	clear: both;
	height: 0;
	font-size: 1px;
	line-height: 0px;
}
.capitalCSS #sidebar1 A
{
	text-decoration: none;
	font-size: 10pt;
	color: #FFFFFF;
}
#sidebar1 UL
{
	list-style: none;
	padding-left: 0;
}
.capitalCSS #footer A
{
	color: #000000;
	text-decoration: none;
}
#sidebar1 H2
{
	font-size: 12pt;
	line-height: 0.7;
}
#sidebar1 H3
{
	font-size: 11pt;
	line-height: 0.7;
}
.topbar
{
	width: 1000px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-weight: 700;
	text-align: center;
	background-image: url(/Assets/images/topBar.png);
	background-repeat: repeat-x;
	background-position: left top;
	clear: both;
	background-color: #474251;
	padding: 5px 0 6px;
	font-size: 10pt;
}
.topbar LI
{
	background-image: url(/Assets/images/note.png);
	background-repeat: no-repeat;
	background-position: left center;
	display: inline;
	margin: 0 0 0 0px;
	padding: 0 18px 0 8px;
}
.topbar LI A
{
	color: #000;
	text-decoration: none;
	margin-left: 10px;
}
.topbar LI A:hover
{
	color: #3038F2;
}
.topbar UL
{
	list-style-image: none;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.bottombar
{
	width: 1000px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-weight: 700;
	text-align: center;
	background-image: url(/Assets/Images/topBar.png);
	background-repeat: repeat-x;
	background-position: left top;
	clear: both;
	background-color: #474251;
	padding: 5px 0 6px;
	font-size: 10pt;
}
.bottombar LI
{
	display: inline;
	margin: 0;
	padding: 0 87px;
	font-size: 8.5pt;
	color: #000000;
}
.bottombar LI A
{
	color: #FFF;
	text-decoration: none;
}
.bottombar LI A:hover
{
	color: #FFFFFF;
	text-decoration: underline;
}
#footer A:hover
{
	color: #2129ED;
}
.bottombar UL
{
	list-style-image: none;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
/*--Additional Styles From SDH --*/
.catDesc
{
	text-align: left;
	font-size: 10px;
	padding-left: 11px;
}
#catPageHead
{
	width: 760px;
}
#catHTMLlong
{
	width: 730px;
	float: left;
}
.cattext
{
	color: #FEFEFE;
	font-weight: bold;
	text-align: center;
	padding: 5px;
	width: 715px;
}
#catContent
{
	width: 730px;
	overflow: auto;
	padding-bottom: 25px;
	margin-bottom: 0;
}
.catNav
{
	width: 721px;
	height: 20px;
	float: left;
	background-image: url(/Assets/images/topBar.png);
	background-repeat: repeat-x;
	background-color: #D3D3D9;
	margin-top: 2px;
	padding: 5px;
	color: #000;
}
.catNavLeft
{
	width: 48%;
	float: left;
}
BODY A
{
	color: #E4DB00;
	text-decoration: none;
}
BODY A:hover
{
	color: #6C9DFD;
}
DIV.ddItem
{
	text-align: left;
	float: left;
	width: 728px;
	height: 30px;
	padding-top: 5px;
	padding-left: 4px;
	padding-right: 4px;
	border: 0px solid #6C6969;
	margin-left: 2px;
	margin-bottom: 4px;
}
DIV#Content404 A
{
	line-height: 2;
}
#oldNews A.hiLight
{
	color: #6799FB;
}
#oldNews .hiLight A
{
	color: #689AFC;
}
#catCol A
{
	font-weight: bold;
}
#catCol UL
{
	list-style: none;
	margin-left: 0;
	padding-left: 0;
}
.catNavRight
{
	width: 48%;
	float: right;
	text-align: right;
}
#catContent #prodinfoecB
{
	position: relative;
	padding-bottom: 1em;
	height: 10em;
	border-bottom: 1px solid #BBC3D3;
	border-left: 0.5em solid #BBC3D3;
	padding-left: 1%;
}
#prodinfoecL
{
	left: 0em;
	float: left;
	width: 42%;
	text-align: left;
}
#prodinfoecM
{
	position: relative;
	right: 0em;
	width: 42%;
	float: left;
	height: 10em;
	bottom: 1em;
}
#prodinfoecR
{
	position: relative;
	float: left;
	right: 1em;
	top: 0em;
	width: 15%;
	text-align: right;
	height: 100%;
}
#prodinfoecRi
{
	position: absolute;
	left: 0em;
	width: 49%;
}
#prodinfoecRb
{
	position: absolute;
	right: 0em;
	width: 49%;
	text-align: left;
	bottom: 0em;
}
.prodinfoColM
{
	text-align: center;
	position: relative;
	float: left;
	border: 1px solid #CECECE;
	margin: 1px;
	width: 238px;
	padding-bottom: 0px;
}
.prodimage
{
	padding-top: 10px;
}
.prodinfoColB
{
}
.pricing
{
	padding-top: 5px;
}
#prodinfo2Col
{
	text-align: center;
	position: relative;
	float: left;
	height: 15em;
	width: 49%;
}
#prodinfo2ColT
{
	text-align: left;
	width: 69%;
	left: 0em;
	float: left;
	padding: 1em;
}
#prodinfo2ColI
{
	position: absolute;
	width: 30%;
	right: 0em;
	top: 1em;
	bottom: 1em;
	height: auto;
	text-align: center;
}
.homeCol1
{
	width: 760px;
	height: 160px;
	float: left;
	border-bottom: 1px solid #CCC;
	margin-bottom: 10px;
}
.homeCol1Left
{
	width: 190px;
	height: 100%;
	border-top: 1px solid #CCC;
	border-left: 1px solid #CCC;
	border-right: 1px solid #CCC;
	text-align: center;
	vertical-align: middle;
	float: left;
}
.homeCol1Right
{
	width: 570px;
	height: 100%;
	text-align: left;
	vertical-align: top;
	padding-left: 20px;
	float: left;
}
.homeCol2
{
	width: 370px;
	height: 160px;
	float: left;
	border-bottom: 1px solid #CCC;
	margin-bottom: 10px;
	margin-right: 10px;
}
.homeCol2Left
{
	width: 140px;
	height: 100%;
	border-top: 1px solid #CCC;
	border-left: 1px solid #CCC;
	border-right: 1px solid #CCC;
	text-align: center;
	vertical-align: middle;
	float: left;
}
.homeCol2Right
{
	width: 140px;
	height: 100%;
	text-align: left;
	vertical-align: top;
	padding-left: 20px;
	float: left;
}
.homeCol3
{
	width: 350px;
	float: left;
	border-bottom: 1px solid #CCC;
	margin-bottom: 10px;
	margin-right: 10px;
}
.homeCol3Left
{
	width: 125px;
	height: 100%;
	border-top: 1px solid #CCC;
	border-left: 1px solid #CCC;
	border-right: 1px solid #CCC;
	text-align: center;
	vertical-align: middle;
	float: left;
}
.homeCol3Right
{
	width: 100px;
	height: 100%;
	text-align: left;
	padding-left: 10px;
	vertical-align: top;
	float: left;
}
.homeCol4
{
	position: relative;
	width: 239px;
	height: 220px;
	float: left;
	border: 1px solid #CCC;
	text-align: center;
	margin-bottom: 10px;
	margin-right: 5px;
}
.homeCol4 .overlay
{
	position: absolute;
	display: block;
	width: 73px;
	height: 72px;
	top: 0px;
	right: 0px;
	background-image: url(../images/overlay.png);
	background-position: top right;
	background-repeat: no-repeat;
}
.homeCol4 A
{
	text-decoration: none;
	color: #FE0;
}
#Col_1
{
	width: 365px;
	float: left;
	padding-bottom: 20px;
}
.row
{
	width: 730px;
	float: left;
	overflow: auto;
}
#Col_2
{
	width: 365px;
	float: right;
	padding-bottom: 20px;
}
#prodContent
{
	width: 730px;
	position: relative;
	overflow: auto;
	margin-left: 0px;
}
OL.forms LI.clearing
{
	clear: both;
}
OL.forms LI.last
{
	margin-right: 0;
}
OL.forms LABEL
{
	color: #FEFEFE;
	cursor: pointer;
	display: block;
}
OL.forms LI.small LABEL
{
	width: 180px;
	float: left;
	display: block;
	text-align: left;
	margin-right: 0px;
	margin-left: 0px;
	padding-top: 5px;
}
#creditCard OL
{
	width: 340px;
	padding-left: 0;
	margin-left: 0;
}
#creditCard OL LABEL
{
	width: 280px;
	display: block;
}
OL.forms INPUT, OL.forms TEXTAREA
{
	border: 1px solid #37485A;
	font: inherit 1em sans-serif;
	padding: 2px;
	width: 218px;
}
OL.forms
{
	list-style: none;
}
OL.forms LI.together INPUT
{
	width: 194px;
}
OL.forms SELECT
{
	border: 1px solid #325D6E;
}
OL.forms TEXTAREA
{
	height: 195px;
	overflow: auto;
	width: 606px;
}
OL.forms LI.buttons
{
	text-align: right;
}
OL.forms LI.buttons INPUT
{
	width: auto;
	border: 1px solid #325D6E;
}
OL.forms LI.buttonsL
{
	text-align: left;
}
#login_chk.buttonsL
{
	width: 60px;
	margin-top: 5px;
}
OL.forms LI.buttonsL INPUT
{
	width: 5em;
	border: 1px solid #325D6E;
}
OL.loginForm
{
	float: left;
	list-style: none;
	margin-left: 0;
	width: 100%;
}
OL.loginForm LI
{
	clear: both;
	float: left;
	margin: 0 0 12px;
	width: 50%;
}
OL.loginForm LABEL
{
	color: #325D6E;
	cursor: pointer;
	display: block;
	font-weight: bold;
}
OL.loginForm INPUT, OL.forms TEXTAREA
{
	border: 1px solid #325D6E;
	font: inherit 1em sans-serif;
	padding: 2px;
	width: 403px;
}
OL.loginForm LI.buttons INPUT, .button
{
	width: auto;
	border: 1px solid #325D6E;
}
#prodContent H1
{
	font: bold 18px sans-serif;
	display: block;
	padding-left: 8px;
}
#prodContent H2
{
	font: bold 14px sans-serif;
	padding-left: 8px;
	color: #FEFEFE;
}
#checkoutH_L
{
	width: 365px;
	float: left;
	margin-bottom: 15px;
}
#checkoutS_L
{
	width: 365px;
	float: left;
	margin-bottom: 15px;
}
#checkoutH_R
{
	width: 365px;
	float: left;
	margin-bottom: 15px;
}
#checkoutS_R
{
	width: 545px;
	float: right;
	margin-bottom: 15px;
}
#paymentInfo
{
	float: left;
	width: 365px;
}
#paymentInfo #paymentDetails
{
	padding-left: 7px;
	font-size: 10pt;
}
#orangeLine2
{
	float: left;
	text-align: center;
	width: 730px;
	margin-top: 5px;
}
