/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
  background-color: #FFFFFF;
  color: #2c2d2e;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  line-height: 14px;
  margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: center; /* Centers the page content container in IE 5 browsers. */
}
/* Commonly used to style page titles. */
h1 {
	color: #F580AD;
	font-size: 14px;
	font-weight: bold;
	line-height: 14px;
}
/* Commonly used to style section titles. */
h2 {
	color: #000000;
	font-size: 12px;
	font-weight: bold;
	line-height: 14px;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #5456ef;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #50516b;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #3a32c4;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #3a32c4;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #383644;
}
#fullWidthHeader {
        width: 100%;
	font-size: 18px;
	font-weight: bold;
        color: #3a32c4;
	height: 152px;
	text-align: right;
        background-color: black;
        padding: 6px 20px 0 0;
}

#fullWidthHeader p
{
       color:#F580AD;
       font-size:1.2em;
       font-style:italic;
       padding-top: 25px;
}

#bjlogo img
(
	background-repeat: no-repeat;
        float: left;
        height: 55px;
)

#bjheaderimg img
(
	background-repeat: no-repeat;
        float: right;
        height: 55px;
)

/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
  background-color: #fff;
  margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 100%;
  overflow:hidden;
}
#outerWrapper #topNavigation {
	height: 25px;
	padding: 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

#outerWrapper #contentWrapper
{
  width: 86%;
  overflow: hidden;
  margin: 0 auto;
  text-align: left;
}

#outerWrapper #contentWrapper #leftColumn1
{
  background-image: url('../images/rt_column_pattern.png');
  border: solid 1px #9ea3aa;
  float: left;
  padding: 10px 10px 30000px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 165px;
  margin-top: 3px;
  overflow:hidden;
  margin-bottom:-30000px;
}

/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content
{
  width: 75%;
  margin: 0 0 0 190px;
  padding: 0 0 0 10px;
}

#fullWidthFooter
{
        background-color: black;
	height: 155px;
	padding: 10px;
	margin: 0 auto 0 auto;
	width: 100%;
        clear:both;
}

#fullWidthFooter #imageblock
{
        width: 100%;
}

#fullWidthFooter img.left
{
       float:left;
       padding-left: 0;
       margin: 0;
}

#fullWidthFooter img.right
{
       float:right;
       padding: 0 10px 0 0;
       margin-top: -96px;
}

#fullWidthFooter img.center
{
       margin: 0 auto;
}

#topNavigation
{
       width: 100%;
       margin: 0 auto;
       height: 3em;
}

#navcontainer ul
{
        font-size:1.5em;
	text-align: left;
	padding-bottom: 5px;
	padding-top: 5px;
	padding-left: 4.4em;
	margin-top: 0;
	/* cancels gap caused by top padding in Opera 7.54 */
margin-left: 0;
	background-color: #000000;
	color: white;
	width: 100%;
	font-family: Arial,Helvetica,sans-serif;
	line-height: 18px;/* fixes Firefox 0.9.3 */
        overflow:hidden;
}

#navcontainer ul li
{
display: inline;
padding-left: 0;
padding-right: 0;
padding-bottom: 5px;
/* matches link padding except for left and right */
padding-top: 5px;
overflow:hidden;
}

#navcontainer ul li a
{
	padding-left: 15px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-top: 5px;
	color: white;
	text-decoration: none;
	font-weight: bold;
}

#navcontainer ul li a:hover
{
        text-decoration: underline;
	color: #f580ad;
        font-weight: bolder;
}

#navcontainer #active {
	border-left: 1px solid #000;
}
#topstrip {
        text-align: right;
	padding: 1.5px;
	height: 15px;
	width: 100%;
	margin-right: 0 auto 0 auto;
        background-color: #F580AD;
        color:#FFF;
        font-weight: bolder;
}
#topstrip ul {
	text-align: right;
	list-style-type: none;
	padding: 0px;
	margin-right: 14%;
        color: #FFF;
}
#topstrip ul li {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	color: #FFF;
	display: inline;
	font-weight: bold;
}

#prodinfo
{        
        font-size: 1.4em;
        line-height: 1.2em;
}

#prodinfo table
{
        font-size: .8em;
        line-height: 1.1em;
}
 
#prodinfo h2
{
        padding-top:1em;
        font-size: 18pt;
        line-height: 18pt;
}

#prodimages a img
{
        padding: 1em;
        float: right;
        border: none;
}

#prodinfo .vmCartContainer
{
        width: 80px;
        float: right;
}

td.contentheading
{
       font-size: 14pt;
       font-weight: bold;
       padding-left: 1em;
}

td.createdate, .small
{
       font-size: 80%;
       font-weight: bold;
       line-height: .6em;
       padding-left: 2em;
}

img.caption
{
       border: 1px solid black;
}

#content
{
      padding-left: 1em;      
}

.buttonheading a img
{
      border: none;
}

#prodinfo
{
margin: 0;
padding: 0
}

#vmMainPage
{
width: 90%;
float:left;
margin-left: 2em;
}

#vmMainPage img
{
border: 1px solid black;
}

h3
{
padding-top:1em;
}

#vmMainPage h3 a img
{
border:none;
}

#vmMainPage .buttons_heading a img
{
border:none;
}

.vmCartDetails
{
 display: block;
}

.vmCartContainer form
{
 display:block;
 float:right;
}

.addtocart_button
{
 color:transparent;
 display:block;
 float:right;
 margin-top: 5px;
}

td form.addtocart_button
{
 margin-top:none;
}

.product-Old-Price
{
 font-size:.6em;
 line-height:.8em;
}

.productPrice
{
 font-size:.8em;
 font-weight: bold;
 line-height:1.1em;
}

.breadcrumbs
{
  padding-right: 91px;
}

#vmMainPage h1
{
 text-align: left;
}

#vmMainPage #fullWidthFooter
{
 display: none;
}

#vmMainPage table tbody tr td a h4
{
 color:#f580ad;
 font-size:2.5em;
 font-weight: bold;
}

#vmMainPage table tbody tr td a h3
{
 color:#f580ad;
 font-size:1.8em;
 font-weight: bold;
 line-height: 1em;
}

#vmMainPage table tbody tr td a.productPrice
{
 color:black;
 font-size:.9em;
}

#prodinfo table tbody tr td
{
 border: none;
}

#product_list  table tbody tr td
{
 border: none;
}

#vmMainPage table tr td a img
{
 border:none;
}

#vmMainPage table tr td img
{
 border:none;
}

#outerWrapper #topNavigation #navcontainer ul #navlist
{
 overflow:hidden;
}

table.featprodtable tbody tr td.featprodsgrid a h4
{
 padding-top:1em;
}

.featprodsgrid
{
 border:1px solid #f580ad;
}

.featprodtable
{
 padding:.5em;
 border-collapse:collapse;
 margin-bottom:2em;
}

table.featprodtable
{
 vertical-align:top;
}

.sectiontableentry1, .sectiontableentry2
{
 vertical-align:top;
}

td label strong
{
 padding-top: 10px;
 font-size: 110%;
 font-weight: bold;
}

td label a
{
 font-size: 80%;
}

.sectiontableentry2 td
{
 padding-top: 20px;
}

.sectiontableentry1 td
{
 padding-top: 20px;
}